]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/dev/mlx5/driver.h
Refactor the flowsteering APIs used by mlx5en(4). This change is needed by
[FreeBSD/FreeBSD.git] / sys / dev / mlx5 / driver.h
1 /*-
2  * Copyright (c) 2013-2017, Mellanox Technologies, Ltd.  All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  * 1. Redistributions of source code must retain the above copyright
8  *    notice, this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright
10  *    notice, this list of conditions and the following disclaimer in the
11  *    documentation and/or other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS `AS IS' AND
14  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16  * ARE DISCLAIMED.  IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
17  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23  * SUCH DAMAGE.
24  *
25  * $FreeBSD$
26  */
27
28 #ifndef MLX5_DRIVER_H
29 #define MLX5_DRIVER_H
30
31 #include <linux/kernel.h>
32 #include <linux/completion.h>
33 #include <linux/pci.h>
34 #include <linux/cache.h>
35 #include <linux/rbtree.h>
36 #include <linux/if_ether.h>
37 #include <linux/semaphore.h>
38 #include <linux/slab.h>
39 #include <linux/vmalloc.h>
40 #include <linux/radix-tree.h>
41
42 #include <dev/mlx5/device.h>
43 #include <dev/mlx5/doorbell.h>
44
45 #define MLX5_QCOUNTER_SETS_NETDEV 64
46 #define MLX5_MAX_NUMBER_OF_VFS 128
47
48 enum {
49         MLX5_BOARD_ID_LEN = 64,
50         MLX5_MAX_NAME_LEN = 16,
51 };
52
53 enum {
54         MLX5_CMD_TIMEOUT_MSEC   = 8 * 60 * 1000,
55         MLX5_CMD_WQ_MAX_NAME    = 32,
56 };
57
58 enum {
59         CMD_OWNER_SW            = 0x0,
60         CMD_OWNER_HW            = 0x1,
61         CMD_STATUS_SUCCESS      = 0,
62 };
63
64 enum mlx5_sqp_t {
65         MLX5_SQP_SMI            = 0,
66         MLX5_SQP_GSI            = 1,
67         MLX5_SQP_IEEE_1588      = 2,
68         MLX5_SQP_SNIFFER        = 3,
69         MLX5_SQP_SYNC_UMR       = 4,
70 };
71
72 enum {
73         MLX5_MAX_PORTS  = 2,
74 };
75
76 enum {
77         MLX5_EQ_VEC_PAGES        = 0,
78         MLX5_EQ_VEC_CMD          = 1,
79         MLX5_EQ_VEC_ASYNC        = 2,
80         MLX5_EQ_VEC_COMP_BASE,
81 };
82
83 enum {
84         MLX5_MAX_IRQ_NAME       = 32
85 };
86
87 enum {
88         MLX5_ATOMIC_MODE_OFF            = 16,
89         MLX5_ATOMIC_MODE_NONE           = 0 << MLX5_ATOMIC_MODE_OFF,
90         MLX5_ATOMIC_MODE_IB_COMP        = 1 << MLX5_ATOMIC_MODE_OFF,
91         MLX5_ATOMIC_MODE_CX             = 2 << MLX5_ATOMIC_MODE_OFF,
92         MLX5_ATOMIC_MODE_8B             = 3 << MLX5_ATOMIC_MODE_OFF,
93         MLX5_ATOMIC_MODE_16B            = 4 << MLX5_ATOMIC_MODE_OFF,
94         MLX5_ATOMIC_MODE_32B            = 5 << MLX5_ATOMIC_MODE_OFF,
95         MLX5_ATOMIC_MODE_64B            = 6 << MLX5_ATOMIC_MODE_OFF,
96         MLX5_ATOMIC_MODE_128B           = 7 << MLX5_ATOMIC_MODE_OFF,
97         MLX5_ATOMIC_MODE_256B           = 8 << MLX5_ATOMIC_MODE_OFF,
98 };
99
100 enum {
101         MLX5_ATOMIC_MODE_DCT_OFF        = 20,
102         MLX5_ATOMIC_MODE_DCT_NONE       = 0 << MLX5_ATOMIC_MODE_DCT_OFF,
103         MLX5_ATOMIC_MODE_DCT_IB_COMP    = 1 << MLX5_ATOMIC_MODE_DCT_OFF,
104         MLX5_ATOMIC_MODE_DCT_CX         = 2 << MLX5_ATOMIC_MODE_DCT_OFF,
105         MLX5_ATOMIC_MODE_DCT_8B         = 3 << MLX5_ATOMIC_MODE_DCT_OFF,
106         MLX5_ATOMIC_MODE_DCT_16B        = 4 << MLX5_ATOMIC_MODE_DCT_OFF,
107         MLX5_ATOMIC_MODE_DCT_32B        = 5 << MLX5_ATOMIC_MODE_DCT_OFF,
108         MLX5_ATOMIC_MODE_DCT_64B        = 6 << MLX5_ATOMIC_MODE_DCT_OFF,
109         MLX5_ATOMIC_MODE_DCT_128B       = 7 << MLX5_ATOMIC_MODE_DCT_OFF,
110         MLX5_ATOMIC_MODE_DCT_256B       = 8 << MLX5_ATOMIC_MODE_DCT_OFF,
111 };
112
113 enum {
114         MLX5_ATOMIC_OPS_CMP_SWAP                = 1 << 0,
115         MLX5_ATOMIC_OPS_FETCH_ADD               = 1 << 1,
116         MLX5_ATOMIC_OPS_MASKED_CMP_SWAP         = 1 << 2,
117         MLX5_ATOMIC_OPS_MASKED_FETCH_ADD        = 1 << 3,
118 };
119
120 enum {
121         MLX5_REG_QETCR           = 0x4005,
122         MLX5_REG_QPDP            = 0x4007,
123         MLX5_REG_QTCT            = 0x400A,
124         MLX5_REG_QHLL            = 0x4016,
125         MLX5_REG_DCBX_PARAM      = 0x4020,
126         MLX5_REG_DCBX_APP        = 0x4021,
127         MLX5_REG_PCAP            = 0x5001,
128         MLX5_REG_PMTU            = 0x5003,
129         MLX5_REG_PTYS            = 0x5004,
130         MLX5_REG_PAOS            = 0x5006,
131         MLX5_REG_PFCC            = 0x5007,
132         MLX5_REG_PPCNT           = 0x5008,
133         MLX5_REG_PMAOS           = 0x5012,
134         MLX5_REG_PUDE            = 0x5009,
135         MLX5_REG_PPTB            = 0x500B,
136         MLX5_REG_PBMC            = 0x500C,
137         MLX5_REG_PMPE            = 0x5010,
138         MLX5_REG_PELC            = 0x500e,
139         MLX5_REG_PVLC            = 0x500f,
140         MLX5_REG_PMLP            = 0x5002,
141         MLX5_REG_NODE_DESC       = 0x6001,
142         MLX5_REG_HOST_ENDIANNESS = 0x7004,
143         MLX5_REG_MCIA            = 0x9014,
144         MLX5_REG_MPCNT           = 0x9051,
145 };
146
147 enum dbg_rsc_type {
148         MLX5_DBG_RSC_QP,
149         MLX5_DBG_RSC_EQ,
150         MLX5_DBG_RSC_CQ,
151 };
152
153 enum {
154         MLX5_INTERFACE_PROTOCOL_IB  = 0,
155         MLX5_INTERFACE_PROTOCOL_ETH = 1,
156         MLX5_INTERFACE_NUMBER       = 2,
157 };
158
159 struct mlx5_field_desc {
160         struct dentry          *dent;
161         int                     i;
162 };
163
164 struct mlx5_rsc_debug {
165         struct mlx5_core_dev   *dev;
166         void                   *object;
167         enum dbg_rsc_type       type;
168         struct dentry          *root;
169         struct mlx5_field_desc  fields[0];
170 };
171
172 enum mlx5_dev_event {
173         MLX5_DEV_EVENT_SYS_ERROR,
174         MLX5_DEV_EVENT_PORT_UP,
175         MLX5_DEV_EVENT_PORT_DOWN,
176         MLX5_DEV_EVENT_PORT_INITIALIZED,
177         MLX5_DEV_EVENT_LID_CHANGE,
178         MLX5_DEV_EVENT_PKEY_CHANGE,
179         MLX5_DEV_EVENT_GUID_CHANGE,
180         MLX5_DEV_EVENT_CLIENT_REREG,
181         MLX5_DEV_EVENT_VPORT_CHANGE,
182         MLX5_DEV_EVENT_ERROR_STATE_DCBX,
183         MLX5_DEV_EVENT_REMOTE_CONFIG_CHANGE,
184         MLX5_DEV_EVENT_LOCAL_OPER_CHANGE,
185         MLX5_DEV_EVENT_REMOTE_CONFIG_APPLICATION_PRIORITY_CHANGE,
186 };
187
188 enum mlx5_port_status {
189         MLX5_PORT_UP        = 1 << 0,
190         MLX5_PORT_DOWN      = 1 << 1,
191 };
192
193 enum mlx5_link_mode {
194         MLX5_1000BASE_CX_SGMII  = 0,
195         MLX5_1000BASE_KX        = 1,
196         MLX5_10GBASE_CX4        = 2,
197         MLX5_10GBASE_KX4        = 3,
198         MLX5_10GBASE_KR         = 4,
199         MLX5_20GBASE_KR2        = 5,
200         MLX5_40GBASE_CR4        = 6,
201         MLX5_40GBASE_KR4        = 7,
202         MLX5_56GBASE_R4         = 8,
203         MLX5_10GBASE_CR         = 12,
204         MLX5_10GBASE_SR         = 13,
205         MLX5_10GBASE_ER         = 14,
206         MLX5_40GBASE_SR4        = 15,
207         MLX5_40GBASE_LR4        = 16,
208         MLX5_100GBASE_CR4       = 20,
209         MLX5_100GBASE_SR4       = 21,
210         MLX5_100GBASE_KR4       = 22,
211         MLX5_100GBASE_LR4       = 23,
212         MLX5_100BASE_TX         = 24,
213         MLX5_1000BASE_T         = 25,
214         MLX5_10GBASE_T          = 26,
215         MLX5_25GBASE_CR         = 27,
216         MLX5_25GBASE_KR         = 28,
217         MLX5_25GBASE_SR         = 29,
218         MLX5_50GBASE_CR2        = 30,
219         MLX5_50GBASE_KR2        = 31,
220         MLX5_LINK_MODES_NUMBER,
221 };
222
223 #define MLX5_PROT_MASK(link_mode) (1 << link_mode)
224
225 struct mlx5_uuar_info {
226         struct mlx5_uar        *uars;
227         int                     num_uars;
228         int                     num_low_latency_uuars;
229         unsigned long          *bitmap;
230         unsigned int           *count;
231         struct mlx5_bf         *bfs;
232
233         /*
234          * protect uuar allocation data structs
235          */
236         struct mutex            lock;
237         u32                     ver;
238 };
239
240 struct mlx5_bf {
241         void __iomem           *reg;
242         void __iomem           *regreg;
243         int                     buf_size;
244         struct mlx5_uar        *uar;
245         unsigned long           offset;
246         int                     need_lock;
247         /* protect blue flame buffer selection when needed
248          */
249         spinlock_t              lock;
250
251         /* serialize 64 bit writes when done as two 32 bit accesses
252          */
253         spinlock_t              lock32;
254         int                     uuarn;
255 };
256
257 struct mlx5_cmd_first {
258         __be32          data[4];
259 };
260
261 struct cache_ent;
262 struct mlx5_fw_page {
263         union {
264                 struct rb_node rb_node;
265                 struct list_head list;
266         };
267         struct mlx5_cmd_first first;
268         struct mlx5_core_dev *dev;
269         bus_dmamap_t dma_map;
270         bus_addr_t dma_addr;
271         void *virt_addr;
272         struct cache_ent *cache;
273         u32 numpages;
274         u16 load_done;
275 #define MLX5_LOAD_ST_NONE 0
276 #define MLX5_LOAD_ST_SUCCESS 1
277 #define MLX5_LOAD_ST_FAILURE 2
278         u16 func_id;
279 };
280 #define mlx5_cmd_msg mlx5_fw_page
281
282 struct mlx5_cmd_debug {
283         struct dentry          *dbg_root;
284         struct dentry          *dbg_in;
285         struct dentry          *dbg_out;
286         struct dentry          *dbg_outlen;
287         struct dentry          *dbg_status;
288         struct dentry          *dbg_run;
289         void                   *in_msg;
290         void                   *out_msg;
291         u8                      status;
292         u16                     inlen;
293         u16                     outlen;
294 };
295
296 struct cache_ent {
297         /* protect block chain allocations
298          */
299         spinlock_t              lock;
300         struct list_head        head;
301 };
302
303 struct cmd_msg_cache {
304         struct cache_ent        large;
305         struct cache_ent        med;
306
307 };
308
309 struct mlx5_cmd_stats {
310         u64             sum;
311         u64             n;
312         struct dentry  *root;
313         struct dentry  *avg;
314         struct dentry  *count;
315         /* protect command average calculations */
316         spinlock_t      lock;
317 };
318
319 struct mlx5_cmd {
320         struct mlx5_fw_page *cmd_page;
321         bus_dma_tag_t dma_tag;
322         struct sx dma_sx;
323         struct mtx dma_mtx;
324 #define MLX5_DMA_OWNED(dev) mtx_owned(&(dev)->cmd.dma_mtx)
325 #define MLX5_DMA_LOCK(dev) mtx_lock(&(dev)->cmd.dma_mtx)
326 #define MLX5_DMA_UNLOCK(dev) mtx_unlock(&(dev)->cmd.dma_mtx)
327         struct cv dma_cv;
328 #define MLX5_DMA_DONE(dev) cv_broadcast(&(dev)->cmd.dma_cv)
329 #define MLX5_DMA_WAIT(dev) cv_wait(&(dev)->cmd.dma_cv, &(dev)->cmd.dma_mtx)
330         void           *cmd_buf;
331         dma_addr_t      dma;
332         u16             cmdif_rev;
333         u8              log_sz;
334         u8              log_stride;
335         int             max_reg_cmds;
336         int             events;
337         u32 __iomem    *vector;
338
339         /* protect command queue allocations
340          */
341         spinlock_t      alloc_lock;
342
343         /* protect token allocations
344          */
345         spinlock_t      token_lock;
346         u8              token;
347         unsigned long   bitmask;
348         char            wq_name[MLX5_CMD_WQ_MAX_NAME];
349         struct workqueue_struct *wq;
350         struct semaphore sem;
351         struct semaphore pages_sem;
352         int     mode;
353         struct mlx5_cmd_work_ent *ent_arr[MLX5_MAX_COMMANDS];
354         struct mlx5_cmd_debug dbg;
355         struct cmd_msg_cache cache;
356         int checksum_disabled;
357         struct mlx5_cmd_stats stats[MLX5_CMD_OP_MAX];
358         int moving_to_polling;
359 };
360
361 struct mlx5_port_caps {
362         int     gid_table_len;
363         int     pkey_table_len;
364         u8      ext_port_cap;
365 };
366
367 struct mlx5_buf {
368         bus_dma_tag_t           dma_tag;
369         bus_dmamap_t            dma_map;
370         struct mlx5_core_dev   *dev;
371         struct {
372                 void           *buf;
373         } direct;
374         u64                    *page_list;
375         int                     npages;
376         int                     size;
377         u8                      page_shift;
378         u8                      load_done;
379 };
380
381 struct mlx5_eq {
382         struct mlx5_core_dev   *dev;
383         __be32 __iomem         *doorbell;
384         u32                     cons_index;
385         struct mlx5_buf         buf;
386         int                     size;
387         u8                      irqn;
388         u8                      eqn;
389         int                     nent;
390         u64                     mask;
391         struct list_head        list;
392         int                     index;
393         struct mlx5_rsc_debug   *dbg;
394 };
395
396 struct mlx5_core_psv {
397         u32     psv_idx;
398         struct psv_layout {
399                 u32     pd;
400                 u16     syndrome;
401                 u16     reserved;
402                 u16     bg;
403                 u16     app_tag;
404                 u32     ref_tag;
405         } psv;
406 };
407
408 struct mlx5_core_sig_ctx {
409         struct mlx5_core_psv    psv_memory;
410         struct mlx5_core_psv    psv_wire;
411 #if (__FreeBSD_version >= 1100000)
412         struct ib_sig_err       err_item;
413 #endif
414         bool                    sig_status_checked;
415         bool                    sig_err_exists;
416         u32                     sigerr_count;
417 };
418
419 struct mlx5_core_mr {
420         u64                     iova;
421         u64                     size;
422         u32                     key;
423         u32                     pd;
424 };
425
426 enum mlx5_res_type {
427         MLX5_RES_QP     = MLX5_EVENT_QUEUE_TYPE_QP,
428         MLX5_RES_RQ     = MLX5_EVENT_QUEUE_TYPE_RQ,
429         MLX5_RES_SQ     = MLX5_EVENT_QUEUE_TYPE_SQ,
430         MLX5_RES_SRQ    = 3,
431         MLX5_RES_XSRQ   = 4,
432         MLX5_RES_DCT    = 5,
433 };
434
435 struct mlx5_core_rsc_common {
436         enum mlx5_res_type      res;
437         atomic_t                refcount;
438         struct completion       free;
439 };
440
441 struct mlx5_core_srq {
442         struct mlx5_core_rsc_common     common; /* must be first */
443         u32                             srqn;
444         int                             max;
445         int                             max_gs;
446         int                             max_avail_gather;
447         int                             wqe_shift;
448         void                            (*event)(struct mlx5_core_srq *, int);
449         atomic_t                        refcount;
450         struct completion               free;
451 };
452
453 struct mlx5_eq_table {
454         void __iomem           *update_ci;
455         void __iomem           *update_arm_ci;
456         struct list_head        comp_eqs_list;
457         struct mlx5_eq          pages_eq;
458         struct mlx5_eq          async_eq;
459         struct mlx5_eq          cmd_eq;
460         int                     num_comp_vectors;
461         /* protect EQs list
462          */
463         spinlock_t              lock;
464 };
465
466 struct mlx5_uar {
467         u32                     index;
468         void __iomem           *bf_map;
469         void __iomem           *map;
470 };
471
472
473 struct mlx5_core_health {
474         struct mlx5_health_buffer __iomem       *health;
475         __be32 __iomem                 *health_counter;
476         struct timer_list               timer;
477         struct list_head                list;
478         u32                             prev;
479         int                             miss_counter;
480 };
481
482 #define MLX5_CQ_LINEAR_ARRAY_SIZE       1024
483
484 struct mlx5_cq_linear_array_entry {
485         spinlock_t      lock;
486         struct mlx5_core_cq * volatile cq;
487 };
488
489 struct mlx5_cq_table {
490         /* protect radix tree
491          */
492         spinlock_t              lock;
493         struct radix_tree_root  tree;
494         struct mlx5_cq_linear_array_entry linear_array[MLX5_CQ_LINEAR_ARRAY_SIZE];
495 };
496
497 struct mlx5_qp_table {
498         /* protect radix tree
499          */
500         spinlock_t              lock;
501         struct radix_tree_root  tree;
502 };
503
504 struct mlx5_srq_table {
505         /* protect radix tree
506          */
507         spinlock_t              lock;
508         struct radix_tree_root  tree;
509 };
510
511 struct mlx5_mr_table {
512         /* protect radix tree
513          */
514         spinlock_t              lock;
515         struct radix_tree_root  tree;
516 };
517
518 struct mlx5_irq_info {
519         char name[MLX5_MAX_IRQ_NAME];
520 };
521
522 struct mlx5_priv {
523         char                    name[MLX5_MAX_NAME_LEN];
524         struct mlx5_eq_table    eq_table;
525         struct msix_entry       *msix_arr;
526         struct mlx5_irq_info    *irq_info;
527         struct mlx5_uuar_info   uuari;
528         MLX5_DECLARE_DOORBELL_LOCK(cq_uar_lock);
529
530         struct io_mapping       *bf_mapping;
531
532         /* pages stuff */
533         struct workqueue_struct *pg_wq;
534         struct rb_root          page_root;
535         s64                     fw_pages;
536         atomic_t                reg_pages;
537         s64                     pages_per_func[MLX5_MAX_NUMBER_OF_VFS];
538         struct mlx5_core_health health;
539
540         struct mlx5_srq_table   srq_table;
541
542         /* start: qp staff */
543         struct mlx5_qp_table    qp_table;
544         struct dentry          *qp_debugfs;
545         struct dentry          *eq_debugfs;
546         struct dentry          *cq_debugfs;
547         struct dentry          *cmdif_debugfs;
548         /* end: qp staff */
549
550         /* start: cq staff */
551         struct mlx5_cq_table    cq_table;
552         /* end: cq staff */
553
554         /* start: mr staff */
555         struct mlx5_mr_table    mr_table;
556         /* end: mr staff */
557
558         /* start: alloc staff */
559         int                     numa_node;
560
561         struct mutex   pgdir_mutex;
562         struct list_head        pgdir_list;
563         /* end: alloc staff */
564         struct dentry          *dbg_root;
565
566         /* protect mkey key part */
567         spinlock_t              mkey_lock;
568         u8                      mkey_key;
569
570         struct list_head        dev_list;
571         struct list_head        ctx_list;
572         spinlock_t              ctx_lock;
573         unsigned long           pci_dev_data;
574 };
575
576 enum mlx5_device_state {
577         MLX5_DEVICE_STATE_UP,
578         MLX5_DEVICE_STATE_INTERNAL_ERROR,
579 };
580
581 struct mlx5_special_contexts {
582         int resd_lkey;
583 };
584
585 struct mlx5_flow_root_namespace;
586 struct mlx5_core_dev {
587         struct pci_dev         *pdev;
588         char                    board_id[MLX5_BOARD_ID_LEN];
589         struct mlx5_cmd         cmd;
590         struct mlx5_port_caps   port_caps[MLX5_MAX_PORTS];
591         u32 hca_caps_cur[MLX5_CAP_NUM][MLX5_UN_SZ_DW(hca_cap_union)];
592         u32 hca_caps_max[MLX5_CAP_NUM][MLX5_UN_SZ_DW(hca_cap_union)];
593         struct mlx5_init_seg __iomem *iseg;
594         enum mlx5_device_state  state;
595         void                    (*event) (struct mlx5_core_dev *dev,
596                                           enum mlx5_dev_event event,
597                                           unsigned long param);
598         struct mlx5_priv        priv;
599         struct mlx5_profile     *profile;
600         atomic_t                num_qps;
601         u32                     issi;
602         struct mlx5_special_contexts special_contexts;
603         unsigned int module_status[MLX5_MAX_PORTS];
604         struct mlx5_flow_root_namespace *root_ns;
605         struct mlx5_flow_root_namespace *fdb_root_ns;
606         struct mlx5_flow_root_namespace *esw_egress_root_ns;
607         struct mlx5_flow_root_namespace *esw_ingress_root_ns;
608         struct mlx5_flow_root_namespace *sniffer_rx_root_ns;
609         struct mlx5_flow_root_namespace *sniffer_tx_root_ns;
610         u32 num_q_counter_allocated[MLX5_INTERFACE_NUMBER];
611 };
612
613 enum {
614         MLX5_WOL_DISABLE       = 0,
615         MLX5_WOL_SECURED_MAGIC = 1 << 1,
616         MLX5_WOL_MAGIC         = 1 << 2,
617         MLX5_WOL_ARP           = 1 << 3,
618         MLX5_WOL_BROADCAST     = 1 << 4,
619         MLX5_WOL_MULTICAST     = 1 << 5,
620         MLX5_WOL_UNICAST       = 1 << 6,
621         MLX5_WOL_PHY_ACTIVITY  = 1 << 7,
622 };
623
624 struct mlx5_db {
625         __be32                  *db;
626         union {
627                 struct mlx5_db_pgdir            *pgdir;
628                 struct mlx5_ib_user_db_page     *user_page;
629         }                       u;
630         dma_addr_t              dma;
631         int                     index;
632 };
633
634 struct mlx5_net_counters {
635         u64     packets;
636         u64     octets;
637 };
638
639 struct mlx5_ptys_reg {
640         u8      an_dis_admin;
641         u8      an_dis_ap;
642         u8      local_port;
643         u8      proto_mask;
644         u32     eth_proto_cap;
645         u16     ib_link_width_cap;
646         u16     ib_proto_cap;
647         u32     eth_proto_admin;
648         u16     ib_link_width_admin;
649         u16     ib_proto_admin;
650         u32     eth_proto_oper;
651         u16     ib_link_width_oper;
652         u16     ib_proto_oper;
653         u32     eth_proto_lp_advertise;
654 };
655
656 struct mlx5_pvlc_reg {
657         u8      local_port;
658         u8      vl_hw_cap;
659         u8      vl_admin;
660         u8      vl_operational;
661 };
662
663 struct mlx5_pmtu_reg {
664         u8      local_port;
665         u16     max_mtu;
666         u16     admin_mtu;
667         u16     oper_mtu;
668 };
669
670 struct mlx5_vport_counters {
671         struct mlx5_net_counters        received_errors;
672         struct mlx5_net_counters        transmit_errors;
673         struct mlx5_net_counters        received_ib_unicast;
674         struct mlx5_net_counters        transmitted_ib_unicast;
675         struct mlx5_net_counters        received_ib_multicast;
676         struct mlx5_net_counters        transmitted_ib_multicast;
677         struct mlx5_net_counters        received_eth_broadcast;
678         struct mlx5_net_counters        transmitted_eth_broadcast;
679         struct mlx5_net_counters        received_eth_unicast;
680         struct mlx5_net_counters        transmitted_eth_unicast;
681         struct mlx5_net_counters        received_eth_multicast;
682         struct mlx5_net_counters        transmitted_eth_multicast;
683 };
684
685 enum {
686         MLX5_DB_PER_PAGE = MLX5_ADAPTER_PAGE_SIZE / L1_CACHE_BYTES,
687 };
688
689 struct mlx5_core_dct {
690         struct mlx5_core_rsc_common     common; /* must be first */
691         void (*event)(struct mlx5_core_dct *, int);
692         int                     dctn;
693         struct completion       drained;
694         struct mlx5_rsc_debug   *dbg;
695         int                     pid;
696 };
697
698 enum {
699         MLX5_COMP_EQ_SIZE = 1024,
700 };
701
702 enum {
703         MLX5_PTYS_IB = 1 << 0,
704         MLX5_PTYS_EN = 1 << 2,
705 };
706
707 struct mlx5_db_pgdir {
708         struct list_head        list;
709         DECLARE_BITMAP(bitmap, MLX5_DB_PER_PAGE);
710         struct mlx5_fw_page    *fw_page;
711         __be32                 *db_page;
712         dma_addr_t              db_dma;
713 };
714
715 typedef void (*mlx5_cmd_cbk_t)(int status, void *context);
716
717 struct mlx5_cmd_work_ent {
718         struct mlx5_cmd_msg    *in;
719         struct mlx5_cmd_msg    *out;
720         int                     uin_size;
721         void                   *uout;
722         int                     uout_size;
723         mlx5_cmd_cbk_t          callback;
724         void                   *context;
725         int                     idx;
726         struct completion       done;
727         struct mlx5_cmd        *cmd;
728         struct work_struct      work;
729         struct mlx5_cmd_layout *lay;
730         int                     ret;
731         int                     page_queue;
732         u8                      status;
733         u8                      token;
734         u64                     ts1;
735         u64                     ts2;
736         u16                     op;
737         u8                      busy;
738 };
739
740 struct mlx5_pas {
741         u64     pa;
742         u8      log_sz;
743 };
744
745 static inline void *
746 mlx5_buf_offset(struct mlx5_buf *buf, int offset)
747 {
748         return ((char *)buf->direct.buf + offset);
749 }
750
751
752 extern struct workqueue_struct *mlx5_core_wq;
753
754 #define STRUCT_FIELD(header, field) \
755         .struct_offset_bytes = offsetof(struct ib_unpacked_ ## header, field),      \
756         .struct_size_bytes   = sizeof((struct ib_unpacked_ ## header *)0)->field
757
758 static inline struct mlx5_core_dev *pci2mlx5_core_dev(struct pci_dev *pdev)
759 {
760         return pci_get_drvdata(pdev);
761 }
762
763 extern struct dentry *mlx5_debugfs_root;
764
765 static inline u16 fw_rev_maj(struct mlx5_core_dev *dev)
766 {
767         return ioread32be(&dev->iseg->fw_rev) & 0xffff;
768 }
769
770 static inline u16 fw_rev_min(struct mlx5_core_dev *dev)
771 {
772         return ioread32be(&dev->iseg->fw_rev) >> 16;
773 }
774
775 static inline u16 fw_rev_sub(struct mlx5_core_dev *dev)
776 {
777         return ioread32be(&dev->iseg->cmdif_rev_fw_sub) & 0xffff;
778 }
779
780 static inline u16 cmdif_rev_get(struct mlx5_core_dev *dev)
781 {
782         return ioread32be(&dev->iseg->cmdif_rev_fw_sub) >> 16;
783 }
784
785 static inline int mlx5_get_gid_table_len(u16 param)
786 {
787         if (param > 4) {
788                 printf("M4_CORE_DRV_NAME: WARN: ""gid table length is zero\n");
789                 return 0;
790         }
791
792         return 8 * (1 << param);
793 }
794
795 static inline void *mlx5_vzalloc(unsigned long size)
796 {
797         void *rtn;
798
799         rtn = kzalloc(size, GFP_KERNEL | __GFP_NOWARN);
800         return rtn;
801 }
802
803 static inline void *mlx5_vmalloc(unsigned long size)
804 {
805         void *rtn;
806
807         rtn = kmalloc(size, GFP_KERNEL | __GFP_NOWARN);
808         if (!rtn)
809                 rtn = vmalloc(size);
810         return rtn;
811 }
812
813 void mlx5_enter_error_state(struct mlx5_core_dev *dev);
814 int mlx5_cmd_init(struct mlx5_core_dev *dev);
815 void mlx5_cmd_cleanup(struct mlx5_core_dev *dev);
816 void mlx5_cmd_use_events(struct mlx5_core_dev *dev);
817 void mlx5_cmd_use_polling(struct mlx5_core_dev *dev);
818 int mlx5_cmd_status_to_err(struct mlx5_outbox_hdr *hdr);
819 int mlx5_cmd_status_to_err_v2(void *ptr);
820 int mlx5_core_get_caps(struct mlx5_core_dev *dev, enum mlx5_cap_type cap_type,
821                        enum mlx5_cap_mode cap_mode);
822 int mlx5_cmd_exec(struct mlx5_core_dev *dev, void *in, int in_size, void *out,
823                   int out_size);
824 int mlx5_cmd_exec_cb(struct mlx5_core_dev *dev, void *in, int in_size,
825                      void *out, int out_size, mlx5_cmd_cbk_t callback,
826                      void *context);
827 int mlx5_cmd_alloc_uar(struct mlx5_core_dev *dev, u32 *uarn);
828 int mlx5_cmd_free_uar(struct mlx5_core_dev *dev, u32 uarn);
829 int mlx5_alloc_uuars(struct mlx5_core_dev *dev, struct mlx5_uuar_info *uuari);
830 int mlx5_free_uuars(struct mlx5_core_dev *dev, struct mlx5_uuar_info *uuari);
831 int mlx5_alloc_map_uar(struct mlx5_core_dev *mdev, struct mlx5_uar *uar);
832 void mlx5_unmap_free_uar(struct mlx5_core_dev *mdev, struct mlx5_uar *uar);
833 void mlx5_health_cleanup(void);
834 void  __init mlx5_health_init(void);
835 void mlx5_start_health_poll(struct mlx5_core_dev *dev);
836 void mlx5_stop_health_poll(struct mlx5_core_dev *dev);
837
838 #define mlx5_buf_alloc_node(dev, size, direct, buf, node) \
839         mlx5_buf_alloc(dev, size, direct, buf)
840 int mlx5_buf_alloc(struct mlx5_core_dev *dev, int size, int max_direct,
841                    struct mlx5_buf *buf);
842 void mlx5_buf_free(struct mlx5_core_dev *dev, struct mlx5_buf *buf);
843 int mlx5_core_create_srq(struct mlx5_core_dev *dev, struct mlx5_core_srq *srq,
844                          struct mlx5_create_srq_mbox_in *in, int inlen,
845                          int is_xrc);
846 int mlx5_core_destroy_srq(struct mlx5_core_dev *dev, struct mlx5_core_srq *srq);
847 int mlx5_core_query_srq(struct mlx5_core_dev *dev, struct mlx5_core_srq *srq,
848                         struct mlx5_query_srq_mbox_out *out);
849 int mlx5_core_query_vendor_id(struct mlx5_core_dev *mdev, u32 *vendor_id);
850 int mlx5_core_arm_srq(struct mlx5_core_dev *dev, struct mlx5_core_srq *srq,
851                       u16 lwm, int is_srq);
852 void mlx5_init_mr_table(struct mlx5_core_dev *dev);
853 void mlx5_cleanup_mr_table(struct mlx5_core_dev *dev);
854 int mlx5_core_create_mkey(struct mlx5_core_dev *dev, struct mlx5_core_mr *mr,
855                           struct mlx5_create_mkey_mbox_in *in, int inlen,
856                           mlx5_cmd_cbk_t callback, void *context,
857                           struct mlx5_create_mkey_mbox_out *out);
858 int mlx5_core_destroy_mkey(struct mlx5_core_dev *dev, struct mlx5_core_mr *mr);
859 int mlx5_core_query_mkey(struct mlx5_core_dev *dev, struct mlx5_core_mr *mr,
860                          struct mlx5_query_mkey_mbox_out *out, int outlen);
861 int mlx5_core_dump_fill_mkey(struct mlx5_core_dev *dev, struct mlx5_core_mr *mr,
862                              u32 *mkey);
863 int mlx5_core_alloc_pd(struct mlx5_core_dev *dev, u32 *pdn);
864 int mlx5_core_dealloc_pd(struct mlx5_core_dev *dev, u32 pdn);
865 int mlx5_core_mad_ifc(struct mlx5_core_dev *dev, void *inb, void *outb,
866                       u16 opmod, u8 port);
867 void mlx5_fwp_flush(struct mlx5_fw_page *fwp);
868 void mlx5_fwp_invalidate(struct mlx5_fw_page *fwp);
869 struct mlx5_fw_page *mlx5_fwp_alloc(struct mlx5_core_dev *dev, gfp_t flags, unsigned num);
870 void mlx5_fwp_free(struct mlx5_fw_page *fwp);
871 u64 mlx5_fwp_get_dma(struct mlx5_fw_page *fwp, size_t offset);
872 void *mlx5_fwp_get_virt(struct mlx5_fw_page *fwp, size_t offset);
873 void mlx5_pagealloc_init(struct mlx5_core_dev *dev);
874 void mlx5_pagealloc_cleanup(struct mlx5_core_dev *dev);
875 int mlx5_pagealloc_start(struct mlx5_core_dev *dev);
876 void mlx5_pagealloc_stop(struct mlx5_core_dev *dev);
877 void mlx5_core_req_pages_handler(struct mlx5_core_dev *dev, u16 func_id,
878                                  s32 npages);
879 int mlx5_satisfy_startup_pages(struct mlx5_core_dev *dev, int boot);
880 int mlx5_reclaim_startup_pages(struct mlx5_core_dev *dev);
881 s64 mlx5_wait_for_reclaim_vfs_pages(struct mlx5_core_dev *dev);
882 void mlx5_register_debugfs(void);
883 void mlx5_unregister_debugfs(void);
884 int mlx5_eq_init(struct mlx5_core_dev *dev);
885 void mlx5_eq_cleanup(struct mlx5_core_dev *dev);
886 void mlx5_fill_page_array(struct mlx5_buf *buf, __be64 *pas);
887 void mlx5_cq_completion(struct mlx5_core_dev *dev, u32 cqn);
888 void mlx5_rsc_event(struct mlx5_core_dev *dev, u32 rsn, int event_type);
889 void mlx5_srq_event(struct mlx5_core_dev *dev, u32 srqn, int event_type);
890 struct mlx5_core_srq *mlx5_core_get_srq(struct mlx5_core_dev *dev, u32 srqn);
891 void mlx5_cmd_comp_handler(struct mlx5_core_dev *dev, u32 vector);
892 void mlx5_trigger_cmd_completions(struct mlx5_core_dev *dev);
893 void mlx5_cq_event(struct mlx5_core_dev *dev, u32 cqn, int event_type);
894 int mlx5_create_map_eq(struct mlx5_core_dev *dev, struct mlx5_eq *eq, u8 vecidx,
895                        int nent, u64 mask, const char *name, struct mlx5_uar *uar);
896 int mlx5_destroy_unmap_eq(struct mlx5_core_dev *dev, struct mlx5_eq *eq);
897 int mlx5_start_eqs(struct mlx5_core_dev *dev);
898 int mlx5_stop_eqs(struct mlx5_core_dev *dev);
899 int mlx5_vector2eqn(struct mlx5_core_dev *dev, int vector, int *eqn, int *irqn);
900 int mlx5_core_attach_mcg(struct mlx5_core_dev *dev, union ib_gid *mgid, u32 qpn);
901 int mlx5_core_detach_mcg(struct mlx5_core_dev *dev, union ib_gid *mgid, u32 qpn);
902 int mlx5_core_set_dc_cnak_trace(struct mlx5_core_dev *dev, int enable,
903                                 u64 addr);
904
905 int mlx5_qp_debugfs_init(struct mlx5_core_dev *dev);
906 void mlx5_qp_debugfs_cleanup(struct mlx5_core_dev *dev);
907 int mlx5_core_access_reg(struct mlx5_core_dev *dev, void *data_in,
908                          int size_in, void *data_out, int size_out,
909                          u16 reg_num, int arg, int write);
910
911 void mlx5_toggle_port_link(struct mlx5_core_dev *dev);
912 int mlx5_set_port_caps(struct mlx5_core_dev *dev, u8 port_num, u32 caps);
913 int mlx5_query_port_ptys(struct mlx5_core_dev *dev, u32 *ptys,
914                          int ptys_size, int proto_mask);
915 int mlx5_query_port_proto_cap(struct mlx5_core_dev *dev,
916                               u32 *proto_cap, int proto_mask);
917 int mlx5_query_port_autoneg(struct mlx5_core_dev *dev, int proto_mask,
918                             u8 *an_disable_cap, u8 *an_disable_status);
919 int mlx5_set_port_autoneg(struct mlx5_core_dev *dev, bool disable,
920                           u32 eth_proto_admin, int proto_mask);
921 int mlx5_query_port_proto_admin(struct mlx5_core_dev *dev,
922                                 u32 *proto_admin, int proto_mask);
923 int mlx5_set_port_proto(struct mlx5_core_dev *dev, u32 proto_admin,
924                         int proto_mask);
925 int mlx5_set_port_status(struct mlx5_core_dev *dev,
926                          enum mlx5_port_status status);
927 int mlx5_query_port_status(struct mlx5_core_dev *dev, u8 *status);
928 int mlx5_query_port_admin_status(struct mlx5_core_dev *dev,
929                                  enum mlx5_port_status *status);
930 int mlx5_set_port_pause(struct mlx5_core_dev *dev, u32 port,
931                         u32 rx_pause, u32 tx_pause);
932 int mlx5_query_port_pause(struct mlx5_core_dev *dev, u32 port,
933                           u32 *rx_pause, u32 *tx_pause);
934 int mlx5_set_port_pfc(struct mlx5_core_dev *dev, u8 pfc_en_tx, u8 pfc_en_rx);
935 int mlx5_query_port_pfc(struct mlx5_core_dev *dev, u8 *pfc_en_tx, u8 *pfc_en_rx);
936
937 int mlx5_set_port_mtu(struct mlx5_core_dev *dev, int mtu);
938 int mlx5_query_port_max_mtu(struct mlx5_core_dev *dev, int *max_mtu);
939 int mlx5_query_port_oper_mtu(struct mlx5_core_dev *dev, int *oper_mtu);
940
941 unsigned int mlx5_query_module_status(struct mlx5_core_dev *dev, int module_num);
942 int mlx5_query_module_num(struct mlx5_core_dev *dev, int *module_num);
943 int mlx5_query_eeprom(struct mlx5_core_dev *dev, int i2c_addr, int page_num,
944                       int device_addr, int size, int module_num, u32 *data,
945                       int *size_read);
946
947 int mlx5_debug_eq_add(struct mlx5_core_dev *dev, struct mlx5_eq *eq);
948 void mlx5_debug_eq_remove(struct mlx5_core_dev *dev, struct mlx5_eq *eq);
949 int mlx5_core_eq_query(struct mlx5_core_dev *dev, struct mlx5_eq *eq,
950                        struct mlx5_query_eq_mbox_out *out, int outlen);
951 int mlx5_eq_debugfs_init(struct mlx5_core_dev *dev);
952 void mlx5_eq_debugfs_cleanup(struct mlx5_core_dev *dev);
953 int mlx5_cq_debugfs_init(struct mlx5_core_dev *dev);
954 void mlx5_cq_debugfs_cleanup(struct mlx5_core_dev *dev);
955 int mlx5_db_alloc(struct mlx5_core_dev *dev, struct mlx5_db *db);
956 int mlx5_db_alloc_node(struct mlx5_core_dev *dev, struct mlx5_db *db,
957                        int node);
958 void mlx5_db_free(struct mlx5_core_dev *dev, struct mlx5_db *db);
959
960 const char *mlx5_command_str(int command);
961 int mlx5_cmdif_debugfs_init(struct mlx5_core_dev *dev);
962 void mlx5_cmdif_debugfs_cleanup(struct mlx5_core_dev *dev);
963 int mlx5_core_create_psv(struct mlx5_core_dev *dev, u32 pdn,
964                          int npsvs, u32 *sig_index);
965 int mlx5_core_destroy_psv(struct mlx5_core_dev *dev, int psv_num);
966 void mlx5_core_put_rsc(struct mlx5_core_rsc_common *common);
967 u8 mlx5_is_wol_supported(struct mlx5_core_dev *dev);
968 int mlx5_set_wol(struct mlx5_core_dev *dev, u8 wol_mode);
969 int mlx5_query_wol(struct mlx5_core_dev *dev, u8 *wol_mode);
970 int mlx5_core_access_pvlc(struct mlx5_core_dev *dev,
971                           struct mlx5_pvlc_reg *pvlc, int write);
972 int mlx5_core_access_ptys(struct mlx5_core_dev *dev,
973                           struct mlx5_ptys_reg *ptys, int write);
974 int mlx5_core_access_pmtu(struct mlx5_core_dev *dev,
975                           struct mlx5_pmtu_reg *pmtu, int write);
976 int mlx5_vxlan_udp_port_add(struct mlx5_core_dev *dev, u16 port);
977 int mlx5_vxlan_udp_port_delete(struct mlx5_core_dev *dev, u16 port);
978 int mlx5_query_port_cong_status(struct mlx5_core_dev *mdev, int protocol,
979                                 int priority, int *is_enable);
980 int mlx5_modify_port_cong_status(struct mlx5_core_dev *mdev, int protocol,
981                                  int priority, int enable);
982 int mlx5_query_port_cong_params(struct mlx5_core_dev *mdev, int protocol,
983                                 void *out, int out_size);
984 int mlx5_modify_port_cong_params(struct mlx5_core_dev *mdev,
985                                  void *in, int in_size);
986 int mlx5_query_port_cong_statistics(struct mlx5_core_dev *mdev, int clear,
987                                     void *out, int out_size);
988 int mlx5_set_diagnostic_params(struct mlx5_core_dev *mdev, void *in,
989                                int in_size);
990 int mlx5_query_diagnostic_counters(struct mlx5_core_dev *mdev,
991                                    u8 num_of_samples, u16 sample_index,
992                                    void *out, int out_size);
993 static inline u32 mlx5_mkey_to_idx(u32 mkey)
994 {
995         return mkey >> 8;
996 }
997
998 static inline u32 mlx5_idx_to_mkey(u32 mkey_idx)
999 {
1000         return mkey_idx << 8;
1001 }
1002
1003 static inline u8 mlx5_mkey_variant(u32 mkey)
1004 {
1005         return mkey & 0xff;
1006 }
1007
1008 enum {
1009         MLX5_PROF_MASK_QP_SIZE          = (u64)1 << 0,
1010         MLX5_PROF_MASK_MR_CACHE         = (u64)1 << 1,
1011 };
1012
1013 enum {
1014         MAX_MR_CACHE_ENTRIES    = 15,
1015 };
1016
1017 struct mlx5_interface {
1018         void *                  (*add)(struct mlx5_core_dev *dev);
1019         void                    (*remove)(struct mlx5_core_dev *dev, void *context);
1020         void                    (*event)(struct mlx5_core_dev *dev, void *context,
1021                                          enum mlx5_dev_event event, unsigned long param);
1022         void *                  (*get_dev)(void *context);
1023         int                     protocol;
1024         struct list_head        list;
1025 };
1026
1027 void *mlx5_get_protocol_dev(struct mlx5_core_dev *mdev, int protocol);
1028 int mlx5_register_interface(struct mlx5_interface *intf);
1029 void mlx5_unregister_interface(struct mlx5_interface *intf);
1030
1031 struct mlx5_profile {
1032         u64     mask;
1033         u8      log_max_qp;
1034         struct {
1035                 int     size;
1036                 int     limit;
1037         } mr_cache[MAX_MR_CACHE_ENTRIES];
1038 };
1039
1040 enum {
1041         MLX5_PCI_DEV_IS_VF              = 1 << 0,
1042 };
1043
1044 static inline int mlx5_core_is_pf(struct mlx5_core_dev *dev)
1045 {
1046         return !(dev->priv.pci_dev_data & MLX5_PCI_DEV_IS_VF);
1047 }
1048
1049 #define MLX5_EEPROM_MAX_BYTES                   32
1050 #define MLX5_EEPROM_IDENTIFIER_BYTE_MASK        0x000000ff
1051 #define MLX5_EEPROM_REVISION_ID_BYTE_MASK       0x0000ff00
1052 #define MLX5_EEPROM_PAGE_3_VALID_BIT_MASK       0x00040000
1053 #endif /* MLX5_DRIVER_H */