ips_common.h 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263
  1. #ifndef IPS_COMMON_H
  2. #define IPS_COMMON_H
  3. /*
  4. * Copyright (c) 2003, 2004, 2005, 2006 PathScale, Inc. All rights reserved.
  5. *
  6. * This software is available to you under a choice of one of two
  7. * licenses. You may choose to be licensed under the terms of the GNU
  8. * General Public License (GPL) Version 2, available from the file
  9. * COPYING in the main directory of this source tree, or the
  10. * OpenIB.org BSD license below:
  11. *
  12. * Redistribution and use in source and binary forms, with or
  13. * without modification, are permitted provided that the following
  14. * conditions are met:
  15. *
  16. * - Redistributions of source code must retain the above
  17. * copyright notice, this list of conditions and the following
  18. * disclaimer.
  19. *
  20. * - Redistributions in binary form must reproduce the above
  21. * copyright notice, this list of conditions and the following
  22. * disclaimer in the documentation and/or other materials
  23. * provided with the distribution.
  24. *
  25. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  26. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  27. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  28. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
  29. * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  30. * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  31. * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  32. * SOFTWARE.
  33. */
  34. #include "ipath_common.h"
  35. struct ipath_header {
  36. /*
  37. * Version - 4 bits, Port - 4 bits, TID - 10 bits and Offset -
  38. * 14 bits before ECO change ~28 Dec 03. After that, Vers 4,
  39. * Port 3, TID 11, offset 14.
  40. */
  41. __le32 ver_port_tid_offset;
  42. __le16 chksum;
  43. __le16 pkt_flags;
  44. };
  45. struct ips_message_header {
  46. __be16 lrh[4];
  47. __be32 bth[3];
  48. /* fields below this point are in host byte order */
  49. struct ipath_header iph;
  50. __u8 sub_opcode;
  51. __u8 flags;
  52. __u16 src_rank;
  53. /* 24 bits. The upper 8 bit is available for other use */
  54. union {
  55. struct {
  56. unsigned ack_seq_num:24;
  57. unsigned port:4;
  58. unsigned unused:4;
  59. };
  60. __u32 ack_seq_num_org;
  61. };
  62. __u8 expected_tid_session_id;
  63. __u8 tinylen; /* to aid MPI */
  64. union {
  65. __u16 tag; /* to aid MPI */
  66. __u16 mqhdr; /* for PSM MQ */
  67. };
  68. union {
  69. __u32 mpi[4]; /* to aid MPI */
  70. __u32 data[4];
  71. __u64 mq[2]; /* for PSM MQ */
  72. struct {
  73. __u16 mtu;
  74. __u8 major_ver;
  75. __u8 minor_ver;
  76. __u32 not_used; //free
  77. __u32 run_id;
  78. __u32 client_ver;
  79. };
  80. };
  81. };
  82. struct ether_header {
  83. __be16 lrh[4];
  84. __be32 bth[3];
  85. struct ipath_header iph;
  86. __u8 sub_opcode;
  87. __u8 cmd;
  88. __be16 lid;
  89. __u16 mac[3];
  90. __u8 frag_num;
  91. __u8 seq_num;
  92. __le32 len;
  93. /* MUST be of word size due to PIO write requirements */
  94. __u32 csum;
  95. __le16 csum_offset;
  96. __le16 flags;
  97. __u16 first_2_bytes;
  98. __u8 unused[2]; /* currently unused */
  99. };
  100. /*
  101. * The PIO buffer used for sending infinipath messages must only be written
  102. * in 32-bit words, all the data must be written, and no writes can occur
  103. * after the last word is written (which transfers "ownership" of the buffer
  104. * to the chip and triggers the message to be sent).
  105. * Since the Linux sk_buff structure can be recursive, non-aligned, and
  106. * any number of bytes in each segment, we use the following structure
  107. * to keep information about the overall state of the copy operation.
  108. * This is used to save the information needed to store the checksum
  109. * in the right place before sending the last word to the hardware and
  110. * to buffer the last 0-3 bytes of non-word sized segments.
  111. */
  112. struct copy_data_s {
  113. struct ether_header *hdr;
  114. /* addr of PIO buf to write csum to */
  115. __u32 __iomem *csum_pio;
  116. __u32 __iomem *to; /* addr of PIO buf to write data to */
  117. __u32 device; /* which device to allocate PIO bufs from */
  118. __s32 error; /* set if there is an error. */
  119. __s32 extra; /* amount of data saved in u.buf below */
  120. __u32 len; /* total length to send in bytes */
  121. __u32 flen; /* frament length in words */
  122. __u32 csum; /* partial IP checksum */
  123. __u32 pos; /* position for partial checksum */
  124. __u32 offset; /* offset to where data currently starts */
  125. __s32 checksum_calc; /* set to 1 when csum has been calculated */
  126. struct sk_buff *skb;
  127. union {
  128. __u32 w;
  129. __u8 buf[4];
  130. } u;
  131. };
  132. /* IB - LRH header consts */
  133. #define IPS_LRH_GRH 0x0003 /* 1. word of IB LRH - next header: GRH */
  134. #define IPS_LRH_BTH 0x0002 /* 1. word of IB LRH - next header: BTH */
  135. #define IPS_OFFSET 0
  136. /*
  137. * defines the cut-off point between the header queue and eager/expected
  138. * TID queue
  139. */
  140. #define NUM_OF_EXTRA_WORDS_IN_HEADER_QUEUE \
  141. ((sizeof(struct ips_message_header) - \
  142. offsetof(struct ips_message_header, iph)) >> 2)
  143. /* OpCodes */
  144. #define OPCODE_IPS 0xC0
  145. #define OPCODE_ITH4X 0xC1
  146. /* OpCode 30 is use by stand-alone test programs */
  147. #define OPCODE_RAW_DATA 0xDE
  148. /* last OpCode (31) is reserved for test */
  149. #define OPCODE_TEST 0xDF
  150. /* sub OpCodes - ips */
  151. #define OPCODE_SEQ_DATA 0x01
  152. #define OPCODE_SEQ_CTRL 0x02
  153. #define OPCODE_SEQ_MQ_DATA 0x03
  154. #define OPCODE_SEQ_MQ_CTRL 0x04
  155. #define OPCODE_ACK 0x10
  156. #define OPCODE_NAK 0x11
  157. #define OPCODE_ERR_CHK 0x20
  158. #define OPCODE_ERR_CHK_PLS 0x21
  159. #define OPCODE_STARTUP 0x30
  160. #define OPCODE_STARTUP_ACK 0x31
  161. #define OPCODE_STARTUP_NAK 0x32
  162. #define OPCODE_STARTUP_EXT 0x34
  163. #define OPCODE_STARTUP_ACK_EXT 0x35
  164. #define OPCODE_STARTUP_NAK_EXT 0x36
  165. #define OPCODE_TIDS_RELEASE 0x40
  166. #define OPCODE_TIDS_RELEASE_CONFIRM 0x41
  167. #define OPCODE_CLOSE 0x50
  168. #define OPCODE_CLOSE_ACK 0x51
  169. /*
  170. * like OPCODE_CLOSE, but no complaint if other side has already closed.
  171. * Used when doing abort(), MPI_Abort(), etc.
  172. */
  173. #define OPCODE_ABORT 0x52
  174. /* sub OpCodes - ith4x */
  175. #define OPCODE_ENCAP 0x81
  176. #define OPCODE_LID_ARP 0x82
  177. /* Receive Header Queue: receive type (from infinipath) */
  178. #define RCVHQ_RCV_TYPE_EXPECTED 0
  179. #define RCVHQ_RCV_TYPE_EAGER 1
  180. #define RCVHQ_RCV_TYPE_NON_KD 2
  181. #define RCVHQ_RCV_TYPE_ERROR 3
  182. /* misc. */
  183. #define SIZE_OF_CRC 1
  184. #define EAGER_TID_ID INFINIPATH_I_TID_MASK
  185. #define IPS_DEFAULT_P_KEY 0xFFFF
  186. #define IPS_PERMISSIVE_LID 0xFFFF
  187. #define IPS_MULTICAST_LID_BASE 0xC000
  188. #define IPS_AETH_CREDIT_SHIFT 24
  189. #define IPS_AETH_CREDIT_MASK 0x1F
  190. #define IPS_AETH_CREDIT_INVAL 0x1F
  191. #define IPS_PSN_MASK 0xFFFFFF
  192. #define IPS_MSN_MASK 0xFFFFFF
  193. #define IPS_QPN_MASK 0xFFFFFF
  194. #define IPS_MULTICAST_QPN 0xFFFFFF
  195. /* functions for extracting fields from rcvhdrq entries */
  196. static inline __u32 ips_get_hdr_err_flags(const __le32 * rbuf)
  197. {
  198. return __le32_to_cpu(rbuf[1]);
  199. }
  200. static inline __u32 ips_get_index(const __le32 * rbuf)
  201. {
  202. return (__le32_to_cpu(rbuf[0]) >> INFINIPATH_RHF_EGRINDEX_SHIFT)
  203. & INFINIPATH_RHF_EGRINDEX_MASK;
  204. }
  205. static inline __u32 ips_get_rcv_type(const __le32 * rbuf)
  206. {
  207. return (__le32_to_cpu(rbuf[0]) >> INFINIPATH_RHF_RCVTYPE_SHIFT)
  208. & INFINIPATH_RHF_RCVTYPE_MASK;
  209. }
  210. static inline __u32 ips_get_length_in_bytes(const __le32 * rbuf)
  211. {
  212. return ((__le32_to_cpu(rbuf[0]) >> INFINIPATH_RHF_LENGTH_SHIFT)
  213. & INFINIPATH_RHF_LENGTH_MASK) << 2;
  214. }
  215. static inline void *ips_get_first_protocol_header(const __u32 * rbuf)
  216. {
  217. return (void *)&rbuf[2];
  218. }
  219. static inline struct ips_message_header *ips_get_ips_header(const __u32 *
  220. rbuf)
  221. {
  222. return (struct ips_message_header *)&rbuf[2];
  223. }
  224. static inline __u32 ips_get_ipath_ver(__le32 hdrword)
  225. {
  226. return (__le32_to_cpu(hdrword) >> INFINIPATH_I_VERS_SHIFT)
  227. & INFINIPATH_I_VERS_MASK;
  228. }
  229. #endif /* IPS_COMMON_H */