blob: e91ef1b2fc7075b549d2164f13224a24cbedc727 [file] [log] [blame]
Patrick Delaunay98276112020-03-18 09:22:50 +01001// SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause
2/*
3 * Copyright (C) 2019, STMicroelectronics - All Rights Reserved
4 */
5
Patrick Delaunayba779402020-11-06 19:01:29 +01006#define LOG_CATEGORY LOGC_ARCH
7
Patrick Delaunay98276112020-03-18 09:22:50 +01008#include <common.h>
Simon Glass0f2af882020-05-10 11:40:05 -06009#include <log.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060010#include <linux/libfdt.h>
Patrick Delaunay98276112020-03-18 09:22:50 +010011#include <asm/sections.h>
12#include <asm/system.h>
13
14/*
15 * Force data-section, as .bss will not be valid
16 * when save_boot_params is invoked.
17 */
18static unsigned long nt_fw_dtb __section(".data");
19
20/*
21 * Save the FDT address provided by TF-A in r2 at boot time
22 * This function is called from start.S
23 */
24void save_boot_params(unsigned long r0, unsigned long r1, unsigned long r2,
25 unsigned long r3)
26{
27 nt_fw_dtb = r2;
28
29 save_boot_params_ret();
30}
31
32/*
33 * Use the saved FDT address provided by TF-A at boot time (NT_FW_CONFIG =
34 * Non Trusted Firmware configuration file) when the pointer is valid
35 */
Ilias Apalodimasab5348a2021-10-26 09:12:33 +030036void *board_fdt_blob_setup(int *err)
Patrick Delaunay98276112020-03-18 09:22:50 +010037{
Patrick Delaunayba779402020-11-06 19:01:29 +010038 log_debug("%s: nt_fw_dtb=%lx\n", __func__, nt_fw_dtb);
Patrick Delaunay98276112020-03-18 09:22:50 +010039
Ilias Apalodimasab5348a2021-10-26 09:12:33 +030040 *err = 0;
Patrick Delaunay98276112020-03-18 09:22:50 +010041 /* use external device tree only if address is valid */
42 if (nt_fw_dtb >= STM32_DDR_BASE) {
43 if (fdt_magic(nt_fw_dtb) == FDT_MAGIC)
44 return (void *)nt_fw_dtb;
Patrick Delaunayba779402020-11-06 19:01:29 +010045 log_debug("%s: DTB not found.\n", __func__);
Patrick Delaunay98276112020-03-18 09:22:50 +010046 }
Patrick Delaunayba779402020-11-06 19:01:29 +010047 log_debug("%s: fall back to builtin DTB, %p\n", __func__, &_end);
Patrick Delaunay98276112020-03-18 09:22:50 +010048
49 return (void *)&_end;
50}