blob: 07708c07701e434f9ddaa905864045efe32c07a6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Torvalds1da177e2005-04-16 15:20:36 -070013#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 Carstensc6b5b842006-12-04 15:40:33 +010021#include <asm/ptrace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
23/*
24 s390 specific smp.c headers
25 */
26typedef struct
27{
28 int intresting;
29 sigp_ccode ccode;
30 __u32 status;
31 __u16 cpu;
32} sigp_info;
33
Heiko Carstens2b67fc42007-02-05 21:16:47 +010034extern void machine_restart_smp(char *);
35extern void machine_halt_smp(void);
36extern void machine_power_off_smp(void);
37
Heiko Carstens255acee2006-02-17 13:52:46 -080038extern void smp_setup_cpu_possible_map(void);
Heiko Carstens3bb447f2007-07-27 12:29:08 +020039
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#define NO_PROC_ID 0xFF /* No processor magic marker */
41
42/*
43 * This magic constant controls our willingness to transfer
44 * a process across CPUs. Such a transfer incurs misses on the L1
45 * cache, and on a P6 or P5 with multiple L2 caches L2 hits. My
46 * gut feeling is this will vary by board in value. For a board
47 * with separate L2 cache it probably depends also on the RSS, and
48 * for a board with shared L2 cache it ought to decay fast as other
49 * processes are run.
50 */
51
52#define PROC_CHANGE_PENALTY 20 /* Schedule penalty */
53
Ingo Molnar39c715b2005-06-21 17:14:34 -070054#define raw_smp_processor_id() (S390_lowcore.cpu_data.cpu_nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Adrian Bunk4448aaf2005-11-08 21:34:42 -080056static inline __u16 hard_smp_processor_id(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070057{
58 __u16 cpu_address;
59
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +020060 asm volatile("stap %0" : "=m" (cpu_address));
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 return cpu_address;
62}
63
64/*
65 * returns 1 if cpu is in stopped/check stopped state or not operational
66 * returns 0 otherwise
67 */
68static inline int
69smp_cpu_not_running(int cpu)
70{
71 __u32 status;
72
73 switch (signal_processor_ps(&status, 0, cpu, sigp_sense)) {
74 case sigp_order_code_accepted:
75 case sigp_status_stored:
76 /* Check for stopped and check stop state */
77 if (status & 0x50)
78 return 1;
79 break;
80 case sigp_not_operational:
81 return 1;
82 default:
83 break;
84 }
85 return 0;
86}
87
88#define cpu_logical_map(cpu) (cpu)
89
90extern int __cpu_disable (void);
91extern void __cpu_die (unsigned int cpu);
92extern void cpu_die (void) __attribute__ ((noreturn));
93extern int __cpu_up (unsigned int cpu);
94
95#endif
96
97#ifndef CONFIG_SMP
Heiko Carstensc6b5b842006-12-04 15:40:33 +010098static inline void smp_send_stop(void)
99{
100 /* Disable all interrupts/machine checks */
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100101 __load_psw_mask(psw_kernel_bits & ~PSW_MASK_MCHECK);
Heiko Carstensc6b5b842006-12-04 15:40:33 +0100102}
103
Fernando Luis Vazquez Cao2f4dfe22007-05-09 02:33:25 -0700104#define hard_smp_processor_id() 0
Heiko Carstensa386fba2006-02-11 17:56:01 -0800105#define smp_cpu_not_running(cpu) 1
Heiko Carstens39b083f2006-09-20 15:58:51 +0200106#define smp_setup_cpu_possible_map() do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107#endif
108
Michael Holzheu411ed322007-04-27 16:01:49 +0200109extern union save_area *zfcpdump_save_areas[NR_CPUS + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110#endif