ib_verbs.h 59 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034
  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, 2007 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. #if !defined(IB_VERBS_H)
  39. #define IB_VERBS_H
  40. #include <linux/types.h>
  41. #include <linux/device.h>
  42. #include <linux/mm.h>
  43. #include <linux/dma-mapping.h>
  44. #include <linux/kref.h>
  45. #include <linux/list.h>
  46. #include <linux/rwsem.h>
  47. #include <linux/scatterlist.h>
  48. #include <asm/atomic.h>
  49. #include <asm/uaccess.h>
  50. union ib_gid {
  51. u8 raw[16];
  52. struct {
  53. __be64 subnet_prefix;
  54. __be64 interface_id;
  55. } global;
  56. };
  57. enum rdma_node_type {
  58. /* IB values map to NodeInfo:NodeType. */
  59. RDMA_NODE_IB_CA = 1,
  60. RDMA_NODE_IB_SWITCH,
  61. RDMA_NODE_IB_ROUTER,
  62. RDMA_NODE_RNIC
  63. };
  64. enum rdma_transport_type {
  65. RDMA_TRANSPORT_IB,
  66. RDMA_TRANSPORT_IWARP
  67. };
  68. enum rdma_transport_type
  69. rdma_node_get_transport(enum rdma_node_type node_type) __attribute_const__;
  70. enum ib_device_cap_flags {
  71. IB_DEVICE_RESIZE_MAX_WR = 1,
  72. IB_DEVICE_BAD_PKEY_CNTR = (1<<1),
  73. IB_DEVICE_BAD_QKEY_CNTR = (1<<2),
  74. IB_DEVICE_RAW_MULTI = (1<<3),
  75. IB_DEVICE_AUTO_PATH_MIG = (1<<4),
  76. IB_DEVICE_CHANGE_PHY_PORT = (1<<5),
  77. IB_DEVICE_UD_AV_PORT_ENFORCE = (1<<6),
  78. IB_DEVICE_CURR_QP_STATE_MOD = (1<<7),
  79. IB_DEVICE_SHUTDOWN_PORT = (1<<8),
  80. IB_DEVICE_INIT_TYPE = (1<<9),
  81. IB_DEVICE_PORT_ACTIVE_EVENT = (1<<10),
  82. IB_DEVICE_SYS_IMAGE_GUID = (1<<11),
  83. IB_DEVICE_RC_RNR_NAK_GEN = (1<<12),
  84. IB_DEVICE_SRQ_RESIZE = (1<<13),
  85. IB_DEVICE_N_NOTIFY_CQ = (1<<14),
  86. IB_DEVICE_LOCAL_DMA_LKEY = (1<<15),
  87. IB_DEVICE_RESERVED = (1<<16), /* old SEND_W_INV */
  88. IB_DEVICE_MEM_WINDOW = (1<<17),
  89. /*
  90. * Devices should set IB_DEVICE_UD_IP_SUM if they support
  91. * insertion of UDP and TCP checksum on outgoing UD IPoIB
  92. * messages and can verify the validity of checksum for
  93. * incoming messages. Setting this flag implies that the
  94. * IPoIB driver may set NETIF_F_IP_CSUM for datagram mode.
  95. */
  96. IB_DEVICE_UD_IP_CSUM = (1<<18),
  97. IB_DEVICE_UD_TSO = (1<<19),
  98. IB_DEVICE_MEM_MGT_EXTENSIONS = (1<<21),
  99. IB_DEVICE_BLOCK_MULTICAST_LOOPBACK = (1<<22),
  100. };
  101. enum ib_atomic_cap {
  102. IB_ATOMIC_NONE,
  103. IB_ATOMIC_HCA,
  104. IB_ATOMIC_GLOB
  105. };
  106. struct ib_device_attr {
  107. u64 fw_ver;
  108. __be64 sys_image_guid;
  109. u64 max_mr_size;
  110. u64 page_size_cap;
  111. u32 vendor_id;
  112. u32 vendor_part_id;
  113. u32 hw_ver;
  114. int max_qp;
  115. int max_qp_wr;
  116. int device_cap_flags;
  117. int max_sge;
  118. int max_sge_rd;
  119. int max_cq;
  120. int max_cqe;
  121. int max_mr;
  122. int max_pd;
  123. int max_qp_rd_atom;
  124. int max_ee_rd_atom;
  125. int max_res_rd_atom;
  126. int max_qp_init_rd_atom;
  127. int max_ee_init_rd_atom;
  128. enum ib_atomic_cap atomic_cap;
  129. int max_ee;
  130. int max_rdd;
  131. int max_mw;
  132. int max_raw_ipv6_qp;
  133. int max_raw_ethy_qp;
  134. int max_mcast_grp;
  135. int max_mcast_qp_attach;
  136. int max_total_mcast_qp_attach;
  137. int max_ah;
  138. int max_fmr;
  139. int max_map_per_fmr;
  140. int max_srq;
  141. int max_srq_wr;
  142. int max_srq_sge;
  143. unsigned int max_fast_reg_page_list_len;
  144. u16 max_pkeys;
  145. u8 local_ca_ack_delay;
  146. };
  147. enum ib_mtu {
  148. IB_MTU_256 = 1,
  149. IB_MTU_512 = 2,
  150. IB_MTU_1024 = 3,
  151. IB_MTU_2048 = 4,
  152. IB_MTU_4096 = 5
  153. };
  154. static inline int ib_mtu_enum_to_int(enum ib_mtu mtu)
  155. {
  156. switch (mtu) {
  157. case IB_MTU_256: return 256;
  158. case IB_MTU_512: return 512;
  159. case IB_MTU_1024: return 1024;
  160. case IB_MTU_2048: return 2048;
  161. case IB_MTU_4096: return 4096;
  162. default: return -1;
  163. }
  164. }
  165. enum ib_port_state {
  166. IB_PORT_NOP = 0,
  167. IB_PORT_DOWN = 1,
  168. IB_PORT_INIT = 2,
  169. IB_PORT_ARMED = 3,
  170. IB_PORT_ACTIVE = 4,
  171. IB_PORT_ACTIVE_DEFER = 5
  172. };
  173. enum ib_port_cap_flags {
  174. IB_PORT_SM = 1 << 1,
  175. IB_PORT_NOTICE_SUP = 1 << 2,
  176. IB_PORT_TRAP_SUP = 1 << 3,
  177. IB_PORT_OPT_IPD_SUP = 1 << 4,
  178. IB_PORT_AUTO_MIGR_SUP = 1 << 5,
  179. IB_PORT_SL_MAP_SUP = 1 << 6,
  180. IB_PORT_MKEY_NVRAM = 1 << 7,
  181. IB_PORT_PKEY_NVRAM = 1 << 8,
  182. IB_PORT_LED_INFO_SUP = 1 << 9,
  183. IB_PORT_SM_DISABLED = 1 << 10,
  184. IB_PORT_SYS_IMAGE_GUID_SUP = 1 << 11,
  185. IB_PORT_PKEY_SW_EXT_PORT_TRAP_SUP = 1 << 12,
  186. IB_PORT_CM_SUP = 1 << 16,
  187. IB_PORT_SNMP_TUNNEL_SUP = 1 << 17,
  188. IB_PORT_REINIT_SUP = 1 << 18,
  189. IB_PORT_DEVICE_MGMT_SUP = 1 << 19,
  190. IB_PORT_VENDOR_CLASS_SUP = 1 << 20,
  191. IB_PORT_DR_NOTICE_SUP = 1 << 21,
  192. IB_PORT_CAP_MASK_NOTICE_SUP = 1 << 22,
  193. IB_PORT_BOOT_MGMT_SUP = 1 << 23,
  194. IB_PORT_LINK_LATENCY_SUP = 1 << 24,
  195. IB_PORT_CLIENT_REG_SUP = 1 << 25
  196. };
  197. enum ib_port_width {
  198. IB_WIDTH_1X = 1,
  199. IB_WIDTH_4X = 2,
  200. IB_WIDTH_8X = 4,
  201. IB_WIDTH_12X = 8
  202. };
  203. static inline int ib_width_enum_to_int(enum ib_port_width width)
  204. {
  205. switch (width) {
  206. case IB_WIDTH_1X: return 1;
  207. case IB_WIDTH_4X: return 4;
  208. case IB_WIDTH_8X: return 8;
  209. case IB_WIDTH_12X: return 12;
  210. default: return -1;
  211. }
  212. }
  213. struct ib_protocol_stats {
  214. /* TBD... */
  215. };
  216. struct iw_protocol_stats {
  217. u64 ipInReceives;
  218. u64 ipInHdrErrors;
  219. u64 ipInTooBigErrors;
  220. u64 ipInNoRoutes;
  221. u64 ipInAddrErrors;
  222. u64 ipInUnknownProtos;
  223. u64 ipInTruncatedPkts;
  224. u64 ipInDiscards;
  225. u64 ipInDelivers;
  226. u64 ipOutForwDatagrams;
  227. u64 ipOutRequests;
  228. u64 ipOutDiscards;
  229. u64 ipOutNoRoutes;
  230. u64 ipReasmTimeout;
  231. u64 ipReasmReqds;
  232. u64 ipReasmOKs;
  233. u64 ipReasmFails;
  234. u64 ipFragOKs;
  235. u64 ipFragFails;
  236. u64 ipFragCreates;
  237. u64 ipInMcastPkts;
  238. u64 ipOutMcastPkts;
  239. u64 ipInBcastPkts;
  240. u64 ipOutBcastPkts;
  241. u64 tcpRtoAlgorithm;
  242. u64 tcpRtoMin;
  243. u64 tcpRtoMax;
  244. u64 tcpMaxConn;
  245. u64 tcpActiveOpens;
  246. u64 tcpPassiveOpens;
  247. u64 tcpAttemptFails;
  248. u64 tcpEstabResets;
  249. u64 tcpCurrEstab;
  250. u64 tcpInSegs;
  251. u64 tcpOutSegs;
  252. u64 tcpRetransSegs;
  253. u64 tcpInErrs;
  254. u64 tcpOutRsts;
  255. };
  256. union rdma_protocol_stats {
  257. struct ib_protocol_stats ib;
  258. struct iw_protocol_stats iw;
  259. };
  260. struct ib_port_attr {
  261. enum ib_port_state state;
  262. enum ib_mtu max_mtu;
  263. enum ib_mtu active_mtu;
  264. int gid_tbl_len;
  265. u32 port_cap_flags;
  266. u32 max_msg_sz;
  267. u32 bad_pkey_cntr;
  268. u32 qkey_viol_cntr;
  269. u16 pkey_tbl_len;
  270. u16 lid;
  271. u16 sm_lid;
  272. u8 lmc;
  273. u8 max_vl_num;
  274. u8 sm_sl;
  275. u8 subnet_timeout;
  276. u8 init_type_reply;
  277. u8 active_width;
  278. u8 active_speed;
  279. u8 phys_state;
  280. };
  281. enum ib_device_modify_flags {
  282. IB_DEVICE_MODIFY_SYS_IMAGE_GUID = 1 << 0,
  283. IB_DEVICE_MODIFY_NODE_DESC = 1 << 1
  284. };
  285. struct ib_device_modify {
  286. u64 sys_image_guid;
  287. char node_desc[64];
  288. };
  289. enum ib_port_modify_flags {
  290. IB_PORT_SHUTDOWN = 1,
  291. IB_PORT_INIT_TYPE = (1<<2),
  292. IB_PORT_RESET_QKEY_CNTR = (1<<3)
  293. };
  294. struct ib_port_modify {
  295. u32 set_port_cap_mask;
  296. u32 clr_port_cap_mask;
  297. u8 init_type;
  298. };
  299. enum ib_event_type {
  300. IB_EVENT_CQ_ERR,
  301. IB_EVENT_QP_FATAL,
  302. IB_EVENT_QP_REQ_ERR,
  303. IB_EVENT_QP_ACCESS_ERR,
  304. IB_EVENT_COMM_EST,
  305. IB_EVENT_SQ_DRAINED,
  306. IB_EVENT_PATH_MIG,
  307. IB_EVENT_PATH_MIG_ERR,
  308. IB_EVENT_DEVICE_FATAL,
  309. IB_EVENT_PORT_ACTIVE,
  310. IB_EVENT_PORT_ERR,
  311. IB_EVENT_LID_CHANGE,
  312. IB_EVENT_PKEY_CHANGE,
  313. IB_EVENT_SM_CHANGE,
  314. IB_EVENT_SRQ_ERR,
  315. IB_EVENT_SRQ_LIMIT_REACHED,
  316. IB_EVENT_QP_LAST_WQE_REACHED,
  317. IB_EVENT_CLIENT_REREGISTER
  318. };
  319. struct ib_event {
  320. struct ib_device *device;
  321. union {
  322. struct ib_cq *cq;
  323. struct ib_qp *qp;
  324. struct ib_srq *srq;
  325. u8 port_num;
  326. } element;
  327. enum ib_event_type event;
  328. };
  329. struct ib_event_handler {
  330. struct ib_device *device;
  331. void (*handler)(struct ib_event_handler *, struct ib_event *);
  332. struct list_head list;
  333. };
  334. #define INIT_IB_EVENT_HANDLER(_ptr, _device, _handler) \
  335. do { \
  336. (_ptr)->device = _device; \
  337. (_ptr)->handler = _handler; \
  338. INIT_LIST_HEAD(&(_ptr)->list); \
  339. } while (0)
  340. struct ib_global_route {
  341. union ib_gid dgid;
  342. u32 flow_label;
  343. u8 sgid_index;
  344. u8 hop_limit;
  345. u8 traffic_class;
  346. };
  347. struct ib_grh {
  348. __be32 version_tclass_flow;
  349. __be16 paylen;
  350. u8 next_hdr;
  351. u8 hop_limit;
  352. union ib_gid sgid;
  353. union ib_gid dgid;
  354. };
  355. enum {
  356. IB_MULTICAST_QPN = 0xffffff
  357. };
  358. #define IB_LID_PERMISSIVE cpu_to_be16(0xFFFF)
  359. enum ib_ah_flags {
  360. IB_AH_GRH = 1
  361. };
  362. enum ib_rate {
  363. IB_RATE_PORT_CURRENT = 0,
  364. IB_RATE_2_5_GBPS = 2,
  365. IB_RATE_5_GBPS = 5,
  366. IB_RATE_10_GBPS = 3,
  367. IB_RATE_20_GBPS = 6,
  368. IB_RATE_30_GBPS = 4,
  369. IB_RATE_40_GBPS = 7,
  370. IB_RATE_60_GBPS = 8,
  371. IB_RATE_80_GBPS = 9,
  372. IB_RATE_120_GBPS = 10
  373. };
  374. /**
  375. * ib_rate_to_mult - Convert the IB rate enum to a multiple of the
  376. * base rate of 2.5 Gbit/sec. For example, IB_RATE_5_GBPS will be
  377. * converted to 2, since 5 Gbit/sec is 2 * 2.5 Gbit/sec.
  378. * @rate: rate to convert.
  379. */
  380. int ib_rate_to_mult(enum ib_rate rate) __attribute_const__;
  381. /**
  382. * mult_to_ib_rate - Convert a multiple of 2.5 Gbit/sec to an IB rate
  383. * enum.
  384. * @mult: multiple to convert.
  385. */
  386. enum ib_rate mult_to_ib_rate(int mult) __attribute_const__;
  387. struct ib_ah_attr {
  388. struct ib_global_route grh;
  389. u16 dlid;
  390. u8 sl;
  391. u8 src_path_bits;
  392. u8 static_rate;
  393. u8 ah_flags;
  394. u8 port_num;
  395. };
  396. enum ib_wc_status {
  397. IB_WC_SUCCESS,
  398. IB_WC_LOC_LEN_ERR,
  399. IB_WC_LOC_QP_OP_ERR,
  400. IB_WC_LOC_EEC_OP_ERR,
  401. IB_WC_LOC_PROT_ERR,
  402. IB_WC_WR_FLUSH_ERR,
  403. IB_WC_MW_BIND_ERR,
  404. IB_WC_BAD_RESP_ERR,
  405. IB_WC_LOC_ACCESS_ERR,
  406. IB_WC_REM_INV_REQ_ERR,
  407. IB_WC_REM_ACCESS_ERR,
  408. IB_WC_REM_OP_ERR,
  409. IB_WC_RETRY_EXC_ERR,
  410. IB_WC_RNR_RETRY_EXC_ERR,
  411. IB_WC_LOC_RDD_VIOL_ERR,
  412. IB_WC_REM_INV_RD_REQ_ERR,
  413. IB_WC_REM_ABORT_ERR,
  414. IB_WC_INV_EECN_ERR,
  415. IB_WC_INV_EEC_STATE_ERR,
  416. IB_WC_FATAL_ERR,
  417. IB_WC_RESP_TIMEOUT_ERR,
  418. IB_WC_GENERAL_ERR
  419. };
  420. enum ib_wc_opcode {
  421. IB_WC_SEND,
  422. IB_WC_RDMA_WRITE,
  423. IB_WC_RDMA_READ,
  424. IB_WC_COMP_SWAP,
  425. IB_WC_FETCH_ADD,
  426. IB_WC_BIND_MW,
  427. IB_WC_LSO,
  428. IB_WC_LOCAL_INV,
  429. IB_WC_FAST_REG_MR,
  430. /*
  431. * Set value of IB_WC_RECV so consumers can test if a completion is a
  432. * receive by testing (opcode & IB_WC_RECV).
  433. */
  434. IB_WC_RECV = 1 << 7,
  435. IB_WC_RECV_RDMA_WITH_IMM
  436. };
  437. enum ib_wc_flags {
  438. IB_WC_GRH = 1,
  439. IB_WC_WITH_IMM = (1<<1),
  440. IB_WC_WITH_INVALIDATE = (1<<2),
  441. };
  442. struct ib_wc {
  443. u64 wr_id;
  444. enum ib_wc_status status;
  445. enum ib_wc_opcode opcode;
  446. u32 vendor_err;
  447. u32 byte_len;
  448. struct ib_qp *qp;
  449. union {
  450. __be32 imm_data;
  451. u32 invalidate_rkey;
  452. } ex;
  453. u32 src_qp;
  454. int wc_flags;
  455. u16 pkey_index;
  456. u16 slid;
  457. u8 sl;
  458. u8 dlid_path_bits;
  459. u8 port_num; /* valid only for DR SMPs on switches */
  460. int csum_ok;
  461. };
  462. enum ib_cq_notify_flags {
  463. IB_CQ_SOLICITED = 1 << 0,
  464. IB_CQ_NEXT_COMP = 1 << 1,
  465. IB_CQ_SOLICITED_MASK = IB_CQ_SOLICITED | IB_CQ_NEXT_COMP,
  466. IB_CQ_REPORT_MISSED_EVENTS = 1 << 2,
  467. };
  468. enum ib_srq_attr_mask {
  469. IB_SRQ_MAX_WR = 1 << 0,
  470. IB_SRQ_LIMIT = 1 << 1,
  471. };
  472. struct ib_srq_attr {
  473. u32 max_wr;
  474. u32 max_sge;
  475. u32 srq_limit;
  476. };
  477. struct ib_srq_init_attr {
  478. void (*event_handler)(struct ib_event *, void *);
  479. void *srq_context;
  480. struct ib_srq_attr attr;
  481. };
  482. struct ib_qp_cap {
  483. u32 max_send_wr;
  484. u32 max_recv_wr;
  485. u32 max_send_sge;
  486. u32 max_recv_sge;
  487. u32 max_inline_data;
  488. };
  489. enum ib_sig_type {
  490. IB_SIGNAL_ALL_WR,
  491. IB_SIGNAL_REQ_WR
  492. };
  493. enum ib_qp_type {
  494. /*
  495. * IB_QPT_SMI and IB_QPT_GSI have to be the first two entries
  496. * here (and in that order) since the MAD layer uses them as
  497. * indices into a 2-entry table.
  498. */
  499. IB_QPT_SMI,
  500. IB_QPT_GSI,
  501. IB_QPT_RC,
  502. IB_QPT_UC,
  503. IB_QPT_UD,
  504. IB_QPT_RAW_IPV6,
  505. IB_QPT_RAW_ETY
  506. };
  507. enum ib_qp_create_flags {
  508. IB_QP_CREATE_IPOIB_UD_LSO = 1 << 0,
  509. IB_QP_CREATE_BLOCK_MULTICAST_LOOPBACK = 1 << 1,
  510. };
  511. struct ib_qp_init_attr {
  512. void (*event_handler)(struct ib_event *, void *);
  513. void *qp_context;
  514. struct ib_cq *send_cq;
  515. struct ib_cq *recv_cq;
  516. struct ib_srq *srq;
  517. struct ib_qp_cap cap;
  518. enum ib_sig_type sq_sig_type;
  519. enum ib_qp_type qp_type;
  520. enum ib_qp_create_flags create_flags;
  521. u8 port_num; /* special QP types only */
  522. };
  523. enum ib_rnr_timeout {
  524. IB_RNR_TIMER_655_36 = 0,
  525. IB_RNR_TIMER_000_01 = 1,
  526. IB_RNR_TIMER_000_02 = 2,
  527. IB_RNR_TIMER_000_03 = 3,
  528. IB_RNR_TIMER_000_04 = 4,
  529. IB_RNR_TIMER_000_06 = 5,
  530. IB_RNR_TIMER_000_08 = 6,
  531. IB_RNR_TIMER_000_12 = 7,
  532. IB_RNR_TIMER_000_16 = 8,
  533. IB_RNR_TIMER_000_24 = 9,
  534. IB_RNR_TIMER_000_32 = 10,
  535. IB_RNR_TIMER_000_48 = 11,
  536. IB_RNR_TIMER_000_64 = 12,
  537. IB_RNR_TIMER_000_96 = 13,
  538. IB_RNR_TIMER_001_28 = 14,
  539. IB_RNR_TIMER_001_92 = 15,
  540. IB_RNR_TIMER_002_56 = 16,
  541. IB_RNR_TIMER_003_84 = 17,
  542. IB_RNR_TIMER_005_12 = 18,
  543. IB_RNR_TIMER_007_68 = 19,
  544. IB_RNR_TIMER_010_24 = 20,
  545. IB_RNR_TIMER_015_36 = 21,
  546. IB_RNR_TIMER_020_48 = 22,
  547. IB_RNR_TIMER_030_72 = 23,
  548. IB_RNR_TIMER_040_96 = 24,
  549. IB_RNR_TIMER_061_44 = 25,
  550. IB_RNR_TIMER_081_92 = 26,
  551. IB_RNR_TIMER_122_88 = 27,
  552. IB_RNR_TIMER_163_84 = 28,
  553. IB_RNR_TIMER_245_76 = 29,
  554. IB_RNR_TIMER_327_68 = 30,
  555. IB_RNR_TIMER_491_52 = 31
  556. };
  557. enum ib_qp_attr_mask {
  558. IB_QP_STATE = 1,
  559. IB_QP_CUR_STATE = (1<<1),
  560. IB_QP_EN_SQD_ASYNC_NOTIFY = (1<<2),
  561. IB_QP_ACCESS_FLAGS = (1<<3),
  562. IB_QP_PKEY_INDEX = (1<<4),
  563. IB_QP_PORT = (1<<5),
  564. IB_QP_QKEY = (1<<6),
  565. IB_QP_AV = (1<<7),
  566. IB_QP_PATH_MTU = (1<<8),
  567. IB_QP_TIMEOUT = (1<<9),
  568. IB_QP_RETRY_CNT = (1<<10),
  569. IB_QP_RNR_RETRY = (1<<11),
  570. IB_QP_RQ_PSN = (1<<12),
  571. IB_QP_MAX_QP_RD_ATOMIC = (1<<13),
  572. IB_QP_ALT_PATH = (1<<14),
  573. IB_QP_MIN_RNR_TIMER = (1<<15),
  574. IB_QP_SQ_PSN = (1<<16),
  575. IB_QP_MAX_DEST_RD_ATOMIC = (1<<17),
  576. IB_QP_PATH_MIG_STATE = (1<<18),
  577. IB_QP_CAP = (1<<19),
  578. IB_QP_DEST_QPN = (1<<20)
  579. };
  580. enum ib_qp_state {
  581. IB_QPS_RESET,
  582. IB_QPS_INIT,
  583. IB_QPS_RTR,
  584. IB_QPS_RTS,
  585. IB_QPS_SQD,
  586. IB_QPS_SQE,
  587. IB_QPS_ERR
  588. };
  589. enum ib_mig_state {
  590. IB_MIG_MIGRATED,
  591. IB_MIG_REARM,
  592. IB_MIG_ARMED
  593. };
  594. struct ib_qp_attr {
  595. enum ib_qp_state qp_state;
  596. enum ib_qp_state cur_qp_state;
  597. enum ib_mtu path_mtu;
  598. enum ib_mig_state path_mig_state;
  599. u32 qkey;
  600. u32 rq_psn;
  601. u32 sq_psn;
  602. u32 dest_qp_num;
  603. int qp_access_flags;
  604. struct ib_qp_cap cap;
  605. struct ib_ah_attr ah_attr;
  606. struct ib_ah_attr alt_ah_attr;
  607. u16 pkey_index;
  608. u16 alt_pkey_index;
  609. u8 en_sqd_async_notify;
  610. u8 sq_draining;
  611. u8 max_rd_atomic;
  612. u8 max_dest_rd_atomic;
  613. u8 min_rnr_timer;
  614. u8 port_num;
  615. u8 timeout;
  616. u8 retry_cnt;
  617. u8 rnr_retry;
  618. u8 alt_port_num;
  619. u8 alt_timeout;
  620. };
  621. enum ib_wr_opcode {
  622. IB_WR_RDMA_WRITE,
  623. IB_WR_RDMA_WRITE_WITH_IMM,
  624. IB_WR_SEND,
  625. IB_WR_SEND_WITH_IMM,
  626. IB_WR_RDMA_READ,
  627. IB_WR_ATOMIC_CMP_AND_SWP,
  628. IB_WR_ATOMIC_FETCH_AND_ADD,
  629. IB_WR_LSO,
  630. IB_WR_SEND_WITH_INV,
  631. IB_WR_RDMA_READ_WITH_INV,
  632. IB_WR_LOCAL_INV,
  633. IB_WR_FAST_REG_MR,
  634. };
  635. enum ib_send_flags {
  636. IB_SEND_FENCE = 1,
  637. IB_SEND_SIGNALED = (1<<1),
  638. IB_SEND_SOLICITED = (1<<2),
  639. IB_SEND_INLINE = (1<<3),
  640. IB_SEND_IP_CSUM = (1<<4)
  641. };
  642. struct ib_sge {
  643. u64 addr;
  644. u32 length;
  645. u32 lkey;
  646. };
  647. struct ib_fast_reg_page_list {
  648. struct ib_device *device;
  649. u64 *page_list;
  650. unsigned int max_page_list_len;
  651. };
  652. struct ib_send_wr {
  653. struct ib_send_wr *next;
  654. u64 wr_id;
  655. struct ib_sge *sg_list;
  656. int num_sge;
  657. enum ib_wr_opcode opcode;
  658. int send_flags;
  659. union {
  660. __be32 imm_data;
  661. u32 invalidate_rkey;
  662. } ex;
  663. union {
  664. struct {
  665. u64 remote_addr;
  666. u32 rkey;
  667. } rdma;
  668. struct {
  669. u64 remote_addr;
  670. u64 compare_add;
  671. u64 swap;
  672. u32 rkey;
  673. } atomic;
  674. struct {
  675. struct ib_ah *ah;
  676. void *header;
  677. int hlen;
  678. int mss;
  679. u32 remote_qpn;
  680. u32 remote_qkey;
  681. u16 pkey_index; /* valid for GSI only */
  682. u8 port_num; /* valid for DR SMPs on switch only */
  683. } ud;
  684. struct {
  685. u64 iova_start;
  686. struct ib_fast_reg_page_list *page_list;
  687. unsigned int page_shift;
  688. unsigned int page_list_len;
  689. u32 length;
  690. int access_flags;
  691. u32 rkey;
  692. } fast_reg;
  693. } wr;
  694. };
  695. struct ib_recv_wr {
  696. struct ib_recv_wr *next;
  697. u64 wr_id;
  698. struct ib_sge *sg_list;
  699. int num_sge;
  700. };
  701. enum ib_access_flags {
  702. IB_ACCESS_LOCAL_WRITE = 1,
  703. IB_ACCESS_REMOTE_WRITE = (1<<1),
  704. IB_ACCESS_REMOTE_READ = (1<<2),
  705. IB_ACCESS_REMOTE_ATOMIC = (1<<3),
  706. IB_ACCESS_MW_BIND = (1<<4)
  707. };
  708. struct ib_phys_buf {
  709. u64 addr;
  710. u64 size;
  711. };
  712. struct ib_mr_attr {
  713. struct ib_pd *pd;
  714. u64 device_virt_addr;
  715. u64 size;
  716. int mr_access_flags;
  717. u32 lkey;
  718. u32 rkey;
  719. };
  720. enum ib_mr_rereg_flags {
  721. IB_MR_REREG_TRANS = 1,
  722. IB_MR_REREG_PD = (1<<1),
  723. IB_MR_REREG_ACCESS = (1<<2)
  724. };
  725. struct ib_mw_bind {
  726. struct ib_mr *mr;
  727. u64 wr_id;
  728. u64 addr;
  729. u32 length;
  730. int send_flags;
  731. int mw_access_flags;
  732. };
  733. struct ib_fmr_attr {
  734. int max_pages;
  735. int max_maps;
  736. u8 page_shift;
  737. };
  738. struct ib_ucontext {
  739. struct ib_device *device;
  740. struct list_head pd_list;
  741. struct list_head mr_list;
  742. struct list_head mw_list;
  743. struct list_head cq_list;
  744. struct list_head qp_list;
  745. struct list_head srq_list;
  746. struct list_head ah_list;
  747. int closing;
  748. };
  749. struct ib_uobject {
  750. u64 user_handle; /* handle given to us by userspace */
  751. struct ib_ucontext *context; /* associated user context */
  752. void *object; /* containing object */
  753. struct list_head list; /* link to context's list */
  754. int id; /* index into kernel idr */
  755. struct kref ref;
  756. struct rw_semaphore mutex; /* protects .live */
  757. int live;
  758. };
  759. struct ib_udata {
  760. void __user *inbuf;
  761. void __user *outbuf;
  762. size_t inlen;
  763. size_t outlen;
  764. };
  765. struct ib_pd {
  766. struct ib_device *device;
  767. struct ib_uobject *uobject;
  768. atomic_t usecnt; /* count all resources */
  769. };
  770. struct ib_ah {
  771. struct ib_device *device;
  772. struct ib_pd *pd;
  773. struct ib_uobject *uobject;
  774. };
  775. typedef void (*ib_comp_handler)(struct ib_cq *cq, void *cq_context);
  776. struct ib_cq {
  777. struct ib_device *device;
  778. struct ib_uobject *uobject;
  779. ib_comp_handler comp_handler;
  780. void (*event_handler)(struct ib_event *, void *);
  781. void *cq_context;
  782. int cqe;
  783. atomic_t usecnt; /* count number of work queues */
  784. };
  785. struct ib_srq {
  786. struct ib_device *device;
  787. struct ib_pd *pd;
  788. struct ib_uobject *uobject;
  789. void (*event_handler)(struct ib_event *, void *);
  790. void *srq_context;
  791. atomic_t usecnt;
  792. };
  793. struct ib_qp {
  794. struct ib_device *device;
  795. struct ib_pd *pd;
  796. struct ib_cq *send_cq;
  797. struct ib_cq *recv_cq;
  798. struct ib_srq *srq;
  799. struct ib_uobject *uobject;
  800. void (*event_handler)(struct ib_event *, void *);
  801. void *qp_context;
  802. u32 qp_num;
  803. enum ib_qp_type qp_type;
  804. };
  805. struct ib_mr {
  806. struct ib_device *device;
  807. struct ib_pd *pd;
  808. struct ib_uobject *uobject;
  809. u32 lkey;
  810. u32 rkey;
  811. atomic_t usecnt; /* count number of MWs */
  812. };
  813. struct ib_mw {
  814. struct ib_device *device;
  815. struct ib_pd *pd;
  816. struct ib_uobject *uobject;
  817. u32 rkey;
  818. };
  819. struct ib_fmr {
  820. struct ib_device *device;
  821. struct ib_pd *pd;
  822. struct list_head list;
  823. u32 lkey;
  824. u32 rkey;
  825. };
  826. struct ib_mad;
  827. struct ib_grh;
  828. enum ib_process_mad_flags {
  829. IB_MAD_IGNORE_MKEY = 1,
  830. IB_MAD_IGNORE_BKEY = 2,
  831. IB_MAD_IGNORE_ALL = IB_MAD_IGNORE_MKEY | IB_MAD_IGNORE_BKEY
  832. };
  833. enum ib_mad_result {
  834. IB_MAD_RESULT_FAILURE = 0, /* (!SUCCESS is the important flag) */
  835. IB_MAD_RESULT_SUCCESS = 1 << 0, /* MAD was successfully processed */
  836. IB_MAD_RESULT_REPLY = 1 << 1, /* Reply packet needs to be sent */
  837. IB_MAD_RESULT_CONSUMED = 1 << 2 /* Packet consumed: stop processing */
  838. };
  839. #define IB_DEVICE_NAME_MAX 64
  840. struct ib_cache {
  841. rwlock_t lock;
  842. struct ib_event_handler event_handler;
  843. struct ib_pkey_cache **pkey_cache;
  844. struct ib_gid_cache **gid_cache;
  845. u8 *lmc_cache;
  846. };
  847. struct ib_dma_mapping_ops {
  848. int (*mapping_error)(struct ib_device *dev,
  849. u64 dma_addr);
  850. u64 (*map_single)(struct ib_device *dev,
  851. void *ptr, size_t size,
  852. enum dma_data_direction direction);
  853. void (*unmap_single)(struct ib_device *dev,
  854. u64 addr, size_t size,
  855. enum dma_data_direction direction);
  856. u64 (*map_page)(struct ib_device *dev,
  857. struct page *page, unsigned long offset,
  858. size_t size,
  859. enum dma_data_direction direction);
  860. void (*unmap_page)(struct ib_device *dev,
  861. u64 addr, size_t size,
  862. enum dma_data_direction direction);
  863. int (*map_sg)(struct ib_device *dev,
  864. struct scatterlist *sg, int nents,
  865. enum dma_data_direction direction);
  866. void (*unmap_sg)(struct ib_device *dev,
  867. struct scatterlist *sg, int nents,
  868. enum dma_data_direction direction);
  869. u64 (*dma_address)(struct ib_device *dev,
  870. struct scatterlist *sg);
  871. unsigned int (*dma_len)(struct ib_device *dev,
  872. struct scatterlist *sg);
  873. void (*sync_single_for_cpu)(struct ib_device *dev,
  874. u64 dma_handle,
  875. size_t size,
  876. enum dma_data_direction dir);
  877. void (*sync_single_for_device)(struct ib_device *dev,
  878. u64 dma_handle,
  879. size_t size,
  880. enum dma_data_direction dir);
  881. void *(*alloc_coherent)(struct ib_device *dev,
  882. size_t size,
  883. u64 *dma_handle,
  884. gfp_t flag);
  885. void (*free_coherent)(struct ib_device *dev,
  886. size_t size, void *cpu_addr,
  887. u64 dma_handle);
  888. };
  889. struct iw_cm_verbs;
  890. struct ib_device {
  891. struct device *dma_device;
  892. char name[IB_DEVICE_NAME_MAX];
  893. struct list_head event_handler_list;
  894. spinlock_t event_handler_lock;
  895. struct list_head core_list;
  896. struct list_head client_data_list;
  897. spinlock_t client_data_lock;
  898. struct ib_cache cache;
  899. int *pkey_tbl_len;
  900. int *gid_tbl_len;
  901. int num_comp_vectors;
  902. struct iw_cm_verbs *iwcm;
  903. int (*get_protocol_stats)(struct ib_device *device,
  904. union rdma_protocol_stats *stats);
  905. int (*query_device)(struct ib_device *device,
  906. struct ib_device_attr *device_attr);
  907. int (*query_port)(struct ib_device *device,
  908. u8 port_num,
  909. struct ib_port_attr *port_attr);
  910. int (*query_gid)(struct ib_device *device,
  911. u8 port_num, int index,
  912. union ib_gid *gid);
  913. int (*query_pkey)(struct ib_device *device,
  914. u8 port_num, u16 index, u16 *pkey);
  915. int (*modify_device)(struct ib_device *device,
  916. int device_modify_mask,
  917. struct ib_device_modify *device_modify);
  918. int (*modify_port)(struct ib_device *device,
  919. u8 port_num, int port_modify_mask,
  920. struct ib_port_modify *port_modify);
  921. struct ib_ucontext * (*alloc_ucontext)(struct ib_device *device,
  922. struct ib_udata *udata);
  923. int (*dealloc_ucontext)(struct ib_ucontext *context);
  924. int (*mmap)(struct ib_ucontext *context,
  925. struct vm_area_struct *vma);
  926. struct ib_pd * (*alloc_pd)(struct ib_device *device,
  927. struct ib_ucontext *context,
  928. struct ib_udata *udata);
  929. int (*dealloc_pd)(struct ib_pd *pd);
  930. struct ib_ah * (*create_ah)(struct ib_pd *pd,
  931. struct ib_ah_attr *ah_attr);
  932. int (*modify_ah)(struct ib_ah *ah,
  933. struct ib_ah_attr *ah_attr);
  934. int (*query_ah)(struct ib_ah *ah,
  935. struct ib_ah_attr *ah_attr);
  936. int (*destroy_ah)(struct ib_ah *ah);
  937. struct ib_srq * (*create_srq)(struct ib_pd *pd,
  938. struct ib_srq_init_attr *srq_init_attr,
  939. struct ib_udata *udata);
  940. int (*modify_srq)(struct ib_srq *srq,
  941. struct ib_srq_attr *srq_attr,
  942. enum ib_srq_attr_mask srq_attr_mask,
  943. struct ib_udata *udata);
  944. int (*query_srq)(struct ib_srq *srq,
  945. struct ib_srq_attr *srq_attr);
  946. int (*destroy_srq)(struct ib_srq *srq);
  947. int (*post_srq_recv)(struct ib_srq *srq,
  948. struct ib_recv_wr *recv_wr,
  949. struct ib_recv_wr **bad_recv_wr);
  950. struct ib_qp * (*create_qp)(struct ib_pd *pd,
  951. struct ib_qp_init_attr *qp_init_attr,
  952. struct ib_udata *udata);
  953. int (*modify_qp)(struct ib_qp *qp,
  954. struct ib_qp_attr *qp_attr,
  955. int qp_attr_mask,
  956. struct ib_udata *udata);
  957. int (*query_qp)(struct ib_qp *qp,
  958. struct ib_qp_attr *qp_attr,
  959. int qp_attr_mask,
  960. struct ib_qp_init_attr *qp_init_attr);
  961. int (*destroy_qp)(struct ib_qp *qp);
  962. int (*post_send)(struct ib_qp *qp,
  963. struct ib_send_wr *send_wr,
  964. struct ib_send_wr **bad_send_wr);
  965. int (*post_recv)(struct ib_qp *qp,
  966. struct ib_recv_wr *recv_wr,
  967. struct ib_recv_wr **bad_recv_wr);
  968. struct ib_cq * (*create_cq)(struct ib_device *device, int cqe,
  969. int comp_vector,
  970. struct ib_ucontext *context,
  971. struct ib_udata *udata);
  972. int (*modify_cq)(struct ib_cq *cq, u16 cq_count,
  973. u16 cq_period);
  974. int (*destroy_cq)(struct ib_cq *cq);
  975. int (*resize_cq)(struct ib_cq *cq, int cqe,
  976. struct ib_udata *udata);
  977. int (*poll_cq)(struct ib_cq *cq, int num_entries,
  978. struct ib_wc *wc);
  979. int (*peek_cq)(struct ib_cq *cq, int wc_cnt);
  980. int (*req_notify_cq)(struct ib_cq *cq,
  981. enum ib_cq_notify_flags flags);
  982. int (*req_ncomp_notif)(struct ib_cq *cq,
  983. int wc_cnt);
  984. struct ib_mr * (*get_dma_mr)(struct ib_pd *pd,
  985. int mr_access_flags);
  986. struct ib_mr * (*reg_phys_mr)(struct ib_pd *pd,
  987. struct ib_phys_buf *phys_buf_array,
  988. int num_phys_buf,
  989. int mr_access_flags,
  990. u64 *iova_start);
  991. struct ib_mr * (*reg_user_mr)(struct ib_pd *pd,
  992. u64 start, u64 length,
  993. u64 virt_addr,
  994. int mr_access_flags,
  995. struct ib_udata *udata);
  996. int (*query_mr)(struct ib_mr *mr,
  997. struct ib_mr_attr *mr_attr);
  998. int (*dereg_mr)(struct ib_mr *mr);
  999. struct ib_mr * (*alloc_fast_reg_mr)(struct ib_pd *pd,
  1000. int max_page_list_len);
  1001. struct ib_fast_reg_page_list * (*alloc_fast_reg_page_list)(struct ib_device *device,
  1002. int page_list_len);
  1003. void (*free_fast_reg_page_list)(struct ib_fast_reg_page_list *page_list);
  1004. int (*rereg_phys_mr)(struct ib_mr *mr,
  1005. int mr_rereg_mask,
  1006. struct ib_pd *pd,
  1007. struct ib_phys_buf *phys_buf_array,
  1008. int num_phys_buf,
  1009. int mr_access_flags,
  1010. u64 *iova_start);
  1011. struct ib_mw * (*alloc_mw)(struct ib_pd *pd);
  1012. int (*bind_mw)(struct ib_qp *qp,
  1013. struct ib_mw *mw,
  1014. struct ib_mw_bind *mw_bind);
  1015. int (*dealloc_mw)(struct ib_mw *mw);
  1016. struct ib_fmr * (*alloc_fmr)(struct ib_pd *pd,
  1017. int mr_access_flags,
  1018. struct ib_fmr_attr *fmr_attr);
  1019. int (*map_phys_fmr)(struct ib_fmr *fmr,
  1020. u64 *page_list, int list_len,
  1021. u64 iova);
  1022. int (*unmap_fmr)(struct list_head *fmr_list);
  1023. int (*dealloc_fmr)(struct ib_fmr *fmr);
  1024. int (*attach_mcast)(struct ib_qp *qp,
  1025. union ib_gid *gid,
  1026. u16 lid);
  1027. int (*detach_mcast)(struct ib_qp *qp,
  1028. union ib_gid *gid,
  1029. u16 lid);
  1030. int (*process_mad)(struct ib_device *device,
  1031. int process_mad_flags,
  1032. u8 port_num,
  1033. struct ib_wc *in_wc,
  1034. struct ib_grh *in_grh,
  1035. struct ib_mad *in_mad,
  1036. struct ib_mad *out_mad);
  1037. struct ib_dma_mapping_ops *dma_ops;
  1038. struct module *owner;
  1039. struct device dev;
  1040. struct kobject *ports_parent;
  1041. struct list_head port_list;
  1042. enum {
  1043. IB_DEV_UNINITIALIZED,
  1044. IB_DEV_REGISTERED,
  1045. IB_DEV_UNREGISTERED
  1046. } reg_state;
  1047. u64 uverbs_cmd_mask;
  1048. int uverbs_abi_ver;
  1049. char node_desc[64];
  1050. __be64 node_guid;
  1051. u32 local_dma_lkey;
  1052. u8 node_type;
  1053. u8 phys_port_cnt;
  1054. };
  1055. struct ib_client {
  1056. char *name;
  1057. void (*add) (struct ib_device *);
  1058. void (*remove)(struct ib_device *);
  1059. struct list_head list;
  1060. };
  1061. struct ib_device *ib_alloc_device(size_t size);
  1062. void ib_dealloc_device(struct ib_device *device);
  1063. int ib_register_device (struct ib_device *device);
  1064. void ib_unregister_device(struct ib_device *device);
  1065. int ib_register_client (struct ib_client *client);
  1066. void ib_unregister_client(struct ib_client *client);
  1067. void *ib_get_client_data(struct ib_device *device, struct ib_client *client);
  1068. void ib_set_client_data(struct ib_device *device, struct ib_client *client,
  1069. void *data);
  1070. static inline int ib_copy_from_udata(void *dest, struct ib_udata *udata, size_t len)
  1071. {
  1072. return copy_from_user(dest, udata->inbuf, len) ? -EFAULT : 0;
  1073. }
  1074. static inline int ib_copy_to_udata(struct ib_udata *udata, void *src, size_t len)
  1075. {
  1076. return copy_to_user(udata->outbuf, src, len) ? -EFAULT : 0;
  1077. }
  1078. /**
  1079. * ib_modify_qp_is_ok - Check that the supplied attribute mask
  1080. * contains all required attributes and no attributes not allowed for
  1081. * the given QP state transition.
  1082. * @cur_state: Current QP state
  1083. * @next_state: Next QP state
  1084. * @type: QP type
  1085. * @mask: Mask of supplied QP attributes
  1086. *
  1087. * This function is a helper function that a low-level driver's
  1088. * modify_qp method can use to validate the consumer's input. It
  1089. * checks that cur_state and next_state are valid QP states, that a
  1090. * transition from cur_state to next_state is allowed by the IB spec,
  1091. * and that the attribute mask supplied is allowed for the transition.
  1092. */
  1093. int ib_modify_qp_is_ok(enum ib_qp_state cur_state, enum ib_qp_state next_state,
  1094. enum ib_qp_type type, enum ib_qp_attr_mask mask);
  1095. int ib_register_event_handler (struct ib_event_handler *event_handler);
  1096. int ib_unregister_event_handler(struct ib_event_handler *event_handler);
  1097. void ib_dispatch_event(struct ib_event *event);
  1098. int ib_query_device(struct ib_device *device,
  1099. struct ib_device_attr *device_attr);
  1100. int ib_query_port(struct ib_device *device,
  1101. u8 port_num, struct ib_port_attr *port_attr);
  1102. int ib_query_gid(struct ib_device *device,
  1103. u8 port_num, int index, union ib_gid *gid);
  1104. int ib_query_pkey(struct ib_device *device,
  1105. u8 port_num, u16 index, u16 *pkey);
  1106. int ib_modify_device(struct ib_device *device,
  1107. int device_modify_mask,
  1108. struct ib_device_modify *device_modify);
  1109. int ib_modify_port(struct ib_device *device,
  1110. u8 port_num, int port_modify_mask,
  1111. struct ib_port_modify *port_modify);
  1112. int ib_find_gid(struct ib_device *device, union ib_gid *gid,
  1113. u8 *port_num, u16 *index);
  1114. int ib_find_pkey(struct ib_device *device,
  1115. u8 port_num, u16 pkey, u16 *index);
  1116. /**
  1117. * ib_alloc_pd - Allocates an unused protection domain.
  1118. * @device: The device on which to allocate the protection domain.
  1119. *
  1120. * A protection domain object provides an association between QPs, shared
  1121. * receive queues, address handles, memory regions, and memory windows.
  1122. */
  1123. struct ib_pd *ib_alloc_pd(struct ib_device *device);
  1124. /**
  1125. * ib_dealloc_pd - Deallocates a protection domain.
  1126. * @pd: The protection domain to deallocate.
  1127. */
  1128. int ib_dealloc_pd(struct ib_pd *pd);
  1129. /**
  1130. * ib_create_ah - Creates an address handle for the given address vector.
  1131. * @pd: The protection domain associated with the address handle.
  1132. * @ah_attr: The attributes of the address vector.
  1133. *
  1134. * The address handle is used to reference a local or global destination
  1135. * in all UD QP post sends.
  1136. */
  1137. struct ib_ah *ib_create_ah(struct ib_pd *pd, struct ib_ah_attr *ah_attr);
  1138. /**
  1139. * ib_init_ah_from_wc - Initializes address handle attributes from a
  1140. * work completion.
  1141. * @device: Device on which the received message arrived.
  1142. * @port_num: Port on which the received message arrived.
  1143. * @wc: Work completion associated with the received message.
  1144. * @grh: References the received global route header. This parameter is
  1145. * ignored unless the work completion indicates that the GRH is valid.
  1146. * @ah_attr: Returned attributes that can be used when creating an address
  1147. * handle for replying to the message.
  1148. */
  1149. int ib_init_ah_from_wc(struct ib_device *device, u8 port_num, struct ib_wc *wc,
  1150. struct ib_grh *grh, struct ib_ah_attr *ah_attr);
  1151. /**
  1152. * ib_create_ah_from_wc - Creates an address handle associated with the
  1153. * sender of the specified work completion.
  1154. * @pd: The protection domain associated with the address handle.
  1155. * @wc: Work completion information associated with a received message.
  1156. * @grh: References the received global route header. This parameter is
  1157. * ignored unless the work completion indicates that the GRH is valid.
  1158. * @port_num: The outbound port number to associate with the address.
  1159. *
  1160. * The address handle is used to reference a local or global destination
  1161. * in all UD QP post sends.
  1162. */
  1163. struct ib_ah *ib_create_ah_from_wc(struct ib_pd *pd, struct ib_wc *wc,
  1164. struct ib_grh *grh, u8 port_num);
  1165. /**
  1166. * ib_modify_ah - Modifies the address vector associated with an address
  1167. * handle.
  1168. * @ah: The address handle to modify.
  1169. * @ah_attr: The new address vector attributes to associate with the
  1170. * address handle.
  1171. */
  1172. int ib_modify_ah(struct ib_ah *ah, struct ib_ah_attr *ah_attr);
  1173. /**
  1174. * ib_query_ah - Queries the address vector associated with an address
  1175. * handle.
  1176. * @ah: The address handle to query.
  1177. * @ah_attr: The address vector attributes associated with the address
  1178. * handle.
  1179. */
  1180. int ib_query_ah(struct ib_ah *ah, struct ib_ah_attr *ah_attr);
  1181. /**
  1182. * ib_destroy_ah - Destroys an address handle.
  1183. * @ah: The address handle to destroy.
  1184. */
  1185. int ib_destroy_ah(struct ib_ah *ah);
  1186. /**
  1187. * ib_create_srq - Creates a SRQ associated with the specified protection
  1188. * domain.
  1189. * @pd: The protection domain associated with the SRQ.
  1190. * @srq_init_attr: A list of initial attributes required to create the
  1191. * SRQ. If SRQ creation succeeds, then the attributes are updated to
  1192. * the actual capabilities of the created SRQ.
  1193. *
  1194. * srq_attr->max_wr and srq_attr->max_sge are read the determine the
  1195. * requested size of the SRQ, and set to the actual values allocated
  1196. * on return. If ib_create_srq() succeeds, then max_wr and max_sge
  1197. * will always be at least as large as the requested values.
  1198. */
  1199. struct ib_srq *ib_create_srq(struct ib_pd *pd,
  1200. struct ib_srq_init_attr *srq_init_attr);
  1201. /**
  1202. * ib_modify_srq - Modifies the attributes for the specified SRQ.
  1203. * @srq: The SRQ to modify.
  1204. * @srq_attr: On input, specifies the SRQ attributes to modify. On output,
  1205. * the current values of selected SRQ attributes are returned.
  1206. * @srq_attr_mask: A bit-mask used to specify which attributes of the SRQ
  1207. * are being modified.
  1208. *
  1209. * The mask may contain IB_SRQ_MAX_WR to resize the SRQ and/or
  1210. * IB_SRQ_LIMIT to set the SRQ's limit and request notification when
  1211. * the number of receives queued drops below the limit.
  1212. */
  1213. int ib_modify_srq(struct ib_srq *srq,
  1214. struct ib_srq_attr *srq_attr,
  1215. enum ib_srq_attr_mask srq_attr_mask);
  1216. /**
  1217. * ib_query_srq - Returns the attribute list and current values for the
  1218. * specified SRQ.
  1219. * @srq: The SRQ to query.
  1220. * @srq_attr: The attributes of the specified SRQ.
  1221. */
  1222. int ib_query_srq(struct ib_srq *srq,
  1223. struct ib_srq_attr *srq_attr);
  1224. /**
  1225. * ib_destroy_srq - Destroys the specified SRQ.
  1226. * @srq: The SRQ to destroy.
  1227. */
  1228. int ib_destroy_srq(struct ib_srq *srq);
  1229. /**
  1230. * ib_post_srq_recv - Posts a list of work requests to the specified SRQ.
  1231. * @srq: The SRQ to post the work request on.
  1232. * @recv_wr: A list of work requests to post on the receive queue.
  1233. * @bad_recv_wr: On an immediate failure, this parameter will reference
  1234. * the work request that failed to be posted on the QP.
  1235. */
  1236. static inline int ib_post_srq_recv(struct ib_srq *srq,
  1237. struct ib_recv_wr *recv_wr,
  1238. struct ib_recv_wr **bad_recv_wr)
  1239. {
  1240. return srq->device->post_srq_recv(srq, recv_wr, bad_recv_wr);
  1241. }
  1242. /**
  1243. * ib_create_qp - Creates a QP associated with the specified protection
  1244. * domain.
  1245. * @pd: The protection domain associated with the QP.
  1246. * @qp_init_attr: A list of initial attributes required to create the
  1247. * QP. If QP creation succeeds, then the attributes are updated to
  1248. * the actual capabilities of the created QP.
  1249. */
  1250. struct ib_qp *ib_create_qp(struct ib_pd *pd,
  1251. struct ib_qp_init_attr *qp_init_attr);
  1252. /**
  1253. * ib_modify_qp - Modifies the attributes for the specified QP and then
  1254. * transitions the QP to the given state.
  1255. * @qp: The QP to modify.
  1256. * @qp_attr: On input, specifies the QP attributes to modify. On output,
  1257. * the current values of selected QP attributes are returned.
  1258. * @qp_attr_mask: A bit-mask used to specify which attributes of the QP
  1259. * are being modified.
  1260. */
  1261. int ib_modify_qp(struct ib_qp *qp,
  1262. struct ib_qp_attr *qp_attr,
  1263. int qp_attr_mask);
  1264. /**
  1265. * ib_query_qp - Returns the attribute list and current values for the
  1266. * specified QP.
  1267. * @qp: The QP to query.
  1268. * @qp_attr: The attributes of the specified QP.
  1269. * @qp_attr_mask: A bit-mask used to select specific attributes to query.
  1270. * @qp_init_attr: Additional attributes of the selected QP.
  1271. *
  1272. * The qp_attr_mask may be used to limit the query to gathering only the
  1273. * selected attributes.
  1274. */
  1275. int ib_query_qp(struct ib_qp *qp,
  1276. struct ib_qp_attr *qp_attr,
  1277. int qp_attr_mask,
  1278. struct ib_qp_init_attr *qp_init_attr);
  1279. /**
  1280. * ib_destroy_qp - Destroys the specified QP.
  1281. * @qp: The QP to destroy.
  1282. */
  1283. int ib_destroy_qp(struct ib_qp *qp);
  1284. /**
  1285. * ib_post_send - Posts a list of work requests to the send queue of
  1286. * the specified QP.
  1287. * @qp: The QP to post the work request on.
  1288. * @send_wr: A list of work requests to post on the send queue.
  1289. * @bad_send_wr: On an immediate failure, this parameter will reference
  1290. * the work request that failed to be posted on the QP.
  1291. */
  1292. static inline int ib_post_send(struct ib_qp *qp,
  1293. struct ib_send_wr *send_wr,
  1294. struct ib_send_wr **bad_send_wr)
  1295. {
  1296. return qp->device->post_send(qp, send_wr, bad_send_wr);
  1297. }
  1298. /**
  1299. * ib_post_recv - Posts a list of work requests to the receive queue of
  1300. * the specified QP.
  1301. * @qp: The QP to post the work request on.
  1302. * @recv_wr: A list of work requests to post on the receive queue.
  1303. * @bad_recv_wr: On an immediate failure, this parameter will reference
  1304. * the work request that failed to be posted on the QP.
  1305. */
  1306. static inline int ib_post_recv(struct ib_qp *qp,
  1307. struct ib_recv_wr *recv_wr,
  1308. struct ib_recv_wr **bad_recv_wr)
  1309. {
  1310. return qp->device->post_recv(qp, recv_wr, bad_recv_wr);
  1311. }
  1312. /**
  1313. * ib_create_cq - Creates a CQ on the specified device.
  1314. * @device: The device on which to create the CQ.
  1315. * @comp_handler: A user-specified callback that is invoked when a
  1316. * completion event occurs on the CQ.
  1317. * @event_handler: A user-specified callback that is invoked when an
  1318. * asynchronous event not associated with a completion occurs on the CQ.
  1319. * @cq_context: Context associated with the CQ returned to the user via
  1320. * the associated completion and event handlers.
  1321. * @cqe: The minimum size of the CQ.
  1322. * @comp_vector - Completion vector used to signal completion events.
  1323. * Must be >= 0 and < context->num_comp_vectors.
  1324. *
  1325. * Users can examine the cq structure to determine the actual CQ size.
  1326. */
  1327. struct ib_cq *ib_create_cq(struct ib_device *device,
  1328. ib_comp_handler comp_handler,
  1329. void (*event_handler)(struct ib_event *, void *),
  1330. void *cq_context, int cqe, int comp_vector);
  1331. /**
  1332. * ib_resize_cq - Modifies the capacity of the CQ.
  1333. * @cq: The CQ to resize.
  1334. * @cqe: The minimum size of the CQ.
  1335. *
  1336. * Users can examine the cq structure to determine the actual CQ size.
  1337. */
  1338. int ib_resize_cq(struct ib_cq *cq, int cqe);
  1339. /**
  1340. * ib_modify_cq - Modifies moderation params of the CQ
  1341. * @cq: The CQ to modify.
  1342. * @cq_count: number of CQEs that will trigger an event
  1343. * @cq_period: max period of time in usec before triggering an event
  1344. *
  1345. */
  1346. int ib_modify_cq(struct ib_cq *cq, u16 cq_count, u16 cq_period);
  1347. /**
  1348. * ib_destroy_cq - Destroys the specified CQ.
  1349. * @cq: The CQ to destroy.
  1350. */
  1351. int ib_destroy_cq(struct ib_cq *cq);
  1352. /**
  1353. * ib_poll_cq - poll a CQ for completion(s)
  1354. * @cq:the CQ being polled
  1355. * @num_entries:maximum number of completions to return
  1356. * @wc:array of at least @num_entries &struct ib_wc where completions
  1357. * will be returned
  1358. *
  1359. * Poll a CQ for (possibly multiple) completions. If the return value
  1360. * is < 0, an error occurred. If the return value is >= 0, it is the
  1361. * number of completions returned. If the return value is
  1362. * non-negative and < num_entries, then the CQ was emptied.
  1363. */
  1364. static inline int ib_poll_cq(struct ib_cq *cq, int num_entries,
  1365. struct ib_wc *wc)
  1366. {
  1367. return cq->device->poll_cq(cq, num_entries, wc);
  1368. }
  1369. /**
  1370. * ib_peek_cq - Returns the number of unreaped completions currently
  1371. * on the specified CQ.
  1372. * @cq: The CQ to peek.
  1373. * @wc_cnt: A minimum number of unreaped completions to check for.
  1374. *
  1375. * If the number of unreaped completions is greater than or equal to wc_cnt,
  1376. * this function returns wc_cnt, otherwise, it returns the actual number of
  1377. * unreaped completions.
  1378. */
  1379. int ib_peek_cq(struct ib_cq *cq, int wc_cnt);
  1380. /**
  1381. * ib_req_notify_cq - Request completion notification on a CQ.
  1382. * @cq: The CQ to generate an event for.
  1383. * @flags:
  1384. * Must contain exactly one of %IB_CQ_SOLICITED or %IB_CQ_NEXT_COMP
  1385. * to request an event on the next solicited event or next work
  1386. * completion at any type, respectively. %IB_CQ_REPORT_MISSED_EVENTS
  1387. * may also be |ed in to request a hint about missed events, as
  1388. * described below.
  1389. *
  1390. * Return Value:
  1391. * < 0 means an error occurred while requesting notification
  1392. * == 0 means notification was requested successfully, and if
  1393. * IB_CQ_REPORT_MISSED_EVENTS was passed in, then no events
  1394. * were missed and it is safe to wait for another event. In
  1395. * this case is it guaranteed that any work completions added
  1396. * to the CQ since the last CQ poll will trigger a completion
  1397. * notification event.
  1398. * > 0 is only returned if IB_CQ_REPORT_MISSED_EVENTS was passed
  1399. * in. It means that the consumer must poll the CQ again to
  1400. * make sure it is empty to avoid missing an event because of a
  1401. * race between requesting notification and an entry being
  1402. * added to the CQ. This return value means it is possible
  1403. * (but not guaranteed) that a work completion has been added
  1404. * to the CQ since the last poll without triggering a
  1405. * completion notification event.
  1406. */
  1407. static inline int ib_req_notify_cq(struct ib_cq *cq,
  1408. enum ib_cq_notify_flags flags)
  1409. {
  1410. return cq->device->req_notify_cq(cq, flags);
  1411. }
  1412. /**
  1413. * ib_req_ncomp_notif - Request completion notification when there are
  1414. * at least the specified number of unreaped completions on the CQ.
  1415. * @cq: The CQ to generate an event for.
  1416. * @wc_cnt: The number of unreaped completions that should be on the
  1417. * CQ before an event is generated.
  1418. */
  1419. static inline int ib_req_ncomp_notif(struct ib_cq *cq, int wc_cnt)
  1420. {
  1421. return cq->device->req_ncomp_notif ?
  1422. cq->device->req_ncomp_notif(cq, wc_cnt) :
  1423. -ENOSYS;
  1424. }
  1425. /**
  1426. * ib_get_dma_mr - Returns a memory region for system memory that is
  1427. * usable for DMA.
  1428. * @pd: The protection domain associated with the memory region.
  1429. * @mr_access_flags: Specifies the memory access rights.
  1430. *
  1431. * Note that the ib_dma_*() functions defined below must be used
  1432. * to create/destroy addresses used with the Lkey or Rkey returned
  1433. * by ib_get_dma_mr().
  1434. */
  1435. struct ib_mr *ib_get_dma_mr(struct ib_pd *pd, int mr_access_flags);
  1436. /**
  1437. * ib_dma_mapping_error - check a DMA addr for error
  1438. * @dev: The device for which the dma_addr was created
  1439. * @dma_addr: The DMA address to check
  1440. */
  1441. static inline int ib_dma_mapping_error(struct ib_device *dev, u64 dma_addr)
  1442. {
  1443. if (dev->dma_ops)
  1444. return dev->dma_ops->mapping_error(dev, dma_addr);
  1445. return dma_mapping_error(dev->dma_device, dma_addr);
  1446. }
  1447. /**
  1448. * ib_dma_map_single - Map a kernel virtual address to DMA address
  1449. * @dev: The device for which the dma_addr is to be created
  1450. * @cpu_addr: The kernel virtual address
  1451. * @size: The size of the region in bytes
  1452. * @direction: The direction of the DMA
  1453. */
  1454. static inline u64 ib_dma_map_single(struct ib_device *dev,
  1455. void *cpu_addr, size_t size,
  1456. enum dma_data_direction direction)
  1457. {
  1458. if (dev->dma_ops)
  1459. return dev->dma_ops->map_single(dev, cpu_addr, size, direction);
  1460. return dma_map_single(dev->dma_device, cpu_addr, size, direction);
  1461. }
  1462. /**
  1463. * ib_dma_unmap_single - Destroy a mapping created by ib_dma_map_single()
  1464. * @dev: The device for which the DMA address was created
  1465. * @addr: The DMA address
  1466. * @size: The size of the region in bytes
  1467. * @direction: The direction of the DMA
  1468. */
  1469. static inline void ib_dma_unmap_single(struct ib_device *dev,
  1470. u64 addr, size_t size,
  1471. enum dma_data_direction direction)
  1472. {
  1473. if (dev->dma_ops)
  1474. dev->dma_ops->unmap_single(dev, addr, size, direction);
  1475. else
  1476. dma_unmap_single(dev->dma_device, addr, size, direction);
  1477. }
  1478. static inline u64 ib_dma_map_single_attrs(struct ib_device *dev,
  1479. void *cpu_addr, size_t size,
  1480. enum dma_data_direction direction,
  1481. struct dma_attrs *attrs)
  1482. {
  1483. return dma_map_single_attrs(dev->dma_device, cpu_addr, size,
  1484. direction, attrs);
  1485. }
  1486. static inline void ib_dma_unmap_single_attrs(struct ib_device *dev,
  1487. u64 addr, size_t size,
  1488. enum dma_data_direction direction,
  1489. struct dma_attrs *attrs)
  1490. {
  1491. return dma_unmap_single_attrs(dev->dma_device, addr, size,
  1492. direction, attrs);
  1493. }
  1494. /**
  1495. * ib_dma_map_page - Map a physical page to DMA address
  1496. * @dev: The device for which the dma_addr is to be created
  1497. * @page: The page to be mapped
  1498. * @offset: The offset within the page
  1499. * @size: The size of the region in bytes
  1500. * @direction: The direction of the DMA
  1501. */
  1502. static inline u64 ib_dma_map_page(struct ib_device *dev,
  1503. struct page *page,
  1504. unsigned long offset,
  1505. size_t size,
  1506. enum dma_data_direction direction)
  1507. {
  1508. if (dev->dma_ops)
  1509. return dev->dma_ops->map_page(dev, page, offset, size, direction);
  1510. return dma_map_page(dev->dma_device, page, offset, size, direction);
  1511. }
  1512. /**
  1513. * ib_dma_unmap_page - Destroy a mapping created by ib_dma_map_page()
  1514. * @dev: The device for which the DMA address was created
  1515. * @addr: The DMA address
  1516. * @size: The size of the region in bytes
  1517. * @direction: The direction of the DMA
  1518. */
  1519. static inline void ib_dma_unmap_page(struct ib_device *dev,
  1520. u64 addr, size_t size,
  1521. enum dma_data_direction direction)
  1522. {
  1523. if (dev->dma_ops)
  1524. dev->dma_ops->unmap_page(dev, addr, size, direction);
  1525. else
  1526. dma_unmap_page(dev->dma_device, addr, size, direction);
  1527. }
  1528. /**
  1529. * ib_dma_map_sg - Map a scatter/gather list to DMA addresses
  1530. * @dev: The device for which the DMA addresses are to be created
  1531. * @sg: The array of scatter/gather entries
  1532. * @nents: The number of scatter/gather entries
  1533. * @direction: The direction of the DMA
  1534. */
  1535. static inline int ib_dma_map_sg(struct ib_device *dev,
  1536. struct scatterlist *sg, int nents,
  1537. enum dma_data_direction direction)
  1538. {
  1539. if (dev->dma_ops)
  1540. return dev->dma_ops->map_sg(dev, sg, nents, direction);
  1541. return dma_map_sg(dev->dma_device, sg, nents, direction);
  1542. }
  1543. /**
  1544. * ib_dma_unmap_sg - Unmap a scatter/gather list of DMA addresses
  1545. * @dev: The device for which the DMA addresses were created
  1546. * @sg: The array of scatter/gather entries
  1547. * @nents: The number of scatter/gather entries
  1548. * @direction: The direction of the DMA
  1549. */
  1550. static inline void ib_dma_unmap_sg(struct ib_device *dev,
  1551. struct scatterlist *sg, int nents,
  1552. enum dma_data_direction direction)
  1553. {
  1554. if (dev->dma_ops)
  1555. dev->dma_ops->unmap_sg(dev, sg, nents, direction);
  1556. else
  1557. dma_unmap_sg(dev->dma_device, sg, nents, direction);
  1558. }
  1559. static inline int ib_dma_map_sg_attrs(struct ib_device *dev,
  1560. struct scatterlist *sg, int nents,
  1561. enum dma_data_direction direction,
  1562. struct dma_attrs *attrs)
  1563. {
  1564. return dma_map_sg_attrs(dev->dma_device, sg, nents, direction, attrs);
  1565. }
  1566. static inline void ib_dma_unmap_sg_attrs(struct ib_device *dev,
  1567. struct scatterlist *sg, int nents,
  1568. enum dma_data_direction direction,
  1569. struct dma_attrs *attrs)
  1570. {
  1571. dma_unmap_sg_attrs(dev->dma_device, sg, nents, direction, attrs);
  1572. }
  1573. /**
  1574. * ib_sg_dma_address - Return the DMA address from a scatter/gather entry
  1575. * @dev: The device for which the DMA addresses were created
  1576. * @sg: The scatter/gather entry
  1577. */
  1578. static inline u64 ib_sg_dma_address(struct ib_device *dev,
  1579. struct scatterlist *sg)
  1580. {
  1581. if (dev->dma_ops)
  1582. return dev->dma_ops->dma_address(dev, sg);
  1583. return sg_dma_address(sg);
  1584. }
  1585. /**
  1586. * ib_sg_dma_len - Return the DMA length from a scatter/gather entry
  1587. * @dev: The device for which the DMA addresses were created
  1588. * @sg: The scatter/gather entry
  1589. */
  1590. static inline unsigned int ib_sg_dma_len(struct ib_device *dev,
  1591. struct scatterlist *sg)
  1592. {
  1593. if (dev->dma_ops)
  1594. return dev->dma_ops->dma_len(dev, sg);
  1595. return sg_dma_len(sg);
  1596. }
  1597. /**
  1598. * ib_dma_sync_single_for_cpu - Prepare DMA region to be accessed by CPU
  1599. * @dev: The device for which the DMA address was created
  1600. * @addr: The DMA address
  1601. * @size: The size of the region in bytes
  1602. * @dir: The direction of the DMA
  1603. */
  1604. static inline void ib_dma_sync_single_for_cpu(struct ib_device *dev,
  1605. u64 addr,
  1606. size_t size,
  1607. enum dma_data_direction dir)
  1608. {
  1609. if (dev->dma_ops)
  1610. dev->dma_ops->sync_single_for_cpu(dev, addr, size, dir);
  1611. else
  1612. dma_sync_single_for_cpu(dev->dma_device, addr, size, dir);
  1613. }
  1614. /**
  1615. * ib_dma_sync_single_for_device - Prepare DMA region to be accessed by device
  1616. * @dev: The device for which the DMA address was created
  1617. * @addr: The DMA address
  1618. * @size: The size of the region in bytes
  1619. * @dir: The direction of the DMA
  1620. */
  1621. static inline void ib_dma_sync_single_for_device(struct ib_device *dev,
  1622. u64 addr,
  1623. size_t size,
  1624. enum dma_data_direction dir)
  1625. {
  1626. if (dev->dma_ops)
  1627. dev->dma_ops->sync_single_for_device(dev, addr, size, dir);
  1628. else
  1629. dma_sync_single_for_device(dev->dma_device, addr, size, dir);
  1630. }
  1631. /**
  1632. * ib_dma_alloc_coherent - Allocate memory and map it for DMA
  1633. * @dev: The device for which the DMA address is requested
  1634. * @size: The size of the region to allocate in bytes
  1635. * @dma_handle: A pointer for returning the DMA address of the region
  1636. * @flag: memory allocator flags
  1637. */
  1638. static inline void *ib_dma_alloc_coherent(struct ib_device *dev,
  1639. size_t size,
  1640. u64 *dma_handle,
  1641. gfp_t flag)
  1642. {
  1643. if (dev->dma_ops)
  1644. return dev->dma_ops->alloc_coherent(dev, size, dma_handle, flag);
  1645. else {
  1646. dma_addr_t handle;
  1647. void *ret;
  1648. ret = dma_alloc_coherent(dev->dma_device, size, &handle, flag);
  1649. *dma_handle = handle;
  1650. return ret;
  1651. }
  1652. }
  1653. /**
  1654. * ib_dma_free_coherent - Free memory allocated by ib_dma_alloc_coherent()
  1655. * @dev: The device for which the DMA addresses were allocated
  1656. * @size: The size of the region
  1657. * @cpu_addr: the address returned by ib_dma_alloc_coherent()
  1658. * @dma_handle: the DMA address returned by ib_dma_alloc_coherent()
  1659. */
  1660. static inline void ib_dma_free_coherent(struct ib_device *dev,
  1661. size_t size, void *cpu_addr,
  1662. u64 dma_handle)
  1663. {
  1664. if (dev->dma_ops)
  1665. dev->dma_ops->free_coherent(dev, size, cpu_addr, dma_handle);
  1666. else
  1667. dma_free_coherent(dev->dma_device, size, cpu_addr, dma_handle);
  1668. }
  1669. /**
  1670. * ib_reg_phys_mr - Prepares a virtually addressed memory region for use
  1671. * by an HCA.
  1672. * @pd: The protection domain associated assigned to the registered region.
  1673. * @phys_buf_array: Specifies a list of physical buffers to use in the
  1674. * memory region.
  1675. * @num_phys_buf: Specifies the size of the phys_buf_array.
  1676. * @mr_access_flags: Specifies the memory access rights.
  1677. * @iova_start: The offset of the region's starting I/O virtual address.
  1678. */
  1679. struct ib_mr *ib_reg_phys_mr(struct ib_pd *pd,
  1680. struct ib_phys_buf *phys_buf_array,
  1681. int num_phys_buf,
  1682. int mr_access_flags,
  1683. u64 *iova_start);
  1684. /**
  1685. * ib_rereg_phys_mr - Modifies the attributes of an existing memory region.
  1686. * Conceptually, this call performs the functions deregister memory region
  1687. * followed by register physical memory region. Where possible,
  1688. * resources are reused instead of deallocated and reallocated.
  1689. * @mr: The memory region to modify.
  1690. * @mr_rereg_mask: A bit-mask used to indicate which of the following
  1691. * properties of the memory region are being modified.
  1692. * @pd: If %IB_MR_REREG_PD is set in mr_rereg_mask, this field specifies
  1693. * the new protection domain to associated with the memory region,
  1694. * otherwise, this parameter is ignored.
  1695. * @phys_buf_array: If %IB_MR_REREG_TRANS is set in mr_rereg_mask, this
  1696. * field specifies a list of physical buffers to use in the new
  1697. * translation, otherwise, this parameter is ignored.
  1698. * @num_phys_buf: If %IB_MR_REREG_TRANS is set in mr_rereg_mask, this
  1699. * field specifies the size of the phys_buf_array, otherwise, this
  1700. * parameter is ignored.
  1701. * @mr_access_flags: If %IB_MR_REREG_ACCESS is set in mr_rereg_mask, this
  1702. * field specifies the new memory access rights, otherwise, this
  1703. * parameter is ignored.
  1704. * @iova_start: The offset of the region's starting I/O virtual address.
  1705. */
  1706. int ib_rereg_phys_mr(struct ib_mr *mr,
  1707. int mr_rereg_mask,
  1708. struct ib_pd *pd,
  1709. struct ib_phys_buf *phys_buf_array,
  1710. int num_phys_buf,
  1711. int mr_access_flags,
  1712. u64 *iova_start);
  1713. /**
  1714. * ib_query_mr - Retrieves information about a specific memory region.
  1715. * @mr: The memory region to retrieve information about.
  1716. * @mr_attr: The attributes of the specified memory region.
  1717. */
  1718. int ib_query_mr(struct ib_mr *mr, struct ib_mr_attr *mr_attr);
  1719. /**
  1720. * ib_dereg_mr - Deregisters a memory region and removes it from the
  1721. * HCA translation table.
  1722. * @mr: The memory region to deregister.
  1723. */
  1724. int ib_dereg_mr(struct ib_mr *mr);
  1725. /**
  1726. * ib_alloc_fast_reg_mr - Allocates memory region usable with the
  1727. * IB_WR_FAST_REG_MR send work request.
  1728. * @pd: The protection domain associated with the region.
  1729. * @max_page_list_len: requested max physical buffer list length to be
  1730. * used with fast register work requests for this MR.
  1731. */
  1732. struct ib_mr *ib_alloc_fast_reg_mr(struct ib_pd *pd, int max_page_list_len);
  1733. /**
  1734. * ib_alloc_fast_reg_page_list - Allocates a page list array
  1735. * @device - ib device pointer.
  1736. * @page_list_len - size of the page list array to be allocated.
  1737. *
  1738. * This allocates and returns a struct ib_fast_reg_page_list * and a
  1739. * page_list array that is at least page_list_len in size. The actual
  1740. * size is returned in max_page_list_len. The caller is responsible
  1741. * for initializing the contents of the page_list array before posting
  1742. * a send work request with the IB_WC_FAST_REG_MR opcode.
  1743. *
  1744. * The page_list array entries must be translated using one of the
  1745. * ib_dma_*() functions just like the addresses passed to
  1746. * ib_map_phys_fmr(). Once the ib_post_send() is issued, the struct
  1747. * ib_fast_reg_page_list must not be modified by the caller until the
  1748. * IB_WC_FAST_REG_MR work request completes.
  1749. */
  1750. struct ib_fast_reg_page_list *ib_alloc_fast_reg_page_list(
  1751. struct ib_device *device, int page_list_len);
  1752. /**
  1753. * ib_free_fast_reg_page_list - Deallocates a previously allocated
  1754. * page list array.
  1755. * @page_list - struct ib_fast_reg_page_list pointer to be deallocated.
  1756. */
  1757. void ib_free_fast_reg_page_list(struct ib_fast_reg_page_list *page_list);
  1758. /**
  1759. * ib_update_fast_reg_key - updates the key portion of the fast_reg MR
  1760. * R_Key and L_Key.
  1761. * @mr - struct ib_mr pointer to be updated.
  1762. * @newkey - new key to be used.
  1763. */
  1764. static inline void ib_update_fast_reg_key(struct ib_mr *mr, u8 newkey)
  1765. {
  1766. mr->lkey = (mr->lkey & 0xffffff00) | newkey;
  1767. mr->rkey = (mr->rkey & 0xffffff00) | newkey;
  1768. }
  1769. /**
  1770. * ib_alloc_mw - Allocates a memory window.
  1771. * @pd: The protection domain associated with the memory window.
  1772. */
  1773. struct ib_mw *ib_alloc_mw(struct ib_pd *pd);
  1774. /**
  1775. * ib_bind_mw - Posts a work request to the send queue of the specified
  1776. * QP, which binds the memory window to the given address range and
  1777. * remote access attributes.
  1778. * @qp: QP to post the bind work request on.
  1779. * @mw: The memory window to bind.
  1780. * @mw_bind: Specifies information about the memory window, including
  1781. * its address range, remote access rights, and associated memory region.
  1782. */
  1783. static inline int ib_bind_mw(struct ib_qp *qp,
  1784. struct ib_mw *mw,
  1785. struct ib_mw_bind *mw_bind)
  1786. {
  1787. /* XXX reference counting in corresponding MR? */
  1788. return mw->device->bind_mw ?
  1789. mw->device->bind_mw(qp, mw, mw_bind) :
  1790. -ENOSYS;
  1791. }
  1792. /**
  1793. * ib_dealloc_mw - Deallocates a memory window.
  1794. * @mw: The memory window to deallocate.
  1795. */
  1796. int ib_dealloc_mw(struct ib_mw *mw);
  1797. /**
  1798. * ib_alloc_fmr - Allocates a unmapped fast memory region.
  1799. * @pd: The protection domain associated with the unmapped region.
  1800. * @mr_access_flags: Specifies the memory access rights.
  1801. * @fmr_attr: Attributes of the unmapped region.
  1802. *
  1803. * A fast memory region must be mapped before it can be used as part of
  1804. * a work request.
  1805. */
  1806. struct ib_fmr *ib_alloc_fmr(struct ib_pd *pd,
  1807. int mr_access_flags,
  1808. struct ib_fmr_attr *fmr_attr);
  1809. /**
  1810. * ib_map_phys_fmr - Maps a list of physical pages to a fast memory region.
  1811. * @fmr: The fast memory region to associate with the pages.
  1812. * @page_list: An array of physical pages to map to the fast memory region.
  1813. * @list_len: The number of pages in page_list.
  1814. * @iova: The I/O virtual address to use with the mapped region.
  1815. */
  1816. static inline int ib_map_phys_fmr(struct ib_fmr *fmr,
  1817. u64 *page_list, int list_len,
  1818. u64 iova)
  1819. {
  1820. return fmr->device->map_phys_fmr(fmr, page_list, list_len, iova);
  1821. }
  1822. /**
  1823. * ib_unmap_fmr - Removes the mapping from a list of fast memory regions.
  1824. * @fmr_list: A linked list of fast memory regions to unmap.
  1825. */
  1826. int ib_unmap_fmr(struct list_head *fmr_list);
  1827. /**
  1828. * ib_dealloc_fmr - Deallocates a fast memory region.
  1829. * @fmr: The fast memory region to deallocate.
  1830. */
  1831. int ib_dealloc_fmr(struct ib_fmr *fmr);
  1832. /**
  1833. * ib_attach_mcast - Attaches the specified QP to a multicast group.
  1834. * @qp: QP to attach to the multicast group. The QP must be type
  1835. * IB_QPT_UD.
  1836. * @gid: Multicast group GID.
  1837. * @lid: Multicast group LID in host byte order.
  1838. *
  1839. * In order to send and receive multicast packets, subnet
  1840. * administration must have created the multicast group and configured
  1841. * the fabric appropriately. The port associated with the specified
  1842. * QP must also be a member of the multicast group.
  1843. */
  1844. int ib_attach_mcast(struct ib_qp *qp, union ib_gid *gid, u16 lid);
  1845. /**
  1846. * ib_detach_mcast - Detaches the specified QP from a multicast group.
  1847. * @qp: QP to detach from the multicast group.
  1848. * @gid: Multicast group GID.
  1849. * @lid: Multicast group LID in host byte order.
  1850. */
  1851. int ib_detach_mcast(struct ib_qp *qp, union ib_gid *gid, u16 lid);
  1852. #endif /* IB_VERBS_H */