blob: c330c4d40078d7514fa0a256af85510be7dfdbbf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
/* SPDX-License-Identifier: GPL-2.0-only */
/******************************************************************************
* asm-x86/guest/xen.h
*
* Copyright (c) 2017 Citrix Systems Ltd.
*/
#ifndef __X86_GUEST_XEN_H__
#define __X86_GUEST_XEN_H__
#include <xen/types.h>
#include <asm/e820.h>
#include <asm/fixmap.h>
#include <asm/guest/hypervisor.h>
#define XEN_shared_info ((struct shared_info *)fix_to_virt(FIX_XEN_SHARED_INFO))
#ifdef CONFIG_XEN_GUEST
extern bool xen_guest;
extern bool pv_console;
extern uint32_t xen_cpuid_base;
const struct hypervisor_ops *xg_probe(void);
int xg_alloc_unused_page(mfn_t *mfn);
int xg_free_unused_page(mfn_t mfn);
DECLARE_PER_CPU(unsigned int, vcpu_id);
DECLARE_PER_CPU(struct vcpu_info *, vcpu_info);
#else
#define xen_guest 0
#define pv_console 0
static inline const struct hypervisor_ops *xg_probe(void) { return NULL; }
#endif /* CONFIG_XEN_GUEST */
#endif /* __X86_GUEST_XEN_H__ */
/*
* Local variables:
* mode: C
* c-file-style: "BSD"
* c-basic-offset: 4
* tab-width: 4
* indent-tabs-mode: nil
* End:
*/
|