blob: d05ed8b99110f79e0bcab97617353943c24556b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// 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);
}
|