1225c7b1fSRoland Dreier /*
2225c7b1fSRoland Dreier * Copyright (c) 2006 Cisco Systems, Inc. All rights reserved.
3225c7b1fSRoland Dreier *
4225c7b1fSRoland Dreier * This software is available to you under a choice of one of two
5225c7b1fSRoland Dreier * licenses. You may choose to be licensed under the terms of the GNU
6225c7b1fSRoland Dreier * General Public License (GPL) Version 2, available from the file
7225c7b1fSRoland Dreier * COPYING in the main directory of this source tree, or the
8225c7b1fSRoland Dreier * OpenIB.org BSD license below:
9225c7b1fSRoland Dreier *
10225c7b1fSRoland Dreier * Redistribution and use in source and binary forms, with or
11225c7b1fSRoland Dreier * without modification, are permitted provided that the following
12225c7b1fSRoland Dreier * conditions are met:
13225c7b1fSRoland Dreier *
14225c7b1fSRoland Dreier * - Redistributions of source code must retain the above
15225c7b1fSRoland Dreier * copyright notice, this list of conditions and the following
16225c7b1fSRoland Dreier * disclaimer.
17225c7b1fSRoland Dreier *
18225c7b1fSRoland Dreier * - Redistributions in binary form must reproduce the above
19225c7b1fSRoland Dreier * copyright notice, this list of conditions and the following
20225c7b1fSRoland Dreier * disclaimer in the documentation and/or other materials
21225c7b1fSRoland Dreier * provided with the distribution.
22225c7b1fSRoland Dreier *
23225c7b1fSRoland Dreier * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24225c7b1fSRoland Dreier * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25225c7b1fSRoland Dreier * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26225c7b1fSRoland Dreier * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27225c7b1fSRoland Dreier * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28225c7b1fSRoland Dreier * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29225c7b1fSRoland Dreier * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30225c7b1fSRoland Dreier * SOFTWARE.
31225c7b1fSRoland Dreier */
32225c7b1fSRoland Dreier
33225c7b1fSRoland Dreier #ifndef MLX4_CMD_H
34225c7b1fSRoland Dreier #define MLX4_CMD_H
35225c7b1fSRoland Dreier
36225c7b1fSRoland Dreier #include <linux/dma-mapping.h>
372cccb9e4SRony Efraim #include <linux/if_link.h>
389616982fSEran Ben Elisha #include <linux/mlx4/device.h>
3962a89055SEran Ben Elisha #include <linux/netdevice.h>
40225c7b1fSRoland Dreier
41225c7b1fSRoland Dreier enum {
42225c7b1fSRoland Dreier /* initialization and general commands */
43225c7b1fSRoland Dreier MLX4_CMD_SYS_EN = 0x1,
44225c7b1fSRoland Dreier MLX4_CMD_SYS_DIS = 0x2,
45225c7b1fSRoland Dreier MLX4_CMD_MAP_FA = 0xfff,
46225c7b1fSRoland Dreier MLX4_CMD_UNMAP_FA = 0xffe,
47225c7b1fSRoland Dreier MLX4_CMD_RUN_FW = 0xff6,
48225c7b1fSRoland Dreier MLX4_CMD_MOD_STAT_CFG = 0x34,
49225c7b1fSRoland Dreier MLX4_CMD_QUERY_DEV_CAP = 0x3,
50225c7b1fSRoland Dreier MLX4_CMD_QUERY_FW = 0x4,
51225c7b1fSRoland Dreier MLX4_CMD_ENABLE_LAM = 0xff8,
52225c7b1fSRoland Dreier MLX4_CMD_DISABLE_LAM = 0xff7,
53225c7b1fSRoland Dreier MLX4_CMD_QUERY_DDR = 0x5,
54225c7b1fSRoland Dreier MLX4_CMD_QUERY_ADAPTER = 0x6,
55225c7b1fSRoland Dreier MLX4_CMD_INIT_HCA = 0x7,
56225c7b1fSRoland Dreier MLX4_CMD_CLOSE_HCA = 0x8,
57225c7b1fSRoland Dreier MLX4_CMD_INIT_PORT = 0x9,
58225c7b1fSRoland Dreier MLX4_CMD_CLOSE_PORT = 0xa,
59225c7b1fSRoland Dreier MLX4_CMD_QUERY_HCA = 0xb,
605ae2a7a8SRoland Dreier MLX4_CMD_QUERY_PORT = 0x43,
6127bf91d6SYevgeny Petrilin MLX4_CMD_SENSE_PORT = 0x4d,
62e7c1c2c4SYevgeny Petrilin MLX4_CMD_HW_HEALTH_CHECK = 0x50,
63225c7b1fSRoland Dreier MLX4_CMD_SET_PORT = 0xc,
64d0d68b86SJack Morgenstein MLX4_CMD_SET_NODE = 0x5a,
65623ed84bSJack Morgenstein MLX4_CMD_QUERY_FUNC = 0x56,
66225c7b1fSRoland Dreier MLX4_CMD_ACCESS_DDR = 0x2e,
67225c7b1fSRoland Dreier MLX4_CMD_MAP_ICM = 0xffa,
68225c7b1fSRoland Dreier MLX4_CMD_UNMAP_ICM = 0xff9,
69225c7b1fSRoland Dreier MLX4_CMD_MAP_ICM_AUX = 0xffc,
70225c7b1fSRoland Dreier MLX4_CMD_UNMAP_ICM_AUX = 0xffb,
71225c7b1fSRoland Dreier MLX4_CMD_SET_ICM_SIZE = 0xffd,
72adbc7ac5SSaeed Mahameed MLX4_CMD_ACCESS_REG = 0x3b,
737e95bb99SIdo Shamay MLX4_CMD_ALLOCATE_VPP = 0x80,
741c29146dSIdo Shamay MLX4_CMD_SET_VPORT_QOS = 0x81,
75adbc7ac5SSaeed Mahameed
76623ed84bSJack Morgenstein /*master notify fw on finish for slave's flr*/
77623ed84bSJack Morgenstein MLX4_CMD_INFORM_FLR_DONE = 0x5b,
7859e14e32SMoni Shoua MLX4_CMD_VIRT_PORT_MAP = 0x5c,
79fe6f700dSYevgeny Petrilin MLX4_CMD_GET_OP_REQ = 0x59,
80225c7b1fSRoland Dreier
81225c7b1fSRoland Dreier /* TPT commands */
82225c7b1fSRoland Dreier MLX4_CMD_SW2HW_MPT = 0xd,
83225c7b1fSRoland Dreier MLX4_CMD_QUERY_MPT = 0xe,
84225c7b1fSRoland Dreier MLX4_CMD_HW2SW_MPT = 0xf,
85225c7b1fSRoland Dreier MLX4_CMD_READ_MTT = 0x10,
86225c7b1fSRoland Dreier MLX4_CMD_WRITE_MTT = 0x11,
87225c7b1fSRoland Dreier MLX4_CMD_SYNC_TPT = 0x2f,
88225c7b1fSRoland Dreier
89225c7b1fSRoland Dreier /* EQ commands */
90225c7b1fSRoland Dreier MLX4_CMD_MAP_EQ = 0x12,
91225c7b1fSRoland Dreier MLX4_CMD_SW2HW_EQ = 0x13,
92225c7b1fSRoland Dreier MLX4_CMD_HW2SW_EQ = 0x14,
93225c7b1fSRoland Dreier MLX4_CMD_QUERY_EQ = 0x15,
94225c7b1fSRoland Dreier
95225c7b1fSRoland Dreier /* CQ commands */
96225c7b1fSRoland Dreier MLX4_CMD_SW2HW_CQ = 0x16,
97225c7b1fSRoland Dreier MLX4_CMD_HW2SW_CQ = 0x17,
98225c7b1fSRoland Dreier MLX4_CMD_QUERY_CQ = 0x18,
993fdcb97fSEli Cohen MLX4_CMD_MODIFY_CQ = 0x2c,
100225c7b1fSRoland Dreier
101225c7b1fSRoland Dreier /* SRQ commands */
102225c7b1fSRoland Dreier MLX4_CMD_SW2HW_SRQ = 0x35,
103225c7b1fSRoland Dreier MLX4_CMD_HW2SW_SRQ = 0x36,
104225c7b1fSRoland Dreier MLX4_CMD_QUERY_SRQ = 0x37,
105225c7b1fSRoland Dreier MLX4_CMD_ARM_SRQ = 0x40,
106225c7b1fSRoland Dreier
107225c7b1fSRoland Dreier /* QP/EE commands */
108225c7b1fSRoland Dreier MLX4_CMD_RST2INIT_QP = 0x19,
109225c7b1fSRoland Dreier MLX4_CMD_INIT2RTR_QP = 0x1a,
110225c7b1fSRoland Dreier MLX4_CMD_RTR2RTS_QP = 0x1b,
111225c7b1fSRoland Dreier MLX4_CMD_RTS2RTS_QP = 0x1c,
112225c7b1fSRoland Dreier MLX4_CMD_SQERR2RTS_QP = 0x1d,
113225c7b1fSRoland Dreier MLX4_CMD_2ERR_QP = 0x1e,
114225c7b1fSRoland Dreier MLX4_CMD_RTS2SQD_QP = 0x1f,
115225c7b1fSRoland Dreier MLX4_CMD_SQD2SQD_QP = 0x38,
116225c7b1fSRoland Dreier MLX4_CMD_SQD2RTS_QP = 0x20,
117225c7b1fSRoland Dreier MLX4_CMD_2RST_QP = 0x21,
118225c7b1fSRoland Dreier MLX4_CMD_QUERY_QP = 0x22,
119225c7b1fSRoland Dreier MLX4_CMD_INIT2INIT_QP = 0x2d,
120225c7b1fSRoland Dreier MLX4_CMD_SUSPEND_QP = 0x32,
121225c7b1fSRoland Dreier MLX4_CMD_UNSUSPEND_QP = 0x33,
122b01978caSJack Morgenstein MLX4_CMD_UPDATE_QP = 0x61,
123225c7b1fSRoland Dreier /* special QP and management commands */
124225c7b1fSRoland Dreier MLX4_CMD_CONF_SPECIAL_QP = 0x23,
125225c7b1fSRoland Dreier MLX4_CMD_MAD_IFC = 0x24,
126114840c3SJack Morgenstein MLX4_CMD_MAD_DEMUX = 0x203,
127225c7b1fSRoland Dreier
128225c7b1fSRoland Dreier /* multicast commands */
129225c7b1fSRoland Dreier MLX4_CMD_READ_MCG = 0x25,
130225c7b1fSRoland Dreier MLX4_CMD_WRITE_MCG = 0x26,
131225c7b1fSRoland Dreier MLX4_CMD_MGID_HASH = 0x27,
132225c7b1fSRoland Dreier
133225c7b1fSRoland Dreier /* miscellaneous commands */
134225c7b1fSRoland Dreier MLX4_CMD_DIAG_RPRT = 0x30,
135225c7b1fSRoland Dreier MLX4_CMD_NOP = 0x31,
136d18f141aSOr Gerlitz MLX4_CMD_CONFIG_DEV = 0x3a,
137623ed84bSJack Morgenstein MLX4_CMD_ACCESS_MEM = 0x2e,
138623ed84bSJack Morgenstein MLX4_CMD_SET_VEP = 0x52,
139623ed84bSJack Morgenstein
140623ed84bSJack Morgenstein /* Ethernet specific commands */
141623ed84bSJack Morgenstein MLX4_CMD_SET_VLAN_FLTR = 0x47,
142623ed84bSJack Morgenstein MLX4_CMD_SET_MCAST_FLTR = 0x48,
143623ed84bSJack Morgenstein MLX4_CMD_DUMP_ETH_STATS = 0x49,
144623ed84bSJack Morgenstein
145623ed84bSJack Morgenstein /* Communication channel commands */
146623ed84bSJack Morgenstein MLX4_CMD_ARM_COMM_CHANNEL = 0x57,
147623ed84bSJack Morgenstein MLX4_CMD_GEN_EQE = 0x58,
148623ed84bSJack Morgenstein
149623ed84bSJack Morgenstein /* virtual commands */
150623ed84bSJack Morgenstein MLX4_CMD_ALLOC_RES = 0xf00,
151623ed84bSJack Morgenstein MLX4_CMD_FREE_RES = 0xf01,
152623ed84bSJack Morgenstein MLX4_CMD_MCAST_ATTACH = 0xf05,
153623ed84bSJack Morgenstein MLX4_CMD_UCAST_ATTACH = 0xf06,
154623ed84bSJack Morgenstein MLX4_CMD_PROMISC = 0xf08,
155623ed84bSJack Morgenstein MLX4_CMD_QUERY_FUNC_CAP = 0xf0a,
156623ed84bSJack Morgenstein MLX4_CMD_QP_ATTACH = 0xf0b,
157225c7b1fSRoland Dreier
158225c7b1fSRoland Dreier /* debug commands */
159225c7b1fSRoland Dreier MLX4_CMD_QUERY_DEBUG_MSG = 0x2a,
160225c7b1fSRoland Dreier MLX4_CMD_SET_DEBUG_MSG = 0x2b,
161f2a3f6a3SOr Gerlitz
162f2a3f6a3SOr Gerlitz /* statistics commands */
163f2a3f6a3SOr Gerlitz MLX4_CMD_QUERY_IF_STAT = 0X54,
164623ed84bSJack Morgenstein MLX4_CMD_SET_IF_STAT = 0X55,
165e5395e92SAmir Vadai
1668fcfb4dbSHadar Hen Zion /* register/delete flow steering network rules */
1678fcfb4dbSHadar Hen Zion MLX4_QP_FLOW_STEERING_ATTACH = 0x65,
1688fcfb4dbSHadar Hen Zion MLX4_QP_FLOW_STEERING_DETACH = 0x66,
1694de65803SMatan Barak MLX4_FLOW_STEERING_IB_UC_QP_RANGE = 0x64,
170d237baa1SShani Michaeli
171d237baa1SShani Michaeli /* Update and read QCN parameters */
172d237baa1SShani Michaeli MLX4_CMD_CONGESTION_CTRL_OPCODE = 0x68,
173225c7b1fSRoland Dreier };
174225c7b1fSRoland Dreier
175225c7b1fSRoland Dreier enum {
1765a031086SJack Morgenstein MLX4_CMD_TIME_CLASS_A = 60000,
1775a031086SJack Morgenstein MLX4_CMD_TIME_CLASS_B = 60000,
1785a031086SJack Morgenstein MLX4_CMD_TIME_CLASS_C = 60000,
179225c7b1fSRoland Dreier };
180225c7b1fSRoland Dreier
181225c7b1fSRoland Dreier enum {
18259e14e32SMoni Shoua /* virtual to physical port mapping opcode modifiers */
18359e14e32SMoni Shoua MLX4_GET_PORT_VIRT2PHY = 0x0,
18459e14e32SMoni Shoua MLX4_SET_PORT_VIRT2PHY = 0x1,
18559e14e32SMoni Shoua };
18659e14e32SMoni Shoua
18759e14e32SMoni Shoua enum {
188623ed84bSJack Morgenstein MLX4_MAILBOX_SIZE = 4096,
189623ed84bSJack Morgenstein MLX4_ACCESS_MEM_ALIGN = 256,
190225c7b1fSRoland Dreier };
191225c7b1fSRoland Dreier
1922a2336f8SYevgeny Petrilin enum {
193a130b590SIdo Shamay /* Set port opcode modifiers */
194a130b590SIdo Shamay MLX4_SET_PORT_IB_OPCODE = 0x0,
195a130b590SIdo Shamay MLX4_SET_PORT_ETH_OPCODE = 0x1,
19651af33cfSIdo Shamay MLX4_SET_PORT_BEACON_OPCODE = 0x4,
197a130b590SIdo Shamay };
198a130b590SIdo Shamay
199a130b590SIdo Shamay enum {
200a130b590SIdo Shamay /* Set port Ethernet input modifiers */
2012a2336f8SYevgeny Petrilin MLX4_SET_PORT_GENERAL = 0x0,
2022a2336f8SYevgeny Petrilin MLX4_SET_PORT_RQP_CALC = 0x1,
2032a2336f8SYevgeny Petrilin MLX4_SET_PORT_MAC_TABLE = 0x2,
2042a2336f8SYevgeny Petrilin MLX4_SET_PORT_VLAN_TABLE = 0x3,
2052a2336f8SYevgeny Petrilin MLX4_SET_PORT_PRIO_MAP = 0x4,
20696dfa684SEli Cohen MLX4_SET_PORT_GID_TABLE = 0x5,
2075930e8d0SOr Gerlitz MLX4_SET_PORT_PRIO2TC = 0x8,
2085930e8d0SOr Gerlitz MLX4_SET_PORT_SCHEDULER = 0x9,
2097e57b85cSMoni Shoua MLX4_SET_PORT_VXLAN = 0xB,
2107e57b85cSMoni Shoua MLX4_SET_PORT_ROCE_ADDR = 0xD
2112a2336f8SYevgeny Petrilin };
2122a2336f8SYevgeny Petrilin
213f9baff50SJack Morgenstein enum {
214114840c3SJack Morgenstein MLX4_CMD_MAD_DEMUX_CONFIG = 0,
215114840c3SJack Morgenstein MLX4_CMD_MAD_DEMUX_QUERY_STATE = 1,
216114840c3SJack Morgenstein MLX4_CMD_MAD_DEMUX_QUERY_RESTR = 2, /* Query mad demux restrictions */
217114840c3SJack Morgenstein };
218114840c3SJack Morgenstein
219114840c3SJack Morgenstein enum {
220f9baff50SJack Morgenstein MLX4_CMD_WRAPPED,
221f9baff50SJack Morgenstein MLX4_CMD_NATIVE
222f9baff50SJack Morgenstein };
223f9baff50SJack Morgenstein
224d475c95bSMatan Barak /*
225d475c95bSMatan Barak * MLX4_RX_CSUM_MODE_VAL_NON_TCP_UDP -
226d475c95bSMatan Barak * Receive checksum value is reported in CQE also for non TCP/UDP packets.
227d475c95bSMatan Barak *
228d475c95bSMatan Barak * MLX4_RX_CSUM_MODE_L4 -
229d475c95bSMatan Barak * L4_CSUM bit in CQE, which indicates whether or not L4 checksum
230d475c95bSMatan Barak * was validated correctly, is supported.
231d475c95bSMatan Barak *
232d475c95bSMatan Barak * MLX4_RX_CSUM_MODE_IP_OK_IP_NON_TCP_UDP -
233d475c95bSMatan Barak * IP_OK CQE's field is supported also for non TCP/UDP IP packets.
234d475c95bSMatan Barak *
235d475c95bSMatan Barak * MLX4_RX_CSUM_MODE_MULTI_VLAN -
236d475c95bSMatan Barak * Receive Checksum offload is supported for packets with more than 2 vlan headers.
237d475c95bSMatan Barak */
238d475c95bSMatan Barak enum mlx4_rx_csum_mode {
239d475c95bSMatan Barak MLX4_RX_CSUM_MODE_VAL_NON_TCP_UDP = 1UL << 0,
240d475c95bSMatan Barak MLX4_RX_CSUM_MODE_L4 = 1UL << 1,
241d475c95bSMatan Barak MLX4_RX_CSUM_MODE_IP_OK_IP_NON_TCP_UDP = 1UL << 2,
242d475c95bSMatan Barak MLX4_RX_CSUM_MODE_MULTI_VLAN = 1UL << 3
243d475c95bSMatan Barak };
244d475c95bSMatan Barak
245d475c95bSMatan Barak struct mlx4_config_dev_params {
246d475c95bSMatan Barak u16 vxlan_udp_dport;
247d475c95bSMatan Barak u8 rx_csum_flags_port_1;
248d475c95bSMatan Barak u8 rx_csum_flags_port_2;
249d475c95bSMatan Barak };
250d475c95bSMatan Barak
251d237baa1SShani Michaeli enum mlx4_en_congestion_control_algorithm {
252d237baa1SShani Michaeli MLX4_CTRL_ALGO_802_1_QAU_REACTION_POINT = 0,
253d237baa1SShani Michaeli };
254d237baa1SShani Michaeli
255d237baa1SShani Michaeli enum mlx4_en_congestion_control_opmod {
256d237baa1SShani Michaeli MLX4_CONGESTION_CONTROL_GET_PARAMS,
257d237baa1SShani Michaeli MLX4_CONGESTION_CONTROL_GET_STATISTICS,
258d237baa1SShani Michaeli MLX4_CONGESTION_CONTROL_SET_PARAMS = 4,
259d237baa1SShani Michaeli };
260d237baa1SShani Michaeli
261225c7b1fSRoland Dreier struct mlx4_dev;
262225c7b1fSRoland Dreier
263225c7b1fSRoland Dreier struct mlx4_cmd_mailbox {
264225c7b1fSRoland Dreier void *buf;
265225c7b1fSRoland Dreier dma_addr_t dma;
266225c7b1fSRoland Dreier };
267225c7b1fSRoland Dreier
268225c7b1fSRoland Dreier int __mlx4_cmd(struct mlx4_dev *dev, u64 in_param, u64 *out_param,
269225c7b1fSRoland Dreier int out_is_imm, u32 in_modifier, u8 op_modifier,
270f9baff50SJack Morgenstein u16 op, unsigned long timeout, int native);
271225c7b1fSRoland Dreier
272225c7b1fSRoland Dreier /* Invoke a command with no output parameter */
mlx4_cmd(struct mlx4_dev * dev,u64 in_param,u32 in_modifier,u8 op_modifier,u16 op,unsigned long timeout,int native)273225c7b1fSRoland Dreier static inline int mlx4_cmd(struct mlx4_dev *dev, u64 in_param, u32 in_modifier,
274f9baff50SJack Morgenstein u8 op_modifier, u16 op, unsigned long timeout,
275f9baff50SJack Morgenstein int native)
276225c7b1fSRoland Dreier {
277225c7b1fSRoland Dreier return __mlx4_cmd(dev, in_param, NULL, 0, in_modifier,
278f9baff50SJack Morgenstein op_modifier, op, timeout, native);
279225c7b1fSRoland Dreier }
280225c7b1fSRoland Dreier
281225c7b1fSRoland Dreier /* Invoke a command with an output mailbox */
mlx4_cmd_box(struct mlx4_dev * dev,u64 in_param,u64 out_param,u32 in_modifier,u8 op_modifier,u16 op,unsigned long timeout,int native)282225c7b1fSRoland Dreier static inline int mlx4_cmd_box(struct mlx4_dev *dev, u64 in_param, u64 out_param,
283225c7b1fSRoland Dreier u32 in_modifier, u8 op_modifier, u16 op,
284f9baff50SJack Morgenstein unsigned long timeout, int native)
285225c7b1fSRoland Dreier {
286225c7b1fSRoland Dreier return __mlx4_cmd(dev, in_param, &out_param, 0, in_modifier,
287f9baff50SJack Morgenstein op_modifier, op, timeout, native);
288225c7b1fSRoland Dreier }
289225c7b1fSRoland Dreier
290225c7b1fSRoland Dreier /*
291225c7b1fSRoland Dreier * Invoke a command with an immediate output parameter (and copy the
292225c7b1fSRoland Dreier * output into the caller's out_param pointer after the command
293225c7b1fSRoland Dreier * executes).
294225c7b1fSRoland Dreier */
mlx4_cmd_imm(struct mlx4_dev * dev,u64 in_param,u64 * out_param,u32 in_modifier,u8 op_modifier,u16 op,unsigned long timeout,int native)295225c7b1fSRoland Dreier static inline int mlx4_cmd_imm(struct mlx4_dev *dev, u64 in_param, u64 *out_param,
296225c7b1fSRoland Dreier u32 in_modifier, u8 op_modifier, u16 op,
297f9baff50SJack Morgenstein unsigned long timeout, int native)
298225c7b1fSRoland Dreier {
299225c7b1fSRoland Dreier return __mlx4_cmd(dev, in_param, out_param, 1, in_modifier,
300f9baff50SJack Morgenstein op_modifier, op, timeout, native);
301225c7b1fSRoland Dreier }
302225c7b1fSRoland Dreier
303225c7b1fSRoland Dreier struct mlx4_cmd_mailbox *mlx4_alloc_cmd_mailbox(struct mlx4_dev *dev);
304225c7b1fSRoland Dreier void mlx4_free_cmd_mailbox(struct mlx4_dev *dev, struct mlx4_cmd_mailbox *mailbox);
305225c7b1fSRoland Dreier
3069616982fSEran Ben Elisha int mlx4_get_counter_stats(struct mlx4_dev *dev, int counter_index,
3079616982fSEran Ben Elisha struct mlx4_counter *counter_stats, int reset);
30862a89055SEran Ben Elisha int mlx4_get_vf_stats(struct mlx4_dev *dev, int port, int vf_idx,
30962a89055SEran Ben Elisha struct ifla_vf_stats *vf_stats);
310623ed84bSJack Morgenstein u32 mlx4_comm_get_version(void);
311745d8ae4SEugenia Emantayev int mlx4_set_vf_mac(struct mlx4_dev *dev, int port, int vf, u8 *mac);
312b42959dcSMoshe Shemesh int mlx4_set_vf_vlan(struct mlx4_dev *dev, int port, int vf, u16 vlan,
313b42959dcSMoshe Shemesh u8 qos, __be16 proto);
314cda373f4SIdo Shamay int mlx4_set_vf_rate(struct mlx4_dev *dev, int port, int vf, int min_tx_rate,
315cda373f4SIdo Shamay int max_tx_rate);
316e6b6a231SRony Efraim int mlx4_set_vf_spoofchk(struct mlx4_dev *dev, int port, int vf, bool setting);
3172cccb9e4SRony Efraim int mlx4_get_vf_config(struct mlx4_dev *dev, int port, int vf, struct ifla_vf_info *ivf);
318948e306dSRony Efraim int mlx4_set_vf_link_state(struct mlx4_dev *dev, int port, int vf, int link_state);
319d475c95bSMatan Barak int mlx4_config_dev_retrieval(struct mlx4_dev *dev,
320d475c95bSMatan Barak struct mlx4_config_dev_params *params);
321f5aef5aaSYishai Hadas void mlx4_cmd_wake_completions(struct mlx4_dev *dev);
32255ad3592SYishai Hadas void mlx4_report_internal_err_comm_event(struct mlx4_dev *dev);
3235ea8bbfcSJack Morgenstein /*
3245ea8bbfcSJack Morgenstein * mlx4_get_slave_default_vlan -
3255ea8bbfcSJack Morgenstein * return true if VST ( default vlan)
3265ea8bbfcSJack Morgenstein * if VST, will return vlan & qos (if not NULL)
3275ea8bbfcSJack Morgenstein */
3285ea8bbfcSJack Morgenstein bool mlx4_get_slave_default_vlan(struct mlx4_dev *dev, int port, int slave,
3295ea8bbfcSJack Morgenstein u16 *vlan, u8 *qos);
330623ed84bSJack Morgenstein
331ab9c17a0SJack Morgenstein #define MLX4_COMM_GET_IF_REV(cmd_chan_ver) (u8)((cmd_chan_ver) >> 8)
33255ad3592SYishai Hadas #define COMM_CHAN_EVENT_INTERNAL_ERR (1 << 17)
333ab9c17a0SJack Morgenstein
334225c7b1fSRoland Dreier #endif /* MLX4_CMD_H */
335