hypervisor_machdep.c revision 1.29 1 /* $NetBSD: hypervisor_machdep.c,v 1.29 2018/10/26 05:33:21 cherry Exp $ */
2
3 /*
4 *
5 * Copyright (c) 2004 Christian Limpach.
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29 /******************************************************************************
30 * hypervisor.c
31 *
32 * Communication to/from hypervisor.
33 *
34 * Copyright (c) 2002-2004, K A Fraser
35 *
36 * Permission is hereby granted, free of charge, to any person obtaining a copy
37 * of this software and associated documentation files (the "Software"), to
38 * deal in the Software without restriction, including without limitation the
39 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
40 * sell copies of the Software, and to permit persons to whom the Software is
41 * furnished to do so, subject to the following conditions:
42 *
43 * The above copyright notice and this permission notice shall be included in
44 * all copies or substantial portions of the Software.
45 *
46 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
47 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
48 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
49 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
50 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
51 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
52 * DEALINGS IN THE SOFTWARE.
53 */
54
55
56 #include <sys/cdefs.h>
57 __KERNEL_RCSID(0, "$NetBSD: hypervisor_machdep.c,v 1.29 2018/10/26 05:33:21 cherry Exp $");
58
59 #include <sys/param.h>
60 #include <sys/systm.h>
61 #include <sys/kmem.h>
62
63 #include <uvm/uvm_extern.h>
64
65 #include <machine/vmparam.h>
66 #include <machine/pmap.h>
67
68 #include <xen/xen.h>
69 #include <xen/hypervisor.h>
70 #include <xen/evtchn.h>
71 #include <xen/xenpmap.h>
72
73 #include "opt_xen.h"
74 #include "isa.h"
75 #include "pci.h"
76
77 /*
78 * arch-dependent p2m frame lists list (L3 and L2)
79 * used by Xen for save/restore mappings
80 */
81 static unsigned long * l3_p2m_page;
82 static unsigned long * l2_p2m_page;
83 static int l2_p2m_page_size; /* size of L2 page, in pages */
84
85 static void build_p2m_frame_list_list(void);
86 static void update_p2m_frame_list_list(void);
87
88 // #define PORT_DEBUG 4
89 // #define EARLY_DEBUG_EVENT
90
91 /* callback function type */
92 typedef void (*iterate_func_t)(unsigned int, unsigned int,
93 unsigned int, void *);
94
95 static inline void
96 evt_iterate_bits(volatile unsigned long *pendingl1,
97 volatile unsigned long *pendingl2,
98 volatile unsigned long *mask,
99 iterate_func_t iterate_pending, void *iterate_args)
100 {
101
102 KASSERT(pendingl1 != NULL);
103 KASSERT(pendingl2 != NULL);
104
105 unsigned long l1, l2;
106 unsigned int l1i, l2i, port;
107
108 l1 = xen_atomic_xchg(pendingl1, 0);
109 while ((l1i = xen_ffs(l1)) != 0) {
110 l1i--;
111 l1 &= ~(1UL << l1i);
112
113 l2 = pendingl2[l1i] & (mask != NULL ? ~mask[l1i] : -1UL);
114 l2 &= curcpu()->ci_evtmask[l1i];
115
116 if (mask != NULL) xen_atomic_setbits_l(&mask[l1i], l2);
117 xen_atomic_clearbits_l(&pendingl2[l1i], l2);
118
119 while ((l2i = xen_ffs(l2)) != 0) {
120 l2i--;
121 l2 &= ~(1UL << l2i);
122
123 port = (l1i << LONG_SHIFT) + l2i;
124
125 iterate_pending(port, l1i, l2i, iterate_args);
126 }
127 }
128 }
129
130 /*
131 * Set per-cpu "pending" information for outstanding events that
132 * cannot be processed now.
133 */
134
135 static inline void
136 evt_set_pending(unsigned int port, unsigned int l1i,
137 unsigned int l2i, void *args)
138 {
139
140 KASSERT(args != NULL);
141
142 int *ret = args;
143
144 if (evtsource[port]) {
145 hypervisor_set_ipending(evtsource[port]->ev_imask, l1i, l2i);
146 evtsource[port]->ev_evcnt.ev_count++;
147 if (*ret == 0 && curcpu()->ci_ilevel <
148 evtsource[port]->ev_maxlevel)
149 *ret = 1;
150 }
151 #ifdef DOM0OPS
152 else {
153 /* set pending event */
154 xenevt_setipending(l1i, l2i);
155 }
156 #endif
157 }
158
159 int stipending(void);
160 int
161 stipending(void)
162 {
163 volatile shared_info_t *s = HYPERVISOR_shared_info;
164 struct cpu_info *ci;
165 volatile struct vcpu_info *vci;
166 int ret;
167
168 ret = 0;
169 ci = curcpu();
170 vci = ci->ci_vcpu;
171
172 #if 0
173 if (HYPERVISOR_shared_info->events)
174 printf("stipending events %08lx mask %08lx ilevel %d\n",
175 HYPERVISOR_shared_info->events,
176 HYPERVISOR_shared_info->events_mask, ci->ci_ilevel);
177 #endif
178
179 #ifdef EARLY_DEBUG_EVENT
180 if (xen_atomic_test_bit(&s->evtchn_pending[0], debug_port)) {
181 xen_debug_handler(NULL);
182 xen_atomic_clear_bit(&s->evtchn_pending[0], debug_port);
183 }
184 #endif
185
186 /*
187 * we're only called after STIC, so we know that we'll have to
188 * STI at the end
189 */
190
191 while (vci->evtchn_upcall_pending) {
192 cli();
193
194 vci->evtchn_upcall_pending = 0;
195
196 evt_iterate_bits(&vci->evtchn_pending_sel,
197 s->evtchn_pending, s->evtchn_mask,
198 evt_set_pending, &ret);
199
200 sti();
201 }
202
203 #if 0
204 if (ci->ci_ipending & 0x1)
205 printf("stipending events %08lx mask %08lx ilevel %d ipending %08x\n",
206 HYPERVISOR_shared_info->events,
207 HYPERVISOR_shared_info->events_mask, ci->ci_ilevel,
208 ci->ci_ipending);
209 #endif
210
211 return (ret);
212 }
213
214 /* Iterate through pending events and call the event handler */
215
216 static inline void
217 evt_do_hypervisor_callback(unsigned int port, unsigned int l1i,
218 unsigned int l2i, void *args)
219 {
220 KASSERT(args != NULL);
221
222 struct cpu_info *ci = curcpu();
223 struct intrframe *regs = args;
224
225 #ifdef PORT_DEBUG
226 if (port == PORT_DEBUG)
227 printf("do_hypervisor_callback event %d\n", port);
228 #endif
229 if (evtsource[port]) {
230 ci->ci_idepth++;
231 evtchn_do_event(port, regs);
232 ci->ci_idepth--;
233 }
234 #ifdef DOM0OPS
235 else {
236 if (ci->ci_ilevel < IPL_HIGH) {
237 /* fast path */
238 int oipl = ci->ci_ilevel;
239 ci->ci_ilevel = IPL_HIGH;
240 ci->ci_idepth++;
241 xenevt_event(port);
242 ci->ci_idepth--;
243 ci->ci_ilevel = oipl;
244 } else {
245 /* set pending event */
246 xenevt_setipending(l1i, l2i);
247 }
248 }
249 #endif
250 }
251
252 void
253 do_hypervisor_callback(struct intrframe *regs)
254 {
255 volatile shared_info_t *s = HYPERVISOR_shared_info;
256 struct cpu_info *ci;
257 volatile struct vcpu_info *vci;
258 int level __diagused;
259
260 ci = curcpu();
261 vci = ci->ci_vcpu;
262 level = ci->ci_ilevel;
263
264 // DDD printf("do_hypervisor_callback\n");
265
266 #ifdef EARLY_DEBUG_EVENT
267 if (xen_atomic_test_bit(&s->evtchn_pending[0], debug_port)) {
268 xen_debug_handler(NULL);
269 xen_atomic_clear_bit(&s->evtchn_pending[0], debug_port);
270 }
271 #endif
272
273 while (vci->evtchn_upcall_pending) {
274 vci->evtchn_upcall_pending = 0;
275
276 evt_iterate_bits(&vci->evtchn_pending_sel,
277 s->evtchn_pending, s->evtchn_mask,
278 evt_do_hypervisor_callback, regs);
279 }
280
281 #ifdef DIAGNOSTIC
282 if (level != ci->ci_ilevel)
283 printf("hypervisor done %08x level %d/%d ipending %08x\n",
284 (uint)vci->evtchn_pending_sel,
285 level, ci->ci_ilevel, ci->ci_ipending);
286 #endif
287 }
288
289 void
290 hypervisor_send_event(struct cpu_info *ci, unsigned int ev)
291 {
292 KASSERT(ci != NULL);
293
294 volatile shared_info_t *s = HYPERVISOR_shared_info;
295 volatile struct vcpu_info *vci = ci->ci_vcpu;
296
297 #ifdef PORT_DEBUG
298 if (ev == PORT_DEBUG)
299 printf("hypervisor_send_event %d\n", ev);
300 #endif
301
302 xen_atomic_set_bit(&s->evtchn_pending[0], ev);
303
304 if (__predict_false(ci == curcpu())) {
305 xen_atomic_set_bit(&vci->evtchn_pending_sel,
306 ev >> LONG_SHIFT);
307 xen_atomic_set_bit(&vci->evtchn_upcall_pending, 0);
308 }
309
310 xen_atomic_clear_bit(&s->evtchn_mask[0], ev);
311
312 if (__predict_true(ci == curcpu())) {
313 hypervisor_force_callback();
314 } else {
315 if (__predict_false(xen_send_ipi(ci, XEN_IPI_HVCB))) {
316 panic("xen_send_ipi(cpu%d, XEN_IPI_HVCB) failed\n",
317 (int) ci->ci_cpuid);
318 }
319 }
320 }
321
322 void
323 hypervisor_unmask_event(unsigned int ev)
324 {
325 volatile shared_info_t *s = HYPERVISOR_shared_info;
326 CPU_INFO_ITERATOR cii;
327 struct cpu_info *ci;
328 volatile struct vcpu_info *vci;
329
330 #ifdef PORT_DEBUG
331 if (ev == PORT_DEBUG)
332 printf("hypervisor_unmask_event %d\n", ev);
333 #endif
334
335 xen_atomic_clear_bit(&s->evtchn_mask[0], ev);
336 /*
337 * The following is basically the equivalent of
338 * 'hw_resend_irq'. Just like a real IO-APIC we 'lose the
339 * interrupt edge' if the channel is masked.
340 */
341 if (!xen_atomic_test_bit(&s->evtchn_pending[0], ev))
342 return;
343
344 for (CPU_INFO_FOREACH(cii, ci)) {
345 if (!xen_atomic_test_bit(&ci->ci_evtmask[0], ev))
346 continue;
347 vci = ci->ci_vcpu;
348 if (__predict_true(ci == curcpu())) {
349 if (!xen_atomic_test_and_set_bit(&vci->evtchn_pending_sel,
350 ev>>LONG_SHIFT))
351 xen_atomic_set_bit(&vci->evtchn_upcall_pending, 0);
352 }
353 if (!vci->evtchn_upcall_mask) {
354 if (__predict_true(ci == curcpu())) {
355 hypervisor_force_callback();
356 } else {
357 if (__predict_false(
358 xen_send_ipi(ci, XEN_IPI_HVCB))) {
359 panic("xen_send_ipi(cpu%d, "
360 "XEN_IPI_HVCB) failed\n",
361 (int) ci->ci_cpuid);
362 }
363 }
364 }
365 }
366 }
367
368 void
369 hypervisor_mask_event(unsigned int ev)
370 {
371 volatile shared_info_t *s = HYPERVISOR_shared_info;
372 #ifdef PORT_DEBUG
373 if (ev == PORT_DEBUG)
374 printf("hypervisor_mask_event %d\n", ev);
375 #endif
376
377 xen_atomic_set_bit(&s->evtchn_mask[0], ev);
378 }
379
380 void
381 hypervisor_clear_event(unsigned int ev)
382 {
383 volatile shared_info_t *s = HYPERVISOR_shared_info;
384 #ifdef PORT_DEBUG
385 if (ev == PORT_DEBUG)
386 printf("hypervisor_clear_event %d\n", ev);
387 #endif
388
389 xen_atomic_clear_bit(&s->evtchn_pending[0], ev);
390 }
391
392 static inline void
393 evt_enable_event(unsigned int port, unsigned int l1i,
394 unsigned int l2i, void *args)
395 {
396 KASSERT(args == NULL);
397 hypervisor_unmask_event(port);
398 #if NPCI > 0 || NISA > 0
399 hypervisor_ack_pirq_event(port);
400 #endif /* NPCI > 0 || NISA > 0 */
401 }
402
403 void
404 hypervisor_enable_ipl(unsigned int ipl)
405 {
406 struct cpu_info *ci = curcpu();
407
408 /*
409 * enable all events for ipl. As we only set an event in ipl_evt_mask
410 * for its lowest IPL, and pending IPLs are processed high to low,
411 * we know that all callback for this event have been processed.
412 */
413
414 evt_iterate_bits(&ci->ci_isources[ipl]->ipl_evt_mask1,
415 ci->ci_isources[ipl]->ipl_evt_mask2, NULL,
416 evt_enable_event, NULL);
417
418 }
419
420 void
421 hypervisor_set_ipending(uint32_t iplmask, int l1, int l2)
422 {
423
424 /* This function is not re-entrant */
425 KASSERT(x86_read_psl() != 0);
426
427 int ipl;
428 struct cpu_info *ci = curcpu();
429
430 /* set pending bit for the appropriate IPLs */
431 ci->ci_ipending |= iplmask;
432
433 /*
434 * And set event pending bit for the lowest IPL. As IPL are handled
435 * from high to low, this ensure that all callbacks will have been
436 * called when we ack the event
437 */
438 ipl = ffs(iplmask);
439 KASSERT(ipl > 0);
440 ipl--;
441 KASSERT(ipl < NIPL);
442 KASSERT(ci->ci_isources[ipl] != NULL);
443 ci->ci_isources[ipl]->ipl_evt_mask1 |= 1UL << l1;
444 ci->ci_isources[ipl]->ipl_evt_mask2[l1] |= 1UL << l2;
445 if (__predict_false(ci != curcpu())) {
446 if (xen_send_ipi(ci, XEN_IPI_HVCB)) {
447 panic("hypervisor_set_ipending: "
448 "xen_send_ipi(cpu%d, XEN_IPI_HVCB) failed\n",
449 (int) ci->ci_cpuid);
450 }
451 }
452 }
453
454 void
455 hypervisor_machdep_attach(void)
456 {
457 /* dom0 does not require the arch-dependent P2M translation table */
458 if (!xendomain_is_dom0()) {
459 build_p2m_frame_list_list();
460 sysctl_xen_suspend_setup();
461 }
462 }
463
464 void
465 hypervisor_machdep_resume(void)
466 {
467 /* dom0 does not require the arch-dependent P2M translation table */
468 if (!xendomain_is_dom0())
469 update_p2m_frame_list_list();
470 }
471
472 /*
473 * Generate the p2m_frame_list_list table,
474 * needed for guest save/restore
475 */
476 static void
477 build_p2m_frame_list_list(void)
478 {
479 int fpp; /* number of page (frame) pointer per page */
480 unsigned long max_pfn;
481 /*
482 * The p2m list is composed of three levels of indirection,
483 * each layer containing MFNs pointing to lower level pages
484 * The indirection is used to convert a given PFN to its MFN
485 * Each N level page can point to @fpp (N-1) level pages
486 * For example, for x86 32bit, we have:
487 * - PAGE_SIZE: 4096 bytes
488 * - fpp: 1024 (one L3 page can address 1024 L2 pages)
489 * A L1 page contains the list of MFN we are looking for
490 */
491 max_pfn = xen_start_info.nr_pages;
492 fpp = PAGE_SIZE / sizeof(xen_pfn_t);
493
494 /* we only need one L3 page */
495 l3_p2m_page = (vaddr_t *)uvm_km_alloc(kernel_map, PAGE_SIZE,
496 PAGE_SIZE, UVM_KMF_WIRED | UVM_KMF_NOWAIT);
497 if (l3_p2m_page == NULL)
498 panic("could not allocate memory for l3_p2m_page");
499
500 /*
501 * Determine how many L2 pages we need for the mapping
502 * Each L2 can map a total of @fpp L1 pages
503 */
504 l2_p2m_page_size = howmany(max_pfn, fpp);
505
506 l2_p2m_page = (vaddr_t *)uvm_km_alloc(kernel_map,
507 l2_p2m_page_size * PAGE_SIZE,
508 PAGE_SIZE, UVM_KMF_WIRED | UVM_KMF_NOWAIT);
509 if (l2_p2m_page == NULL)
510 panic("could not allocate memory for l2_p2m_page");
511
512 /* We now have L3 and L2 pages ready, update L1 mapping */
513 update_p2m_frame_list_list();
514
515 }
516
517 /*
518 * Update the L1 p2m_frame_list_list mapping (during guest boot or resume)
519 */
520 static void
521 update_p2m_frame_list_list(void)
522 {
523 int i;
524 int fpp; /* number of page (frame) pointer per page */
525 unsigned long max_pfn;
526
527 max_pfn = xen_start_info.nr_pages;
528 fpp = PAGE_SIZE / sizeof(xen_pfn_t);
529
530 for (i = 0; i < l2_p2m_page_size; i++) {
531 /*
532 * Each time we start a new L2 page,
533 * store its MFN in the L3 page
534 */
535 if ((i % fpp) == 0) {
536 l3_p2m_page[i/fpp] = vtomfn(
537 (vaddr_t)&l2_p2m_page[i]);
538 }
539 /*
540 * we use a shortcut
541 * since @xpmap_phys_to_machine_mapping array
542 * already contains PFN to MFN mapping, we just
543 * set the l2_p2m_page MFN pointer to the MFN of the
544 * according frame of @xpmap_phys_to_machine_mapping
545 */
546 l2_p2m_page[i] = vtomfn((vaddr_t)
547 &xpmap_phys_to_machine_mapping[i*fpp]);
548 }
549
550 HYPERVISOR_shared_info->arch.pfn_to_mfn_frame_list_list =
551 vtomfn((vaddr_t)l3_p2m_page);
552 HYPERVISOR_shared_info->arch.max_pfn = max_pfn;
553
554 }
555