]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/xen/interface/xen.h
Merge ^/head r285924 through r286421.
[FreeBSD/FreeBSD.git] / sys / xen / interface / xen.h
1 /******************************************************************************
2  * xen.h
3  * 
4  * Guest OS interface to Xen.
5  * 
6  * Permission is hereby granted, free of charge, to any person obtaining a copy
7  * of this software and associated documentation files (the "Software"), to
8  * deal in the Software without restriction, including without limitation the
9  * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10  * sell copies of the Software, and to permit persons to whom the Software is
11  * furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in
14  * all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22  * DEALINGS IN THE SOFTWARE.
23  *
24  * Copyright (c) 2004, K A Fraser
25  */
26
27 #ifndef __XEN_PUBLIC_XEN_H__
28 #define __XEN_PUBLIC_XEN_H__
29
30 #include "xen-compat.h"
31
32 #if defined(__i386__) || defined(__x86_64__)
33 #include "arch-x86/xen.h"
34 #elif defined(__ia64__)
35 #include "arch-ia64.h"
36 #elif defined(__arm__)
37 #include "arch-arm.h"
38 #else
39 #error "Unsupported architecture"
40 #endif
41
42 #ifndef __ASSEMBLY__
43 /* Guest handles for primitive C types. */
44 DEFINE_XEN_GUEST_HANDLE(char);
45 __DEFINE_XEN_GUEST_HANDLE(uchar, unsigned char);
46 DEFINE_XEN_GUEST_HANDLE(int);
47 __DEFINE_XEN_GUEST_HANDLE(uint,  unsigned int);
48 DEFINE_XEN_GUEST_HANDLE(long);
49 __DEFINE_XEN_GUEST_HANDLE(ulong, unsigned long);
50 DEFINE_XEN_GUEST_HANDLE(void);
51
52 DEFINE_XEN_GUEST_HANDLE(uint64_t);
53 DEFINE_XEN_GUEST_HANDLE(xen_pfn_t);
54 DEFINE_XEN_GUEST_HANDLE(xen_ulong_t);
55 #endif
56
57 /*
58  * HYPERCALLS
59  */
60
61 /* `incontents 100 hcalls List of hypercalls
62  * ` enum hypercall_num { // __HYPERVISOR_* => HYPERVISOR_*()
63  */
64
65 #define __HYPERVISOR_set_trap_table        0
66 #define __HYPERVISOR_mmu_update            1
67 #define __HYPERVISOR_set_gdt               2
68 #define __HYPERVISOR_stack_switch          3
69 #define __HYPERVISOR_set_callbacks         4
70 #define __HYPERVISOR_fpu_taskswitch        5
71 #define __HYPERVISOR_sched_op_compat       6 /* compat since 0x00030101 */
72 #define __HYPERVISOR_platform_op           7
73 #define __HYPERVISOR_set_debugreg          8
74 #define __HYPERVISOR_get_debugreg          9
75 #define __HYPERVISOR_update_descriptor    10
76 #define __HYPERVISOR_memory_op            12
77 #define __HYPERVISOR_multicall            13
78 #define __HYPERVISOR_update_va_mapping    14
79 #define __HYPERVISOR_set_timer_op         15
80 #define __HYPERVISOR_event_channel_op_compat 16 /* compat since 0x00030202 */
81 #define __HYPERVISOR_xen_version          17
82 #define __HYPERVISOR_console_io           18
83 #define __HYPERVISOR_physdev_op_compat    19 /* compat since 0x00030202 */
84 #define __HYPERVISOR_grant_table_op       20
85 #define __HYPERVISOR_vm_assist            21
86 #define __HYPERVISOR_update_va_mapping_otherdomain 22
87 #define __HYPERVISOR_iret                 23 /* x86 only */
88 #define __HYPERVISOR_vcpu_op              24
89 #define __HYPERVISOR_set_segment_base     25 /* x86/64 only */
90 #define __HYPERVISOR_mmuext_op            26
91 #define __HYPERVISOR_xsm_op               27
92 #define __HYPERVISOR_nmi_op               28
93 #define __HYPERVISOR_sched_op             29
94 #define __HYPERVISOR_callback_op          30
95 #define __HYPERVISOR_xenoprof_op          31
96 #define __HYPERVISOR_event_channel_op     32
97 #define __HYPERVISOR_physdev_op           33
98 #define __HYPERVISOR_hvm_op               34
99 #define __HYPERVISOR_sysctl               35
100 #define __HYPERVISOR_domctl               36
101 #define __HYPERVISOR_kexec_op             37
102 #define __HYPERVISOR_tmem_op              38
103 #define __HYPERVISOR_xc_reserved_op       39 /* reserved for XenClient */
104
105 /* Architecture-specific hypercall definitions. */
106 #define __HYPERVISOR_arch_0               48
107 #define __HYPERVISOR_arch_1               49
108 #define __HYPERVISOR_arch_2               50
109 #define __HYPERVISOR_arch_3               51
110 #define __HYPERVISOR_arch_4               52
111 #define __HYPERVISOR_arch_5               53
112 #define __HYPERVISOR_arch_6               54
113 #define __HYPERVISOR_arch_7               55
114
115 /* ` } */
116
117 /*
118  * HYPERCALL COMPATIBILITY.
119  */
120
121 /* New sched_op hypercall introduced in 0x00030101. */
122 #if __XEN_INTERFACE_VERSION__ < 0x00030101
123 #undef __HYPERVISOR_sched_op
124 #define __HYPERVISOR_sched_op __HYPERVISOR_sched_op_compat
125 #endif
126
127 /* New event-channel and physdev hypercalls introduced in 0x00030202. */
128 #if __XEN_INTERFACE_VERSION__ < 0x00030202
129 #undef __HYPERVISOR_event_channel_op
130 #define __HYPERVISOR_event_channel_op __HYPERVISOR_event_channel_op_compat
131 #undef __HYPERVISOR_physdev_op
132 #define __HYPERVISOR_physdev_op __HYPERVISOR_physdev_op_compat
133 #endif
134
135 /* New platform_op hypercall introduced in 0x00030204. */
136 #if __XEN_INTERFACE_VERSION__ < 0x00030204
137 #define __HYPERVISOR_dom0_op __HYPERVISOR_platform_op
138 #endif
139
140 /* 
141  * VIRTUAL INTERRUPTS
142  * 
143  * Virtual interrupts that a guest OS may receive from Xen.
144  * 
145  * In the side comments, 'V.' denotes a per-VCPU VIRQ while 'G.' denotes a
146  * global VIRQ. The former can be bound once per VCPU and cannot be re-bound.
147  * The latter can be allocated only once per guest: they must initially be
148  * allocated to VCPU0 but can subsequently be re-bound.
149  */
150 /* ` enum virq { */
151 #define VIRQ_TIMER      0  /* V. Timebase update, and/or requested timeout.  */
152 #define VIRQ_DEBUG      1  /* V. Request guest to dump debug info.           */
153 #define VIRQ_CONSOLE    2  /* G. (DOM0) Bytes received on emergency console. */
154 #define VIRQ_DOM_EXC    3  /* G. (DOM0) Exceptional event for some domain.   */
155 #define VIRQ_TBUF       4  /* G. (DOM0) Trace buffer has records available.  */
156 #define VIRQ_DEBUGGER   6  /* G. (DOM0) A domain has paused for debugging.   */
157 #define VIRQ_XENOPROF   7  /* V. XenOprofile interrupt: new sample available */
158 #define VIRQ_CON_RING   8  /* G. (DOM0) Bytes received on console            */
159 #define VIRQ_PCPU_STATE 9  /* G. (DOM0) PCPU state changed                   */
160 #define VIRQ_MEM_EVENT  10 /* G. (DOM0) A memory event has occured           */
161 #define VIRQ_XC_RESERVED 11 /* G. Reserved for XenClient                     */
162 #define VIRQ_ENOMEM     12 /* G. (DOM0) Low on heap memory       */
163
164 /* Architecture-specific VIRQ definitions. */
165 #define VIRQ_ARCH_0    16
166 #define VIRQ_ARCH_1    17
167 #define VIRQ_ARCH_2    18
168 #define VIRQ_ARCH_3    19
169 #define VIRQ_ARCH_4    20
170 #define VIRQ_ARCH_5    21
171 #define VIRQ_ARCH_6    22
172 #define VIRQ_ARCH_7    23
173 /* ` } */
174
175 #define NR_VIRQS       24
176
177 /*
178  * ` enum neg_errnoval
179  * ` HYPERVISOR_mmu_update(const struct mmu_update reqs[],
180  * `                       unsigned count, unsigned *done_out,
181  * `                       unsigned foreigndom)
182  * `
183  * @reqs is an array of mmu_update_t structures ((ptr, val) pairs).
184  * @count is the length of the above array.
185  * @pdone is an output parameter indicating number of completed operations
186  * @foreigndom[15:0]: FD, the expected owner of data pages referenced in this
187  *                    hypercall invocation. Can be DOMID_SELF.
188  * @foreigndom[31:16]: PFD, the expected owner of pagetable pages referenced
189  *                     in this hypercall invocation. The value of this field
190  *                     (x) encodes the PFD as follows:
191  *                     x == 0 => PFD == DOMID_SELF
192  *                     x != 0 => PFD == x - 1
193  * 
194  * Sub-commands: ptr[1:0] specifies the appropriate MMU_* command.
195  * -------------
196  * ptr[1:0] == MMU_NORMAL_PT_UPDATE:
197  * Updates an entry in a page table belonging to PFD. If updating an L1 table,
198  * and the new table entry is valid/present, the mapped frame must belong to
199  * FD. If attempting to map an I/O page then the caller assumes the privilege
200  * of the FD.
201  * FD == DOMID_IO: Permit /only/ I/O mappings, at the priv level of the caller.
202  * FD == DOMID_XEN: Map restricted areas of Xen's heap space.
203  * ptr[:2]  -- Machine address of the page-table entry to modify.
204  * val      -- Value to write.
205  *
206  * There also certain implicit requirements when using this hypercall. The
207  * pages that make up a pagetable must be mapped read-only in the guest.
208  * This prevents uncontrolled guest updates to the pagetable. Xen strictly
209  * enforces this, and will disallow any pagetable update which will end up
210  * mapping pagetable page RW, and will disallow using any writable page as a
211  * pagetable. In practice it means that when constructing a page table for a
212  * process, thread, etc, we MUST be very dilligient in following these rules:
213  *  1). Start with top-level page (PGD or in Xen language: L4). Fill out
214  *      the entries.
215  *  2). Keep on going, filling out the upper (PUD or L3), and middle (PMD
216  *      or L2).
217  *  3). Start filling out the PTE table (L1) with the PTE entries. Once
218  *      done, make sure to set each of those entries to RO (so writeable bit
219  *      is unset). Once that has been completed, set the PMD (L2) for this
220  *      PTE table as RO.
221  *  4). When completed with all of the PMD (L2) entries, and all of them have
222  *      been set to RO, make sure to set RO the PUD (L3). Do the same
223  *      operation on PGD (L4) pagetable entries that have a PUD (L3) entry.
224  *  5). Now before you can use those pages (so setting the cr3), you MUST also
225  *      pin them so that the hypervisor can verify the entries. This is done
226  *      via the HYPERVISOR_mmuext_op(MMUEXT_PIN_L4_TABLE, guest physical frame
227  *      number of the PGD (L4)). And this point the HYPERVISOR_mmuext_op(
228  *      MMUEXT_NEW_BASEPTR, guest physical frame number of the PGD (L4)) can be
229  *      issued.
230  * For 32-bit guests, the L4 is not used (as there is less pagetables), so
231  * instead use L3.
232  * At this point the pagetables can be modified using the MMU_NORMAL_PT_UPDATE
233  * hypercall. Also if so desired the OS can also try to write to the PTE
234  * and be trapped by the hypervisor (as the PTE entry is RO).
235  *
236  * To deallocate the pages, the operations are the reverse of the steps
237  * mentioned above. The argument is MMUEXT_UNPIN_TABLE for all levels and the
238  * pagetable MUST not be in use (meaning that the cr3 is not set to it).
239  * 
240  * ptr[1:0] == MMU_MACHPHYS_UPDATE:
241  * Updates an entry in the machine->pseudo-physical mapping table.
242  * ptr[:2]  -- Machine address within the frame whose mapping to modify.
243  *             The frame must belong to the FD, if one is specified.
244  * val      -- Value to write into the mapping entry.
245  * 
246  * ptr[1:0] == MMU_PT_UPDATE_PRESERVE_AD:
247  * As MMU_NORMAL_PT_UPDATE above, but A/D bits currently in the PTE are ORed
248  * with those in @val.
249  *
250  * @val is usually the machine frame number along with some attributes.
251  * The attributes by default follow the architecture defined bits. Meaning that
252  * if this is a X86_64 machine and four page table layout is used, the layout
253  * of val is:
254  *  - 63 if set means No execute (NX)
255  *  - 46-13 the machine frame number
256  *  - 12 available for guest
257  *  - 11 available for guest
258  *  - 10 available for guest
259  *  - 9 available for guest
260  *  - 8 global
261  *  - 7 PAT (PSE is disabled, must use hypercall to make 4MB or 2MB pages)
262  *  - 6 dirty
263  *  - 5 accessed
264  *  - 4 page cached disabled
265  *  - 3 page write through
266  *  - 2 userspace accessible
267  *  - 1 writeable
268  *  - 0 present
269  *
270  *  The one bits that does not fit with the default layout is the PAGE_PSE
271  *  also called PAGE_PAT). The MMUEXT_[UN]MARK_SUPER arguments to the
272  *  HYPERVISOR_mmuext_op serve as mechanism to set a pagetable to be 4MB
273  *  (or 2MB) instead of using the PAGE_PSE bit.
274  *
275  *  The reason that the PAGE_PSE (bit 7) is not being utilized is due to Xen
276  *  using it as the Page Attribute Table (PAT) bit - for details on it please
277  *  refer to Intel SDM 10.12. The PAT allows to set the caching attributes of
278  *  pages instead of using MTRRs.
279  *
280  *  The PAT MSR is as follow (it is a 64-bit value, each entry is 8 bits):
281  *             PAT4                 PAT0
282  *   +---+----+----+----+-----+----+----+
283  *    WC | WC | WB | UC | UC- | WC | WB |  <= Linux
284  *   +---+----+----+----+-----+----+----+
285  *    WC | WT | WB | UC | UC- | WT | WB |  <= BIOS (default when machine boots)
286  *   +---+----+----+----+-----+----+----+
287  *    WC | WP | WC | UC | UC- | WT | WB |  <= Xen
288  *   +---+----+----+----+-----+----+----+
289  *
290  *  The lookup of this index table translates to looking up
291  *  Bit 7, Bit 4, and Bit 3 of val entry:
292  *
293  *  PAT/PSE (bit 7) ... PCD (bit 4) .. PWT (bit 3).
294  *
295  *  If all bits are off, then we are using PAT0. If bit 3 turned on,
296  *  then we are using PAT1, if bit 3 and bit 4, then PAT2..
297  *
298  *  As you can see, the Linux PAT1 translates to PAT4 under Xen. Which means
299  *  that if a guest that follows Linux's PAT setup and would like to set Write
300  *  Combined on pages it MUST use PAT4 entry. Meaning that Bit 7 (PAGE_PAT) is
301  *  set. For example, under Linux it only uses PAT0, PAT1, and PAT2 for the
302  *  caching as:
303  *
304  *   WB = none (so PAT0)
305  *   WC = PWT (bit 3 on)
306  *   UC = PWT | PCD (bit 3 and 4 are on).
307  *
308  * To make it work with Xen, it needs to translate the WC bit as so:
309  *
310  *  PWT (so bit 3 on) --> PAT (so bit 7 is on) and clear bit 3
311  *
312  * And to translate back it would:
313  *
314  * PAT (bit 7 on) --> PWT (bit 3 on) and clear bit 7.
315  */
316 #define MMU_NORMAL_PT_UPDATE      0 /* checked '*ptr = val'. ptr is MA.      */
317 #define MMU_MACHPHYS_UPDATE       1 /* ptr = MA of frame to modify entry for */
318 #define MMU_PT_UPDATE_PRESERVE_AD 2 /* atomically: *ptr = val | (*ptr&(A|D)) */
319
320 /*
321  * MMU EXTENDED OPERATIONS
322  * 
323  * HYPERVISOR_mmuext_op() accepts a list of mmuext_op structures.
324  * A foreigndom (FD) can be specified (or DOMID_SELF for none).
325  * Where the FD has some effect, it is described below.
326  * 
327  * cmd: MMUEXT_(UN)PIN_*_TABLE
328  * mfn: Machine frame number to be (un)pinned as a p.t. page.
329  *      The frame must belong to the FD, if one is specified.
330  * 
331  * cmd: MMUEXT_NEW_BASEPTR
332  * mfn: Machine frame number of new page-table base to install in MMU.
333  * 
334  * cmd: MMUEXT_NEW_USER_BASEPTR [x86/64 only]
335  * mfn: Machine frame number of new page-table base to install in MMU
336  *      when in user space.
337  * 
338  * cmd: MMUEXT_TLB_FLUSH_LOCAL
339  * No additional arguments. Flushes local TLB.
340  * 
341  * cmd: MMUEXT_INVLPG_LOCAL
342  * linear_addr: Linear address to be flushed from the local TLB.
343  * 
344  * cmd: MMUEXT_TLB_FLUSH_MULTI
345  * vcpumask: Pointer to bitmap of VCPUs to be flushed.
346  * 
347  * cmd: MMUEXT_INVLPG_MULTI
348  * linear_addr: Linear address to be flushed.
349  * vcpumask: Pointer to bitmap of VCPUs to be flushed.
350  * 
351  * cmd: MMUEXT_TLB_FLUSH_ALL
352  * No additional arguments. Flushes all VCPUs' TLBs.
353  * 
354  * cmd: MMUEXT_INVLPG_ALL
355  * linear_addr: Linear address to be flushed from all VCPUs' TLBs.
356  * 
357  * cmd: MMUEXT_FLUSH_CACHE
358  * No additional arguments. Writes back and flushes cache contents.
359  *
360  * cmd: MMUEXT_FLUSH_CACHE_GLOBAL
361  * No additional arguments. Writes back and flushes cache contents
362  * on all CPUs in the system.
363  * 
364  * cmd: MMUEXT_SET_LDT
365  * linear_addr: Linear address of LDT base (NB. must be page-aligned).
366  * nr_ents: Number of entries in LDT.
367  *
368  * cmd: MMUEXT_CLEAR_PAGE
369  * mfn: Machine frame number to be cleared.
370  *
371  * cmd: MMUEXT_COPY_PAGE
372  * mfn: Machine frame number of the destination page.
373  * src_mfn: Machine frame number of the source page.
374  *
375  * cmd: MMUEXT_[UN]MARK_SUPER
376  * mfn: Machine frame number of head of superpage to be [un]marked.
377  */
378 #define MMUEXT_PIN_L1_TABLE      0
379 #define MMUEXT_PIN_L2_TABLE      1
380 #define MMUEXT_PIN_L3_TABLE      2
381 #define MMUEXT_PIN_L4_TABLE      3
382 #define MMUEXT_UNPIN_TABLE       4
383 #define MMUEXT_NEW_BASEPTR       5
384 #define MMUEXT_TLB_FLUSH_LOCAL   6
385 #define MMUEXT_INVLPG_LOCAL      7
386 #define MMUEXT_TLB_FLUSH_MULTI   8
387 #define MMUEXT_INVLPG_MULTI      9
388 #define MMUEXT_TLB_FLUSH_ALL    10
389 #define MMUEXT_INVLPG_ALL       11
390 #define MMUEXT_FLUSH_CACHE      12
391 #define MMUEXT_SET_LDT          13
392 #define MMUEXT_NEW_USER_BASEPTR 15
393 #define MMUEXT_CLEAR_PAGE       16
394 #define MMUEXT_COPY_PAGE        17
395 #define MMUEXT_FLUSH_CACHE_GLOBAL 18
396 #define MMUEXT_MARK_SUPER       19
397 #define MMUEXT_UNMARK_SUPER     20
398
399 #ifndef __ASSEMBLY__
400 struct mmuext_op {
401     unsigned int cmd;
402     union {
403         /* [UN]PIN_TABLE, NEW_BASEPTR, NEW_USER_BASEPTR
404          * CLEAR_PAGE, COPY_PAGE, [UN]MARK_SUPER */
405         xen_pfn_t     mfn;
406         /* INVLPG_LOCAL, INVLPG_ALL, SET_LDT */
407         unsigned long linear_addr;
408     } arg1;
409     union {
410         /* SET_LDT */
411         unsigned int nr_ents;
412         /* TLB_FLUSH_MULTI, INVLPG_MULTI */
413 #if __XEN_INTERFACE_VERSION__ >= 0x00030205
414         XEN_GUEST_HANDLE(const_void) vcpumask;
415 #else
416         const void *vcpumask;
417 #endif
418         /* COPY_PAGE */
419         xen_pfn_t src_mfn;
420     } arg2;
421 };
422 typedef struct mmuext_op mmuext_op_t;
423 DEFINE_XEN_GUEST_HANDLE(mmuext_op_t);
424 #endif
425
426 /* These are passed as 'flags' to update_va_mapping. They can be ORed. */
427 /* When specifying UVMF_MULTI, also OR in a pointer to a CPU bitmap.   */
428 /* UVMF_LOCAL is merely UVMF_MULTI with a NULL bitmap pointer.         */
429 #define UVMF_NONE               (0UL<<0) /* No flushing at all.   */
430 #define UVMF_TLB_FLUSH          (1UL<<0) /* Flush entire TLB(s).  */
431 #define UVMF_INVLPG             (2UL<<0) /* Flush only one entry. */
432 #define UVMF_FLUSHTYPE_MASK     (3UL<<0)
433 #define UVMF_MULTI              (0UL<<2) /* Flush subset of TLBs. */
434 #define UVMF_LOCAL              (0UL<<2) /* Flush local TLB.      */
435 #define UVMF_ALL                (1UL<<2) /* Flush all TLBs.       */
436
437 /*
438  * Commands to HYPERVISOR_console_io().
439  */
440 #define CONSOLEIO_write         0
441 #define CONSOLEIO_read          1
442
443 /*
444  * Commands to HYPERVISOR_vm_assist().
445  */
446 #define VMASST_CMD_enable                0
447 #define VMASST_CMD_disable               1
448
449 /* x86/32 guests: simulate full 4GB segment limits. */
450 #define VMASST_TYPE_4gb_segments         0
451
452 /* x86/32 guests: trap (vector 15) whenever above vmassist is used. */
453 #define VMASST_TYPE_4gb_segments_notify  1
454
455 /*
456  * x86 guests: support writes to bottom-level PTEs.
457  * NB1. Page-directory entries cannot be written.
458  * NB2. Guest must continue to remove all writable mappings of PTEs.
459  */
460 #define VMASST_TYPE_writable_pagetables  2
461
462 /* x86/PAE guests: support PDPTs above 4GB. */
463 #define VMASST_TYPE_pae_extended_cr3     3
464
465 #define MAX_VMASST_TYPE                  3
466
467 #ifndef __ASSEMBLY__
468
469 typedef uint16_t domid_t;
470
471 /* Domain ids >= DOMID_FIRST_RESERVED cannot be used for ordinary domains. */
472 #define DOMID_FIRST_RESERVED (0x7FF0U)
473
474 /* DOMID_SELF is used in certain contexts to refer to oneself. */
475 #define DOMID_SELF (0x7FF0U)
476
477 /*
478  * DOMID_IO is used to restrict page-table updates to mapping I/O memory.
479  * Although no Foreign Domain need be specified to map I/O pages, DOMID_IO
480  * is useful to ensure that no mappings to the OS's own heap are accidentally
481  * installed. (e.g., in Linux this could cause havoc as reference counts
482  * aren't adjusted on the I/O-mapping code path).
483  * This only makes sense in MMUEXT_SET_FOREIGNDOM, but in that context can
484  * be specified by any calling domain.
485  */
486 #define DOMID_IO   (0x7FF1U)
487
488 /*
489  * DOMID_XEN is used to allow privileged domains to map restricted parts of
490  * Xen's heap space (e.g., the machine_to_phys table).
491  * This only makes sense in MMUEXT_SET_FOREIGNDOM, and is only permitted if
492  * the caller is privileged.
493  */
494 #define DOMID_XEN  (0x7FF2U)
495
496 /*
497  * DOMID_COW is used as the owner of sharable pages */
498 #define DOMID_COW  (0x7FF3U)
499
500 /* DOMID_INVALID is used to identify pages with unknown owner. */
501 #define DOMID_INVALID (0x7FF4U)
502
503 /* Idle domain. */
504 #define DOMID_IDLE (0x7FFFU)
505
506 /*
507  * Send an array of these to HYPERVISOR_mmu_update().
508  * NB. The fields are natural pointer/address size for this architecture.
509  */
510 struct mmu_update {
511     uint64_t ptr;       /* Machine address of PTE. */
512     uint64_t val;       /* New contents of PTE.    */
513 };
514 typedef struct mmu_update mmu_update_t;
515 DEFINE_XEN_GUEST_HANDLE(mmu_update_t);
516
517 /*
518  * Send an array of these to HYPERVISOR_multicall().
519  * NB. The fields are natural register size for this architecture.
520  */
521 struct multicall_entry {
522     unsigned long op, result;
523     unsigned long args[6];
524 };
525 typedef struct multicall_entry multicall_entry_t;
526 DEFINE_XEN_GUEST_HANDLE(multicall_entry_t);
527
528 /*
529  * Event channel endpoints per domain:
530  *  1024 if a long is 32 bits; 4096 if a long is 64 bits.
531  */
532 #define NR_EVENT_CHANNELS (sizeof(unsigned long) * sizeof(unsigned long) * 64)
533
534 struct vcpu_time_info {
535     /*
536      * Updates to the following values are preceded and followed by an
537      * increment of 'version'. The guest can therefore detect updates by
538      * looking for changes to 'version'. If the least-significant bit of
539      * the version number is set then an update is in progress and the guest
540      * must wait to read a consistent set of values.
541      * The correct way to interact with the version number is similar to
542      * Linux's seqlock: see the implementations of read_seqbegin/read_seqretry.
543      */
544     uint32_t version;
545     uint32_t pad0;
546     uint64_t tsc_timestamp;   /* TSC at last update of time vals.  */
547     uint64_t system_time;     /* Time, in nanosecs, since boot.    */
548     /*
549      * Current system time:
550      *   system_time +
551      *   ((((tsc - tsc_timestamp) << tsc_shift) * tsc_to_system_mul) >> 32)
552      * CPU frequency (Hz):
553      *   ((10^9 << 32) / tsc_to_system_mul) >> tsc_shift
554      */
555     uint32_t tsc_to_system_mul;
556     int8_t   tsc_shift;
557     int8_t   pad1[3];
558 }; /* 32 bytes */
559 typedef struct vcpu_time_info vcpu_time_info_t;
560
561 struct vcpu_info {
562     /*
563      * 'evtchn_upcall_pending' is written non-zero by Xen to indicate
564      * a pending notification for a particular VCPU. It is then cleared 
565      * by the guest OS /before/ checking for pending work, thus avoiding
566      * a set-and-check race. Note that the mask is only accessed by Xen
567      * on the CPU that is currently hosting the VCPU. This means that the
568      * pending and mask flags can be updated by the guest without special
569      * synchronisation (i.e., no need for the x86 LOCK prefix).
570      * This may seem suboptimal because if the pending flag is set by
571      * a different CPU then an IPI may be scheduled even when the mask
572      * is set. However, note:
573      *  1. The task of 'interrupt holdoff' is covered by the per-event-
574      *     channel mask bits. A 'noisy' event that is continually being
575      *     triggered can be masked at source at this very precise
576      *     granularity.
577      *  2. The main purpose of the per-VCPU mask is therefore to restrict
578      *     reentrant execution: whether for concurrency control, or to
579      *     prevent unbounded stack usage. Whatever the purpose, we expect
580      *     that the mask will be asserted only for short periods at a time,
581      *     and so the likelihood of a 'spurious' IPI is suitably small.
582      * The mask is read before making an event upcall to the guest: a
583      * non-zero mask therefore guarantees that the VCPU will not receive
584      * an upcall activation. The mask is cleared when the VCPU requests
585      * to block: this avoids wakeup-waiting races.
586      */
587     uint8_t evtchn_upcall_pending;
588     uint8_t evtchn_upcall_mask;
589     unsigned long evtchn_pending_sel;
590     struct arch_vcpu_info arch;
591     struct vcpu_time_info time;
592 }; /* 64 bytes (x86) */
593 #ifndef __XEN__
594 typedef struct vcpu_info vcpu_info_t;
595 #endif
596
597 /*
598  * Xen/kernel shared data -- pointer provided in start_info.
599  *
600  * This structure is defined to be both smaller than a page, and the
601  * only data on the shared page, but may vary in actual size even within
602  * compatible Xen versions; guests should not rely on the size
603  * of this structure remaining constant.
604  */
605 struct shared_info {
606     struct vcpu_info vcpu_info[XEN_LEGACY_MAX_VCPUS];
607
608     /*
609      * A domain can create "event channels" on which it can send and receive
610      * asynchronous event notifications. There are three classes of event that
611      * are delivered by this mechanism:
612      *  1. Bi-directional inter- and intra-domain connections. Domains must
613      *     arrange out-of-band to set up a connection (usually by allocating
614      *     an unbound 'listener' port and avertising that via a storage service
615      *     such as xenstore).
616      *  2. Physical interrupts. A domain with suitable hardware-access
617      *     privileges can bind an event-channel port to a physical interrupt
618      *     source.
619      *  3. Virtual interrupts ('events'). A domain can bind an event-channel
620      *     port to a virtual interrupt source, such as the virtual-timer
621      *     device or the emergency console.
622      * 
623      * Event channels are addressed by a "port index". Each channel is
624      * associated with two bits of information:
625      *  1. PENDING -- notifies the domain that there is a pending notification
626      *     to be processed. This bit is cleared by the guest.
627      *  2. MASK -- if this bit is clear then a 0->1 transition of PENDING
628      *     will cause an asynchronous upcall to be scheduled. This bit is only
629      *     updated by the guest. It is read-only within Xen. If a channel
630      *     becomes pending while the channel is masked then the 'edge' is lost
631      *     (i.e., when the channel is unmasked, the guest must manually handle
632      *     pending notifications as no upcall will be scheduled by Xen).
633      * 
634      * To expedite scanning of pending notifications, any 0->1 pending
635      * transition on an unmasked channel causes a corresponding bit in a
636      * per-vcpu selector word to be set. Each bit in the selector covers a
637      * 'C long' in the PENDING bitfield array.
638      */
639     unsigned long evtchn_pending[sizeof(unsigned long) * 8];
640     unsigned long evtchn_mask[sizeof(unsigned long) * 8];
641
642     /*
643      * Wallclock time: updated only by control software. Guests should base
644      * their gettimeofday() syscall on this wallclock-base value.
645      */
646     uint32_t wc_version;      /* Version counter: see vcpu_time_info_t. */
647     uint32_t wc_sec;          /* Secs  00:00:00 UTC, Jan 1, 1970.  */
648     uint32_t wc_nsec;         /* Nsecs 00:00:00 UTC, Jan 1, 1970.  */
649
650     struct arch_shared_info arch;
651
652 };
653 #ifndef __XEN__
654 typedef struct shared_info shared_info_t;
655 #endif
656
657 /*
658  * Start-of-day memory layout:
659  *  1. The domain is started within contiguous virtual-memory region.
660  *  2. The contiguous region ends on an aligned 4MB boundary.
661  *  3. This the order of bootstrap elements in the initial virtual region:
662  *      a. relocated kernel image
663  *      b. initial ram disk              [mod_start, mod_len]
664  *      c. list of allocated page frames [mfn_list, nr_pages]
665  *         (unless relocated due to XEN_ELFNOTE_INIT_P2M)
666  *      d. start_info_t structure        [register ESI (x86)]
667  *      e. bootstrap page tables         [pt_base, CR3 (x86)]
668  *      f. bootstrap stack               [register ESP (x86)]
669  *  4. Bootstrap elements are packed together, but each is 4kB-aligned.
670  *  5. The initial ram disk may be omitted.
671  *  6. The list of page frames forms a contiguous 'pseudo-physical' memory
672  *     layout for the domain. In particular, the bootstrap virtual-memory
673  *     region is a 1:1 mapping to the first section of the pseudo-physical map.
674  *  7. All bootstrap elements are mapped read-writable for the guest OS. The
675  *     only exception is the bootstrap page table, which is mapped read-only.
676  *  8. There is guaranteed to be at least 512kB padding after the final
677  *     bootstrap element. If necessary, the bootstrap virtual region is
678  *     extended by an extra 4MB to ensure this.
679  */
680
681 #define MAX_GUEST_CMDLINE 1024
682 struct start_info {
683     /* THE FOLLOWING ARE FILLED IN BOTH ON INITIAL BOOT AND ON RESUME.    */
684     char magic[32];             /* "xen-<version>-<platform>".            */
685     unsigned long nr_pages;     /* Total pages allocated to this domain.  */
686     unsigned long shared_info;  /* MACHINE address of shared info struct. */
687     uint32_t flags;             /* SIF_xxx flags.                         */
688     xen_pfn_t store_mfn;        /* MACHINE page number of shared page.    */
689     uint32_t store_evtchn;      /* Event channel for store communication. */
690     union {
691         struct {
692             xen_pfn_t mfn;      /* MACHINE page number of console page.   */
693             uint32_t  evtchn;   /* Event channel for console page.        */
694         } domU;
695         struct {
696             uint32_t info_off;  /* Offset of console_info struct.         */
697             uint32_t info_size; /* Size of console_info struct from start.*/
698         } dom0;
699     } console;
700     /* THE FOLLOWING ARE ONLY FILLED IN ON INITIAL BOOT (NOT RESUME).     */
701     unsigned long pt_base;      /* VIRTUAL address of page directory.     */
702     unsigned long nr_pt_frames; /* Number of bootstrap p.t. frames.       */
703     unsigned long mfn_list;     /* VIRTUAL address of page-frame list.    */
704     unsigned long mod_start;    /* VIRTUAL address of pre-loaded module   */
705                                 /* (PFN of pre-loaded module if           */
706                                 /*  SIF_MOD_START_PFN set in flags).      */
707     unsigned long mod_len;      /* Size (bytes) of pre-loaded module.     */
708     int8_t cmd_line[MAX_GUEST_CMDLINE];
709     /* The pfn range here covers both page table and p->m table frames.   */
710     unsigned long first_p2m_pfn;/* 1st pfn forming initial P->M table.    */
711     unsigned long nr_p2m_frames;/* # of pfns forming initial P->M table.  */
712 };
713 typedef struct start_info start_info_t;
714
715 /* New console union for dom0 introduced in 0x00030203. */
716 #if __XEN_INTERFACE_VERSION__ < 0x00030203
717 #define console_mfn    console.domU.mfn
718 #define console_evtchn console.domU.evtchn
719 #endif
720
721 /* These flags are passed in the 'flags' field of start_info_t. */
722 #define SIF_PRIVILEGED    (1<<0)  /* Is the domain privileged? */
723 #define SIF_INITDOMAIN    (1<<1)  /* Is this the initial control domain? */
724 #define SIF_MULTIBOOT_MOD (1<<2)  /* Is mod_start a multiboot module? */
725 #define SIF_MOD_START_PFN (1<<3)  /* Is mod_start a PFN? */
726 #define SIF_PM_MASK       (0xFF<<8) /* reserve 1 byte for xen-pm options */
727
728 /*
729  * A multiboot module is a package containing modules very similar to a
730  * multiboot module array. The only differences are:
731  * - the array of module descriptors is by convention simply at the beginning
732  *   of the multiboot module,
733  * - addresses in the module descriptors are based on the beginning of the
734  *   multiboot module,
735  * - the number of modules is determined by a termination descriptor that has
736  *   mod_start == 0.
737  *
738  * This permits to both build it statically and reference it in a configuration
739  * file, and let the PV guest easily rebase the addresses to virtual addresses
740  * and at the same time count the number of modules.
741  */
742 struct xen_multiboot_mod_list
743 {
744     /* Address of first byte of the module */
745     uint32_t mod_start;
746     /* Address of last byte of the module (inclusive) */
747     uint32_t mod_end;
748     /* Address of zero-terminated command line */
749     uint32_t cmdline;
750     /* Unused, must be zero */
751     uint32_t pad;
752 };
753
754 typedef struct dom0_vga_console_info {
755     uint8_t video_type; /* DOM0_VGA_CONSOLE_??? */
756 #define XEN_VGATYPE_TEXT_MODE_3 0x03
757 #define XEN_VGATYPE_VESA_LFB    0x23
758 #define XEN_VGATYPE_EFI_LFB     0x70
759
760     union {
761         struct {
762             /* Font height, in pixels. */
763             uint16_t font_height;
764             /* Cursor location (column, row). */
765             uint16_t cursor_x, cursor_y;
766             /* Number of rows and columns (dimensions in characters). */
767             uint16_t rows, columns;
768         } text_mode_3;
769
770         struct {
771             /* Width and height, in pixels. */
772             uint16_t width, height;
773             /* Bytes per scan line. */
774             uint16_t bytes_per_line;
775             /* Bits per pixel. */
776             uint16_t bits_per_pixel;
777             /* LFB physical address, and size (in units of 64kB). */
778             uint32_t lfb_base;
779             uint32_t lfb_size;
780             /* RGB mask offsets and sizes, as defined by VBE 1.2+ */
781             uint8_t  red_pos, red_size;
782             uint8_t  green_pos, green_size;
783             uint8_t  blue_pos, blue_size;
784             uint8_t  rsvd_pos, rsvd_size;
785 #if __XEN_INTERFACE_VERSION__ >= 0x00030206
786             /* VESA capabilities (offset 0xa, VESA command 0x4f00). */
787             uint32_t gbl_caps;
788             /* Mode attributes (offset 0x0, VESA command 0x4f01). */
789             uint16_t mode_attrs;
790 #endif
791         } vesa_lfb;
792     } u;
793 } dom0_vga_console_info_t;
794 #define xen_vga_console_info dom0_vga_console_info
795 #define xen_vga_console_info_t dom0_vga_console_info_t
796
797 typedef uint8_t xen_domain_handle_t[16];
798
799 /* Turn a plain number into a C unsigned long constant. */
800 #define __mk_unsigned_long(x) x ## UL
801 #define mk_unsigned_long(x) __mk_unsigned_long(x)
802
803 __DEFINE_XEN_GUEST_HANDLE(uint8,  uint8_t);
804 __DEFINE_XEN_GUEST_HANDLE(uint16, uint16_t);
805 __DEFINE_XEN_GUEST_HANDLE(uint32, uint32_t);
806 __DEFINE_XEN_GUEST_HANDLE(uint64, uint64_t);
807
808 #else /* __ASSEMBLY__ */
809
810 /* In assembly code we cannot use C numeric constant suffixes. */
811 #define mk_unsigned_long(x) x
812
813 #endif /* !__ASSEMBLY__ */
814
815 /* Default definitions for macros used by domctl/sysctl. */
816 #if defined(__XEN__) || defined(__XEN_TOOLS__)
817
818 #ifndef uint64_aligned_t
819 #define uint64_aligned_t uint64_t
820 #endif
821 #ifndef XEN_GUEST_HANDLE_64
822 #define XEN_GUEST_HANDLE_64(name) XEN_GUEST_HANDLE(name)
823 #endif
824
825 #ifndef __ASSEMBLY__
826 struct xenctl_cpumap {
827     XEN_GUEST_HANDLE_64(uint8) bitmap;
828     uint32_t nr_cpus;
829 };
830 #endif
831
832 #endif /* defined(__XEN__) || defined(__XEN_TOOLS__) */
833
834 #endif /* __XEN_PUBLIC_XEN_H__ */
835
836 /*
837  * Local variables:
838  * mode: C
839  * c-set-style: "BSD"
840  * c-basic-offset: 4
841  * tab-width: 4
842  * indent-tabs-mode: nil
843  * End:
844  */