rv1126b thunderboot reserved memory layout: H _______________________ | | | ramdisk_c | |_______________________| | | | ramdisk_r | 0x48c40000 |_______________________| | | | mcu_log | 0x48c3c000 |_______________________| | | | mcu | 0x48c00000 |_______________________| | | | [TEEOS+TA+SHM] | 0x48400000 |_______________________| | | | mmc_escd | 0x48000000 |_______________________| | | | mmc_idmac | 0x47fffe00 |_______________________| | | | isp[0..1]_tb_rmem | |_______________________| | | | meta | 0x41240000 |_______________________| | | | fdt | 0x41200000 |_______________________| | | | kernel_r | 0x40208000 |_______________________| | | | bl31 | L |_______________________| Signed-off-by: Ziyuan Xu <xzy.xu@rock-chips.com> Change-Id: I69f4dcbf94d6a646794e993ad7dac0e94028ed47
34 lines
683 B
Plaintext
34 lines
683 B
Plaintext
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
|
/*
|
|
* Copyright (c) 2025 Rockchip Electronics Co., Ltd.
|
|
*/
|
|
|
|
#include "rv1126b-thunder-boot.dtsi"
|
|
|
|
/ {
|
|
thunder_boot_mmc: thunder-boot-mmc {
|
|
compatible = "rockchip,thunder-boot-mmc";
|
|
reg = <0x21470000 0x4000>;
|
|
clocks = <&cru HCLK_EMMC>, <&cru CCLK_EMMC>;
|
|
clock-names = "biu", "ciu";
|
|
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>;
|
|
};
|
|
|
|
&reserved_memory {
|
|
mmc_ecsd: mmc@47fffe00 {
|
|
reg = <0x47fffe00 0x00001000>;
|
|
};
|
|
|
|
mmc_idmac: mmc@48000000 {
|
|
reg = <0x48000000 0x00400000>;
|
|
};
|
|
};
|