2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2017-12-26 05:55:51 +00:00
|
|
|
/*
|
|
|
|
* (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
|
|
|
|
|
2019-03-17 18:28:32 +00:00
|
|
|
#include <asm/smp.h>
|
|
|
|
|
2017-12-26 05:55:51 +00:00
|
|
|
/* Architecture-specific global data */
|
|
|
|
struct arch_global_data {
|
2018-12-12 14:12:45 +00:00
|
|
|
long boot_hart; /* boot hart id */
|
2018-12-12 14:12:30 +00:00
|
|
|
#ifdef CONFIG_SIFIVE_CLINT
|
|
|
|
void __iomem *clint; /* clint base address */
|
|
|
|
#endif
|
2019-04-02 07:56:39 +00:00
|
|
|
#ifdef CONFIG_ANDES_PLIC
|
|
|
|
void __iomem *plic; /* plic base address */
|
|
|
|
#endif
|
2019-04-02 07:56:40 +00:00
|
|
|
#ifdef CONFIG_ANDES_PLMT
|
|
|
|
void __iomem *plmt; /* plmt base address */
|
|
|
|
#endif
|
2019-03-17 18:28:32 +00:00
|
|
|
#ifdef CONFIG_SMP
|
|
|
|
struct ipi_data ipi[CONFIG_NR_CPUS];
|
|
|
|
#endif
|
2019-04-30 05:49:33 +00:00
|
|
|
#ifndef CONFIG_XIP
|
2019-03-17 18:28:32 +00:00
|
|
|
ulong available_harts;
|
2019-04-30 05:49:33 +00:00
|
|
|
#endif
|
2017-12-26 05:55:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#include <asm-generic/global_data.h>
|
|
|
|
|
2018-02-12 03:10:04 +00:00
|
|
|
#define DECLARE_GLOBAL_DATA_PTR register gd_t *gd asm ("gp")
|
2017-12-26 05:55:51 +00:00
|
|
|
|
|
|
|
#endif /* __ASM_GBL_DATA_H */
|