pci_clp.h 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. #ifndef _ASM_S390_PCI_CLP_H
  2. #define _ASM_S390_PCI_CLP_H
  3. #include <asm/clp.h>
  4. /*
  5. * Call Logical Processor - Command Codes
  6. */
  7. #define CLP_LIST_PCI 0x0002
  8. #define CLP_QUERY_PCI_FN 0x0003
  9. #define CLP_QUERY_PCI_FNGRP 0x0004
  10. #define CLP_SET_PCI_FN 0x0005
  11. /* PCI function handle list entry */
  12. struct clp_fh_list_entry {
  13. u16 device_id;
  14. u16 vendor_id;
  15. u32 config_state : 1;
  16. u32 : 31;
  17. u32 fid; /* PCI function id */
  18. u32 fh; /* PCI function handle */
  19. } __packed;
  20. #define CLP_RC_SETPCIFN_FH 0x0101 /* Invalid PCI fn handle */
  21. #define CLP_RC_SETPCIFN_FHOP 0x0102 /* Fn handle not valid for op */
  22. #define CLP_RC_SETPCIFN_DMAAS 0x0103 /* Invalid DMA addr space */
  23. #define CLP_RC_SETPCIFN_RES 0x0104 /* Insufficient resources */
  24. #define CLP_RC_SETPCIFN_ALRDY 0x0105 /* Fn already in requested state */
  25. #define CLP_RC_SETPCIFN_ERR 0x0106 /* Fn in permanent error state */
  26. #define CLP_RC_SETPCIFN_RECPND 0x0107 /* Error recovery pending */
  27. #define CLP_RC_SETPCIFN_BUSY 0x0108 /* Fn busy */
  28. #define CLP_RC_LISTPCI_BADRT 0x010a /* Resume token not recognized */
  29. #define CLP_RC_QUERYPCIFG_PFGID 0x010b /* Unrecognized PFGID */
  30. /* request or response block header length */
  31. #define LIST_PCI_HDR_LEN 32
  32. /* Number of function handles fitting in response block */
  33. #define CLP_FH_LIST_NR_ENTRIES \
  34. ((CLP_BLK_SIZE - 2 * LIST_PCI_HDR_LEN) \
  35. / sizeof(struct clp_fh_list_entry))
  36. #define CLP_SET_ENABLE_PCI_FN 0 /* Yes, 0 enables it */
  37. #define CLP_SET_DISABLE_PCI_FN 1 /* Yes, 1 disables it */
  38. #define CLP_UTIL_STR_LEN 64
  39. #define CLP_PFIP_NR_SEGMENTS 4
  40. extern bool zpci_unique_uid;
  41. /* List PCI functions request */
  42. struct clp_req_list_pci {
  43. struct clp_req_hdr hdr;
  44. u64 resume_token;
  45. u64 reserved2;
  46. } __packed;
  47. /* List PCI functions response */
  48. struct clp_rsp_list_pci {
  49. struct clp_rsp_hdr hdr;
  50. u64 resume_token;
  51. u32 reserved2;
  52. u16 max_fn;
  53. u8 : 7;
  54. u8 uid_checking : 1;
  55. u8 entry_size;
  56. struct clp_fh_list_entry fh_list[CLP_FH_LIST_NR_ENTRIES];
  57. } __packed;
  58. /* Query PCI function request */
  59. struct clp_req_query_pci {
  60. struct clp_req_hdr hdr;
  61. u32 fh; /* function handle */
  62. u32 reserved2;
  63. u64 reserved3;
  64. } __packed;
  65. /* Query PCI function response */
  66. struct clp_rsp_query_pci {
  67. struct clp_rsp_hdr hdr;
  68. u16 vfn; /* virtual fn number */
  69. u16 : 7;
  70. u16 util_str_avail : 1; /* utility string available? */
  71. u16 pfgid : 8; /* pci function group id */
  72. u32 fid; /* pci function id */
  73. u8 bar_size[PCI_BAR_COUNT];
  74. u16 pchid;
  75. u32 bar[PCI_BAR_COUNT];
  76. u8 pfip[CLP_PFIP_NR_SEGMENTS]; /* pci function internal path */
  77. u32 : 16;
  78. u8 fmb_len;
  79. u8 pft; /* pci function type */
  80. u64 sdma; /* start dma as */
  81. u64 edma; /* end dma as */
  82. u32 reserved[11];
  83. u32 uid; /* user defined id */
  84. u8 util_str[CLP_UTIL_STR_LEN]; /* utility string */
  85. } __packed;
  86. /* Query PCI function group request */
  87. struct clp_req_query_pci_grp {
  88. struct clp_req_hdr hdr;
  89. u32 reserved2 : 24;
  90. u32 pfgid : 8; /* function group id */
  91. u32 reserved3;
  92. u64 reserved4;
  93. } __packed;
  94. /* Query PCI function group response */
  95. struct clp_rsp_query_pci_grp {
  96. struct clp_rsp_hdr hdr;
  97. u16 : 4;
  98. u16 noi : 12; /* number of interrupts */
  99. u8 version;
  100. u8 : 6;
  101. u8 frame : 1;
  102. u8 refresh : 1; /* TLB refresh mode */
  103. u16 reserved2;
  104. u16 mui;
  105. u64 reserved3;
  106. u64 dasm; /* dma address space mask */
  107. u64 msia; /* MSI address */
  108. u64 reserved4;
  109. u64 reserved5;
  110. } __packed;
  111. /* Set PCI function request */
  112. struct clp_req_set_pci {
  113. struct clp_req_hdr hdr;
  114. u32 fh; /* function handle */
  115. u16 reserved2;
  116. u8 oc; /* operation controls */
  117. u8 ndas; /* number of dma spaces */
  118. u64 reserved3;
  119. } __packed;
  120. /* Set PCI function response */
  121. struct clp_rsp_set_pci {
  122. struct clp_rsp_hdr hdr;
  123. u32 fh; /* function handle */
  124. u32 reserved3;
  125. u64 reserved4;
  126. } __packed;
  127. /* Combined request/response block structures used by clp insn */
  128. struct clp_req_rsp_list_pci {
  129. struct clp_req_list_pci request;
  130. struct clp_rsp_list_pci response;
  131. } __packed;
  132. struct clp_req_rsp_set_pci {
  133. struct clp_req_set_pci request;
  134. struct clp_rsp_set_pci response;
  135. } __packed;
  136. struct clp_req_rsp_query_pci {
  137. struct clp_req_query_pci request;
  138. struct clp_rsp_query_pci response;
  139. } __packed;
  140. struct clp_req_rsp_query_pci_grp {
  141. struct clp_req_query_pci_grp request;
  142. struct clp_rsp_query_pci_grp response;
  143. } __packed;
  144. #endif