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, &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&sdmmc { 32 u-boot,dm-spl; 33 status = "okay"; 34}; 35