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