2 * Routines and structures for signalling other processors.
4 * Copyright IBM Corp. 1999,2010
5 * Author(s): Denis Joseph Barrow,
6 * Martin Schwidefsky <schwidefsky@de.ibm.com>,
7 * Heiko Carstens <heiko.carstens@de.ibm.com>,
13 #include <asm/system.h>
15 /* Get real cpu address from logical cpu number. */
16 extern unsigned short __cpu_logical_map
[];
18 static inline int cpu_logical_map(int cpu
)
21 return __cpu_logical_map
[cpu
];
29 sigp_external_call
= 2,
30 sigp_emergency_signal
= 3,
34 sigp_stop_and_store_status
= 9,
35 sigp_initial_cpu_reset
= 11,
38 sigp_store_status_at_address
= 14,
39 sigp_store_extended_status_at_address
= 15,
40 sigp_set_architecture
= 18,
41 sigp_conditional_emergency_signal
= 19,
42 sigp_sense_running
= 21,
46 sigp_order_code_accepted
= 0,
47 sigp_status_stored
= 1,
49 sigp_not_operational
= 3,
53 * Definitions for external call.
58 ec_call_function_single
,
64 static inline int raw_sigp(u16 cpu
, int order
)
66 register unsigned long reg1
asm ("1") = 0;
74 : "d" (reg1
), "d" (cpu
),
75 "a" (order
) : "cc" , "memory");
80 * Signal processor with parameter.
82 static inline int raw_sigp_p(u32 parameter
, u16 cpu
, int order
)
84 register unsigned int reg1
asm ("1") = parameter
;
92 : "d" (reg1
), "d" (cpu
),
93 "a" (order
) : "cc" , "memory");
98 * Signal processor with parameter and return status.
100 static inline int raw_sigp_ps(u32
*status
, u32 parm
, u16 cpu
, int order
)
102 register unsigned int reg1
asm ("1") = parm
;
106 " sigp %1,%2,0(%3)\n"
109 : "=d" (ccode
), "+d" (reg1
)
110 : "d" (cpu
), "a" (order
)
116 static inline int sigp(int cpu
, int order
)
118 return raw_sigp(cpu_logical_map(cpu
), order
);
121 static inline int sigp_p(u32 parameter
, int cpu
, int order
)
123 return raw_sigp_p(parameter
, cpu_logical_map(cpu
), order
);
126 static inline int sigp_ps(u32
*status
, u32 parm
, int cpu
, int order
)
128 return raw_sigp_ps(status
, parm
, cpu_logical_map(cpu
), order
);
131 #endif /* __ASM_SIGP_H */