blob: 758d1d23215e94b2feb25cf9a53fd778a4785f44 [file] [log] [blame]
Benjamin Herrenschmidte7d26f22013-04-17 20:31:15 +00001/*
2 * Copyright 2012 Michael Ellerman, IBM Corporation.
3 * Copyright 2012 Benjamin Herrenschmidt, IBM Corporation
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License, version 2, as
7 * published by the Free Software Foundation.
8 */
9
10#include <linux/kernel.h>
11#include <linux/kvm_host.h>
12#include <linux/err.h>
Suresh Warrier366274f2016-08-19 15:35:55 +100013#include <linux/kernel_stat.h>
Benjamin Herrenschmidte7d26f22013-04-17 20:31:15 +000014
15#include <asm/kvm_book3s.h>
16#include <asm/kvm_ppc.h>
17#include <asm/hvcall.h>
18#include <asm/xics.h>
Benjamin Herrenschmidte7d26f22013-04-17 20:31:15 +000019#include <asm/synch.h>
Suresh Warrier0c2a6602015-12-17 14:59:09 -060020#include <asm/cputhreads.h>
Suresh Warrier366274f2016-08-19 15:35:55 +100021#include <asm/pgtable.h>
Benjamin Herrenschmidte7d26f22013-04-17 20:31:15 +000022#include <asm/ppc-opcode.h>
Suresh Warriere3c13e52016-08-19 15:35:51 +100023#include <asm/pnv-pci.h>
Paul Mackerras5d375192016-08-19 15:35:56 +100024#include <asm/opal.h>
Michael Ellerman62623d52016-10-20 13:32:55 +110025#include <asm/smp.h>
Benjamin Herrenschmidte7d26f22013-04-17 20:31:15 +000026
27#include "book3s_xics.h"
28
29#define DEBUG_PASSUP
30
Suresh E. Warrier520fe9c2015-12-21 16:33:57 -060031int h_ipi_redirect = 1;
32EXPORT_SYMBOL(h_ipi_redirect);
Suresh Warrier644abbb2016-08-19 15:35:54 +100033int kvm_irq_bypass = 1;
34EXPORT_SYMBOL(kvm_irq_bypass);
Suresh E. Warrier520fe9c2015-12-21 16:33:57 -060035
Suresh Warrierb0221552015-03-20 20:39:47 +110036static void icp_rm_deliver_irq(struct kvmppc_xics *xics, struct kvmppc_icp *icp,
Li Zhong21acd0e2016-11-11 12:57:36 +080037 u32 new_irq, bool check_resend);
Benjamin Herrenschmidtab9bad02017-02-07 16:03:17 +110038static int xics_opal_set_server(unsigned int hw_irq, int server_cpu);
Suresh Warrierb0221552015-03-20 20:39:47 +110039
Suresh Warrierb0221552015-03-20 20:39:47 +110040/* -- ICS routines -- */
41static void ics_rm_check_resend(struct kvmppc_xics *xics,
42 struct kvmppc_ics *ics, struct kvmppc_icp *icp)
43{
44 int i;
45
Suresh Warrierb0221552015-03-20 20:39:47 +110046 for (i = 0; i < KVMPPC_XICS_IRQ_PER_ICS; i++) {
47 struct ics_irq_state *state = &ics->irq_state[i];
Li Zhong21acd0e2016-11-11 12:57:36 +080048 if (state->resend)
49 icp_rm_deliver_irq(xics, icp, state->number, true);
Suresh Warrierb0221552015-03-20 20:39:47 +110050 }
51
Suresh Warrierb0221552015-03-20 20:39:47 +110052}
53
54/* -- ICP routines -- */
55
Suresh E. Warriere17769e2015-12-21 16:22:51 -060056#ifdef CONFIG_SMP
57static inline void icp_send_hcore_msg(int hcore, struct kvm_vcpu *vcpu)
58{
59 int hcpu;
60
61 hcpu = hcore << threads_shift;
62 kvmppc_host_rm_ops_hv->rm_core[hcore].rm_data = vcpu;
63 smp_muxed_ipi_set_message(hcpu, PPC_MSG_RM_HOST_ACTION);
Paul Mackerras53af3ba2017-01-30 21:21:51 +110064 kvmppc_set_host_ipi(hcpu, 1);
65 smp_mb();
66 kvmhv_rm_send_ipi(hcpu);
Suresh E. Warriere17769e2015-12-21 16:22:51 -060067}
68#else
69static inline void icp_send_hcore_msg(int hcore, struct kvm_vcpu *vcpu) { }
70#endif
71
72/*
73 * We start the search from our current CPU Id in the core map
74 * and go in a circle until we get back to our ID looking for a
75 * core that is running in host context and that hasn't already
76 * been targeted for another rm_host_ops.
77 *
78 * In the future, could consider using a fairer algorithm (one
79 * that distributes the IPIs better)
80 *
81 * Returns -1, if no CPU could be found in the host
82 * Else, returns a CPU Id which has been reserved for use
83 */
84static inline int grab_next_hostcore(int start,
85 struct kvmppc_host_rm_core *rm_core, int max, int action)
86{
87 bool success;
88 int core;
89 union kvmppc_rm_state old, new;
90
91 for (core = start + 1; core < max; core++) {
92 old = new = READ_ONCE(rm_core[core].rm_state);
93
94 if (!old.in_host || old.rm_action)
95 continue;
96
97 /* Try to grab this host core if not taken already. */
98 new.rm_action = action;
99
100 success = cmpxchg64(&rm_core[core].rm_state.raw,
101 old.raw, new.raw) == old.raw;
102 if (success) {
103 /*
104 * Make sure that the store to the rm_action is made
105 * visible before we return to caller (and the
106 * subsequent store to rm_data) to synchronize with
107 * the IPI handler.
108 */
109 smp_wmb();
110 return core;
111 }
112 }
113
114 return -1;
115}
116
117static inline int find_available_hostcore(int action)
118{
119 int core;
120 int my_core = smp_processor_id() >> threads_shift;
121 struct kvmppc_host_rm_core *rm_core = kvmppc_host_rm_ops_hv->rm_core;
122
123 core = grab_next_hostcore(my_core, rm_core, cpu_nr_cores(), action);
124 if (core == -1)
125 core = grab_next_hostcore(core, rm_core, my_core, action);
126
127 return core;
128}
129
Benjamin Herrenschmidte7d26f22013-04-17 20:31:15 +0000130static void icp_rm_set_vcpu_irq(struct kvm_vcpu *vcpu,
131 struct kvm_vcpu *this_vcpu)
132{
133 struct kvmppc_icp *this_icp = this_vcpu->arch.icp;
Benjamin Herrenschmidte7d26f22013-04-17 20:31:15 +0000134 int cpu;
Suresh E. Warriere17769e2015-12-21 16:22:51 -0600135 int hcore;
Benjamin Herrenschmidte7d26f22013-04-17 20:31:15 +0000136
137 /* Mark the target VCPU as having an interrupt pending */
138 vcpu->stat.queue_intr++;
139 set_bit(BOOK3S_IRQPRIO_EXTERNAL_LEVEL, &vcpu->arch.pending_exceptions);
140
141 /* Kick self ? Just set MER and return */
142 if (vcpu == this_vcpu) {
143 mtspr(SPRN_LPCR, mfspr(SPRN_LPCR) | LPCR_MER);
144 return;
145 }
146
Suresh E. Warriere17769e2015-12-21 16:22:51 -0600147 /*
148 * Check if the core is loaded,
149 * if not, find an available host core to post to wake the VCPU,
150 * if we can't find one, set up state to eventually return too hard.
151 */
Paul Mackerrasec257162015-06-24 21:18:03 +1000152 cpu = vcpu->arch.thread_cpu;
Benjamin Herrenschmidte7d26f22013-04-17 20:31:15 +0000153 if (cpu < 0 || cpu >= nr_cpu_ids) {
Suresh E. Warriere17769e2015-12-21 16:22:51 -0600154 hcore = -1;
Suresh E. Warrier520fe9c2015-12-21 16:33:57 -0600155 if (kvmppc_host_rm_ops_hv && h_ipi_redirect)
Suresh E. Warriere17769e2015-12-21 16:22:51 -0600156 hcore = find_available_hostcore(XICS_RM_KICK_VCPU);
157 if (hcore != -1) {
158 icp_send_hcore_msg(hcore, vcpu);
159 } else {
160 this_icp->rm_action |= XICS_RM_KICK_VCPU;
161 this_icp->rm_kick_target = vcpu;
162 }
Benjamin Herrenschmidte7d26f22013-04-17 20:31:15 +0000163 return;
164 }
Benjamin Herrenschmidte7d26f22013-04-17 20:31:15 +0000165
Paul Mackerraseddb60f2015-03-28 14:21:11 +1100166 smp_mb();
167 kvmhv_rm_send_ipi(cpu);
Benjamin Herrenschmidte7d26f22013-04-17 20:31:15 +0000168}
169
170static void icp_rm_clr_vcpu_irq(struct kvm_vcpu *vcpu)
171{
172 /* Note: Only called on self ! */
173 clear_bit(BOOK3S_IRQPRIO_EXTERNAL_LEVEL,
174 &vcpu->arch.pending_exceptions);
175 mtspr(SPRN_LPCR, mfspr(SPRN_LPCR) & ~LPCR_MER);
176}
177
178static inline bool icp_rm_try_update(struct kvmppc_icp *icp,
179 union kvmppc_icp_state old,
180 union kvmppc_icp_state new)
181{
182 struct kvm_vcpu *this_vcpu = local_paca->kvm_hstate.kvm_vcpu;
183 bool success;
184
185 /* Calculate new output value */
186 new.out_ee = (new.xisr && (new.pending_pri < new.cppr));
187
188 /* Attempt atomic update */
189 success = cmpxchg64(&icp->state.raw, old.raw, new.raw) == old.raw;
190 if (!success)
191 goto bail;
192
193 /*
194 * Check for output state update
195 *
196 * Note that this is racy since another processor could be updating
197 * the state already. This is why we never clear the interrupt output
198 * here, we only ever set it. The clear only happens prior to doing
199 * an update and only by the processor itself. Currently we do it
200 * in Accept (H_XIRR) and Up_Cppr (H_XPPR).
201 *
202 * We also do not try to figure out whether the EE state has changed,
203 * we unconditionally set it if the new state calls for it. The reason
204 * for that is that we opportunistically remove the pending interrupt
205 * flag when raising CPPR, so we need to set it back here if an
206 * interrupt is still pending.
207 */
208 if (new.out_ee)
209 icp_rm_set_vcpu_irq(icp->vcpu, this_vcpu);
210
211 /* Expose the state change for debug purposes */
212 this_vcpu->arch.icp->rm_dbgstate = new;
213 this_vcpu->arch.icp->rm_dbgtgt = icp->vcpu;
214
215 bail:
216 return success;
217}
218
219static inline int check_too_hard(struct kvmppc_xics *xics,
220 struct kvmppc_icp *icp)
221{
222 return (xics->real_mode_dbg || icp->rm_action) ? H_TOO_HARD : H_SUCCESS;
223}
224
Suresh Warrierb0221552015-03-20 20:39:47 +1100225static void icp_rm_check_resend(struct kvmppc_xics *xics,
226 struct kvmppc_icp *icp)
227{
228 u32 icsid;
229
230 /* Order this load with the test for need_resend in the caller */
231 smp_rmb();
232 for_each_set_bit(icsid, icp->resend_map, xics->max_icsid + 1) {
233 struct kvmppc_ics *ics = xics->ics[icsid];
234
235 if (!test_and_clear_bit(icsid, icp->resend_map))
236 continue;
237 if (!ics)
238 continue;
239 ics_rm_check_resend(xics, ics, icp);
240 }
241}
242
243static bool icp_rm_try_to_deliver(struct kvmppc_icp *icp, u32 irq, u8 priority,
244 u32 *reject)
245{
246 union kvmppc_icp_state old_state, new_state;
247 bool success;
248
249 do {
250 old_state = new_state = READ_ONCE(icp->state);
251
252 *reject = 0;
253
254 /* See if we can deliver */
255 success = new_state.cppr > priority &&
256 new_state.mfrr > priority &&
257 new_state.pending_pri > priority;
258
259 /*
260 * If we can, check for a rejection and perform the
261 * delivery
262 */
263 if (success) {
264 *reject = new_state.xisr;
265 new_state.xisr = irq;
266 new_state.pending_pri = priority;
267 } else {
268 /*
269 * If we failed to deliver we set need_resend
270 * so a subsequent CPPR state change causes us
271 * to try a new delivery.
272 */
273 new_state.need_resend = true;
274 }
275
276 } while (!icp_rm_try_update(icp, old_state, new_state));
277
278 return success;
279}
280
281static void icp_rm_deliver_irq(struct kvmppc_xics *xics, struct kvmppc_icp *icp,
Li Zhong21acd0e2016-11-11 12:57:36 +0800282 u32 new_irq, bool check_resend)
Suresh Warrierb0221552015-03-20 20:39:47 +1100283{
284 struct ics_irq_state *state;
285 struct kvmppc_ics *ics;
286 u32 reject;
287 u16 src;
288
289 /*
290 * This is used both for initial delivery of an interrupt and
291 * for subsequent rejection.
292 *
293 * Rejection can be racy vs. resends. We have evaluated the
294 * rejection in an atomic ICP transaction which is now complete,
295 * so potentially the ICP can already accept the interrupt again.
296 *
297 * So we need to retry the delivery. Essentially the reject path
298 * boils down to a failed delivery. Always.
299 *
300 * Now the interrupt could also have moved to a different target,
301 * thus we may need to re-do the ICP lookup as well
302 */
303
304 again:
305 /* Get the ICS state and lock it */
306 ics = kvmppc_xics_find_ics(xics, new_irq, &src);
307 if (!ics) {
308 /* Unsafe increment, but this does not need to be accurate */
Suresh Warrier6e0365b2015-03-20 20:39:48 +1100309 xics->err_noics++;
Suresh Warrierb0221552015-03-20 20:39:47 +1100310 return;
311 }
312 state = &ics->irq_state[src];
313
314 /* Get a lock on the ICS */
315 arch_spin_lock(&ics->lock);
316
317 /* Get our server */
318 if (!icp || state->server != icp->server_num) {
319 icp = kvmppc_xics_find_server(xics->kvm, state->server);
320 if (!icp) {
321 /* Unsafe increment again*/
Suresh Warrier6e0365b2015-03-20 20:39:48 +1100322 xics->err_noicp++;
Suresh Warrierb0221552015-03-20 20:39:47 +1100323 goto out;
324 }
325 }
326
Li Zhong21acd0e2016-11-11 12:57:36 +0800327 if (check_resend)
328 if (!state->resend)
329 goto out;
330
Suresh Warrierb0221552015-03-20 20:39:47 +1100331 /* Clear the resend bit of that interrupt */
332 state->resend = 0;
333
334 /*
335 * If masked, bail out
336 *
337 * Note: PAPR doesn't mention anything about masked pending
338 * when doing a resend, only when doing a delivery.
339 *
340 * However that would have the effect of losing a masked
341 * interrupt that was rejected and isn't consistent with
342 * the whole masked_pending business which is about not
343 * losing interrupts that occur while masked.
344 *
345 * I don't differentiate normal deliveries and resends, this
346 * implementation will differ from PAPR and not lose such
347 * interrupts.
348 */
349 if (state->priority == MASKED) {
350 state->masked_pending = 1;
351 goto out;
352 }
353
354 /*
355 * Try the delivery, this will set the need_resend flag
356 * in the ICP as part of the atomic transaction if the
357 * delivery is not possible.
358 *
359 * Note that if successful, the new delivery might have itself
360 * rejected an interrupt that was "delivered" before we took the
361 * ics spin lock.
362 *
363 * In this case we do the whole sequence all over again for the
364 * new guy. We cannot assume that the rejected interrupt is less
365 * favored than the new one, and thus doesn't need to be delivered,
366 * because by the time we exit icp_rm_try_to_deliver() the target
367 * processor may well have already consumed & completed it, and thus
368 * the rejected interrupt might actually be already acceptable.
369 */
370 if (icp_rm_try_to_deliver(icp, new_irq, state->priority, &reject)) {
371 /*
372 * Delivery was successful, did we reject somebody else ?
373 */
374 if (reject && reject != XICS_IPI) {
375 arch_spin_unlock(&ics->lock);
Li Zhong37451bc2016-11-11 12:57:33 +0800376 icp->n_reject++;
Suresh Warrierb0221552015-03-20 20:39:47 +1100377 new_irq = reject;
Li Zhong21acd0e2016-11-11 12:57:36 +0800378 check_resend = 0;
Suresh Warrierb0221552015-03-20 20:39:47 +1100379 goto again;
380 }
381 } else {
382 /*
383 * We failed to deliver the interrupt we need to set the
384 * resend map bit and mark the ICS state as needing a resend
385 */
Suresh Warrierb0221552015-03-20 20:39:47 +1100386 state->resend = 1;
387
388 /*
Li Zhong21acd0e2016-11-11 12:57:36 +0800389 * Make sure when checking resend, we don't miss the resend
390 * if resend_map bit is seen and cleared.
391 */
392 smp_wmb();
393 set_bit(ics->icsid, icp->resend_map);
394
395 /*
Suresh Warrierb0221552015-03-20 20:39:47 +1100396 * If the need_resend flag got cleared in the ICP some time
397 * between icp_rm_try_to_deliver() atomic update and now, then
398 * we know it might have missed the resend_map bit. So we
399 * retry
400 */
401 smp_mb();
402 if (!icp->state.need_resend) {
Li Zhongbf5a71d2016-11-11 12:57:34 +0800403 state->resend = 0;
Suresh Warrierb0221552015-03-20 20:39:47 +1100404 arch_spin_unlock(&ics->lock);
Li Zhong21acd0e2016-11-11 12:57:36 +0800405 check_resend = 0;
Suresh Warrierb0221552015-03-20 20:39:47 +1100406 goto again;
407 }
408 }
409 out:
410 arch_spin_unlock(&ics->lock);
411}
412
Benjamin Herrenschmidte7d26f22013-04-17 20:31:15 +0000413static void icp_rm_down_cppr(struct kvmppc_xics *xics, struct kvmppc_icp *icp,
414 u8 new_cppr)
415{
416 union kvmppc_icp_state old_state, new_state;
417 bool resend;
418
419 /*
420 * This handles several related states in one operation:
421 *
422 * ICP State: Down_CPPR
423 *
424 * Load CPPR with new value and if the XISR is 0
425 * then check for resends:
426 *
427 * ICP State: Resend
428 *
429 * If MFRR is more favored than CPPR, check for IPIs
430 * and notify ICS of a potential resend. This is done
431 * asynchronously (when used in real mode, we will have
432 * to exit here).
433 *
434 * We do not handle the complete Check_IPI as documented
435 * here. In the PAPR, this state will be used for both
436 * Set_MFRR and Down_CPPR. However, we know that we aren't
437 * changing the MFRR state here so we don't need to handle
438 * the case of an MFRR causing a reject of a pending irq,
439 * this will have been handled when the MFRR was set in the
440 * first place.
441 *
442 * Thus we don't have to handle rejects, only resends.
443 *
444 * When implementing real mode for HV KVM, resend will lead to
445 * a H_TOO_HARD return and the whole transaction will be handled
446 * in virtual mode.
447 */
448 do {
Christian Borntraeger5ee07612015-01-06 22:41:46 +0100449 old_state = new_state = READ_ONCE(icp->state);
Benjamin Herrenschmidte7d26f22013-04-17 20:31:15 +0000450
451 /* Down_CPPR */
452 new_state.cppr = new_cppr;
453
454 /*
455 * Cut down Resend / Check_IPI / IPI
456 *
457 * The logic is that we cannot have a pending interrupt
458 * trumped by an IPI at this point (see above), so we
459 * know that either the pending interrupt is already an
460 * IPI (in which case we don't care to override it) or
461 * it's either more favored than us or non existent
462 */
463 if (new_state.mfrr < new_cppr &&
464 new_state.mfrr <= new_state.pending_pri) {
465 new_state.pending_pri = new_state.mfrr;
466 new_state.xisr = XICS_IPI;
467 }
468
469 /* Latch/clear resend bit */
470 resend = new_state.need_resend;
471 new_state.need_resend = 0;
472
473 } while (!icp_rm_try_update(icp, old_state, new_state));
474
475 /*
476 * Now handle resend checks. Those are asynchronous to the ICP
477 * state update in HW (ie bus transactions) so we can handle them
478 * separately here as well.
479 */
Suresh E. Warrier5b88cda2014-11-03 15:51:59 +1100480 if (resend) {
Suresh Warrier6e0365b2015-03-20 20:39:48 +1100481 icp->n_check_resend++;
Suresh Warrierb0221552015-03-20 20:39:47 +1100482 icp_rm_check_resend(xics, icp);
Suresh E. Warrier5b88cda2014-11-03 15:51:59 +1100483 }
Benjamin Herrenschmidte7d26f22013-04-17 20:31:15 +0000484}
485
486
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +1000487unsigned long xics_rm_h_xirr(struct kvm_vcpu *vcpu)
Benjamin Herrenschmidte7d26f22013-04-17 20:31:15 +0000488{
489 union kvmppc_icp_state old_state, new_state;
490 struct kvmppc_xics *xics = vcpu->kvm->arch.xics;
491 struct kvmppc_icp *icp = vcpu->arch.icp;
492 u32 xirr;
493
494 if (!xics || !xics->real_mode)
495 return H_TOO_HARD;
496
497 /* First clear the interrupt */
498 icp_rm_clr_vcpu_irq(icp->vcpu);
499
500 /*
501 * ICP State: Accept_Interrupt
502 *
503 * Return the pending interrupt (if any) along with the
504 * current CPPR, then clear the XISR & set CPPR to the
505 * pending priority
506 */
507 do {
Christian Borntraeger5ee07612015-01-06 22:41:46 +0100508 old_state = new_state = READ_ONCE(icp->state);
Benjamin Herrenschmidte7d26f22013-04-17 20:31:15 +0000509
510 xirr = old_state.xisr | (((u32)old_state.cppr) << 24);
511 if (!old_state.xisr)
512 break;
513 new_state.cppr = new_state.pending_pri;
514 new_state.pending_pri = 0xff;
515 new_state.xisr = 0;
516
517 } while (!icp_rm_try_update(icp, old_state, new_state));
518
519 /* Return the result in GPR4 */
Simon Guo1143a702018-05-07 14:20:07 +0800520 vcpu->arch.regs.gpr[4] = xirr;
Benjamin Herrenschmidte7d26f22013-04-17 20:31:15 +0000521
522 return check_too_hard(xics, icp);
523}
524
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +1000525int xics_rm_h_ipi(struct kvm_vcpu *vcpu, unsigned long server,
526 unsigned long mfrr)
Benjamin Herrenschmidte7d26f22013-04-17 20:31:15 +0000527{
528 union kvmppc_icp_state old_state, new_state;
529 struct kvmppc_xics *xics = vcpu->kvm->arch.xics;
530 struct kvmppc_icp *icp, *this_icp = vcpu->arch.icp;
531 u32 reject;
532 bool resend;
533 bool local;
534
535 if (!xics || !xics->real_mode)
536 return H_TOO_HARD;
537
538 local = this_icp->server_num == server;
539 if (local)
540 icp = this_icp;
541 else
542 icp = kvmppc_xics_find_server(vcpu->kvm, server);
543 if (!icp)
544 return H_PARAMETER;
545
546 /*
547 * ICP state: Set_MFRR
548 *
549 * If the CPPR is more favored than the new MFRR, then
550 * nothing needs to be done as there can be no XISR to
551 * reject.
552 *
Benjamin Herrenschmidte7d26f22013-04-17 20:31:15 +0000553 * ICP state: Check_IPI
Suresh E. Warrier5b88cda2014-11-03 15:51:59 +1100554 *
555 * If the CPPR is less favored, then we might be replacing
556 * an interrupt, and thus need to possibly reject it.
557 *
558 * ICP State: IPI
559 *
560 * Besides rejecting any pending interrupts, we also
561 * update XISR and pending_pri to mark IPI as pending.
562 *
563 * PAPR does not describe this state, but if the MFRR is being
564 * made less favored than its earlier value, there might be
565 * a previously-rejected interrupt needing to be resent.
566 * Ideally, we would want to resend only if
567 * prio(pending_interrupt) < mfrr &&
568 * prio(pending_interrupt) < cppr
569 * where pending interrupt is the one that was rejected. But
570 * we don't have that state, so we simply trigger a resend
571 * whenever the MFRR is made less favored.
Benjamin Herrenschmidte7d26f22013-04-17 20:31:15 +0000572 */
573 do {
Christian Borntraeger5ee07612015-01-06 22:41:46 +0100574 old_state = new_state = READ_ONCE(icp->state);
Benjamin Herrenschmidte7d26f22013-04-17 20:31:15 +0000575
576 /* Set_MFRR */
577 new_state.mfrr = mfrr;
578
579 /* Check_IPI */
580 reject = 0;
581 resend = false;
582 if (mfrr < new_state.cppr) {
583 /* Reject a pending interrupt if not an IPI */
Suresh E. Warrier5b88cda2014-11-03 15:51:59 +1100584 if (mfrr <= new_state.pending_pri) {
Benjamin Herrenschmidte7d26f22013-04-17 20:31:15 +0000585 reject = new_state.xisr;
Suresh E. Warrier5b88cda2014-11-03 15:51:59 +1100586 new_state.pending_pri = mfrr;
587 new_state.xisr = XICS_IPI;
588 }
Benjamin Herrenschmidte7d26f22013-04-17 20:31:15 +0000589 }
590
Suresh E. Warrier5b88cda2014-11-03 15:51:59 +1100591 if (mfrr > old_state.mfrr) {
Benjamin Herrenschmidte7d26f22013-04-17 20:31:15 +0000592 resend = new_state.need_resend;
593 new_state.need_resend = 0;
594 }
595 } while (!icp_rm_try_update(icp, old_state, new_state));
596
Suresh Warrierb0221552015-03-20 20:39:47 +1100597 /* Handle reject in real mode */
Benjamin Herrenschmidte7d26f22013-04-17 20:31:15 +0000598 if (reject && reject != XICS_IPI) {
Suresh Warrier6e0365b2015-03-20 20:39:48 +1100599 this_icp->n_reject++;
Li Zhong21acd0e2016-11-11 12:57:36 +0800600 icp_rm_deliver_irq(xics, icp, reject, false);
Benjamin Herrenschmidte7d26f22013-04-17 20:31:15 +0000601 }
602
Suresh Warrierb0221552015-03-20 20:39:47 +1100603 /* Handle resends in real mode */
Suresh E. Warrier5b88cda2014-11-03 15:51:59 +1100604 if (resend) {
Suresh Warrier6e0365b2015-03-20 20:39:48 +1100605 this_icp->n_check_resend++;
Suresh Warrierb0221552015-03-20 20:39:47 +1100606 icp_rm_check_resend(xics, icp);
Suresh E. Warrier5b88cda2014-11-03 15:51:59 +1100607 }
Benjamin Herrenschmidte7d26f22013-04-17 20:31:15 +0000608
609 return check_too_hard(xics, this_icp);
610}
611
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +1000612int xics_rm_h_cppr(struct kvm_vcpu *vcpu, unsigned long cppr)
Benjamin Herrenschmidte7d26f22013-04-17 20:31:15 +0000613{
614 union kvmppc_icp_state old_state, new_state;
615 struct kvmppc_xics *xics = vcpu->kvm->arch.xics;
616 struct kvmppc_icp *icp = vcpu->arch.icp;
617 u32 reject;
618
619 if (!xics || !xics->real_mode)
620 return H_TOO_HARD;
621
622 /*
623 * ICP State: Set_CPPR
624 *
625 * We can safely compare the new value with the current
626 * value outside of the transaction as the CPPR is only
627 * ever changed by the processor on itself
628 */
629 if (cppr > icp->state.cppr) {
630 icp_rm_down_cppr(xics, icp, cppr);
631 goto bail;
632 } else if (cppr == icp->state.cppr)
633 return H_SUCCESS;
634
635 /*
636 * ICP State: Up_CPPR
637 *
638 * The processor is raising its priority, this can result
639 * in a rejection of a pending interrupt:
640 *
641 * ICP State: Reject_Current
642 *
643 * We can remove EE from the current processor, the update
644 * transaction will set it again if needed
645 */
646 icp_rm_clr_vcpu_irq(icp->vcpu);
647
648 do {
Christian Borntraeger5ee07612015-01-06 22:41:46 +0100649 old_state = new_state = READ_ONCE(icp->state);
Benjamin Herrenschmidte7d26f22013-04-17 20:31:15 +0000650
651 reject = 0;
652 new_state.cppr = cppr;
653
654 if (cppr <= new_state.pending_pri) {
655 reject = new_state.xisr;
656 new_state.xisr = 0;
657 new_state.pending_pri = 0xff;
658 }
659
660 } while (!icp_rm_try_update(icp, old_state, new_state));
661
Suresh Warrierb0221552015-03-20 20:39:47 +1100662 /*
663 * Check for rejects. They are handled by doing a new delivery
664 * attempt (see comments in icp_rm_deliver_irq).
665 */
Benjamin Herrenschmidte7d26f22013-04-17 20:31:15 +0000666 if (reject && reject != XICS_IPI) {
Suresh Warrier6e0365b2015-03-20 20:39:48 +1100667 icp->n_reject++;
Li Zhong21acd0e2016-11-11 12:57:36 +0800668 icp_rm_deliver_irq(xics, icp, reject, false);
Benjamin Herrenschmidte7d26f22013-04-17 20:31:15 +0000669 }
670 bail:
671 return check_too_hard(xics, icp);
672}
673
Li Zhong17d48612016-11-11 12:57:35 +0800674static int ics_rm_eoi(struct kvm_vcpu *vcpu, u32 irq)
Benjamin Herrenschmidte7d26f22013-04-17 20:31:15 +0000675{
676 struct kvmppc_xics *xics = vcpu->kvm->arch.xics;
677 struct kvmppc_icp *icp = vcpu->arch.icp;
678 struct kvmppc_ics *ics;
679 struct ics_irq_state *state;
Benjamin Herrenschmidte7d26f22013-04-17 20:31:15 +0000680 u16 src;
Li Zhong17d48612016-11-11 12:57:35 +0800681 u32 pq_old, pq_new;
Benjamin Herrenschmidte7d26f22013-04-17 20:31:15 +0000682
683 /*
Li Zhong17d48612016-11-11 12:57:35 +0800684 * ICS EOI handling: For LSI, if P bit is still set, we need to
685 * resend it.
Benjamin Herrenschmidte7d26f22013-04-17 20:31:15 +0000686 *
Li Zhong17d48612016-11-11 12:57:35 +0800687 * For MSI, we move Q bit into P (and clear Q). If it is set,
688 * resend it.
Benjamin Herrenschmidte7d26f22013-04-17 20:31:15 +0000689 */
Benjamin Herrenschmidte7d26f22013-04-17 20:31:15 +0000690
Benjamin Herrenschmidte7d26f22013-04-17 20:31:15 +0000691 ics = kvmppc_xics_find_ics(xics, irq, &src);
692 if (!ics)
693 goto bail;
Li Zhong17d48612016-11-11 12:57:35 +0800694
Benjamin Herrenschmidte7d26f22013-04-17 20:31:15 +0000695 state = &ics->irq_state[src];
696
Li Zhong17d48612016-11-11 12:57:35 +0800697 if (state->lsi)
698 pq_new = state->pq_state;
699 else
700 do {
701 pq_old = state->pq_state;
702 pq_new = pq_old >> 1;
703 } while (cmpxchg(&state->pq_state, pq_old, pq_new) != pq_old);
704
705 if (pq_new & PQ_PRESENTED)
Li Zhong21acd0e2016-11-11 12:57:36 +0800706 icp_rm_deliver_irq(xics, NULL, irq, false);
Paul Mackerras25a2150b2014-06-30 20:51:14 +1000707
708 if (!hlist_empty(&vcpu->kvm->irq_ack_notifier_list)) {
709 icp->rm_action |= XICS_RM_NOTIFY_EOI;
710 icp->rm_eoied_irq = irq;
711 }
Paul Mackerras5d375192016-08-19 15:35:56 +1000712
Suresh Warrier65e70262016-08-19 15:35:57 +1000713 if (state->host_irq) {
714 ++vcpu->stat.pthru_all;
715 if (state->intr_cpu != -1) {
716 int pcpu = raw_smp_processor_id();
717
718 pcpu = cpu_first_thread_sibling(pcpu);
719 ++vcpu->stat.pthru_host;
720 if (state->intr_cpu != pcpu) {
721 ++vcpu->stat.pthru_bad_aff;
Benjamin Herrenschmidtab9bad02017-02-07 16:03:17 +1100722 xics_opal_set_server(state->host_irq, pcpu);
Suresh Warrier65e70262016-08-19 15:35:57 +1000723 }
724 state->intr_cpu = -1;
725 }
Paul Mackerras5d375192016-08-19 15:35:56 +1000726 }
Li Zhong17d48612016-11-11 12:57:35 +0800727
Benjamin Herrenschmidte7d26f22013-04-17 20:31:15 +0000728 bail:
729 return check_too_hard(xics, icp);
730}
Suresh Warrier0c2a6602015-12-17 14:59:09 -0600731
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +1000732int xics_rm_h_eoi(struct kvm_vcpu *vcpu, unsigned long xirr)
Li Zhong17d48612016-11-11 12:57:35 +0800733{
734 struct kvmppc_xics *xics = vcpu->kvm->arch.xics;
735 struct kvmppc_icp *icp = vcpu->arch.icp;
736 u32 irq = xirr & 0x00ffffff;
737
738 if (!xics || !xics->real_mode)
739 return H_TOO_HARD;
740
741 /*
742 * ICP State: EOI
743 *
744 * Note: If EOI is incorrectly used by SW to lower the CPPR
745 * value (ie more favored), we do not check for rejection of
746 * a pending interrupt, this is a SW error and PAPR specifies
747 * that we don't have to deal with it.
748 *
749 * The sending of an EOI to the ICS is handled after the
750 * CPPR update
751 *
752 * ICP State: Down_CPPR which we handle
753 * in a separate function as it's shared with H_CPPR.
754 */
755 icp_rm_down_cppr(xics, icp, xirr >> 24);
756
757 /* IPIs have no EOI */
758 if (irq == XICS_IPI)
759 return check_too_hard(xics, icp);
760
761 return ics_rm_eoi(vcpu, irq);
762}
763
Suresh Warriere3c13e52016-08-19 15:35:51 +1000764unsigned long eoi_rc;
765
Paul Mackerrasf7257582016-11-18 09:02:08 +1100766static void icp_eoi(struct irq_chip *c, u32 hwirq, __be32 xirr, bool *again)
Suresh Warriere3c13e52016-08-19 15:35:51 +1000767{
Benjamin Herrenschmidtd381d7c2017-04-05 17:54:54 +1000768 void __iomem *xics_phys;
Suresh Warriere3c13e52016-08-19 15:35:51 +1000769 int64_t rc;
770
771 rc = pnv_opal_pci_msi_eoi(c, hwirq);
772
773 if (rc)
774 eoi_rc = rc;
775
776 iosync();
777
778 /* EOI it */
779 xics_phys = local_paca->kvm_hstate.xics_phys;
Paul Mackerrasf7257582016-11-18 09:02:08 +1100780 if (xics_phys) {
Benjamin Herrenschmidtd381d7c2017-04-05 17:54:54 +1000781 __raw_rm_writel(xirr, xics_phys + XICS_XIRR);
Paul Mackerrasf7257582016-11-18 09:02:08 +1100782 } else {
Benjamin Herrenschmidtab9bad02017-02-07 16:03:17 +1100783 rc = opal_int_eoi(be32_to_cpu(xirr));
Paul Mackerrasf7257582016-11-18 09:02:08 +1100784 *again = rc > 0;
785 }
Suresh Warriere3c13e52016-08-19 15:35:51 +1000786}
787
Benjamin Herrenschmidtab9bad02017-02-07 16:03:17 +1100788static int xics_opal_set_server(unsigned int hw_irq, int server_cpu)
Paul Mackerras5d375192016-08-19 15:35:56 +1000789{
790 unsigned int mangle_cpu = get_hard_smp_processor_id(server_cpu) << 2;
791
Benjamin Herrenschmidtab9bad02017-02-07 16:03:17 +1100792 return opal_set_xive(hw_irq, mangle_cpu, DEFAULT_PRIORITY);
Paul Mackerras5d375192016-08-19 15:35:56 +1000793}
794
Suresh Warrier366274f2016-08-19 15:35:55 +1000795/*
796 * Increment a per-CPU 32-bit unsigned integer variable.
797 * Safe to call in real-mode. Handles vmalloc'ed addresses
798 *
799 * ToDo: Make this work for any integral type
800 */
801
802static inline void this_cpu_inc_rm(unsigned int __percpu *addr)
803{
804 unsigned long l;
805 unsigned int *raddr;
806 int cpu = smp_processor_id();
807
808 raddr = per_cpu_ptr(addr, cpu);
809 l = (unsigned long)raddr;
810
811 if (REGION_ID(l) == VMALLOC_REGION_ID) {
812 l = vmalloc_to_phys(raddr);
813 raddr = (unsigned int *)l;
814 }
815 ++*raddr;
816}
817
818/*
819 * We don't try to update the flags in the irq_desc 'istate' field in
820 * here as would happen in the normal IRQ handling path for several reasons:
821 * - state flags represent internal IRQ state and are not expected to be
822 * updated outside the IRQ subsystem
823 * - more importantly, these are useful for edge triggered interrupts,
824 * IRQ probing, etc., but we are only handling MSI/MSIx interrupts here
825 * and these states shouldn't apply to us.
826 *
827 * However, we do update irq_stats - we somewhat duplicate the code in
828 * kstat_incr_irqs_this_cpu() for this since this function is defined
829 * in irq/internal.h which we don't want to include here.
830 * The only difference is that desc->kstat_irqs is an allocated per CPU
831 * variable and could have been vmalloc'ed, so we can't directly
832 * call __this_cpu_inc() on it. The kstat structure is a static
833 * per CPU variable and it should be accessible by real-mode KVM.
834 *
835 */
836static void kvmppc_rm_handle_irq_desc(struct irq_desc *desc)
837{
838 this_cpu_inc_rm(desc->kstat_irqs);
839 __this_cpu_inc(kstat.irqs_sum);
840}
841
Suresh Warriere3c13e52016-08-19 15:35:51 +1000842long kvmppc_deliver_irq_passthru(struct kvm_vcpu *vcpu,
Paul Mackerrasf7257582016-11-18 09:02:08 +1100843 __be32 xirr,
Suresh Warriere3c13e52016-08-19 15:35:51 +1000844 struct kvmppc_irq_map *irq_map,
Paul Mackerrasf7257582016-11-18 09:02:08 +1100845 struct kvmppc_passthru_irqmap *pimap,
846 bool *again)
Suresh Warriere3c13e52016-08-19 15:35:51 +1000847{
848 struct kvmppc_xics *xics;
849 struct kvmppc_icp *icp;
Li Zhong17d48612016-11-11 12:57:35 +0800850 struct kvmppc_ics *ics;
851 struct ics_irq_state *state;
Suresh Warriere3c13e52016-08-19 15:35:51 +1000852 u32 irq;
Li Zhong17d48612016-11-11 12:57:35 +0800853 u16 src;
854 u32 pq_old, pq_new;
Suresh Warriere3c13e52016-08-19 15:35:51 +1000855
856 irq = irq_map->v_hwirq;
857 xics = vcpu->kvm->arch.xics;
858 icp = vcpu->arch.icp;
859
Suresh Warrier366274f2016-08-19 15:35:55 +1000860 kvmppc_rm_handle_irq_desc(irq_map->desc);
Li Zhong17d48612016-11-11 12:57:35 +0800861
862 ics = kvmppc_xics_find_ics(xics, irq, &src);
863 if (!ics)
864 return 2;
865
866 state = &ics->irq_state[src];
867
868 /* only MSIs register bypass producers, so it must be MSI here */
869 do {
870 pq_old = state->pq_state;
871 pq_new = ((pq_old << 1) & 3) | PQ_PRESENTED;
872 } while (cmpxchg(&state->pq_state, pq_old, pq_new) != pq_old);
873
874 /* Test P=1, Q=0, this is the only case where we present */
875 if (pq_new == PQ_PRESENTED)
Li Zhong21acd0e2016-11-11 12:57:36 +0800876 icp_rm_deliver_irq(xics, icp, irq, false);
Suresh Warriere3c13e52016-08-19 15:35:51 +1000877
878 /* EOI the interrupt */
Paul Mackerrasf7257582016-11-18 09:02:08 +1100879 icp_eoi(irq_desc_get_chip(irq_map->desc), irq_map->r_hwirq, xirr,
880 again);
Suresh Warriere3c13e52016-08-19 15:35:51 +1000881
882 if (check_too_hard(xics, icp) == H_TOO_HARD)
Suresh Warrierf7af5202016-08-19 15:35:52 +1000883 return 2;
Suresh Warriere3c13e52016-08-19 15:35:51 +1000884 else
885 return -2;
886}
887
Suresh Warrier0c2a6602015-12-17 14:59:09 -0600888/* --- Non-real mode XICS-related built-in routines --- */
889
890/**
891 * Host Operations poked by RM KVM
892 */
893static void rm_host_ipi_action(int action, void *data)
894{
895 switch (action) {
896 case XICS_RM_KICK_VCPU:
897 kvmppc_host_rm_ops_hv->vcpu_kick(data);
898 break;
899 default:
900 WARN(1, "Unexpected rm_action=%d data=%p\n", action, data);
901 break;
902 }
903
904}
905
906void kvmppc_xics_ipi_action(void)
907{
908 int core;
909 unsigned int cpu = smp_processor_id();
910 struct kvmppc_host_rm_core *rm_corep;
911
912 core = cpu >> threads_shift;
913 rm_corep = &kvmppc_host_rm_ops_hv->rm_core[core];
914
915 if (rm_corep->rm_data) {
916 rm_host_ipi_action(rm_corep->rm_state.rm_action,
917 rm_corep->rm_data);
Suresh E. Warriere17769e2015-12-21 16:22:51 -0600918 /* Order these stores against the real mode KVM */
Suresh Warrier0c2a6602015-12-17 14:59:09 -0600919 rm_corep->rm_data = NULL;
Suresh E. Warriere17769e2015-12-21 16:22:51 -0600920 smp_wmb();
Suresh Warrier0c2a6602015-12-17 14:59:09 -0600921 rm_corep->rm_state.rm_action = 0;
922 }
923}