mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-15 01:17:39 +00:00
65 lines
840 B
Text
65 lines
840 B
Text
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
|
/*
|
|
* (C) Copyright 2021 Rockchip Electronics Co., Ltd
|
|
*/
|
|
|
|
#include "rockchip-u-boot.dtsi"
|
|
|
|
/ {
|
|
aliases {
|
|
mmc0 = &sdhci;
|
|
mmc1 = &sdmmc0;
|
|
};
|
|
|
|
chosen {
|
|
u-boot,spl-boot-order = "same-as-spl", &sdhci, &sdmmc0;
|
|
};
|
|
|
|
dmc: dmc {
|
|
compatible = "rockchip,rk3568-dmc";
|
|
bootph-all;
|
|
status = "okay";
|
|
};
|
|
|
|
otp: nvmem@fe38c000 {
|
|
compatible = "rockchip,rk3568-otp";
|
|
reg = <0x0 0xfe38c000 0x0 0x4000>;
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
status = "okay";
|
|
|
|
cpu_id: id@a {
|
|
reg = <0x0a 0x10>;
|
|
};
|
|
};
|
|
};
|
|
|
|
&cru {
|
|
bootph-all;
|
|
status = "okay";
|
|
};
|
|
|
|
&pmucru {
|
|
bootph-all;
|
|
status = "okay";
|
|
};
|
|
|
|
&grf {
|
|
bootph-all;
|
|
status = "okay";
|
|
};
|
|
|
|
&pmugrf {
|
|
bootph-all;
|
|
status = "okay";
|
|
};
|
|
|
|
&sdhci {
|
|
bootph-pre-ram;
|
|
status = "okay";
|
|
};
|
|
|
|
&sdmmc0 {
|
|
bootph-pre-ram;
|
|
status = "okay";
|
|
};
|