mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-20 11:55:03 +00:00

Add J784S4 initialization files for initial SPL boot. config SYS_K3_MCU_SCRATCHPAD_BASE default value is same for J721E, J721S2, J784S4. So combined them into a single default. Signed-off-by: Hari Nagalla <hnagalla@ti.com> [ add firewall configurations and change the R5 MCU scratchpad ] Signed-off-by: Manorit Chawdhry <m-chawdhry@ti.com> Signed-off-by: Dasnavis Sabiya <sabiya.d@ti.com> Signed-off-by: Apurva Nandan <a-nandan@ti.com> Reviewed-by: Neha Malcom Francis <n-francis@ti.com> Tested-by: Marcel Ziswiler <marcel.ziswiler@toradex.com> # AM69-SK
15 lines
353 B
C
15 lines
353 B
C
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/*
|
|
* J784S4: SoC specific initialization
|
|
*
|
|
* Copyright (C) 2023-2024 Texas Instruments Incorporated - https://www.ti.com/
|
|
* Apurva Nandan <a-nandan@ti.com>
|
|
*/
|
|
|
|
#include "common_fdt.h"
|
|
#include <fdt_support.h>
|
|
|
|
int ft_system_setup(void *blob, struct bd_info *bd)
|
|
{
|
|
return fdt_fixup_msmc_ram_k3(blob);
|
|
}
|