From: Quentin Schulz Date: Mon, 9 Jan 2023 10:36:41 +0000 (+0100) Subject: rockchip: px30: fix CFG_IRAM_BASE X-Git-Url: http://git.dujemihanovic.xyz/login.html?a=commitdiff_plain;h=6516336eca75eaab9526b91cd33e626b8a4b903c;p=u-boot.git rockchip: px30: fix CFG_IRAM_BASE The IRAM on PX30 (or Int_MEM in datasheet) starts at 0xff0e0000 and not 0xff020000 as rightfully stated in the FIXME comment. Let's fix it so that BROM_BOOTSOURCE_ID_ADDR points to the correct address for PX30. Fixes: 46281a76bee3 ("rockchip: add core px30 headers") Cc: Quentin Schulz Reviewed-by: Kever Yang Signed-off-by: Quentin Schulz --- diff --git a/include/configs/px30_common.h b/include/configs/px30_common.h index 3f1595cdc9..c0896e5f62 100644 --- a/include/configs/px30_common.h +++ b/include/configs/px30_common.h @@ -8,8 +8,7 @@ #include "rockchip-common.h" -/* FIXME: ff020000 is pmu_mem (10k), while ff0e0000 is regular int_mem */ -#define CFG_IRAM_BASE 0xff020000 +#define CFG_IRAM_BASE 0xff0e0000 #define GICD_BASE 0xff131000 #define GICC_BASE 0xff132000