supports-* stuff were used for rockchip platforms to speed up booting if we know what exactly the host was used for. As we have upstreamed all these with some very similar ways, now it's the time we migrate our dts files to use new properties. They were converted by: sed -i "s/supports-emmc;/no-sdio;\n\tno-sd;/g" `grep supports-emmc -rl arch/*` sed -i "s/supports-sd;/no-sdio;\n\tno-mmc;/g" `grep supports-sd -rl arch/*` sed -i "s/supports-sdio;/no-sd;\n\tno-mmc;/g" `grep supports-sdio -rl arch/*` Signed-off-by: Shawn Lin <shawn.lin@rock-chips.com> Change-Id: I33e5317ee5c7305803cf18ff4a370658abf555b0
52 lines
816 B
Plaintext
52 lines
816 B
Plaintext
/*
|
|
* Copyright (c) 2017 Fuzhou Rockchip Electronics Co., Ltd
|
|
*
|
|
* SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
|
*/
|
|
|
|
/dts-v1/;
|
|
|
|
#include "rk3308.dtsi"
|
|
|
|
/ {
|
|
model = "Rockchip RK3308 FPGA Platform";
|
|
compatible = "rockchip,rk3308-fpga", "rockchip,rk3308";
|
|
|
|
chosen {
|
|
bootargs = "earlycon=uart8250,mmio32,0xff0b0000 console=ttyFIQ0 init=/init initrd=0x9000000,0x18bfc0";
|
|
};
|
|
|
|
memory@200000 {
|
|
device_type = "memory";
|
|
reg = <0x0 0x00200000 0x0 0x0FE00000>;
|
|
};
|
|
};
|
|
|
|
&fiq_debugger {
|
|
rockchip,serial-id = <1>;
|
|
rockchip,irq-mode-enable = <1>;
|
|
status = "ok";
|
|
};
|
|
|
|
&cpu1 {
|
|
/delete-property/enable-method;
|
|
};
|
|
|
|
&cpu2 {
|
|
/delete-property/enable-method;
|
|
};
|
|
|
|
&cpu3 {
|
|
/delete-property/enable-method;
|
|
};
|
|
|
|
&emmc {
|
|
cap-mmc-highspeed;
|
|
mmc-hs200-1_8v;
|
|
no-sdio;
|
|
no-sd;
|
|
non-removable;
|
|
num-slots = <1>;
|
|
status = "okay";
|
|
};
|