mlx4_core: Add proxy and tunnel QPs to the reserved QP area
[cascardo/linux.git] / include / linux / mlx4 / device.h
1 /*
2  * Copyright (c) 2006, 2007 Cisco Systems, Inc.  All rights reserved.
3  *
4  * This software is available to you under a choice of one of two
5  * licenses.  You may choose to be licensed under the terms of the GNU
6  * General Public License (GPL) Version 2, available from the file
7  * COPYING in the main directory of this source tree, or the
8  * OpenIB.org BSD license below:
9  *
10  *     Redistribution and use in source and binary forms, with or
11  *     without modification, are permitted provided that the following
12  *     conditions are met:
13  *
14  *      - Redistributions of source code must retain the above
15  *        copyright notice, this list of conditions and the following
16  *        disclaimer.
17  *
18  *      - Redistributions in binary form must reproduce the above
19  *        copyright notice, this list of conditions and the following
20  *        disclaimer in the documentation and/or other materials
21  *        provided with the distribution.
22  *
23  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30  * SOFTWARE.
31  */
32
33 #ifndef MLX4_DEVICE_H
34 #define MLX4_DEVICE_H
35
36 #include <linux/pci.h>
37 #include <linux/completion.h>
38 #include <linux/radix-tree.h>
39 #include <linux/cpu_rmap.h>
40
41 #include <linux/atomic.h>
42
43 #define MAX_MSIX_P_PORT         17
44 #define MAX_MSIX                64
45 #define MSIX_LEGACY_SZ          4
46 #define MIN_MSIX_P_PORT         5
47
48 enum {
49         MLX4_FLAG_MSI_X         = 1 << 0,
50         MLX4_FLAG_OLD_PORT_CMDS = 1 << 1,
51         MLX4_FLAG_MASTER        = 1 << 2,
52         MLX4_FLAG_SLAVE         = 1 << 3,
53         MLX4_FLAG_SRIOV         = 1 << 4,
54 };
55
56 enum {
57         MLX4_MAX_PORTS          = 2
58 };
59
60 /* base qkey for use in sriov tunnel-qp/proxy-qp communication.
61  * These qkeys must not be allowed for general use. This is a 64k range,
62  * and to test for violation, we use the mask (protect against future chg).
63  */
64 #define MLX4_RESERVED_QKEY_BASE  (0xFFFF0000)
65 #define MLX4_RESERVED_QKEY_MASK  (0xFFFF0000)
66
67 enum {
68         MLX4_BOARD_ID_LEN = 64
69 };
70
71 enum {
72         MLX4_MAX_NUM_PF         = 16,
73         MLX4_MAX_NUM_VF         = 64,
74         MLX4_MFUNC_MAX          = 80,
75         MLX4_MAX_EQ_NUM         = 1024,
76         MLX4_MFUNC_EQ_NUM       = 4,
77         MLX4_MFUNC_MAX_EQES     = 8,
78         MLX4_MFUNC_EQE_MASK     = (MLX4_MFUNC_MAX_EQES - 1)
79 };
80
81 /* Driver supports 3 diffrent device methods to manage traffic steering:
82  *      -device managed - High level API for ib and eth flow steering. FW is
83  *                        managing flow steering tables.
84  *      - B0 steering mode - Common low level API for ib and (if supported) eth.
85  *      - A0 steering mode - Limited low level API for eth. In case of IB,
86  *                           B0 mode is in use.
87  */
88 enum {
89         MLX4_STEERING_MODE_A0,
90         MLX4_STEERING_MODE_B0,
91         MLX4_STEERING_MODE_DEVICE_MANAGED
92 };
93
94 static inline const char *mlx4_steering_mode_str(int steering_mode)
95 {
96         switch (steering_mode) {
97         case MLX4_STEERING_MODE_A0:
98                 return "A0 steering";
99
100         case MLX4_STEERING_MODE_B0:
101                 return "B0 steering";
102
103         case MLX4_STEERING_MODE_DEVICE_MANAGED:
104                 return "Device managed flow steering";
105
106         default:
107                 return "Unrecognize steering mode";
108         }
109 }
110
111 enum {
112         MLX4_DEV_CAP_FLAG_RC            = 1LL <<  0,
113         MLX4_DEV_CAP_FLAG_UC            = 1LL <<  1,
114         MLX4_DEV_CAP_FLAG_UD            = 1LL <<  2,
115         MLX4_DEV_CAP_FLAG_XRC           = 1LL <<  3,
116         MLX4_DEV_CAP_FLAG_SRQ           = 1LL <<  6,
117         MLX4_DEV_CAP_FLAG_IPOIB_CSUM    = 1LL <<  7,
118         MLX4_DEV_CAP_FLAG_BAD_PKEY_CNTR = 1LL <<  8,
119         MLX4_DEV_CAP_FLAG_BAD_QKEY_CNTR = 1LL <<  9,
120         MLX4_DEV_CAP_FLAG_DPDP          = 1LL << 12,
121         MLX4_DEV_CAP_FLAG_BLH           = 1LL << 15,
122         MLX4_DEV_CAP_FLAG_MEM_WINDOW    = 1LL << 16,
123         MLX4_DEV_CAP_FLAG_APM           = 1LL << 17,
124         MLX4_DEV_CAP_FLAG_ATOMIC        = 1LL << 18,
125         MLX4_DEV_CAP_FLAG_RAW_MCAST     = 1LL << 19,
126         MLX4_DEV_CAP_FLAG_UD_AV_PORT    = 1LL << 20,
127         MLX4_DEV_CAP_FLAG_UD_MCAST      = 1LL << 21,
128         MLX4_DEV_CAP_FLAG_IBOE          = 1LL << 30,
129         MLX4_DEV_CAP_FLAG_UC_LOOPBACK   = 1LL << 32,
130         MLX4_DEV_CAP_FLAG_FCS_KEEP      = 1LL << 34,
131         MLX4_DEV_CAP_FLAG_WOL_PORT1     = 1LL << 37,
132         MLX4_DEV_CAP_FLAG_WOL_PORT2     = 1LL << 38,
133         MLX4_DEV_CAP_FLAG_UDP_RSS       = 1LL << 40,
134         MLX4_DEV_CAP_FLAG_VEP_UC_STEER  = 1LL << 41,
135         MLX4_DEV_CAP_FLAG_VEP_MC_STEER  = 1LL << 42,
136         MLX4_DEV_CAP_FLAG_COUNTERS      = 1LL << 48,
137         MLX4_DEV_CAP_FLAG_SENSE_SUPPORT = 1LL << 55,
138         MLX4_DEV_CAP_FLAG_PORT_MNG_CHG_EV = 1LL << 59,
139 };
140
141 enum {
142         MLX4_DEV_CAP_FLAG2_RSS                  = 1LL <<  0,
143         MLX4_DEV_CAP_FLAG2_RSS_TOP              = 1LL <<  1,
144         MLX4_DEV_CAP_FLAG2_RSS_XOR              = 1LL <<  2,
145         MLX4_DEV_CAP_FLAG2_FS_EN                = 1LL <<  3
146 };
147
148 #define MLX4_ATTR_EXTENDED_PORT_INFO    cpu_to_be16(0xff90)
149
150 enum {
151         MLX4_BMME_FLAG_LOCAL_INV        = 1 <<  6,
152         MLX4_BMME_FLAG_REMOTE_INV       = 1 <<  7,
153         MLX4_BMME_FLAG_TYPE_2_WIN       = 1 <<  9,
154         MLX4_BMME_FLAG_RESERVED_LKEY    = 1 << 10,
155         MLX4_BMME_FLAG_FAST_REG_WR      = 1 << 11,
156 };
157
158 enum mlx4_event {
159         MLX4_EVENT_TYPE_COMP               = 0x00,
160         MLX4_EVENT_TYPE_PATH_MIG           = 0x01,
161         MLX4_EVENT_TYPE_COMM_EST           = 0x02,
162         MLX4_EVENT_TYPE_SQ_DRAINED         = 0x03,
163         MLX4_EVENT_TYPE_SRQ_QP_LAST_WQE    = 0x13,
164         MLX4_EVENT_TYPE_SRQ_LIMIT          = 0x14,
165         MLX4_EVENT_TYPE_CQ_ERROR           = 0x04,
166         MLX4_EVENT_TYPE_WQ_CATAS_ERROR     = 0x05,
167         MLX4_EVENT_TYPE_EEC_CATAS_ERROR    = 0x06,
168         MLX4_EVENT_TYPE_PATH_MIG_FAILED    = 0x07,
169         MLX4_EVENT_TYPE_WQ_INVAL_REQ_ERROR = 0x10,
170         MLX4_EVENT_TYPE_WQ_ACCESS_ERROR    = 0x11,
171         MLX4_EVENT_TYPE_SRQ_CATAS_ERROR    = 0x12,
172         MLX4_EVENT_TYPE_LOCAL_CATAS_ERROR  = 0x08,
173         MLX4_EVENT_TYPE_PORT_CHANGE        = 0x09,
174         MLX4_EVENT_TYPE_EQ_OVERFLOW        = 0x0f,
175         MLX4_EVENT_TYPE_ECC_DETECT         = 0x0e,
176         MLX4_EVENT_TYPE_CMD                = 0x0a,
177         MLX4_EVENT_TYPE_VEP_UPDATE         = 0x19,
178         MLX4_EVENT_TYPE_COMM_CHANNEL       = 0x18,
179         MLX4_EVENT_TYPE_FATAL_WARNING      = 0x1b,
180         MLX4_EVENT_TYPE_FLR_EVENT          = 0x1c,
181         MLX4_EVENT_TYPE_PORT_MNG_CHG_EVENT = 0x1d,
182         MLX4_EVENT_TYPE_NONE               = 0xff,
183 };
184
185 enum {
186         MLX4_PORT_CHANGE_SUBTYPE_DOWN   = 1,
187         MLX4_PORT_CHANGE_SUBTYPE_ACTIVE = 4
188 };
189
190 enum {
191         MLX4_FATAL_WARNING_SUBTYPE_WARMING = 0,
192 };
193
194 enum {
195         MLX4_PERM_LOCAL_READ    = 1 << 10,
196         MLX4_PERM_LOCAL_WRITE   = 1 << 11,
197         MLX4_PERM_REMOTE_READ   = 1 << 12,
198         MLX4_PERM_REMOTE_WRITE  = 1 << 13,
199         MLX4_PERM_ATOMIC        = 1 << 14
200 };
201
202 enum {
203         MLX4_OPCODE_NOP                 = 0x00,
204         MLX4_OPCODE_SEND_INVAL          = 0x01,
205         MLX4_OPCODE_RDMA_WRITE          = 0x08,
206         MLX4_OPCODE_RDMA_WRITE_IMM      = 0x09,
207         MLX4_OPCODE_SEND                = 0x0a,
208         MLX4_OPCODE_SEND_IMM            = 0x0b,
209         MLX4_OPCODE_LSO                 = 0x0e,
210         MLX4_OPCODE_RDMA_READ           = 0x10,
211         MLX4_OPCODE_ATOMIC_CS           = 0x11,
212         MLX4_OPCODE_ATOMIC_FA           = 0x12,
213         MLX4_OPCODE_MASKED_ATOMIC_CS    = 0x14,
214         MLX4_OPCODE_MASKED_ATOMIC_FA    = 0x15,
215         MLX4_OPCODE_BIND_MW             = 0x18,
216         MLX4_OPCODE_FMR                 = 0x19,
217         MLX4_OPCODE_LOCAL_INVAL         = 0x1b,
218         MLX4_OPCODE_CONFIG_CMD          = 0x1f,
219
220         MLX4_RECV_OPCODE_RDMA_WRITE_IMM = 0x00,
221         MLX4_RECV_OPCODE_SEND           = 0x01,
222         MLX4_RECV_OPCODE_SEND_IMM       = 0x02,
223         MLX4_RECV_OPCODE_SEND_INVAL     = 0x03,
224
225         MLX4_CQE_OPCODE_ERROR           = 0x1e,
226         MLX4_CQE_OPCODE_RESIZE          = 0x16,
227 };
228
229 enum {
230         MLX4_STAT_RATE_OFFSET   = 5
231 };
232
233 enum mlx4_protocol {
234         MLX4_PROT_IB_IPV6 = 0,
235         MLX4_PROT_ETH,
236         MLX4_PROT_IB_IPV4,
237         MLX4_PROT_FCOE
238 };
239
240 enum {
241         MLX4_MTT_FLAG_PRESENT           = 1
242 };
243
244 enum mlx4_qp_region {
245         MLX4_QP_REGION_FW = 0,
246         MLX4_QP_REGION_ETH_ADDR,
247         MLX4_QP_REGION_FC_ADDR,
248         MLX4_QP_REGION_FC_EXCH,
249         MLX4_NUM_QP_REGION
250 };
251
252 enum mlx4_port_type {
253         MLX4_PORT_TYPE_NONE     = 0,
254         MLX4_PORT_TYPE_IB       = 1,
255         MLX4_PORT_TYPE_ETH      = 2,
256         MLX4_PORT_TYPE_AUTO     = 3
257 };
258
259 enum mlx4_special_vlan_idx {
260         MLX4_NO_VLAN_IDX        = 0,
261         MLX4_VLAN_MISS_IDX,
262         MLX4_VLAN_REGULAR
263 };
264
265 enum mlx4_steer_type {
266         MLX4_MC_STEER = 0,
267         MLX4_UC_STEER,
268         MLX4_NUM_STEERS
269 };
270
271 enum {
272         MLX4_NUM_FEXCH          = 64 * 1024,
273 };
274
275 enum {
276         MLX4_MAX_FAST_REG_PAGES = 511,
277 };
278
279 enum {
280         MLX4_DEV_PMC_SUBTYPE_GUID_INFO   = 0x14,
281         MLX4_DEV_PMC_SUBTYPE_PORT_INFO   = 0x15,
282         MLX4_DEV_PMC_SUBTYPE_PKEY_TABLE  = 0x16,
283 };
284
285 /* Port mgmt change event handling */
286 enum {
287         MLX4_EQ_PORT_INFO_MSTR_SM_LID_CHANGE_MASK       = 1 << 0,
288         MLX4_EQ_PORT_INFO_GID_PFX_CHANGE_MASK           = 1 << 1,
289         MLX4_EQ_PORT_INFO_LID_CHANGE_MASK               = 1 << 2,
290         MLX4_EQ_PORT_INFO_CLIENT_REREG_MASK             = 1 << 3,
291         MLX4_EQ_PORT_INFO_MSTR_SM_SL_CHANGE_MASK        = 1 << 4,
292 };
293
294 #define MSTR_SM_CHANGE_MASK (MLX4_EQ_PORT_INFO_MSTR_SM_SL_CHANGE_MASK | \
295                              MLX4_EQ_PORT_INFO_MSTR_SM_LID_CHANGE_MASK)
296
297 static inline u64 mlx4_fw_ver(u64 major, u64 minor, u64 subminor)
298 {
299         return (major << 32) | (minor << 16) | subminor;
300 }
301
302 struct mlx4_phys_caps {
303         u32                     gid_phys_table_len[MLX4_MAX_PORTS + 1];
304         u32                     pkey_phys_table_len[MLX4_MAX_PORTS + 1];
305         u32                     num_phys_eqs;
306 };
307
308 struct mlx4_caps {
309         u64                     fw_ver;
310         u32                     function;
311         int                     num_ports;
312         int                     vl_cap[MLX4_MAX_PORTS + 1];
313         int                     ib_mtu_cap[MLX4_MAX_PORTS + 1];
314         __be32                  ib_port_def_cap[MLX4_MAX_PORTS + 1];
315         u64                     def_mac[MLX4_MAX_PORTS + 1];
316         int                     eth_mtu_cap[MLX4_MAX_PORTS + 1];
317         int                     gid_table_len[MLX4_MAX_PORTS + 1];
318         int                     pkey_table_len[MLX4_MAX_PORTS + 1];
319         int                     trans_type[MLX4_MAX_PORTS + 1];
320         int                     vendor_oui[MLX4_MAX_PORTS + 1];
321         int                     wavelength[MLX4_MAX_PORTS + 1];
322         u64                     trans_code[MLX4_MAX_PORTS + 1];
323         int                     local_ca_ack_delay;
324         int                     num_uars;
325         u32                     uar_page_size;
326         int                     bf_reg_size;
327         int                     bf_regs_per_page;
328         int                     max_sq_sg;
329         int                     max_rq_sg;
330         int                     num_qps;
331         int                     max_wqes;
332         int                     max_sq_desc_sz;
333         int                     max_rq_desc_sz;
334         int                     max_qp_init_rdma;
335         int                     max_qp_dest_rdma;
336         int                     sqp_start;
337         u32                     base_sqpn;
338         u32                     base_tunnel_sqpn;
339         int                     num_srqs;
340         int                     max_srq_wqes;
341         int                     max_srq_sge;
342         int                     reserved_srqs;
343         int                     num_cqs;
344         int                     max_cqes;
345         int                     reserved_cqs;
346         int                     num_eqs;
347         int                     reserved_eqs;
348         int                     num_comp_vectors;
349         int                     comp_pool;
350         int                     num_mpts;
351         int                     max_fmr_maps;
352         int                     num_mtts;
353         int                     fmr_reserved_mtts;
354         int                     reserved_mtts;
355         int                     reserved_mrws;
356         int                     reserved_uars;
357         int                     num_mgms;
358         int                     num_amgms;
359         int                     reserved_mcgs;
360         int                     num_qp_per_mgm;
361         int                     steering_mode;
362         int                     fs_log_max_ucast_qp_range_size;
363         int                     num_pds;
364         int                     reserved_pds;
365         int                     max_xrcds;
366         int                     reserved_xrcds;
367         int                     mtt_entry_sz;
368         u32                     max_msg_sz;
369         u32                     page_size_cap;
370         u64                     flags;
371         u64                     flags2;
372         u32                     bmme_flags;
373         u32                     reserved_lkey;
374         u16                     stat_rate_support;
375         u8                      port_width_cap[MLX4_MAX_PORTS + 1];
376         int                     max_gso_sz;
377         int                     max_rss_tbl_sz;
378         int                     reserved_qps_cnt[MLX4_NUM_QP_REGION];
379         int                     reserved_qps;
380         int                     reserved_qps_base[MLX4_NUM_QP_REGION];
381         int                     log_num_macs;
382         int                     log_num_vlans;
383         int                     log_num_prios;
384         enum mlx4_port_type     port_type[MLX4_MAX_PORTS + 1];
385         u8                      supported_type[MLX4_MAX_PORTS + 1];
386         u8                      suggested_type[MLX4_MAX_PORTS + 1];
387         u8                      default_sense[MLX4_MAX_PORTS + 1];
388         u32                     port_mask[MLX4_MAX_PORTS + 1];
389         enum mlx4_port_type     possible_type[MLX4_MAX_PORTS + 1];
390         u32                     max_counters;
391         u8                      port_ib_mtu[MLX4_MAX_PORTS + 1];
392         u16                     sqp_demux;
393 };
394
395 struct mlx4_buf_list {
396         void                   *buf;
397         dma_addr_t              map;
398 };
399
400 struct mlx4_buf {
401         struct mlx4_buf_list    direct;
402         struct mlx4_buf_list   *page_list;
403         int                     nbufs;
404         int                     npages;
405         int                     page_shift;
406 };
407
408 struct mlx4_mtt {
409         u32                     offset;
410         int                     order;
411         int                     page_shift;
412 };
413
414 enum {
415         MLX4_DB_PER_PAGE = PAGE_SIZE / 4
416 };
417
418 struct mlx4_db_pgdir {
419         struct list_head        list;
420         DECLARE_BITMAP(order0, MLX4_DB_PER_PAGE);
421         DECLARE_BITMAP(order1, MLX4_DB_PER_PAGE / 2);
422         unsigned long          *bits[2];
423         __be32                 *db_page;
424         dma_addr_t              db_dma;
425 };
426
427 struct mlx4_ib_user_db_page;
428
429 struct mlx4_db {
430         __be32                  *db;
431         union {
432                 struct mlx4_db_pgdir            *pgdir;
433                 struct mlx4_ib_user_db_page     *user_page;
434         }                       u;
435         dma_addr_t              dma;
436         int                     index;
437         int                     order;
438 };
439
440 struct mlx4_hwq_resources {
441         struct mlx4_db          db;
442         struct mlx4_mtt         mtt;
443         struct mlx4_buf         buf;
444 };
445
446 struct mlx4_mr {
447         struct mlx4_mtt         mtt;
448         u64                     iova;
449         u64                     size;
450         u32                     key;
451         u32                     pd;
452         u32                     access;
453         int                     enabled;
454 };
455
456 struct mlx4_fmr {
457         struct mlx4_mr          mr;
458         struct mlx4_mpt_entry  *mpt;
459         __be64                 *mtts;
460         dma_addr_t              dma_handle;
461         int                     max_pages;
462         int                     max_maps;
463         int                     maps;
464         u8                      page_shift;
465 };
466
467 struct mlx4_uar {
468         unsigned long           pfn;
469         int                     index;
470         struct list_head        bf_list;
471         unsigned                free_bf_bmap;
472         void __iomem           *map;
473         void __iomem           *bf_map;
474 };
475
476 struct mlx4_bf {
477         unsigned long           offset;
478         int                     buf_size;
479         struct mlx4_uar        *uar;
480         void __iomem           *reg;
481 };
482
483 struct mlx4_cq {
484         void (*comp)            (struct mlx4_cq *);
485         void (*event)           (struct mlx4_cq *, enum mlx4_event);
486
487         struct mlx4_uar        *uar;
488
489         u32                     cons_index;
490
491         __be32                 *set_ci_db;
492         __be32                 *arm_db;
493         int                     arm_sn;
494
495         int                     cqn;
496         unsigned                vector;
497
498         atomic_t                refcount;
499         struct completion       free;
500 };
501
502 struct mlx4_qp {
503         void (*event)           (struct mlx4_qp *, enum mlx4_event);
504
505         int                     qpn;
506
507         atomic_t                refcount;
508         struct completion       free;
509 };
510
511 struct mlx4_srq {
512         void (*event)           (struct mlx4_srq *, enum mlx4_event);
513
514         int                     srqn;
515         int                     max;
516         int                     max_gs;
517         int                     wqe_shift;
518
519         atomic_t                refcount;
520         struct completion       free;
521 };
522
523 struct mlx4_av {
524         __be32                  port_pd;
525         u8                      reserved1;
526         u8                      g_slid;
527         __be16                  dlid;
528         u8                      reserved2;
529         u8                      gid_index;
530         u8                      stat_rate;
531         u8                      hop_limit;
532         __be32                  sl_tclass_flowlabel;
533         u8                      dgid[16];
534 };
535
536 struct mlx4_eth_av {
537         __be32          port_pd;
538         u8              reserved1;
539         u8              smac_idx;
540         u16             reserved2;
541         u8              reserved3;
542         u8              gid_index;
543         u8              stat_rate;
544         u8              hop_limit;
545         __be32          sl_tclass_flowlabel;
546         u8              dgid[16];
547         u32             reserved4[2];
548         __be16          vlan;
549         u8              mac[6];
550 };
551
552 union mlx4_ext_av {
553         struct mlx4_av          ib;
554         struct mlx4_eth_av      eth;
555 };
556
557 struct mlx4_counter {
558         u8      reserved1[3];
559         u8      counter_mode;
560         __be32  num_ifc;
561         u32     reserved2[2];
562         __be64  rx_frames;
563         __be64  rx_bytes;
564         __be64  tx_frames;
565         __be64  tx_bytes;
566 };
567
568 struct mlx4_dev {
569         struct pci_dev         *pdev;
570         unsigned long           flags;
571         unsigned long           num_slaves;
572         struct mlx4_caps        caps;
573         struct mlx4_phys_caps   phys_caps;
574         struct radix_tree_root  qp_table_tree;
575         u8                      rev_id;
576         char                    board_id[MLX4_BOARD_ID_LEN];
577         int                     num_vfs;
578         u64                     regid_promisc_array[MLX4_MAX_PORTS + 1];
579         u64                     regid_allmulti_array[MLX4_MAX_PORTS + 1];
580 };
581
582 struct mlx4_eqe {
583         u8                      reserved1;
584         u8                      type;
585         u8                      reserved2;
586         u8                      subtype;
587         union {
588                 u32             raw[6];
589                 struct {
590                         __be32  cqn;
591                 } __packed comp;
592                 struct {
593                         u16     reserved1;
594                         __be16  token;
595                         u32     reserved2;
596                         u8      reserved3[3];
597                         u8      status;
598                         __be64  out_param;
599                 } __packed cmd;
600                 struct {
601                         __be32  qpn;
602                 } __packed qp;
603                 struct {
604                         __be32  srqn;
605                 } __packed srq;
606                 struct {
607                         __be32  cqn;
608                         u32     reserved1;
609                         u8      reserved2[3];
610                         u8      syndrome;
611                 } __packed cq_err;
612                 struct {
613                         u32     reserved1[2];
614                         __be32  port;
615                 } __packed port_change;
616                 struct {
617                         #define COMM_CHANNEL_BIT_ARRAY_SIZE     4
618                         u32 reserved;
619                         u32 bit_vec[COMM_CHANNEL_BIT_ARRAY_SIZE];
620                 } __packed comm_channel_arm;
621                 struct {
622                         u8      port;
623                         u8      reserved[3];
624                         __be64  mac;
625                 } __packed mac_update;
626                 struct {
627                         __be32  slave_id;
628                 } __packed flr_event;
629                 struct {
630                         __be16  current_temperature;
631                         __be16  warning_threshold;
632                 } __packed warming;
633                 struct {
634                         u8 reserved[3];
635                         u8 port;
636                         union {
637                                 struct {
638                                         __be16 mstr_sm_lid;
639                                         __be16 port_lid;
640                                         __be32 changed_attr;
641                                         u8 reserved[3];
642                                         u8 mstr_sm_sl;
643                                         __be64 gid_prefix;
644                                 } __packed port_info;
645                                 struct {
646                                         __be32 block_ptr;
647                                         __be32 tbl_entries_mask;
648                                 } __packed tbl_change_info;
649                         } params;
650                 } __packed port_mgmt_change;
651         }                       event;
652         u8                      slave_id;
653         u8                      reserved3[2];
654         u8                      owner;
655 } __packed;
656
657 struct mlx4_init_port_param {
658         int                     set_guid0;
659         int                     set_node_guid;
660         int                     set_si_guid;
661         u16                     mtu;
662         int                     port_width_cap;
663         u16                     vl_cap;
664         u16                     max_gid;
665         u16                     max_pkey;
666         u64                     guid0;
667         u64                     node_guid;
668         u64                     si_guid;
669 };
670
671 #define mlx4_foreach_port(port, dev, type)                              \
672         for ((port) = 1; (port) <= (dev)->caps.num_ports; (port)++)     \
673                 if ((type) == (dev)->caps.port_mask[(port)])
674
675 #define mlx4_foreach_ib_transport_port(port, dev)                         \
676         for ((port) = 1; (port) <= (dev)->caps.num_ports; (port)++)       \
677                 if (((dev)->caps.port_mask[port] == MLX4_PORT_TYPE_IB) || \
678                         ((dev)->caps.flags & MLX4_DEV_CAP_FLAG_IBOE))
679
680 #define MLX4_INVALID_SLAVE_ID   0xFF
681
682 void handle_port_mgmt_change_event(struct work_struct *work);
683
684 static inline int mlx4_master_func_num(struct mlx4_dev *dev)
685 {
686         return dev->caps.function;
687 }
688
689 static inline int mlx4_is_master(struct mlx4_dev *dev)
690 {
691         return dev->flags & MLX4_FLAG_MASTER;
692 }
693
694 static inline int mlx4_is_qp_reserved(struct mlx4_dev *dev, u32 qpn)
695 {
696         return (qpn < dev->caps.base_sqpn + 8 +
697                 16 * MLX4_MFUNC_MAX * !!mlx4_is_master(dev));
698 }
699
700 static inline int mlx4_is_guest_proxy(struct mlx4_dev *dev, int slave, u32 qpn)
701 {
702         int base = dev->caps.sqp_start + slave * 8;
703
704         if (qpn >= base && qpn < base + 8)
705                 return 1;
706
707         return 0;
708 }
709
710 static inline int mlx4_is_mfunc(struct mlx4_dev *dev)
711 {
712         return dev->flags & (MLX4_FLAG_SLAVE | MLX4_FLAG_MASTER);
713 }
714
715 static inline int mlx4_is_slave(struct mlx4_dev *dev)
716 {
717         return dev->flags & MLX4_FLAG_SLAVE;
718 }
719
720 int mlx4_buf_alloc(struct mlx4_dev *dev, int size, int max_direct,
721                    struct mlx4_buf *buf);
722 void mlx4_buf_free(struct mlx4_dev *dev, int size, struct mlx4_buf *buf);
723 static inline void *mlx4_buf_offset(struct mlx4_buf *buf, int offset)
724 {
725         if (BITS_PER_LONG == 64 || buf->nbufs == 1)
726                 return buf->direct.buf + offset;
727         else
728                 return buf->page_list[offset >> PAGE_SHIFT].buf +
729                         (offset & (PAGE_SIZE - 1));
730 }
731
732 int mlx4_pd_alloc(struct mlx4_dev *dev, u32 *pdn);
733 void mlx4_pd_free(struct mlx4_dev *dev, u32 pdn);
734 int mlx4_xrcd_alloc(struct mlx4_dev *dev, u32 *xrcdn);
735 void mlx4_xrcd_free(struct mlx4_dev *dev, u32 xrcdn);
736
737 int mlx4_uar_alloc(struct mlx4_dev *dev, struct mlx4_uar *uar);
738 void mlx4_uar_free(struct mlx4_dev *dev, struct mlx4_uar *uar);
739 int mlx4_bf_alloc(struct mlx4_dev *dev, struct mlx4_bf *bf);
740 void mlx4_bf_free(struct mlx4_dev *dev, struct mlx4_bf *bf);
741
742 int mlx4_mtt_init(struct mlx4_dev *dev, int npages, int page_shift,
743                   struct mlx4_mtt *mtt);
744 void mlx4_mtt_cleanup(struct mlx4_dev *dev, struct mlx4_mtt *mtt);
745 u64 mlx4_mtt_addr(struct mlx4_dev *dev, struct mlx4_mtt *mtt);
746
747 int mlx4_mr_alloc(struct mlx4_dev *dev, u32 pd, u64 iova, u64 size, u32 access,
748                   int npages, int page_shift, struct mlx4_mr *mr);
749 void mlx4_mr_free(struct mlx4_dev *dev, struct mlx4_mr *mr);
750 int mlx4_mr_enable(struct mlx4_dev *dev, struct mlx4_mr *mr);
751 int mlx4_write_mtt(struct mlx4_dev *dev, struct mlx4_mtt *mtt,
752                    int start_index, int npages, u64 *page_list);
753 int mlx4_buf_write_mtt(struct mlx4_dev *dev, struct mlx4_mtt *mtt,
754                        struct mlx4_buf *buf);
755
756 int mlx4_db_alloc(struct mlx4_dev *dev, struct mlx4_db *db, int order);
757 void mlx4_db_free(struct mlx4_dev *dev, struct mlx4_db *db);
758
759 int mlx4_alloc_hwq_res(struct mlx4_dev *dev, struct mlx4_hwq_resources *wqres,
760                        int size, int max_direct);
761 void mlx4_free_hwq_res(struct mlx4_dev *mdev, struct mlx4_hwq_resources *wqres,
762                        int size);
763
764 int mlx4_cq_alloc(struct mlx4_dev *dev, int nent, struct mlx4_mtt *mtt,
765                   struct mlx4_uar *uar, u64 db_rec, struct mlx4_cq *cq,
766                   unsigned vector, int collapsed);
767 void mlx4_cq_free(struct mlx4_dev *dev, struct mlx4_cq *cq);
768
769 int mlx4_qp_reserve_range(struct mlx4_dev *dev, int cnt, int align, int *base);
770 void mlx4_qp_release_range(struct mlx4_dev *dev, int base_qpn, int cnt);
771
772 int mlx4_qp_alloc(struct mlx4_dev *dev, int qpn, struct mlx4_qp *qp);
773 void mlx4_qp_free(struct mlx4_dev *dev, struct mlx4_qp *qp);
774
775 int mlx4_srq_alloc(struct mlx4_dev *dev, u32 pdn, u32 cqn, u16 xrcdn,
776                    struct mlx4_mtt *mtt, u64 db_rec, struct mlx4_srq *srq);
777 void mlx4_srq_free(struct mlx4_dev *dev, struct mlx4_srq *srq);
778 int mlx4_srq_arm(struct mlx4_dev *dev, struct mlx4_srq *srq, int limit_watermark);
779 int mlx4_srq_query(struct mlx4_dev *dev, struct mlx4_srq *srq, int *limit_watermark);
780
781 int mlx4_INIT_PORT(struct mlx4_dev *dev, int port);
782 int mlx4_CLOSE_PORT(struct mlx4_dev *dev, int port);
783
784 int mlx4_unicast_attach(struct mlx4_dev *dev, struct mlx4_qp *qp, u8 gid[16],
785                         int block_mcast_loopback, enum mlx4_protocol prot);
786 int mlx4_unicast_detach(struct mlx4_dev *dev, struct mlx4_qp *qp, u8 gid[16],
787                         enum mlx4_protocol prot);
788 int mlx4_multicast_attach(struct mlx4_dev *dev, struct mlx4_qp *qp, u8 gid[16],
789                           u8 port, int block_mcast_loopback,
790                           enum mlx4_protocol protocol, u64 *reg_id);
791 int mlx4_multicast_detach(struct mlx4_dev *dev, struct mlx4_qp *qp, u8 gid[16],
792                           enum mlx4_protocol protocol, u64 reg_id);
793
794 enum {
795         MLX4_DOMAIN_UVERBS      = 0x1000,
796         MLX4_DOMAIN_ETHTOOL     = 0x2000,
797         MLX4_DOMAIN_RFS         = 0x3000,
798         MLX4_DOMAIN_NIC    = 0x5000,
799 };
800
801 enum mlx4_net_trans_rule_id {
802         MLX4_NET_TRANS_RULE_ID_ETH = 0,
803         MLX4_NET_TRANS_RULE_ID_IB,
804         MLX4_NET_TRANS_RULE_ID_IPV6,
805         MLX4_NET_TRANS_RULE_ID_IPV4,
806         MLX4_NET_TRANS_RULE_ID_TCP,
807         MLX4_NET_TRANS_RULE_ID_UDP,
808         MLX4_NET_TRANS_RULE_NUM, /* should be last */
809 };
810
811 extern const u16 __sw_id_hw[];
812
813 static inline int map_hw_to_sw_id(u16 header_id)
814 {
815
816         int i;
817         for (i = 0; i < MLX4_NET_TRANS_RULE_NUM; i++) {
818                 if (header_id == __sw_id_hw[i])
819                         return i;
820         }
821         return -EINVAL;
822 }
823
824 enum mlx4_net_trans_promisc_mode {
825         MLX4_FS_PROMISC_NONE = 0,
826         MLX4_FS_PROMISC_UPLINK,
827         /* For future use. Not implemented yet */
828         MLX4_FS_PROMISC_FUNCTION_PORT,
829         MLX4_FS_PROMISC_ALL_MULTI,
830 };
831
832 struct mlx4_spec_eth {
833         u8      dst_mac[6];
834         u8      dst_mac_msk[6];
835         u8      src_mac[6];
836         u8      src_mac_msk[6];
837         u8      ether_type_enable;
838         __be16  ether_type;
839         __be16  vlan_id_msk;
840         __be16  vlan_id;
841 };
842
843 struct mlx4_spec_tcp_udp {
844         __be16 dst_port;
845         __be16 dst_port_msk;
846         __be16 src_port;
847         __be16 src_port_msk;
848 };
849
850 struct mlx4_spec_ipv4 {
851         __be32 dst_ip;
852         __be32 dst_ip_msk;
853         __be32 src_ip;
854         __be32 src_ip_msk;
855 };
856
857 struct mlx4_spec_ib {
858         __be32  r_qpn;
859         __be32  qpn_msk;
860         u8      dst_gid[16];
861         u8      dst_gid_msk[16];
862 };
863
864 struct mlx4_spec_list {
865         struct  list_head list;
866         enum    mlx4_net_trans_rule_id id;
867         union {
868                 struct mlx4_spec_eth eth;
869                 struct mlx4_spec_ib ib;
870                 struct mlx4_spec_ipv4 ipv4;
871                 struct mlx4_spec_tcp_udp tcp_udp;
872         };
873 };
874
875 enum mlx4_net_trans_hw_rule_queue {
876         MLX4_NET_TRANS_Q_FIFO,
877         MLX4_NET_TRANS_Q_LIFO,
878 };
879
880 struct mlx4_net_trans_rule {
881         struct  list_head list;
882         enum    mlx4_net_trans_hw_rule_queue queue_mode;
883         bool    exclusive;
884         bool    allow_loopback;
885         enum    mlx4_net_trans_promisc_mode promisc_mode;
886         u8      port;
887         u16     priority;
888         u32     qpn;
889 };
890
891 int mlx4_flow_steer_promisc_add(struct mlx4_dev *dev, u8 port, u32 qpn,
892                                 enum mlx4_net_trans_promisc_mode mode);
893 int mlx4_flow_steer_promisc_remove(struct mlx4_dev *dev, u8 port,
894                                    enum mlx4_net_trans_promisc_mode mode);
895 int mlx4_multicast_promisc_add(struct mlx4_dev *dev, u32 qpn, u8 port);
896 int mlx4_multicast_promisc_remove(struct mlx4_dev *dev, u32 qpn, u8 port);
897 int mlx4_unicast_promisc_add(struct mlx4_dev *dev, u32 qpn, u8 port);
898 int mlx4_unicast_promisc_remove(struct mlx4_dev *dev, u32 qpn, u8 port);
899 int mlx4_SET_MCAST_FLTR(struct mlx4_dev *dev, u8 port, u64 mac, u64 clear, u8 mode);
900
901 int mlx4_register_mac(struct mlx4_dev *dev, u8 port, u64 mac);
902 void mlx4_unregister_mac(struct mlx4_dev *dev, u8 port, u64 mac);
903 int mlx4_replace_mac(struct mlx4_dev *dev, u8 port, int qpn, u64 new_mac);
904 int mlx4_get_eth_qp(struct mlx4_dev *dev, u8 port, u64 mac, int *qpn);
905 void mlx4_put_eth_qp(struct mlx4_dev *dev, u8 port, u64 mac, int qpn);
906 void mlx4_set_stats_bitmap(struct mlx4_dev *dev, u64 *stats_bitmap);
907 int mlx4_SET_PORT_general(struct mlx4_dev *dev, u8 port, int mtu,
908                           u8 pptx, u8 pfctx, u8 pprx, u8 pfcrx);
909 int mlx4_SET_PORT_qpn_calc(struct mlx4_dev *dev, u8 port, u32 base_qpn,
910                            u8 promisc);
911 int mlx4_SET_PORT_PRIO2TC(struct mlx4_dev *dev, u8 port, u8 *prio2tc);
912 int mlx4_SET_PORT_SCHEDULER(struct mlx4_dev *dev, u8 port, u8 *tc_tx_bw,
913                 u8 *pg, u16 *ratelimit);
914 int mlx4_find_cached_vlan(struct mlx4_dev *dev, u8 port, u16 vid, int *idx);
915 int mlx4_register_vlan(struct mlx4_dev *dev, u8 port, u16 vlan, int *index);
916 void mlx4_unregister_vlan(struct mlx4_dev *dev, u8 port, int index);
917
918 int mlx4_map_phys_fmr(struct mlx4_dev *dev, struct mlx4_fmr *fmr, u64 *page_list,
919                       int npages, u64 iova, u32 *lkey, u32 *rkey);
920 int mlx4_fmr_alloc(struct mlx4_dev *dev, u32 pd, u32 access, int max_pages,
921                    int max_maps, u8 page_shift, struct mlx4_fmr *fmr);
922 int mlx4_fmr_enable(struct mlx4_dev *dev, struct mlx4_fmr *fmr);
923 void mlx4_fmr_unmap(struct mlx4_dev *dev, struct mlx4_fmr *fmr,
924                     u32 *lkey, u32 *rkey);
925 int mlx4_fmr_free(struct mlx4_dev *dev, struct mlx4_fmr *fmr);
926 int mlx4_SYNC_TPT(struct mlx4_dev *dev);
927 int mlx4_test_interrupts(struct mlx4_dev *dev);
928 int mlx4_assign_eq(struct mlx4_dev *dev, char *name, struct cpu_rmap *rmap,
929                    int *vector);
930 void mlx4_release_eq(struct mlx4_dev *dev, int vec);
931
932 int mlx4_wol_read(struct mlx4_dev *dev, u64 *config, int port);
933 int mlx4_wol_write(struct mlx4_dev *dev, u64 config, int port);
934
935 int mlx4_counter_alloc(struct mlx4_dev *dev, u32 *idx);
936 void mlx4_counter_free(struct mlx4_dev *dev, u32 idx);
937
938 int mlx4_flow_attach(struct mlx4_dev *dev,
939                      struct mlx4_net_trans_rule *rule, u64 *reg_id);
940 int mlx4_flow_detach(struct mlx4_dev *dev, u64 reg_id);
941
942 int mlx4_get_parav_qkey(struct mlx4_dev *dev, u32 qpn, u32 *qkey);
943
944 #endif /* MLX4_DEVICE_H */