diff options
author | Jesse Barnes <jbarnes@sgi.com> | 2005-02-16 18:38:00 -0500 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2005-05-03 14:16:31 -0400 |
commit | 6adc4cc0eead0c1897d7f1416d749c8e7c91e0bc (patch) | |
tree | 0409af16566bde54a3d75fb0675a26a5cbc4603a /include | |
parent | 9df6f705c0934a49d0f0a3468a5b5044c8aec4f1 (diff) |
[IA64-SGI] remove unused sn header files
This patch makes Jes' patch (which also contains the removal of fetchop.h) a
bit smaller, and removes two other unused files at the same time, sndrv.h and
sn_fru.h.
Signed-off-by: Jesse Barnes <jbarnes@sgi.com>
Signed-off-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-ia64/sn/fetchop.h | 85 | ||||
-rw-r--r-- | include/asm-ia64/sn/sn_fru.h | 44 | ||||
-rw-r--r-- | include/asm-ia64/sn/sndrv.h | 47 |
3 files changed, 0 insertions, 176 deletions
diff --git a/include/asm-ia64/sn/fetchop.h b/include/asm-ia64/sn/fetchop.h deleted file mode 100644 index 5f4ad8f4b5d2..000000000000 --- a/include/asm-ia64/sn/fetchop.h +++ /dev/null | |||
@@ -1,85 +0,0 @@ | |||
1 | /* | ||
2 | * | ||
3 | * This file is subject to the terms and conditions of the GNU General Public | ||
4 | * License. See the file "COPYING" in the main directory of this archive | ||
5 | * for more details. | ||
6 | * | ||
7 | * Copyright (c) 2001-2004 Silicon Graphics, Inc. All rights reserved. | ||
8 | */ | ||
9 | |||
10 | #ifndef _ASM_IA64_SN_FETCHOP_H | ||
11 | #define _ASM_IA64_SN_FETCHOP_H | ||
12 | |||
13 | #include <linux/config.h> | ||
14 | |||
15 | #define FETCHOP_BASENAME "sgi_fetchop" | ||
16 | #define FETCHOP_FULLNAME "/dev/sgi_fetchop" | ||
17 | |||
18 | |||
19 | |||
20 | #define FETCHOP_VAR_SIZE 64 /* 64 byte per fetchop variable */ | ||
21 | |||
22 | #define FETCHOP_LOAD 0 | ||
23 | #define FETCHOP_INCREMENT 8 | ||
24 | #define FETCHOP_DECREMENT 16 | ||
25 | #define FETCHOP_CLEAR 24 | ||
26 | |||
27 | #define FETCHOP_STORE 0 | ||
28 | #define FETCHOP_AND 24 | ||
29 | #define FETCHOP_OR 32 | ||
30 | |||
31 | #define FETCHOP_CLEAR_CACHE 56 | ||
32 | |||
33 | #define FETCHOP_LOAD_OP(addr, op) ( \ | ||
34 | *(volatile long *)((char*) (addr) + (op))) | ||
35 | |||
36 | #define FETCHOP_STORE_OP(addr, op, x) ( \ | ||
37 | *(volatile long *)((char*) (addr) + (op)) = (long) (x)) | ||
38 | |||
39 | #ifdef __KERNEL__ | ||
40 | |||
41 | /* | ||
42 | * Convert a region 6 (kaddr) address to the address of the fetchop variable | ||
43 | */ | ||
44 | #define FETCHOP_KADDR_TO_MSPEC_ADDR(kaddr) TO_MSPEC(kaddr) | ||
45 | |||
46 | |||
47 | /* | ||
48 | * Each Atomic Memory Operation (AMO formerly known as fetchop) | ||
49 | * variable is 64 bytes long. The first 8 bytes are used. The | ||
50 | * remaining 56 bytes are unaddressable due to the operation taking | ||
51 | * that portion of the address. | ||
52 | * | ||
53 | * NOTE: The AMO_t _MUST_ be placed in either the first or second half | ||
54 | * of the cache line. The cache line _MUST NOT_ be used for anything | ||
55 | * other than additional AMO_t entries. This is because there are two | ||
56 | * addresses which reference the same physical cache line. One will | ||
57 | * be a cached entry with the memory type bits all set. This address | ||
58 | * may be loaded into processor cache. The AMO_t will be referenced | ||
59 | * uncached via the memory special memory type. If any portion of the | ||
60 | * cached cache-line is modified, when that line is flushed, it will | ||
61 | * overwrite the uncached value in physical memory and lead to | ||
62 | * inconsistency. | ||
63 | */ | ||
64 | typedef struct { | ||
65 | u64 variable; | ||
66 | u64 unused[7]; | ||
67 | } AMO_t; | ||
68 | |||
69 | |||
70 | /* | ||
71 | * The following APIs are externalized to the kernel to allocate/free pages of | ||
72 | * fetchop variables. | ||
73 | * fetchop_kalloc_page - Allocate/initialize 1 fetchop page on the | ||
74 | * specified cnode. | ||
75 | * fetchop_kfree_page - Free a previously allocated fetchop page | ||
76 | */ | ||
77 | |||
78 | unsigned long fetchop_kalloc_page(int nid); | ||
79 | void fetchop_kfree_page(unsigned long maddr); | ||
80 | |||
81 | |||
82 | #endif /* __KERNEL__ */ | ||
83 | |||
84 | #endif /* _ASM_IA64_SN_FETCHOP_H */ | ||
85 | |||
diff --git a/include/asm-ia64/sn/sn_fru.h b/include/asm-ia64/sn/sn_fru.h deleted file mode 100644 index 8c21ac3f0156..000000000000 --- a/include/asm-ia64/sn/sn_fru.h +++ /dev/null | |||
@@ -1,44 +0,0 @@ | |||
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 | * Copyright (C) 1992-1997,1999-2004 Silicon Graphics, Inc. All rights reserved. | ||
7 | */ | ||
8 | #ifndef _ASM_IA64_SN_SN_FRU_H | ||
9 | #define _ASM_IA64_SN_SN_FRU_H | ||
10 | |||
11 | #define MAX_DIMMS 8 /* max # of dimm banks */ | ||
12 | #define MAX_PCIDEV 8 /* max # of pci devices on a pci bus */ | ||
13 | |||
14 | typedef unsigned char confidence_t; | ||
15 | |||
16 | typedef struct kf_mem_s { | ||
17 | confidence_t km_confidence; /* confidence level that the memory is bad | ||
18 | * is this necessary ? | ||
19 | */ | ||
20 | confidence_t km_dimm[MAX_DIMMS]; | ||
21 | /* confidence level that dimm[i] is bad | ||
22 | *I think this is the right number | ||
23 | */ | ||
24 | |||
25 | } kf_mem_t; | ||
26 | |||
27 | typedef struct kf_cpu_s { | ||
28 | confidence_t kc_confidence; /* confidence level that cpu is bad */ | ||
29 | confidence_t kc_icache; /* confidence level that instr. cache is bad */ | ||
30 | confidence_t kc_dcache; /* confidence level that data cache is bad */ | ||
31 | confidence_t kc_scache; /* confidence level that sec. cache is bad */ | ||
32 | confidence_t kc_sysbus; /* confidence level that sysad/cmd/state bus is bad */ | ||
33 | } kf_cpu_t; | ||
34 | |||
35 | |||
36 | typedef struct kf_pci_bus_s { | ||
37 | confidence_t kpb_belief; /* confidence level that the pci bus is bad */ | ||
38 | confidence_t kpb_pcidev_belief[MAX_PCIDEV]; | ||
39 | /* confidence level that the pci dev is bad */ | ||
40 | } kf_pci_bus_t; | ||
41 | |||
42 | |||
43 | #endif /* _ASM_IA64_SN_SN_FRU_H */ | ||
44 | |||
diff --git a/include/asm-ia64/sn/sndrv.h b/include/asm-ia64/sn/sndrv.h deleted file mode 100644 index aa00d42cde32..000000000000 --- a/include/asm-ia64/sn/sndrv.h +++ /dev/null | |||
@@ -1,47 +0,0 @@ | |||
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 | * Copyright (c) 2002-2004 Silicon Graphics, Inc. All Rights Reserved. | ||
7 | */ | ||
8 | |||
9 | #ifndef _ASM_IA64_SN_SNDRV_H | ||
10 | #define _ASM_IA64_SN_SNDRV_H | ||
11 | |||
12 | /* ioctl commands */ | ||
13 | #define SNDRV_GET_ROUTERINFO 1 | ||
14 | #define SNDRV_GET_INFOSIZE 2 | ||
15 | #define SNDRV_GET_HUBINFO 3 | ||
16 | #define SNDRV_GET_FLASHLOGSIZE 4 | ||
17 | #define SNDRV_SET_FLASHSYNC 5 | ||
18 | #define SNDRV_GET_FLASHLOGDATA 6 | ||
19 | #define SNDRV_GET_FLASHLOGALL 7 | ||
20 | |||
21 | #define SNDRV_SET_HISTOGRAM_TYPE 14 | ||
22 | |||
23 | #define SNDRV_ELSC_COMMAND 19 | ||
24 | #define SNDRV_CLEAR_LOG 20 | ||
25 | #define SNDRV_INIT_LOG 21 | ||
26 | #define SNDRV_GET_PIMM_PSC 22 | ||
27 | #define SNDRV_SET_PARTITION 23 | ||
28 | #define SNDRV_GET_PARTITION 24 | ||
29 | |||
30 | /* see synergy_perf_ioctl() */ | ||
31 | #define SNDRV_GET_SYNERGY_VERSION 30 | ||
32 | #define SNDRV_GET_SYNERGY_STATUS 31 | ||
33 | #define SNDRV_GET_SYNERGYINFO 32 | ||
34 | #define SNDRV_SYNERGY_APPEND 33 | ||
35 | #define SNDRV_SYNERGY_ENABLE 34 | ||
36 | #define SNDRV_SYNERGY_FREQ 35 | ||
37 | |||
38 | /* Devices */ | ||
39 | #define SNDRV_UKNOWN_DEVICE -1 | ||
40 | #define SNDRV_ROUTER_DEVICE 1 | ||
41 | #define SNDRV_HUB_DEVICE 2 | ||
42 | #define SNDRV_ELSC_NVRAM_DEVICE 3 | ||
43 | #define SNDRV_ELSC_CONTROLLER_DEVICE 4 | ||
44 | #define SNDRV_SYSCTL_SUBCH 5 | ||
45 | #define SNDRV_SYNERGY_DEVICE 6 | ||
46 | |||
47 | #endif /* _ASM_IA64_SN_SNDRV_H */ | ||