2020-03-18 08:22:50 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2019, STMicroelectronics - All Rights Reserved
|
|
|
|
*/
|
|
|
|
|
2020-11-06 18:01:29 +00:00
|
|
|
#define LOG_CATEGORY LOGC_ARCH
|
|
|
|
|
2020-03-18 08:22:50 +00:00
|
|
|
#include <common.h>
|
2020-05-10 17:40:05 +00:00
|
|
|
#include <log.h>
|
2020-10-31 03:38:53 +00:00
|
|
|
#include <linux/libfdt.h>
|
2023-01-12 17:58:40 +00:00
|
|
|
#include <asm/arch/sys_proto.h>
|
2020-03-18 08:22:50 +00:00
|
|
|
#include <asm/sections.h>
|
|
|
|
#include <asm/system.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Use the saved FDT address provided by TF-A at boot time (NT_FW_CONFIG =
|
|
|
|
* Non Trusted Firmware configuration file) when the pointer is valid
|
|
|
|
*/
|
2021-10-26 06:12:33 +00:00
|
|
|
void *board_fdt_blob_setup(int *err)
|
2020-03-18 08:22:50 +00:00
|
|
|
{
|
2023-01-12 17:58:40 +00:00
|
|
|
unsigned long nt_fw_dtb = get_stm32mp_bl2_dtb();
|
|
|
|
|
2020-11-06 18:01:29 +00:00
|
|
|
log_debug("%s: nt_fw_dtb=%lx\n", __func__, nt_fw_dtb);
|
2020-03-18 08:22:50 +00:00
|
|
|
|
2021-10-26 06:12:33 +00:00
|
|
|
*err = 0;
|
2020-03-18 08:22:50 +00:00
|
|
|
/* use external device tree only if address is valid */
|
|
|
|
if (nt_fw_dtb >= STM32_DDR_BASE) {
|
|
|
|
if (fdt_magic(nt_fw_dtb) == FDT_MAGIC)
|
|
|
|
return (void *)nt_fw_dtb;
|
2020-11-06 18:01:29 +00:00
|
|
|
log_debug("%s: DTB not found.\n", __func__);
|
2020-03-18 08:22:50 +00:00
|
|
|
}
|
2020-11-06 18:01:29 +00:00
|
|
|
log_debug("%s: fall back to builtin DTB, %p\n", __func__, &_end);
|
2020-03-18 08:22:50 +00:00
|
|
|
|
|
|
|
return (void *)&_end;
|
|
|
|
}
|