2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2003-02-28 00:49:47 +00:00
|
|
|
/*
|
2010-07-24 18:22:02 +00:00
|
|
|
* (C) Copyright 2002-2010
|
2003-02-28 00:49:47 +00:00
|
|
|
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ASM_GBL_DATA_H
|
|
|
|
#define __ASM_GBL_DATA_H
|
|
|
|
|
|
|
|
#include <asm/regdef.h>
|
2020-12-11 16:05:23 +00:00
|
|
|
#include <asm/types.h>
|
|
|
|
|
|
|
|
struct octeon_eeprom_mac_addr {
|
|
|
|
u8 mac_addr_base[6];
|
|
|
|
u8 count;
|
|
|
|
};
|
2003-02-28 00:49:47 +00:00
|
|
|
|
2012-12-13 20:48:30 +00:00
|
|
|
/* Architecture-specific global data */
|
|
|
|
struct arch_global_data {
|
2016-01-29 13:54:52 +00:00
|
|
|
#ifdef CONFIG_DYNAMIC_IO_PORT_BASE
|
|
|
|
unsigned long io_port_base;
|
|
|
|
#endif
|
2016-03-16 08:59:52 +00:00
|
|
|
#ifdef CONFIG_ARCH_ATH79
|
|
|
|
unsigned long id;
|
|
|
|
unsigned long soc;
|
|
|
|
unsigned long rev;
|
|
|
|
unsigned long ver;
|
|
|
|
#endif
|
2016-09-21 10:18:48 +00:00
|
|
|
#ifdef CONFIG_SYS_CACHE_SIZE_AUTO
|
|
|
|
unsigned short l1i_line_size;
|
|
|
|
unsigned short l1d_line_size;
|
|
|
|
#endif
|
2016-09-21 10:18:54 +00:00
|
|
|
#ifdef CONFIG_MIPS_L2_CACHE
|
|
|
|
unsigned short l2_line_size;
|
|
|
|
#endif
|
2020-04-21 07:28:32 +00:00
|
|
|
#ifdef CONFIG_ARCH_MTMIPS
|
|
|
|
unsigned long timer_freq;
|
|
|
|
#endif
|
2020-12-11 16:05:23 +00:00
|
|
|
#ifdef CONFIG_ARCH_OCTEON
|
|
|
|
struct octeon_eeprom_mac_addr mac_desc;
|
|
|
|
#endif
|
2012-12-13 20:48:30 +00:00
|
|
|
};
|
|
|
|
|
2012-12-13 20:49:19 +00:00
|
|
|
#include <asm-generic/global_data.h>
|
2003-02-28 00:49:47 +00:00
|
|
|
|
2003-07-24 23:38:38 +00:00
|
|
|
#define DECLARE_GLOBAL_DATA_PTR register volatile gd_t *gd asm ("k0")
|
2003-02-28 00:49:47 +00:00
|
|
|
|
|
|
|
#endif /* __ASM_GBL_DATA_H */
|