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> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | |
| 23 | /* |
| 24 | s390 specific smp.c headers |
| 25 | */ |
| 26 | typedef struct |
| 27 | { |
| 28 | int intresting; |
| 29 | sigp_ccode ccode; |
| 30 | __u32 status; |
| 31 | __u16 cpu; |
| 32 | } sigp_info; |
| 33 | |
Heiko Carstens | 2b67fc4 | 2007-02-05 21:16:47 +0100 | [diff] [blame] | 34 | extern void machine_restart_smp(char *); |
| 35 | extern void machine_halt_smp(void); |
| 36 | extern void machine_power_off_smp(void); |
| 37 | |
Heiko Carstens | 255acee | 2006-02-17 13:52:46 -0800 | [diff] [blame] | 38 | extern void smp_setup_cpu_possible_map(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | extern int smp_call_function_on(void (*func) (void *info), void *info, |
| 40 | int nonatomic, int wait, int cpu); |
| 41 | #define NO_PROC_ID 0xFF /* No processor magic marker */ |
| 42 | |
| 43 | /* |
| 44 | * This magic constant controls our willingness to transfer |
| 45 | * a process across CPUs. Such a transfer incurs misses on the L1 |
| 46 | * cache, and on a P6 or P5 with multiple L2 caches L2 hits. My |
| 47 | * gut feeling is this will vary by board in value. For a board |
| 48 | * with separate L2 cache it probably depends also on the RSS, and |
| 49 | * for a board with shared L2 cache it ought to decay fast as other |
| 50 | * processes are run. |
| 51 | */ |
| 52 | |
| 53 | #define PROC_CHANGE_PENALTY 20 /* Schedule penalty */ |
| 54 | |
Ingo Molnar | 39c715b | 2005-06-21 17:14:34 -0700 | [diff] [blame] | 55 | #define raw_smp_processor_id() (S390_lowcore.cpu_data.cpu_nr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | |
| 57 | extern int smp_get_cpu(cpumask_t cpu_map); |
| 58 | extern void smp_put_cpu(int cpu); |
| 59 | |
Adrian Bunk | 4448aaf | 2005-11-08 21:34:42 -0800 | [diff] [blame] | 60 | static inline __u16 hard_smp_processor_id(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | { |
| 62 | __u16 cpu_address; |
| 63 | |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 64 | asm volatile("stap %0" : "=m" (cpu_address)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | return cpu_address; |
| 66 | } |
| 67 | |
| 68 | /* |
| 69 | * returns 1 if cpu is in stopped/check stopped state or not operational |
| 70 | * returns 0 otherwise |
| 71 | */ |
| 72 | static inline int |
| 73 | smp_cpu_not_running(int cpu) |
| 74 | { |
| 75 | __u32 status; |
| 76 | |
| 77 | switch (signal_processor_ps(&status, 0, cpu, sigp_sense)) { |
| 78 | case sigp_order_code_accepted: |
| 79 | case sigp_status_stored: |
| 80 | /* Check for stopped and check stop state */ |
| 81 | if (status & 0x50) |
| 82 | return 1; |
| 83 | break; |
| 84 | case sigp_not_operational: |
| 85 | return 1; |
| 86 | default: |
| 87 | break; |
| 88 | } |
| 89 | return 0; |
| 90 | } |
| 91 | |
| 92 | #define cpu_logical_map(cpu) (cpu) |
| 93 | |
| 94 | extern int __cpu_disable (void); |
| 95 | extern void __cpu_die (unsigned int cpu); |
| 96 | extern void cpu_die (void) __attribute__ ((noreturn)); |
| 97 | extern int __cpu_up (unsigned int cpu); |
| 98 | |
| 99 | #endif |
| 100 | |
| 101 | #ifndef CONFIG_SMP |
| 102 | static inline int |
| 103 | smp_call_function_on(void (*func) (void *info), void *info, |
| 104 | int nonatomic, int wait, int cpu) |
| 105 | { |
| 106 | func(info); |
| 107 | return 0; |
| 108 | } |
Heiko Carstens | c6b5b84 | 2006-12-04 15:40:33 +0100 | [diff] [blame] | 109 | |
| 110 | static inline void smp_send_stop(void) |
| 111 | { |
| 112 | /* Disable all interrupts/machine checks */ |
Gerald Schaefer | c1821c2 | 2007-02-05 21:18:17 +0100 | [diff] [blame^] | 113 | __load_psw_mask(psw_kernel_bits & ~PSW_MASK_MCHECK); |
Heiko Carstens | c6b5b84 | 2006-12-04 15:40:33 +0100 | [diff] [blame] | 114 | } |
| 115 | |
Heiko Carstens | a386fba | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 116 | #define smp_cpu_not_running(cpu) 1 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | #define smp_get_cpu(cpu) ({ 0; }) |
| 118 | #define smp_put_cpu(cpu) ({ 0; }) |
Heiko Carstens | 39b083f | 2006-09-20 15:58:51 +0200 | [diff] [blame] | 119 | #define smp_setup_cpu_possible_map() do { } while (0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | #endif |
| 121 | |
| 122 | #endif |