2 * Copyright IBM Corp. 2016
3 * Author(s): Martin Schwidefsky <schwidefsky@de.ibm.com>
5 * Adjunct processor bus inline assemblies.
14 * ap_intructions_available() - Test if AP instructions are available.
16 * Returns 0 if the AP instructions are installed.
18 static inline int ap_instructions_available(void)
20 register unsigned long reg0
asm ("0") = AP_MKQID(0, 0);
21 register unsigned long reg1
asm ("1") = -ENODEV
;
22 register unsigned long reg2
asm ("2") = 0UL;
25 " .long 0xb2af0000\n" /* PQAP(TAPQ) */
29 : "+d" (reg0
), "+d" (reg1
), "+d" (reg2
) : : "cc");
34 * ap_tapq(): Test adjunct processor queue.
35 * @qid: The AP queue number
36 * @info: Pointer to queue descriptor
38 * Returns AP queue status structure.
40 static inline struct ap_queue_status
ap_tapq(ap_qid_t qid
, unsigned long *info
)
42 register unsigned long reg0
asm ("0") = qid
;
43 register struct ap_queue_status reg1
asm ("1");
44 register unsigned long reg2
asm ("2") = 0UL;
46 asm volatile(".long 0xb2af0000" /* PQAP(TAPQ) */
47 : "+d" (reg0
), "=d" (reg1
), "+d" (reg2
) : : "cc");
54 * ap_pqap_rapq(): Reset adjunct processor queue.
55 * @qid: The AP queue number
57 * Returns AP queue status structure.
59 static inline struct ap_queue_status
ap_rapq(ap_qid_t qid
)
61 register unsigned long reg0
asm ("0") = qid
| 0x01000000UL
;
62 register struct ap_queue_status reg1
asm ("1");
63 register unsigned long reg2
asm ("2") = 0UL;
66 ".long 0xb2af0000" /* PQAP(RAPQ) */
67 : "+d" (reg0
), "=d" (reg1
), "+d" (reg2
) : : "cc");
72 * ap_aqic(): Enable interruption for a specific AP.
73 * @qid: The AP queue number
74 * @ind: The notification indicator byte
76 * Returns AP queue status.
78 static inline struct ap_queue_status
ap_aqic(ap_qid_t qid
, void *ind
)
80 register unsigned long reg0
asm ("0") = qid
| (3UL << 24);
81 register unsigned long reg1_in
asm ("1") = (8UL << 44) | AP_ISC
;
82 register struct ap_queue_status reg1_out
asm ("1");
83 register void *reg2
asm ("2") = ind
;
86 ".long 0xb2af0000" /* PQAP(AQIC) */
87 : "+d" (reg0
), "+d" (reg1_in
), "=d" (reg1_out
), "+d" (reg2
)
94 * ap_qci(): Get AP configuration data
96 * Returns 0 on success, or -EOPNOTSUPP.
98 static inline int ap_qci(void *config
)
100 register unsigned long reg0
asm ("0") = 0x04000000UL
;
101 register unsigned long reg1
asm ("1") = -EINVAL
;
102 register void *reg2
asm ("2") = (void *) config
;
105 ".long 0xb2af0000\n" /* PQAP(QCI) */
109 : "+d" (reg0
), "+d" (reg1
), "+d" (reg2
)
117 * ap_nqap(): Send message to adjunct processor queue.
118 * @qid: The AP queue number
119 * @psmid: The program supplied message identifier
120 * @msg: The message text
121 * @length: The message length
123 * Returns AP queue status structure.
124 * Condition code 1 on NQAP can't happen because the L bit is 1.
125 * Condition code 2 on NQAP also means the send is incomplete,
126 * because a segment boundary was reached. The NQAP is repeated.
128 static inline struct ap_queue_status
ap_nqap(ap_qid_t qid
,
129 unsigned long long psmid
,
130 void *msg
, size_t length
)
132 struct msgblock
{ char _
[length
]; };
133 register unsigned long reg0
asm ("0") = qid
| 0x40000000UL
;
134 register struct ap_queue_status reg1
asm ("1");
135 register unsigned long reg2
asm ("2") = (unsigned long) msg
;
136 register unsigned long reg3
asm ("3") = (unsigned long) length
;
137 register unsigned long reg4
asm ("4") = (unsigned int) (psmid
>> 32);
138 register unsigned long reg5
asm ("5") = psmid
& 0xffffffff;
141 "0: .long 0xb2ad0042\n" /* NQAP */
143 : "+d" (reg0
), "=d" (reg1
), "+d" (reg2
), "+d" (reg3
)
144 : "d" (reg4
), "d" (reg5
), "m" (*(struct msgblock
*) msg
)
150 * ap_dqap(): Receive message from adjunct processor queue.
151 * @qid: The AP queue number
152 * @psmid: Pointer to program supplied message identifier
153 * @msg: The message text
154 * @length: The message length
156 * Returns AP queue status structure.
157 * Condition code 1 on DQAP means the receive has taken place
158 * but only partially. The response is incomplete, hence the
160 * Condition code 2 on DQAP also means the receive is incomplete,
161 * this time because a segment boundary was reached. Again, the
163 * Note that gpr2 is used by the DQAP instruction to keep track of
164 * any 'residual' length, in case the instruction gets interrupted.
165 * Hence it gets zeroed before the instruction.
167 static inline struct ap_queue_status
ap_dqap(ap_qid_t qid
,
168 unsigned long long *psmid
,
169 void *msg
, size_t length
)
171 struct msgblock
{ char _
[length
]; };
172 register unsigned long reg0
asm("0") = qid
| 0x80000000UL
;
173 register struct ap_queue_status reg1
asm ("1");
174 register unsigned long reg2
asm("2") = 0UL;
175 register unsigned long reg4
asm("4") = (unsigned long) msg
;
176 register unsigned long reg5
asm("5") = (unsigned long) length
;
177 register unsigned long reg6
asm("6") = 0UL;
178 register unsigned long reg7
asm("7") = 0UL;
182 "0: .long 0xb2ae0064\n" /* DQAP */
184 : "+d" (reg0
), "=d" (reg1
), "+d" (reg2
),
185 "+d" (reg4
), "+d" (reg5
), "+d" (reg6
), "+d" (reg7
),
186 "=m" (*(struct msgblock
*) msg
) : : "cc");
187 *psmid
= (((unsigned long long) reg6
) << 32) + reg7
;
191 #endif /* _AP_ASM_H_ */