summaryrefslogtreecommitdiff
path: root/board/ti/am64x/evm.c
diff options
context:
space:
mode:
authorSanthosh Kumar K <s-k6@ti.com>2024-02-14 16:27:50 +0530
committerFrancesco Dolcini <francesco.dolcini@toradex.com>2024-03-21 14:26:33 +0000
commit3cfe9a07ac5440934fd6ffcda5b5e2e51ef04fc9 (patch)
tree20fcc90c980368a49a2a3c086cc0367540cb1cf7 /board/ti/am64x/evm.c
parent63587b060cf6c1b2191902da89807e0ee668f375 (diff)
board: ti: Pull redundant DDR functions to a common location and Fixup DDR size when ECC is enabled
As there are few redundant functions in board/ti/*/evm.c files, pull them to a common location of access to reuse and include the common file to access the functions. Call k3-ddrss driver through fixup_ddr_driver_for_ecc() to fixup the device tree and resize the available amount of DDR, if ECC is enabled. Otherwise, fixup the device tree using the regular fdt_fixup_memory_banks(). Modify fixup_ddr_driver_for_ecc() to make the function agnostic to the number of DDR controllers present. Signed-off-by: Santhosh Kumar K <s-k6@ti.com> Signed-off-by: Neha Malcom Francis <n-francis@ti.com>
Diffstat (limited to 'board/ti/am64x/evm.c')
-rw-r--r--board/ti/am64x/evm.c71
1 files changed, 5 insertions, 66 deletions
diff --git a/board/ti/am64x/evm.c b/board/ti/am64x/evm.c
index c42afa581b..e990ba0d43 100644
--- a/board/ti/am64x/evm.c
+++ b/board/ti/am64x/evm.c
@@ -20,6 +20,7 @@
#include <env.h>
#include "../common/board_detect.h"
+#include "../common/k3-ddr-init.h"
#define board_is_am64x_gpevm() (board_ti_k3_is("AM64-GPEVM") || \
board_ti_k3_is("AM64-EVM") || \
@@ -50,28 +51,6 @@ int board_init(void)
return 0;
}
-int dram_init(void)
-{
- s32 ret;
-
- ret = fdtdec_setup_mem_size_base();
- if (ret)
- printf("Error setting up mem size and base. %d\n", ret);
-
- return ret;
-}
-
-int dram_init_banksize(void)
-{
- s32 ret;
-
- ret = fdtdec_setup_memory_banksize();
- if (ret)
- printf("Error setting up memory banksize. %d\n", ret);
-
- return ret;
-}
-
static bool is_nand;
#if defined(CONFIG_SPL_LOAD_FIT)
int board_fit_config_name_match(const char *name)
@@ -122,52 +101,12 @@ static int fixup_usb_boot(const void *fdt_blob)
}
#endif
-#if defined(CONFIG_K3_AM64_DDRSS)
-static void fixup_ddr_driver_for_ecc(struct spl_image_info *spl_image)
-{
- struct udevice *dev;
- int ret;
-
- dram_init_banksize();
-
- ret = uclass_get_device(UCLASS_RAM, 0, &dev);
- if (ret)
- panic("Cannot get RAM device for ddr size fixup: %d\n", ret);
-
- ret = k3_ddrss_ddr_fdt_fixup(dev, spl_image->fdt_addr, gd->bd);
- if (ret)
- printf("Error fixing up ddr node for ECC use! %d\n", ret);
-}
-#else
-static void fixup_memory_node(struct spl_image_info *spl_image)
-{
- u64 start[CONFIG_NR_DRAM_BANKS];
- u64 size[CONFIG_NR_DRAM_BANKS];
- int bank;
- int ret;
-
- dram_init();
- dram_init_banksize();
-
- for (bank = 0; bank < CONFIG_NR_DRAM_BANKS; bank++) {
- start[bank] = gd->bd->bi_dram[bank].start;
- size[bank] = gd->bd->bi_dram[bank].size;
- }
-
- /* dram_init functions use SPL fdt, and we must fixup u-boot fdt */
- ret = fdt_fixup_memory_banks(spl_image->fdt_addr, start, size, CONFIG_NR_DRAM_BANKS);
- if (ret)
- printf("Error fixing up memory node! %d\n", ret);
-}
-#endif
-
void spl_perform_fixups(struct spl_image_info *spl_image)
{
-#if defined(CONFIG_K3_AM64_DDRSS)
- fixup_ddr_driver_for_ecc(spl_image);
-#else
- fixup_memory_node(spl_image);
-#endif
+ if (IS_ENABLED(CONFIG_K3_INLINE_ECC))
+ fixup_ddr_driver_for_ecc(spl_image);
+ else
+ fixup_memory_node(spl_image);
#if CONFIG_IS_ENABLED(USB_STORAGE)
fixup_usb_boot(spl_image->fdt_addr);