Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Sam Ravnborg | f5e706a | 2008-07-17 21:55:51 -0700 | [diff] [blame] | 2 | /* cpudata.h: Per-cpu parameters. |
| 3 | * |
| 4 | * Copyright (C) 2003, 2005, 2006 David S. Miller (davem@davemloft.net) |
| 5 | */ |
| 6 | |
| 7 | #ifndef _SPARC64_CPUDATA_H |
| 8 | #define _SPARC64_CPUDATA_H |
| 9 | |
Sam Ravnborg | f5e706a | 2008-07-17 21:55:51 -0700 | [diff] [blame] | 10 | #ifndef __ASSEMBLY__ |
| 11 | |
Sam Ravnborg | f5e706a | 2008-07-17 21:55:51 -0700 | [diff] [blame] | 12 | typedef struct { |
| 13 | /* Dcache line 1 */ |
| 14 | unsigned int __softirq_pending; /* must be 1st, see rtrap.S */ |
David S. Miller | e5553a6 | 2009-01-29 21:22:47 -0800 | [diff] [blame] | 15 | unsigned int __nmi_count; |
Sam Ravnborg | f5e706a | 2008-07-17 21:55:51 -0700 | [diff] [blame] | 16 | unsigned long clock_tick; /* %tick's per second */ |
| 17 | unsigned long __pad; |
David S. Miller | daecbf5 | 2010-04-06 17:38:52 -0700 | [diff] [blame] | 18 | unsigned int irq0_irqs; |
Sam Ravnborg | f5e706a | 2008-07-17 21:55:51 -0700 | [diff] [blame] | 19 | unsigned int __pad2; |
| 20 | |
| 21 | /* Dcache line 2, rarely used */ |
| 22 | unsigned int dcache_size; |
| 23 | unsigned int dcache_line_size; |
| 24 | unsigned int icache_size; |
| 25 | unsigned int icache_line_size; |
| 26 | unsigned int ecache_size; |
| 27 | unsigned int ecache_line_size; |
Atish Patra | d624716 | 2016-10-19 18:33:29 -0600 | [diff] [blame] | 28 | unsigned short sock_id; /* physical package */ |
chris hyser | acc455c | 2015-04-22 12:28:31 -0400 | [diff] [blame] | 29 | unsigned short core_id; |
Atish Patra | d624716 | 2016-10-19 18:33:29 -0600 | [diff] [blame] | 30 | unsigned short max_cache_id; /* groupings of highest shared cache */ |
| 31 | unsigned short proc_id; /* strand (aka HW thread) id */ |
Sam Ravnborg | f5e706a | 2008-07-17 21:55:51 -0700 | [diff] [blame] | 32 | } cpuinfo_sparc; |
| 33 | |
| 34 | DECLARE_PER_CPU(cpuinfo_sparc, __cpu_data); |
| 35 | #define cpu_data(__cpu) per_cpu(__cpu_data, (__cpu)) |
Christoph Lameter | 494fc42 | 2014-08-17 12:30:54 -0500 | [diff] [blame] | 36 | #define local_cpu_data() (*this_cpu_ptr(&__cpu_data)) |
Sam Ravnborg | f5e706a | 2008-07-17 21:55:51 -0700 | [diff] [blame] | 37 | |
Sam Ravnborg | f5e706a | 2008-07-17 21:55:51 -0700 | [diff] [blame] | 38 | #endif /* !(__ASSEMBLY__) */ |
| 39 | |
David S. Miller | 19f0fa3 | 2009-04-01 01:26:43 -0700 | [diff] [blame] | 40 | #include <asm/trap_block.h> |
Sam Ravnborg | f5e706a | 2008-07-17 21:55:51 -0700 | [diff] [blame] | 41 | |
| 42 | #endif /* _SPARC64_CPUDATA_H */ |