| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
 | 2 |  * This file is subject to the terms and conditions of the GNU General Public | 
 | 3 |  * License.  See the file "COPYING" in the main directory of this archive | 
 | 4 |  * for more details. | 
 | 5 |  * | 
 | 6 |  * SGI specific setup. | 
 | 7 |  * | 
| Dean Nelson | 2e34f07 | 2005-03-21 19:41:00 -0700 | [diff] [blame] | 8 |  * Copyright (C) 1995-1997,1999,2001-2005 Silicon Graphics, Inc.  All rights reserved. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 |  * Copyright (C) 1999 Ralf Baechle (ralf@gnu.org) | 
 | 10 |  */ | 
 | 11 | #ifndef _ASM_IA64_SN_ARCH_H | 
 | 12 | #define _ASM_IA64_SN_ARCH_H | 
 | 13 |  | 
| Tony Luck | 8d7e351 | 2005-07-06 18:18:10 -0700 | [diff] [blame] | 14 | #include <linux/numa.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <asm/types.h> | 
 | 16 | #include <asm/percpu.h> | 
 | 17 | #include <asm/sn/types.h> | 
 | 18 | #include <asm/sn/sn_cpuid.h> | 
 | 19 |  | 
 | 20 | /* | 
| Jack Steiner | 24ee0a6 | 2005-09-12 12:15:43 -0500 | [diff] [blame] | 21 |  * This is the maximum number of NUMALINK nodes that can be part of a single | 
 | 22 |  * SSI kernel. This number includes C-brick, M-bricks, and TIOs. Nodes in | 
 | 23 |  * remote partitions are NOT included in this number. | 
 | 24 |  * The number of compact nodes cannot exceed size of a coherency domain. | 
 | 25 |  * The purpose of this define is to specify a node count that includes | 
 | 26 |  * all C/M/TIO nodes in an SSI system. | 
 | 27 |  * | 
 | 28 |  * SGI system can currently support up to 256 C/M nodes plus additional TIO nodes. | 
 | 29 |  * | 
 | 30 |  * 	Note: ACPI20 has an architectural limit of 256 nodes. When we upgrade | 
 | 31 |  * 	to ACPI3.0, this limit will be removed. The notion of "compact nodes" | 
 | 32 |  * 	should be deleted and TIOs should be included in MAX_NUMNODES. | 
 | 33 |  */ | 
| Jack Steiner | 18810d1 | 2006-02-23 13:16:44 -0600 | [diff] [blame] | 34 | #define MAX_TIO_NODES		MAX_NUMNODES | 
 | 35 | #define MAX_COMPACT_NODES	(MAX_NUMNODES + MAX_TIO_NODES) | 
| Jack Steiner | 24ee0a6 | 2005-09-12 12:15:43 -0500 | [diff] [blame] | 36 |  | 
 | 37 | /* | 
 | 38 |  * Maximum number of nodes in all partitions and in all coherency domains. | 
 | 39 |  * This is the total number of nodes accessible in the numalink fabric. It | 
 | 40 |  * includes all C & M bricks, plus all TIOs. | 
 | 41 |  * | 
 | 42 |  * This value is also the value of the maximum number of NASIDs in the numalink | 
 | 43 |  * fabric. | 
 | 44 |  */ | 
| Jack Steiner | 59c4223 | 2005-09-27 08:25:32 -0500 | [diff] [blame] | 45 | #define MAX_NUMALINK_NODES	16384 | 
| Jack Steiner | 24ee0a6 | 2005-09-12 12:15:43 -0500 | [diff] [blame] | 46 |  | 
 | 47 | /* | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 |  * The following defines attributes of the HUB chip. These attributes are | 
 | 49 |  * frequently referenced. They are kept in the per-cpu data areas of each cpu. | 
 | 50 |  * They are kept together in a struct to minimize cache misses. | 
 | 51 |  */ | 
 | 52 | struct sn_hub_info_s { | 
 | 53 | 	u8 shub2; | 
 | 54 | 	u8 nasid_shift; | 
 | 55 | 	u8 as_shift; | 
 | 56 | 	u8 shub_1_1_found; | 
 | 57 | 	u16 nasid_bitmask; | 
 | 58 | }; | 
 | 59 | DECLARE_PER_CPU(struct sn_hub_info_s, __sn_hub_info); | 
 | 60 | #define sn_hub_info 	(&__get_cpu_var(__sn_hub_info)) | 
 | 61 | #define is_shub2()	(sn_hub_info->shub2) | 
 | 62 | #define is_shub1()	(sn_hub_info->shub2 == 0) | 
 | 63 |  | 
 | 64 | /* | 
 | 65 |  * Use this macro to test if shub 1.1 wars should be enabled | 
 | 66 |  */ | 
 | 67 | #define enable_shub_wars_1_1()	(sn_hub_info->shub_1_1_found) | 
 | 68 |  | 
 | 69 |  | 
 | 70 | /* | 
| Dean Nelson | 2e34f07 | 2005-03-21 19:41:00 -0700 | [diff] [blame] | 71 |  * Compact node ID to nasid mappings kept in the per-cpu data areas of each | 
 | 72 |  * cpu. | 
 | 73 |  */ | 
| Dean Roe | c2a4969 | 2006-02-14 15:01:23 -0600 | [diff] [blame] | 74 | DECLARE_PER_CPU(short, __sn_cnodeid_to_nasid[MAX_COMPACT_NODES]); | 
| Dean Nelson | 2e34f07 | 2005-03-21 19:41:00 -0700 | [diff] [blame] | 75 | #define sn_cnodeid_to_nasid	(&__get_cpu_var(__sn_cnodeid_to_nasid[0])) | 
 | 76 |  | 
 | 77 |  | 
| Dean Nelson | 7fbd2a5 | 2005-03-23 19:11:00 -0700 | [diff] [blame] | 78 | extern u8 sn_partition_id; | 
 | 79 | extern u8 sn_system_size; | 
 | 80 | extern u8 sn_sharing_domain_size; | 
 | 81 | extern u8 sn_region_size; | 
 | 82 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | extern void sn_flush_all_caches(long addr, long bytes); | 
| John Keller | 6e9de18 | 2007-08-22 19:32:06 -0500 | [diff] [blame^] | 84 | extern bool sn_cpu_disable_allowed(int cpu); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 |  | 
 | 86 | #endif /* _ASM_IA64_SN_ARCH_H */ |