1// SPDX-License-Identifier: GPL-2.0+ 2/* 3 * (C) Copyright 2018 Rockchip Electronics Co., Ltd 4 * 5 */ 6 7/ { 8 aliases { 9 mmc0 = &emmc; 10 mmc1 = &sdmmc; 11 12 serial0 = &uart0; 13 serial1 = &uart1; 14 serial2 = &uart2; 15 serial3 = &uart3; 16 serial4 = &uart4; 17 serial5 = &uart5; 18 serial6 = &uart6; 19 serial7 = &uart7; 20 }; 21 22 chosen { 23 stdout-path = &uart2; 24 u-boot,spl-boot-order = &emmc; 25 }; 26 27}; 28 29&crypto { 30 u-boot,dm-spl; 31}; 32 33&dmc { 34 u-boot,dm-spl; 35}; 36 37&cru { 38 u-boot,dm-spl; 39}; 40 41&grf { 42 u-boot,dm-spl; 43}; 44 45&pmugrf { 46 u-boot,dm-spl; 47}; 48 49&emmc { 50 u-boot,dm-spl; 51 status = "okay"; 52}; 53 54&sdmmc { 55 u-boot,dm-spl; 56 status = "okay"; 57}; 58 59&saradc { 60 u-boot,dm-spl; 61 status = "okay"; 62}; 63 64&sfc { 65 u-boot,dm-spl; 66 status = "okay"; 67}; 68 69&uart0 { 70 u-boot,dm-pre-reloc; 71}; 72 73&uart1 { 74 u-boot,dm-pre-reloc; 75}; 76 77&uart2 { 78 u-boot,dm-spl; 79}; 80 81&uart3 { 82 u-boot,dm-pre-reloc; 83}; 84 85&uart4 { 86 u-boot,dm-pre-reloc; 87}; 88 89&uart5 { 90 u-boot,dm-pre-reloc; 91}; 92 93&uart6 { 94 u-boot,dm-pre-reloc; 95}; 96 97&uart7 { 98 u-boot,dm-pre-reloc; 99}; 100 101&u2phy { 102 u-boot,dm-pre-reloc; 103 status = "okay"; 104}; 105 106&usb2phy_grf { 107 u-boot,dm-pre-reloc; 108 status = "okay"; 109}; 110 111&u2phy_host { 112 u-boot,dm-pre-reloc; 113 status = "okay"; 114}; 115 116&u2phy_otg { 117 u-boot,dm-pre-reloc; 118 status = "okay"; 119}; 120 121&usb_host0_ehci { 122 u-boot,dm-pre-reloc; 123 status = "okay"; 124}; 125 126&usb_host0_ohci { 127 u-boot,dm-pre-reloc; 128 status = "okay"; 129}; 130 131&usbdrd3 { 132 u-boot,dm-pre-reloc; 133 status = "okay"; 134}; 135 136&usbdrd_dwc3 { 137 u-boot,dm-pre-reloc; 138 status = "okay"; 139}; 140