ib.h 12 KB

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