blob: 2eb14815bcf089a3939ef7bb2280c8b93c80f74a [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
Lukas Auer83d573d2019-03-17 19:28:32 +010013#include <asm/smp.h>
Sean Anderson5aa00742020-06-24 06:41:16 -040014#include <asm/u-boot.h>
15#include <compiler.h>
Lukas Auer83d573d2019-03-17 19:28:32 +010016
Rick Chen76c0a242017-12-26 13:55:51 +080017/* Architecture-specific global data */
18struct arch_global_data {
Bin Meng89681a72018-12-12 06:12:45 -080019 long boot_hart; /* boot hart id */
Atish Patra111b8042020-04-21 11:15:01 -070020 phys_addr_t firmware_fdt_addr;
Bin Mengb6ee5e12018-12-12 06:12:30 -080021#ifdef CONFIG_SIFIVE_CLINT
22 void __iomem *clint; /* clint base address */
23#endif
Rick Chen6df4ed02019-04-02 15:56:39 +080024#ifdef CONFIG_ANDES_PLIC
25 void __iomem *plic; /* plic base address */
26#endif
Rick Chen73766772019-04-02 15:56:40 +080027#ifdef CONFIG_ANDES_PLMT
28 void __iomem *plmt; /* plmt base address */
29#endif
Bin Mengb161f902020-04-16 08:09:30 -070030#if CONFIG_IS_ENABLED(SMP)
Lukas Auer83d573d2019-03-17 19:28:32 +010031 struct ipi_data ipi[CONFIG_NR_CPUS];
32#endif
Rick Chene5e6c362019-04-30 13:49:33 +080033#ifndef CONFIG_XIP
Lukas Auer83d573d2019-03-17 19:28:32 +010034 ulong available_harts;
Rick Chene5e6c362019-04-30 13:49:33 +080035#endif
Rick Chen76c0a242017-12-26 13:55:51 +080036};
37
38#include <asm-generic/global_data.h>
39
Rick Chenb34b4b92018-02-12 11:10:04 +080040#define DECLARE_GLOBAL_DATA_PTR register gd_t *gd asm ("gp")
Rick Chen76c0a242017-12-26 13:55:51 +080041
42#endif /* __ASM_GBL_DATA_H */