1// SPDX-License-Identifier: (GPL-2.0+ OR MIT) 2/* 3 * Copyright (c) 2022 Rockchip Electronics Co., Ltd. 4 */ 5 6#include "rv1106-thunder-boot.dtsi" 7 8/ { 9 reserved-memory { 10 mmc_ecsd: mmc@3f000 { 11 reg = <0x3f000 0x00001000>; 12 }; 13 14 mmc_idmac: mmc@100000 { 15 reg = <0x00100000 0x00100000>; 16 }; 17 }; 18 19 thunder_boot_mmc: thunder-boot-mmc { 20 compatible = "rockchip,thunder-boot-mmc"; 21 reg = <0xffa90000 0x4000>; 22 memory-region-src = <&ramdisk_c>; 23 memory-region-dst = <&ramdisk_r>; 24 memory-region-idmac = <&mmc_idmac>; 25 }; 26}; 27 28&emmc { 29 memory-region-ecsd = <&mmc_ecsd>; 30 post-power-on-delay-ms = <0>; 31}; 32