ib.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425
  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_FMR_1M_POOL_SIZE (8192 / 2)
  11. #define RDS_FMR_1M_MSG_SIZE 256
  12. #define RDS_FMR_8K_MSG_SIZE 2
  13. #define RDS_MR_8K_SCALE (256 / (RDS_FMR_8K_MSG_SIZE + 1))
  14. #define RDS_FMR_8K_POOL_SIZE (RDS_MR_8K_SCALE * (8192 / 2))
  15. #define RDS_IB_MAX_SGE 8
  16. #define RDS_IB_RECV_SGE 2
  17. #define RDS_IB_DEFAULT_RECV_WR 1024
  18. #define RDS_IB_DEFAULT_SEND_WR 256
  19. #define RDS_IB_DEFAULT_RETRY_COUNT 2
  20. #define RDS_IB_SUPPORTED_PROTOCOLS 0x00000003 /* minor versions supported */
  21. #define RDS_IB_RECYCLE_BATCH_COUNT 32
  22. #define RDS_IB_WC_MAX 32
  23. #define RDS_IB_SEND_OP BIT_ULL(63)
  24. extern struct rw_semaphore rds_ib_devices_lock;
  25. extern struct list_head rds_ib_devices;
  26. /*
  27. * IB posts RDS_FRAG_SIZE fragments of pages to the receive queues to
  28. * try and minimize the amount of memory tied up both the device and
  29. * socket receive queues.
  30. */
  31. struct rds_page_frag {
  32. struct list_head f_item;
  33. struct list_head f_cache_entry;
  34. struct scatterlist f_sg;
  35. };
  36. struct rds_ib_incoming {
  37. struct list_head ii_frags;
  38. struct list_head ii_cache_entry;
  39. struct rds_incoming ii_inc;
  40. };
  41. struct rds_ib_cache_head {
  42. struct list_head *first;
  43. unsigned long count;
  44. };
  45. struct rds_ib_refill_cache {
  46. struct rds_ib_cache_head __percpu *percpu;
  47. struct list_head *xfer;
  48. struct list_head *ready;
  49. };
  50. struct rds_ib_connect_private {
  51. /* Add new fields at the end, and don't permute existing fields. */
  52. __be32 dp_saddr;
  53. __be32 dp_daddr;
  54. u8 dp_protocol_major;
  55. u8 dp_protocol_minor;
  56. __be16 dp_protocol_minor_mask; /* bitmask */
  57. __be32 dp_reserved1;
  58. __be64 dp_ack_seq;
  59. __be32 dp_credit; /* non-zero enables flow ctl */
  60. };
  61. struct rds_ib_send_work {
  62. void *s_op;
  63. union {
  64. struct ib_send_wr s_wr;
  65. struct ib_rdma_wr s_rdma_wr;
  66. struct ib_atomic_wr s_atomic_wr;
  67. };
  68. struct ib_sge s_sge[RDS_IB_MAX_SGE];
  69. unsigned long s_queued;
  70. };
  71. struct rds_ib_recv_work {
  72. struct rds_ib_incoming *r_ibinc;
  73. struct rds_page_frag *r_frag;
  74. struct ib_recv_wr r_wr;
  75. struct ib_sge r_sge[2];
  76. };
  77. struct rds_ib_work_ring {
  78. u32 w_nr;
  79. u32 w_alloc_ptr;
  80. u32 w_alloc_ctr;
  81. u32 w_free_ptr;
  82. atomic_t w_free_ctr;
  83. };
  84. /* Rings are posted with all the allocations they'll need to queue the
  85. * incoming message to the receiving socket so this can't fail.
  86. * All fragments start with a header, so we can make sure we're not receiving
  87. * garbage, and we can tell a small 8 byte fragment from an ACK frame.
  88. */
  89. struct rds_ib_ack_state {
  90. u64 ack_next;
  91. u64 ack_recv;
  92. unsigned int ack_required:1;
  93. unsigned int ack_next_valid:1;
  94. unsigned int ack_recv_valid:1;
  95. };
  96. struct rds_ib_device;
  97. struct rds_ib_connection {
  98. struct list_head ib_node;
  99. struct rds_ib_device *rds_ibdev;
  100. struct rds_connection *conn;
  101. /* alphabet soup, IBTA style */
  102. struct rdma_cm_id *i_cm_id;
  103. struct ib_pd *i_pd;
  104. struct ib_cq *i_send_cq;
  105. struct ib_cq *i_recv_cq;
  106. struct ib_wc i_send_wc[RDS_IB_WC_MAX];
  107. struct ib_wc i_recv_wc[RDS_IB_WC_MAX];
  108. /* interrupt handling */
  109. struct tasklet_struct i_send_tasklet;
  110. struct tasklet_struct i_recv_tasklet;
  111. /* tx */
  112. struct rds_ib_work_ring i_send_ring;
  113. struct rm_data_op *i_data_op;
  114. struct rds_header *i_send_hdrs;
  115. u64 i_send_hdrs_dma;
  116. struct rds_ib_send_work *i_sends;
  117. atomic_t i_signaled_sends;
  118. /* rx */
  119. struct mutex i_recv_mutex;
  120. struct rds_ib_work_ring i_recv_ring;
  121. struct rds_ib_incoming *i_ibinc;
  122. u32 i_recv_data_rem;
  123. struct rds_header *i_recv_hdrs;
  124. u64 i_recv_hdrs_dma;
  125. struct rds_ib_recv_work *i_recvs;
  126. u64 i_ack_recv; /* last ACK received */
  127. struct rds_ib_refill_cache i_cache_incs;
  128. struct rds_ib_refill_cache i_cache_frags;
  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. u64 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. };
  156. /* This assumes that atomic_t is at least 32 bits */
  157. #define IB_GET_SEND_CREDITS(v) ((v) & 0xffff)
  158. #define IB_GET_POST_CREDITS(v) ((v) >> 16)
  159. #define IB_SET_SEND_CREDITS(v) ((v) & 0xffff)
  160. #define IB_SET_POST_CREDITS(v) ((v) << 16)
  161. struct rds_ib_ipaddr {
  162. struct list_head list;
  163. __be32 ipaddr;
  164. struct rcu_head rcu;
  165. };
  166. enum {
  167. RDS_IB_MR_8K_POOL,
  168. RDS_IB_MR_1M_POOL,
  169. };
  170. struct rds_ib_device {
  171. struct list_head list;
  172. struct list_head ipaddr_list;
  173. struct list_head conn_list;
  174. struct ib_device *dev;
  175. struct ib_pd *pd;
  176. unsigned int max_fmrs;
  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_fmrs;
  181. unsigned int max_1m_fmrs;
  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_atomic_cswp;
  232. uint64_t s_ib_atomic_fadd;
  233. };
  234. extern struct workqueue_struct *rds_ib_wq;
  235. /*
  236. * Fake ib_dma_sync_sg_for_{cpu,device} as long as ib_verbs.h
  237. * doesn't define it.
  238. */
  239. static inline void rds_ib_dma_sync_sg_for_cpu(struct ib_device *dev,
  240. struct scatterlist *sglist,
  241. unsigned int sg_dma_len,
  242. int direction)
  243. {
  244. struct scatterlist *sg;
  245. unsigned int i;
  246. for_each_sg(sglist, sg, sg_dma_len, i) {
  247. ib_dma_sync_single_for_cpu(dev,
  248. ib_sg_dma_address(dev, sg),
  249. ib_sg_dma_len(dev, sg),
  250. direction);
  251. }
  252. }
  253. #define ib_dma_sync_sg_for_cpu rds_ib_dma_sync_sg_for_cpu
  254. static inline void rds_ib_dma_sync_sg_for_device(struct ib_device *dev,
  255. struct scatterlist *sglist,
  256. unsigned int sg_dma_len,
  257. int direction)
  258. {
  259. struct scatterlist *sg;
  260. unsigned int i;
  261. for_each_sg(sglist, sg, sg_dma_len, i) {
  262. ib_dma_sync_single_for_device(dev,
  263. ib_sg_dma_address(dev, sg),
  264. ib_sg_dma_len(dev, sg),
  265. direction);
  266. }
  267. }
  268. #define ib_dma_sync_sg_for_device rds_ib_dma_sync_sg_for_device
  269. /* ib.c */
  270. extern struct rds_transport rds_ib_transport;
  271. struct rds_ib_device *rds_ib_get_client_data(struct ib_device *device);
  272. void rds_ib_dev_put(struct rds_ib_device *rds_ibdev);
  273. extern struct ib_client rds_ib_client;
  274. extern unsigned int rds_ib_fmr_1m_pool_size;
  275. extern unsigned int rds_ib_fmr_8k_pool_size;
  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_connect(struct rds_connection *conn);
  283. void rds_ib_conn_shutdown(struct rds_connection *conn);
  284. void rds_ib_state_change(struct sock *sk);
  285. int rds_ib_listen_init(void);
  286. void rds_ib_listen_stop(void);
  287. void __rds_ib_conn_error(struct rds_connection *conn, const char *, ...);
  288. int rds_ib_cm_handle_connect(struct rdma_cm_id *cm_id,
  289. struct rdma_cm_event *event);
  290. int rds_ib_cm_initiate_connect(struct rdma_cm_id *cm_id);
  291. void rds_ib_cm_connect_complete(struct rds_connection *conn,
  292. struct rdma_cm_event *event);
  293. #define rds_ib_conn_error(conn, fmt...) \
  294. __rds_ib_conn_error(conn, KERN_WARNING "RDS/IB: " fmt)
  295. /* ib_rdma.c */
  296. int rds_ib_update_ipaddr(struct rds_ib_device *rds_ibdev, __be32 ipaddr);
  297. void rds_ib_add_conn(struct rds_ib_device *rds_ibdev, struct rds_connection *conn);
  298. void rds_ib_remove_conn(struct rds_ib_device *rds_ibdev, struct rds_connection *conn);
  299. void rds_ib_destroy_nodev_conns(void);
  300. struct rds_ib_mr_pool *rds_ib_create_mr_pool(struct rds_ib_device *rds_dev,
  301. int npages);
  302. void rds_ib_get_mr_info(struct rds_ib_device *rds_ibdev, struct rds_info_rdma_connection *iinfo);
  303. void rds_ib_destroy_mr_pool(struct rds_ib_mr_pool *);
  304. void *rds_ib_get_mr(struct scatterlist *sg, unsigned long nents,
  305. struct rds_sock *rs, u32 *key_ret);
  306. void rds_ib_sync_mr(void *trans_private, int dir);
  307. void rds_ib_free_mr(void *trans_private, int invalidate);
  308. void rds_ib_flush_mrs(void);
  309. int rds_ib_fmr_init(void);
  310. void rds_ib_fmr_exit(void);
  311. /* ib_recv.c */
  312. int rds_ib_recv_init(void);
  313. void rds_ib_recv_exit(void);
  314. int rds_ib_recv(struct rds_connection *conn);
  315. int rds_ib_recv_alloc_caches(struct rds_ib_connection *ic);
  316. void rds_ib_recv_free_caches(struct rds_ib_connection *ic);
  317. void rds_ib_recv_refill(struct rds_connection *conn, int prefill, gfp_t gfp);
  318. void rds_ib_inc_free(struct rds_incoming *inc);
  319. int rds_ib_inc_copy_to_user(struct rds_incoming *inc, struct iov_iter *to);
  320. void rds_ib_recv_cqe_handler(struct rds_ib_connection *ic, struct ib_wc *wc,
  321. struct rds_ib_ack_state *state);
  322. void rds_ib_recv_tasklet_fn(unsigned long data);
  323. void rds_ib_recv_init_ring(struct rds_ib_connection *ic);
  324. void rds_ib_recv_clear_ring(struct rds_ib_connection *ic);
  325. void rds_ib_recv_init_ack(struct rds_ib_connection *ic);
  326. void rds_ib_attempt_ack(struct rds_ib_connection *ic);
  327. void rds_ib_ack_send_complete(struct rds_ib_connection *ic);
  328. u64 rds_ib_piggyb_ack(struct rds_ib_connection *ic);
  329. void rds_ib_set_ack(struct rds_ib_connection *ic, u64 seq, int ack_required);
  330. /* ib_ring.c */
  331. void rds_ib_ring_init(struct rds_ib_work_ring *ring, u32 nr);
  332. void rds_ib_ring_resize(struct rds_ib_work_ring *ring, u32 nr);
  333. u32 rds_ib_ring_alloc(struct rds_ib_work_ring *ring, u32 val, u32 *pos);
  334. void rds_ib_ring_free(struct rds_ib_work_ring *ring, u32 val);
  335. void rds_ib_ring_unalloc(struct rds_ib_work_ring *ring, u32 val);
  336. int rds_ib_ring_empty(struct rds_ib_work_ring *ring);
  337. int rds_ib_ring_low(struct rds_ib_work_ring *ring);
  338. u32 rds_ib_ring_oldest(struct rds_ib_work_ring *ring);
  339. u32 rds_ib_ring_completed(struct rds_ib_work_ring *ring, u32 wr_id, u32 oldest);
  340. extern wait_queue_head_t rds_ib_ring_empty_wait;
  341. /* ib_send.c */
  342. void rds_ib_xmit_complete(struct rds_connection *conn);
  343. int rds_ib_xmit(struct rds_connection *conn, struct rds_message *rm,
  344. unsigned int hdr_off, unsigned int sg, unsigned int off);
  345. void rds_ib_send_cqe_handler(struct rds_ib_connection *ic, struct ib_wc *wc);
  346. void rds_ib_send_init_ring(struct rds_ib_connection *ic);
  347. void rds_ib_send_clear_ring(struct rds_ib_connection *ic);
  348. int rds_ib_xmit_rdma(struct rds_connection *conn, struct rm_rdma_op *op);
  349. void rds_ib_send_add_credits(struct rds_connection *conn, unsigned int credits);
  350. void rds_ib_advertise_credits(struct rds_connection *conn, unsigned int posted);
  351. int rds_ib_send_grab_credits(struct rds_ib_connection *ic, u32 wanted,
  352. u32 *adv_credits, int need_posted, int max_posted);
  353. int rds_ib_xmit_atomic(struct rds_connection *conn, struct rm_atomic_op *op);
  354. /* ib_stats.c */
  355. DECLARE_PER_CPU(struct rds_ib_statistics, rds_ib_stats);
  356. #define rds_ib_stats_inc(member) rds_stats_inc_which(rds_ib_stats, member)
  357. unsigned int rds_ib_stats_info_copy(struct rds_info_iterator *iter,
  358. unsigned int avail);
  359. /* ib_sysctl.c */
  360. int rds_ib_sysctl_init(void);
  361. void rds_ib_sysctl_exit(void);
  362. extern unsigned long rds_ib_sysctl_max_send_wr;
  363. extern unsigned long rds_ib_sysctl_max_recv_wr;
  364. extern unsigned long rds_ib_sysctl_max_unsig_wrs;
  365. extern unsigned long rds_ib_sysctl_max_unsig_bytes;
  366. extern unsigned long rds_ib_sysctl_max_recv_allocation;
  367. extern unsigned int rds_ib_sysctl_flow_control;
  368. #endif