ib.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435
  1. #ifndef _RDS_IB_H
  2. #define _RDS_IB_H
  3. #include <rdma/ib_verbs.h>
  4. #include <rdma/rdma_cm.h>
  5. #include <linux/interrupt.h>
  6. #include <linux/pci.h>
  7. #include <linux/slab.h>
  8. #include "rds.h"
  9. #include "rdma_transport.h"
  10. #define RDS_IB_MAX_SGE 8
  11. #define RDS_IB_RECV_SGE 2
  12. #define RDS_IB_DEFAULT_RECV_WR 1024
  13. #define RDS_IB_DEFAULT_SEND_WR 256
  14. #define RDS_IB_DEFAULT_FR_WR 256
  15. #define RDS_IB_DEFAULT_FR_INV_WR 256
  16. #define RDS_IB_DEFAULT_RETRY_COUNT 1
  17. #define RDS_IB_SUPPORTED_PROTOCOLS 0x00000003 /* minor versions supported */
  18. #define RDS_IB_RECYCLE_BATCH_COUNT 32
  19. #define RDS_IB_WC_MAX 32
  20. extern struct rw_semaphore rds_ib_devices_lock;
  21. extern struct list_head rds_ib_devices;
  22. /*
  23. * IB posts RDS_FRAG_SIZE fragments of pages to the receive queues to
  24. * try and minimize the amount of memory tied up both the device and
  25. * socket receive queues.
  26. */
  27. struct rds_page_frag {
  28. struct list_head f_item;
  29. struct list_head f_cache_entry;
  30. struct scatterlist f_sg;
  31. };
  32. struct rds_ib_incoming {
  33. struct list_head ii_frags;
  34. struct list_head ii_cache_entry;
  35. struct rds_incoming ii_inc;
  36. };
  37. struct rds_ib_cache_head {
  38. struct list_head *first;
  39. unsigned long count;
  40. };
  41. struct rds_ib_refill_cache {
  42. struct rds_ib_cache_head __percpu *percpu;
  43. struct list_head *xfer;
  44. struct list_head *ready;
  45. };
  46. struct rds_ib_connect_private {
  47. /* Add new fields at the end, and don't permute existing fields. */
  48. __be32 dp_saddr;
  49. __be32 dp_daddr;
  50. u8 dp_protocol_major;
  51. u8 dp_protocol_minor;
  52. __be16 dp_protocol_minor_mask; /* bitmask */
  53. __be32 dp_reserved1;
  54. __be64 dp_ack_seq;
  55. __be32 dp_credit; /* non-zero enables flow ctl */
  56. };
  57. struct rds_ib_send_work {
  58. void *s_op;
  59. union {
  60. struct ib_send_wr s_wr;
  61. struct ib_rdma_wr s_rdma_wr;
  62. struct ib_atomic_wr s_atomic_wr;
  63. };
  64. struct ib_sge s_sge[RDS_IB_MAX_SGE];
  65. unsigned long s_queued;
  66. };
  67. struct rds_ib_recv_work {
  68. struct rds_ib_incoming *r_ibinc;
  69. struct rds_page_frag *r_frag;
  70. struct ib_recv_wr r_wr;
  71. struct ib_sge r_sge[2];
  72. };
  73. struct rds_ib_work_ring {
  74. u32 w_nr;
  75. u32 w_alloc_ptr;
  76. u32 w_alloc_ctr;
  77. u32 w_free_ptr;
  78. atomic_t w_free_ctr;
  79. };
  80. /* Rings are posted with all the allocations they'll need to queue the
  81. * incoming message to the receiving socket so this can't fail.
  82. * All fragments start with a header, so we can make sure we're not receiving
  83. * garbage, and we can tell a small 8 byte fragment from an ACK frame.
  84. */
  85. struct rds_ib_ack_state {
  86. u64 ack_next;
  87. u64 ack_recv;
  88. unsigned int ack_required:1;
  89. unsigned int ack_next_valid:1;
  90. unsigned int ack_recv_valid:1;
  91. };
  92. struct rds_ib_device;
  93. struct rds_ib_connection {
  94. struct list_head ib_node;
  95. struct rds_ib_device *rds_ibdev;
  96. struct rds_connection *conn;
  97. /* alphabet soup, IBTA style */
  98. struct rdma_cm_id *i_cm_id;
  99. struct ib_pd *i_pd;
  100. struct ib_cq *i_send_cq;
  101. struct ib_cq *i_recv_cq;
  102. struct ib_wc i_send_wc[RDS_IB_WC_MAX];
  103. struct ib_wc i_recv_wc[RDS_IB_WC_MAX];
  104. /* To control the number of wrs from fastreg */
  105. atomic_t i_fastreg_wrs;
  106. atomic_t i_fastunreg_wrs;
  107. /* interrupt handling */
  108. struct tasklet_struct i_send_tasklet;
  109. struct tasklet_struct i_recv_tasklet;
  110. /* tx */
  111. struct rds_ib_work_ring i_send_ring;
  112. struct rm_data_op *i_data_op;
  113. struct rds_header *i_send_hdrs;
  114. dma_addr_t i_send_hdrs_dma;
  115. struct rds_ib_send_work *i_sends;
  116. atomic_t i_signaled_sends;
  117. /* rx */
  118. struct mutex i_recv_mutex;
  119. struct rds_ib_work_ring i_recv_ring;
  120. struct rds_ib_incoming *i_ibinc;
  121. u32 i_recv_data_rem;
  122. struct rds_header *i_recv_hdrs;
  123. dma_addr_t i_recv_hdrs_dma;
  124. struct rds_ib_recv_work *i_recvs;
  125. u64 i_ack_recv; /* last ACK received */
  126. struct rds_ib_refill_cache i_cache_incs;
  127. struct rds_ib_refill_cache i_cache_frags;
  128. atomic_t i_cache_allocs;
  129. /* sending acks */
  130. unsigned long i_ack_flags;
  131. #ifdef KERNEL_HAS_ATOMIC64
  132. atomic64_t i_ack_next; /* next ACK to send */
  133. #else
  134. spinlock_t i_ack_lock; /* protect i_ack_next */
  135. u64 i_ack_next; /* next ACK to send */
  136. #endif
  137. struct rds_header *i_ack;
  138. struct ib_send_wr i_ack_wr;
  139. struct ib_sge i_ack_sge;
  140. dma_addr_t i_ack_dma;
  141. unsigned long i_ack_queued;
  142. /* Flow control related information
  143. *
  144. * Our algorithm uses a pair variables that we need to access
  145. * atomically - one for the send credits, and one posted
  146. * recv credits we need to transfer to remote.
  147. * Rather than protect them using a slow spinlock, we put both into
  148. * a single atomic_t and update it using cmpxchg
  149. */
  150. atomic_t i_credits;
  151. /* Protocol version specific information */
  152. unsigned int i_flowctl:1; /* enable/disable flow ctl */
  153. /* Batched completions */
  154. unsigned int i_unsignaled_wrs;
  155. /* Endpoint role in connection */
  156. bool i_active_side;
  157. atomic_t i_cq_quiesce;
  158. /* Send/Recv vectors */
  159. int i_scq_vector;
  160. int i_rcq_vector;
  161. };
  162. /* This assumes that atomic_t is at least 32 bits */
  163. #define IB_GET_SEND_CREDITS(v) ((v) & 0xffff)
  164. #define IB_GET_POST_CREDITS(v) ((v) >> 16)
  165. #define IB_SET_SEND_CREDITS(v) ((v) & 0xffff)
  166. #define IB_SET_POST_CREDITS(v) ((v) << 16)
  167. struct rds_ib_ipaddr {
  168. struct list_head list;
  169. __be32 ipaddr;
  170. struct rcu_head rcu;
  171. };
  172. enum {
  173. RDS_IB_MR_8K_POOL,
  174. RDS_IB_MR_1M_POOL,
  175. };
  176. struct rds_ib_device {
  177. struct list_head list;
  178. struct list_head ipaddr_list;
  179. struct list_head conn_list;
  180. struct ib_device *dev;
  181. struct ib_pd *pd;
  182. bool has_fmr;
  183. bool has_fr;
  184. bool use_fastreg;
  185. unsigned int max_mrs;
  186. struct rds_ib_mr_pool *mr_1m_pool;
  187. struct rds_ib_mr_pool *mr_8k_pool;
  188. unsigned int fmr_max_remaps;
  189. unsigned int max_8k_mrs;
  190. unsigned int max_1m_mrs;
  191. int max_sge;
  192. unsigned int max_wrs;
  193. unsigned int max_initiator_depth;
  194. unsigned int max_responder_resources;
  195. spinlock_t spinlock; /* protect the above */
  196. refcount_t refcount;
  197. struct work_struct free_work;
  198. int *vector_load;
  199. };
  200. #define ibdev_to_node(ibdev) dev_to_node((ibdev)->dev.parent)
  201. #define rdsibdev_to_node(rdsibdev) ibdev_to_node(rdsibdev->dev)
  202. /* bits for i_ack_flags */
  203. #define IB_ACK_IN_FLIGHT 0
  204. #define IB_ACK_REQUESTED 1
  205. /* Magic WR_ID for ACKs */
  206. #define RDS_IB_ACK_WR_ID (~(u64) 0)
  207. struct rds_ib_statistics {
  208. uint64_t s_ib_connect_raced;
  209. uint64_t s_ib_listen_closed_stale;
  210. uint64_t s_ib_evt_handler_call;
  211. uint64_t s_ib_tasklet_call;
  212. uint64_t s_ib_tx_cq_event;
  213. uint64_t s_ib_tx_ring_full;
  214. uint64_t s_ib_tx_throttle;
  215. uint64_t s_ib_tx_sg_mapping_failure;
  216. uint64_t s_ib_tx_stalled;
  217. uint64_t s_ib_tx_credit_updates;
  218. uint64_t s_ib_rx_cq_event;
  219. uint64_t s_ib_rx_ring_empty;
  220. uint64_t s_ib_rx_refill_from_cq;
  221. uint64_t s_ib_rx_refill_from_thread;
  222. uint64_t s_ib_rx_alloc_limit;
  223. uint64_t s_ib_rx_total_frags;
  224. uint64_t s_ib_rx_total_incs;
  225. uint64_t s_ib_rx_credit_updates;
  226. uint64_t s_ib_ack_sent;
  227. uint64_t s_ib_ack_send_failure;
  228. uint64_t s_ib_ack_send_delayed;
  229. uint64_t s_ib_ack_send_piggybacked;
  230. uint64_t s_ib_ack_received;
  231. uint64_t s_ib_rdma_mr_8k_alloc;
  232. uint64_t s_ib_rdma_mr_8k_free;
  233. uint64_t s_ib_rdma_mr_8k_used;
  234. uint64_t s_ib_rdma_mr_8k_pool_flush;
  235. uint64_t s_ib_rdma_mr_8k_pool_wait;
  236. uint64_t s_ib_rdma_mr_8k_pool_depleted;
  237. uint64_t s_ib_rdma_mr_1m_alloc;
  238. uint64_t s_ib_rdma_mr_1m_free;
  239. uint64_t s_ib_rdma_mr_1m_used;
  240. uint64_t s_ib_rdma_mr_1m_pool_flush;
  241. uint64_t s_ib_rdma_mr_1m_pool_wait;
  242. uint64_t s_ib_rdma_mr_1m_pool_depleted;
  243. uint64_t s_ib_rdma_mr_8k_reused;
  244. uint64_t s_ib_rdma_mr_1m_reused;
  245. uint64_t s_ib_atomic_cswp;
  246. uint64_t s_ib_atomic_fadd;
  247. uint64_t s_ib_recv_added_to_cache;
  248. uint64_t s_ib_recv_removed_from_cache;
  249. };
  250. extern struct workqueue_struct *rds_ib_wq;
  251. /*
  252. * Fake ib_dma_sync_sg_for_{cpu,device} as long as ib_verbs.h
  253. * doesn't define it.
  254. */
  255. static inline void rds_ib_dma_sync_sg_for_cpu(struct ib_device *dev,
  256. struct scatterlist *sglist,
  257. unsigned int sg_dma_len,
  258. int direction)
  259. {
  260. struct scatterlist *sg;
  261. unsigned int i;
  262. for_each_sg(sglist, sg, sg_dma_len, i) {
  263. ib_dma_sync_single_for_cpu(dev,
  264. ib_sg_dma_address(dev, sg),
  265. ib_sg_dma_len(dev, sg),
  266. direction);
  267. }
  268. }
  269. #define ib_dma_sync_sg_for_cpu rds_ib_dma_sync_sg_for_cpu
  270. static inline void rds_ib_dma_sync_sg_for_device(struct ib_device *dev,
  271. struct scatterlist *sglist,
  272. unsigned int sg_dma_len,
  273. int direction)
  274. {
  275. struct scatterlist *sg;
  276. unsigned int i;
  277. for_each_sg(sglist, sg, sg_dma_len, i) {
  278. ib_dma_sync_single_for_device(dev,
  279. ib_sg_dma_address(dev, sg),
  280. ib_sg_dma_len(dev, sg),
  281. direction);
  282. }
  283. }
  284. #define ib_dma_sync_sg_for_device rds_ib_dma_sync_sg_for_device
  285. /* ib.c */
  286. extern struct rds_transport rds_ib_transport;
  287. struct rds_ib_device *rds_ib_get_client_data(struct ib_device *device);
  288. void rds_ib_dev_put(struct rds_ib_device *rds_ibdev);
  289. extern struct ib_client rds_ib_client;
  290. extern unsigned int rds_ib_retry_count;
  291. extern spinlock_t ib_nodev_conns_lock;
  292. extern struct list_head ib_nodev_conns;
  293. /* ib_cm.c */
  294. int rds_ib_conn_alloc(struct rds_connection *conn, gfp_t gfp);
  295. void rds_ib_conn_free(void *arg);
  296. int rds_ib_conn_path_connect(struct rds_conn_path *cp);
  297. void rds_ib_conn_path_shutdown(struct rds_conn_path *cp);
  298. void rds_ib_state_change(struct sock *sk);
  299. int rds_ib_listen_init(void);
  300. void rds_ib_listen_stop(void);
  301. __printf(2, 3)
  302. void __rds_ib_conn_error(struct rds_connection *conn, const char *, ...);
  303. int rds_ib_cm_handle_connect(struct rdma_cm_id *cm_id,
  304. struct rdma_cm_event *event);
  305. int rds_ib_cm_initiate_connect(struct rdma_cm_id *cm_id);
  306. void rds_ib_cm_connect_complete(struct rds_connection *conn,
  307. struct rdma_cm_event *event);
  308. #define rds_ib_conn_error(conn, fmt...) \
  309. __rds_ib_conn_error(conn, KERN_WARNING "RDS/IB: " fmt)
  310. /* ib_rdma.c */
  311. int rds_ib_update_ipaddr(struct rds_ib_device *rds_ibdev, __be32 ipaddr);
  312. void rds_ib_add_conn(struct rds_ib_device *rds_ibdev, struct rds_connection *conn);
  313. void rds_ib_remove_conn(struct rds_ib_device *rds_ibdev, struct rds_connection *conn);
  314. void rds_ib_destroy_nodev_conns(void);
  315. void rds_ib_mr_cqe_handler(struct rds_ib_connection *ic, struct ib_wc *wc);
  316. /* ib_recv.c */
  317. int rds_ib_recv_init(void);
  318. void rds_ib_recv_exit(void);
  319. int rds_ib_recv_path(struct rds_conn_path *conn);
  320. int rds_ib_recv_alloc_caches(struct rds_ib_connection *ic);
  321. void rds_ib_recv_free_caches(struct rds_ib_connection *ic);
  322. void rds_ib_recv_refill(struct rds_connection *conn, int prefill, gfp_t gfp);
  323. void rds_ib_inc_free(struct rds_incoming *inc);
  324. int rds_ib_inc_copy_to_user(struct rds_incoming *inc, struct iov_iter *to);
  325. void rds_ib_recv_cqe_handler(struct rds_ib_connection *ic, struct ib_wc *wc,
  326. struct rds_ib_ack_state *state);
  327. void rds_ib_recv_tasklet_fn(unsigned long data);
  328. void rds_ib_recv_init_ring(struct rds_ib_connection *ic);
  329. void rds_ib_recv_clear_ring(struct rds_ib_connection *ic);
  330. void rds_ib_recv_init_ack(struct rds_ib_connection *ic);
  331. void rds_ib_attempt_ack(struct rds_ib_connection *ic);
  332. void rds_ib_ack_send_complete(struct rds_ib_connection *ic);
  333. u64 rds_ib_piggyb_ack(struct rds_ib_connection *ic);
  334. void rds_ib_set_ack(struct rds_ib_connection *ic, u64 seq, int ack_required);
  335. /* ib_ring.c */
  336. void rds_ib_ring_init(struct rds_ib_work_ring *ring, u32 nr);
  337. void rds_ib_ring_resize(struct rds_ib_work_ring *ring, u32 nr);
  338. u32 rds_ib_ring_alloc(struct rds_ib_work_ring *ring, u32 val, u32 *pos);
  339. void rds_ib_ring_free(struct rds_ib_work_ring *ring, u32 val);
  340. void rds_ib_ring_unalloc(struct rds_ib_work_ring *ring, u32 val);
  341. int rds_ib_ring_empty(struct rds_ib_work_ring *ring);
  342. int rds_ib_ring_low(struct rds_ib_work_ring *ring);
  343. u32 rds_ib_ring_oldest(struct rds_ib_work_ring *ring);
  344. u32 rds_ib_ring_completed(struct rds_ib_work_ring *ring, u32 wr_id, u32 oldest);
  345. extern wait_queue_head_t rds_ib_ring_empty_wait;
  346. /* ib_send.c */
  347. void rds_ib_xmit_path_complete(struct rds_conn_path *cp);
  348. int rds_ib_xmit(struct rds_connection *conn, struct rds_message *rm,
  349. unsigned int hdr_off, unsigned int sg, unsigned int off);
  350. void rds_ib_send_cqe_handler(struct rds_ib_connection *ic, struct ib_wc *wc);
  351. void rds_ib_send_init_ring(struct rds_ib_connection *ic);
  352. void rds_ib_send_clear_ring(struct rds_ib_connection *ic);
  353. int rds_ib_xmit_rdma(struct rds_connection *conn, struct rm_rdma_op *op);
  354. void rds_ib_send_add_credits(struct rds_connection *conn, unsigned int credits);
  355. void rds_ib_advertise_credits(struct rds_connection *conn, unsigned int posted);
  356. int rds_ib_send_grab_credits(struct rds_ib_connection *ic, u32 wanted,
  357. u32 *adv_credits, int need_posted, int max_posted);
  358. int rds_ib_xmit_atomic(struct rds_connection *conn, struct rm_atomic_op *op);
  359. /* ib_stats.c */
  360. DECLARE_PER_CPU(struct rds_ib_statistics, rds_ib_stats);
  361. #define rds_ib_stats_inc(member) rds_stats_inc_which(rds_ib_stats, member)
  362. #define rds_ib_stats_add(member, count) \
  363. rds_stats_add_which(rds_ib_stats, member, count)
  364. unsigned int rds_ib_stats_info_copy(struct rds_info_iterator *iter,
  365. unsigned int avail);
  366. /* ib_sysctl.c */
  367. int rds_ib_sysctl_init(void);
  368. void rds_ib_sysctl_exit(void);
  369. extern unsigned long rds_ib_sysctl_max_send_wr;
  370. extern unsigned long rds_ib_sysctl_max_recv_wr;
  371. extern unsigned long rds_ib_sysctl_max_unsig_wrs;
  372. extern unsigned long rds_ib_sysctl_max_unsig_bytes;
  373. extern unsigned long rds_ib_sysctl_max_recv_allocation;
  374. extern unsigned int rds_ib_sysctl_flow_control;
  375. #endif