mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-13 14:53:06 +00:00
39 lines
646 B
Text
39 lines
646 B
Text
|
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
||
|
/*
|
||
|
* Minimal generic DT for RK3566/RK3568 with eMMC and SD-card enabled
|
||
|
*/
|
||
|
|
||
|
/dts-v1/;
|
||
|
#include "rk356x.dtsi"
|
||
|
|
||
|
/ {
|
||
|
model = "Generic RK3566/RK3568";
|
||
|
compatible = "rockchip,rk3568";
|
||
|
|
||
|
chosen: chosen {
|
||
|
stdout-path = "serial2:1500000n8";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
&sdhci {
|
||
|
bus-width = <8>;
|
||
|
cap-mmc-highspeed;
|
||
|
non-removable;
|
||
|
pinctrl-names = "default";
|
||
|
pinctrl-0 = <&emmc_bus8 &emmc_clk &emmc_cmd>;
|
||
|
status = "okay";
|
||
|
};
|
||
|
|
||
|
&sdmmc0 {
|
||
|
bus-width = <4>;
|
||
|
cap-sd-highspeed;
|
||
|
disable-wp;
|
||
|
pinctrl-names = "default";
|
||
|
pinctrl-0 = <&sdmmc0_bus4 &sdmmc0_clk &sdmmc0_cmd>;
|
||
|
status = "okay";
|
||
|
};
|
||
|
|
||
|
&uart2 {
|
||
|
status = "okay";
|
||
|
};
|