blob: 06cc15ed21b8fda806db6f91fbc646de89f4a868 [file] [log] [blame]
Jonas Karlman9c1b5d12023-07-30 12:26:42 +00001// SPDX-License-Identifier: GPL-2.0+
2
3#include "rk356x-u-boot.dtsi"
4
5/ {
6 chosen {
7 stdout-path = &uart2;
8 };
9};
10
11&gpio0 {
12 bootph-all;
13};
14
15&sdhci {
16 cap-mmc-highspeed;
17 mmc-ddr-1_8v;
18 pinctrl-names = "default";
19 pinctrl-0 = <&emmc_bus8 &emmc_clk &emmc_cmd &emmc_datastrobe>;
20};
21
22&sfc {
23 bootph-pre-ram;
24 u-boot,spl-sfc-no-dma;
25
26 flash@0 {
27 bootph-pre-ram;
28 };
29};
30
31&uart2 {
32 bootph-all;
33 clock-frequency = <24000000>;
34 status = "okay";
35};
36
37/*
38 * U-Boot does not support multiple regulators using the same gpio,
39 * use vcc5v0_usb20_host to fix use of USB 2.0 port
40 */
41&usb2phy0_otg {
42 phy-supply = <&vcc5v0_usb20_host>;
43};
44
45&vcc3v3_sd {
46 bootph-pre-ram;
47};
48
49&vcc_sd_h {
50 bootph-all;
51};