1/* 2 * (C) Copyright 2022 Rockchip Electronics Co., Ltd 3 * 4 * SPDX-License-Identifier: GPL-2.0+ 5 */ 6 7/ { 8 aliases { 9 mmc1 = &sdmmc; 10 mmc0 = &emmc; 11 }; 12 13 chosen { 14 stdout-path = &uart2; 15 u-boot,spl-boot-order = &sdmmc, &spi_nor, &spi_nand, &emmc; 16 }; 17}; 18 19 20&emmc { 21 mmc-ecsd = <0x0020f000>; 22 u-boot,dm-spl; 23 status = "okay"; 24}; 25 26&cru { 27 u-boot,dm-spl; 28 status = "okay"; 29}; 30 31&gmac { 32 u-boot,dm-spl; 33 status = "okay"; 34}; 35 36&grf { 37 u-boot,dm-spl; 38 status = "okay"; 39}; 40 41&mdio { 42 u-boot,dm-spl; 43 status = "okay"; 44}; 45 46&rmii_phy { 47 u-boot,dm-spl; 48 status = "okay"; 49}; 50 51&sdmmc { 52 u-boot,dm-spl; 53 status = "okay"; 54}; 55 56&sfc { 57 u-boot,dm-spl; 58 status = "okay"; 59 60 #address-cells = <1>; 61 #size-cells = <0>; 62 spi_nand: flash@0 { 63 u-boot,dm-spl; 64 compatible = "spi-nand"; 65 reg = <0>; 66 spi-tx-bus-width = <1>; 67 spi-rx-bus-width = <4>; 68 spi-max-frequency = <80000000>; 69 }; 70 71 spi_nor: flash@1 { 72 u-boot,dm-spl; 73 compatible = "jedec,spi-nor"; 74 label = "sfc_nor"; 75 reg = <0>; 76 spi-tx-bus-width = <1>; 77 spi-rx-bus-width = <4>; 78 spi-max-frequency = <100000000>; 79 }; 80}; 81