hfi1_user.h 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439
  1. /*
  2. *
  3. * This file is provided under a dual BSD/GPLv2 license. When using or
  4. * redistributing this file, you may do so under either license.
  5. *
  6. * GPL LICENSE SUMMARY
  7. *
  8. * Copyright(c) 2015 Intel Corporation.
  9. *
  10. * This program is free software; you can redistribute it and/or modify
  11. * it under the terms of version 2 of the GNU General Public License as
  12. * published by the Free Software Foundation.
  13. *
  14. * This program is distributed in the hope that it will be useful, but
  15. * WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  17. * General Public License for more details.
  18. *
  19. * BSD LICENSE
  20. *
  21. * Copyright(c) 2015 Intel Corporation.
  22. *
  23. * Redistribution and use in source and binary forms, with or without
  24. * modification, are permitted provided that the following conditions
  25. * are met:
  26. *
  27. * - Redistributions of source code must retain the above copyright
  28. * notice, this list of conditions and the following disclaimer.
  29. * - Redistributions in binary form must reproduce the above copyright
  30. * notice, this list of conditions and the following disclaimer in
  31. * the documentation and/or other materials provided with the
  32. * distribution.
  33. * - Neither the name of Intel Corporation nor the names of its
  34. * contributors may be used to endorse or promote products derived
  35. * from this software without specific prior written permission.
  36. *
  37. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  38. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  39. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  40. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  41. * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  42. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  43. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  44. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  45. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  46. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  47. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  48. *
  49. */
  50. /*
  51. * This file contains defines, structures, etc. that are used
  52. * to communicate between kernel and user code.
  53. */
  54. #ifndef _LINUX__HFI1_USER_H
  55. #define _LINUX__HFI1_USER_H
  56. #include <linux/types.h>
  57. /*
  58. * This version number is given to the driver by the user code during
  59. * initialization in the spu_userversion field of hfi1_user_info, so
  60. * the driver can check for compatibility with user code.
  61. *
  62. * The major version changes when data structures change in an incompatible
  63. * way. The driver must be the same for initialization to succeed.
  64. */
  65. #define HFI1_USER_SWMAJOR 6
  66. /*
  67. * Minor version differences are always compatible
  68. * a within a major version, however if user software is larger
  69. * than driver software, some new features and/or structure fields
  70. * may not be implemented; the user code must deal with this if it
  71. * cares, or it must abort after initialization reports the difference.
  72. */
  73. #define HFI1_USER_SWMINOR 2
  74. /*
  75. * We will encode the major/minor inside a single 32bit version number.
  76. */
  77. #define HFI1_SWMAJOR_SHIFT 16
  78. /*
  79. * Set of HW and driver capability/feature bits.
  80. * These bit values are used to configure enabled/disabled HW and
  81. * driver features. The same set of bits are communicated to user
  82. * space.
  83. */
  84. #define HFI1_CAP_DMA_RTAIL (1UL << 0) /* Use DMA'ed RTail value */
  85. #define HFI1_CAP_SDMA (1UL << 1) /* Enable SDMA support */
  86. #define HFI1_CAP_SDMA_AHG (1UL << 2) /* Enable SDMA AHG support */
  87. #define HFI1_CAP_EXTENDED_PSN (1UL << 3) /* Enable Extended PSN support */
  88. #define HFI1_CAP_HDRSUPP (1UL << 4) /* Enable Header Suppression */
  89. /* 1UL << 5 unused */
  90. #define HFI1_CAP_USE_SDMA_HEAD (1UL << 6) /* DMA Hdr Q tail vs. use CSR */
  91. #define HFI1_CAP_MULTI_PKT_EGR (1UL << 7) /* Enable multi-packet Egr buffs*/
  92. #define HFI1_CAP_NODROP_RHQ_FULL (1UL << 8) /* Don't drop on Hdr Q full */
  93. #define HFI1_CAP_NODROP_EGR_FULL (1UL << 9) /* Don't drop on EGR buffs full */
  94. #define HFI1_CAP_TID_UNMAP (1UL << 10) /* Disable Expected TID caching */
  95. #define HFI1_CAP_PRINT_UNIMPL (1UL << 11) /* Show for unimplemented feats */
  96. #define HFI1_CAP_ALLOW_PERM_JKEY (1UL << 12) /* Allow use of permissive JKEY */
  97. #define HFI1_CAP_NO_INTEGRITY (1UL << 13) /* Enable ctxt integrity checks */
  98. #define HFI1_CAP_PKEY_CHECK (1UL << 14) /* Enable ctxt PKey checking */
  99. #define HFI1_CAP_STATIC_RATE_CTRL (1UL << 15) /* Allow PBC.StaticRateControl */
  100. /* 1UL << 16 unused */
  101. #define HFI1_CAP_SDMA_HEAD_CHECK (1UL << 17) /* SDMA head checking */
  102. #define HFI1_CAP_EARLY_CREDIT_RETURN (1UL << 18) /* early credit return */
  103. #define HFI1_RCVHDR_ENTSIZE_2 (1UL << 0)
  104. #define HFI1_RCVHDR_ENTSIZE_16 (1UL << 1)
  105. #define HFI1_RCVDHR_ENTSIZE_32 (1UL << 2)
  106. /* User commands. */
  107. #define HFI1_CMD_ASSIGN_CTXT 1 /* allocate HFI and context */
  108. #define HFI1_CMD_CTXT_INFO 2 /* find out what resources we got */
  109. #define HFI1_CMD_USER_INFO 3 /* set up userspace */
  110. #define HFI1_CMD_TID_UPDATE 4 /* update expected TID entries */
  111. #define HFI1_CMD_TID_FREE 5 /* free expected TID entries */
  112. #define HFI1_CMD_CREDIT_UPD 6 /* force an update of PIO credit */
  113. #define HFI1_CMD_RECV_CTRL 8 /* control receipt of packets */
  114. #define HFI1_CMD_POLL_TYPE 9 /* set the kind of polling we want */
  115. #define HFI1_CMD_ACK_EVENT 10 /* ack & clear user status bits */
  116. #define HFI1_CMD_SET_PKEY 11 /* set context's pkey */
  117. #define HFI1_CMD_CTXT_RESET 12 /* reset context's HW send context */
  118. #define HFI1_CMD_TID_INVAL_READ 13 /* read TID cache invalidations */
  119. #define HFI1_CMD_GET_VERS 14 /* get the version of the user cdev */
  120. /*
  121. * User IOCTLs can not go above 128 if they do then see common.h and change the
  122. * base for the snoop ioctl
  123. */
  124. #define IB_IOCTL_MAGIC 0x1b /* See Documentation/ioctl/ioctl-number.txt */
  125. /*
  126. * Make the ioctls occupy the last 0xf0-0xff portion of the IB range
  127. */
  128. #define __NUM(cmd) (HFI1_CMD_##cmd + 0xe0)
  129. struct hfi1_cmd;
  130. #define HFI1_IOCTL_ASSIGN_CTXT \
  131. _IOWR(IB_IOCTL_MAGIC, __NUM(ASSIGN_CTXT), struct hfi1_user_info)
  132. #define HFI1_IOCTL_CTXT_INFO \
  133. _IOW(IB_IOCTL_MAGIC, __NUM(CTXT_INFO), struct hfi1_ctxt_info)
  134. #define HFI1_IOCTL_USER_INFO \
  135. _IOW(IB_IOCTL_MAGIC, __NUM(USER_INFO), struct hfi1_base_info)
  136. #define HFI1_IOCTL_TID_UPDATE \
  137. _IOWR(IB_IOCTL_MAGIC, __NUM(TID_UPDATE), struct hfi1_tid_info)
  138. #define HFI1_IOCTL_TID_FREE \
  139. _IOWR(IB_IOCTL_MAGIC, __NUM(TID_FREE), struct hfi1_tid_info)
  140. #define HFI1_IOCTL_CREDIT_UPD \
  141. _IO(IB_IOCTL_MAGIC, __NUM(CREDIT_UPD))
  142. #define HFI1_IOCTL_RECV_CTRL \
  143. _IOW(IB_IOCTL_MAGIC, __NUM(RECV_CTRL), int)
  144. #define HFI1_IOCTL_POLL_TYPE \
  145. _IOW(IB_IOCTL_MAGIC, __NUM(POLL_TYPE), int)
  146. #define HFI1_IOCTL_ACK_EVENT \
  147. _IOW(IB_IOCTL_MAGIC, __NUM(ACK_EVENT), unsigned long)
  148. #define HFI1_IOCTL_SET_PKEY \
  149. _IOW(IB_IOCTL_MAGIC, __NUM(SET_PKEY), __u16)
  150. #define HFI1_IOCTL_CTXT_RESET \
  151. _IO(IB_IOCTL_MAGIC, __NUM(CTXT_RESET))
  152. #define HFI1_IOCTL_TID_INVAL_READ \
  153. _IOWR(IB_IOCTL_MAGIC, __NUM(TID_INVAL_READ), struct hfi1_tid_info)
  154. #define HFI1_IOCTL_GET_VERS \
  155. _IOR(IB_IOCTL_MAGIC, __NUM(GET_VERS), int)
  156. #define _HFI1_EVENT_FROZEN_BIT 0
  157. #define _HFI1_EVENT_LINKDOWN_BIT 1
  158. #define _HFI1_EVENT_LID_CHANGE_BIT 2
  159. #define _HFI1_EVENT_LMC_CHANGE_BIT 3
  160. #define _HFI1_EVENT_SL2VL_CHANGE_BIT 4
  161. #define _HFI1_EVENT_TID_MMU_NOTIFY_BIT 5
  162. #define _HFI1_MAX_EVENT_BIT _HFI1_EVENT_TID_MMU_NOTIFY_BIT
  163. #define HFI1_EVENT_FROZEN (1UL << _HFI1_EVENT_FROZEN_BIT)
  164. #define HFI1_EVENT_LINKDOWN (1UL << _HFI1_EVENT_LINKDOWN_BIT)
  165. #define HFI1_EVENT_LID_CHANGE (1UL << _HFI1_EVENT_LID_CHANGE_BIT)
  166. #define HFI1_EVENT_LMC_CHANGE (1UL << _HFI1_EVENT_LMC_CHANGE_BIT)
  167. #define HFI1_EVENT_SL2VL_CHANGE (1UL << _HFI1_EVENT_SL2VL_CHANGE_BIT)
  168. #define HFI1_EVENT_TID_MMU_NOTIFY (1UL << _HFI1_EVENT_TID_MMU_NOTIFY_BIT)
  169. /*
  170. * These are the status bits readable (in ASCII form, 64bit value)
  171. * from the "status" sysfs file. For binary compatibility, values
  172. * must remain as is; removed states can be reused for different
  173. * purposes.
  174. */
  175. #define HFI1_STATUS_INITTED 0x1 /* basic initialization done */
  176. /* Chip has been found and initialized */
  177. #define HFI1_STATUS_CHIP_PRESENT 0x20
  178. /* IB link is at ACTIVE, usable for data traffic */
  179. #define HFI1_STATUS_IB_READY 0x40
  180. /* link is configured, LID, MTU, etc. have been set */
  181. #define HFI1_STATUS_IB_CONF 0x80
  182. /* A Fatal hardware error has occurred. */
  183. #define HFI1_STATUS_HWERROR 0x200
  184. /*
  185. * Number of supported shared contexts.
  186. * This is the maximum number of software contexts that can share
  187. * a hardware send/receive context.
  188. */
  189. #define HFI1_MAX_SHARED_CTXTS 8
  190. /*
  191. * Poll types
  192. */
  193. #define HFI1_POLL_TYPE_ANYRCV 0x0
  194. #define HFI1_POLL_TYPE_URGENT 0x1
  195. /*
  196. * This structure is passed to the driver to tell it where
  197. * user code buffers are, sizes, etc. The offsets and sizes of the
  198. * fields must remain unchanged, for binary compatibility. It can
  199. * be extended, if userversion is changed so user code can tell, if needed
  200. */
  201. struct hfi1_user_info {
  202. /*
  203. * version of user software, to detect compatibility issues.
  204. * Should be set to HFI1_USER_SWVERSION.
  205. */
  206. __u32 userversion;
  207. __u32 pad;
  208. /*
  209. * If two or more processes wish to share a context, each process
  210. * must set the subcontext_cnt and subcontext_id to the same
  211. * values. The only restriction on the subcontext_id is that
  212. * it be unique for a given node.
  213. */
  214. __u16 subctxt_cnt;
  215. __u16 subctxt_id;
  216. /* 128bit UUID passed in by PSM. */
  217. __u8 uuid[16];
  218. };
  219. struct hfi1_ctxt_info {
  220. __u64 runtime_flags; /* chip/drv runtime flags (HFI1_CAP_*) */
  221. __u32 rcvegr_size; /* size of each eager buffer */
  222. __u16 num_active; /* number of active units */
  223. __u16 unit; /* unit (chip) assigned to caller */
  224. __u16 ctxt; /* ctxt on unit assigned to caller */
  225. __u16 subctxt; /* subctxt on unit assigned to caller */
  226. __u16 rcvtids; /* number of Rcv TIDs for this context */
  227. __u16 credits; /* number of PIO credits for this context */
  228. __u16 numa_node; /* NUMA node of the assigned device */
  229. __u16 rec_cpu; /* cpu # for affinity (0xffff if none) */
  230. __u16 send_ctxt; /* send context in use by this user context */
  231. __u16 egrtids; /* number of RcvArray entries for Eager Rcvs */
  232. __u16 rcvhdrq_cnt; /* number of RcvHdrQ entries */
  233. __u16 rcvhdrq_entsize; /* size (in bytes) for each RcvHdrQ entry */
  234. __u16 sdma_ring_size; /* number of entries in SDMA request ring */
  235. };
  236. struct hfi1_tid_info {
  237. /* virtual address of first page in transfer */
  238. __u64 vaddr;
  239. /* pointer to tid array. this array is big enough */
  240. __u64 tidlist;
  241. /* number of tids programmed by this request */
  242. __u32 tidcnt;
  243. /* length of transfer buffer programmed by this request */
  244. __u32 length;
  245. };
  246. enum hfi1_sdma_comp_state {
  247. FREE = 0,
  248. QUEUED,
  249. COMPLETE,
  250. ERROR
  251. };
  252. /*
  253. * SDMA completion ring entry
  254. */
  255. struct hfi1_sdma_comp_entry {
  256. __u32 status;
  257. __u32 errcode;
  258. };
  259. /*
  260. * Device status and notifications from driver to user-space.
  261. */
  262. struct hfi1_status {
  263. __u64 dev; /* device/hw status bits */
  264. __u64 port; /* port state and status bits */
  265. char freezemsg[0];
  266. };
  267. /*
  268. * This structure is returned by the driver immediately after
  269. * open to get implementation-specific info, and info specific to this
  270. * instance.
  271. *
  272. * This struct must have explicit pad fields where type sizes
  273. * may result in different alignments between 32 and 64 bit
  274. * programs, since the 64 bit * bit kernel requires the user code
  275. * to have matching offsets
  276. */
  277. struct hfi1_base_info {
  278. /* version of hardware, for feature checking. */
  279. __u32 hw_version;
  280. /* version of software, for feature checking. */
  281. __u32 sw_version;
  282. /* Job key */
  283. __u16 jkey;
  284. __u16 padding1;
  285. /*
  286. * The special QP (queue pair) value that identifies PSM
  287. * protocol packet from standard IB packets.
  288. */
  289. __u32 bthqp;
  290. /* PIO credit return address, */
  291. __u64 sc_credits_addr;
  292. /*
  293. * Base address of write-only pio buffers for this process.
  294. * Each buffer has sendpio_credits*64 bytes.
  295. */
  296. __u64 pio_bufbase_sop;
  297. /*
  298. * Base address of write-only pio buffers for this process.
  299. * Each buffer has sendpio_credits*64 bytes.
  300. */
  301. __u64 pio_bufbase;
  302. /* address where receive buffer queue is mapped into */
  303. __u64 rcvhdr_bufbase;
  304. /* base address of Eager receive buffers. */
  305. __u64 rcvegr_bufbase;
  306. /* base address of SDMA completion ring */
  307. __u64 sdma_comp_bufbase;
  308. /*
  309. * User register base for init code, not to be used directly by
  310. * protocol or applications. Always maps real chip register space.
  311. * the register addresses are:
  312. * ur_rcvhdrhead, ur_rcvhdrtail, ur_rcvegrhead, ur_rcvegrtail,
  313. * ur_rcvtidflow
  314. */
  315. __u64 user_regbase;
  316. /* notification events */
  317. __u64 events_bufbase;
  318. /* status page */
  319. __u64 status_bufbase;
  320. /* rcvhdrtail update */
  321. __u64 rcvhdrtail_base;
  322. /*
  323. * shared memory pages for subctxts if ctxt is shared; these cover
  324. * all the processes in the group sharing a single context.
  325. * all have enough space for the num_subcontexts value on this job.
  326. */
  327. __u64 subctxt_uregbase;
  328. __u64 subctxt_rcvegrbuf;
  329. __u64 subctxt_rcvhdrbuf;
  330. };
  331. enum sdma_req_opcode {
  332. EXPECTED = 0,
  333. EAGER
  334. };
  335. #define HFI1_SDMA_REQ_VERSION_MASK 0xF
  336. #define HFI1_SDMA_REQ_VERSION_SHIFT 0x0
  337. #define HFI1_SDMA_REQ_OPCODE_MASK 0xF
  338. #define HFI1_SDMA_REQ_OPCODE_SHIFT 0x4
  339. #define HFI1_SDMA_REQ_IOVCNT_MASK 0xFF
  340. #define HFI1_SDMA_REQ_IOVCNT_SHIFT 0x8
  341. struct sdma_req_info {
  342. /*
  343. * bits 0-3 - version (currently unused)
  344. * bits 4-7 - opcode (enum sdma_req_opcode)
  345. * bits 8-15 - io vector count
  346. */
  347. __u16 ctrl;
  348. /*
  349. * Number of fragments contained in this request.
  350. * User-space has already computed how many
  351. * fragment-sized packet the user buffer will be
  352. * split into.
  353. */
  354. __u16 npkts;
  355. /*
  356. * Size of each fragment the user buffer will be
  357. * split into.
  358. */
  359. __u16 fragsize;
  360. /*
  361. * Index of the slot in the SDMA completion ring
  362. * this request should be using. User-space is
  363. * in charge of managing its own ring.
  364. */
  365. __u16 comp_idx;
  366. } __attribute__((packed));
  367. /*
  368. * SW KDETH header.
  369. * swdata is SW defined portion.
  370. */
  371. struct hfi1_kdeth_header {
  372. __le32 ver_tid_offset;
  373. __le16 jkey;
  374. __le16 hcrc;
  375. __le32 swdata[7];
  376. } __attribute__((packed));
  377. /*
  378. * Structure describing the headers that User space uses. The
  379. * structure above is a subset of this one.
  380. */
  381. struct hfi1_pkt_header {
  382. __le16 pbc[4];
  383. __be16 lrh[4];
  384. __be32 bth[3];
  385. struct hfi1_kdeth_header kdeth;
  386. } __attribute__((packed));
  387. /*
  388. * The list of usermode accessible registers.
  389. */
  390. enum hfi1_ureg {
  391. /* (RO) DMA RcvHdr to be used next. */
  392. ur_rcvhdrtail = 0,
  393. /* (RW) RcvHdr entry to be processed next by host. */
  394. ur_rcvhdrhead = 1,
  395. /* (RO) Index of next Eager index to use. */
  396. ur_rcvegrindextail = 2,
  397. /* (RW) Eager TID to be processed next */
  398. ur_rcvegrindexhead = 3,
  399. /* (RO) Receive Eager Offset Tail */
  400. ur_rcvegroffsettail = 4,
  401. /* For internal use only; max register number. */
  402. ur_maxreg,
  403. /* (RW) Receive TID flow table */
  404. ur_rcvtidflowtable = 256
  405. };
  406. #endif /* _LINIUX__HFI1_USER_H */