diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /include/asm-s390/smp.h |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'include/asm-s390/smp.h')
-rw-r--r-- | include/asm-s390/smp.h | 108 |
1 files changed, 108 insertions, 0 deletions
diff --git a/include/asm-s390/smp.h b/include/asm-s390/smp.h new file mode 100644 index 000000000000..9473786387a3 --- /dev/null +++ b/include/asm-s390/smp.h | |||
@@ -0,0 +1,108 @@ | |||
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 | |||
13 | #include <linux/config.h> | ||
14 | #include <linux/threads.h> | ||
15 | #include <linux/cpumask.h> | ||
16 | #include <linux/bitops.h> | ||
17 | |||
18 | #if defined(__KERNEL__) && defined(CONFIG_SMP) && !defined(__ASSEMBLY__) | ||
19 | |||
20 | #include <asm/lowcore.h> | ||
21 | #include <asm/sigp.h> | ||
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 | |||
34 | extern int smp_call_function_on(void (*func) (void *info), void *info, | ||
35 | int nonatomic, int wait, int cpu); | ||
36 | #define NO_PROC_ID 0xFF /* No processor magic marker */ | ||
37 | |||
38 | /* | ||
39 | * This magic constant controls our willingness to transfer | ||
40 | * a process across CPUs. Such a transfer incurs misses on the L1 | ||
41 | * cache, and on a P6 or P5 with multiple L2 caches L2 hits. My | ||
42 | * gut feeling is this will vary by board in value. For a board | ||
43 | * with separate L2 cache it probably depends also on the RSS, and | ||
44 | * for a board with shared L2 cache it ought to decay fast as other | ||
45 | * processes are run. | ||
46 | */ | ||
47 | |||
48 | #define PROC_CHANGE_PENALTY 20 /* Schedule penalty */ | ||
49 | |||
50 | #define smp_processor_id() (S390_lowcore.cpu_data.cpu_nr) | ||
51 | |||
52 | extern int smp_get_cpu(cpumask_t cpu_map); | ||
53 | extern void smp_put_cpu(int cpu); | ||
54 | |||
55 | extern __inline__ __u16 hard_smp_processor_id(void) | ||
56 | { | ||
57 | __u16 cpu_address; | ||
58 | |||
59 | __asm__ ("stap %0\n" : "=m" (cpu_address)); | ||
60 | return cpu_address; | ||
61 | } | ||
62 | |||
63 | /* | ||
64 | * returns 1 if cpu is in stopped/check stopped state or not operational | ||
65 | * returns 0 otherwise | ||
66 | */ | ||
67 | static inline int | ||
68 | smp_cpu_not_running(int cpu) | ||
69 | { | ||
70 | __u32 status; | ||
71 | |||
72 | switch (signal_processor_ps(&status, 0, cpu, sigp_sense)) { | ||
73 | case sigp_order_code_accepted: | ||
74 | case sigp_status_stored: | ||
75 | /* Check for stopped and check stop state */ | ||
76 | if (status & 0x50) | ||
77 | return 1; | ||
78 | break; | ||
79 | case sigp_not_operational: | ||
80 | return 1; | ||
81 | default: | ||
82 | break; | ||
83 | } | ||
84 | return 0; | ||
85 | } | ||
86 | |||
87 | #define cpu_logical_map(cpu) (cpu) | ||
88 | |||
89 | extern int __cpu_disable (void); | ||
90 | extern void __cpu_die (unsigned int cpu); | ||
91 | extern void cpu_die (void) __attribute__ ((noreturn)); | ||
92 | extern int __cpu_up (unsigned int cpu); | ||
93 | |||
94 | #endif | ||
95 | |||
96 | #ifndef CONFIG_SMP | ||
97 | static inline int | ||
98 | smp_call_function_on(void (*func) (void *info), void *info, | ||
99 | int nonatomic, int wait, int cpu) | ||
100 | { | ||
101 | func(info); | ||
102 | return 0; | ||
103 | } | ||
104 | #define smp_get_cpu(cpu) ({ 0; }) | ||
105 | #define smp_put_cpu(cpu) ({ 0; }) | ||
106 | #endif | ||
107 | |||
108 | #endif | ||