blob: 593d9276d35affa3d9d55c61b7a676c6a67b3841 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Rick Chen76c0a242017-12-26 13:55:51 +08002/*
3 * (C) Copyright 2002
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 *
6 * Copyright (c) 2017 Microsemi Corporation.
7 * Padmarao Begari, Microsemi Corporation <padmarao.begari@microsemi.com>
Rick Chen76c0a242017-12-26 13:55:51 +08008 */
9
10#ifndef __ASM_GBL_DATA_H
11#define __ASM_GBL_DATA_H
12
Tom Rini10e6a372023-12-14 13:16:52 -050013#include <linux/types.h>
Lukas Auer83d573d2019-03-17 19:28:32 +010014#include <asm/smp.h>
Sean Anderson5aa00742020-06-24 06:41:16 -040015#include <asm/u-boot.h>
16#include <compiler.h>
Lukas Auer83d573d2019-03-17 19:28:32 +010017
Rick Chen76c0a242017-12-26 13:55:51 +080018/* Architecture-specific global data */
19struct arch_global_data {
Bin Meng89681a72018-12-12 06:12:45 -080020 long boot_hart; /* boot hart id */
Atish Patra111b8042020-04-21 11:15:01 -070021 phys_addr_t firmware_fdt_addr;
Bin Mengb5f03722023-06-21 23:11:46 +080022#if CONFIG_IS_ENABLED(RISCV_ACLINT)
23 void __iomem *aclint; /* aclint base address */
Bin Mengb6ee5e12018-12-12 06:12:30 -080024#endif
Yu Chien Peter Lin739cd6f2022-10-25 23:03:50 +080025#ifdef CONFIG_ANDES_PLICSW
Yu Chien Peter Lin52d54e12023-02-06 10:06:29 +080026 void __iomem *plicsw; /* andes plicsw base address */
Rick Chen6df4ed02019-04-02 15:56:39 +080027#endif
Bin Mengb161f902020-04-16 08:09:30 -070028#if CONFIG_IS_ENABLED(SMP)
Lukas Auer83d573d2019-03-17 19:28:32 +010029 struct ipi_data ipi[CONFIG_NR_CPUS];
30#endif
Nikita Shubin7e5e0292022-09-02 11:47:39 +030031#if !CONFIG_IS_ENABLED(XIP)
Rick Chen9c4d5c12022-09-21 14:34:54 +080032#ifdef CONFIG_AVAILABLE_HARTS
Lukas Auer83d573d2019-03-17 19:28:32 +010033 ulong available_harts;
Rick Chene5e6c362019-04-30 13:49:33 +080034#endif
Rick Chen9c4d5c12022-09-21 14:34:54 +080035#endif
Heinrich Schuchardt565ac632023-12-19 16:04:03 +010036#if CONFIG_IS_ENABLED(ACPI)
37 ulong table_start; /* Start address of ACPI tables */
38 ulong table_end; /* End address of ACPI tables */
39 ulong table_start_high; /* Start address of high ACPI tables */
40 ulong table_end_high; /* End address of high ACPI tables */
41#endif
Simon Glass9b388102023-09-19 21:00:15 -060042#ifdef CONFIG_SMBIOS
43 ulong smbios_start; /* Start address of SMBIOS table */
44#endif
Rick Chen76c0a242017-12-26 13:55:51 +080045};
46
47#include <asm-generic/global_data.h>
48
Rick Chenb34b4b92018-02-12 11:10:04 +080049#define DECLARE_GLOBAL_DATA_PTR register gd_t *gd asm ("gp")
Rick Chen76c0a242017-12-26 13:55:51 +080050
Heinrich Schuchardt6e7eb462020-09-10 07:47:39 +020051static inline void set_gd(volatile gd_t *gd_ptr)
52{
53#ifdef CONFIG_64BIT
54 asm volatile("ld gp, %0\n" : : "m"(gd_ptr));
55#else
56 asm volatile("lw gp, %0\n" : : "m"(gd_ptr));
57#endif
58}
59
Rick Chen76c0a242017-12-26 13:55:51 +080060#endif /* __ASM_GBL_DATA_H */