diff options
author | Stefano Stabellini <stefano.stabellini@eu.citrix.com> | 2010-05-14 07:44:30 -0400 |
---|---|---|
committer | Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com> | 2010-07-27 02:13:25 -0400 |
commit | c1c5413ad58cb73267d328e6020268aa2e50d8ca (patch) | |
tree | f2c66141ab8d9fdb7b16a13d4d510ad09b2430ed /include/xen/platform_pci.h | |
parent | 409771d258e9dd71c30f3c9520fd2b796ffc40f0 (diff) |
x86: Unplug emulated disks and nics.
Add a xen_emul_unplug command line option to the kernel to unplug
xen emulated disks and nics.
Set the default value of xen_emul_unplug depending on whether or
not the Xen PV frontends and the Xen platform PCI driver have
been compiled for this kernel (modules or built-in are both OK).
The user can specify xen_emul_unplug=ignore to enable PV drivers on HVM
even if the host platform doesn't support unplug.
Signed-off-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
Diffstat (limited to 'include/xen/platform_pci.h')
-rw-r--r-- | include/xen/platform_pci.h | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/include/xen/platform_pci.h b/include/xen/platform_pci.h new file mode 100644 index 000000000000..ce9d671c636c --- /dev/null +++ b/include/xen/platform_pci.h | |||
@@ -0,0 +1,49 @@ | |||
1 | #ifndef _XEN_PLATFORM_PCI_H | ||
2 | #define _XEN_PLATFORM_PCI_H | ||
3 | |||
4 | #define XEN_IOPORT_MAGIC_VAL 0x49d2 | ||
5 | #define XEN_IOPORT_LINUX_PRODNUM 0x0003 | ||
6 | #define XEN_IOPORT_LINUX_DRVVER 0x0001 | ||
7 | |||
8 | #define XEN_IOPORT_BASE 0x10 | ||
9 | |||
10 | #define XEN_IOPORT_PLATFLAGS (XEN_IOPORT_BASE + 0) /* 1 byte access (R/W) */ | ||
11 | #define XEN_IOPORT_MAGIC (XEN_IOPORT_BASE + 0) /* 2 byte access (R) */ | ||
12 | #define XEN_IOPORT_UNPLUG (XEN_IOPORT_BASE + 0) /* 2 byte access (W) */ | ||
13 | #define XEN_IOPORT_DRVVER (XEN_IOPORT_BASE + 0) /* 4 byte access (W) */ | ||
14 | |||
15 | #define XEN_IOPORT_SYSLOG (XEN_IOPORT_BASE + 2) /* 1 byte access (W) */ | ||
16 | #define XEN_IOPORT_PROTOVER (XEN_IOPORT_BASE + 2) /* 1 byte access (R) */ | ||
17 | #define XEN_IOPORT_PRODNUM (XEN_IOPORT_BASE + 2) /* 2 byte access (W) */ | ||
18 | |||
19 | #define XEN_UNPLUG_ALL_IDE_DISKS 1 | ||
20 | #define XEN_UNPLUG_ALL_NICS 2 | ||
21 | #define XEN_UNPLUG_AUX_IDE_DISKS 4 | ||
22 | #define XEN_UNPLUG_ALL 7 | ||
23 | #define XEN_UNPLUG_IGNORE 8 | ||
24 | |||
25 | static inline int xen_must_unplug_nics(void) { | ||
26 | #if (defined(CONFIG_XEN_NETDEV_FRONTEND) || \ | ||
27 | defined(CONFIG_XEN_NETDEV_FRONTEND_MODULE)) && \ | ||
28 | (defined(CONFIG_XEN_PLATFORM_PCI) || \ | ||
29 | defined(CONFIG_XEN_PLATFORM_PCI_MODULE)) | ||
30 | return 1; | ||
31 | #else | ||
32 | return 0; | ||
33 | #endif | ||
34 | } | ||
35 | |||
36 | static inline int xen_must_unplug_disks(void) { | ||
37 | #if (defined(CONFIG_XEN_BLKDEV_FRONTEND) || \ | ||
38 | defined(CONFIG_XEN_BLKDEV_FRONTEND_MODULE)) && \ | ||
39 | (defined(CONFIG_XEN_PLATFORM_PCI) || \ | ||
40 | defined(CONFIG_XEN_PLATFORM_PCI_MODULE)) | ||
41 | return 1; | ||
42 | #else | ||
43 | return 0; | ||
44 | #endif | ||
45 | } | ||
46 | |||
47 | extern int xen_platform_pci_unplug; | ||
48 | |||
49 | #endif /* _XEN_PLATFORM_PCI_H */ | ||