1 /*
2  * This file is part of the Chelsio T4 Ethernet driver for Linux.
3  *
4  * Copyright (c) 2009-2010 Chelsio Communications, Inc. All rights reserved.
5  *
6  * This software is available to you under a choice of one of two
7  * licenses.  You may choose to be licensed under the terms of the GNU
8  * General Public License (GPL) Version 2, available from the file
9  * COPYING in the main directory of this source tree, or the
10  * OpenIB.org BSD license below:
11  *
12  *     Redistribution and use in source and binary forms, with or
13  *     without modification, are permitted provided that the following
14  *     conditions are met:
15  *
16  *      - Redistributions of source code must retain the above
17  *        copyright notice, this list of conditions and the following
18  *        disclaimer.
19  *
20  *      - Redistributions in binary form must reproduce the above
21  *        copyright notice, this list of conditions and the following
22  *        disclaimer in the documentation and/or other materials
23  *        provided with the distribution.
24  *
25  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
26  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
27  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
28  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
29  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
30  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
31  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
32  * SOFTWARE.
33  */
34 
35 #ifndef _T4FW_INTERFACE_H_
36 #define _T4FW_INTERFACE_H_
37 
38 enum fw_retval {
39 	FW_SUCCESS		= 0,	/* completed sucessfully */
40 	FW_EPERM		= 1,	/* operation not permitted */
41 	FW_ENOENT		= 2,	/* no such file or directory */
42 	FW_EIO			= 5,	/* input/output error; hw bad */
43 	FW_ENOEXEC		= 8,	/* exec format error; inv microcode */
44 	FW_EAGAIN		= 11,	/* try again */
45 	FW_ENOMEM		= 12,	/* out of memory */
46 	FW_EFAULT		= 14,	/* bad address; fw bad */
47 	FW_EBUSY		= 16,	/* resource busy */
48 	FW_EEXIST		= 17,	/* file exists */
49 	FW_EINVAL		= 22,	/* invalid argument */
50 	FW_ENOSPC		= 28,	/* no space left on device */
51 	FW_ENOSYS		= 38,	/* functionality not implemented */
52 	FW_EPROTO		= 71,	/* protocol error */
53 	FW_EADDRINUSE		= 98,	/* address already in use */
54 	FW_EADDRNOTAVAIL	= 99,	/* cannot assigned requested address */
55 	FW_ENETDOWN		= 100,	/* network is down */
56 	FW_ENETUNREACH		= 101,	/* network is unreachable */
57 	FW_ENOBUFS		= 105,	/* no buffer space available */
58 	FW_ETIMEDOUT		= 110,	/* timeout */
59 	FW_EINPROGRESS		= 115,	/* fw internal */
60 	FW_SCSI_ABORT_REQUESTED	= 128,	/* */
61 	FW_SCSI_ABORT_TIMEDOUT	= 129,	/* */
62 	FW_SCSI_ABORTED		= 130,	/* */
63 	FW_SCSI_CLOSE_REQUESTED	= 131,	/* */
64 	FW_ERR_LINK_DOWN	= 132,	/* */
65 	FW_RDEV_NOT_READY	= 133,	/* */
66 	FW_ERR_RDEV_LOST	= 134,	/* */
67 	FW_ERR_RDEV_LOGO	= 135,	/* */
68 	FW_FCOE_NO_XCHG		= 136,	/* */
69 	FW_SCSI_RSP_ERR		= 137,	/* */
70 	FW_ERR_RDEV_IMPL_LOGO	= 138,	/* */
71 	FW_SCSI_UNDER_FLOW_ERR  = 139,	/* */
72 	FW_SCSI_OVER_FLOW_ERR   = 140,	/* */
73 	FW_SCSI_DDP_ERR		= 141,	/* DDP error*/
74 	FW_SCSI_TASK_ERR	= 142,	/* No SCSI tasks available */
75 };
76 
77 #define FW_T4VF_SGE_BASE_ADDR      0x0000
78 #define FW_T4VF_MPS_BASE_ADDR      0x0100
79 #define FW_T4VF_PL_BASE_ADDR       0x0200
80 #define FW_T4VF_MBDATA_BASE_ADDR   0x0240
81 #define FW_T4VF_CIM_BASE_ADDR      0x0300
82 
83 enum fw_wr_opcodes {
84 	FW_FILTER_WR                   = 0x02,
85 	FW_ULPTX_WR                    = 0x04,
86 	FW_TP_WR                       = 0x05,
87 	FW_ETH_TX_PKT_WR               = 0x08,
88 	FW_OFLD_CONNECTION_WR          = 0x2f,
89 	FW_FLOWC_WR                    = 0x0a,
90 	FW_OFLD_TX_DATA_WR             = 0x0b,
91 	FW_CMD_WR                      = 0x10,
92 	FW_ETH_TX_PKT_VM_WR            = 0x11,
93 	FW_RI_RES_WR                   = 0x0c,
94 	FW_RI_INIT_WR                  = 0x0d,
95 	FW_RI_RDMA_WRITE_WR            = 0x14,
96 	FW_RI_SEND_WR                  = 0x15,
97 	FW_RI_RDMA_READ_WR             = 0x16,
98 	FW_RI_RECV_WR                  = 0x17,
99 	FW_RI_BIND_MW_WR               = 0x18,
100 	FW_RI_FR_NSMR_WR               = 0x19,
101 	FW_RI_INV_LSTAG_WR             = 0x1a,
102 	FW_LASTC2E_WR                  = 0x40
103 };
104 
105 struct fw_wr_hdr {
106 	__be32 hi;
107 	__be32 lo;
108 };
109 
110 #define FW_WR_OP(x)	 ((x) << 24)
111 #define FW_WR_OP_GET(x)	 (((x) >> 24) & 0xff)
112 #define FW_WR_ATOMIC(x)	 ((x) << 23)
113 #define FW_WR_FLUSH(x)   ((x) << 22)
114 #define FW_WR_COMPL(x)   ((x) << 21)
115 #define FW_WR_IMMDLEN_MASK 0xff
116 #define FW_WR_IMMDLEN(x) ((x) << 0)
117 
118 #define FW_WR_EQUIQ	(1U << 31)
119 #define FW_WR_EQUEQ	(1U << 30)
120 #define FW_WR_FLOWID(x)	((x) << 8)
121 #define FW_WR_LEN16(x)	((x) << 0)
122 
123 #define HW_TPL_FR_MT_PR_IV_P_FC         0X32B
124 #define HW_TPL_FR_MT_PR_OV_P_FC         0X327
125 
126 /* filter wr reply code in cookie in CPL_SET_TCB_RPL */
127 enum fw_filter_wr_cookie {
128 	FW_FILTER_WR_SUCCESS,
129 	FW_FILTER_WR_FLT_ADDED,
130 	FW_FILTER_WR_FLT_DELETED,
131 	FW_FILTER_WR_SMT_TBL_FULL,
132 	FW_FILTER_WR_EINVAL,
133 };
134 
135 struct fw_filter_wr {
136 	__be32 op_pkd;
137 	__be32 len16_pkd;
138 	__be64 r3;
139 	__be32 tid_to_iq;
140 	__be32 del_filter_to_l2tix;
141 	__be16 ethtype;
142 	__be16 ethtypem;
143 	__u8   frag_to_ovlan_vldm;
144 	__u8   smac_sel;
145 	__be16 rx_chan_rx_rpl_iq;
146 	__be32 maci_to_matchtypem;
147 	__u8   ptcl;
148 	__u8   ptclm;
149 	__u8   ttyp;
150 	__u8   ttypm;
151 	__be16 ivlan;
152 	__be16 ivlanm;
153 	__be16 ovlan;
154 	__be16 ovlanm;
155 	__u8   lip[16];
156 	__u8   lipm[16];
157 	__u8   fip[16];
158 	__u8   fipm[16];
159 	__be16 lp;
160 	__be16 lpm;
161 	__be16 fp;
162 	__be16 fpm;
163 	__be16 r7;
164 	__u8   sma[6];
165 };
166 
167 #define S_FW_FILTER_WR_TID      12
168 #define M_FW_FILTER_WR_TID      0xfffff
169 #define V_FW_FILTER_WR_TID(x)   ((x) << S_FW_FILTER_WR_TID)
170 #define G_FW_FILTER_WR_TID(x)   \
171 	(((x) >> S_FW_FILTER_WR_TID) & M_FW_FILTER_WR_TID)
172 
173 #define S_FW_FILTER_WR_RQTYPE           11
174 #define M_FW_FILTER_WR_RQTYPE           0x1
175 #define V_FW_FILTER_WR_RQTYPE(x)        ((x) << S_FW_FILTER_WR_RQTYPE)
176 #define G_FW_FILTER_WR_RQTYPE(x)        \
177 	(((x) >> S_FW_FILTER_WR_RQTYPE) & M_FW_FILTER_WR_RQTYPE)
178 #define F_FW_FILTER_WR_RQTYPE   V_FW_FILTER_WR_RQTYPE(1U)
179 
180 #define S_FW_FILTER_WR_NOREPLY          10
181 #define M_FW_FILTER_WR_NOREPLY          0x1
182 #define V_FW_FILTER_WR_NOREPLY(x)       ((x) << S_FW_FILTER_WR_NOREPLY)
183 #define G_FW_FILTER_WR_NOREPLY(x)       \
184 	(((x) >> S_FW_FILTER_WR_NOREPLY) & M_FW_FILTER_WR_NOREPLY)
185 #define F_FW_FILTER_WR_NOREPLY  V_FW_FILTER_WR_NOREPLY(1U)
186 
187 #define S_FW_FILTER_WR_IQ       0
188 #define M_FW_FILTER_WR_IQ       0x3ff
189 #define V_FW_FILTER_WR_IQ(x)    ((x) << S_FW_FILTER_WR_IQ)
190 #define G_FW_FILTER_WR_IQ(x)    \
191 	(((x) >> S_FW_FILTER_WR_IQ) & M_FW_FILTER_WR_IQ)
192 
193 #define S_FW_FILTER_WR_DEL_FILTER       31
194 #define M_FW_FILTER_WR_DEL_FILTER       0x1
195 #define V_FW_FILTER_WR_DEL_FILTER(x)    ((x) << S_FW_FILTER_WR_DEL_FILTER)
196 #define G_FW_FILTER_WR_DEL_FILTER(x)    \
197 	(((x) >> S_FW_FILTER_WR_DEL_FILTER) & M_FW_FILTER_WR_DEL_FILTER)
198 #define F_FW_FILTER_WR_DEL_FILTER       V_FW_FILTER_WR_DEL_FILTER(1U)
199 
200 #define S_FW_FILTER_WR_RPTTID           25
201 #define M_FW_FILTER_WR_RPTTID           0x1
202 #define V_FW_FILTER_WR_RPTTID(x)        ((x) << S_FW_FILTER_WR_RPTTID)
203 #define G_FW_FILTER_WR_RPTTID(x)        \
204 	(((x) >> S_FW_FILTER_WR_RPTTID) & M_FW_FILTER_WR_RPTTID)
205 #define F_FW_FILTER_WR_RPTTID   V_FW_FILTER_WR_RPTTID(1U)
206 
207 #define S_FW_FILTER_WR_DROP     24
208 #define M_FW_FILTER_WR_DROP     0x1
209 #define V_FW_FILTER_WR_DROP(x)  ((x) << S_FW_FILTER_WR_DROP)
210 #define G_FW_FILTER_WR_DROP(x)  \
211 	(((x) >> S_FW_FILTER_WR_DROP) & M_FW_FILTER_WR_DROP)
212 #define F_FW_FILTER_WR_DROP     V_FW_FILTER_WR_DROP(1U)
213 
214 #define S_FW_FILTER_WR_DIRSTEER         23
215 #define M_FW_FILTER_WR_DIRSTEER         0x1
216 #define V_FW_FILTER_WR_DIRSTEER(x)      ((x) << S_FW_FILTER_WR_DIRSTEER)
217 #define G_FW_FILTER_WR_DIRSTEER(x)      \
218 	(((x) >> S_FW_FILTER_WR_DIRSTEER) & M_FW_FILTER_WR_DIRSTEER)
219 #define F_FW_FILTER_WR_DIRSTEER V_FW_FILTER_WR_DIRSTEER(1U)
220 
221 #define S_FW_FILTER_WR_MASKHASH         22
222 #define M_FW_FILTER_WR_MASKHASH         0x1
223 #define V_FW_FILTER_WR_MASKHASH(x)      ((x) << S_FW_FILTER_WR_MASKHASH)
224 #define G_FW_FILTER_WR_MASKHASH(x)      \
225 	(((x) >> S_FW_FILTER_WR_MASKHASH) & M_FW_FILTER_WR_MASKHASH)
226 #define F_FW_FILTER_WR_MASKHASH V_FW_FILTER_WR_MASKHASH(1U)
227 
228 #define S_FW_FILTER_WR_DIRSTEERHASH     21
229 #define M_FW_FILTER_WR_DIRSTEERHASH     0x1
230 #define V_FW_FILTER_WR_DIRSTEERHASH(x)  ((x) << S_FW_FILTER_WR_DIRSTEERHASH)
231 #define G_FW_FILTER_WR_DIRSTEERHASH(x)  \
232 	(((x) >> S_FW_FILTER_WR_DIRSTEERHASH) & M_FW_FILTER_WR_DIRSTEERHASH)
233 #define F_FW_FILTER_WR_DIRSTEERHASH     V_FW_FILTER_WR_DIRSTEERHASH(1U)
234 
235 #define S_FW_FILTER_WR_LPBK     20
236 #define M_FW_FILTER_WR_LPBK     0x1
237 #define V_FW_FILTER_WR_LPBK(x)  ((x) << S_FW_FILTER_WR_LPBK)
238 #define G_FW_FILTER_WR_LPBK(x)  \
239 	(((x) >> S_FW_FILTER_WR_LPBK) & M_FW_FILTER_WR_LPBK)
240 #define F_FW_FILTER_WR_LPBK     V_FW_FILTER_WR_LPBK(1U)
241 
242 #define S_FW_FILTER_WR_DMAC     19
243 #define M_FW_FILTER_WR_DMAC     0x1
244 #define V_FW_FILTER_WR_DMAC(x)  ((x) << S_FW_FILTER_WR_DMAC)
245 #define G_FW_FILTER_WR_DMAC(x)  \
246 	(((x) >> S_FW_FILTER_WR_DMAC) & M_FW_FILTER_WR_DMAC)
247 #define F_FW_FILTER_WR_DMAC     V_FW_FILTER_WR_DMAC(1U)
248 
249 #define S_FW_FILTER_WR_SMAC     18
250 #define M_FW_FILTER_WR_SMAC     0x1
251 #define V_FW_FILTER_WR_SMAC(x)  ((x) << S_FW_FILTER_WR_SMAC)
252 #define G_FW_FILTER_WR_SMAC(x)  \
253 	(((x) >> S_FW_FILTER_WR_SMAC) & M_FW_FILTER_WR_SMAC)
254 #define F_FW_FILTER_WR_SMAC     V_FW_FILTER_WR_SMAC(1U)
255 
256 #define S_FW_FILTER_WR_INSVLAN          17
257 #define M_FW_FILTER_WR_INSVLAN          0x1
258 #define V_FW_FILTER_WR_INSVLAN(x)       ((x) << S_FW_FILTER_WR_INSVLAN)
259 #define G_FW_FILTER_WR_INSVLAN(x)       \
260 	(((x) >> S_FW_FILTER_WR_INSVLAN) & M_FW_FILTER_WR_INSVLAN)
261 #define F_FW_FILTER_WR_INSVLAN  V_FW_FILTER_WR_INSVLAN(1U)
262 
263 #define S_FW_FILTER_WR_RMVLAN           16
264 #define M_FW_FILTER_WR_RMVLAN           0x1
265 #define V_FW_FILTER_WR_RMVLAN(x)        ((x) << S_FW_FILTER_WR_RMVLAN)
266 #define G_FW_FILTER_WR_RMVLAN(x)        \
267 	(((x) >> S_FW_FILTER_WR_RMVLAN) & M_FW_FILTER_WR_RMVLAN)
268 #define F_FW_FILTER_WR_RMVLAN   V_FW_FILTER_WR_RMVLAN(1U)
269 
270 #define S_FW_FILTER_WR_HITCNTS          15
271 #define M_FW_FILTER_WR_HITCNTS          0x1
272 #define V_FW_FILTER_WR_HITCNTS(x)       ((x) << S_FW_FILTER_WR_HITCNTS)
273 #define G_FW_FILTER_WR_HITCNTS(x)       \
274 	(((x) >> S_FW_FILTER_WR_HITCNTS) & M_FW_FILTER_WR_HITCNTS)
275 #define F_FW_FILTER_WR_HITCNTS  V_FW_FILTER_WR_HITCNTS(1U)
276 
277 #define S_FW_FILTER_WR_TXCHAN           13
278 #define M_FW_FILTER_WR_TXCHAN           0x3
279 #define V_FW_FILTER_WR_TXCHAN(x)        ((x) << S_FW_FILTER_WR_TXCHAN)
280 #define G_FW_FILTER_WR_TXCHAN(x)        \
281 	(((x) >> S_FW_FILTER_WR_TXCHAN) & M_FW_FILTER_WR_TXCHAN)
282 
283 #define S_FW_FILTER_WR_PRIO     12
284 #define M_FW_FILTER_WR_PRIO     0x1
285 #define V_FW_FILTER_WR_PRIO(x)  ((x) << S_FW_FILTER_WR_PRIO)
286 #define G_FW_FILTER_WR_PRIO(x)  \
287 	(((x) >> S_FW_FILTER_WR_PRIO) & M_FW_FILTER_WR_PRIO)
288 #define F_FW_FILTER_WR_PRIO     V_FW_FILTER_WR_PRIO(1U)
289 
290 #define S_FW_FILTER_WR_L2TIX    0
291 #define M_FW_FILTER_WR_L2TIX    0xfff
292 #define V_FW_FILTER_WR_L2TIX(x) ((x) << S_FW_FILTER_WR_L2TIX)
293 #define G_FW_FILTER_WR_L2TIX(x) \
294 	(((x) >> S_FW_FILTER_WR_L2TIX) & M_FW_FILTER_WR_L2TIX)
295 
296 #define S_FW_FILTER_WR_FRAG     7
297 #define M_FW_FILTER_WR_FRAG     0x1
298 #define V_FW_FILTER_WR_FRAG(x)  ((x) << S_FW_FILTER_WR_FRAG)
299 #define G_FW_FILTER_WR_FRAG(x)  \
300 	(((x) >> S_FW_FILTER_WR_FRAG) & M_FW_FILTER_WR_FRAG)
301 #define F_FW_FILTER_WR_FRAG     V_FW_FILTER_WR_FRAG(1U)
302 
303 #define S_FW_FILTER_WR_FRAGM    6
304 #define M_FW_FILTER_WR_FRAGM    0x1
305 #define V_FW_FILTER_WR_FRAGM(x) ((x) << S_FW_FILTER_WR_FRAGM)
306 #define G_FW_FILTER_WR_FRAGM(x) \
307 	(((x) >> S_FW_FILTER_WR_FRAGM) & M_FW_FILTER_WR_FRAGM)
308 #define F_FW_FILTER_WR_FRAGM    V_FW_FILTER_WR_FRAGM(1U)
309 
310 #define S_FW_FILTER_WR_IVLAN_VLD        5
311 #define M_FW_FILTER_WR_IVLAN_VLD        0x1
312 #define V_FW_FILTER_WR_IVLAN_VLD(x)     ((x) << S_FW_FILTER_WR_IVLAN_VLD)
313 #define G_FW_FILTER_WR_IVLAN_VLD(x)     \
314 	(((x) >> S_FW_FILTER_WR_IVLAN_VLD) & M_FW_FILTER_WR_IVLAN_VLD)
315 #define F_FW_FILTER_WR_IVLAN_VLD        V_FW_FILTER_WR_IVLAN_VLD(1U)
316 
317 #define S_FW_FILTER_WR_OVLAN_VLD        4
318 #define M_FW_FILTER_WR_OVLAN_VLD        0x1
319 #define V_FW_FILTER_WR_OVLAN_VLD(x)     ((x) << S_FW_FILTER_WR_OVLAN_VLD)
320 #define G_FW_FILTER_WR_OVLAN_VLD(x)     \
321 	(((x) >> S_FW_FILTER_WR_OVLAN_VLD) & M_FW_FILTER_WR_OVLAN_VLD)
322 #define F_FW_FILTER_WR_OVLAN_VLD        V_FW_FILTER_WR_OVLAN_VLD(1U)
323 
324 #define S_FW_FILTER_WR_IVLAN_VLDM       3
325 #define M_FW_FILTER_WR_IVLAN_VLDM       0x1
326 #define V_FW_FILTER_WR_IVLAN_VLDM(x)    ((x) << S_FW_FILTER_WR_IVLAN_VLDM)
327 #define G_FW_FILTER_WR_IVLAN_VLDM(x)    \
328 	(((x) >> S_FW_FILTER_WR_IVLAN_VLDM) & M_FW_FILTER_WR_IVLAN_VLDM)
329 #define F_FW_FILTER_WR_IVLAN_VLDM       V_FW_FILTER_WR_IVLAN_VLDM(1U)
330 
331 #define S_FW_FILTER_WR_OVLAN_VLDM       2
332 #define M_FW_FILTER_WR_OVLAN_VLDM       0x1
333 #define V_FW_FILTER_WR_OVLAN_VLDM(x)    ((x) << S_FW_FILTER_WR_OVLAN_VLDM)
334 #define G_FW_FILTER_WR_OVLAN_VLDM(x)    \
335 	(((x) >> S_FW_FILTER_WR_OVLAN_VLDM) & M_FW_FILTER_WR_OVLAN_VLDM)
336 #define F_FW_FILTER_WR_OVLAN_VLDM       V_FW_FILTER_WR_OVLAN_VLDM(1U)
337 
338 #define S_FW_FILTER_WR_RX_CHAN          15
339 #define M_FW_FILTER_WR_RX_CHAN          0x1
340 #define V_FW_FILTER_WR_RX_CHAN(x)       ((x) << S_FW_FILTER_WR_RX_CHAN)
341 #define G_FW_FILTER_WR_RX_CHAN(x)       \
342 	(((x) >> S_FW_FILTER_WR_RX_CHAN) & M_FW_FILTER_WR_RX_CHAN)
343 #define F_FW_FILTER_WR_RX_CHAN  V_FW_FILTER_WR_RX_CHAN(1U)
344 
345 #define S_FW_FILTER_WR_RX_RPL_IQ        0
346 #define M_FW_FILTER_WR_RX_RPL_IQ        0x3ff
347 #define V_FW_FILTER_WR_RX_RPL_IQ(x)     ((x) << S_FW_FILTER_WR_RX_RPL_IQ)
348 #define G_FW_FILTER_WR_RX_RPL_IQ(x)     \
349 	(((x) >> S_FW_FILTER_WR_RX_RPL_IQ) & M_FW_FILTER_WR_RX_RPL_IQ)
350 
351 #define S_FW_FILTER_WR_MACI     23
352 #define M_FW_FILTER_WR_MACI     0x1ff
353 #define V_FW_FILTER_WR_MACI(x)  ((x) << S_FW_FILTER_WR_MACI)
354 #define G_FW_FILTER_WR_MACI(x)  \
355 	(((x) >> S_FW_FILTER_WR_MACI) & M_FW_FILTER_WR_MACI)
356 
357 #define S_FW_FILTER_WR_MACIM    14
358 #define M_FW_FILTER_WR_MACIM    0x1ff
359 #define V_FW_FILTER_WR_MACIM(x) ((x) << S_FW_FILTER_WR_MACIM)
360 #define G_FW_FILTER_WR_MACIM(x) \
361 	(((x) >> S_FW_FILTER_WR_MACIM) & M_FW_FILTER_WR_MACIM)
362 
363 #define S_FW_FILTER_WR_FCOE     13
364 #define M_FW_FILTER_WR_FCOE     0x1
365 #define V_FW_FILTER_WR_FCOE(x)  ((x) << S_FW_FILTER_WR_FCOE)
366 #define G_FW_FILTER_WR_FCOE(x)  \
367 	(((x) >> S_FW_FILTER_WR_FCOE) & M_FW_FILTER_WR_FCOE)
368 #define F_FW_FILTER_WR_FCOE     V_FW_FILTER_WR_FCOE(1U)
369 
370 #define S_FW_FILTER_WR_FCOEM    12
371 #define M_FW_FILTER_WR_FCOEM    0x1
372 #define V_FW_FILTER_WR_FCOEM(x) ((x) << S_FW_FILTER_WR_FCOEM)
373 #define G_FW_FILTER_WR_FCOEM(x) \
374 	(((x) >> S_FW_FILTER_WR_FCOEM) & M_FW_FILTER_WR_FCOEM)
375 #define F_FW_FILTER_WR_FCOEM    V_FW_FILTER_WR_FCOEM(1U)
376 
377 #define S_FW_FILTER_WR_PORT     9
378 #define M_FW_FILTER_WR_PORT     0x7
379 #define V_FW_FILTER_WR_PORT(x)  ((x) << S_FW_FILTER_WR_PORT)
380 #define G_FW_FILTER_WR_PORT(x)  \
381 	(((x) >> S_FW_FILTER_WR_PORT) & M_FW_FILTER_WR_PORT)
382 
383 #define S_FW_FILTER_WR_PORTM    6
384 #define M_FW_FILTER_WR_PORTM    0x7
385 #define V_FW_FILTER_WR_PORTM(x) ((x) << S_FW_FILTER_WR_PORTM)
386 #define G_FW_FILTER_WR_PORTM(x) \
387 	(((x) >> S_FW_FILTER_WR_PORTM) & M_FW_FILTER_WR_PORTM)
388 
389 #define S_FW_FILTER_WR_MATCHTYPE        3
390 #define M_FW_FILTER_WR_MATCHTYPE        0x7
391 #define V_FW_FILTER_WR_MATCHTYPE(x)     ((x) << S_FW_FILTER_WR_MATCHTYPE)
392 #define G_FW_FILTER_WR_MATCHTYPE(x)     \
393 	(((x) >> S_FW_FILTER_WR_MATCHTYPE) & M_FW_FILTER_WR_MATCHTYPE)
394 
395 #define S_FW_FILTER_WR_MATCHTYPEM       0
396 #define M_FW_FILTER_WR_MATCHTYPEM       0x7
397 #define V_FW_FILTER_WR_MATCHTYPEM(x)    ((x) << S_FW_FILTER_WR_MATCHTYPEM)
398 #define G_FW_FILTER_WR_MATCHTYPEM(x)    \
399 	(((x) >> S_FW_FILTER_WR_MATCHTYPEM) & M_FW_FILTER_WR_MATCHTYPEM)
400 
401 struct fw_ulptx_wr {
402 	__be32 op_to_compl;
403 	__be32 flowid_len16;
404 	u64 cookie;
405 };
406 
407 struct fw_tp_wr {
408 	__be32 op_to_immdlen;
409 	__be32 flowid_len16;
410 	u64 cookie;
411 };
412 
413 struct fw_eth_tx_pkt_wr {
414 	__be32 op_immdlen;
415 	__be32 equiq_to_len16;
416 	__be64 r3;
417 };
418 
419 struct fw_ofld_connection_wr {
420 	__be32 op_compl;
421 	__be32 len16_pkd;
422 	__u64  cookie;
423 	__be64 r2;
424 	__be64 r3;
425 	struct fw_ofld_connection_le {
426 		__be32 version_cpl;
427 		__be32 filter;
428 		__be32 r1;
429 		__be16 lport;
430 		__be16 pport;
431 		union fw_ofld_connection_leip {
432 			struct fw_ofld_connection_le_ipv4 {
433 				__be32 pip;
434 				__be32 lip;
435 				__be64 r0;
436 				__be64 r1;
437 				__be64 r2;
438 			} ipv4;
439 			struct fw_ofld_connection_le_ipv6 {
440 				__be64 pip_hi;
441 				__be64 pip_lo;
442 				__be64 lip_hi;
443 				__be64 lip_lo;
444 			} ipv6;
445 		} u;
446 	} le;
447 	struct fw_ofld_connection_tcb {
448 		__be32 t_state_to_astid;
449 		__be16 cplrxdataack_cplpassacceptrpl;
450 		__be16 rcv_adv;
451 		__be32 rcv_nxt;
452 		__be32 tx_max;
453 		__be64 opt0;
454 		__be32 opt2;
455 		__be32 r1;
456 		__be64 r2;
457 		__be64 r3;
458 	} tcb;
459 };
460 
461 #define S_FW_OFLD_CONNECTION_WR_VERSION                31
462 #define M_FW_OFLD_CONNECTION_WR_VERSION                0x1
463 #define V_FW_OFLD_CONNECTION_WR_VERSION(x)     \
464 	((x) << S_FW_OFLD_CONNECTION_WR_VERSION)
465 #define G_FW_OFLD_CONNECTION_WR_VERSION(x)     \
466 	(((x) >> S_FW_OFLD_CONNECTION_WR_VERSION) & \
467 	M_FW_OFLD_CONNECTION_WR_VERSION)
468 #define F_FW_OFLD_CONNECTION_WR_VERSION        \
469 	V_FW_OFLD_CONNECTION_WR_VERSION(1U)
470 
471 #define S_FW_OFLD_CONNECTION_WR_CPL    30
472 #define M_FW_OFLD_CONNECTION_WR_CPL    0x1
473 #define V_FW_OFLD_CONNECTION_WR_CPL(x) ((x) << S_FW_OFLD_CONNECTION_WR_CPL)
474 #define G_FW_OFLD_CONNECTION_WR_CPL(x) \
475 	(((x) >> S_FW_OFLD_CONNECTION_WR_CPL) & M_FW_OFLD_CONNECTION_WR_CPL)
476 #define F_FW_OFLD_CONNECTION_WR_CPL    V_FW_OFLD_CONNECTION_WR_CPL(1U)
477 
478 #define S_FW_OFLD_CONNECTION_WR_T_STATE                28
479 #define M_FW_OFLD_CONNECTION_WR_T_STATE                0xf
480 #define V_FW_OFLD_CONNECTION_WR_T_STATE(x)     \
481 	((x) << S_FW_OFLD_CONNECTION_WR_T_STATE)
482 #define G_FW_OFLD_CONNECTION_WR_T_STATE(x)     \
483 	(((x) >> S_FW_OFLD_CONNECTION_WR_T_STATE) & \
484 	M_FW_OFLD_CONNECTION_WR_T_STATE)
485 
486 #define S_FW_OFLD_CONNECTION_WR_RCV_SCALE      24
487 #define M_FW_OFLD_CONNECTION_WR_RCV_SCALE      0xf
488 #define V_FW_OFLD_CONNECTION_WR_RCV_SCALE(x)   \
489 	((x) << S_FW_OFLD_CONNECTION_WR_RCV_SCALE)
490 #define G_FW_OFLD_CONNECTION_WR_RCV_SCALE(x)   \
491 	(((x) >> S_FW_OFLD_CONNECTION_WR_RCV_SCALE) & \
492 	M_FW_OFLD_CONNECTION_WR_RCV_SCALE)
493 
494 #define S_FW_OFLD_CONNECTION_WR_ASTID          0
495 #define M_FW_OFLD_CONNECTION_WR_ASTID          0xffffff
496 #define V_FW_OFLD_CONNECTION_WR_ASTID(x)       \
497 	((x) << S_FW_OFLD_CONNECTION_WR_ASTID)
498 #define G_FW_OFLD_CONNECTION_WR_ASTID(x)       \
499 	(((x) >> S_FW_OFLD_CONNECTION_WR_ASTID) & M_FW_OFLD_CONNECTION_WR_ASTID)
500 
501 #define S_FW_OFLD_CONNECTION_WR_CPLRXDATAACK   15
502 #define M_FW_OFLD_CONNECTION_WR_CPLRXDATAACK   0x1
503 #define V_FW_OFLD_CONNECTION_WR_CPLRXDATAACK(x)        \
504 	((x) << S_FW_OFLD_CONNECTION_WR_CPLRXDATAACK)
505 #define G_FW_OFLD_CONNECTION_WR_CPLRXDATAACK(x)        \
506 	(((x) >> S_FW_OFLD_CONNECTION_WR_CPLRXDATAACK) & \
507 	M_FW_OFLD_CONNECTION_WR_CPLRXDATAACK)
508 #define F_FW_OFLD_CONNECTION_WR_CPLRXDATAACK   \
509 	V_FW_OFLD_CONNECTION_WR_CPLRXDATAACK(1U)
510 
511 #define S_FW_OFLD_CONNECTION_WR_CPLPASSACCEPTRPL       14
512 #define M_FW_OFLD_CONNECTION_WR_CPLPASSACCEPTRPL       0x1
513 #define V_FW_OFLD_CONNECTION_WR_CPLPASSACCEPTRPL(x)    \
514 	((x) << S_FW_OFLD_CONNECTION_WR_CPLPASSACCEPTRPL)
515 #define G_FW_OFLD_CONNECTION_WR_CPLPASSACCEPTRPL(x)    \
516 	(((x) >> S_FW_OFLD_CONNECTION_WR_CPLPASSACCEPTRPL) & \
517 	M_FW_OFLD_CONNECTION_WR_CPLPASSACCEPTRPL)
518 #define F_FW_OFLD_CONNECTION_WR_CPLPASSACCEPTRPL       \
519 	V_FW_OFLD_CONNECTION_WR_CPLPASSACCEPTRPL(1U)
520 
521 enum fw_flowc_mnem {
522 	FW_FLOWC_MNEM_PFNVFN,		/* PFN [15:8] VFN [7:0] */
523 	FW_FLOWC_MNEM_CH,
524 	FW_FLOWC_MNEM_PORT,
525 	FW_FLOWC_MNEM_IQID,
526 	FW_FLOWC_MNEM_SNDNXT,
527 	FW_FLOWC_MNEM_RCVNXT,
528 	FW_FLOWC_MNEM_SNDBUF,
529 	FW_FLOWC_MNEM_MSS,
530 };
531 
532 struct fw_flowc_mnemval {
533 	u8 mnemonic;
534 	u8 r4[3];
535 	__be32 val;
536 };
537 
538 struct fw_flowc_wr {
539 	__be32 op_to_nparams;
540 #define FW_FLOWC_WR_NPARAMS(x)	((x) << 0)
541 	__be32 flowid_len16;
542 	struct fw_flowc_mnemval mnemval[0];
543 };
544 
545 struct fw_ofld_tx_data_wr {
546 	__be32 op_to_immdlen;
547 	__be32 flowid_len16;
548 	__be32 plen;
549 	__be32 tunnel_to_proxy;
550 #define FW_OFLD_TX_DATA_WR_TUNNEL(x)	 ((x) << 19)
551 #define FW_OFLD_TX_DATA_WR_SAVE(x)	 ((x) << 18)
552 #define FW_OFLD_TX_DATA_WR_FLUSH(x)	 ((x) << 17)
553 #define FW_OFLD_TX_DATA_WR_URGENT(x)	 ((x) << 16)
554 #define FW_OFLD_TX_DATA_WR_MORE(x)	 ((x) << 15)
555 #define FW_OFLD_TX_DATA_WR_SHOVE(x)	 ((x) << 14)
556 #define FW_OFLD_TX_DATA_WR_ULPMODE(x)	 ((x) << 10)
557 #define FW_OFLD_TX_DATA_WR_ULPSUBMODE(x) ((x) << 6)
558 };
559 
560 struct fw_cmd_wr {
561 	__be32 op_dma;
562 #define FW_CMD_WR_DMA (1U << 17)
563 	__be32 len16_pkd;
564 	__be64 cookie_daddr;
565 };
566 
567 struct fw_eth_tx_pkt_vm_wr {
568 	__be32 op_immdlen;
569 	__be32 equiq_to_len16;
570 	__be32 r3[2];
571 	u8 ethmacdst[6];
572 	u8 ethmacsrc[6];
573 	__be16 ethtype;
574 	__be16 vlantci;
575 };
576 
577 #define FW_CMD_MAX_TIMEOUT 10000
578 
579 /*
580  * If a host driver does a HELLO and discovers that there's already a MASTER
581  * selected, we may have to wait for that MASTER to finish issuing RESET,
582  * configuration and INITIALIZE commands.  Also, there's a possibility that
583  * our own HELLO may get lost if it happens right as the MASTER is issuign a
584  * RESET command, so we need to be willing to make a few retries of our HELLO.
585  */
586 #define FW_CMD_HELLO_TIMEOUT	(3 * FW_CMD_MAX_TIMEOUT)
587 #define FW_CMD_HELLO_RETRIES	3
588 
589 
590 enum fw_cmd_opcodes {
591 	FW_LDST_CMD                    = 0x01,
592 	FW_RESET_CMD                   = 0x03,
593 	FW_HELLO_CMD                   = 0x04,
594 	FW_BYE_CMD                     = 0x05,
595 	FW_INITIALIZE_CMD              = 0x06,
596 	FW_CAPS_CONFIG_CMD             = 0x07,
597 	FW_PARAMS_CMD                  = 0x08,
598 	FW_PFVF_CMD                    = 0x09,
599 	FW_IQ_CMD                      = 0x10,
600 	FW_EQ_MNGT_CMD                 = 0x11,
601 	FW_EQ_ETH_CMD                  = 0x12,
602 	FW_EQ_CTRL_CMD                 = 0x13,
603 	FW_EQ_OFLD_CMD                 = 0x21,
604 	FW_VI_CMD                      = 0x14,
605 	FW_VI_MAC_CMD                  = 0x15,
606 	FW_VI_RXMODE_CMD               = 0x16,
607 	FW_VI_ENABLE_CMD               = 0x17,
608 	FW_ACL_MAC_CMD                 = 0x18,
609 	FW_ACL_VLAN_CMD                = 0x19,
610 	FW_VI_STATS_CMD                = 0x1a,
611 	FW_PORT_CMD                    = 0x1b,
612 	FW_PORT_STATS_CMD              = 0x1c,
613 	FW_PORT_LB_STATS_CMD           = 0x1d,
614 	FW_PORT_TRACE_CMD              = 0x1e,
615 	FW_PORT_TRACE_MMAP_CMD         = 0x1f,
616 	FW_RSS_IND_TBL_CMD             = 0x20,
617 	FW_RSS_GLB_CONFIG_CMD          = 0x22,
618 	FW_RSS_VI_CONFIG_CMD           = 0x23,
619 	FW_LASTC2E_CMD                 = 0x40,
620 	FW_ERROR_CMD                   = 0x80,
621 	FW_DEBUG_CMD                   = 0x81,
622 };
623 
624 enum fw_cmd_cap {
625 	FW_CMD_CAP_PF                  = 0x01,
626 	FW_CMD_CAP_DMAQ                = 0x02,
627 	FW_CMD_CAP_PORT                = 0x04,
628 	FW_CMD_CAP_PORTPROMISC         = 0x08,
629 	FW_CMD_CAP_PORTSTATS           = 0x10,
630 	FW_CMD_CAP_VF                  = 0x80,
631 };
632 
633 /*
634  * Generic command header flit0
635  */
636 struct fw_cmd_hdr {
637 	__be32 hi;
638 	__be32 lo;
639 };
640 
641 #define FW_CMD_OP(x)		((x) << 24)
642 #define FW_CMD_OP_GET(x)        (((x) >> 24) & 0xff)
643 #define FW_CMD_REQUEST          (1U << 23)
644 #define FW_CMD_REQUEST_GET(x)   (((x) >> 23) & 0x1)
645 #define FW_CMD_READ		(1U << 22)
646 #define FW_CMD_WRITE		(1U << 21)
647 #define FW_CMD_EXEC		(1U << 20)
648 #define FW_CMD_RAMASK(x)	((x) << 20)
649 #define FW_CMD_RETVAL(x)	((x) << 8)
650 #define FW_CMD_RETVAL_GET(x)	(((x) >> 8) & 0xff)
651 #define FW_CMD_LEN16(x)         ((x) << 0)
652 #define FW_LEN16(fw_struct)	FW_CMD_LEN16(sizeof(fw_struct) / 16)
653 
654 enum fw_ldst_addrspc {
655 	FW_LDST_ADDRSPC_FIRMWARE  = 0x0001,
656 	FW_LDST_ADDRSPC_SGE_EGRC  = 0x0008,
657 	FW_LDST_ADDRSPC_SGE_INGC  = 0x0009,
658 	FW_LDST_ADDRSPC_SGE_FLMC  = 0x000a,
659 	FW_LDST_ADDRSPC_SGE_CONMC = 0x000b,
660 	FW_LDST_ADDRSPC_TP_PIO    = 0x0010,
661 	FW_LDST_ADDRSPC_TP_TM_PIO = 0x0011,
662 	FW_LDST_ADDRSPC_TP_MIB    = 0x0012,
663 	FW_LDST_ADDRSPC_MDIO      = 0x0018,
664 	FW_LDST_ADDRSPC_MPS       = 0x0020,
665 	FW_LDST_ADDRSPC_FUNC      = 0x0028,
666 	FW_LDST_ADDRSPC_FUNC_PCIE = 0x0029,
667 };
668 
669 enum fw_ldst_mps_fid {
670 	FW_LDST_MPS_ATRB,
671 	FW_LDST_MPS_RPLC
672 };
673 
674 enum fw_ldst_func_access_ctl {
675 	FW_LDST_FUNC_ACC_CTL_VIID,
676 	FW_LDST_FUNC_ACC_CTL_FID
677 };
678 
679 enum fw_ldst_func_mod_index {
680 	FW_LDST_FUNC_MPS
681 };
682 
683 struct fw_ldst_cmd {
684 	__be32 op_to_addrspace;
685 #define FW_LDST_CMD_ADDRSPACE(x) ((x) << 0)
686 	__be32 cycles_to_len16;
687 	union fw_ldst {
688 		struct fw_ldst_addrval {
689 			__be32 addr;
690 			__be32 val;
691 		} addrval;
692 		struct fw_ldst_idctxt {
693 			__be32 physid;
694 			__be32 msg_pkd;
695 			__be32 ctxt_data7;
696 			__be32 ctxt_data6;
697 			__be32 ctxt_data5;
698 			__be32 ctxt_data4;
699 			__be32 ctxt_data3;
700 			__be32 ctxt_data2;
701 			__be32 ctxt_data1;
702 			__be32 ctxt_data0;
703 		} idctxt;
704 		struct fw_ldst_mdio {
705 			__be16 paddr_mmd;
706 			__be16 raddr;
707 			__be16 vctl;
708 			__be16 rval;
709 		} mdio;
710 		struct fw_ldst_mps {
711 			__be16 fid_ctl;
712 			__be16 rplcpf_pkd;
713 			__be32 rplc127_96;
714 			__be32 rplc95_64;
715 			__be32 rplc63_32;
716 			__be32 rplc31_0;
717 			__be32 atrb;
718 			__be16 vlan[16];
719 		} mps;
720 		struct fw_ldst_func {
721 			u8 access_ctl;
722 			u8 mod_index;
723 			__be16 ctl_id;
724 			__be32 offset;
725 			__be64 data0;
726 			__be64 data1;
727 		} func;
728 		struct fw_ldst_pcie {
729 			u8 ctrl_to_fn;
730 			u8 bnum;
731 			u8 r;
732 			u8 ext_r;
733 			u8 select_naccess;
734 			u8 pcie_fn;
735 			__be16 nset_pkd;
736 			__be32 data[12];
737 		} pcie;
738 	} u;
739 };
740 
741 #define FW_LDST_CMD_MSG(x)	((x) << 31)
742 #define FW_LDST_CMD_PADDR(x)	((x) << 8)
743 #define FW_LDST_CMD_MMD(x)	((x) << 0)
744 #define FW_LDST_CMD_FID(x)	((x) << 15)
745 #define FW_LDST_CMD_CTL(x)	((x) << 0)
746 #define FW_LDST_CMD_RPLCPF(x)	((x) << 0)
747 #define FW_LDST_CMD_LC		(1U << 4)
748 #define FW_LDST_CMD_NACCESS(x)	((x) << 0)
749 #define FW_LDST_CMD_FN(x)	((x) << 0)
750 
751 struct fw_reset_cmd {
752 	__be32 op_to_write;
753 	__be32 retval_len16;
754 	__be32 val;
755 	__be32 halt_pkd;
756 };
757 
758 #define FW_RESET_CMD_HALT_SHIFT    31
759 #define FW_RESET_CMD_HALT_MASK     0x1
760 #define FW_RESET_CMD_HALT(x)       ((x) << FW_RESET_CMD_HALT_SHIFT)
761 #define FW_RESET_CMD_HALT_GET(x)  \
762 	(((x) >> FW_RESET_CMD_HALT_SHIFT) & FW_RESET_CMD_HALT_MASK)
763 
764 enum fw_hellow_cmd {
765 	fw_hello_cmd_stage_os		= 0x0
766 };
767 
768 struct fw_hello_cmd {
769 	__be32 op_to_write;
770 	__be32 retval_len16;
771 	__be32 err_to_clearinit;
772 #define FW_HELLO_CMD_ERR	    (1U << 31)
773 #define FW_HELLO_CMD_INIT	    (1U << 30)
774 #define FW_HELLO_CMD_MASTERDIS(x)   ((x) << 29)
775 #define FW_HELLO_CMD_MASTERFORCE(x) ((x) << 28)
776 #define FW_HELLO_CMD_MBMASTER_MASK   0xfU
777 #define FW_HELLO_CMD_MBMASTER_SHIFT  24
778 #define FW_HELLO_CMD_MBMASTER(x)     ((x) << FW_HELLO_CMD_MBMASTER_SHIFT)
779 #define FW_HELLO_CMD_MBMASTER_GET(x) \
780 	(((x) >> FW_HELLO_CMD_MBMASTER_SHIFT) & FW_HELLO_CMD_MBMASTER_MASK)
781 #define FW_HELLO_CMD_MBASYNCNOTINT(x)	((x) << 23)
782 #define FW_HELLO_CMD_MBASYNCNOT(x)  ((x) << 20)
783 #define FW_HELLO_CMD_STAGE(x)       ((x) << 17)
784 #define FW_HELLO_CMD_CLEARINIT      (1U << 16)
785 	__be32 fwrev;
786 };
787 
788 struct fw_bye_cmd {
789 	__be32 op_to_write;
790 	__be32 retval_len16;
791 	__be64 r3;
792 };
793 
794 struct fw_initialize_cmd {
795 	__be32 op_to_write;
796 	__be32 retval_len16;
797 	__be64 r3;
798 };
799 
800 enum fw_caps_config_hm {
801 	FW_CAPS_CONFIG_HM_PCIE		= 0x00000001,
802 	FW_CAPS_CONFIG_HM_PL		= 0x00000002,
803 	FW_CAPS_CONFIG_HM_SGE		= 0x00000004,
804 	FW_CAPS_CONFIG_HM_CIM		= 0x00000008,
805 	FW_CAPS_CONFIG_HM_ULPTX		= 0x00000010,
806 	FW_CAPS_CONFIG_HM_TP		= 0x00000020,
807 	FW_CAPS_CONFIG_HM_ULPRX		= 0x00000040,
808 	FW_CAPS_CONFIG_HM_PMRX		= 0x00000080,
809 	FW_CAPS_CONFIG_HM_PMTX		= 0x00000100,
810 	FW_CAPS_CONFIG_HM_MC		= 0x00000200,
811 	FW_CAPS_CONFIG_HM_LE		= 0x00000400,
812 	FW_CAPS_CONFIG_HM_MPS		= 0x00000800,
813 	FW_CAPS_CONFIG_HM_XGMAC		= 0x00001000,
814 	FW_CAPS_CONFIG_HM_CPLSWITCH	= 0x00002000,
815 	FW_CAPS_CONFIG_HM_T4DBG		= 0x00004000,
816 	FW_CAPS_CONFIG_HM_MI		= 0x00008000,
817 	FW_CAPS_CONFIG_HM_I2CM		= 0x00010000,
818 	FW_CAPS_CONFIG_HM_NCSI		= 0x00020000,
819 	FW_CAPS_CONFIG_HM_SMB		= 0x00040000,
820 	FW_CAPS_CONFIG_HM_MA		= 0x00080000,
821 	FW_CAPS_CONFIG_HM_EDRAM		= 0x00100000,
822 	FW_CAPS_CONFIG_HM_PMU		= 0x00200000,
823 	FW_CAPS_CONFIG_HM_UART		= 0x00400000,
824 	FW_CAPS_CONFIG_HM_SF		= 0x00800000,
825 };
826 
827 enum fw_caps_config_nbm {
828 	FW_CAPS_CONFIG_NBM_IPMI		= 0x00000001,
829 	FW_CAPS_CONFIG_NBM_NCSI		= 0x00000002,
830 };
831 
832 enum fw_caps_config_link {
833 	FW_CAPS_CONFIG_LINK_PPP		= 0x00000001,
834 	FW_CAPS_CONFIG_LINK_QFC		= 0x00000002,
835 	FW_CAPS_CONFIG_LINK_DCBX	= 0x00000004,
836 };
837 
838 enum fw_caps_config_switch {
839 	FW_CAPS_CONFIG_SWITCH_INGRESS	= 0x00000001,
840 	FW_CAPS_CONFIG_SWITCH_EGRESS	= 0x00000002,
841 };
842 
843 enum fw_caps_config_nic {
844 	FW_CAPS_CONFIG_NIC		= 0x00000001,
845 	FW_CAPS_CONFIG_NIC_VM		= 0x00000002,
846 };
847 
848 enum fw_caps_config_ofld {
849 	FW_CAPS_CONFIG_OFLD		= 0x00000001,
850 };
851 
852 enum fw_caps_config_rdma {
853 	FW_CAPS_CONFIG_RDMA_RDDP	= 0x00000001,
854 	FW_CAPS_CONFIG_RDMA_RDMAC	= 0x00000002,
855 };
856 
857 enum fw_caps_config_iscsi {
858 	FW_CAPS_CONFIG_ISCSI_INITIATOR_PDU = 0x00000001,
859 	FW_CAPS_CONFIG_ISCSI_TARGET_PDU = 0x00000002,
860 	FW_CAPS_CONFIG_ISCSI_INITIATOR_CNXOFLD = 0x00000004,
861 	FW_CAPS_CONFIG_ISCSI_TARGET_CNXOFLD = 0x00000008,
862 };
863 
864 enum fw_caps_config_fcoe {
865 	FW_CAPS_CONFIG_FCOE_INITIATOR	= 0x00000001,
866 	FW_CAPS_CONFIG_FCOE_TARGET	= 0x00000002,
867 	FW_CAPS_CONFIG_FCOE_CTRL_OFLD	= 0x00000004,
868 };
869 
870 enum fw_memtype_cf {
871 	FW_MEMTYPE_CF_EDC0		= 0x0,
872 	FW_MEMTYPE_CF_EDC1		= 0x1,
873 	FW_MEMTYPE_CF_EXTMEM		= 0x2,
874 	FW_MEMTYPE_CF_FLASH		= 0x4,
875 	FW_MEMTYPE_CF_INTERNAL		= 0x5,
876 };
877 
878 struct fw_caps_config_cmd {
879 	__be32 op_to_write;
880 	__be32 cfvalid_to_len16;
881 	__be32 r2;
882 	__be32 hwmbitmap;
883 	__be16 nbmcaps;
884 	__be16 linkcaps;
885 	__be16 switchcaps;
886 	__be16 r3;
887 	__be16 niccaps;
888 	__be16 ofldcaps;
889 	__be16 rdmacaps;
890 	__be16 r4;
891 	__be16 iscsicaps;
892 	__be16 fcoecaps;
893 	__be32 cfcsum;
894 	__be32 finiver;
895 	__be32 finicsum;
896 };
897 
898 #define FW_CAPS_CONFIG_CMD_CFVALID          (1U << 27)
899 #define FW_CAPS_CONFIG_CMD_MEMTYPE_CF(x)    ((x) << 24)
900 #define FW_CAPS_CONFIG_CMD_MEMADDR64K_CF(x) ((x) << 16)
901 
902 /*
903  * params command mnemonics
904  */
905 enum fw_params_mnem {
906 	FW_PARAMS_MNEM_DEV		= 1,	/* device params */
907 	FW_PARAMS_MNEM_PFVF		= 2,	/* function params */
908 	FW_PARAMS_MNEM_REG		= 3,	/* limited register access */
909 	FW_PARAMS_MNEM_DMAQ		= 4,	/* dma queue params */
910 	FW_PARAMS_MNEM_LAST
911 };
912 
913 /*
914  * device parameters
915  */
916 enum fw_params_param_dev {
917 	FW_PARAMS_PARAM_DEV_CCLK	= 0x00, /* chip core clock in khz */
918 	FW_PARAMS_PARAM_DEV_PORTVEC	= 0x01, /* the port vector */
919 	FW_PARAMS_PARAM_DEV_NTID	= 0x02, /* reads the number of TIDs
920 						 * allocated by the device's
921 						 * Lookup Engine
922 						 */
923 	FW_PARAMS_PARAM_DEV_FLOWC_BUFFIFO_SZ = 0x03,
924 	FW_PARAMS_PARAM_DEV_INTVER_NIC	= 0x04,
925 	FW_PARAMS_PARAM_DEV_INTVER_VNIC = 0x05,
926 	FW_PARAMS_PARAM_DEV_INTVER_OFLD = 0x06,
927 	FW_PARAMS_PARAM_DEV_INTVER_RI	= 0x07,
928 	FW_PARAMS_PARAM_DEV_INTVER_ISCSIPDU = 0x08,
929 	FW_PARAMS_PARAM_DEV_INTVER_ISCSI = 0x09,
930 	FW_PARAMS_PARAM_DEV_INTVER_FCOE = 0x0A,
931 	FW_PARAMS_PARAM_DEV_FWREV = 0x0B,
932 	FW_PARAMS_PARAM_DEV_TPREV = 0x0C,
933 	FW_PARAMS_PARAM_DEV_CF = 0x0D,
934 };
935 
936 /*
937  * physical and virtual function parameters
938  */
939 enum fw_params_param_pfvf {
940 	FW_PARAMS_PARAM_PFVF_RWXCAPS	= 0x00,
941 	FW_PARAMS_PARAM_PFVF_ROUTE_START = 0x01,
942 	FW_PARAMS_PARAM_PFVF_ROUTE_END = 0x02,
943 	FW_PARAMS_PARAM_PFVF_CLIP_START = 0x03,
944 	FW_PARAMS_PARAM_PFVF_CLIP_END = 0x04,
945 	FW_PARAMS_PARAM_PFVF_FILTER_START = 0x05,
946 	FW_PARAMS_PARAM_PFVF_FILTER_END = 0x06,
947 	FW_PARAMS_PARAM_PFVF_SERVER_START = 0x07,
948 	FW_PARAMS_PARAM_PFVF_SERVER_END = 0x08,
949 	FW_PARAMS_PARAM_PFVF_TDDP_START = 0x09,
950 	FW_PARAMS_PARAM_PFVF_TDDP_END = 0x0A,
951 	FW_PARAMS_PARAM_PFVF_ISCSI_START = 0x0B,
952 	FW_PARAMS_PARAM_PFVF_ISCSI_END = 0x0C,
953 	FW_PARAMS_PARAM_PFVF_STAG_START = 0x0D,
954 	FW_PARAMS_PARAM_PFVF_STAG_END = 0x0E,
955 	FW_PARAMS_PARAM_PFVF_RQ_START = 0x1F,
956 	FW_PARAMS_PARAM_PFVF_RQ_END	= 0x10,
957 	FW_PARAMS_PARAM_PFVF_PBL_START = 0x11,
958 	FW_PARAMS_PARAM_PFVF_PBL_END	= 0x12,
959 	FW_PARAMS_PARAM_PFVF_L2T_START = 0x13,
960 	FW_PARAMS_PARAM_PFVF_L2T_END = 0x14,
961 	FW_PARAMS_PARAM_PFVF_SQRQ_START = 0x15,
962 	FW_PARAMS_PARAM_PFVF_SQRQ_END	= 0x16,
963 	FW_PARAMS_PARAM_PFVF_CQ_START	= 0x17,
964 	FW_PARAMS_PARAM_PFVF_CQ_END	= 0x18,
965 	FW_PARAMS_PARAM_PFVF_SCHEDCLASS_ETH = 0x20,
966 	FW_PARAMS_PARAM_PFVF_VIID       = 0x24,
967 	FW_PARAMS_PARAM_PFVF_CPMASK     = 0x25,
968 	FW_PARAMS_PARAM_PFVF_OCQ_START  = 0x26,
969 	FW_PARAMS_PARAM_PFVF_OCQ_END    = 0x27,
970 	FW_PARAMS_PARAM_PFVF_CONM_MAP   = 0x28,
971 	FW_PARAMS_PARAM_PFVF_IQFLINT_START = 0x29,
972 	FW_PARAMS_PARAM_PFVF_IQFLINT_END = 0x2A,
973 	FW_PARAMS_PARAM_PFVF_EQ_START	= 0x2B,
974 	FW_PARAMS_PARAM_PFVF_EQ_END	= 0x2C,
975 	FW_PARAMS_PARAM_PFVF_ACTIVE_FILTER_START = 0x2D,
976 	FW_PARAMS_PARAM_PFVF_ACTIVE_FILTER_END = 0x2E
977 };
978 
979 /*
980  * dma queue parameters
981  */
982 enum fw_params_param_dmaq {
983 	FW_PARAMS_PARAM_DMAQ_IQ_DCAEN_DCACPU = 0x00,
984 	FW_PARAMS_PARAM_DMAQ_IQ_INTCNTTHRESH = 0x01,
985 	FW_PARAMS_PARAM_DMAQ_EQ_CMPLIQID_MNGT = 0x10,
986 	FW_PARAMS_PARAM_DMAQ_EQ_CMPLIQID_CTRL = 0x11,
987 	FW_PARAMS_PARAM_DMAQ_EQ_SCHEDCLASS_ETH = 0x12,
988 };
989 
990 #define FW_PARAMS_MNEM(x)      ((x) << 24)
991 #define FW_PARAMS_PARAM_X(x)   ((x) << 16)
992 #define FW_PARAMS_PARAM_Y_SHIFT  8
993 #define FW_PARAMS_PARAM_Y_MASK   0xffU
994 #define FW_PARAMS_PARAM_Y(x)     ((x) << FW_PARAMS_PARAM_Y_SHIFT)
995 #define FW_PARAMS_PARAM_Y_GET(x) (((x) >> FW_PARAMS_PARAM_Y_SHIFT) &\
996 		FW_PARAMS_PARAM_Y_MASK)
997 #define FW_PARAMS_PARAM_Z_SHIFT  0
998 #define FW_PARAMS_PARAM_Z_MASK   0xffu
999 #define FW_PARAMS_PARAM_Z(x)     ((x) << FW_PARAMS_PARAM_Z_SHIFT)
1000 #define FW_PARAMS_PARAM_Z_GET(x) (((x) >> FW_PARAMS_PARAM_Z_SHIFT) &\
1001 		FW_PARAMS_PARAM_Z_MASK)
1002 #define FW_PARAMS_PARAM_XYZ(x) ((x) << 0)
1003 #define FW_PARAMS_PARAM_YZ(x)  ((x) << 0)
1004 
1005 struct fw_params_cmd {
1006 	__be32 op_to_vfn;
1007 	__be32 retval_len16;
1008 	struct fw_params_param {
1009 		__be32 mnem;
1010 		__be32 val;
1011 	} param[7];
1012 };
1013 
1014 #define FW_PARAMS_CMD_PFN(x) ((x) << 8)
1015 #define FW_PARAMS_CMD_VFN(x) ((x) << 0)
1016 
1017 struct fw_pfvf_cmd {
1018 	__be32 op_to_vfn;
1019 	__be32 retval_len16;
1020 	__be32 niqflint_niq;
1021 	__be32 type_to_neq;
1022 	__be32 tc_to_nexactf;
1023 	__be32 r_caps_to_nethctrl;
1024 	__be16 nricq;
1025 	__be16 nriqp;
1026 	__be32 r4;
1027 };
1028 
1029 #define FW_PFVF_CMD_PFN(x) ((x) << 8)
1030 #define FW_PFVF_CMD_VFN(x) ((x) << 0)
1031 
1032 #define FW_PFVF_CMD_NIQFLINT(x) ((x) << 20)
1033 #define FW_PFVF_CMD_NIQFLINT_GET(x) (((x) >> 20) & 0xfff)
1034 
1035 #define FW_PFVF_CMD_NIQ(x) ((x) << 0)
1036 #define FW_PFVF_CMD_NIQ_GET(x) (((x) >> 0) & 0xfffff)
1037 
1038 #define FW_PFVF_CMD_TYPE (1 << 31)
1039 #define FW_PFVF_CMD_TYPE_GET(x) (((x) >> 31) & 0x1)
1040 
1041 #define FW_PFVF_CMD_CMASK(x) ((x) << 24)
1042 #define FW_PFVF_CMD_CMASK_MASK 0xf
1043 #define FW_PFVF_CMD_CMASK_GET(x) (((x) >> 24) & FW_PFVF_CMD_CMASK_MASK)
1044 
1045 #define FW_PFVF_CMD_PMASK(x) ((x) << 20)
1046 #define FW_PFVF_CMD_PMASK_MASK 0xf
1047 #define FW_PFVF_CMD_PMASK_GET(x) (((x) >> 20) & FW_PFVF_CMD_PMASK_MASK)
1048 
1049 #define FW_PFVF_CMD_NEQ(x) ((x) << 0)
1050 #define FW_PFVF_CMD_NEQ_GET(x) (((x) >> 0) & 0xfffff)
1051 
1052 #define FW_PFVF_CMD_TC(x) ((x) << 24)
1053 #define FW_PFVF_CMD_TC_GET(x) (((x) >> 24) & 0xff)
1054 
1055 #define FW_PFVF_CMD_NVI(x) ((x) << 16)
1056 #define FW_PFVF_CMD_NVI_GET(x) (((x) >> 16) & 0xff)
1057 
1058 #define FW_PFVF_CMD_NEXACTF(x) ((x) << 0)
1059 #define FW_PFVF_CMD_NEXACTF_GET(x) (((x) >> 0) & 0xffff)
1060 
1061 #define FW_PFVF_CMD_R_CAPS(x) ((x) << 24)
1062 #define FW_PFVF_CMD_R_CAPS_GET(x) (((x) >> 24) & 0xff)
1063 
1064 #define FW_PFVF_CMD_WX_CAPS(x) ((x) << 16)
1065 #define FW_PFVF_CMD_WX_CAPS_GET(x) (((x) >> 16) & 0xff)
1066 
1067 #define FW_PFVF_CMD_NETHCTRL(x) ((x) << 0)
1068 #define FW_PFVF_CMD_NETHCTRL_GET(x) (((x) >> 0) & 0xffff)
1069 
1070 enum fw_iq_type {
1071 	FW_IQ_TYPE_FL_INT_CAP,
1072 	FW_IQ_TYPE_NO_FL_INT_CAP
1073 };
1074 
1075 struct fw_iq_cmd {
1076 	__be32 op_to_vfn;
1077 	__be32 alloc_to_len16;
1078 	__be16 physiqid;
1079 	__be16 iqid;
1080 	__be16 fl0id;
1081 	__be16 fl1id;
1082 	__be32 type_to_iqandstindex;
1083 	__be16 iqdroprss_to_iqesize;
1084 	__be16 iqsize;
1085 	__be64 iqaddr;
1086 	__be32 iqns_to_fl0congen;
1087 	__be16 fl0dcaen_to_fl0cidxfthresh;
1088 	__be16 fl0size;
1089 	__be64 fl0addr;
1090 	__be32 fl1cngchmap_to_fl1congen;
1091 	__be16 fl1dcaen_to_fl1cidxfthresh;
1092 	__be16 fl1size;
1093 	__be64 fl1addr;
1094 };
1095 
1096 #define FW_IQ_CMD_PFN(x) ((x) << 8)
1097 #define FW_IQ_CMD_VFN(x) ((x) << 0)
1098 
1099 #define FW_IQ_CMD_ALLOC (1U << 31)
1100 #define FW_IQ_CMD_FREE (1U << 30)
1101 #define FW_IQ_CMD_MODIFY (1U << 29)
1102 #define FW_IQ_CMD_IQSTART(x) ((x) << 28)
1103 #define FW_IQ_CMD_IQSTOP(x) ((x) << 27)
1104 
1105 #define FW_IQ_CMD_TYPE(x) ((x) << 29)
1106 #define FW_IQ_CMD_IQASYNCH(x) ((x) << 28)
1107 #define FW_IQ_CMD_VIID(x) ((x) << 16)
1108 #define FW_IQ_CMD_IQANDST(x) ((x) << 15)
1109 #define FW_IQ_CMD_IQANUS(x) ((x) << 14)
1110 #define FW_IQ_CMD_IQANUD(x) ((x) << 12)
1111 #define FW_IQ_CMD_IQANDSTINDEX(x) ((x) << 0)
1112 
1113 #define FW_IQ_CMD_IQDROPRSS (1U << 15)
1114 #define FW_IQ_CMD_IQGTSMODE (1U << 14)
1115 #define FW_IQ_CMD_IQPCIECH(x) ((x) << 12)
1116 #define FW_IQ_CMD_IQDCAEN(x) ((x) << 11)
1117 #define FW_IQ_CMD_IQDCACPU(x) ((x) << 6)
1118 #define FW_IQ_CMD_IQINTCNTTHRESH(x) ((x) << 4)
1119 #define FW_IQ_CMD_IQO (1U << 3)
1120 #define FW_IQ_CMD_IQCPRIO(x) ((x) << 2)
1121 #define FW_IQ_CMD_IQESIZE(x) ((x) << 0)
1122 
1123 #define FW_IQ_CMD_IQNS(x) ((x) << 31)
1124 #define FW_IQ_CMD_IQRO(x) ((x) << 30)
1125 #define FW_IQ_CMD_IQFLINTIQHSEN(x) ((x) << 28)
1126 #define FW_IQ_CMD_IQFLINTCONGEN(x) ((x) << 27)
1127 #define FW_IQ_CMD_IQFLINTISCSIC(x) ((x) << 26)
1128 #define FW_IQ_CMD_FL0CNGCHMAP(x) ((x) << 20)
1129 #define FW_IQ_CMD_FL0CACHELOCK(x) ((x) << 15)
1130 #define FW_IQ_CMD_FL0DBP(x) ((x) << 14)
1131 #define FW_IQ_CMD_FL0DATANS(x) ((x) << 13)
1132 #define FW_IQ_CMD_FL0DATARO(x) ((x) << 12)
1133 #define FW_IQ_CMD_FL0CONGCIF(x) ((x) << 11)
1134 #define FW_IQ_CMD_FL0ONCHIP(x) ((x) << 10)
1135 #define FW_IQ_CMD_FL0STATUSPGNS(x) ((x) << 9)
1136 #define FW_IQ_CMD_FL0STATUSPGRO(x) ((x) << 8)
1137 #define FW_IQ_CMD_FL0FETCHNS(x) ((x) << 7)
1138 #define FW_IQ_CMD_FL0FETCHRO(x) ((x) << 6)
1139 #define FW_IQ_CMD_FL0HOSTFCMODE(x) ((x) << 4)
1140 #define FW_IQ_CMD_FL0CPRIO(x) ((x) << 3)
1141 #define FW_IQ_CMD_FL0PADEN(x) ((x) << 2)
1142 #define FW_IQ_CMD_FL0PACKEN(x) ((x) << 1)
1143 #define FW_IQ_CMD_FL0CONGEN (1U << 0)
1144 
1145 #define FW_IQ_CMD_FL0DCAEN(x) ((x) << 15)
1146 #define FW_IQ_CMD_FL0DCACPU(x) ((x) << 10)
1147 #define FW_IQ_CMD_FL0FBMIN(x) ((x) << 7)
1148 #define FW_IQ_CMD_FL0FBMAX(x) ((x) << 4)
1149 #define FW_IQ_CMD_FL0CIDXFTHRESHO (1U << 3)
1150 #define FW_IQ_CMD_FL0CIDXFTHRESH(x) ((x) << 0)
1151 
1152 #define FW_IQ_CMD_FL1CNGCHMAP(x) ((x) << 20)
1153 #define FW_IQ_CMD_FL1CACHELOCK(x) ((x) << 15)
1154 #define FW_IQ_CMD_FL1DBP(x) ((x) << 14)
1155 #define FW_IQ_CMD_FL1DATANS(x) ((x) << 13)
1156 #define FW_IQ_CMD_FL1DATARO(x) ((x) << 12)
1157 #define FW_IQ_CMD_FL1CONGCIF(x) ((x) << 11)
1158 #define FW_IQ_CMD_FL1ONCHIP(x) ((x) << 10)
1159 #define FW_IQ_CMD_FL1STATUSPGNS(x) ((x) << 9)
1160 #define FW_IQ_CMD_FL1STATUSPGRO(x) ((x) << 8)
1161 #define FW_IQ_CMD_FL1FETCHNS(x) ((x) << 7)
1162 #define FW_IQ_CMD_FL1FETCHRO(x) ((x) << 6)
1163 #define FW_IQ_CMD_FL1HOSTFCMODE(x) ((x) << 4)
1164 #define FW_IQ_CMD_FL1CPRIO(x) ((x) << 3)
1165 #define FW_IQ_CMD_FL1PADEN (1U << 2)
1166 #define FW_IQ_CMD_FL1PACKEN (1U << 1)
1167 #define FW_IQ_CMD_FL1CONGEN (1U << 0)
1168 
1169 #define FW_IQ_CMD_FL1DCAEN(x) ((x) << 15)
1170 #define FW_IQ_CMD_FL1DCACPU(x) ((x) << 10)
1171 #define FW_IQ_CMD_FL1FBMIN(x) ((x) << 7)
1172 #define FW_IQ_CMD_FL1FBMAX(x) ((x) << 4)
1173 #define FW_IQ_CMD_FL1CIDXFTHRESHO (1U << 3)
1174 #define FW_IQ_CMD_FL1CIDXFTHRESH(x) ((x) << 0)
1175 
1176 struct fw_eq_eth_cmd {
1177 	__be32 op_to_vfn;
1178 	__be32 alloc_to_len16;
1179 	__be32 eqid_pkd;
1180 	__be32 physeqid_pkd;
1181 	__be32 fetchszm_to_iqid;
1182 	__be32 dcaen_to_eqsize;
1183 	__be64 eqaddr;
1184 	__be32 viid_pkd;
1185 	__be32 r8_lo;
1186 	__be64 r9;
1187 };
1188 
1189 #define FW_EQ_ETH_CMD_PFN(x) ((x) << 8)
1190 #define FW_EQ_ETH_CMD_VFN(x) ((x) << 0)
1191 #define FW_EQ_ETH_CMD_ALLOC (1U << 31)
1192 #define FW_EQ_ETH_CMD_FREE (1U << 30)
1193 #define FW_EQ_ETH_CMD_MODIFY (1U << 29)
1194 #define FW_EQ_ETH_CMD_EQSTART (1U << 28)
1195 #define FW_EQ_ETH_CMD_EQSTOP (1U << 27)
1196 
1197 #define FW_EQ_ETH_CMD_EQID(x) ((x) << 0)
1198 #define FW_EQ_ETH_CMD_EQID_GET(x) (((x) >> 0) & 0xfffff)
1199 #define FW_EQ_ETH_CMD_PHYSEQID(x) ((x) << 0)
1200 #define FW_EQ_ETH_CMD_PHYSEQID_GET(x) (((x) >> 0) & 0xfffff)
1201 
1202 #define FW_EQ_ETH_CMD_FETCHSZM(x) ((x) << 26)
1203 #define FW_EQ_ETH_CMD_STATUSPGNS(x) ((x) << 25)
1204 #define FW_EQ_ETH_CMD_STATUSPGRO(x) ((x) << 24)
1205 #define FW_EQ_ETH_CMD_FETCHNS(x) ((x) << 23)
1206 #define FW_EQ_ETH_CMD_FETCHRO(x) ((x) << 22)
1207 #define FW_EQ_ETH_CMD_HOSTFCMODE(x) ((x) << 20)
1208 #define FW_EQ_ETH_CMD_CPRIO(x) ((x) << 19)
1209 #define FW_EQ_ETH_CMD_ONCHIP(x) ((x) << 18)
1210 #define FW_EQ_ETH_CMD_PCIECHN(x) ((x) << 16)
1211 #define FW_EQ_ETH_CMD_IQID(x) ((x) << 0)
1212 
1213 #define FW_EQ_ETH_CMD_DCAEN(x) ((x) << 31)
1214 #define FW_EQ_ETH_CMD_DCACPU(x) ((x) << 26)
1215 #define FW_EQ_ETH_CMD_FBMIN(x) ((x) << 23)
1216 #define FW_EQ_ETH_CMD_FBMAX(x) ((x) << 20)
1217 #define FW_EQ_ETH_CMD_CIDXFTHRESHO(x) ((x) << 19)
1218 #define FW_EQ_ETH_CMD_CIDXFTHRESH(x) ((x) << 16)
1219 #define FW_EQ_ETH_CMD_EQSIZE(x) ((x) << 0)
1220 
1221 #define FW_EQ_ETH_CMD_VIID(x) ((x) << 16)
1222 
1223 struct fw_eq_ctrl_cmd {
1224 	__be32 op_to_vfn;
1225 	__be32 alloc_to_len16;
1226 	__be32 cmpliqid_eqid;
1227 	__be32 physeqid_pkd;
1228 	__be32 fetchszm_to_iqid;
1229 	__be32 dcaen_to_eqsize;
1230 	__be64 eqaddr;
1231 };
1232 
1233 #define FW_EQ_CTRL_CMD_PFN(x) ((x) << 8)
1234 #define FW_EQ_CTRL_CMD_VFN(x) ((x) << 0)
1235 
1236 #define FW_EQ_CTRL_CMD_ALLOC (1U << 31)
1237 #define FW_EQ_CTRL_CMD_FREE (1U << 30)
1238 #define FW_EQ_CTRL_CMD_MODIFY (1U << 29)
1239 #define FW_EQ_CTRL_CMD_EQSTART (1U << 28)
1240 #define FW_EQ_CTRL_CMD_EQSTOP (1U << 27)
1241 
1242 #define FW_EQ_CTRL_CMD_CMPLIQID(x) ((x) << 20)
1243 #define FW_EQ_CTRL_CMD_EQID(x) ((x) << 0)
1244 #define FW_EQ_CTRL_CMD_EQID_GET(x) (((x) >> 0) & 0xfffff)
1245 #define FW_EQ_CTRL_CMD_PHYSEQID_GET(x) (((x) >> 0) & 0xfffff)
1246 
1247 #define FW_EQ_CTRL_CMD_FETCHSZM (1U << 26)
1248 #define FW_EQ_CTRL_CMD_STATUSPGNS (1U << 25)
1249 #define FW_EQ_CTRL_CMD_STATUSPGRO (1U << 24)
1250 #define FW_EQ_CTRL_CMD_FETCHNS (1U << 23)
1251 #define FW_EQ_CTRL_CMD_FETCHRO (1U << 22)
1252 #define FW_EQ_CTRL_CMD_HOSTFCMODE(x) ((x) << 20)
1253 #define FW_EQ_CTRL_CMD_CPRIO(x) ((x) << 19)
1254 #define FW_EQ_CTRL_CMD_ONCHIP(x) ((x) << 18)
1255 #define FW_EQ_CTRL_CMD_PCIECHN(x) ((x) << 16)
1256 #define FW_EQ_CTRL_CMD_IQID(x) ((x) << 0)
1257 
1258 #define FW_EQ_CTRL_CMD_DCAEN(x) ((x) << 31)
1259 #define FW_EQ_CTRL_CMD_DCACPU(x) ((x) << 26)
1260 #define FW_EQ_CTRL_CMD_FBMIN(x) ((x) << 23)
1261 #define FW_EQ_CTRL_CMD_FBMAX(x) ((x) << 20)
1262 #define FW_EQ_CTRL_CMD_CIDXFTHRESHO(x) ((x) << 19)
1263 #define FW_EQ_CTRL_CMD_CIDXFTHRESH(x) ((x) << 16)
1264 #define FW_EQ_CTRL_CMD_EQSIZE(x) ((x) << 0)
1265 
1266 struct fw_eq_ofld_cmd {
1267 	__be32 op_to_vfn;
1268 	__be32 alloc_to_len16;
1269 	__be32 eqid_pkd;
1270 	__be32 physeqid_pkd;
1271 	__be32 fetchszm_to_iqid;
1272 	__be32 dcaen_to_eqsize;
1273 	__be64 eqaddr;
1274 };
1275 
1276 #define FW_EQ_OFLD_CMD_PFN(x) ((x) << 8)
1277 #define FW_EQ_OFLD_CMD_VFN(x) ((x) << 0)
1278 
1279 #define FW_EQ_OFLD_CMD_ALLOC (1U << 31)
1280 #define FW_EQ_OFLD_CMD_FREE (1U << 30)
1281 #define FW_EQ_OFLD_CMD_MODIFY (1U << 29)
1282 #define FW_EQ_OFLD_CMD_EQSTART (1U << 28)
1283 #define FW_EQ_OFLD_CMD_EQSTOP (1U << 27)
1284 
1285 #define FW_EQ_OFLD_CMD_EQID(x) ((x) << 0)
1286 #define FW_EQ_OFLD_CMD_EQID_GET(x) (((x) >> 0) & 0xfffff)
1287 #define FW_EQ_OFLD_CMD_PHYSEQID_GET(x) (((x) >> 0) & 0xfffff)
1288 
1289 #define FW_EQ_OFLD_CMD_FETCHSZM(x) ((x) << 26)
1290 #define FW_EQ_OFLD_CMD_STATUSPGNS(x) ((x) << 25)
1291 #define FW_EQ_OFLD_CMD_STATUSPGRO(x) ((x) << 24)
1292 #define FW_EQ_OFLD_CMD_FETCHNS(x) ((x) << 23)
1293 #define FW_EQ_OFLD_CMD_FETCHRO(x) ((x) << 22)
1294 #define FW_EQ_OFLD_CMD_HOSTFCMODE(x) ((x) << 20)
1295 #define FW_EQ_OFLD_CMD_CPRIO(x) ((x) << 19)
1296 #define FW_EQ_OFLD_CMD_ONCHIP(x) ((x) << 18)
1297 #define FW_EQ_OFLD_CMD_PCIECHN(x) ((x) << 16)
1298 #define FW_EQ_OFLD_CMD_IQID(x) ((x) << 0)
1299 
1300 #define FW_EQ_OFLD_CMD_DCAEN(x) ((x) << 31)
1301 #define FW_EQ_OFLD_CMD_DCACPU(x) ((x) << 26)
1302 #define FW_EQ_OFLD_CMD_FBMIN(x) ((x) << 23)
1303 #define FW_EQ_OFLD_CMD_FBMAX(x) ((x) << 20)
1304 #define FW_EQ_OFLD_CMD_CIDXFTHRESHO(x) ((x) << 19)
1305 #define FW_EQ_OFLD_CMD_CIDXFTHRESH(x) ((x) << 16)
1306 #define FW_EQ_OFLD_CMD_EQSIZE(x) ((x) << 0)
1307 
1308 /*
1309  * Macros for VIID parsing:
1310  * VIID - [10:8] PFN, [7] VI Valid, [6:0] VI number
1311  */
1312 #define FW_VIID_PFN_GET(x) (((x) >> 8) & 0x7)
1313 #define FW_VIID_VIVLD_GET(x) (((x) >> 7) & 0x1)
1314 #define FW_VIID_VIN_GET(x) (((x) >> 0) & 0x7F)
1315 
1316 struct fw_vi_cmd {
1317 	__be32 op_to_vfn;
1318 	__be32 alloc_to_len16;
1319 	__be16 type_viid;
1320 	u8 mac[6];
1321 	u8 portid_pkd;
1322 	u8 nmac;
1323 	u8 nmac0[6];
1324 	__be16 rsssize_pkd;
1325 	u8 nmac1[6];
1326 	__be16 idsiiq_pkd;
1327 	u8 nmac2[6];
1328 	__be16 idseiq_pkd;
1329 	u8 nmac3[6];
1330 	__be64 r9;
1331 	__be64 r10;
1332 };
1333 
1334 #define FW_VI_CMD_PFN(x) ((x) << 8)
1335 #define FW_VI_CMD_VFN(x) ((x) << 0)
1336 #define FW_VI_CMD_ALLOC (1U << 31)
1337 #define FW_VI_CMD_FREE (1U << 30)
1338 #define FW_VI_CMD_VIID(x) ((x) << 0)
1339 #define FW_VI_CMD_VIID_GET(x) ((x) & 0xfff)
1340 #define FW_VI_CMD_PORTID(x) ((x) << 4)
1341 #define FW_VI_CMD_PORTID_GET(x) (((x) >> 4) & 0xf)
1342 #define FW_VI_CMD_RSSSIZE_GET(x) (((x) >> 0) & 0x7ff)
1343 
1344 /* Special VI_MAC command index ids */
1345 #define FW_VI_MAC_ADD_MAC		0x3FF
1346 #define FW_VI_MAC_ADD_PERSIST_MAC	0x3FE
1347 #define FW_VI_MAC_MAC_BASED_FREE	0x3FD
1348 #define FW_CLS_TCAM_NUM_ENTRIES		336
1349 
1350 enum fw_vi_mac_smac {
1351 	FW_VI_MAC_MPS_TCAM_ENTRY,
1352 	FW_VI_MAC_MPS_TCAM_ONLY,
1353 	FW_VI_MAC_SMT_ONLY,
1354 	FW_VI_MAC_SMT_AND_MPSTCAM
1355 };
1356 
1357 enum fw_vi_mac_result {
1358 	FW_VI_MAC_R_SUCCESS,
1359 	FW_VI_MAC_R_F_NONEXISTENT_NOMEM,
1360 	FW_VI_MAC_R_SMAC_FAIL,
1361 	FW_VI_MAC_R_F_ACL_CHECK
1362 };
1363 
1364 struct fw_vi_mac_cmd {
1365 	__be32 op_to_viid;
1366 	__be32 freemacs_to_len16;
1367 	union fw_vi_mac {
1368 		struct fw_vi_mac_exact {
1369 			__be16 valid_to_idx;
1370 			u8 macaddr[6];
1371 		} exact[7];
1372 		struct fw_vi_mac_hash {
1373 			__be64 hashvec;
1374 		} hash;
1375 	} u;
1376 };
1377 
1378 #define FW_VI_MAC_CMD_VIID(x) ((x) << 0)
1379 #define FW_VI_MAC_CMD_FREEMACS(x) ((x) << 31)
1380 #define FW_VI_MAC_CMD_HASHVECEN (1U << 23)
1381 #define FW_VI_MAC_CMD_HASHUNIEN(x) ((x) << 22)
1382 #define FW_VI_MAC_CMD_VALID (1U << 15)
1383 #define FW_VI_MAC_CMD_PRIO(x) ((x) << 12)
1384 #define FW_VI_MAC_CMD_SMAC_RESULT(x) ((x) << 10)
1385 #define FW_VI_MAC_CMD_SMAC_RESULT_GET(x) (((x) >> 10) & 0x3)
1386 #define FW_VI_MAC_CMD_IDX(x) ((x) << 0)
1387 #define FW_VI_MAC_CMD_IDX_GET(x) (((x) >> 0) & 0x3ff)
1388 
1389 #define FW_RXMODE_MTU_NO_CHG	65535
1390 
1391 struct fw_vi_rxmode_cmd {
1392 	__be32 op_to_viid;
1393 	__be32 retval_len16;
1394 	__be32 mtu_to_vlanexen;
1395 	__be32 r4_lo;
1396 };
1397 
1398 #define FW_VI_RXMODE_CMD_VIID(x) ((x) << 0)
1399 #define FW_VI_RXMODE_CMD_MTU_MASK 0xffff
1400 #define FW_VI_RXMODE_CMD_MTU(x) ((x) << 16)
1401 #define FW_VI_RXMODE_CMD_PROMISCEN_MASK 0x3
1402 #define FW_VI_RXMODE_CMD_PROMISCEN(x) ((x) << 14)
1403 #define FW_VI_RXMODE_CMD_ALLMULTIEN_MASK 0x3
1404 #define FW_VI_RXMODE_CMD_ALLMULTIEN(x) ((x) << 12)
1405 #define FW_VI_RXMODE_CMD_BROADCASTEN_MASK 0x3
1406 #define FW_VI_RXMODE_CMD_BROADCASTEN(x) ((x) << 10)
1407 #define FW_VI_RXMODE_CMD_VLANEXEN_MASK 0x3
1408 #define FW_VI_RXMODE_CMD_VLANEXEN(x) ((x) << 8)
1409 
1410 struct fw_vi_enable_cmd {
1411 	__be32 op_to_viid;
1412 	__be32 ien_to_len16;
1413 	__be16 blinkdur;
1414 	__be16 r3;
1415 	__be32 r4;
1416 };
1417 
1418 #define FW_VI_ENABLE_CMD_VIID(x) ((x) << 0)
1419 #define FW_VI_ENABLE_CMD_IEN(x) ((x) << 31)
1420 #define FW_VI_ENABLE_CMD_EEN(x) ((x) << 30)
1421 #define FW_VI_ENABLE_CMD_LED (1U << 29)
1422 
1423 /* VI VF stats offset definitions */
1424 #define VI_VF_NUM_STATS	16
1425 enum fw_vi_stats_vf_index {
1426 	FW_VI_VF_STAT_TX_BCAST_BYTES_IX,
1427 	FW_VI_VF_STAT_TX_BCAST_FRAMES_IX,
1428 	FW_VI_VF_STAT_TX_MCAST_BYTES_IX,
1429 	FW_VI_VF_STAT_TX_MCAST_FRAMES_IX,
1430 	FW_VI_VF_STAT_TX_UCAST_BYTES_IX,
1431 	FW_VI_VF_STAT_TX_UCAST_FRAMES_IX,
1432 	FW_VI_VF_STAT_TX_DROP_FRAMES_IX,
1433 	FW_VI_VF_STAT_TX_OFLD_BYTES_IX,
1434 	FW_VI_VF_STAT_TX_OFLD_FRAMES_IX,
1435 	FW_VI_VF_STAT_RX_BCAST_BYTES_IX,
1436 	FW_VI_VF_STAT_RX_BCAST_FRAMES_IX,
1437 	FW_VI_VF_STAT_RX_MCAST_BYTES_IX,
1438 	FW_VI_VF_STAT_RX_MCAST_FRAMES_IX,
1439 	FW_VI_VF_STAT_RX_UCAST_BYTES_IX,
1440 	FW_VI_VF_STAT_RX_UCAST_FRAMES_IX,
1441 	FW_VI_VF_STAT_RX_ERR_FRAMES_IX
1442 };
1443 
1444 /* VI PF stats offset definitions */
1445 #define VI_PF_NUM_STATS	17
1446 enum fw_vi_stats_pf_index {
1447 	FW_VI_PF_STAT_TX_BCAST_BYTES_IX,
1448 	FW_VI_PF_STAT_TX_BCAST_FRAMES_IX,
1449 	FW_VI_PF_STAT_TX_MCAST_BYTES_IX,
1450 	FW_VI_PF_STAT_TX_MCAST_FRAMES_IX,
1451 	FW_VI_PF_STAT_TX_UCAST_BYTES_IX,
1452 	FW_VI_PF_STAT_TX_UCAST_FRAMES_IX,
1453 	FW_VI_PF_STAT_TX_OFLD_BYTES_IX,
1454 	FW_VI_PF_STAT_TX_OFLD_FRAMES_IX,
1455 	FW_VI_PF_STAT_RX_BYTES_IX,
1456 	FW_VI_PF_STAT_RX_FRAMES_IX,
1457 	FW_VI_PF_STAT_RX_BCAST_BYTES_IX,
1458 	FW_VI_PF_STAT_RX_BCAST_FRAMES_IX,
1459 	FW_VI_PF_STAT_RX_MCAST_BYTES_IX,
1460 	FW_VI_PF_STAT_RX_MCAST_FRAMES_IX,
1461 	FW_VI_PF_STAT_RX_UCAST_BYTES_IX,
1462 	FW_VI_PF_STAT_RX_UCAST_FRAMES_IX,
1463 	FW_VI_PF_STAT_RX_ERR_FRAMES_IX
1464 };
1465 
1466 struct fw_vi_stats_cmd {
1467 	__be32 op_to_viid;
1468 	__be32 retval_len16;
1469 	union fw_vi_stats {
1470 		struct fw_vi_stats_ctl {
1471 			__be16 nstats_ix;
1472 			__be16 r6;
1473 			__be32 r7;
1474 			__be64 stat0;
1475 			__be64 stat1;
1476 			__be64 stat2;
1477 			__be64 stat3;
1478 			__be64 stat4;
1479 			__be64 stat5;
1480 		} ctl;
1481 		struct fw_vi_stats_pf {
1482 			__be64 tx_bcast_bytes;
1483 			__be64 tx_bcast_frames;
1484 			__be64 tx_mcast_bytes;
1485 			__be64 tx_mcast_frames;
1486 			__be64 tx_ucast_bytes;
1487 			__be64 tx_ucast_frames;
1488 			__be64 tx_offload_bytes;
1489 			__be64 tx_offload_frames;
1490 			__be64 rx_pf_bytes;
1491 			__be64 rx_pf_frames;
1492 			__be64 rx_bcast_bytes;
1493 			__be64 rx_bcast_frames;
1494 			__be64 rx_mcast_bytes;
1495 			__be64 rx_mcast_frames;
1496 			__be64 rx_ucast_bytes;
1497 			__be64 rx_ucast_frames;
1498 			__be64 rx_err_frames;
1499 		} pf;
1500 		struct fw_vi_stats_vf {
1501 			__be64 tx_bcast_bytes;
1502 			__be64 tx_bcast_frames;
1503 			__be64 tx_mcast_bytes;
1504 			__be64 tx_mcast_frames;
1505 			__be64 tx_ucast_bytes;
1506 			__be64 tx_ucast_frames;
1507 			__be64 tx_drop_frames;
1508 			__be64 tx_offload_bytes;
1509 			__be64 tx_offload_frames;
1510 			__be64 rx_bcast_bytes;
1511 			__be64 rx_bcast_frames;
1512 			__be64 rx_mcast_bytes;
1513 			__be64 rx_mcast_frames;
1514 			__be64 rx_ucast_bytes;
1515 			__be64 rx_ucast_frames;
1516 			__be64 rx_err_frames;
1517 		} vf;
1518 	} u;
1519 };
1520 
1521 #define FW_VI_STATS_CMD_VIID(x) ((x) << 0)
1522 #define FW_VI_STATS_CMD_NSTATS(x) ((x) << 12)
1523 #define FW_VI_STATS_CMD_IX(x) ((x) << 0)
1524 
1525 struct fw_acl_mac_cmd {
1526 	__be32 op_to_vfn;
1527 	__be32 en_to_len16;
1528 	u8 nmac;
1529 	u8 r3[7];
1530 	__be16 r4;
1531 	u8 macaddr0[6];
1532 	__be16 r5;
1533 	u8 macaddr1[6];
1534 	__be16 r6;
1535 	u8 macaddr2[6];
1536 	__be16 r7;
1537 	u8 macaddr3[6];
1538 };
1539 
1540 #define FW_ACL_MAC_CMD_PFN(x) ((x) << 8)
1541 #define FW_ACL_MAC_CMD_VFN(x) ((x) << 0)
1542 #define FW_ACL_MAC_CMD_EN(x) ((x) << 31)
1543 
1544 struct fw_acl_vlan_cmd {
1545 	__be32 op_to_vfn;
1546 	__be32 en_to_len16;
1547 	u8 nvlan;
1548 	u8 dropnovlan_fm;
1549 	u8 r3_lo[6];
1550 	__be16 vlanid[16];
1551 };
1552 
1553 #define FW_ACL_VLAN_CMD_PFN(x) ((x) << 8)
1554 #define FW_ACL_VLAN_CMD_VFN(x) ((x) << 0)
1555 #define FW_ACL_VLAN_CMD_EN(x) ((x) << 31)
1556 #define FW_ACL_VLAN_CMD_DROPNOVLAN(x) ((x) << 7)
1557 #define FW_ACL_VLAN_CMD_FM(x) ((x) << 6)
1558 
1559 enum fw_port_cap {
1560 	FW_PORT_CAP_SPEED_100M		= 0x0001,
1561 	FW_PORT_CAP_SPEED_1G		= 0x0002,
1562 	FW_PORT_CAP_SPEED_2_5G		= 0x0004,
1563 	FW_PORT_CAP_SPEED_10G		= 0x0008,
1564 	FW_PORT_CAP_SPEED_40G		= 0x0010,
1565 	FW_PORT_CAP_SPEED_100G		= 0x0020,
1566 	FW_PORT_CAP_FC_RX		= 0x0040,
1567 	FW_PORT_CAP_FC_TX		= 0x0080,
1568 	FW_PORT_CAP_ANEG		= 0x0100,
1569 	FW_PORT_CAP_MDI_0		= 0x0200,
1570 	FW_PORT_CAP_MDI_1		= 0x0400,
1571 	FW_PORT_CAP_BEAN		= 0x0800,
1572 	FW_PORT_CAP_PMA_LPBK		= 0x1000,
1573 	FW_PORT_CAP_PCS_LPBK		= 0x2000,
1574 	FW_PORT_CAP_PHYXS_LPBK		= 0x4000,
1575 	FW_PORT_CAP_FAR_END_LPBK	= 0x8000,
1576 };
1577 
1578 enum fw_port_mdi {
1579 	FW_PORT_MDI_UNCHANGED,
1580 	FW_PORT_MDI_AUTO,
1581 	FW_PORT_MDI_F_STRAIGHT,
1582 	FW_PORT_MDI_F_CROSSOVER
1583 };
1584 
1585 #define FW_PORT_MDI(x) ((x) << 9)
1586 
1587 enum fw_port_action {
1588 	FW_PORT_ACTION_L1_CFG		= 0x0001,
1589 	FW_PORT_ACTION_L2_CFG		= 0x0002,
1590 	FW_PORT_ACTION_GET_PORT_INFO	= 0x0003,
1591 	FW_PORT_ACTION_L2_PPP_CFG	= 0x0004,
1592 	FW_PORT_ACTION_L2_DCB_CFG	= 0x0005,
1593 	FW_PORT_ACTION_LOW_PWR_TO_NORMAL = 0x0010,
1594 	FW_PORT_ACTION_L1_LOW_PWR_EN	= 0x0011,
1595 	FW_PORT_ACTION_L2_WOL_MODE_EN	= 0x0012,
1596 	FW_PORT_ACTION_LPBK_TO_NORMAL	= 0x0020,
1597 	FW_PORT_ACTION_L1_LPBK		= 0x0021,
1598 	FW_PORT_ACTION_L1_PMA_LPBK	= 0x0022,
1599 	FW_PORT_ACTION_L1_PCS_LPBK	= 0x0023,
1600 	FW_PORT_ACTION_L1_PHYXS_CSIDE_LPBK = 0x0024,
1601 	FW_PORT_ACTION_L1_PHYXS_ESIDE_LPBK = 0x0025,
1602 	FW_PORT_ACTION_PHY_RESET	= 0x0040,
1603 	FW_PORT_ACTION_PMA_RESET	= 0x0041,
1604 	FW_PORT_ACTION_PCS_RESET	= 0x0042,
1605 	FW_PORT_ACTION_PHYXS_RESET	= 0x0043,
1606 	FW_PORT_ACTION_DTEXS_REEST	= 0x0044,
1607 	FW_PORT_ACTION_AN_RESET		= 0x0045
1608 };
1609 
1610 enum fw_port_l2cfg_ctlbf {
1611 	FW_PORT_L2_CTLBF_OVLAN0	= 0x01,
1612 	FW_PORT_L2_CTLBF_OVLAN1	= 0x02,
1613 	FW_PORT_L2_CTLBF_OVLAN2	= 0x04,
1614 	FW_PORT_L2_CTLBF_OVLAN3	= 0x08,
1615 	FW_PORT_L2_CTLBF_IVLAN	= 0x10,
1616 	FW_PORT_L2_CTLBF_TXIPG	= 0x20
1617 };
1618 
1619 enum fw_port_dcb_cfg {
1620 	FW_PORT_DCB_CFG_PG	= 0x01,
1621 	FW_PORT_DCB_CFG_PFC	= 0x02,
1622 	FW_PORT_DCB_CFG_APPL	= 0x04
1623 };
1624 
1625 enum fw_port_dcb_cfg_rc {
1626 	FW_PORT_DCB_CFG_SUCCESS	= 0x0,
1627 	FW_PORT_DCB_CFG_ERROR	= 0x1
1628 };
1629 
1630 enum fw_port_dcb_type {
1631 	FW_PORT_DCB_TYPE_PGID		= 0x00,
1632 	FW_PORT_DCB_TYPE_PGRATE		= 0x01,
1633 	FW_PORT_DCB_TYPE_PRIORATE	= 0x02,
1634 	FW_PORT_DCB_TYPE_PFC		= 0x03,
1635 	FW_PORT_DCB_TYPE_APP_ID		= 0x04,
1636 };
1637 
1638 struct fw_port_cmd {
1639 	__be32 op_to_portid;
1640 	__be32 action_to_len16;
1641 	union fw_port {
1642 		struct fw_port_l1cfg {
1643 			__be32 rcap;
1644 			__be32 r;
1645 		} l1cfg;
1646 		struct fw_port_l2cfg {
1647 			__be16 ctlbf_to_ivlan0;
1648 			__be16 ivlantype;
1649 			__be32 txipg_pkd;
1650 			__be16 ovlan0mask;
1651 			__be16 ovlan0type;
1652 			__be16 ovlan1mask;
1653 			__be16 ovlan1type;
1654 			__be16 ovlan2mask;
1655 			__be16 ovlan2type;
1656 			__be16 ovlan3mask;
1657 			__be16 ovlan3type;
1658 		} l2cfg;
1659 		struct fw_port_info {
1660 			__be32 lstatus_to_modtype;
1661 			__be16 pcap;
1662 			__be16 acap;
1663 			__be16 mtu;
1664 			__u8   cbllen;
1665 			__u8   r9;
1666 			__be32 r10;
1667 			__be64 r11;
1668 		} info;
1669 		struct fw_port_ppp {
1670 			__be32 pppen_to_ncsich;
1671 			__be32 r11;
1672 		} ppp;
1673 		struct fw_port_dcb {
1674 			__be16 cfg;
1675 			u8 up_map;
1676 			u8 sf_cfgrc;
1677 			__be16 prot_ix;
1678 			u8 pe7_to_pe0;
1679 			u8 numTCPFCs;
1680 			__be32 pgid0_to_pgid7;
1681 			__be32 numTCs_oui;
1682 			u8 pgpc[8];
1683 		} dcb;
1684 	} u;
1685 };
1686 
1687 #define FW_PORT_CMD_READ (1U << 22)
1688 
1689 #define FW_PORT_CMD_PORTID(x) ((x) << 0)
1690 #define FW_PORT_CMD_PORTID_GET(x) (((x) >> 0) & 0xf)
1691 
1692 #define FW_PORT_CMD_ACTION(x) ((x) << 16)
1693 #define FW_PORT_CMD_ACTION_GET(x) (((x) >> 16) & 0xffff)
1694 
1695 #define FW_PORT_CMD_CTLBF(x) ((x) << 10)
1696 #define FW_PORT_CMD_OVLAN3(x) ((x) << 7)
1697 #define FW_PORT_CMD_OVLAN2(x) ((x) << 6)
1698 #define FW_PORT_CMD_OVLAN1(x) ((x) << 5)
1699 #define FW_PORT_CMD_OVLAN0(x) ((x) << 4)
1700 #define FW_PORT_CMD_IVLAN0(x) ((x) << 3)
1701 
1702 #define FW_PORT_CMD_TXIPG(x) ((x) << 19)
1703 
1704 #define FW_PORT_CMD_LSTATUS (1U << 31)
1705 #define FW_PORT_CMD_LSTATUS_GET(x) (((x) >> 31) & 0x1)
1706 #define FW_PORT_CMD_LSPEED(x) ((x) << 24)
1707 #define FW_PORT_CMD_LSPEED_GET(x) (((x) >> 24) & 0x3f)
1708 #define FW_PORT_CMD_TXPAUSE (1U << 23)
1709 #define FW_PORT_CMD_RXPAUSE (1U << 22)
1710 #define FW_PORT_CMD_MDIOCAP (1U << 21)
1711 #define FW_PORT_CMD_MDIOADDR_GET(x) (((x) >> 16) & 0x1f)
1712 #define FW_PORT_CMD_LPTXPAUSE (1U << 15)
1713 #define FW_PORT_CMD_LPRXPAUSE (1U << 14)
1714 #define FW_PORT_CMD_PTYPE_MASK 0x1f
1715 #define FW_PORT_CMD_PTYPE_GET(x) (((x) >> 8) & FW_PORT_CMD_PTYPE_MASK)
1716 #define FW_PORT_CMD_MODTYPE_MASK 0x1f
1717 #define FW_PORT_CMD_MODTYPE_GET(x) (((x) >> 0) & FW_PORT_CMD_MODTYPE_MASK)
1718 
1719 #define FW_PORT_CMD_PPPEN(x) ((x) << 31)
1720 #define FW_PORT_CMD_TPSRC(x) ((x) << 28)
1721 #define FW_PORT_CMD_NCSISRC(x) ((x) << 24)
1722 
1723 #define FW_PORT_CMD_CH0(x) ((x) << 20)
1724 #define FW_PORT_CMD_CH1(x) ((x) << 16)
1725 #define FW_PORT_CMD_CH2(x) ((x) << 12)
1726 #define FW_PORT_CMD_CH3(x) ((x) << 8)
1727 #define FW_PORT_CMD_NCSICH(x) ((x) << 4)
1728 
1729 enum fw_port_type {
1730 	FW_PORT_TYPE_FIBER_XFI,
1731 	FW_PORT_TYPE_FIBER_XAUI,
1732 	FW_PORT_TYPE_BT_SGMII,
1733 	FW_PORT_TYPE_BT_XFI,
1734 	FW_PORT_TYPE_BT_XAUI,
1735 	FW_PORT_TYPE_KX4,
1736 	FW_PORT_TYPE_CX4,
1737 	FW_PORT_TYPE_KX,
1738 	FW_PORT_TYPE_KR,
1739 	FW_PORT_TYPE_SFP,
1740 	FW_PORT_TYPE_BP_AP,
1741 	FW_PORT_TYPE_BP4_AP,
1742 
1743 	FW_PORT_TYPE_NONE = FW_PORT_CMD_PTYPE_MASK
1744 };
1745 
1746 enum fw_port_module_type {
1747 	FW_PORT_MOD_TYPE_NA,
1748 	FW_PORT_MOD_TYPE_LR,
1749 	FW_PORT_MOD_TYPE_SR,
1750 	FW_PORT_MOD_TYPE_ER,
1751 	FW_PORT_MOD_TYPE_TWINAX_PASSIVE,
1752 	FW_PORT_MOD_TYPE_TWINAX_ACTIVE,
1753 	FW_PORT_MOD_TYPE_LRM,
1754 	FW_PORT_MOD_TYPE_ERROR		= FW_PORT_CMD_MODTYPE_MASK - 3,
1755 	FW_PORT_MOD_TYPE_UNKNOWN	= FW_PORT_CMD_MODTYPE_MASK - 2,
1756 	FW_PORT_MOD_TYPE_NOTSUPPORTED	= FW_PORT_CMD_MODTYPE_MASK - 1,
1757 
1758 	FW_PORT_MOD_TYPE_NONE = FW_PORT_CMD_MODTYPE_MASK
1759 };
1760 
1761 /* port stats */
1762 #define FW_NUM_PORT_STATS 50
1763 #define FW_NUM_PORT_TX_STATS 23
1764 #define FW_NUM_PORT_RX_STATS 27
1765 
1766 enum fw_port_stats_tx_index {
1767 	FW_STAT_TX_PORT_BYTES_IX,
1768 	FW_STAT_TX_PORT_FRAMES_IX,
1769 	FW_STAT_TX_PORT_BCAST_IX,
1770 	FW_STAT_TX_PORT_MCAST_IX,
1771 	FW_STAT_TX_PORT_UCAST_IX,
1772 	FW_STAT_TX_PORT_ERROR_IX,
1773 	FW_STAT_TX_PORT_64B_IX,
1774 	FW_STAT_TX_PORT_65B_127B_IX,
1775 	FW_STAT_TX_PORT_128B_255B_IX,
1776 	FW_STAT_TX_PORT_256B_511B_IX,
1777 	FW_STAT_TX_PORT_512B_1023B_IX,
1778 	FW_STAT_TX_PORT_1024B_1518B_IX,
1779 	FW_STAT_TX_PORT_1519B_MAX_IX,
1780 	FW_STAT_TX_PORT_DROP_IX,
1781 	FW_STAT_TX_PORT_PAUSE_IX,
1782 	FW_STAT_TX_PORT_PPP0_IX,
1783 	FW_STAT_TX_PORT_PPP1_IX,
1784 	FW_STAT_TX_PORT_PPP2_IX,
1785 	FW_STAT_TX_PORT_PPP3_IX,
1786 	FW_STAT_TX_PORT_PPP4_IX,
1787 	FW_STAT_TX_PORT_PPP5_IX,
1788 	FW_STAT_TX_PORT_PPP6_IX,
1789 	FW_STAT_TX_PORT_PPP7_IX
1790 };
1791 
1792 enum fw_port_stat_rx_index {
1793 	FW_STAT_RX_PORT_BYTES_IX,
1794 	FW_STAT_RX_PORT_FRAMES_IX,
1795 	FW_STAT_RX_PORT_BCAST_IX,
1796 	FW_STAT_RX_PORT_MCAST_IX,
1797 	FW_STAT_RX_PORT_UCAST_IX,
1798 	FW_STAT_RX_PORT_MTU_ERROR_IX,
1799 	FW_STAT_RX_PORT_MTU_CRC_ERROR_IX,
1800 	FW_STAT_RX_PORT_CRC_ERROR_IX,
1801 	FW_STAT_RX_PORT_LEN_ERROR_IX,
1802 	FW_STAT_RX_PORT_SYM_ERROR_IX,
1803 	FW_STAT_RX_PORT_64B_IX,
1804 	FW_STAT_RX_PORT_65B_127B_IX,
1805 	FW_STAT_RX_PORT_128B_255B_IX,
1806 	FW_STAT_RX_PORT_256B_511B_IX,
1807 	FW_STAT_RX_PORT_512B_1023B_IX,
1808 	FW_STAT_RX_PORT_1024B_1518B_IX,
1809 	FW_STAT_RX_PORT_1519B_MAX_IX,
1810 	FW_STAT_RX_PORT_PAUSE_IX,
1811 	FW_STAT_RX_PORT_PPP0_IX,
1812 	FW_STAT_RX_PORT_PPP1_IX,
1813 	FW_STAT_RX_PORT_PPP2_IX,
1814 	FW_STAT_RX_PORT_PPP3_IX,
1815 	FW_STAT_RX_PORT_PPP4_IX,
1816 	FW_STAT_RX_PORT_PPP5_IX,
1817 	FW_STAT_RX_PORT_PPP6_IX,
1818 	FW_STAT_RX_PORT_PPP7_IX,
1819 	FW_STAT_RX_PORT_LESS_64B_IX
1820 };
1821 
1822 struct fw_port_stats_cmd {
1823 	__be32 op_to_portid;
1824 	__be32 retval_len16;
1825 	union fw_port_stats {
1826 		struct fw_port_stats_ctl {
1827 			u8 nstats_bg_bm;
1828 			u8 tx_ix;
1829 			__be16 r6;
1830 			__be32 r7;
1831 			__be64 stat0;
1832 			__be64 stat1;
1833 			__be64 stat2;
1834 			__be64 stat3;
1835 			__be64 stat4;
1836 			__be64 stat5;
1837 		} ctl;
1838 		struct fw_port_stats_all {
1839 			__be64 tx_bytes;
1840 			__be64 tx_frames;
1841 			__be64 tx_bcast;
1842 			__be64 tx_mcast;
1843 			__be64 tx_ucast;
1844 			__be64 tx_error;
1845 			__be64 tx_64b;
1846 			__be64 tx_65b_127b;
1847 			__be64 tx_128b_255b;
1848 			__be64 tx_256b_511b;
1849 			__be64 tx_512b_1023b;
1850 			__be64 tx_1024b_1518b;
1851 			__be64 tx_1519b_max;
1852 			__be64 tx_drop;
1853 			__be64 tx_pause;
1854 			__be64 tx_ppp0;
1855 			__be64 tx_ppp1;
1856 			__be64 tx_ppp2;
1857 			__be64 tx_ppp3;
1858 			__be64 tx_ppp4;
1859 			__be64 tx_ppp5;
1860 			__be64 tx_ppp6;
1861 			__be64 tx_ppp7;
1862 			__be64 rx_bytes;
1863 			__be64 rx_frames;
1864 			__be64 rx_bcast;
1865 			__be64 rx_mcast;
1866 			__be64 rx_ucast;
1867 			__be64 rx_mtu_error;
1868 			__be64 rx_mtu_crc_error;
1869 			__be64 rx_crc_error;
1870 			__be64 rx_len_error;
1871 			__be64 rx_sym_error;
1872 			__be64 rx_64b;
1873 			__be64 rx_65b_127b;
1874 			__be64 rx_128b_255b;
1875 			__be64 rx_256b_511b;
1876 			__be64 rx_512b_1023b;
1877 			__be64 rx_1024b_1518b;
1878 			__be64 rx_1519b_max;
1879 			__be64 rx_pause;
1880 			__be64 rx_ppp0;
1881 			__be64 rx_ppp1;
1882 			__be64 rx_ppp2;
1883 			__be64 rx_ppp3;
1884 			__be64 rx_ppp4;
1885 			__be64 rx_ppp5;
1886 			__be64 rx_ppp6;
1887 			__be64 rx_ppp7;
1888 			__be64 rx_less_64b;
1889 			__be64 rx_bg_drop;
1890 			__be64 rx_bg_trunc;
1891 		} all;
1892 	} u;
1893 };
1894 
1895 #define FW_PORT_STATS_CMD_NSTATS(x) ((x) << 4)
1896 #define FW_PORT_STATS_CMD_BG_BM(x) ((x) << 0)
1897 #define FW_PORT_STATS_CMD_TX(x) ((x) << 7)
1898 #define FW_PORT_STATS_CMD_IX(x) ((x) << 0)
1899 
1900 /* port loopback stats */
1901 #define FW_NUM_LB_STATS 16
1902 enum fw_port_lb_stats_index {
1903 	FW_STAT_LB_PORT_BYTES_IX,
1904 	FW_STAT_LB_PORT_FRAMES_IX,
1905 	FW_STAT_LB_PORT_BCAST_IX,
1906 	FW_STAT_LB_PORT_MCAST_IX,
1907 	FW_STAT_LB_PORT_UCAST_IX,
1908 	FW_STAT_LB_PORT_ERROR_IX,
1909 	FW_STAT_LB_PORT_64B_IX,
1910 	FW_STAT_LB_PORT_65B_127B_IX,
1911 	FW_STAT_LB_PORT_128B_255B_IX,
1912 	FW_STAT_LB_PORT_256B_511B_IX,
1913 	FW_STAT_LB_PORT_512B_1023B_IX,
1914 	FW_STAT_LB_PORT_1024B_1518B_IX,
1915 	FW_STAT_LB_PORT_1519B_MAX_IX,
1916 	FW_STAT_LB_PORT_DROP_FRAMES_IX
1917 };
1918 
1919 struct fw_port_lb_stats_cmd {
1920 	__be32 op_to_lbport;
1921 	__be32 retval_len16;
1922 	union fw_port_lb_stats {
1923 		struct fw_port_lb_stats_ctl {
1924 			u8 nstats_bg_bm;
1925 			u8 ix_pkd;
1926 			__be16 r6;
1927 			__be32 r7;
1928 			__be64 stat0;
1929 			__be64 stat1;
1930 			__be64 stat2;
1931 			__be64 stat3;
1932 			__be64 stat4;
1933 			__be64 stat5;
1934 		} ctl;
1935 		struct fw_port_lb_stats_all {
1936 			__be64 tx_bytes;
1937 			__be64 tx_frames;
1938 			__be64 tx_bcast;
1939 			__be64 tx_mcast;
1940 			__be64 tx_ucast;
1941 			__be64 tx_error;
1942 			__be64 tx_64b;
1943 			__be64 tx_65b_127b;
1944 			__be64 tx_128b_255b;
1945 			__be64 tx_256b_511b;
1946 			__be64 tx_512b_1023b;
1947 			__be64 tx_1024b_1518b;
1948 			__be64 tx_1519b_max;
1949 			__be64 rx_lb_drop;
1950 			__be64 rx_lb_trunc;
1951 		} all;
1952 	} u;
1953 };
1954 
1955 #define FW_PORT_LB_STATS_CMD_LBPORT(x) ((x) << 0)
1956 #define FW_PORT_LB_STATS_CMD_NSTATS(x) ((x) << 4)
1957 #define FW_PORT_LB_STATS_CMD_BG_BM(x) ((x) << 0)
1958 #define FW_PORT_LB_STATS_CMD_IX(x) ((x) << 0)
1959 
1960 struct fw_rss_ind_tbl_cmd {
1961 	__be32 op_to_viid;
1962 #define FW_RSS_IND_TBL_CMD_VIID(x) ((x) << 0)
1963 	__be32 retval_len16;
1964 	__be16 niqid;
1965 	__be16 startidx;
1966 	__be32 r3;
1967 	__be32 iq0_to_iq2;
1968 #define FW_RSS_IND_TBL_CMD_IQ0(x) ((x) << 20)
1969 #define FW_RSS_IND_TBL_CMD_IQ1(x) ((x) << 10)
1970 #define FW_RSS_IND_TBL_CMD_IQ2(x) ((x) << 0)
1971 	__be32 iq3_to_iq5;
1972 	__be32 iq6_to_iq8;
1973 	__be32 iq9_to_iq11;
1974 	__be32 iq12_to_iq14;
1975 	__be32 iq15_to_iq17;
1976 	__be32 iq18_to_iq20;
1977 	__be32 iq21_to_iq23;
1978 	__be32 iq24_to_iq26;
1979 	__be32 iq27_to_iq29;
1980 	__be32 iq30_iq31;
1981 	__be32 r15_lo;
1982 };
1983 
1984 struct fw_rss_glb_config_cmd {
1985 	__be32 op_to_write;
1986 	__be32 retval_len16;
1987 	union fw_rss_glb_config {
1988 		struct fw_rss_glb_config_manual {
1989 			__be32 mode_pkd;
1990 			__be32 r3;
1991 			__be64 r4;
1992 			__be64 r5;
1993 		} manual;
1994 		struct fw_rss_glb_config_basicvirtual {
1995 			__be32 mode_pkd;
1996 			__be32 synmapen_to_hashtoeplitz;
1997 #define FW_RSS_GLB_CONFIG_CMD_SYNMAPEN      (1U << 8)
1998 #define FW_RSS_GLB_CONFIG_CMD_SYN4TUPENIPV6 (1U << 7)
1999 #define FW_RSS_GLB_CONFIG_CMD_SYN2TUPENIPV6 (1U << 6)
2000 #define FW_RSS_GLB_CONFIG_CMD_SYN4TUPENIPV4 (1U << 5)
2001 #define FW_RSS_GLB_CONFIG_CMD_SYN2TUPENIPV4 (1U << 4)
2002 #define FW_RSS_GLB_CONFIG_CMD_OFDMAPEN      (1U << 3)
2003 #define FW_RSS_GLB_CONFIG_CMD_TNLMAPEN      (1U << 2)
2004 #define FW_RSS_GLB_CONFIG_CMD_TNLALLLKP     (1U << 1)
2005 #define FW_RSS_GLB_CONFIG_CMD_HASHTOEPLITZ  (1U << 0)
2006 			__be64 r8;
2007 			__be64 r9;
2008 		} basicvirtual;
2009 	} u;
2010 };
2011 
2012 #define FW_RSS_GLB_CONFIG_CMD_MODE(x)	((x) << 28)
2013 #define FW_RSS_GLB_CONFIG_CMD_MODE_GET(x) (((x) >> 28) & 0xf)
2014 
2015 #define FW_RSS_GLB_CONFIG_CMD_MODE_MANUAL	0
2016 #define FW_RSS_GLB_CONFIG_CMD_MODE_BASICVIRTUAL	1
2017 
2018 struct fw_rss_vi_config_cmd {
2019 	__be32 op_to_viid;
2020 #define FW_RSS_VI_CONFIG_CMD_VIID(x) ((x) << 0)
2021 	__be32 retval_len16;
2022 	union fw_rss_vi_config {
2023 		struct fw_rss_vi_config_manual {
2024 			__be64 r3;
2025 			__be64 r4;
2026 			__be64 r5;
2027 		} manual;
2028 		struct fw_rss_vi_config_basicvirtual {
2029 			__be32 r6;
2030 			__be32 defaultq_to_udpen;
2031 #define FW_RSS_VI_CONFIG_CMD_DEFAULTQ(x)  ((x) << 16)
2032 #define FW_RSS_VI_CONFIG_CMD_DEFAULTQ_GET(x) (((x) >> 16) & 0x3ff)
2033 #define FW_RSS_VI_CONFIG_CMD_IP6FOURTUPEN (1U << 4)
2034 #define FW_RSS_VI_CONFIG_CMD_IP6TWOTUPEN  (1U << 3)
2035 #define FW_RSS_VI_CONFIG_CMD_IP4FOURTUPEN (1U << 2)
2036 #define FW_RSS_VI_CONFIG_CMD_IP4TWOTUPEN  (1U << 1)
2037 #define FW_RSS_VI_CONFIG_CMD_UDPEN        (1U << 0)
2038 			__be64 r9;
2039 			__be64 r10;
2040 		} basicvirtual;
2041 	} u;
2042 };
2043 
2044 enum fw_error_type {
2045 	FW_ERROR_TYPE_EXCEPTION		= 0x0,
2046 	FW_ERROR_TYPE_HWMODULE		= 0x1,
2047 	FW_ERROR_TYPE_WR		= 0x2,
2048 	FW_ERROR_TYPE_ACL		= 0x3,
2049 };
2050 
2051 struct fw_error_cmd {
2052 	__be32 op_to_type;
2053 	__be32 len16_pkd;
2054 	union fw_error {
2055 		struct fw_error_exception {
2056 			__be32 info[6];
2057 		} exception;
2058 		struct fw_error_hwmodule {
2059 			__be32 regaddr;
2060 			__be32 regval;
2061 		} hwmodule;
2062 		struct fw_error_wr {
2063 			__be16 cidx;
2064 			__be16 pfn_vfn;
2065 			__be32 eqid;
2066 			u8 wrhdr[16];
2067 		} wr;
2068 		struct fw_error_acl {
2069 			__be16 cidx;
2070 			__be16 pfn_vfn;
2071 			__be32 eqid;
2072 			__be16 mv_pkd;
2073 			u8 val[6];
2074 			__be64 r4;
2075 		} acl;
2076 	} u;
2077 };
2078 
2079 struct fw_debug_cmd {
2080 	__be32 op_type;
2081 #define FW_DEBUG_CMD_TYPE_GET(x) ((x) & 0xff)
2082 	__be32 len16_pkd;
2083 	union fw_debug {
2084 		struct fw_debug_assert {
2085 			__be32 fcid;
2086 			__be32 line;
2087 			__be32 x;
2088 			__be32 y;
2089 			u8 filename_0_7[8];
2090 			u8 filename_8_15[8];
2091 			__be64 r3;
2092 		} assert;
2093 		struct fw_debug_prt {
2094 			__be16 dprtstridx;
2095 			__be16 r3[3];
2096 			__be32 dprtstrparam0;
2097 			__be32 dprtstrparam1;
2098 			__be32 dprtstrparam2;
2099 			__be32 dprtstrparam3;
2100 		} prt;
2101 	} u;
2102 };
2103 
2104 #define FW_PCIE_FW_ERR           (1U << 31)
2105 #define FW_PCIE_FW_INIT          (1U << 30)
2106 #define FW_PCIE_FW_HALT          (1U << 29)
2107 #define FW_PCIE_FW_MASTER_VLD    (1U << 15)
2108 #define FW_PCIE_FW_MASTER_MASK   0x7
2109 #define FW_PCIE_FW_MASTER_SHIFT  12
2110 #define FW_PCIE_FW_MASTER(x)     ((x) << FW_PCIE_FW_MASTER_SHIFT)
2111 #define FW_PCIE_FW_MASTER_GET(x) (((x) >> FW_PCIE_FW_MASTER_SHIFT) & \
2112 				 FW_PCIE_FW_MASTER_MASK)
2113 
2114 struct fw_hdr {
2115 	u8 ver;
2116 	u8 reserved1;
2117 	__be16	len512;			/* bin length in units of 512-bytes */
2118 	__be32	fw_ver;			/* firmware version */
2119 	__be32	tp_microcode_ver;
2120 	u8 intfver_nic;
2121 	u8 intfver_vnic;
2122 	u8 intfver_ofld;
2123 	u8 intfver_ri;
2124 	u8 intfver_iscsipdu;
2125 	u8 intfver_iscsi;
2126 	u8 intfver_fcoe;
2127 	u8 reserved2;
2128 	__u32   reserved3;
2129 	__u32   reserved4;
2130 	__u32   reserved5;
2131 	__be32  flags;
2132 	__be32  reserved6[23];
2133 };
2134 
2135 #define FW_HDR_FW_VER_MAJOR_GET(x) (((x) >> 24) & 0xff)
2136 #define FW_HDR_FW_VER_MINOR_GET(x) (((x) >> 16) & 0xff)
2137 #define FW_HDR_FW_VER_MICRO_GET(x) (((x) >> 8) & 0xff)
2138 #define FW_HDR_FW_VER_BUILD_GET(x) (((x) >> 0) & 0xff)
2139 
2140 enum fw_hdr_flags {
2141 	FW_HDR_FLAGS_RESET_HALT = 0x00000001,
2142 };
2143 
2144 #endif /* _T4FW_INTERFACE_H_ */
2145