blob: 0ecca85b206748570b06bb1a570d2cbaf098c2b9 [file] [log] [blame]
Tianling Shenc900ba82023-05-30 15:11:21 +08001// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
2/*
3 * Copyright (c) 2022 FriendlyElec Computer Tech. Co., Ltd.
4 * (http://www.friendlyelec.com)
5 *
6 * Copyright (c) 2023 Tianling Shen <cnsztl@gmail.com>
7 */
8
9#include "rk356x-u-boot.dtsi"
10
11/ {
12 chosen {
13 stdout-path = &uart2;
14 u-boot,spl-boot-order = "same-as-spl", &sdmmc0, &sdhci;
15 };
16};
17
18&sdhci {
19 cap-mmc-highspeed;
20 mmc-ddr-1_8v;
21 mmc-hs200-1_8v;
22 mmc-hs400-1_8v;
23 mmc-hs400-enhanced-strobe;
24 pinctrl-0 = <&emmc_bus8 &emmc_clk &emmc_cmd &emmc_datastrobe>;
25};
26
27&uart2 {
28 clock-frequency = <24000000>;
29 bootph-all;
30 status = "okay";
31};