ib_verbs.h 43 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530
  1. /*
  2. * Copyright (c) 2004 Mellanox Technologies Ltd. All rights reserved.
  3. * Copyright (c) 2004 Infinicon Corporation. All rights reserved.
  4. * Copyright (c) 2004 Intel Corporation. All rights reserved.
  5. * Copyright (c) 2004 Topspin Corporation. All rights reserved.
  6. * Copyright (c) 2004 Voltaire Corporation. All rights reserved.
  7. * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
  8. * Copyright (c) 2005, 2006 Cisco Systems. All rights reserved.
  9. *
  10. * This software is available to you under a choice of one of two
  11. * licenses. You may choose to be licensed under the terms of the GNU
  12. * General Public License (GPL) Version 2, available from the file
  13. * COPYING in the main directory of this source tree, or the
  14. * OpenIB.org BSD license below:
  15. *
  16. * Redistribution and use in source and binary forms, with or
  17. * without modification, are permitted provided that the following
  18. * conditions are met:
  19. *
  20. * - Redistributions of source code must retain the above
  21. * copyright notice, this list of conditions and the following
  22. * disclaimer.
  23. *
  24. * - Redistributions in binary form must reproduce the above
  25. * copyright notice, this list of conditions and the following
  26. * disclaimer in the documentation and/or other materials
  27. * provided with the distribution.
  28. *
  29. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  30. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  31. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  32. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
  33. * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  34. * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  35. * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  36. * SOFTWARE.
  37. *
  38. * $Id: ib_verbs.h 1349 2004-12-16 21:09:43Z roland $
  39. */
  40. #if !defined(IB_VERBS_H)
  41. #define IB_VERBS_H
  42. #include <linux/types.h>
  43. #include <linux/device.h>
  44. #include <asm/atomic.h>
  45. #include <asm/scatterlist.h>
  46. #include <asm/uaccess.h>
  47. union ib_gid {
  48. u8 raw[16];
  49. struct {
  50. __be64 subnet_prefix;
  51. __be64 interface_id;
  52. } global;
  53. };
  54. enum ib_node_type {
  55. IB_NODE_CA = 1,
  56. IB_NODE_SWITCH,
  57. IB_NODE_ROUTER
  58. };
  59. enum ib_device_cap_flags {
  60. IB_DEVICE_RESIZE_MAX_WR = 1,
  61. IB_DEVICE_BAD_PKEY_CNTR = (1<<1),
  62. IB_DEVICE_BAD_QKEY_CNTR = (1<<2),
  63. IB_DEVICE_RAW_MULTI = (1<<3),
  64. IB_DEVICE_AUTO_PATH_MIG = (1<<4),
  65. IB_DEVICE_CHANGE_PHY_PORT = (1<<5),
  66. IB_DEVICE_UD_AV_PORT_ENFORCE = (1<<6),
  67. IB_DEVICE_CURR_QP_STATE_MOD = (1<<7),
  68. IB_DEVICE_SHUTDOWN_PORT = (1<<8),
  69. IB_DEVICE_INIT_TYPE = (1<<9),
  70. IB_DEVICE_PORT_ACTIVE_EVENT = (1<<10),
  71. IB_DEVICE_SYS_IMAGE_GUID = (1<<11),
  72. IB_DEVICE_RC_RNR_NAK_GEN = (1<<12),
  73. IB_DEVICE_SRQ_RESIZE = (1<<13),
  74. IB_DEVICE_N_NOTIFY_CQ = (1<<14),
  75. };
  76. enum ib_atomic_cap {
  77. IB_ATOMIC_NONE,
  78. IB_ATOMIC_HCA,
  79. IB_ATOMIC_GLOB
  80. };
  81. struct ib_device_attr {
  82. u64 fw_ver;
  83. __be64 sys_image_guid;
  84. u64 max_mr_size;
  85. u64 page_size_cap;
  86. u32 vendor_id;
  87. u32 vendor_part_id;
  88. u32 hw_ver;
  89. int max_qp;
  90. int max_qp_wr;
  91. int device_cap_flags;
  92. int max_sge;
  93. int max_sge_rd;
  94. int max_cq;
  95. int max_cqe;
  96. int max_mr;
  97. int max_pd;
  98. int max_qp_rd_atom;
  99. int max_ee_rd_atom;
  100. int max_res_rd_atom;
  101. int max_qp_init_rd_atom;
  102. int max_ee_init_rd_atom;
  103. enum ib_atomic_cap atomic_cap;
  104. int max_ee;
  105. int max_rdd;
  106. int max_mw;
  107. int max_raw_ipv6_qp;
  108. int max_raw_ethy_qp;
  109. int max_mcast_grp;
  110. int max_mcast_qp_attach;
  111. int max_total_mcast_qp_attach;
  112. int max_ah;
  113. int max_fmr;
  114. int max_map_per_fmr;
  115. int max_srq;
  116. int max_srq_wr;
  117. int max_srq_sge;
  118. u16 max_pkeys;
  119. u8 local_ca_ack_delay;
  120. };
  121. enum ib_mtu {
  122. IB_MTU_256 = 1,
  123. IB_MTU_512 = 2,
  124. IB_MTU_1024 = 3,
  125. IB_MTU_2048 = 4,
  126. IB_MTU_4096 = 5
  127. };
  128. static inline int ib_mtu_enum_to_int(enum ib_mtu mtu)
  129. {
  130. switch (mtu) {
  131. case IB_MTU_256: return 256;
  132. case IB_MTU_512: return 512;
  133. case IB_MTU_1024: return 1024;
  134. case IB_MTU_2048: return 2048;
  135. case IB_MTU_4096: return 4096;
  136. default: return -1;
  137. }
  138. }
  139. enum ib_port_state {
  140. IB_PORT_NOP = 0,
  141. IB_PORT_DOWN = 1,
  142. IB_PORT_INIT = 2,
  143. IB_PORT_ARMED = 3,
  144. IB_PORT_ACTIVE = 4,
  145. IB_PORT_ACTIVE_DEFER = 5
  146. };
  147. enum ib_port_cap_flags {
  148. IB_PORT_SM = 1 << 1,
  149. IB_PORT_NOTICE_SUP = 1 << 2,
  150. IB_PORT_TRAP_SUP = 1 << 3,
  151. IB_PORT_OPT_IPD_SUP = 1 << 4,
  152. IB_PORT_AUTO_MIGR_SUP = 1 << 5,
  153. IB_PORT_SL_MAP_SUP = 1 << 6,
  154. IB_PORT_MKEY_NVRAM = 1 << 7,
  155. IB_PORT_PKEY_NVRAM = 1 << 8,
  156. IB_PORT_LED_INFO_SUP = 1 << 9,
  157. IB_PORT_SM_DISABLED = 1 << 10,
  158. IB_PORT_SYS_IMAGE_GUID_SUP = 1 << 11,
  159. IB_PORT_PKEY_SW_EXT_PORT_TRAP_SUP = 1 << 12,
  160. IB_PORT_CM_SUP = 1 << 16,
  161. IB_PORT_SNMP_TUNNEL_SUP = 1 << 17,
  162. IB_PORT_REINIT_SUP = 1 << 18,
  163. IB_PORT_DEVICE_MGMT_SUP = 1 << 19,
  164. IB_PORT_VENDOR_CLASS_SUP = 1 << 20,
  165. IB_PORT_DR_NOTICE_SUP = 1 << 21,
  166. IB_PORT_CAP_MASK_NOTICE_SUP = 1 << 22,
  167. IB_PORT_BOOT_MGMT_SUP = 1 << 23,
  168. IB_PORT_LINK_LATENCY_SUP = 1 << 24,
  169. IB_PORT_CLIENT_REG_SUP = 1 << 25
  170. };
  171. enum ib_port_width {
  172. IB_WIDTH_1X = 1,
  173. IB_WIDTH_4X = 2,
  174. IB_WIDTH_8X = 4,
  175. IB_WIDTH_12X = 8
  176. };
  177. static inline int ib_width_enum_to_int(enum ib_port_width width)
  178. {
  179. switch (width) {
  180. case IB_WIDTH_1X: return 1;
  181. case IB_WIDTH_4X: return 4;
  182. case IB_WIDTH_8X: return 8;
  183. case IB_WIDTH_12X: return 12;
  184. default: return -1;
  185. }
  186. }
  187. struct ib_port_attr {
  188. enum ib_port_state state;
  189. enum ib_mtu max_mtu;
  190. enum ib_mtu active_mtu;
  191. int gid_tbl_len;
  192. u32 port_cap_flags;
  193. u32 max_msg_sz;
  194. u32 bad_pkey_cntr;
  195. u32 qkey_viol_cntr;
  196. u16 pkey_tbl_len;
  197. u16 lid;
  198. u16 sm_lid;
  199. u8 lmc;
  200. u8 max_vl_num;
  201. u8 sm_sl;
  202. u8 subnet_timeout;
  203. u8 init_type_reply;
  204. u8 active_width;
  205. u8 active_speed;
  206. u8 phys_state;
  207. };
  208. enum ib_device_modify_flags {
  209. IB_DEVICE_MODIFY_SYS_IMAGE_GUID = 1 << 0,
  210. IB_DEVICE_MODIFY_NODE_DESC = 1 << 1
  211. };
  212. struct ib_device_modify {
  213. u64 sys_image_guid;
  214. char node_desc[64];
  215. };
  216. enum ib_port_modify_flags {
  217. IB_PORT_SHUTDOWN = 1,
  218. IB_PORT_INIT_TYPE = (1<<2),
  219. IB_PORT_RESET_QKEY_CNTR = (1<<3)
  220. };
  221. struct ib_port_modify {
  222. u32 set_port_cap_mask;
  223. u32 clr_port_cap_mask;
  224. u8 init_type;
  225. };
  226. enum ib_event_type {
  227. IB_EVENT_CQ_ERR,
  228. IB_EVENT_QP_FATAL,
  229. IB_EVENT_QP_REQ_ERR,
  230. IB_EVENT_QP_ACCESS_ERR,
  231. IB_EVENT_COMM_EST,
  232. IB_EVENT_SQ_DRAINED,
  233. IB_EVENT_PATH_MIG,
  234. IB_EVENT_PATH_MIG_ERR,
  235. IB_EVENT_DEVICE_FATAL,
  236. IB_EVENT_PORT_ACTIVE,
  237. IB_EVENT_PORT_ERR,
  238. IB_EVENT_LID_CHANGE,
  239. IB_EVENT_PKEY_CHANGE,
  240. IB_EVENT_SM_CHANGE,
  241. IB_EVENT_SRQ_ERR,
  242. IB_EVENT_SRQ_LIMIT_REACHED,
  243. IB_EVENT_QP_LAST_WQE_REACHED,
  244. IB_EVENT_CLIENT_REREGISTER
  245. };
  246. struct ib_event {
  247. struct ib_device *device;
  248. union {
  249. struct ib_cq *cq;
  250. struct ib_qp *qp;
  251. struct ib_srq *srq;
  252. u8 port_num;
  253. } element;
  254. enum ib_event_type event;
  255. };
  256. struct ib_event_handler {
  257. struct ib_device *device;
  258. void (*handler)(struct ib_event_handler *, struct ib_event *);
  259. struct list_head list;
  260. };
  261. #define INIT_IB_EVENT_HANDLER(_ptr, _device, _handler) \
  262. do { \
  263. (_ptr)->device = _device; \
  264. (_ptr)->handler = _handler; \
  265. INIT_LIST_HEAD(&(_ptr)->list); \
  266. } while (0)
  267. struct ib_global_route {
  268. union ib_gid dgid;
  269. u32 flow_label;
  270. u8 sgid_index;
  271. u8 hop_limit;
  272. u8 traffic_class;
  273. };
  274. struct ib_grh {
  275. __be32 version_tclass_flow;
  276. __be16 paylen;
  277. u8 next_hdr;
  278. u8 hop_limit;
  279. union ib_gid sgid;
  280. union ib_gid dgid;
  281. };
  282. enum {
  283. IB_MULTICAST_QPN = 0xffffff
  284. };
  285. #define IB_LID_PERMISSIVE __constant_htons(0xFFFF)
  286. enum ib_ah_flags {
  287. IB_AH_GRH = 1
  288. };
  289. enum ib_rate {
  290. IB_RATE_PORT_CURRENT = 0,
  291. IB_RATE_2_5_GBPS = 2,
  292. IB_RATE_5_GBPS = 5,
  293. IB_RATE_10_GBPS = 3,
  294. IB_RATE_20_GBPS = 6,
  295. IB_RATE_30_GBPS = 4,
  296. IB_RATE_40_GBPS = 7,
  297. IB_RATE_60_GBPS = 8,
  298. IB_RATE_80_GBPS = 9,
  299. IB_RATE_120_GBPS = 10
  300. };
  301. /**
  302. * ib_rate_to_mult - Convert the IB rate enum to a multiple of the
  303. * base rate of 2.5 Gbit/sec. For example, IB_RATE_5_GBPS will be
  304. * converted to 2, since 5 Gbit/sec is 2 * 2.5 Gbit/sec.
  305. * @rate: rate to convert.
  306. */
  307. int ib_rate_to_mult(enum ib_rate rate) __attribute_const__;
  308. /**
  309. * mult_to_ib_rate - Convert a multiple of 2.5 Gbit/sec to an IB rate
  310. * enum.
  311. * @mult: multiple to convert.
  312. */
  313. enum ib_rate mult_to_ib_rate(int mult) __attribute_const__;
  314. struct ib_ah_attr {
  315. struct ib_global_route grh;
  316. u16 dlid;
  317. u8 sl;
  318. u8 src_path_bits;
  319. u8 static_rate;
  320. u8 ah_flags;
  321. u8 port_num;
  322. };
  323. enum ib_wc_status {
  324. IB_WC_SUCCESS,
  325. IB_WC_LOC_LEN_ERR,
  326. IB_WC_LOC_QP_OP_ERR,
  327. IB_WC_LOC_EEC_OP_ERR,
  328. IB_WC_LOC_PROT_ERR,
  329. IB_WC_WR_FLUSH_ERR,
  330. IB_WC_MW_BIND_ERR,
  331. IB_WC_BAD_RESP_ERR,
  332. IB_WC_LOC_ACCESS_ERR,
  333. IB_WC_REM_INV_REQ_ERR,
  334. IB_WC_REM_ACCESS_ERR,
  335. IB_WC_REM_OP_ERR,
  336. IB_WC_RETRY_EXC_ERR,
  337. IB_WC_RNR_RETRY_EXC_ERR,
  338. IB_WC_LOC_RDD_VIOL_ERR,
  339. IB_WC_REM_INV_RD_REQ_ERR,
  340. IB_WC_REM_ABORT_ERR,
  341. IB_WC_INV_EECN_ERR,
  342. IB_WC_INV_EEC_STATE_ERR,
  343. IB_WC_FATAL_ERR,
  344. IB_WC_RESP_TIMEOUT_ERR,
  345. IB_WC_GENERAL_ERR
  346. };
  347. enum ib_wc_opcode {
  348. IB_WC_SEND,
  349. IB_WC_RDMA_WRITE,
  350. IB_WC_RDMA_READ,
  351. IB_WC_COMP_SWAP,
  352. IB_WC_FETCH_ADD,
  353. IB_WC_BIND_MW,
  354. /*
  355. * Set value of IB_WC_RECV so consumers can test if a completion is a
  356. * receive by testing (opcode & IB_WC_RECV).
  357. */
  358. IB_WC_RECV = 1 << 7,
  359. IB_WC_RECV_RDMA_WITH_IMM
  360. };
  361. enum ib_wc_flags {
  362. IB_WC_GRH = 1,
  363. IB_WC_WITH_IMM = (1<<1)
  364. };
  365. struct ib_wc {
  366. u64 wr_id;
  367. enum ib_wc_status status;
  368. enum ib_wc_opcode opcode;
  369. u32 vendor_err;
  370. u32 byte_len;
  371. __be32 imm_data;
  372. u32 qp_num;
  373. u32 src_qp;
  374. int wc_flags;
  375. u16 pkey_index;
  376. u16 slid;
  377. u8 sl;
  378. u8 dlid_path_bits;
  379. u8 port_num; /* valid only for DR SMPs on switches */
  380. };
  381. enum ib_cq_notify {
  382. IB_CQ_SOLICITED,
  383. IB_CQ_NEXT_COMP
  384. };
  385. enum ib_srq_attr_mask {
  386. IB_SRQ_MAX_WR = 1 << 0,
  387. IB_SRQ_LIMIT = 1 << 1,
  388. };
  389. struct ib_srq_attr {
  390. u32 max_wr;
  391. u32 max_sge;
  392. u32 srq_limit;
  393. };
  394. struct ib_srq_init_attr {
  395. void (*event_handler)(struct ib_event *, void *);
  396. void *srq_context;
  397. struct ib_srq_attr attr;
  398. };
  399. struct ib_qp_cap {
  400. u32 max_send_wr;
  401. u32 max_recv_wr;
  402. u32 max_send_sge;
  403. u32 max_recv_sge;
  404. u32 max_inline_data;
  405. };
  406. enum ib_sig_type {
  407. IB_SIGNAL_ALL_WR,
  408. IB_SIGNAL_REQ_WR
  409. };
  410. enum ib_qp_type {
  411. /*
  412. * IB_QPT_SMI and IB_QPT_GSI have to be the first two entries
  413. * here (and in that order) since the MAD layer uses them as
  414. * indices into a 2-entry table.
  415. */
  416. IB_QPT_SMI,
  417. IB_QPT_GSI,
  418. IB_QPT_RC,
  419. IB_QPT_UC,
  420. IB_QPT_UD,
  421. IB_QPT_RAW_IPV6,
  422. IB_QPT_RAW_ETY
  423. };
  424. struct ib_qp_init_attr {
  425. void (*event_handler)(struct ib_event *, void *);
  426. void *qp_context;
  427. struct ib_cq *send_cq;
  428. struct ib_cq *recv_cq;
  429. struct ib_srq *srq;
  430. struct ib_qp_cap cap;
  431. enum ib_sig_type sq_sig_type;
  432. enum ib_qp_type qp_type;
  433. u8 port_num; /* special QP types only */
  434. };
  435. enum ib_rnr_timeout {
  436. IB_RNR_TIMER_655_36 = 0,
  437. IB_RNR_TIMER_000_01 = 1,
  438. IB_RNR_TIMER_000_02 = 2,
  439. IB_RNR_TIMER_000_03 = 3,
  440. IB_RNR_TIMER_000_04 = 4,
  441. IB_RNR_TIMER_000_06 = 5,
  442. IB_RNR_TIMER_000_08 = 6,
  443. IB_RNR_TIMER_000_12 = 7,
  444. IB_RNR_TIMER_000_16 = 8,
  445. IB_RNR_TIMER_000_24 = 9,
  446. IB_RNR_TIMER_000_32 = 10,
  447. IB_RNR_TIMER_000_48 = 11,
  448. IB_RNR_TIMER_000_64 = 12,
  449. IB_RNR_TIMER_000_96 = 13,
  450. IB_RNR_TIMER_001_28 = 14,
  451. IB_RNR_TIMER_001_92 = 15,
  452. IB_RNR_TIMER_002_56 = 16,
  453. IB_RNR_TIMER_003_84 = 17,
  454. IB_RNR_TIMER_005_12 = 18,
  455. IB_RNR_TIMER_007_68 = 19,
  456. IB_RNR_TIMER_010_24 = 20,
  457. IB_RNR_TIMER_015_36 = 21,
  458. IB_RNR_TIMER_020_48 = 22,
  459. IB_RNR_TIMER_030_72 = 23,
  460. IB_RNR_TIMER_040_96 = 24,
  461. IB_RNR_TIMER_061_44 = 25,
  462. IB_RNR_TIMER_081_92 = 26,
  463. IB_RNR_TIMER_122_88 = 27,
  464. IB_RNR_TIMER_163_84 = 28,
  465. IB_RNR_TIMER_245_76 = 29,
  466. IB_RNR_TIMER_327_68 = 30,
  467. IB_RNR_TIMER_491_52 = 31
  468. };
  469. enum ib_qp_attr_mask {
  470. IB_QP_STATE = 1,
  471. IB_QP_CUR_STATE = (1<<1),
  472. IB_QP_EN_SQD_ASYNC_NOTIFY = (1<<2),
  473. IB_QP_ACCESS_FLAGS = (1<<3),
  474. IB_QP_PKEY_INDEX = (1<<4),
  475. IB_QP_PORT = (1<<5),
  476. IB_QP_QKEY = (1<<6),
  477. IB_QP_AV = (1<<7),
  478. IB_QP_PATH_MTU = (1<<8),
  479. IB_QP_TIMEOUT = (1<<9),
  480. IB_QP_RETRY_CNT = (1<<10),
  481. IB_QP_RNR_RETRY = (1<<11),
  482. IB_QP_RQ_PSN = (1<<12),
  483. IB_QP_MAX_QP_RD_ATOMIC = (1<<13),
  484. IB_QP_ALT_PATH = (1<<14),
  485. IB_QP_MIN_RNR_TIMER = (1<<15),
  486. IB_QP_SQ_PSN = (1<<16),
  487. IB_QP_MAX_DEST_RD_ATOMIC = (1<<17),
  488. IB_QP_PATH_MIG_STATE = (1<<18),
  489. IB_QP_CAP = (1<<19),
  490. IB_QP_DEST_QPN = (1<<20)
  491. };
  492. enum ib_qp_state {
  493. IB_QPS_RESET,
  494. IB_QPS_INIT,
  495. IB_QPS_RTR,
  496. IB_QPS_RTS,
  497. IB_QPS_SQD,
  498. IB_QPS_SQE,
  499. IB_QPS_ERR
  500. };
  501. enum ib_mig_state {
  502. IB_MIG_MIGRATED,
  503. IB_MIG_REARM,
  504. IB_MIG_ARMED
  505. };
  506. struct ib_qp_attr {
  507. enum ib_qp_state qp_state;
  508. enum ib_qp_state cur_qp_state;
  509. enum ib_mtu path_mtu;
  510. enum ib_mig_state path_mig_state;
  511. u32 qkey;
  512. u32 rq_psn;
  513. u32 sq_psn;
  514. u32 dest_qp_num;
  515. int qp_access_flags;
  516. struct ib_qp_cap cap;
  517. struct ib_ah_attr ah_attr;
  518. struct ib_ah_attr alt_ah_attr;
  519. u16 pkey_index;
  520. u16 alt_pkey_index;
  521. u8 en_sqd_async_notify;
  522. u8 sq_draining;
  523. u8 max_rd_atomic;
  524. u8 max_dest_rd_atomic;
  525. u8 min_rnr_timer;
  526. u8 port_num;
  527. u8 timeout;
  528. u8 retry_cnt;
  529. u8 rnr_retry;
  530. u8 alt_port_num;
  531. u8 alt_timeout;
  532. };
  533. enum ib_wr_opcode {
  534. IB_WR_RDMA_WRITE,
  535. IB_WR_RDMA_WRITE_WITH_IMM,
  536. IB_WR_SEND,
  537. IB_WR_SEND_WITH_IMM,
  538. IB_WR_RDMA_READ,
  539. IB_WR_ATOMIC_CMP_AND_SWP,
  540. IB_WR_ATOMIC_FETCH_AND_ADD
  541. };
  542. enum ib_send_flags {
  543. IB_SEND_FENCE = 1,
  544. IB_SEND_SIGNALED = (1<<1),
  545. IB_SEND_SOLICITED = (1<<2),
  546. IB_SEND_INLINE = (1<<3)
  547. };
  548. struct ib_sge {
  549. u64 addr;
  550. u32 length;
  551. u32 lkey;
  552. };
  553. struct ib_send_wr {
  554. struct ib_send_wr *next;
  555. u64 wr_id;
  556. struct ib_sge *sg_list;
  557. int num_sge;
  558. enum ib_wr_opcode opcode;
  559. int send_flags;
  560. __be32 imm_data;
  561. union {
  562. struct {
  563. u64 remote_addr;
  564. u32 rkey;
  565. } rdma;
  566. struct {
  567. u64 remote_addr;
  568. u64 compare_add;
  569. u64 swap;
  570. u32 rkey;
  571. } atomic;
  572. struct {
  573. struct ib_ah *ah;
  574. u32 remote_qpn;
  575. u32 remote_qkey;
  576. u16 pkey_index; /* valid for GSI only */
  577. u8 port_num; /* valid for DR SMPs on switch only */
  578. } ud;
  579. } wr;
  580. };
  581. struct ib_recv_wr {
  582. struct ib_recv_wr *next;
  583. u64 wr_id;
  584. struct ib_sge *sg_list;
  585. int num_sge;
  586. };
  587. enum ib_access_flags {
  588. IB_ACCESS_LOCAL_WRITE = 1,
  589. IB_ACCESS_REMOTE_WRITE = (1<<1),
  590. IB_ACCESS_REMOTE_READ = (1<<2),
  591. IB_ACCESS_REMOTE_ATOMIC = (1<<3),
  592. IB_ACCESS_MW_BIND = (1<<4)
  593. };
  594. struct ib_phys_buf {
  595. u64 addr;
  596. u64 size;
  597. };
  598. struct ib_mr_attr {
  599. struct ib_pd *pd;
  600. u64 device_virt_addr;
  601. u64 size;
  602. int mr_access_flags;
  603. u32 lkey;
  604. u32 rkey;
  605. };
  606. enum ib_mr_rereg_flags {
  607. IB_MR_REREG_TRANS = 1,
  608. IB_MR_REREG_PD = (1<<1),
  609. IB_MR_REREG_ACCESS = (1<<2)
  610. };
  611. struct ib_mw_bind {
  612. struct ib_mr *mr;
  613. u64 wr_id;
  614. u64 addr;
  615. u32 length;
  616. int send_flags;
  617. int mw_access_flags;
  618. };
  619. struct ib_fmr_attr {
  620. int max_pages;
  621. int max_maps;
  622. u8 page_shift;
  623. };
  624. struct ib_ucontext {
  625. struct ib_device *device;
  626. struct list_head pd_list;
  627. struct list_head mr_list;
  628. struct list_head mw_list;
  629. struct list_head cq_list;
  630. struct list_head qp_list;
  631. struct list_head srq_list;
  632. struct list_head ah_list;
  633. };
  634. struct ib_uobject {
  635. u64 user_handle; /* handle given to us by userspace */
  636. struct ib_ucontext *context; /* associated user context */
  637. struct list_head list; /* link to context's list */
  638. u32 id; /* index into kernel idr */
  639. };
  640. struct ib_umem {
  641. unsigned long user_base;
  642. unsigned long virt_base;
  643. size_t length;
  644. int offset;
  645. int page_size;
  646. int writable;
  647. struct list_head chunk_list;
  648. };
  649. struct ib_umem_chunk {
  650. struct list_head list;
  651. int nents;
  652. int nmap;
  653. struct scatterlist page_list[0];
  654. };
  655. struct ib_udata {
  656. void __user *inbuf;
  657. void __user *outbuf;
  658. size_t inlen;
  659. size_t outlen;
  660. };
  661. #define IB_UMEM_MAX_PAGE_CHUNK \
  662. ((PAGE_SIZE - offsetof(struct ib_umem_chunk, page_list)) / \
  663. ((void *) &((struct ib_umem_chunk *) 0)->page_list[1] - \
  664. (void *) &((struct ib_umem_chunk *) 0)->page_list[0]))
  665. struct ib_umem_object {
  666. struct ib_uobject uobject;
  667. struct ib_umem umem;
  668. };
  669. struct ib_pd {
  670. struct ib_device *device;
  671. struct ib_uobject *uobject;
  672. atomic_t usecnt; /* count all resources */
  673. };
  674. struct ib_ah {
  675. struct ib_device *device;
  676. struct ib_pd *pd;
  677. struct ib_uobject *uobject;
  678. };
  679. typedef void (*ib_comp_handler)(struct ib_cq *cq, void *cq_context);
  680. struct ib_cq {
  681. struct ib_device *device;
  682. struct ib_uobject *uobject;
  683. ib_comp_handler comp_handler;
  684. void (*event_handler)(struct ib_event *, void *);
  685. void * cq_context;
  686. int cqe;
  687. atomic_t usecnt; /* count number of work queues */
  688. };
  689. struct ib_srq {
  690. struct ib_device *device;
  691. struct ib_pd *pd;
  692. struct ib_uobject *uobject;
  693. void (*event_handler)(struct ib_event *, void *);
  694. void *srq_context;
  695. atomic_t usecnt;
  696. };
  697. struct ib_qp {
  698. struct ib_device *device;
  699. struct ib_pd *pd;
  700. struct ib_cq *send_cq;
  701. struct ib_cq *recv_cq;
  702. struct ib_srq *srq;
  703. struct ib_uobject *uobject;
  704. void (*event_handler)(struct ib_event *, void *);
  705. void *qp_context;
  706. u32 qp_num;
  707. enum ib_qp_type qp_type;
  708. };
  709. struct ib_mr {
  710. struct ib_device *device;
  711. struct ib_pd *pd;
  712. struct ib_uobject *uobject;
  713. u32 lkey;
  714. u32 rkey;
  715. atomic_t usecnt; /* count number of MWs */
  716. };
  717. struct ib_mw {
  718. struct ib_device *device;
  719. struct ib_pd *pd;
  720. struct ib_uobject *uobject;
  721. u32 rkey;
  722. };
  723. struct ib_fmr {
  724. struct ib_device *device;
  725. struct ib_pd *pd;
  726. struct list_head list;
  727. u32 lkey;
  728. u32 rkey;
  729. };
  730. struct ib_mad;
  731. struct ib_grh;
  732. enum ib_process_mad_flags {
  733. IB_MAD_IGNORE_MKEY = 1,
  734. IB_MAD_IGNORE_BKEY = 2,
  735. IB_MAD_IGNORE_ALL = IB_MAD_IGNORE_MKEY | IB_MAD_IGNORE_BKEY
  736. };
  737. enum ib_mad_result {
  738. IB_MAD_RESULT_FAILURE = 0, /* (!SUCCESS is the important flag) */
  739. IB_MAD_RESULT_SUCCESS = 1 << 0, /* MAD was successfully processed */
  740. IB_MAD_RESULT_REPLY = 1 << 1, /* Reply packet needs to be sent */
  741. IB_MAD_RESULT_CONSUMED = 1 << 2 /* Packet consumed: stop processing */
  742. };
  743. #define IB_DEVICE_NAME_MAX 64
  744. struct ib_cache {
  745. rwlock_t lock;
  746. struct ib_event_handler event_handler;
  747. struct ib_pkey_cache **pkey_cache;
  748. struct ib_gid_cache **gid_cache;
  749. u8 *lmc_cache;
  750. };
  751. struct ib_device {
  752. struct device *dma_device;
  753. char name[IB_DEVICE_NAME_MAX];
  754. struct list_head event_handler_list;
  755. spinlock_t event_handler_lock;
  756. struct list_head core_list;
  757. struct list_head client_data_list;
  758. spinlock_t client_data_lock;
  759. struct ib_cache cache;
  760. u32 flags;
  761. int (*query_device)(struct ib_device *device,
  762. struct ib_device_attr *device_attr);
  763. int (*query_port)(struct ib_device *device,
  764. u8 port_num,
  765. struct ib_port_attr *port_attr);
  766. int (*query_gid)(struct ib_device *device,
  767. u8 port_num, int index,
  768. union ib_gid *gid);
  769. int (*query_pkey)(struct ib_device *device,
  770. u8 port_num, u16 index, u16 *pkey);
  771. int (*modify_device)(struct ib_device *device,
  772. int device_modify_mask,
  773. struct ib_device_modify *device_modify);
  774. int (*modify_port)(struct ib_device *device,
  775. u8 port_num, int port_modify_mask,
  776. struct ib_port_modify *port_modify);
  777. struct ib_ucontext * (*alloc_ucontext)(struct ib_device *device,
  778. struct ib_udata *udata);
  779. int (*dealloc_ucontext)(struct ib_ucontext *context);
  780. int (*mmap)(struct ib_ucontext *context,
  781. struct vm_area_struct *vma);
  782. struct ib_pd * (*alloc_pd)(struct ib_device *device,
  783. struct ib_ucontext *context,
  784. struct ib_udata *udata);
  785. int (*dealloc_pd)(struct ib_pd *pd);
  786. struct ib_ah * (*create_ah)(struct ib_pd *pd,
  787. struct ib_ah_attr *ah_attr);
  788. int (*modify_ah)(struct ib_ah *ah,
  789. struct ib_ah_attr *ah_attr);
  790. int (*query_ah)(struct ib_ah *ah,
  791. struct ib_ah_attr *ah_attr);
  792. int (*destroy_ah)(struct ib_ah *ah);
  793. struct ib_srq * (*create_srq)(struct ib_pd *pd,
  794. struct ib_srq_init_attr *srq_init_attr,
  795. struct ib_udata *udata);
  796. int (*modify_srq)(struct ib_srq *srq,
  797. struct ib_srq_attr *srq_attr,
  798. enum ib_srq_attr_mask srq_attr_mask);
  799. int (*query_srq)(struct ib_srq *srq,
  800. struct ib_srq_attr *srq_attr);
  801. int (*destroy_srq)(struct ib_srq *srq);
  802. int (*post_srq_recv)(struct ib_srq *srq,
  803. struct ib_recv_wr *recv_wr,
  804. struct ib_recv_wr **bad_recv_wr);
  805. struct ib_qp * (*create_qp)(struct ib_pd *pd,
  806. struct ib_qp_init_attr *qp_init_attr,
  807. struct ib_udata *udata);
  808. int (*modify_qp)(struct ib_qp *qp,
  809. struct ib_qp_attr *qp_attr,
  810. int qp_attr_mask);
  811. int (*query_qp)(struct ib_qp *qp,
  812. struct ib_qp_attr *qp_attr,
  813. int qp_attr_mask,
  814. struct ib_qp_init_attr *qp_init_attr);
  815. int (*destroy_qp)(struct ib_qp *qp);
  816. int (*post_send)(struct ib_qp *qp,
  817. struct ib_send_wr *send_wr,
  818. struct ib_send_wr **bad_send_wr);
  819. int (*post_recv)(struct ib_qp *qp,
  820. struct ib_recv_wr *recv_wr,
  821. struct ib_recv_wr **bad_recv_wr);
  822. struct ib_cq * (*create_cq)(struct ib_device *device, int cqe,
  823. struct ib_ucontext *context,
  824. struct ib_udata *udata);
  825. int (*destroy_cq)(struct ib_cq *cq);
  826. int (*resize_cq)(struct ib_cq *cq, int cqe,
  827. struct ib_udata *udata);
  828. int (*poll_cq)(struct ib_cq *cq, int num_entries,
  829. struct ib_wc *wc);
  830. int (*peek_cq)(struct ib_cq *cq, int wc_cnt);
  831. int (*req_notify_cq)(struct ib_cq *cq,
  832. enum ib_cq_notify cq_notify);
  833. int (*req_ncomp_notif)(struct ib_cq *cq,
  834. int wc_cnt);
  835. struct ib_mr * (*get_dma_mr)(struct ib_pd *pd,
  836. int mr_access_flags);
  837. struct ib_mr * (*reg_phys_mr)(struct ib_pd *pd,
  838. struct ib_phys_buf *phys_buf_array,
  839. int num_phys_buf,
  840. int mr_access_flags,
  841. u64 *iova_start);
  842. struct ib_mr * (*reg_user_mr)(struct ib_pd *pd,
  843. struct ib_umem *region,
  844. int mr_access_flags,
  845. struct ib_udata *udata);
  846. int (*query_mr)(struct ib_mr *mr,
  847. struct ib_mr_attr *mr_attr);
  848. int (*dereg_mr)(struct ib_mr *mr);
  849. int (*rereg_phys_mr)(struct ib_mr *mr,
  850. int mr_rereg_mask,
  851. struct ib_pd *pd,
  852. struct ib_phys_buf *phys_buf_array,
  853. int num_phys_buf,
  854. int mr_access_flags,
  855. u64 *iova_start);
  856. struct ib_mw * (*alloc_mw)(struct ib_pd *pd);
  857. int (*bind_mw)(struct ib_qp *qp,
  858. struct ib_mw *mw,
  859. struct ib_mw_bind *mw_bind);
  860. int (*dealloc_mw)(struct ib_mw *mw);
  861. struct ib_fmr * (*alloc_fmr)(struct ib_pd *pd,
  862. int mr_access_flags,
  863. struct ib_fmr_attr *fmr_attr);
  864. int (*map_phys_fmr)(struct ib_fmr *fmr,
  865. u64 *page_list, int list_len,
  866. u64 iova);
  867. int (*unmap_fmr)(struct list_head *fmr_list);
  868. int (*dealloc_fmr)(struct ib_fmr *fmr);
  869. int (*attach_mcast)(struct ib_qp *qp,
  870. union ib_gid *gid,
  871. u16 lid);
  872. int (*detach_mcast)(struct ib_qp *qp,
  873. union ib_gid *gid,
  874. u16 lid);
  875. int (*process_mad)(struct ib_device *device,
  876. int process_mad_flags,
  877. u8 port_num,
  878. struct ib_wc *in_wc,
  879. struct ib_grh *in_grh,
  880. struct ib_mad *in_mad,
  881. struct ib_mad *out_mad);
  882. struct module *owner;
  883. struct class_device class_dev;
  884. struct kobject ports_parent;
  885. struct list_head port_list;
  886. enum {
  887. IB_DEV_UNINITIALIZED,
  888. IB_DEV_REGISTERED,
  889. IB_DEV_UNREGISTERED
  890. } reg_state;
  891. u64 uverbs_cmd_mask;
  892. int uverbs_abi_ver;
  893. char node_desc[64];
  894. __be64 node_guid;
  895. u8 node_type;
  896. u8 phys_port_cnt;
  897. };
  898. struct ib_client {
  899. char *name;
  900. void (*add) (struct ib_device *);
  901. void (*remove)(struct ib_device *);
  902. struct list_head list;
  903. };
  904. struct ib_device *ib_alloc_device(size_t size);
  905. void ib_dealloc_device(struct ib_device *device);
  906. int ib_register_device (struct ib_device *device);
  907. void ib_unregister_device(struct ib_device *device);
  908. int ib_register_client (struct ib_client *client);
  909. void ib_unregister_client(struct ib_client *client);
  910. void *ib_get_client_data(struct ib_device *device, struct ib_client *client);
  911. void ib_set_client_data(struct ib_device *device, struct ib_client *client,
  912. void *data);
  913. static inline int ib_copy_from_udata(void *dest, struct ib_udata *udata, size_t len)
  914. {
  915. return copy_from_user(dest, udata->inbuf, len) ? -EFAULT : 0;
  916. }
  917. static inline int ib_copy_to_udata(struct ib_udata *udata, void *src, size_t len)
  918. {
  919. return copy_to_user(udata->outbuf, src, len) ? -EFAULT : 0;
  920. }
  921. /**
  922. * ib_modify_qp_is_ok - Check that the supplied attribute mask
  923. * contains all required attributes and no attributes not allowed for
  924. * the given QP state transition.
  925. * @cur_state: Current QP state
  926. * @next_state: Next QP state
  927. * @type: QP type
  928. * @mask: Mask of supplied QP attributes
  929. *
  930. * This function is a helper function that a low-level driver's
  931. * modify_qp method can use to validate the consumer's input. It
  932. * checks that cur_state and next_state are valid QP states, that a
  933. * transition from cur_state to next_state is allowed by the IB spec,
  934. * and that the attribute mask supplied is allowed for the transition.
  935. */
  936. int ib_modify_qp_is_ok(enum ib_qp_state cur_state, enum ib_qp_state next_state,
  937. enum ib_qp_type type, enum ib_qp_attr_mask mask);
  938. int ib_register_event_handler (struct ib_event_handler *event_handler);
  939. int ib_unregister_event_handler(struct ib_event_handler *event_handler);
  940. void ib_dispatch_event(struct ib_event *event);
  941. int ib_query_device(struct ib_device *device,
  942. struct ib_device_attr *device_attr);
  943. int ib_query_port(struct ib_device *device,
  944. u8 port_num, struct ib_port_attr *port_attr);
  945. int ib_query_gid(struct ib_device *device,
  946. u8 port_num, int index, union ib_gid *gid);
  947. int ib_query_pkey(struct ib_device *device,
  948. u8 port_num, u16 index, u16 *pkey);
  949. int ib_modify_device(struct ib_device *device,
  950. int device_modify_mask,
  951. struct ib_device_modify *device_modify);
  952. int ib_modify_port(struct ib_device *device,
  953. u8 port_num, int port_modify_mask,
  954. struct ib_port_modify *port_modify);
  955. /**
  956. * ib_alloc_pd - Allocates an unused protection domain.
  957. * @device: The device on which to allocate the protection domain.
  958. *
  959. * A protection domain object provides an association between QPs, shared
  960. * receive queues, address handles, memory regions, and memory windows.
  961. */
  962. struct ib_pd *ib_alloc_pd(struct ib_device *device);
  963. /**
  964. * ib_dealloc_pd - Deallocates a protection domain.
  965. * @pd: The protection domain to deallocate.
  966. */
  967. int ib_dealloc_pd(struct ib_pd *pd);
  968. /**
  969. * ib_create_ah - Creates an address handle for the given address vector.
  970. * @pd: The protection domain associated with the address handle.
  971. * @ah_attr: The attributes of the address vector.
  972. *
  973. * The address handle is used to reference a local or global destination
  974. * in all UD QP post sends.
  975. */
  976. struct ib_ah *ib_create_ah(struct ib_pd *pd, struct ib_ah_attr *ah_attr);
  977. /**
  978. * ib_init_ah_from_wc - Initializes address handle attributes from a
  979. * work completion.
  980. * @device: Device on which the received message arrived.
  981. * @port_num: Port on which the received message arrived.
  982. * @wc: Work completion associated with the received message.
  983. * @grh: References the received global route header. This parameter is
  984. * ignored unless the work completion indicates that the GRH is valid.
  985. * @ah_attr: Returned attributes that can be used when creating an address
  986. * handle for replying to the message.
  987. */
  988. int ib_init_ah_from_wc(struct ib_device *device, u8 port_num, struct ib_wc *wc,
  989. struct ib_grh *grh, struct ib_ah_attr *ah_attr);
  990. /**
  991. * ib_create_ah_from_wc - Creates an address handle associated with the
  992. * sender of the specified work completion.
  993. * @pd: The protection domain associated with the address handle.
  994. * @wc: Work completion information associated with a received message.
  995. * @grh: References the received global route header. This parameter is
  996. * ignored unless the work completion indicates that the GRH is valid.
  997. * @port_num: The outbound port number to associate with the address.
  998. *
  999. * The address handle is used to reference a local or global destination
  1000. * in all UD QP post sends.
  1001. */
  1002. struct ib_ah *ib_create_ah_from_wc(struct ib_pd *pd, struct ib_wc *wc,
  1003. struct ib_grh *grh, u8 port_num);
  1004. /**
  1005. * ib_modify_ah - Modifies the address vector associated with an address
  1006. * handle.
  1007. * @ah: The address handle to modify.
  1008. * @ah_attr: The new address vector attributes to associate with the
  1009. * address handle.
  1010. */
  1011. int ib_modify_ah(struct ib_ah *ah, struct ib_ah_attr *ah_attr);
  1012. /**
  1013. * ib_query_ah - Queries the address vector associated with an address
  1014. * handle.
  1015. * @ah: The address handle to query.
  1016. * @ah_attr: The address vector attributes associated with the address
  1017. * handle.
  1018. */
  1019. int ib_query_ah(struct ib_ah *ah, struct ib_ah_attr *ah_attr);
  1020. /**
  1021. * ib_destroy_ah - Destroys an address handle.
  1022. * @ah: The address handle to destroy.
  1023. */
  1024. int ib_destroy_ah(struct ib_ah *ah);
  1025. /**
  1026. * ib_create_srq - Creates a SRQ associated with the specified protection
  1027. * domain.
  1028. * @pd: The protection domain associated with the SRQ.
  1029. * @srq_init_attr: A list of initial attributes required to create the
  1030. * SRQ. If SRQ creation succeeds, then the attributes are updated to
  1031. * the actual capabilities of the created SRQ.
  1032. *
  1033. * srq_attr->max_wr and srq_attr->max_sge are read the determine the
  1034. * requested size of the SRQ, and set to the actual values allocated
  1035. * on return. If ib_create_srq() succeeds, then max_wr and max_sge
  1036. * will always be at least as large as the requested values.
  1037. */
  1038. struct ib_srq *ib_create_srq(struct ib_pd *pd,
  1039. struct ib_srq_init_attr *srq_init_attr);
  1040. /**
  1041. * ib_modify_srq - Modifies the attributes for the specified SRQ.
  1042. * @srq: The SRQ to modify.
  1043. * @srq_attr: On input, specifies the SRQ attributes to modify. On output,
  1044. * the current values of selected SRQ attributes are returned.
  1045. * @srq_attr_mask: A bit-mask used to specify which attributes of the SRQ
  1046. * are being modified.
  1047. *
  1048. * The mask may contain IB_SRQ_MAX_WR to resize the SRQ and/or
  1049. * IB_SRQ_LIMIT to set the SRQ's limit and request notification when
  1050. * the number of receives queued drops below the limit.
  1051. */
  1052. int ib_modify_srq(struct ib_srq *srq,
  1053. struct ib_srq_attr *srq_attr,
  1054. enum ib_srq_attr_mask srq_attr_mask);
  1055. /**
  1056. * ib_query_srq - Returns the attribute list and current values for the
  1057. * specified SRQ.
  1058. * @srq: The SRQ to query.
  1059. * @srq_attr: The attributes of the specified SRQ.
  1060. */
  1061. int ib_query_srq(struct ib_srq *srq,
  1062. struct ib_srq_attr *srq_attr);
  1063. /**
  1064. * ib_destroy_srq - Destroys the specified SRQ.
  1065. * @srq: The SRQ to destroy.
  1066. */
  1067. int ib_destroy_srq(struct ib_srq *srq);
  1068. /**
  1069. * ib_post_srq_recv - Posts a list of work requests to the specified SRQ.
  1070. * @srq: The SRQ to post the work request on.
  1071. * @recv_wr: A list of work requests to post on the receive queue.
  1072. * @bad_recv_wr: On an immediate failure, this parameter will reference
  1073. * the work request that failed to be posted on the QP.
  1074. */
  1075. static inline int ib_post_srq_recv(struct ib_srq *srq,
  1076. struct ib_recv_wr *recv_wr,
  1077. struct ib_recv_wr **bad_recv_wr)
  1078. {
  1079. return srq->device->post_srq_recv(srq, recv_wr, bad_recv_wr);
  1080. }
  1081. /**
  1082. * ib_create_qp - Creates a QP associated with the specified protection
  1083. * domain.
  1084. * @pd: The protection domain associated with the QP.
  1085. * @qp_init_attr: A list of initial attributes required to create the
  1086. * QP. If QP creation succeeds, then the attributes are updated to
  1087. * the actual capabilities of the created QP.
  1088. */
  1089. struct ib_qp *ib_create_qp(struct ib_pd *pd,
  1090. struct ib_qp_init_attr *qp_init_attr);
  1091. /**
  1092. * ib_modify_qp - Modifies the attributes for the specified QP and then
  1093. * transitions the QP to the given state.
  1094. * @qp: The QP to modify.
  1095. * @qp_attr: On input, specifies the QP attributes to modify. On output,
  1096. * the current values of selected QP attributes are returned.
  1097. * @qp_attr_mask: A bit-mask used to specify which attributes of the QP
  1098. * are being modified.
  1099. */
  1100. int ib_modify_qp(struct ib_qp *qp,
  1101. struct ib_qp_attr *qp_attr,
  1102. int qp_attr_mask);
  1103. /**
  1104. * ib_query_qp - Returns the attribute list and current values for the
  1105. * specified QP.
  1106. * @qp: The QP to query.
  1107. * @qp_attr: The attributes of the specified QP.
  1108. * @qp_attr_mask: A bit-mask used to select specific attributes to query.
  1109. * @qp_init_attr: Additional attributes of the selected QP.
  1110. *
  1111. * The qp_attr_mask may be used to limit the query to gathering only the
  1112. * selected attributes.
  1113. */
  1114. int ib_query_qp(struct ib_qp *qp,
  1115. struct ib_qp_attr *qp_attr,
  1116. int qp_attr_mask,
  1117. struct ib_qp_init_attr *qp_init_attr);
  1118. /**
  1119. * ib_destroy_qp - Destroys the specified QP.
  1120. * @qp: The QP to destroy.
  1121. */
  1122. int ib_destroy_qp(struct ib_qp *qp);
  1123. /**
  1124. * ib_post_send - Posts a list of work requests to the send queue of
  1125. * the specified QP.
  1126. * @qp: The QP to post the work request on.
  1127. * @send_wr: A list of work requests to post on the send queue.
  1128. * @bad_send_wr: On an immediate failure, this parameter will reference
  1129. * the work request that failed to be posted on the QP.
  1130. */
  1131. static inline int ib_post_send(struct ib_qp *qp,
  1132. struct ib_send_wr *send_wr,
  1133. struct ib_send_wr **bad_send_wr)
  1134. {
  1135. return qp->device->post_send(qp, send_wr, bad_send_wr);
  1136. }
  1137. /**
  1138. * ib_post_recv - Posts a list of work requests to the receive queue of
  1139. * the specified QP.
  1140. * @qp: The QP to post the work request on.
  1141. * @recv_wr: A list of work requests to post on the receive queue.
  1142. * @bad_recv_wr: On an immediate failure, this parameter will reference
  1143. * the work request that failed to be posted on the QP.
  1144. */
  1145. static inline int ib_post_recv(struct ib_qp *qp,
  1146. struct ib_recv_wr *recv_wr,
  1147. struct ib_recv_wr **bad_recv_wr)
  1148. {
  1149. return qp->device->post_recv(qp, recv_wr, bad_recv_wr);
  1150. }
  1151. /**
  1152. * ib_create_cq - Creates a CQ on the specified device.
  1153. * @device: The device on which to create the CQ.
  1154. * @comp_handler: A user-specified callback that is invoked when a
  1155. * completion event occurs on the CQ.
  1156. * @event_handler: A user-specified callback that is invoked when an
  1157. * asynchronous event not associated with a completion occurs on the CQ.
  1158. * @cq_context: Context associated with the CQ returned to the user via
  1159. * the associated completion and event handlers.
  1160. * @cqe: The minimum size of the CQ.
  1161. *
  1162. * Users can examine the cq structure to determine the actual CQ size.
  1163. */
  1164. struct ib_cq *ib_create_cq(struct ib_device *device,
  1165. ib_comp_handler comp_handler,
  1166. void (*event_handler)(struct ib_event *, void *),
  1167. void *cq_context, int cqe);
  1168. /**
  1169. * ib_resize_cq - Modifies the capacity of the CQ.
  1170. * @cq: The CQ to resize.
  1171. * @cqe: The minimum size of the CQ.
  1172. *
  1173. * Users can examine the cq structure to determine the actual CQ size.
  1174. */
  1175. int ib_resize_cq(struct ib_cq *cq, int cqe);
  1176. /**
  1177. * ib_destroy_cq - Destroys the specified CQ.
  1178. * @cq: The CQ to destroy.
  1179. */
  1180. int ib_destroy_cq(struct ib_cq *cq);
  1181. /**
  1182. * ib_poll_cq - poll a CQ for completion(s)
  1183. * @cq:the CQ being polled
  1184. * @num_entries:maximum number of completions to return
  1185. * @wc:array of at least @num_entries &struct ib_wc where completions
  1186. * will be returned
  1187. *
  1188. * Poll a CQ for (possibly multiple) completions. If the return value
  1189. * is < 0, an error occurred. If the return value is >= 0, it is the
  1190. * number of completions returned. If the return value is
  1191. * non-negative and < num_entries, then the CQ was emptied.
  1192. */
  1193. static inline int ib_poll_cq(struct ib_cq *cq, int num_entries,
  1194. struct ib_wc *wc)
  1195. {
  1196. return cq->device->poll_cq(cq, num_entries, wc);
  1197. }
  1198. /**
  1199. * ib_peek_cq - Returns the number of unreaped completions currently
  1200. * on the specified CQ.
  1201. * @cq: The CQ to peek.
  1202. * @wc_cnt: A minimum number of unreaped completions to check for.
  1203. *
  1204. * If the number of unreaped completions is greater than or equal to wc_cnt,
  1205. * this function returns wc_cnt, otherwise, it returns the actual number of
  1206. * unreaped completions.
  1207. */
  1208. int ib_peek_cq(struct ib_cq *cq, int wc_cnt);
  1209. /**
  1210. * ib_req_notify_cq - Request completion notification on a CQ.
  1211. * @cq: The CQ to generate an event for.
  1212. * @cq_notify: If set to %IB_CQ_SOLICITED, completion notification will
  1213. * occur on the next solicited event. If set to %IB_CQ_NEXT_COMP,
  1214. * notification will occur on the next completion.
  1215. */
  1216. static inline int ib_req_notify_cq(struct ib_cq *cq,
  1217. enum ib_cq_notify cq_notify)
  1218. {
  1219. return cq->device->req_notify_cq(cq, cq_notify);
  1220. }
  1221. /**
  1222. * ib_req_ncomp_notif - Request completion notification when there are
  1223. * at least the specified number of unreaped completions on the CQ.
  1224. * @cq: The CQ to generate an event for.
  1225. * @wc_cnt: The number of unreaped completions that should be on the
  1226. * CQ before an event is generated.
  1227. */
  1228. static inline int ib_req_ncomp_notif(struct ib_cq *cq, int wc_cnt)
  1229. {
  1230. return cq->device->req_ncomp_notif ?
  1231. cq->device->req_ncomp_notif(cq, wc_cnt) :
  1232. -ENOSYS;
  1233. }
  1234. /**
  1235. * ib_get_dma_mr - Returns a memory region for system memory that is
  1236. * usable for DMA.
  1237. * @pd: The protection domain associated with the memory region.
  1238. * @mr_access_flags: Specifies the memory access rights.
  1239. */
  1240. struct ib_mr *ib_get_dma_mr(struct ib_pd *pd, int mr_access_flags);
  1241. /**
  1242. * ib_reg_phys_mr - Prepares a virtually addressed memory region for use
  1243. * by an HCA.
  1244. * @pd: The protection domain associated assigned to the registered region.
  1245. * @phys_buf_array: Specifies a list of physical buffers to use in the
  1246. * memory region.
  1247. * @num_phys_buf: Specifies the size of the phys_buf_array.
  1248. * @mr_access_flags: Specifies the memory access rights.
  1249. * @iova_start: The offset of the region's starting I/O virtual address.
  1250. */
  1251. struct ib_mr *ib_reg_phys_mr(struct ib_pd *pd,
  1252. struct ib_phys_buf *phys_buf_array,
  1253. int num_phys_buf,
  1254. int mr_access_flags,
  1255. u64 *iova_start);
  1256. /**
  1257. * ib_rereg_phys_mr - Modifies the attributes of an existing memory region.
  1258. * Conceptually, this call performs the functions deregister memory region
  1259. * followed by register physical memory region. Where possible,
  1260. * resources are reused instead of deallocated and reallocated.
  1261. * @mr: The memory region to modify.
  1262. * @mr_rereg_mask: A bit-mask used to indicate which of the following
  1263. * properties of the memory region are being modified.
  1264. * @pd: If %IB_MR_REREG_PD is set in mr_rereg_mask, this field specifies
  1265. * the new protection domain to associated with the memory region,
  1266. * otherwise, this parameter is ignored.
  1267. * @phys_buf_array: If %IB_MR_REREG_TRANS is set in mr_rereg_mask, this
  1268. * field specifies a list of physical buffers to use in the new
  1269. * translation, otherwise, this parameter is ignored.
  1270. * @num_phys_buf: If %IB_MR_REREG_TRANS is set in mr_rereg_mask, this
  1271. * field specifies the size of the phys_buf_array, otherwise, this
  1272. * parameter is ignored.
  1273. * @mr_access_flags: If %IB_MR_REREG_ACCESS is set in mr_rereg_mask, this
  1274. * field specifies the new memory access rights, otherwise, this
  1275. * parameter is ignored.
  1276. * @iova_start: The offset of the region's starting I/O virtual address.
  1277. */
  1278. int ib_rereg_phys_mr(struct ib_mr *mr,
  1279. int mr_rereg_mask,
  1280. struct ib_pd *pd,
  1281. struct ib_phys_buf *phys_buf_array,
  1282. int num_phys_buf,
  1283. int mr_access_flags,
  1284. u64 *iova_start);
  1285. /**
  1286. * ib_query_mr - Retrieves information about a specific memory region.
  1287. * @mr: The memory region to retrieve information about.
  1288. * @mr_attr: The attributes of the specified memory region.
  1289. */
  1290. int ib_query_mr(struct ib_mr *mr, struct ib_mr_attr *mr_attr);
  1291. /**
  1292. * ib_dereg_mr - Deregisters a memory region and removes it from the
  1293. * HCA translation table.
  1294. * @mr: The memory region to deregister.
  1295. */
  1296. int ib_dereg_mr(struct ib_mr *mr);
  1297. /**
  1298. * ib_alloc_mw - Allocates a memory window.
  1299. * @pd: The protection domain associated with the memory window.
  1300. */
  1301. struct ib_mw *ib_alloc_mw(struct ib_pd *pd);
  1302. /**
  1303. * ib_bind_mw - Posts a work request to the send queue of the specified
  1304. * QP, which binds the memory window to the given address range and
  1305. * remote access attributes.
  1306. * @qp: QP to post the bind work request on.
  1307. * @mw: The memory window to bind.
  1308. * @mw_bind: Specifies information about the memory window, including
  1309. * its address range, remote access rights, and associated memory region.
  1310. */
  1311. static inline int ib_bind_mw(struct ib_qp *qp,
  1312. struct ib_mw *mw,
  1313. struct ib_mw_bind *mw_bind)
  1314. {
  1315. /* XXX reference counting in corresponding MR? */
  1316. return mw->device->bind_mw ?
  1317. mw->device->bind_mw(qp, mw, mw_bind) :
  1318. -ENOSYS;
  1319. }
  1320. /**
  1321. * ib_dealloc_mw - Deallocates a memory window.
  1322. * @mw: The memory window to deallocate.
  1323. */
  1324. int ib_dealloc_mw(struct ib_mw *mw);
  1325. /**
  1326. * ib_alloc_fmr - Allocates a unmapped fast memory region.
  1327. * @pd: The protection domain associated with the unmapped region.
  1328. * @mr_access_flags: Specifies the memory access rights.
  1329. * @fmr_attr: Attributes of the unmapped region.
  1330. *
  1331. * A fast memory region must be mapped before it can be used as part of
  1332. * a work request.
  1333. */
  1334. struct ib_fmr *ib_alloc_fmr(struct ib_pd *pd,
  1335. int mr_access_flags,
  1336. struct ib_fmr_attr *fmr_attr);
  1337. /**
  1338. * ib_map_phys_fmr - Maps a list of physical pages to a fast memory region.
  1339. * @fmr: The fast memory region to associate with the pages.
  1340. * @page_list: An array of physical pages to map to the fast memory region.
  1341. * @list_len: The number of pages in page_list.
  1342. * @iova: The I/O virtual address to use with the mapped region.
  1343. */
  1344. static inline int ib_map_phys_fmr(struct ib_fmr *fmr,
  1345. u64 *page_list, int list_len,
  1346. u64 iova)
  1347. {
  1348. return fmr->device->map_phys_fmr(fmr, page_list, list_len, iova);
  1349. }
  1350. /**
  1351. * ib_unmap_fmr - Removes the mapping from a list of fast memory regions.
  1352. * @fmr_list: A linked list of fast memory regions to unmap.
  1353. */
  1354. int ib_unmap_fmr(struct list_head *fmr_list);
  1355. /**
  1356. * ib_dealloc_fmr - Deallocates a fast memory region.
  1357. * @fmr: The fast memory region to deallocate.
  1358. */
  1359. int ib_dealloc_fmr(struct ib_fmr *fmr);
  1360. /**
  1361. * ib_attach_mcast - Attaches the specified QP to a multicast group.
  1362. * @qp: QP to attach to the multicast group. The QP must be type
  1363. * IB_QPT_UD.
  1364. * @gid: Multicast group GID.
  1365. * @lid: Multicast group LID in host byte order.
  1366. *
  1367. * In order to send and receive multicast packets, subnet
  1368. * administration must have created the multicast group and configured
  1369. * the fabric appropriately. The port associated with the specified
  1370. * QP must also be a member of the multicast group.
  1371. */
  1372. int ib_attach_mcast(struct ib_qp *qp, union ib_gid *gid, u16 lid);
  1373. /**
  1374. * ib_detach_mcast - Detaches the specified QP from a multicast group.
  1375. * @qp: QP to detach from the multicast group.
  1376. * @gid: Multicast group GID.
  1377. * @lid: Multicast group LID in host byte order.
  1378. */
  1379. int ib_detach_mcast(struct ib_qp *qp, union ib_gid *gid, u16 lid);
  1380. #endif /* IB_VERBS_H */