mirror of
https://github.com/smaeul/u-boot.git
synced 2025-09-11 20:46:00 +01:00
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(). Also call dram_init_banksize() after every call to fixup_ddr_driver_for_ecc() is made so that gd->bd is populated correctly. Ensure that fixup_ddr_driver_for_ecc() is 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> Reviewed-by: Wadim Egorov <w.egorov@phytec.de>
42 lines
787 B
C
42 lines
787 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Board specific initialization for J722S platforms
|
|
*
|
|
* Copyright (C) 2024 Texas Instruments Incorporated - https://www.ti.com/
|
|
*
|
|
*/
|
|
|
|
#include <asm/arch/hardware.h>
|
|
#include <asm/io.h>
|
|
#include <dm/uclass.h>
|
|
#include <env.h>
|
|
#include <fdt_support.h>
|
|
#include <spl.h>
|
|
#include <asm/arch/k3-ddr.h>
|
|
#include "../common/fdt_ops.h"
|
|
|
|
int board_init(void)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
#if defined(CONFIG_XPL_BUILD)
|
|
void spl_perform_fixups(struct spl_image_info *spl_image)
|
|
{
|
|
if (IS_ENABLED(CONFIG_K3_DDRSS)) {
|
|
if (IS_ENABLED(CONFIG_K3_INLINE_ECC))
|
|
fixup_ddr_driver_for_ecc(spl_image);
|
|
} else {
|
|
fixup_memory_node(spl_image);
|
|
}
|
|
}
|
|
#endif
|
|
|
|
#if IS_ENABLED(CONFIG_BOARD_LATE_INIT)
|
|
int board_late_init(void)
|
|
{
|
|
ti_set_fdt_env(NULL, NULL);
|
|
return 0;
|
|
}
|
|
#endif
|