]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/linux/lguest.h
Introduce "hcall" pointer to indicate pending hypercall.
[mirror_ubuntu-bionic-kernel.git] / include / linux / lguest.h
CommitLineData
07ad157f
RR
1/* Things the lguest guest needs to know. Note: like all lguest interfaces,
2 * this is subject to wild and random change between versions. */
c37ae93d
JS
3#ifndef _LINUX_LGUEST_H
4#define _LINUX_LGUEST_H
07ad157f 5
07ad157f
RR
6#ifndef __ASSEMBLY__
7#include <asm/irq.h>
c37ae93d 8#include <asm/lguest_hcall.h>
07ad157f 9
d7e28ffe
RR
10#define LG_CLOCK_MIN_DELTA 100UL
11#define LG_CLOCK_MAX_DELTA ULONG_MAX
12
b2b47c21
RR
13/*G:032 The second method of communicating with the Host is to via "struct
14 * lguest_data". The Guest's very first hypercall is to tell the Host where
15 * this is, and then the Guest and Host both publish information in it. :*/
07ad157f
RR
16struct lguest_data
17{
b2b47c21
RR
18 /* 512 == enabled (same as eflags in normal hardware). The Guest
19 * changes interrupts so often that a hypercall is too slow. */
07ad157f 20 unsigned int irq_enabled;
b2b47c21 21 /* Fine-grained interrupt disabling by the Guest */
07ad157f
RR
22 DECLARE_BITMAP(blocked_interrupts, LGUEST_IRQS);
23
b2b47c21
RR
24 /* The Host writes the virtual address of the last page fault here,
25 * which saves the Guest a hypercall. CR2 is the native register where
26 * this address would normally be found. */
07ad157f
RR
27 unsigned long cr2;
28
6c8dca5d
RR
29 /* Wallclock time set by the Host. */
30 struct timespec time;
31
b2b47c21
RR
32 /* Async hypercall ring. Instead of directly making hypercalls, we can
33 * place them in here for processing the next time the Host wants.
34 * This batching can be quite efficient. */
35
36 /* 0xFF == done (set by Host), 0 == pending (set by Guest). */
07ad157f 37 u8 hcall_status[LHCALL_RING_SIZE];
b2b47c21 38 /* The actual registers for the hypercalls. */
07ad157f
RR
39 struct hcall_ring hcalls[LHCALL_RING_SIZE];
40
b2b47c21 41/* Fields initialized by the Host at boot: */
07ad157f
RR
42 /* Memory not to try to access */
43 unsigned long reserve_mem;
d7e28ffe
RR
44 /* KHz for the TSC clock. */
45 u32 tsc_khz;
07ad157f 46
b2b47c21 47/* Fields initialized by the Guest at boot: */
07ad157f
RR
48 /* Instruction range to suppress interrupts even if enabled */
49 unsigned long noirq_start, noirq_end;
50};
51extern struct lguest_data lguest_data;
52#endif /* __ASSEMBLY__ */
c37ae93d 53#endif /* _LINUX_LGUEST_H */