diff options
Diffstat (limited to 'drivers/misc')
| -rw-r--r-- | drivers/misc/Kconfig | 4 | ||||
| -rw-r--r-- | drivers/misc/sgi-gru/grufile.c | 18 | ||||
| -rw-r--r-- | drivers/misc/sgi-xp/xp.h | 24 | ||||
| -rw-r--r-- | drivers/misc/sgi-xp/xpc_main.c | 2 |
4 files changed, 16 insertions, 32 deletions
diff --git a/drivers/misc/Kconfig b/drivers/misc/Kconfig index c64e6798878a..1c484084ed4f 100644 --- a/drivers/misc/Kconfig +++ b/drivers/misc/Kconfig | |||
| @@ -162,7 +162,7 @@ config ENCLOSURE_SERVICES | |||
| 162 | config SGI_XP | 162 | config SGI_XP |
| 163 | tristate "Support communication between SGI SSIs" | 163 | tristate "Support communication between SGI SSIs" |
| 164 | depends on NET | 164 | depends on NET |
| 165 | depends on (IA64_GENERIC || IA64_SGI_SN2 || IA64_SGI_UV || X86_64) && SMP | 165 | depends on (IA64_GENERIC || IA64_SGI_SN2 || IA64_SGI_UV || X86_UV) && SMP |
| 166 | select IA64_UNCACHED_ALLOCATOR if IA64_GENERIC || IA64_SGI_SN2 | 166 | select IA64_UNCACHED_ALLOCATOR if IA64_GENERIC || IA64_SGI_SN2 |
| 167 | select GENERIC_ALLOCATOR if IA64_GENERIC || IA64_SGI_SN2 | 167 | select GENERIC_ALLOCATOR if IA64_GENERIC || IA64_SGI_SN2 |
| 168 | select SGI_GRU if (IA64_GENERIC || IA64_SGI_UV || X86_64) && SMP | 168 | select SGI_GRU if (IA64_GENERIC || IA64_SGI_UV || X86_64) && SMP |
| @@ -189,7 +189,7 @@ config HP_ILO | |||
| 189 | 189 | ||
| 190 | config SGI_GRU | 190 | config SGI_GRU |
| 191 | tristate "SGI GRU driver" | 191 | tristate "SGI GRU driver" |
| 192 | depends on (X86_64 || IA64_SGI_UV || IA64_GENERIC) && SMP | 192 | depends on (X86_UV || IA64_SGI_UV || IA64_GENERIC) && SMP |
| 193 | default n | 193 | default n |
| 194 | select MMU_NOTIFIER | 194 | select MMU_NOTIFIER |
| 195 | ---help--- | 195 | ---help--- |
diff --git a/drivers/misc/sgi-gru/grufile.c b/drivers/misc/sgi-gru/grufile.c index 650983806392..c67e4e8bd62c 100644 --- a/drivers/misc/sgi-gru/grufile.c +++ b/drivers/misc/sgi-gru/grufile.c | |||
| @@ -36,23 +36,11 @@ | |||
| 36 | #include <linux/interrupt.h> | 36 | #include <linux/interrupt.h> |
| 37 | #include <linux/proc_fs.h> | 37 | #include <linux/proc_fs.h> |
| 38 | #include <linux/uaccess.h> | 38 | #include <linux/uaccess.h> |
| 39 | #include <asm/uv/uv.h> | ||
| 39 | #include "gru.h" | 40 | #include "gru.h" |
| 40 | #include "grulib.h" | 41 | #include "grulib.h" |
| 41 | #include "grutables.h" | 42 | #include "grutables.h" |
| 42 | 43 | ||
| 43 | #if defined CONFIG_X86_64 | ||
| 44 | #include <asm/genapic.h> | ||
| 45 | #include <asm/irq.h> | ||
| 46 | #define IS_UV() is_uv_system() | ||
| 47 | #elif defined CONFIG_IA64 | ||
| 48 | #include <asm/system.h> | ||
| 49 | #include <asm/sn/simulator.h> | ||
| 50 | /* temp support for running on hardware simulator */ | ||
| 51 | #define IS_UV() IS_MEDUSA() || ia64_platform_is("uv") | ||
| 52 | #else | ||
| 53 | #define IS_UV() 0 | ||
| 54 | #endif | ||
| 55 | |||
| 56 | #include <asm/uv/uv_hub.h> | 44 | #include <asm/uv/uv_hub.h> |
| 57 | #include <asm/uv/uv_mmrs.h> | 45 | #include <asm/uv/uv_mmrs.h> |
| 58 | 46 | ||
| @@ -381,7 +369,7 @@ static int __init gru_init(void) | |||
| 381 | char id[10]; | 369 | char id[10]; |
| 382 | void *gru_start_vaddr; | 370 | void *gru_start_vaddr; |
| 383 | 371 | ||
| 384 | if (!IS_UV()) | 372 | if (!is_uv_system()) |
| 385 | return 0; | 373 | return 0; |
| 386 | 374 | ||
| 387 | #if defined CONFIG_IA64 | 375 | #if defined CONFIG_IA64 |
| @@ -451,7 +439,7 @@ static void __exit gru_exit(void) | |||
| 451 | int order = get_order(sizeof(struct gru_state) * | 439 | int order = get_order(sizeof(struct gru_state) * |
| 452 | GRU_CHIPLETS_PER_BLADE); | 440 | GRU_CHIPLETS_PER_BLADE); |
| 453 | 441 | ||
| 454 | if (!IS_UV()) | 442 | if (!is_uv_system()) |
| 455 | return; | 443 | return; |
| 456 | 444 | ||
| 457 | for (i = 0; i < GRU_CHIPLETS_PER_BLADE; i++) | 445 | for (i = 0; i < GRU_CHIPLETS_PER_BLADE; i++) |
diff --git a/drivers/misc/sgi-xp/xp.h b/drivers/misc/sgi-xp/xp.h index 7b4cbd5e03e9..2275126cb334 100644 --- a/drivers/misc/sgi-xp/xp.h +++ b/drivers/misc/sgi-xp/xp.h | |||
| @@ -15,19 +15,19 @@ | |||
| 15 | 15 | ||
| 16 | #include <linux/mutex.h> | 16 | #include <linux/mutex.h> |
| 17 | 17 | ||
| 18 | #ifdef CONFIG_IA64 | 18 | #if defined CONFIG_X86_UV || defined CONFIG_IA64_SGI_UV |
| 19 | #include <asm/uv/uv.h> | ||
| 20 | #define is_uv() is_uv_system() | ||
| 21 | #endif | ||
| 22 | |||
| 23 | #ifndef is_uv | ||
| 24 | #define is_uv() 0 | ||
| 25 | #endif | ||
| 26 | |||
| 27 | #if defined CONFIG_IA64 | ||
| 19 | #include <asm/system.h> | 28 | #include <asm/system.h> |
| 20 | #include <asm/sn/arch.h> /* defines is_shub1() and is_shub2() */ | 29 | #include <asm/sn/arch.h> /* defines is_shub1() and is_shub2() */ |
| 21 | #define is_shub() ia64_platform_is("sn2") | 30 | #define is_shub() ia64_platform_is("sn2") |
| 22 | #ifdef CONFIG_IA64_SGI_UV | ||
| 23 | #define is_uv() ia64_platform_is("uv") | ||
| 24 | #else | ||
| 25 | #define is_uv() 0 | ||
| 26 | #endif | ||
| 27 | #endif | ||
| 28 | #ifdef CONFIG_X86_64 | ||
| 29 | #include <asm/genapic.h> | ||
| 30 | #define is_uv() is_uv_system() | ||
| 31 | #endif | 31 | #endif |
| 32 | 32 | ||
| 33 | #ifndef is_shub1 | 33 | #ifndef is_shub1 |
| @@ -42,10 +42,6 @@ | |||
| 42 | #define is_shub() 0 | 42 | #define is_shub() 0 |
| 43 | #endif | 43 | #endif |
| 44 | 44 | ||
| 45 | #ifndef is_uv | ||
| 46 | #define is_uv() 0 | ||
| 47 | #endif | ||
| 48 | |||
| 49 | #ifdef USE_DBUG_ON | 45 | #ifdef USE_DBUG_ON |
| 50 | #define DBUG_ON(condition) BUG_ON(condition) | 46 | #define DBUG_ON(condition) BUG_ON(condition) |
| 51 | #else | 47 | #else |
diff --git a/drivers/misc/sgi-xp/xpc_main.c b/drivers/misc/sgi-xp/xpc_main.c index 89218f7cfaa7..6576170de962 100644 --- a/drivers/misc/sgi-xp/xpc_main.c +++ b/drivers/misc/sgi-xp/xpc_main.c | |||
| @@ -318,7 +318,7 @@ xpc_hb_checker(void *ignore) | |||
| 318 | 318 | ||
| 319 | /* this thread was marked active by xpc_hb_init() */ | 319 | /* this thread was marked active by xpc_hb_init() */ |
| 320 | 320 | ||
| 321 | set_cpus_allowed_ptr(current, &cpumask_of_cpu(XPC_HB_CHECK_CPU)); | 321 | set_cpus_allowed_ptr(current, cpumask_of(XPC_HB_CHECK_CPU)); |
| 322 | 322 | ||
| 323 | /* set our heartbeating to other partitions into motion */ | 323 | /* set our heartbeating to other partitions into motion */ |
| 324 | xpc_hb_check_timeout = jiffies + (xpc_hb_check_interval * HZ); | 324 | xpc_hb_check_timeout = jiffies + (xpc_hb_check_interval * HZ); |
