ib_verbs.h 37 KB

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