platform_pci.h 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. #ifndef _XEN_PLATFORM_PCI_H
  2. #define _XEN_PLATFORM_PCI_H
  3. #define XEN_IOPORT_MAGIC_VAL 0x49d2
  4. #define XEN_IOPORT_LINUX_PRODNUM 0x0003
  5. #define XEN_IOPORT_LINUX_DRVVER 0x0001
  6. #define XEN_IOPORT_BASE 0x10
  7. #define XEN_IOPORT_PLATFLAGS (XEN_IOPORT_BASE + 0) /* 1 byte access (R/W) */
  8. #define XEN_IOPORT_MAGIC (XEN_IOPORT_BASE + 0) /* 2 byte access (R) */
  9. #define XEN_IOPORT_UNPLUG (XEN_IOPORT_BASE + 0) /* 2 byte access (W) */
  10. #define XEN_IOPORT_DRVVER (XEN_IOPORT_BASE + 0) /* 4 byte access (W) */
  11. #define XEN_IOPORT_SYSLOG (XEN_IOPORT_BASE + 2) /* 1 byte access (W) */
  12. #define XEN_IOPORT_PROTOVER (XEN_IOPORT_BASE + 2) /* 1 byte access (R) */
  13. #define XEN_IOPORT_PRODNUM (XEN_IOPORT_BASE + 2) /* 2 byte access (W) */
  14. #define XEN_UNPLUG_ALL_IDE_DISKS 1
  15. #define XEN_UNPLUG_ALL_NICS 2
  16. #define XEN_UNPLUG_AUX_IDE_DISKS 4
  17. #define XEN_UNPLUG_ALL 7
  18. #define XEN_UNPLUG_IGNORE 8
  19. static inline int xen_must_unplug_nics(void) {
  20. #if (defined(CONFIG_XEN_NETDEV_FRONTEND) || \
  21. defined(CONFIG_XEN_NETDEV_FRONTEND_MODULE)) && \
  22. (defined(CONFIG_XEN_PLATFORM_PCI) || \
  23. defined(CONFIG_XEN_PLATFORM_PCI_MODULE))
  24. return 1;
  25. #else
  26. return 0;
  27. #endif
  28. }
  29. static inline int xen_must_unplug_disks(void) {
  30. #if (defined(CONFIG_XEN_BLKDEV_FRONTEND) || \
  31. defined(CONFIG_XEN_BLKDEV_FRONTEND_MODULE)) && \
  32. (defined(CONFIG_XEN_PLATFORM_PCI) || \
  33. defined(CONFIG_XEN_PLATFORM_PCI_MODULE))
  34. return 1;
  35. #else
  36. return 0;
  37. #endif
  38. }
  39. extern int xen_platform_pci_unplug;
  40. #endif /* _XEN_PLATFORM_PCI_H */