pci_insn.h 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. #ifndef _ASM_S390_PCI_INSN_H
  2. #define _ASM_S390_PCI_INSN_H
  3. /* Load/Store status codes */
  4. #define ZPCI_PCI_ST_FUNC_NOT_ENABLED 4
  5. #define ZPCI_PCI_ST_FUNC_IN_ERR 8
  6. #define ZPCI_PCI_ST_BLOCKED 12
  7. #define ZPCI_PCI_ST_INSUF_RES 16
  8. #define ZPCI_PCI_ST_INVAL_AS 20
  9. #define ZPCI_PCI_ST_FUNC_ALREADY_ENABLED 24
  10. #define ZPCI_PCI_ST_DMA_AS_NOT_ENABLED 28
  11. #define ZPCI_PCI_ST_2ND_OP_IN_INV_AS 36
  12. #define ZPCI_PCI_ST_FUNC_NOT_AVAIL 40
  13. #define ZPCI_PCI_ST_ALREADY_IN_RQ_STATE 44
  14. /* Load/Store return codes */
  15. #define ZPCI_PCI_LS_OK 0
  16. #define ZPCI_PCI_LS_ERR 1
  17. #define ZPCI_PCI_LS_BUSY 2
  18. #define ZPCI_PCI_LS_INVAL_HANDLE 3
  19. /* Load/Store address space identifiers */
  20. #define ZPCI_PCIAS_MEMIO_0 0
  21. #define ZPCI_PCIAS_MEMIO_1 1
  22. #define ZPCI_PCIAS_MEMIO_2 2
  23. #define ZPCI_PCIAS_MEMIO_3 3
  24. #define ZPCI_PCIAS_MEMIO_4 4
  25. #define ZPCI_PCIAS_MEMIO_5 5
  26. #define ZPCI_PCIAS_CFGSPC 15
  27. /* Modify PCI Function Controls */
  28. #define ZPCI_MOD_FC_REG_INT 2
  29. #define ZPCI_MOD_FC_DEREG_INT 3
  30. #define ZPCI_MOD_FC_REG_IOAT 4
  31. #define ZPCI_MOD_FC_DEREG_IOAT 5
  32. #define ZPCI_MOD_FC_REREG_IOAT 6
  33. #define ZPCI_MOD_FC_RESET_ERROR 7
  34. #define ZPCI_MOD_FC_RESET_BLOCK 9
  35. #define ZPCI_MOD_FC_SET_MEASURE 10
  36. /* FIB function controls */
  37. #define ZPCI_FIB_FC_ENABLED 0x80
  38. #define ZPCI_FIB_FC_ERROR 0x40
  39. #define ZPCI_FIB_FC_LS_BLOCKED 0x20
  40. #define ZPCI_FIB_FC_DMAAS_REG 0x10
  41. /* FIB function controls */
  42. #define ZPCI_FIB_FC_ENABLED 0x80
  43. #define ZPCI_FIB_FC_ERROR 0x40
  44. #define ZPCI_FIB_FC_LS_BLOCKED 0x20
  45. #define ZPCI_FIB_FC_DMAAS_REG 0x10
  46. /* Function Information Block */
  47. struct zpci_fib {
  48. u32 fmt : 8; /* format */
  49. u32 : 24;
  50. u32 : 32;
  51. u8 fc; /* function controls */
  52. u64 : 56;
  53. u64 pba; /* PCI base address */
  54. u64 pal; /* PCI address limit */
  55. u64 iota; /* I/O Translation Anchor */
  56. u32 : 1;
  57. u32 isc : 3; /* Interrupt subclass */
  58. u32 noi : 12; /* Number of interrupts */
  59. u32 : 2;
  60. u32 aibvo : 6; /* Adapter interrupt bit vector offset */
  61. u32 sum : 1; /* Adapter int summary bit enabled */
  62. u32 : 1;
  63. u32 aisbo : 6; /* Adapter int summary bit offset */
  64. u32 : 32;
  65. u64 aibv; /* Adapter int bit vector address */
  66. u64 aisb; /* Adapter int summary bit address */
  67. u64 fmb_addr; /* Function measurement block address and key */
  68. u32 : 32;
  69. u32 gd;
  70. } __packed __aligned(8);
  71. int zpci_mod_fc(u64 req, struct zpci_fib *fib);
  72. int zpci_refresh_trans(u64 fn, u64 addr, u64 range);
  73. int zpci_load(u64 *data, u64 req, u64 offset);
  74. int zpci_store(u64 data, u64 req, u64 offset);
  75. int zpci_store_block(const u64 *data, u64 req, u64 offset);
  76. int zpci_set_irq_ctrl(u16 ctl, char *unused, u8 isc);
  77. #endif