blob: 19011dbb930fb38d899c6f365bd981ce94a70174 [file] [log] [blame]
Parav Panditfe2caef2012-03-21 04:09:06 +05301/*******************************************************************
2 * This file is part of the Emulex RoCE Device Driver for *
3 * RoCE (RDMA over Converged Ethernet) adapters. *
4 * Copyright (C) 2008-2012 Emulex. All rights reserved. *
5 * EMULEX and SLI are trademarks of Emulex. *
6 * www.emulex.com *
7 * *
8 * This program is free software; you can redistribute it and/or *
9 * modify it under the terms of version 2 of the GNU General *
10 * Public License as published by the Free Software Foundation. *
11 * This program is distributed in the hope that it will be useful. *
12 * ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND *
13 * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, *
14 * FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT, ARE *
15 * DISCLAIMED, EXCEPT TO THE EXTENT THAT SUCH DISCLAIMERS ARE HELD *
16 * TO BE LEGALLY INVALID. See the GNU General Public License for *
17 * more details, a copy of which can be found in the file COPYING *
18 * included with this package. *
19 *
20 * Contact Information:
21 * linux-drivers@emulex.com
22 *
23 * Emulex
24 * 3333 Susan Street
25 * Costa Mesa, CA 92626
26 *******************************************************************/
27
28#ifndef __OCRDMA_H__
29#define __OCRDMA_H__
30
31#include <linux/mutex.h>
32#include <linux/list.h>
33#include <linux/spinlock.h>
34#include <linux/pci.h>
35
36#include <rdma/ib_verbs.h>
37#include <rdma/ib_user_verbs.h>
Devesh Sharmafad51b72014-02-04 11:57:10 +053038#include <rdma/ib_addr.h>
Parav Panditfe2caef2012-03-21 04:09:06 +053039
40#include <be_roce.h>
41#include "ocrdma_sli.h"
42
Devesh Sharma01544102014-02-04 11:57:00 +053043#define OCRDMA_ROCE_DRV_VERSION "10.2.145.0u"
44
45#define OCRDMA_ROCE_DRV_DESC "Emulex OneConnect RoCE Driver"
Parav Panditfe2caef2012-03-21 04:09:06 +053046#define OCRDMA_NODE_DESC "Emulex OneConnect RoCE HCA"
47
Selvin Xaviera51f06e2014-02-04 11:57:07 +053048#define OC_NAME_SH OCRDMA_NODE_DESC "(Skyhawk)"
49#define OC_NAME_UNKNOWN OCRDMA_NODE_DESC "(Unknown)"
50
51#define OC_SKH_DEVICE_PF 0x720
52#define OC_SKH_DEVICE_VF 0x728
Parav Panditfe2caef2012-03-21 04:09:06 +053053#define OCRDMA_MAX_AH 512
54
55#define OCRDMA_UVERBS(CMD_NAME) (1ull << IB_USER_VERBS_CMD_##CMD_NAME)
56
Selvin Xaviera51f06e2014-02-04 11:57:07 +053057#define convert_to_64bit(lo, hi) ((u64)hi << 32 | (u64)lo)
58
Parav Panditfe2caef2012-03-21 04:09:06 +053059struct ocrdma_dev_attr {
60 u8 fw_ver[32];
61 u32 vendor_id;
62 u32 device_id;
63 u16 max_pd;
64 u16 max_cq;
65 u16 max_cqe;
66 u16 max_qp;
67 u16 max_wqe;
68 u16 max_rqe;
Naresh Gottumukkala7c338802013-08-26 15:27:39 +053069 u16 max_srq;
Parav Panditfe2caef2012-03-21 04:09:06 +053070 u32 max_inline_data;
71 int max_send_sge;
72 int max_recv_sge;
Mahesh Vardhamanaiah634c5792012-06-08 21:26:11 +053073 int max_srq_sge;
Naresh Gottumukkala45e86b32013-08-07 12:52:37 +053074 int max_rdma_sge;
Parav Panditfe2caef2012-03-21 04:09:06 +053075 int max_mr;
76 u64 max_mr_size;
77 u32 max_num_mr_pbl;
Selvin Xavierac578ae2014-02-04 11:57:04 +053078 int max_mw;
Parav Panditfe2caef2012-03-21 04:09:06 +053079 int max_fmr;
80 int max_map_per_fmr;
81 int max_pages_per_frmr;
82 u16 max_ord_per_qp;
83 u16 max_ird_per_qp;
84
85 int device_cap_flags;
86 u8 cq_overflow_detect;
87 u8 srq_supported;
88
89 u32 wqe_size;
90 u32 rqe_size;
91 u32 ird_page_size;
92 u8 local_ca_ack_delay;
93 u8 ird;
94 u8 num_ird_pages;
95};
96
Selvin Xaviera51f06e2014-02-04 11:57:07 +053097struct ocrdma_dma_mem {
98 void *va;
99 dma_addr_t pa;
100 u32 size;
101};
102
Parav Panditfe2caef2012-03-21 04:09:06 +0530103struct ocrdma_pbl {
104 void *va;
105 dma_addr_t pa;
106};
107
108struct ocrdma_queue_info {
109 void *va;
110 dma_addr_t dma;
111 u32 size;
112 u16 len;
113 u16 entry_size; /* Size of an element in the queue */
114 u16 id; /* qid, where to ring the doorbell. */
115 u16 head, tail;
116 bool created;
Parav Panditfe2caef2012-03-21 04:09:06 +0530117};
118
119struct ocrdma_eq {
120 struct ocrdma_queue_info q;
121 u32 vector;
122 int cq_cnt;
123 struct ocrdma_dev *dev;
124 char irq_name[32];
125};
126
127struct ocrdma_mq {
128 struct ocrdma_queue_info sq;
129 struct ocrdma_queue_info cq;
130 bool rearm_cq;
131};
132
133struct mqe_ctx {
134 struct mutex lock; /* for serializing mailbox commands on MQ */
135 wait_queue_head_t cmd_wait;
136 u32 tag;
137 u16 cqe_status;
138 u16 ext_status;
139 bool cmd_done;
140};
141
Naresh Gottumukkala1852d1d2013-09-06 15:02:47 +0530142struct ocrdma_hw_mr {
143 u32 lkey;
144 u8 fr_mr;
145 u8 remote_atomic;
146 u8 remote_rd;
147 u8 remote_wr;
148 u8 local_rd;
149 u8 local_wr;
150 u8 mw_bind;
151 u8 rsvd;
152 u64 len;
153 struct ocrdma_pbl *pbl_table;
154 u32 num_pbls;
155 u32 num_pbes;
156 u32 pbl_size;
157 u32 pbe_size;
158 u64 fbo;
159 u64 va;
160};
161
162struct ocrdma_mr {
163 struct ib_mr ibmr;
164 struct ib_umem *umem;
165 struct ocrdma_hw_mr hwmr;
166};
167
Selvin Xaviera51f06e2014-02-04 11:57:07 +0530168struct ocrdma_stats {
169 u8 type;
170 struct ocrdma_dev *dev;
171};
172
173struct stats_mem {
174 struct ocrdma_mqe mqe;
175 void *va;
176 dma_addr_t pa;
177 u32 size;
178 char *debugfs_mem;
179};
180
181struct phy_info {
182 u16 auto_speeds_supported;
183 u16 fixed_speeds_supported;
184 u16 phy_type;
185 u16 interface_type;
186};
187
Parav Panditfe2caef2012-03-21 04:09:06 +0530188struct ocrdma_dev {
189 struct ib_device ibdev;
190 struct ocrdma_dev_attr attr;
191
192 struct mutex dev_lock; /* provides syncronise access to device data */
193 spinlock_t flush_q_lock ____cacheline_aligned;
194
195 struct ocrdma_cq **cq_tbl;
196 struct ocrdma_qp **qp_tbl;
197
Naresh Gottumukkalac88bd032013-08-26 15:27:41 +0530198 struct ocrdma_eq *eq_tbl;
Parav Panditfe2caef2012-03-21 04:09:06 +0530199 int eq_cnt;
200 u16 base_eqid;
201 u16 max_eq;
202
203 union ib_gid *sgid_tbl;
204 /* provided synchronization to sgid table for
205 * updating gid entries triggered by notifier.
206 */
207 spinlock_t sgid_lock;
208
209 int gsi_qp_created;
210 struct ocrdma_cq *gsi_sqcq;
211 struct ocrdma_cq *gsi_rqcq;
212
213 struct {
214 struct ocrdma_av *va;
215 dma_addr_t pa;
216 u32 size;
217 u32 num_ah;
218 /* provide synchronization for av
219 * entry allocations.
220 */
221 spinlock_t lock;
222 u32 ahid;
223 struct ocrdma_pbl pbl;
224 } av_tbl;
225
226 void *mbx_cmd;
227 struct ocrdma_mq mq;
228 struct mqe_ctx mqe_ctx;
229
230 struct be_dev_info nic_info;
Selvin Xaviera51f06e2014-02-04 11:57:07 +0530231 struct phy_info phy;
232 char model_number[32];
233 u32 hba_port_num;
Parav Panditfe2caef2012-03-21 04:09:06 +0530234
235 struct list_head entry;
Sasha Levin3e4d60a2012-04-28 07:40:01 +0200236 struct rcu_head rcu;
Parav Panditfe2caef2012-03-21 04:09:06 +0530237 int id;
Devesh Sharmafad51b72014-02-04 11:57:10 +0530238 u64 stag_arr[OCRDMA_MAX_STAG];
Naresh Gottumukkala84b105d2013-08-26 15:27:50 +0530239 u16 pvid;
Devesh Sharma21c33912014-02-04 11:56:56 +0530240 u32 asic_id;
Selvin Xaviera51f06e2014-02-04 11:57:07 +0530241
242 ulong last_stats_time;
243 struct mutex stats_lock; /* provide synch for debugfs operations */
244 struct stats_mem stats_mem;
245 struct ocrdma_stats rsrc_stats;
246 struct ocrdma_stats rx_stats;
247 struct ocrdma_stats wqe_stats;
248 struct ocrdma_stats tx_stats;
249 struct ocrdma_stats db_err_stats;
250 struct ocrdma_stats tx_qp_err_stats;
251 struct ocrdma_stats rx_qp_err_stats;
252 struct ocrdma_stats tx_dbg_stats;
253 struct ocrdma_stats rx_dbg_stats;
254 struct dentry *dir;
Parav Panditfe2caef2012-03-21 04:09:06 +0530255};
256
257struct ocrdma_cq {
258 struct ib_cq ibcq;
Parav Panditfe2caef2012-03-21 04:09:06 +0530259 struct ocrdma_cqe *va;
260 u32 phase;
261 u32 getp; /* pointer to pending wrs to
262 * return to stack, wrap arounds
263 * at max_hw_cqe
264 */
265 u32 max_hw_cqe;
266 bool phase_change;
Devesh Sharmaea617622014-02-04 11:56:54 +0530267 bool deferred_arm, deferred_sol;
268 bool first_arm;
Parav Panditfe2caef2012-03-21 04:09:06 +0530269
270 spinlock_t cq_lock ____cacheline_aligned; /* provide synchronization
271 * to cq polling
272 */
273 /* syncronizes cq completion handler invoked from multiple context */
274 spinlock_t comp_handler_lock ____cacheline_aligned;
275 u16 id;
276 u16 eqn;
277
278 struct ocrdma_ucontext *ucontext;
279 dma_addr_t pa;
280 u32 len;
Devesh Sharmaea617622014-02-04 11:56:54 +0530281 u32 cqe_cnt;
Parav Panditfe2caef2012-03-21 04:09:06 +0530282
283 /* head of all qp's sq and rq for which cqes need to be flushed
284 * by the software.
285 */
286 struct list_head sq_head, rq_head;
287};
288
289struct ocrdma_pd {
290 struct ib_pd ibpd;
Parav Panditfe2caef2012-03-21 04:09:06 +0530291 struct ocrdma_ucontext *uctx;
Parav Panditfe2caef2012-03-21 04:09:06 +0530292 u32 id;
293 int num_dpp_qp;
294 u32 dpp_page;
295 bool dpp_enabled;
296};
297
298struct ocrdma_ah {
299 struct ib_ah ibah;
Parav Panditfe2caef2012-03-21 04:09:06 +0530300 struct ocrdma_av *av;
301 u16 sgid_index;
302 u32 id;
303};
304
305struct ocrdma_qp_hwq_info {
306 u8 *va; /* virtual address */
307 u32 max_sges;
308 u32 head, tail;
309 u32 entry_size;
310 u32 max_cnt;
311 u32 max_wqe_idx;
Parav Panditfe2caef2012-03-21 04:09:06 +0530312 u16 dbid; /* qid, where to ring the doorbell. */
313 u32 len;
314 dma_addr_t pa;
315};
316
317struct ocrdma_srq {
318 struct ib_srq ibsrq;
Parav Panditfe2caef2012-03-21 04:09:06 +0530319 u8 __iomem *db;
Parav Panditfe2caef2012-03-21 04:09:06 +0530320 struct ocrdma_qp_hwq_info rq;
Parav Panditfe2caef2012-03-21 04:09:06 +0530321 u64 *rqe_wr_id_tbl;
322 u32 *idx_bit_fields;
323 u32 bit_fields_len;
Naresh Gottumukkala9884bcd2013-06-10 04:42:42 +0000324
325 /* provide synchronization to multiple context(s) posting rqe */
326 spinlock_t q_lock ____cacheline_aligned;
327
328 struct ocrdma_pd *pd;
329 u32 id;
Parav Panditfe2caef2012-03-21 04:09:06 +0530330};
331
332struct ocrdma_qp {
333 struct ib_qp ibqp;
334 struct ocrdma_dev *dev;
335
336 u8 __iomem *sq_db;
Parav Panditfe2caef2012-03-21 04:09:06 +0530337 struct ocrdma_qp_hwq_info sq;
338 struct {
339 uint64_t wrid;
340 uint16_t dpp_wqe_idx;
341 uint16_t dpp_wqe;
342 uint8_t signaled;
343 uint8_t rsvd[3];
344 } *wqe_wr_id_tbl;
345 u32 max_inline_data;
Naresh Gottumukkala9884bcd2013-06-10 04:42:42 +0000346
347 /* provide synchronization to multiple context(s) posting wqe, rqe */
348 spinlock_t q_lock ____cacheline_aligned;
Parav Panditfe2caef2012-03-21 04:09:06 +0530349 struct ocrdma_cq *sq_cq;
350 /* list maintained per CQ to flush SQ errors */
351 struct list_head sq_entry;
352
353 u8 __iomem *rq_db;
354 struct ocrdma_qp_hwq_info rq;
355 u64 *rqe_wr_id_tbl;
356 struct ocrdma_cq *rq_cq;
357 struct ocrdma_srq *srq;
358 /* list maintained per CQ to flush RQ errors */
359 struct list_head rq_entry;
360
361 enum ocrdma_qp_state state; /* QP state */
362 int cap_flags;
363 u32 max_ord, max_ird;
364
365 u32 id;
366 struct ocrdma_pd *pd;
367
368 enum ib_qp_type qp_type;
369
370 int sgid_idx;
371 u32 qkey;
372 bool dpp_enabled;
373 u8 *ird_q_va;
Naresh Gottumukkala2b51a9b2013-08-26 15:27:43 +0530374 bool signaled;
Parav Panditfe2caef2012-03-21 04:09:06 +0530375};
376
Parav Panditfe2caef2012-03-21 04:09:06 +0530377struct ocrdma_ucontext {
378 struct ib_ucontext ibucontext;
Parav Panditfe2caef2012-03-21 04:09:06 +0530379
380 struct list_head mm_head;
381 struct mutex mm_list_lock; /* protects list entries of mm type */
Naresh Gottumukkalacffce992013-08-26 15:27:44 +0530382 struct ocrdma_pd *cntxt_pd;
383 int pd_in_use;
384
Parav Panditfe2caef2012-03-21 04:09:06 +0530385 struct {
386 u32 *va;
387 dma_addr_t pa;
388 u32 len;
389 } ah_tbl;
390};
391
392struct ocrdma_mm {
393 struct {
394 u64 phy_addr;
395 unsigned long len;
396 } key;
397 struct list_head entry;
398};
399
400static inline struct ocrdma_dev *get_ocrdma_dev(struct ib_device *ibdev)
401{
402 return container_of(ibdev, struct ocrdma_dev, ibdev);
403}
404
405static inline struct ocrdma_ucontext *get_ocrdma_ucontext(struct ib_ucontext
406 *ibucontext)
407{
408 return container_of(ibucontext, struct ocrdma_ucontext, ibucontext);
409}
410
411static inline struct ocrdma_pd *get_ocrdma_pd(struct ib_pd *ibpd)
412{
413 return container_of(ibpd, struct ocrdma_pd, ibpd);
414}
415
416static inline struct ocrdma_cq *get_ocrdma_cq(struct ib_cq *ibcq)
417{
418 return container_of(ibcq, struct ocrdma_cq, ibcq);
419}
420
421static inline struct ocrdma_qp *get_ocrdma_qp(struct ib_qp *ibqp)
422{
423 return container_of(ibqp, struct ocrdma_qp, ibqp);
424}
425
426static inline struct ocrdma_mr *get_ocrdma_mr(struct ib_mr *ibmr)
427{
428 return container_of(ibmr, struct ocrdma_mr, ibmr);
429}
430
431static inline struct ocrdma_ah *get_ocrdma_ah(struct ib_ah *ibah)
432{
433 return container_of(ibah, struct ocrdma_ah, ibah);
434}
435
436static inline struct ocrdma_srq *get_ocrdma_srq(struct ib_srq *ibsrq)
437{
438 return container_of(ibsrq, struct ocrdma_srq, ibsrq);
439}
440
Naresh Gottumukkaladf176ea2013-06-10 04:42:41 +0000441static inline int is_cqe_valid(struct ocrdma_cq *cq, struct ocrdma_cqe *cqe)
442{
443 int cqe_valid;
444 cqe_valid = le32_to_cpu(cqe->flags_status_srcqpn) & OCRDMA_CQE_VALID;
Naresh Gottumukkalaf99b1642013-08-07 12:52:32 +0530445 return (cqe_valid == cq->phase);
Naresh Gottumukkaladf176ea2013-06-10 04:42:41 +0000446}
447
448static inline int is_cqe_for_sq(struct ocrdma_cqe *cqe)
449{
450 return (le32_to_cpu(cqe->flags_status_srcqpn) &
451 OCRDMA_CQE_QTYPE) ? 0 : 1;
452}
453
454static inline int is_cqe_invalidated(struct ocrdma_cqe *cqe)
455{
456 return (le32_to_cpu(cqe->flags_status_srcqpn) &
457 OCRDMA_CQE_INVALIDATE) ? 1 : 0;
458}
459
460static inline int is_cqe_imm(struct ocrdma_cqe *cqe)
461{
462 return (le32_to_cpu(cqe->flags_status_srcqpn) &
463 OCRDMA_CQE_IMM) ? 1 : 0;
464}
465
466static inline int is_cqe_wr_imm(struct ocrdma_cqe *cqe)
467{
468 return (le32_to_cpu(cqe->flags_status_srcqpn) &
469 OCRDMA_CQE_WRITE_IMM) ? 1 : 0;
470}
471
Moni Shoua40aca6f2013-12-12 18:03:15 +0200472static inline int ocrdma_resolve_dmac(struct ocrdma_dev *dev,
473 struct ib_ah_attr *ah_attr, u8 *mac_addr)
474{
475 struct in6_addr in6;
476
477 memcpy(&in6, ah_attr->grh.dgid.raw, sizeof(in6));
478 if (rdma_is_multicast_addr(&in6))
479 rdma_get_mcast_mac(&in6, mac_addr);
480 else
481 memcpy(mac_addr, ah_attr->dmac, ETH_ALEN);
482 return 0;
483}
Naresh Gottumukkaladf176ea2013-06-10 04:42:41 +0000484
Selvin Xaviera51f06e2014-02-04 11:57:07 +0530485static inline char *hca_name(struct ocrdma_dev *dev)
486{
487 switch (dev->nic_info.pdev->device) {
488 case OC_SKH_DEVICE_PF:
489 case OC_SKH_DEVICE_VF:
490 return OC_NAME_SH;
491 default:
492 return OC_NAME_UNKNOWN;
493 }
494}
495
Devesh Sharmaea617622014-02-04 11:56:54 +0530496static inline int ocrdma_get_eq_table_index(struct ocrdma_dev *dev,
497 int eqid)
498{
499 int indx;
500
501 for (indx = 0; indx < dev->eq_cnt; indx++) {
502 if (dev->eq_tbl[indx].q.id == eqid)
503 return indx;
504 }
505
506 return -EINVAL;
507}
508
Devesh Sharma21c33912014-02-04 11:56:56 +0530509static inline u8 ocrdma_get_asic_type(struct ocrdma_dev *dev)
510{
511 if (dev->nic_info.dev_family == 0xF && !dev->asic_id) {
512 pci_read_config_dword(
513 dev->nic_info.pdev,
514 OCRDMA_SLI_ASIC_ID_OFFSET, &dev->asic_id);
515 }
516
517 return (dev->asic_id & OCRDMA_SLI_ASIC_GEN_NUM_MASK) >>
518 OCRDMA_SLI_ASIC_GEN_NUM_SHIFT;
519}
520
Parav Panditfe2caef2012-03-21 04:09:06 +0530521#endif