cmd.h revision 255932
1219820Sjeff/*
2219820Sjeff * Copyright (c) 2006 Cisco Systems, Inc.  All rights reserved.
3219820Sjeff *
4219820Sjeff * This software is available to you under a choice of one of two
5219820Sjeff * licenses.  You may choose to be licensed under the terms of the GNU
6219820Sjeff * General Public License (GPL) Version 2, available from the file
7219820Sjeff * COPYING in the main directory of this source tree, or the
8219820Sjeff * OpenIB.org BSD license below:
9219820Sjeff *
10219820Sjeff *     Redistribution and use in source and binary forms, with or
11219820Sjeff *     without modification, are permitted provided that the following
12219820Sjeff *     conditions are met:
13219820Sjeff *
14219820Sjeff *      - Redistributions of source code must retain the above
15219820Sjeff *        copyright notice, this list of conditions and the following
16219820Sjeff *        disclaimer.
17219820Sjeff *
18219820Sjeff *      - Redistributions in binary form must reproduce the above
19219820Sjeff *        copyright notice, this list of conditions and the following
20219820Sjeff *        disclaimer in the documentation and/or other materials
21219820Sjeff *        provided with the distribution.
22219820Sjeff *
23219820Sjeff * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24219820Sjeff * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25219820Sjeff * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26219820Sjeff * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27219820Sjeff * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28219820Sjeff * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29219820Sjeff * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30219820Sjeff * SOFTWARE.
31219820Sjeff */
32219820Sjeff
33219820Sjeff#ifndef MLX4_CMD_H
34219820Sjeff#define MLX4_CMD_H
35219820Sjeff
36219820Sjeff#include <linux/dma-mapping.h>
37219820Sjeff
38219820Sjeffenum {
39219820Sjeff	/* initialization and general commands */
40219820Sjeff	MLX4_CMD_SYS_EN		 = 0x1,
41219820Sjeff	MLX4_CMD_SYS_DIS	 = 0x2,
42219820Sjeff	MLX4_CMD_MAP_FA		 = 0xfff,
43219820Sjeff	MLX4_CMD_UNMAP_FA	 = 0xffe,
44219820Sjeff	MLX4_CMD_RUN_FW		 = 0xff6,
45219820Sjeff	MLX4_CMD_MOD_STAT_CFG	 = 0x34,
46219820Sjeff	MLX4_CMD_QUERY_DEV_CAP	 = 0x3,
47219820Sjeff	MLX4_CMD_QUERY_FW	 = 0x4,
48219820Sjeff	MLX4_CMD_ENABLE_LAM	 = 0xff8,
49219820Sjeff	MLX4_CMD_DISABLE_LAM	 = 0xff7,
50219820Sjeff	MLX4_CMD_QUERY_DDR	 = 0x5,
51219820Sjeff	MLX4_CMD_QUERY_ADAPTER	 = 0x6,
52219820Sjeff	MLX4_CMD_INIT_HCA	 = 0x7,
53219820Sjeff	MLX4_CMD_CLOSE_HCA	 = 0x8,
54219820Sjeff	MLX4_CMD_INIT_PORT	 = 0x9,
55219820Sjeff	MLX4_CMD_CLOSE_PORT	 = 0xa,
56219820Sjeff	MLX4_CMD_QUERY_HCA	 = 0xb,
57219820Sjeff	MLX4_CMD_QUERY_PORT	 = 0x43,
58219820Sjeff	MLX4_CMD_SENSE_PORT	 = 0x4d,
59219820Sjeff	MLX4_CMD_HW_HEALTH_CHECK = 0x50,
60219820Sjeff	MLX4_CMD_SET_PORT	 = 0xc,
61219820Sjeff	MLX4_CMD_SET_NODE	 = 0x5a,
62255932Salfred	MLX4_CMD_QUERY_FUNC	 = 0x56,
63219820Sjeff	MLX4_CMD_ACCESS_DDR	 = 0x2e,
64219820Sjeff	MLX4_CMD_MAP_ICM	 = 0xffa,
65219820Sjeff	MLX4_CMD_UNMAP_ICM	 = 0xff9,
66219820Sjeff	MLX4_CMD_MAP_ICM_AUX	 = 0xffc,
67219820Sjeff	MLX4_CMD_UNMAP_ICM_AUX	 = 0xffb,
68219820Sjeff	MLX4_CMD_SET_ICM_SIZE	 = 0xffd,
69255932Salfred	/*master notify fw on finish for slave's flr*/
70255932Salfred	MLX4_CMD_INFORM_FLR_DONE = 0x5b,
71255932Salfred	MLX4_CMD_GET_OP_REQ      = 0x59,
72219820Sjeff
73219820Sjeff	/* TPT commands */
74219820Sjeff	MLX4_CMD_SW2HW_MPT	 = 0xd,
75219820Sjeff	MLX4_CMD_QUERY_MPT	 = 0xe,
76219820Sjeff	MLX4_CMD_HW2SW_MPT	 = 0xf,
77219820Sjeff	MLX4_CMD_READ_MTT	 = 0x10,
78219820Sjeff	MLX4_CMD_WRITE_MTT	 = 0x11,
79219820Sjeff	MLX4_CMD_SYNC_TPT	 = 0x2f,
80219820Sjeff
81219820Sjeff	/* EQ commands */
82219820Sjeff	MLX4_CMD_MAP_EQ		 = 0x12,
83219820Sjeff	MLX4_CMD_SW2HW_EQ	 = 0x13,
84219820Sjeff	MLX4_CMD_HW2SW_EQ	 = 0x14,
85219820Sjeff	MLX4_CMD_QUERY_EQ	 = 0x15,
86219820Sjeff
87219820Sjeff	/* CQ commands */
88219820Sjeff	MLX4_CMD_SW2HW_CQ	 = 0x16,
89219820Sjeff	MLX4_CMD_HW2SW_CQ	 = 0x17,
90219820Sjeff	MLX4_CMD_QUERY_CQ	 = 0x18,
91219820Sjeff	MLX4_CMD_MODIFY_CQ	 = 0x2c,
92219820Sjeff
93219820Sjeff	/* SRQ commands */
94219820Sjeff	MLX4_CMD_SW2HW_SRQ	 = 0x35,
95219820Sjeff	MLX4_CMD_HW2SW_SRQ	 = 0x36,
96219820Sjeff	MLX4_CMD_QUERY_SRQ	 = 0x37,
97219820Sjeff	MLX4_CMD_ARM_SRQ	 = 0x40,
98219820Sjeff
99219820Sjeff	/* QP/EE commands */
100219820Sjeff	MLX4_CMD_RST2INIT_QP	 = 0x19,
101219820Sjeff	MLX4_CMD_INIT2RTR_QP	 = 0x1a,
102219820Sjeff	MLX4_CMD_RTR2RTS_QP	 = 0x1b,
103219820Sjeff	MLX4_CMD_RTS2RTS_QP	 = 0x1c,
104219820Sjeff	MLX4_CMD_SQERR2RTS_QP	 = 0x1d,
105219820Sjeff	MLX4_CMD_2ERR_QP	 = 0x1e,
106219820Sjeff	MLX4_CMD_RTS2SQD_QP	 = 0x1f,
107219820Sjeff	MLX4_CMD_SQD2SQD_QP	 = 0x38,
108219820Sjeff	MLX4_CMD_SQD2RTS_QP	 = 0x20,
109219820Sjeff	MLX4_CMD_2RST_QP	 = 0x21,
110219820Sjeff	MLX4_CMD_QUERY_QP	 = 0x22,
111219820Sjeff	MLX4_CMD_INIT2INIT_QP	 = 0x2d,
112219820Sjeff	MLX4_CMD_SUSPEND_QP	 = 0x32,
113219820Sjeff	MLX4_CMD_UNSUSPEND_QP	 = 0x33,
114219820Sjeff	/* special QP and management commands */
115219820Sjeff	MLX4_CMD_CONF_SPECIAL_QP = 0x23,
116219820Sjeff	MLX4_CMD_MAD_IFC	 = 0x24,
117219820Sjeff
118219820Sjeff	/* multicast commands */
119219820Sjeff	MLX4_CMD_READ_MCG	 = 0x25,
120219820Sjeff	MLX4_CMD_WRITE_MCG	 = 0x26,
121219820Sjeff	MLX4_CMD_MGID_HASH	 = 0x27,
122219820Sjeff
123219820Sjeff	/* miscellaneous commands */
124219820Sjeff	MLX4_CMD_DIAG_RPRT	 = 0x30,
125219820Sjeff	MLX4_CMD_NOP		 = 0x31,
126255932Salfred	MLX4_CMD_ACCESS_MEM	 = 0x2e,
127255932Salfred	MLX4_CMD_SET_VEP	 = 0x52,
128219820Sjeff
129255932Salfred	/* Ethernet specific commands */
130255932Salfred	MLX4_CMD_SET_VLAN_FLTR	 = 0x47,
131255932Salfred	MLX4_CMD_SET_MCAST_FLTR	 = 0x48,
132255932Salfred	MLX4_CMD_DUMP_ETH_STATS	 = 0x49,
133255932Salfred
134255932Salfred	/* Communication channel commands */
135255932Salfred	MLX4_CMD_ARM_COMM_CHANNEL = 0x57,
136255932Salfred	MLX4_CMD_GEN_EQE	 = 0x58,
137255932Salfred
138255932Salfred	/* virtual commands */
139255932Salfred	MLX4_CMD_ALLOC_RES	 = 0xf00,
140255932Salfred	MLX4_CMD_FREE_RES	 = 0xf01,
141255932Salfred	MLX4_CMD_MCAST_ATTACH	 = 0xf05,
142255932Salfred	MLX4_CMD_UCAST_ATTACH	 = 0xf06,
143255932Salfred	MLX4_CMD_PROMISC         = 0xf08,
144255932Salfred	MLX4_CMD_QUERY_FUNC_CAP  = 0xf0a,
145255932Salfred	MLX4_CMD_QP_ATTACH	 = 0xf0b,
146255932Salfred
147219820Sjeff	/* debug commands */
148219820Sjeff	MLX4_CMD_QUERY_DEBUG_MSG = 0x2a,
149219820Sjeff	MLX4_CMD_SET_DEBUG_MSG	 = 0x2b,
150219820Sjeff
151219820Sjeff	/* statistics commands */
152219820Sjeff	MLX4_CMD_QUERY_IF_STAT	 = 0X54,
153219820Sjeff	MLX4_CMD_SET_IF_STAT	 = 0X55,
154255932Salfred
155255932Salfred	/* set port opcode modifiers */
156255932Salfred	MLX4_SET_PORT_PRIO2TC = 0x8,
157255932Salfred	MLX4_SET_PORT_SCHEDULER  = 0x9,
158255932Salfred
159255932Salfred	/* register/delete flow steering network rules */
160255932Salfred	MLX4_QP_FLOW_STEERING_ATTACH = 0x65,
161255932Salfred	MLX4_QP_FLOW_STEERING_DETACH = 0x66,
162255932Salfred	MLX4_FLOW_STEERING_IB_UC_QP_RANGE = 0x64,
163219820Sjeff};
164219820Sjeff
165219820Sjeffenum {
166255932Salfred	MLX4_CMD_TIME_CLASS_A	= 60000,
167255932Salfred	MLX4_CMD_TIME_CLASS_B	= 60000,
168255932Salfred	MLX4_CMD_TIME_CLASS_C	= 60000,
169219820Sjeff};
170219820Sjeff
171219820Sjeffenum {
172255932Salfred	MLX4_MAILBOX_SIZE	= 4096,
173255932Salfred	MLX4_ACCESS_MEM_ALIGN	= 256,
174219820Sjeff};
175219820Sjeff
176219820Sjeffenum {
177219820Sjeff	/* set port opcode modifiers */
178219820Sjeff	MLX4_SET_PORT_GENERAL   = 0x0,
179219820Sjeff	MLX4_SET_PORT_RQP_CALC  = 0x1,
180219820Sjeff	MLX4_SET_PORT_MAC_TABLE = 0x2,
181219820Sjeff	MLX4_SET_PORT_VLAN_TABLE = 0x3,
182219820Sjeff	MLX4_SET_PORT_PRIO_MAP  = 0x4,
183219820Sjeff	MLX4_SET_PORT_GID_TABLE = 0x5,
184219820Sjeff};
185219820Sjeff
186255932Salfredenum {
187255932Salfred	MLX4_CMD_WRAPPED,
188255932Salfred	MLX4_CMD_NATIVE
189255932Salfred};
190255932Salfred
191219820Sjeffstruct mlx4_dev;
192219820Sjeff
193219820Sjeffstruct mlx4_cmd_mailbox {
194219820Sjeff	void		       *buf;
195219820Sjeff	dma_addr_t		dma;
196219820Sjeff};
197219820Sjeff
198219820Sjeffint __mlx4_cmd(struct mlx4_dev *dev, u64 in_param, u64 *out_param,
199219820Sjeff	       int out_is_imm, u32 in_modifier, u8 op_modifier,
200255932Salfred	       u16 op, unsigned long timeout, int native);
201219820Sjeff
202219820Sjeff/* Invoke a command with no output parameter */
203219820Sjeffstatic inline int mlx4_cmd(struct mlx4_dev *dev, u64 in_param, u32 in_modifier,
204255932Salfred			   u8 op_modifier, u16 op, unsigned long timeout,
205255932Salfred			   int native)
206219820Sjeff{
207219820Sjeff	return __mlx4_cmd(dev, in_param, NULL, 0, in_modifier,
208255932Salfred			  op_modifier, op, timeout, native);
209219820Sjeff}
210219820Sjeff
211219820Sjeff/* Invoke a command with an output mailbox */
212219820Sjeffstatic inline int mlx4_cmd_box(struct mlx4_dev *dev, u64 in_param, u64 out_param,
213219820Sjeff			       u32 in_modifier, u8 op_modifier, u16 op,
214255932Salfred			       unsigned long timeout, int native)
215219820Sjeff{
216219820Sjeff	return __mlx4_cmd(dev, in_param, &out_param, 0, in_modifier,
217255932Salfred			  op_modifier, op, timeout, native);
218219820Sjeff}
219219820Sjeff
220219820Sjeff/*
221219820Sjeff * Invoke a command with an immediate output parameter (and copy the
222219820Sjeff * output into the caller's out_param pointer after the command
223219820Sjeff * executes).
224219820Sjeff */
225219820Sjeffstatic inline int mlx4_cmd_imm(struct mlx4_dev *dev, u64 in_param, u64 *out_param,
226219820Sjeff			       u32 in_modifier, u8 op_modifier, u16 op,
227255932Salfred			       unsigned long timeout, int native)
228219820Sjeff{
229219820Sjeff	return __mlx4_cmd(dev, in_param, out_param, 1, in_modifier,
230255932Salfred			  op_modifier, op, timeout, native);
231219820Sjeff}
232219820Sjeff
233219820Sjeffstruct mlx4_cmd_mailbox *mlx4_alloc_cmd_mailbox(struct mlx4_dev *dev);
234219820Sjeffvoid mlx4_free_cmd_mailbox(struct mlx4_dev *dev, struct mlx4_cmd_mailbox *mailbox);
235219820Sjeff
236255932Salfredu32 mlx4_comm_get_version(void);
237255932Salfredint mlx4_set_vf_mac(struct mlx4_dev *dev, int port, int vf, u8 *mac);
238255932Salfredint mlx4_set_vf_vlan(struct mlx4_dev *dev, int port, int vf, u16 vlan, u8 qos);
239255932Salfredint mlx4_set_vf_spoofchk(struct mlx4_dev *dev, int port, int vf, bool setting);
240255932Salfred
241255932Salfred
242255932Salfred#define MLX4_COMM_GET_IF_REV(cmd_chan_ver) (u8)((cmd_chan_ver) >> 8)
243255932Salfred
244219820Sjeff#endif /* MLX4_CMD_H */
245