Go to the documentation of this file. 1 #ifndef _XEN_PLATFORM_PCI_H
2 #define _XEN_PLATFORM_PCI_H
4 #define XEN_IOPORT_MAGIC_VAL 0x49d2
5 #define XEN_IOPORT_LINUX_PRODNUM 0x0003
6 #define XEN_IOPORT_LINUX_DRVVER 0x0001
8 #define XEN_IOPORT_BASE 0x10
10 #define XEN_IOPORT_PLATFLAGS (XEN_IOPORT_BASE + 0)
11 #define XEN_IOPORT_MAGIC (XEN_IOPORT_BASE + 0)
12 #define XEN_IOPORT_UNPLUG (XEN_IOPORT_BASE + 0)
13 #define XEN_IOPORT_DRVVER (XEN_IOPORT_BASE + 0)
15 #define XEN_IOPORT_SYSLOG (XEN_IOPORT_BASE + 2)
16 #define XEN_IOPORT_PROTOVER (XEN_IOPORT_BASE + 2)
17 #define XEN_IOPORT_PRODNUM (XEN_IOPORT_BASE + 2)
19 #define XEN_UNPLUG_ALL_IDE_DISKS (1<<0)
20 #define XEN_UNPLUG_ALL_NICS (1<<1)
21 #define XEN_UNPLUG_AUX_IDE_DISKS (1<<2)
22 #define XEN_UNPLUG_ALL (XEN_UNPLUG_ALL_IDE_DISKS|\
24 XEN_UNPLUG_AUX_IDE_DISKS)
26 #define XEN_UNPLUG_UNNECESSARY (1<<16)
27 #define XEN_UNPLUG_NEVER (1<<17)
29 static inline int xen_must_unplug_nics(
void) {
30 #if (defined(CONFIG_XEN_NETDEV_FRONTEND) || \
31 defined(CONFIG_XEN_NETDEV_FRONTEND_MODULE)) && \
32 defined(CONFIG_XEN_PVHVM)
39 static inline int xen_must_unplug_disks(
void) {
40 #if (defined(CONFIG_XEN_BLKDEV_FRONTEND) || \
41 defined(CONFIG_XEN_BLKDEV_FRONTEND_MODULE)) && \
42 defined(CONFIG_XEN_PVHVM)