hw.h 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  1. /*
  2. * Copyright(c) 2004 - 2009 Intel Corporation. All rights reserved.
  3. *
  4. * This program is free software; you can redistribute it and/or modify it
  5. * under the terms of the GNU General Public License as published by the Free
  6. * Software Foundation; either version 2 of the License, or (at your option)
  7. * any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful, but WITHOUT
  10. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  12. * more details.
  13. *
  14. * You should have received a copy of the GNU General Public License along with
  15. * this program; if not, write to the Free Software Foundation, Inc., 59
  16. * Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  17. *
  18. * The full GNU General Public License is included in this distribution in the
  19. * file called COPYING.
  20. */
  21. #ifndef _IOAT_HW_H_
  22. #define _IOAT_HW_H_
  23. /* PCI Configuration Space Values */
  24. #define IOAT_MMIO_BAR 0
  25. /* CB device ID's */
  26. #define IOAT_PCI_DID_5000 0x1A38
  27. #define IOAT_PCI_DID_CNB 0x360B
  28. #define IOAT_PCI_DID_SCNB 0x65FF
  29. #define IOAT_PCI_DID_SNB 0x402F
  30. #define IOAT_VER_1_2 0x12 /* Version 1.2 */
  31. #define IOAT_VER_2_0 0x20 /* Version 2.0 */
  32. #define IOAT_VER_3_0 0x30 /* Version 3.0 */
  33. #define IOAT_VER_3_2 0x32 /* Version 3.2 */
  34. #define PCI_DEVICE_ID_INTEL_IOAT_IVB0 0x0e20
  35. #define PCI_DEVICE_ID_INTEL_IOAT_IVB1 0x0e21
  36. #define PCI_DEVICE_ID_INTEL_IOAT_IVB2 0x0e22
  37. #define PCI_DEVICE_ID_INTEL_IOAT_IVB3 0x0e23
  38. #define PCI_DEVICE_ID_INTEL_IOAT_IVB4 0x0e24
  39. #define PCI_DEVICE_ID_INTEL_IOAT_IVB5 0x0e25
  40. #define PCI_DEVICE_ID_INTEL_IOAT_IVB6 0x0e26
  41. #define PCI_DEVICE_ID_INTEL_IOAT_IVB7 0x0e27
  42. #define PCI_DEVICE_ID_INTEL_IOAT_IVB8 0x0e2e
  43. #define PCI_DEVICE_ID_INTEL_IOAT_IVB9 0x0e2f
  44. int system_has_dca_enabled(struct pci_dev *pdev);
  45. struct ioat_dma_descriptor {
  46. uint32_t size;
  47. union {
  48. uint32_t ctl;
  49. struct {
  50. unsigned int int_en:1;
  51. unsigned int src_snoop_dis:1;
  52. unsigned int dest_snoop_dis:1;
  53. unsigned int compl_write:1;
  54. unsigned int fence:1;
  55. unsigned int null:1;
  56. unsigned int src_brk:1;
  57. unsigned int dest_brk:1;
  58. unsigned int bundle:1;
  59. unsigned int dest_dca:1;
  60. unsigned int hint:1;
  61. unsigned int rsvd2:13;
  62. #define IOAT_OP_COPY 0x00
  63. unsigned int op:8;
  64. } ctl_f;
  65. };
  66. uint64_t src_addr;
  67. uint64_t dst_addr;
  68. uint64_t next;
  69. uint64_t rsv1;
  70. uint64_t rsv2;
  71. /* store some driver data in an unused portion of the descriptor */
  72. union {
  73. uint64_t user1;
  74. uint64_t tx_cnt;
  75. };
  76. uint64_t user2;
  77. };
  78. struct ioat_fill_descriptor {
  79. uint32_t size;
  80. union {
  81. uint32_t ctl;
  82. struct {
  83. unsigned int int_en:1;
  84. unsigned int rsvd:1;
  85. unsigned int dest_snoop_dis:1;
  86. unsigned int compl_write:1;
  87. unsigned int fence:1;
  88. unsigned int rsvd2:2;
  89. unsigned int dest_brk:1;
  90. unsigned int bundle:1;
  91. unsigned int rsvd4:15;
  92. #define IOAT_OP_FILL 0x01
  93. unsigned int op:8;
  94. } ctl_f;
  95. };
  96. uint64_t src_data;
  97. uint64_t dst_addr;
  98. uint64_t next;
  99. uint64_t rsv1;
  100. uint64_t next_dst_addr;
  101. uint64_t user1;
  102. uint64_t user2;
  103. };
  104. struct ioat_xor_descriptor {
  105. uint32_t size;
  106. union {
  107. uint32_t ctl;
  108. struct {
  109. unsigned int int_en:1;
  110. unsigned int src_snoop_dis:1;
  111. unsigned int dest_snoop_dis:1;
  112. unsigned int compl_write:1;
  113. unsigned int fence:1;
  114. unsigned int src_cnt:3;
  115. unsigned int bundle:1;
  116. unsigned int dest_dca:1;
  117. unsigned int hint:1;
  118. unsigned int rsvd:13;
  119. #define IOAT_OP_XOR 0x87
  120. #define IOAT_OP_XOR_VAL 0x88
  121. unsigned int op:8;
  122. } ctl_f;
  123. };
  124. uint64_t src_addr;
  125. uint64_t dst_addr;
  126. uint64_t next;
  127. uint64_t src_addr2;
  128. uint64_t src_addr3;
  129. uint64_t src_addr4;
  130. uint64_t src_addr5;
  131. };
  132. struct ioat_xor_ext_descriptor {
  133. uint64_t src_addr6;
  134. uint64_t src_addr7;
  135. uint64_t src_addr8;
  136. uint64_t next;
  137. uint64_t rsvd[4];
  138. };
  139. struct ioat_pq_descriptor {
  140. uint32_t size;
  141. union {
  142. uint32_t ctl;
  143. struct {
  144. unsigned int int_en:1;
  145. unsigned int src_snoop_dis:1;
  146. unsigned int dest_snoop_dis:1;
  147. unsigned int compl_write:1;
  148. unsigned int fence:1;
  149. unsigned int src_cnt:3;
  150. unsigned int bundle:1;
  151. unsigned int dest_dca:1;
  152. unsigned int hint:1;
  153. unsigned int p_disable:1;
  154. unsigned int q_disable:1;
  155. unsigned int rsvd:11;
  156. #define IOAT_OP_PQ 0x89
  157. #define IOAT_OP_PQ_VAL 0x8a
  158. unsigned int op:8;
  159. } ctl_f;
  160. };
  161. uint64_t src_addr;
  162. uint64_t p_addr;
  163. uint64_t next;
  164. uint64_t src_addr2;
  165. uint64_t src_addr3;
  166. uint8_t coef[8];
  167. uint64_t q_addr;
  168. };
  169. struct ioat_pq_ext_descriptor {
  170. uint64_t src_addr4;
  171. uint64_t src_addr5;
  172. uint64_t src_addr6;
  173. uint64_t next;
  174. uint64_t src_addr7;
  175. uint64_t src_addr8;
  176. uint64_t rsvd[2];
  177. };
  178. struct ioat_pq_update_descriptor {
  179. uint32_t size;
  180. union {
  181. uint32_t ctl;
  182. struct {
  183. unsigned int int_en:1;
  184. unsigned int src_snoop_dis:1;
  185. unsigned int dest_snoop_dis:1;
  186. unsigned int compl_write:1;
  187. unsigned int fence:1;
  188. unsigned int src_cnt:3;
  189. unsigned int bundle:1;
  190. unsigned int dest_dca:1;
  191. unsigned int hint:1;
  192. unsigned int p_disable:1;
  193. unsigned int q_disable:1;
  194. unsigned int rsvd:3;
  195. unsigned int coef:8;
  196. #define IOAT_OP_PQ_UP 0x8b
  197. unsigned int op:8;
  198. } ctl_f;
  199. };
  200. uint64_t src_addr;
  201. uint64_t p_addr;
  202. uint64_t next;
  203. uint64_t src_addr2;
  204. uint64_t p_src;
  205. uint64_t q_src;
  206. uint64_t q_addr;
  207. };
  208. struct ioat_raw_descriptor {
  209. uint64_t field[8];
  210. };
  211. #endif