mirror of
https://github.com/smaeul/u-boot.git
synced 2025-09-15 22:46:01 +01:00
Each SoC now has a directory in mach-k3, let's move the SoC specific files into their respective directories. Signed-off-by: Andrew Davis <afd@ti.com>
17 lines
357 B
C
17 lines
357 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 <fdt_support.h>
|
|
|
|
#include "../common_fdt.h"
|
|
|
|
int ft_system_setup(void *blob, struct bd_info *bd)
|
|
{
|
|
return fdt_fixup_msmc_ram_k3(blob);
|
|
}
|