2023-02-22 09:05:12 +00:00
|
|
|
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2023 Collabora Ltd.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "rk3588-u-boot.dtsi"
|
|
|
|
|
|
|
|
/ {
|
|
|
|
aliases {
|
2023-04-18 16:46:41 +00:00
|
|
|
mmc1 = &sdmmc;
|
2023-02-22 09:05:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
chosen {
|
2023-04-18 16:46:41 +00:00
|
|
|
u-boot,spl-boot-order = "same-as-spl", &sdmmc, &sdhci;
|
2023-02-22 09:05:12 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
&sdmmc {
|
|
|
|
bus-width = <4>;
|
|
|
|
status = "okay";
|
|
|
|
};
|
2023-04-18 16:46:41 +00:00
|
|
|
|
|
|
|
&sdhci {
|
|
|
|
cap-mmc-highspeed;
|
|
|
|
mmc-ddr-1_8v;
|
|
|
|
mmc-hs200-1_8v;
|
|
|
|
pinctrl-names = "default";
|
|
|
|
pinctrl-0 = <&emmc_bus8 &emmc_clk &emmc_cmd &emmc_data_strobe &emmc_rstnout>;
|
|
|
|
};
|