blob: a177fca73a55c3a24f6f6ff2adb1dfe2deadc8ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
// SPDX-License-Identifier: GPL-2.0+
/*
* Copyright (C) 2019 Amarula Solutions SRO
*/
#include "rk3288-u-boot.dtsi"
#include "rk3288-tinker-u-boot.dtsi"
/ {
chosen {
u-boot,spl-boot-order = \
"same-as-spl", &sdmmc, &emmc;
};
};
&emmc {
u-boot,dm-spl;
};
&emmc_clk {
u-boot,dm-spl;
};
&emmc_cmd {
u-boot,dm-spl;
};
&emmc_pwr {
u-boot,dm-spl;
};
&emmc_bus8 {
u-boot,dm-spl;
};
|