Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * include/asm-s390/smp.h |
| 3 | * |
| 4 | * S390 version |
| 5 | * Copyright (C) 1999 IBM Deutschland Entwicklung GmbH, IBM Corporation |
| 6 | * Author(s): Denis Joseph Barrow (djbarrow@de.ibm.com,barrow_dj@yahoo.com), |
| 7 | * Martin Schwidefsky (schwidefsky@de.ibm.com) |
| 8 | * Heiko Carstens (heiko.carstens@de.ibm.com) |
| 9 | */ |
| 10 | #ifndef __ASM_SMP_H |
| 11 | #define __ASM_SMP_H |
| 12 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include <linux/threads.h> |
| 14 | #include <linux/cpumask.h> |
| 15 | #include <linux/bitops.h> |
| 16 | |
| 17 | #if defined(__KERNEL__) && defined(CONFIG_SMP) && !defined(__ASSEMBLY__) |
| 18 | |
| 19 | #include <asm/lowcore.h> |
| 20 | #include <asm/sigp.h> |
Heiko Carstens | c6b5b84 | 2006-12-04 15:40:33 +0100 | [diff] [blame] | 21 | #include <asm/ptrace.h> |
Heiko Carstens | 2e5061e | 2008-04-30 13:38:45 +0200 | [diff] [blame] | 22 | #include <asm/system.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | |
| 24 | /* |
| 25 | s390 specific smp.c headers |
| 26 | */ |
| 27 | typedef struct |
| 28 | { |
| 29 | int intresting; |
| 30 | sigp_ccode ccode; |
| 31 | __u32 status; |
| 32 | __u16 cpu; |
| 33 | } sigp_info; |
| 34 | |
Heiko Carstens | 2b67fc4 | 2007-02-05 21:16:47 +0100 | [diff] [blame] | 35 | extern void machine_restart_smp(char *); |
| 36 | extern void machine_halt_smp(void); |
| 37 | extern void machine_power_off_smp(void); |
| 38 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | #define NO_PROC_ID 0xFF /* No processor magic marker */ |
| 40 | |
| 41 | /* |
| 42 | * This magic constant controls our willingness to transfer |
| 43 | * a process across CPUs. Such a transfer incurs misses on the L1 |
| 44 | * cache, and on a P6 or P5 with multiple L2 caches L2 hits. My |
| 45 | * gut feeling is this will vary by board in value. For a board |
| 46 | * with separate L2 cache it probably depends also on the RSS, and |
| 47 | * for a board with shared L2 cache it ought to decay fast as other |
| 48 | * processes are run. |
| 49 | */ |
| 50 | |
| 51 | #define PROC_CHANGE_PENALTY 20 /* Schedule penalty */ |
| 52 | |
Martin Schwidefsky | 7b46848 | 2009-03-26 15:24:42 +0100 | [diff] [blame] | 53 | #define raw_smp_processor_id() (S390_lowcore.cpu_nr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | |
| 55 | /* |
| 56 | * returns 1 if cpu is in stopped/check stopped state or not operational |
| 57 | * returns 0 otherwise |
| 58 | */ |
| 59 | static inline int |
| 60 | smp_cpu_not_running(int cpu) |
| 61 | { |
| 62 | __u32 status; |
| 63 | |
| 64 | switch (signal_processor_ps(&status, 0, cpu, sigp_sense)) { |
| 65 | case sigp_order_code_accepted: |
| 66 | case sigp_status_stored: |
| 67 | /* Check for stopped and check stop state */ |
| 68 | if (status & 0x50) |
| 69 | return 1; |
| 70 | break; |
| 71 | case sigp_not_operational: |
| 72 | return 1; |
| 73 | default: |
| 74 | break; |
| 75 | } |
| 76 | return 0; |
| 77 | } |
| 78 | |
| 79 | #define cpu_logical_map(cpu) (cpu) |
| 80 | |
| 81 | extern int __cpu_disable (void); |
| 82 | extern void __cpu_die (unsigned int cpu); |
| 83 | extern void cpu_die (void) __attribute__ ((noreturn)); |
| 84 | extern int __cpu_up (unsigned int cpu); |
| 85 | |
Heiko Carstens | dbd70fb | 2008-04-17 07:46:12 +0200 | [diff] [blame] | 86 | extern struct mutex smp_cpu_state_mutex; |
Heiko Carstens | c10fde0 | 2008-04-17 07:46:13 +0200 | [diff] [blame] | 87 | extern int smp_cpu_polarization[]; |
Heiko Carstens | dbd70fb | 2008-04-17 07:46:12 +0200 | [diff] [blame] | 88 | |
Heiko Carstens | ca9fc75 | 2008-12-25 13:38:39 +0100 | [diff] [blame] | 89 | extern void arch_send_call_function_single_ipi(int cpu); |
| 90 | extern void arch_send_call_function_ipi(cpumask_t mask); |
| 91 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | #endif |
| 93 | |
| 94 | #ifndef CONFIG_SMP |
Fernando Luis Vazquez Cao | 2f4dfe2 | 2007-05-09 02:33:25 -0700 | [diff] [blame] | 95 | #define hard_smp_processor_id() 0 |
Heiko Carstens | a386fba | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 96 | #define smp_cpu_not_running(cpu) 1 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | #endif |
| 98 | |
Heiko Carstens | 1e48951 | 2008-04-30 13:38:37 +0200 | [diff] [blame] | 99 | #ifdef CONFIG_HOTPLUG_CPU |
| 100 | extern int smp_rescan_cpus(void); |
| 101 | #else |
| 102 | static inline int smp_rescan_cpus(void) { return 0; } |
| 103 | #endif |
| 104 | |
Michael Holzheu | 411ed32 | 2007-04-27 16:01:49 +0200 | [diff] [blame] | 105 | extern union save_area *zfcpdump_save_areas[NR_CPUS + 1]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | #endif |