xref: /openbmc/linux/arch/x86/include/asm/uv/uv_hub.h (revision c4ed3f04)
1bb898558SAl Viro /*
2bb898558SAl Viro  * This file is subject to the terms and conditions of the GNU General Public
3bb898558SAl Viro  * License.  See the file "COPYING" in the main directory of this archive
4bb898558SAl Viro  * for more details.
5bb898558SAl Viro  *
6bb898558SAl Viro  * SGI UV architectural definitions
7bb898558SAl Viro  *
8bb898558SAl Viro  * Copyright (C) 2007-2008 Silicon Graphics, Inc. All rights reserved.
9bb898558SAl Viro  */
10bb898558SAl Viro 
1105e4d316SH. Peter Anvin #ifndef _ASM_X86_UV_UV_HUB_H
1205e4d316SH. Peter Anvin #define _ASM_X86_UV_UV_HUB_H
13bb898558SAl Viro 
14bc5d9940SJack Steiner #ifdef CONFIG_X86_64
15bb898558SAl Viro #include <linux/numa.h>
16bb898558SAl Viro #include <linux/percpu.h>
17c08b6accSMike Travis #include <linux/timer.h>
18bb898558SAl Viro #include <asm/types.h>
19bb898558SAl Viro #include <asm/percpu.h>
2066666e50SJack Steiner #include <asm/uv/uv_mmrs.h>
21bb898558SAl Viro 
22bb898558SAl Viro 
23bb898558SAl Viro /*
24bb898558SAl Viro  * Addressing Terminology
25bb898558SAl Viro  *
26bb898558SAl Viro  *	M       - The low M bits of a physical address represent the offset
27bb898558SAl Viro  *		  into the blade local memory. RAM memory on a blade is physically
28bb898558SAl Viro  *		  contiguous (although various IO spaces may punch holes in
29bb898558SAl Viro  *		  it)..
30bb898558SAl Viro  *
31bb898558SAl Viro  * 	N	- Number of bits in the node portion of a socket physical
32bb898558SAl Viro  * 		  address.
33bb898558SAl Viro  *
34bb898558SAl Viro  * 	NASID   - network ID of a router, Mbrick or Cbrick. Nasid values of
35bb898558SAl Viro  * 	 	  routers always have low bit of 1, C/MBricks have low bit
36bb898558SAl Viro  * 		  equal to 0. Most addressing macros that target UV hub chips
37bb898558SAl Viro  * 		  right shift the NASID by 1 to exclude the always-zero bit.
38bb898558SAl Viro  * 		  NASIDs contain up to 15 bits.
39bb898558SAl Viro  *
40bb898558SAl Viro  *	GNODE   - NASID right shifted by 1 bit. Most mmrs contain gnodes instead
41bb898558SAl Viro  *		  of nasids.
42bb898558SAl Viro  *
43bb898558SAl Viro  * 	PNODE   - the low N bits of the GNODE. The PNODE is the most useful variant
44bb898558SAl Viro  * 		  of the nasid for socket usage.
45bb898558SAl Viro  *
46bb898558SAl Viro  *
47bb898558SAl Viro  *  NumaLink Global Physical Address Format:
48bb898558SAl Viro  *  +--------------------------------+---------------------+
49bb898558SAl Viro  *  |00..000|      GNODE             |      NodeOffset     |
50bb898558SAl Viro  *  +--------------------------------+---------------------+
51bb898558SAl Viro  *          |<-------53 - M bits --->|<--------M bits ----->
52bb898558SAl Viro  *
53bb898558SAl Viro  *	M - number of node offset bits (35 .. 40)
54bb898558SAl Viro  *
55bb898558SAl Viro  *
56bb898558SAl Viro  *  Memory/UV-HUB Processor Socket Address Format:
57bb898558SAl Viro  *  +----------------+---------------+---------------------+
58bb898558SAl Viro  *  |00..000000000000|   PNODE       |      NodeOffset     |
59bb898558SAl Viro  *  +----------------+---------------+---------------------+
60bb898558SAl Viro  *                   <--- N bits --->|<--------M bits ----->
61bb898558SAl Viro  *
62bb898558SAl Viro  *	M - number of node offset bits (35 .. 40)
63bb898558SAl Viro  *	N - number of PNODE bits (0 .. 10)
64bb898558SAl Viro  *
65bb898558SAl Viro  *		Note: M + N cannot currently exceed 44 (x86_64) or 46 (IA64).
66bb898558SAl Viro  *		The actual values are configuration dependent and are set at
67bb898558SAl Viro  *		boot time. M & N values are set by the hardware/BIOS at boot.
68bb898558SAl Viro  *
69bb898558SAl Viro  *
70bb898558SAl Viro  * APICID format
71bb898558SAl Viro  * 	NOTE!!!!!! This is the current format of the APICID. However, code
72bb898558SAl Viro  * 	should assume that this will change in the future. Use functions
73bb898558SAl Viro  * 	in this file for all APICID bit manipulations and conversion.
74bb898558SAl Viro  *
75bb898558SAl Viro  * 		1111110000000000
76bb898558SAl Viro  * 		5432109876543210
77bb898558SAl Viro  *		pppppppppplc0cch
78bb898558SAl Viro  *		sssssssssss
79bb898558SAl Viro  *
80bb898558SAl Viro  *			p  = pnode bits
81bb898558SAl Viro  *			l =  socket number on board
82bb898558SAl Viro  *			c  = core
83bb898558SAl Viro  *			h  = hyperthread
84bb898558SAl Viro  *			s  = bits that are in the SOCKET_ID CSR
85bb898558SAl Viro  *
86bb898558SAl Viro  *	Note: Processor only supports 12 bits in the APICID register. The ACPI
87bb898558SAl Viro  *	      tables hold all 16 bits. Software needs to be aware of this.
88bb898558SAl Viro  *
89bb898558SAl Viro  * 	      Unless otherwise specified, all references to APICID refer to
90bb898558SAl Viro  * 	      the FULL value contained in ACPI tables, not the subset in the
91bb898558SAl Viro  * 	      processor APICID register.
92bb898558SAl Viro  */
93bb898558SAl Viro 
94bb898558SAl Viro 
95bb898558SAl Viro /*
96bb898558SAl Viro  * Maximum number of bricks in all partitions and in all coherency domains.
97bb898558SAl Viro  * This is the total number of bricks accessible in the numalink fabric. It
98bb898558SAl Viro  * includes all C & M bricks. Routers are NOT included.
99bb898558SAl Viro  *
100bb898558SAl Viro  * This value is also the value of the maximum number of non-router NASIDs
101bb898558SAl Viro  * in the numalink fabric.
102bb898558SAl Viro  *
103bb898558SAl Viro  * NOTE: a brick may contain 1 or 2 OS nodes. Don't get these confused.
104bb898558SAl Viro  */
105bb898558SAl Viro #define UV_MAX_NUMALINK_BLADES	16384
106bb898558SAl Viro 
107bb898558SAl Viro /*
108bb898558SAl Viro  * Maximum number of C/Mbricks within a software SSI (hardware may support
109bb898558SAl Viro  * more).
110bb898558SAl Viro  */
111bb898558SAl Viro #define UV_MAX_SSI_BLADES	256
112bb898558SAl Viro 
113bb898558SAl Viro /*
114bb898558SAl Viro  * The largest possible NASID of a C or M brick (+ 2)
115bb898558SAl Viro  */
116bb898558SAl Viro #define UV_MAX_NASID_VALUE	(UV_MAX_NUMALINK_NODES * 2)
117bb898558SAl Viro 
1187f1baa06SMike Travis struct uv_scir_s {
1197f1baa06SMike Travis 	struct timer_list timer;
1207f1baa06SMike Travis 	unsigned long	offset;
1217f1baa06SMike Travis 	unsigned long	last;
1227f1baa06SMike Travis 	unsigned long	idle_on;
1237f1baa06SMike Travis 	unsigned long	idle_off;
1247f1baa06SMike Travis 	unsigned char	state;
1257f1baa06SMike Travis 	unsigned char	enabled;
1267f1baa06SMike Travis };
1277f1baa06SMike Travis 
128bb898558SAl Viro /*
129bb898558SAl Viro  * The following defines attributes of the HUB chip. These attributes are
130bb898558SAl Viro  * frequently referenced and are kept in the per-cpu data areas of each cpu.
131bb898558SAl Viro  * They are kept together in a struct to minimize cache misses.
132bb898558SAl Viro  */
133bb898558SAl Viro struct uv_hub_info_s {
134bb898558SAl Viro 	unsigned long		global_mmr_base;
135bb898558SAl Viro 	unsigned long		gpa_mask;
136c4ed3f04SJack Steiner 	unsigned int		gnode_extra;
137bb898558SAl Viro 	unsigned long		gnode_upper;
138bb898558SAl Viro 	unsigned long		lowmem_remap_top;
139bb898558SAl Viro 	unsigned long		lowmem_remap_base;
140bb898558SAl Viro 	unsigned short		pnode;
141bb898558SAl Viro 	unsigned short		pnode_mask;
142bb898558SAl Viro 	unsigned short		coherency_domain_number;
143bb898558SAl Viro 	unsigned short		numa_blade_id;
144bb898558SAl Viro 	unsigned char		blade_processor_id;
145bb898558SAl Viro 	unsigned char		m_val;
146bb898558SAl Viro 	unsigned char		n_val;
1477f1baa06SMike Travis 	struct uv_scir_s	scir;
148bb898558SAl Viro };
1497f1baa06SMike Travis 
150bb898558SAl Viro DECLARE_PER_CPU(struct uv_hub_info_s, __uv_hub_info);
151bb898558SAl Viro #define uv_hub_info 		(&__get_cpu_var(__uv_hub_info))
152bb898558SAl Viro #define uv_cpu_hub_info(cpu)	(&per_cpu(__uv_hub_info, cpu))
153bb898558SAl Viro 
154bb898558SAl Viro /*
155bb898558SAl Viro  * Local & Global MMR space macros.
156bb898558SAl Viro  * 	Note: macros are intended to be used ONLY by inline functions
157bb898558SAl Viro  * 	in this file - not by other kernel code.
158bb898558SAl Viro  * 		n -  NASID (full 15-bit global nasid)
159bb898558SAl Viro  * 		g -  GNODE (full 15-bit global nasid, right shifted 1)
160bb898558SAl Viro  * 		p -  PNODE (local part of nsids, right shifted 1)
161bb898558SAl Viro  */
162bb898558SAl Viro #define UV_NASID_TO_PNODE(n)		(((n) >> 1) & uv_hub_info->pnode_mask)
163c4ed3f04SJack Steiner #define UV_PNODE_TO_GNODE(p)		((p) |uv_hub_info->gnode_extra)
164c4ed3f04SJack Steiner #define UV_PNODE_TO_NASID(p)		(UV_PNODE_TO_GNODE(p) << 1)
165bb898558SAl Viro 
166bb898558SAl Viro #define UV_LOCAL_MMR_BASE		0xf4000000UL
167bb898558SAl Viro #define UV_GLOBAL_MMR32_BASE		0xf8000000UL
168bb898558SAl Viro #define UV_GLOBAL_MMR64_BASE		(uv_hub_info->global_mmr_base)
169bb898558SAl Viro #define UV_LOCAL_MMR_SIZE		(64UL * 1024 * 1024)
170bb898558SAl Viro #define UV_GLOBAL_MMR32_SIZE		(64UL * 1024 * 1024)
171bb898558SAl Viro 
172bb898558SAl Viro #define UV_GLOBAL_MMR32_PNODE_SHIFT	15
173bb898558SAl Viro #define UV_GLOBAL_MMR64_PNODE_SHIFT	26
174bb898558SAl Viro 
175bb898558SAl Viro #define UV_GLOBAL_MMR32_PNODE_BITS(p)	((p) << (UV_GLOBAL_MMR32_PNODE_SHIFT))
176bb898558SAl Viro 
177bb898558SAl Viro #define UV_GLOBAL_MMR64_PNODE_BITS(p)					\
178c4ed3f04SJack Steiner 	((unsigned long)(UV_PNODE_TO_GNODE(p)) << UV_GLOBAL_MMR64_PNODE_SHIFT)
179bb898558SAl Viro 
180bb898558SAl Viro #define UV_APIC_PNODE_SHIFT	6
181bb898558SAl Viro 
1827f1baa06SMike Travis /* Local Bus from cpu's perspective */
1837f1baa06SMike Travis #define LOCAL_BUS_BASE		0x1c00000
1847f1baa06SMike Travis #define LOCAL_BUS_SIZE		(4 * 1024 * 1024)
1857f1baa06SMike Travis 
1867f1baa06SMike Travis /*
1877f1baa06SMike Travis  * System Controller Interface Reg
1887f1baa06SMike Travis  *
1897f1baa06SMike Travis  * Note there are NO leds on a UV system.  This register is only
1907f1baa06SMike Travis  * used by the system controller to monitor system-wide operation.
1917f1baa06SMike Travis  * There are 64 regs per node.  With Nahelem cpus (2 cores per node,
1927f1baa06SMike Travis  * 8 cpus per core, 2 threads per cpu) there are 32 cpu threads on
1937f1baa06SMike Travis  * a node.
1947f1baa06SMike Travis  *
1957f1baa06SMike Travis  * The window is located at top of ACPI MMR space
1967f1baa06SMike Travis  */
1977f1baa06SMike Travis #define SCIR_WINDOW_COUNT	64
1987f1baa06SMike Travis #define SCIR_LOCAL_MMR_BASE	(LOCAL_BUS_BASE + \
1997f1baa06SMike Travis 				 LOCAL_BUS_SIZE - \
2007f1baa06SMike Travis 				 SCIR_WINDOW_COUNT)
2017f1baa06SMike Travis 
2027f1baa06SMike Travis #define SCIR_CPU_HEARTBEAT	0x01	/* timer interrupt */
2037f1baa06SMike Travis #define SCIR_CPU_ACTIVITY	0x02	/* not idle */
2047f1baa06SMike Travis #define SCIR_CPU_HB_INTERVAL	(HZ)	/* once per second */
2057f1baa06SMike Travis 
2068661984fSDimitri Sivanich /* Loop through all installed blades */
2078661984fSDimitri Sivanich #define for_each_possible_blade(bid)		\
2088661984fSDimitri Sivanich 	for ((bid) = 0; (bid) < uv_num_possible_blades(); (bid)++)
2098661984fSDimitri Sivanich 
210bb898558SAl Viro /*
211bb898558SAl Viro  * Macros for converting between kernel virtual addresses, socket local physical
212bb898558SAl Viro  * addresses, and UV global physical addresses.
213bb898558SAl Viro  * 	Note: use the standard __pa() & __va() macros for converting
214bb898558SAl Viro  * 	      between socket virtual and socket physical addresses.
215bb898558SAl Viro  */
216bb898558SAl Viro 
217bb898558SAl Viro /* socket phys RAM --> UV global physical address */
218bb898558SAl Viro static inline unsigned long uv_soc_phys_ram_to_gpa(unsigned long paddr)
219bb898558SAl Viro {
220bb898558SAl Viro 	if (paddr < uv_hub_info->lowmem_remap_top)
221189f67c4SJack Steiner 		paddr |= uv_hub_info->lowmem_remap_base;
222bb898558SAl Viro 	return paddr | uv_hub_info->gnode_upper;
223bb898558SAl Viro }
224bb898558SAl Viro 
225bb898558SAl Viro 
226bb898558SAl Viro /* socket virtual --> UV global physical address */
227bb898558SAl Viro static inline unsigned long uv_gpa(void *v)
228bb898558SAl Viro {
229189f67c4SJack Steiner 	return uv_soc_phys_ram_to_gpa(__pa(v));
230bb898558SAl Viro }
231bb898558SAl Viro 
232bb898558SAl Viro /* pnode, offset --> socket virtual */
233bb898558SAl Viro static inline void *uv_pnode_offset_to_vaddr(int pnode, unsigned long offset)
234bb898558SAl Viro {
235bb898558SAl Viro 	return __va(((unsigned long)pnode << uv_hub_info->m_val) | offset);
236bb898558SAl Viro }
237bb898558SAl Viro 
238bb898558SAl Viro 
239bb898558SAl Viro /*
240bb898558SAl Viro  * Extract a PNODE from an APICID (full apicid, not processor subset)
241bb898558SAl Viro  */
242bb898558SAl Viro static inline int uv_apicid_to_pnode(int apicid)
243bb898558SAl Viro {
244bb898558SAl Viro 	return (apicid >> UV_APIC_PNODE_SHIFT);
245bb898558SAl Viro }
246bb898558SAl Viro 
247bb898558SAl Viro /*
248bb898558SAl Viro  * Access global MMRs using the low memory MMR32 space. This region supports
249bb898558SAl Viro  * faster MMR access but not all MMRs are accessible in this space.
250bb898558SAl Viro  */
251bb898558SAl Viro static inline unsigned long *uv_global_mmr32_address(int pnode,
252bb898558SAl Viro 				unsigned long offset)
253bb898558SAl Viro {
254bb898558SAl Viro 	return __va(UV_GLOBAL_MMR32_BASE |
255bb898558SAl Viro 		       UV_GLOBAL_MMR32_PNODE_BITS(pnode) | offset);
256bb898558SAl Viro }
257bb898558SAl Viro 
258bb898558SAl Viro static inline void uv_write_global_mmr32(int pnode, unsigned long offset,
259bb898558SAl Viro 				 unsigned long val)
260bb898558SAl Viro {
261bb898558SAl Viro 	*uv_global_mmr32_address(pnode, offset) = val;
262bb898558SAl Viro }
263bb898558SAl Viro 
264bb898558SAl Viro static inline unsigned long uv_read_global_mmr32(int pnode,
265bb898558SAl Viro 						 unsigned long offset)
266bb898558SAl Viro {
267bb898558SAl Viro 	return *uv_global_mmr32_address(pnode, offset);
268bb898558SAl Viro }
269bb898558SAl Viro 
270bb898558SAl Viro /*
271bb898558SAl Viro  * Access Global MMR space using the MMR space located at the top of physical
272bb898558SAl Viro  * memory.
273bb898558SAl Viro  */
274bb898558SAl Viro static inline unsigned long *uv_global_mmr64_address(int pnode,
275bb898558SAl Viro 				unsigned long offset)
276bb898558SAl Viro {
277bb898558SAl Viro 	return __va(UV_GLOBAL_MMR64_BASE |
278bb898558SAl Viro 		    UV_GLOBAL_MMR64_PNODE_BITS(pnode) | offset);
279bb898558SAl Viro }
280bb898558SAl Viro 
281bb898558SAl Viro static inline void uv_write_global_mmr64(int pnode, unsigned long offset,
282bb898558SAl Viro 				unsigned long val)
283bb898558SAl Viro {
284bb898558SAl Viro 	*uv_global_mmr64_address(pnode, offset) = val;
285bb898558SAl Viro }
286bb898558SAl Viro 
287bb898558SAl Viro static inline unsigned long uv_read_global_mmr64(int pnode,
288bb898558SAl Viro 						 unsigned long offset)
289bb898558SAl Viro {
290bb898558SAl Viro 	return *uv_global_mmr64_address(pnode, offset);
291bb898558SAl Viro }
292bb898558SAl Viro 
293bb898558SAl Viro /*
294bb898558SAl Viro  * Access hub local MMRs. Faster than using global space but only local MMRs
295bb898558SAl Viro  * are accessible.
296bb898558SAl Viro  */
297bb898558SAl Viro static inline unsigned long *uv_local_mmr_address(unsigned long offset)
298bb898558SAl Viro {
299bb898558SAl Viro 	return __va(UV_LOCAL_MMR_BASE | offset);
300bb898558SAl Viro }
301bb898558SAl Viro 
302bb898558SAl Viro static inline unsigned long uv_read_local_mmr(unsigned long offset)
303bb898558SAl Viro {
304bb898558SAl Viro 	return *uv_local_mmr_address(offset);
305bb898558SAl Viro }
306bb898558SAl Viro 
307bb898558SAl Viro static inline void uv_write_local_mmr(unsigned long offset, unsigned long val)
308bb898558SAl Viro {
309bb898558SAl Viro 	*uv_local_mmr_address(offset) = val;
310bb898558SAl Viro }
311bb898558SAl Viro 
3127f1baa06SMike Travis static inline unsigned char uv_read_local_mmr8(unsigned long offset)
3137f1baa06SMike Travis {
3147f1baa06SMike Travis 	return *((unsigned char *)uv_local_mmr_address(offset));
3157f1baa06SMike Travis }
3167f1baa06SMike Travis 
3177f1baa06SMike Travis static inline void uv_write_local_mmr8(unsigned long offset, unsigned char val)
3187f1baa06SMike Travis {
3197f1baa06SMike Travis 	*((unsigned char *)uv_local_mmr_address(offset)) = val;
3207f1baa06SMike Travis }
3217f1baa06SMike Travis 
322bb898558SAl Viro /*
323bb898558SAl Viro  * Structures and definitions for converting between cpu, node, pnode, and blade
324bb898558SAl Viro  * numbers.
325bb898558SAl Viro  */
326bb898558SAl Viro struct uv_blade_info {
327bb898558SAl Viro 	unsigned short	nr_possible_cpus;
328bb898558SAl Viro 	unsigned short	nr_online_cpus;
329bb898558SAl Viro 	unsigned short	pnode;
330bb898558SAl Viro };
331bb898558SAl Viro extern struct uv_blade_info *uv_blade_info;
332bb898558SAl Viro extern short *uv_node_to_blade;
333bb898558SAl Viro extern short *uv_cpu_to_blade;
334bb898558SAl Viro extern short uv_possible_blades;
335bb898558SAl Viro 
336bb898558SAl Viro /* Blade-local cpu number of current cpu. Numbered 0 .. <# cpus on the blade> */
337bb898558SAl Viro static inline int uv_blade_processor_id(void)
338bb898558SAl Viro {
339bb898558SAl Viro 	return uv_hub_info->blade_processor_id;
340bb898558SAl Viro }
341bb898558SAl Viro 
342bb898558SAl Viro /* Blade number of current cpu. Numnbered 0 .. <#blades -1> */
343bb898558SAl Viro static inline int uv_numa_blade_id(void)
344bb898558SAl Viro {
345bb898558SAl Viro 	return uv_hub_info->numa_blade_id;
346bb898558SAl Viro }
347bb898558SAl Viro 
348bb898558SAl Viro /* Convert a cpu number to the the UV blade number */
349bb898558SAl Viro static inline int uv_cpu_to_blade_id(int cpu)
350bb898558SAl Viro {
351bb898558SAl Viro 	return uv_cpu_to_blade[cpu];
352bb898558SAl Viro }
353bb898558SAl Viro 
354bb898558SAl Viro /* Convert linux node number to the UV blade number */
355bb898558SAl Viro static inline int uv_node_to_blade_id(int nid)
356bb898558SAl Viro {
357bb898558SAl Viro 	return uv_node_to_blade[nid];
358bb898558SAl Viro }
359bb898558SAl Viro 
360bb898558SAl Viro /* Convert a blade id to the PNODE of the blade */
361bb898558SAl Viro static inline int uv_blade_to_pnode(int bid)
362bb898558SAl Viro {
363bb898558SAl Viro 	return uv_blade_info[bid].pnode;
364bb898558SAl Viro }
365bb898558SAl Viro 
366bb898558SAl Viro /* Determine the number of possible cpus on a blade */
367bb898558SAl Viro static inline int uv_blade_nr_possible_cpus(int bid)
368bb898558SAl Viro {
369bb898558SAl Viro 	return uv_blade_info[bid].nr_possible_cpus;
370bb898558SAl Viro }
371bb898558SAl Viro 
372bb898558SAl Viro /* Determine the number of online cpus on a blade */
373bb898558SAl Viro static inline int uv_blade_nr_online_cpus(int bid)
374bb898558SAl Viro {
375bb898558SAl Viro 	return uv_blade_info[bid].nr_online_cpus;
376bb898558SAl Viro }
377bb898558SAl Viro 
378bb898558SAl Viro /* Convert a cpu id to the PNODE of the blade containing the cpu */
379bb898558SAl Viro static inline int uv_cpu_to_pnode(int cpu)
380bb898558SAl Viro {
381bb898558SAl Viro 	return uv_blade_info[uv_cpu_to_blade_id(cpu)].pnode;
382bb898558SAl Viro }
383bb898558SAl Viro 
384bb898558SAl Viro /* Convert a linux node number to the PNODE of the blade */
385bb898558SAl Viro static inline int uv_node_to_pnode(int nid)
386bb898558SAl Viro {
387bb898558SAl Viro 	return uv_blade_info[uv_node_to_blade_id(nid)].pnode;
388bb898558SAl Viro }
389bb898558SAl Viro 
390bb898558SAl Viro /* Maximum possible number of blades */
391bb898558SAl Viro static inline int uv_num_possible_blades(void)
392bb898558SAl Viro {
393bb898558SAl Viro 	return uv_possible_blades;
394bb898558SAl Viro }
395bb898558SAl Viro 
3967f1baa06SMike Travis /* Update SCIR state */
3977f1baa06SMike Travis static inline void uv_set_scir_bits(unsigned char value)
3987f1baa06SMike Travis {
3997f1baa06SMike Travis 	if (uv_hub_info->scir.state != value) {
4007f1baa06SMike Travis 		uv_hub_info->scir.state = value;
4017f1baa06SMike Travis 		uv_write_local_mmr8(uv_hub_info->scir.offset, value);
4027f1baa06SMike Travis 	}
4037f1baa06SMike Travis }
40466666e50SJack Steiner 
4057f1baa06SMike Travis static inline void uv_set_cpu_scir_bits(int cpu, unsigned char value)
4067f1baa06SMike Travis {
4077f1baa06SMike Travis 	if (uv_cpu_hub_info(cpu)->scir.state != value) {
4087f1baa06SMike Travis 		uv_cpu_hub_info(cpu)->scir.state = value;
4097f1baa06SMike Travis 		uv_write_local_mmr8(uv_cpu_hub_info(cpu)->scir.offset, value);
4107f1baa06SMike Travis 	}
4117f1baa06SMike Travis }
412bb898558SAl Viro 
41366666e50SJack Steiner static inline void uv_hub_send_ipi(int pnode, int apicid, int vector)
41466666e50SJack Steiner {
41566666e50SJack Steiner 	unsigned long val;
41666666e50SJack Steiner 
41766666e50SJack Steiner 	val = (1UL << UVH_IPI_INT_SEND_SHFT) |
41866666e50SJack Steiner 			((apicid & 0x3f) << UVH_IPI_INT_APIC_ID_SHFT) |
41966666e50SJack Steiner 			(vector << UVH_IPI_INT_VECTOR_SHFT);
42066666e50SJack Steiner 	uv_write_global_mmr64(pnode, UVH_IPI_INT, val);
42166666e50SJack Steiner }
42266666e50SJack Steiner 
423bc5d9940SJack Steiner #endif /* CONFIG_X86_64 */
4247f1baa06SMike Travis #endif /* _ASM_X86_UV_UV_HUB_H */
425