]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
rockchip: toybrick_rk3588: use DRAM banks from ATAGS
authorQuentin Schulz <quentin.schulz@theobroma-systems.com>
Thu, 25 Apr 2024 10:46:31 +0000 (12:46 +0200)
committerKever Yang <kever.yang@rock-chips.com>
Fri, 26 Apr 2024 07:47:05 +0000 (15:47 +0800)
RK3588-based devices now support creating DRAM banks with proper holes
by reading the ATAGS from Rockchip TPL blob, so let's use that mechanism
instead.

Since ft_board_setup isn't defined anymore, there's no need for
selecting CONFIG_OF_BOARD_SETUP.

Similarly, because the toybrick_rk3588.c would be empty, it is simply
removed, with the (would-be-empty) Makefile as well.

The CONFIG_NR_DRAM_BANK now defaults to 10 which is a safe bet for
reading banks from ATAGS, so let's use the default value instead.

Co-developed-by: Chris Morgan <macromorgan@hotmail.com>
Signed-off-by: Chris Morgan <macromorgan@hotmail.com>
Signed-off-by: Quentin Schulz <quentin.schulz@theobroma-systems.com>
Reviewed-by: Kever Yang <kever.yang@rock-chips.com>
board/rockchip/toybrick_rk3588/Makefile [deleted file]
board/rockchip/toybrick_rk3588/toybrick-rk3588.c [deleted file]
configs/toybrick-rk3588_defconfig

diff --git a/board/rockchip/toybrick_rk3588/Makefile b/board/rockchip/toybrick_rk3588/Makefile
deleted file mode 100644 (file)
index 75d4d94..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-# SPDX-License-Identifier:     GPL-2.0+
-#
-# Copyright (c) 2024 Rockchip Electronics Co,. Ltd.
-#
-
-obj-y += toybrick-rk3588.o
diff --git a/board/rockchip/toybrick_rk3588/toybrick-rk3588.c b/board/rockchip/toybrick_rk3588/toybrick-rk3588.c
deleted file mode 100644 (file)
index e3217f7..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-// SPDX-License-Identifier: GPL-2.0+
-/*
- * Copyright (c) 2024 Rockchip Electronics Co,. Ltd.
- */
-
-#include <fdtdec.h>
-#include <fdt_support.h>
-
-#ifdef CONFIG_OF_BOARD_SETUP
-static int rk3588_add_reserved_memory_fdt_nodes(void *new_blob)
-{
-       struct fdt_memory gap1 = {
-               .start = 0x3fc000000,
-               .end = 0x3fc4fffff,
-       };
-       struct fdt_memory gap2 = {
-               .start = 0x3fff00000,
-               .end = 0x3ffffffff,
-       };
-       unsigned long flags = FDTDEC_RESERVED_MEMORY_NO_MAP;
-       int ret;
-
-       /*
-        * Inject the reserved-memory nodes into the DTS
-        */
-       ret = fdtdec_add_reserved_memory(new_blob, "gap1", &gap1,  NULL, 0,
-                                        NULL, flags);
-       if (ret)
-               return ret;
-
-       return fdtdec_add_reserved_memory(new_blob, "gap2", &gap2,  NULL, 0,
-                                         NULL, flags);
-}
-
-int ft_board_setup(void *blob, struct bd_info *bd)
-{
-       return rk3588_add_reserved_memory_fdt_nodes(blob);
-}
-#endif
index 8d773603db0bb79fdd2f8ec1f1d9d926732d1581..76bfa50c306cdca58d4003e0ab79e0826530e1ac 100644 (file)
@@ -2,7 +2,6 @@ CONFIG_ARM=y
 CONFIG_SKIP_LOWLEVEL_INIT=y
 CONFIG_COUNTER_FREQUENCY=24000000
 CONFIG_ARCH_ROCKCHIP=y
-CONFIG_NR_DRAM_BANKS=2
 CONFIG_DEFAULT_DEVICE_TREE="rk3588-toybrick-x0"
 CONFIG_ROCKCHIP_RK3588=y
 CONFIG_SPL_SERIAL=y
@@ -16,7 +15,6 @@ CONFIG_FIT_VERBOSE=y
 CONFIG_SPL_FIT_SIGNATURE=y
 CONFIG_SPL_LOAD_FIT=y
 CONFIG_LEGACY_IMAGE_FORMAT=y
-CONFIG_OF_BOARD_SETUP=y
 CONFIG_DEFAULT_FDT_FILE="rockchip/rk3588-toybrick-x0.dtb"
 # CONFIG_DISPLAY_CPUINFO is not set
 CONFIG_DISPLAY_BOARDINFO_LATE=y