mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-15 17:28:15 +00:00
d4ea649f17
In RISC-V, M-mode software can reserve physical memory regions by setting appropriate physical memory protection (PMP) csr. As the PMP csr are accessible only in M-mode, S-mode U-Boot can not read this configuration directly. However, M-mode software can pass this information via reserved-memory node in device tree so that S-mode software can access this information. This patch provides a framework to copy to the reserved-memory node from one DT to another. This will be used to update the DT used by U-Boot and the DT passed to the next stage OS. Signed-off-by: Atish Patra <atish.patra@wdc.com> Reviewed-by: Bin Meng <bmeng.cn@gmail.com> Tested-by: Bin Meng <bmeng.cn@gmail.com>
40 lines
948 B
C
40 lines
948 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* (C) Copyright 2002
|
|
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
*
|
|
* Copyright (c) 2017 Microsemi Corporation.
|
|
* Padmarao Begari, Microsemi Corporation <padmarao.begari@microsemi.com>
|
|
*/
|
|
|
|
#ifndef __ASM_GBL_DATA_H
|
|
#define __ASM_GBL_DATA_H
|
|
|
|
#include <asm/smp.h>
|
|
|
|
/* Architecture-specific global data */
|
|
struct arch_global_data {
|
|
long boot_hart; /* boot hart id */
|
|
phys_addr_t firmware_fdt_addr;
|
|
#ifdef CONFIG_SIFIVE_CLINT
|
|
void __iomem *clint; /* clint base address */
|
|
#endif
|
|
#ifdef CONFIG_ANDES_PLIC
|
|
void __iomem *plic; /* plic base address */
|
|
#endif
|
|
#ifdef CONFIG_ANDES_PLMT
|
|
void __iomem *plmt; /* plmt base address */
|
|
#endif
|
|
#if CONFIG_IS_ENABLED(SMP)
|
|
struct ipi_data ipi[CONFIG_NR_CPUS];
|
|
#endif
|
|
#ifndef CONFIG_XIP
|
|
ulong available_harts;
|
|
#endif
|
|
};
|
|
|
|
#include <asm-generic/global_data.h>
|
|
|
|
#define DECLARE_GLOBAL_DATA_PTR register gd_t *gd asm ("gp")
|
|
|
|
#endif /* __ASM_GBL_DATA_H */
|