Merge branch 'for-davem' into for-next
[deliverable/linux.git] / drivers / net / ethernet / chelsio / cxgb4 / cxgb4.h
1 /*
2 * This file is part of the Chelsio T4 Ethernet driver for Linux.
3 *
4 * Copyright (c) 2003-2014 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 __CXGB4_H__
36 #define __CXGB4_H__
37
38 #include "t4_hw.h"
39
40 #include <linux/bitops.h>
41 #include <linux/cache.h>
42 #include <linux/interrupt.h>
43 #include <linux/list.h>
44 #include <linux/netdevice.h>
45 #include <linux/pci.h>
46 #include <linux/spinlock.h>
47 #include <linux/timer.h>
48 #include <linux/vmalloc.h>
49 #include <asm/io.h>
50 #include "cxgb4_uld.h"
51
52 #define CH_WARN(adap, fmt, ...) dev_warn(adap->pdev_dev, fmt, ## __VA_ARGS__)
53
54 enum {
55 MAX_NPORTS = 4, /* max # of ports */
56 SERNUM_LEN = 24, /* Serial # length */
57 EC_LEN = 16, /* E/C length */
58 ID_LEN = 16, /* ID length */
59 PN_LEN = 16, /* Part Number length */
60 };
61
62 enum {
63 MEM_EDC0,
64 MEM_EDC1,
65 MEM_MC,
66 MEM_MC0 = MEM_MC,
67 MEM_MC1
68 };
69
70 enum {
71 MEMWIN0_APERTURE = 2048,
72 MEMWIN0_BASE = 0x1b800,
73 MEMWIN1_APERTURE = 32768,
74 MEMWIN1_BASE = 0x28000,
75 MEMWIN1_BASE_T5 = 0x52000,
76 MEMWIN2_APERTURE = 65536,
77 MEMWIN2_BASE = 0x30000,
78 MEMWIN2_APERTURE_T5 = 131072,
79 MEMWIN2_BASE_T5 = 0x60000,
80 };
81
82 enum dev_master {
83 MASTER_CANT,
84 MASTER_MAY,
85 MASTER_MUST
86 };
87
88 enum dev_state {
89 DEV_STATE_UNINIT,
90 DEV_STATE_INIT,
91 DEV_STATE_ERR
92 };
93
94 enum {
95 PAUSE_RX = 1 << 0,
96 PAUSE_TX = 1 << 1,
97 PAUSE_AUTONEG = 1 << 2
98 };
99
100 struct port_stats {
101 u64 tx_octets; /* total # of octets in good frames */
102 u64 tx_frames; /* all good frames */
103 u64 tx_bcast_frames; /* all broadcast frames */
104 u64 tx_mcast_frames; /* all multicast frames */
105 u64 tx_ucast_frames; /* all unicast frames */
106 u64 tx_error_frames; /* all error frames */
107
108 u64 tx_frames_64; /* # of Tx frames in a particular range */
109 u64 tx_frames_65_127;
110 u64 tx_frames_128_255;
111 u64 tx_frames_256_511;
112 u64 tx_frames_512_1023;
113 u64 tx_frames_1024_1518;
114 u64 tx_frames_1519_max;
115
116 u64 tx_drop; /* # of dropped Tx frames */
117 u64 tx_pause; /* # of transmitted pause frames */
118 u64 tx_ppp0; /* # of transmitted PPP prio 0 frames */
119 u64 tx_ppp1; /* # of transmitted PPP prio 1 frames */
120 u64 tx_ppp2; /* # of transmitted PPP prio 2 frames */
121 u64 tx_ppp3; /* # of transmitted PPP prio 3 frames */
122 u64 tx_ppp4; /* # of transmitted PPP prio 4 frames */
123 u64 tx_ppp5; /* # of transmitted PPP prio 5 frames */
124 u64 tx_ppp6; /* # of transmitted PPP prio 6 frames */
125 u64 tx_ppp7; /* # of transmitted PPP prio 7 frames */
126
127 u64 rx_octets; /* total # of octets in good frames */
128 u64 rx_frames; /* all good frames */
129 u64 rx_bcast_frames; /* all broadcast frames */
130 u64 rx_mcast_frames; /* all multicast frames */
131 u64 rx_ucast_frames; /* all unicast frames */
132 u64 rx_too_long; /* # of frames exceeding MTU */
133 u64 rx_jabber; /* # of jabber frames */
134 u64 rx_fcs_err; /* # of received frames with bad FCS */
135 u64 rx_len_err; /* # of received frames with length error */
136 u64 rx_symbol_err; /* symbol errors */
137 u64 rx_runt; /* # of short frames */
138
139 u64 rx_frames_64; /* # of Rx frames in a particular range */
140 u64 rx_frames_65_127;
141 u64 rx_frames_128_255;
142 u64 rx_frames_256_511;
143 u64 rx_frames_512_1023;
144 u64 rx_frames_1024_1518;
145 u64 rx_frames_1519_max;
146
147 u64 rx_pause; /* # of received pause frames */
148 u64 rx_ppp0; /* # of received PPP prio 0 frames */
149 u64 rx_ppp1; /* # of received PPP prio 1 frames */
150 u64 rx_ppp2; /* # of received PPP prio 2 frames */
151 u64 rx_ppp3; /* # of received PPP prio 3 frames */
152 u64 rx_ppp4; /* # of received PPP prio 4 frames */
153 u64 rx_ppp5; /* # of received PPP prio 5 frames */
154 u64 rx_ppp6; /* # of received PPP prio 6 frames */
155 u64 rx_ppp7; /* # of received PPP prio 7 frames */
156
157 u64 rx_ovflow0; /* drops due to buffer-group 0 overflows */
158 u64 rx_ovflow1; /* drops due to buffer-group 1 overflows */
159 u64 rx_ovflow2; /* drops due to buffer-group 2 overflows */
160 u64 rx_ovflow3; /* drops due to buffer-group 3 overflows */
161 u64 rx_trunc0; /* buffer-group 0 truncated packets */
162 u64 rx_trunc1; /* buffer-group 1 truncated packets */
163 u64 rx_trunc2; /* buffer-group 2 truncated packets */
164 u64 rx_trunc3; /* buffer-group 3 truncated packets */
165 };
166
167 struct lb_port_stats {
168 u64 octets;
169 u64 frames;
170 u64 bcast_frames;
171 u64 mcast_frames;
172 u64 ucast_frames;
173 u64 error_frames;
174
175 u64 frames_64;
176 u64 frames_65_127;
177 u64 frames_128_255;
178 u64 frames_256_511;
179 u64 frames_512_1023;
180 u64 frames_1024_1518;
181 u64 frames_1519_max;
182
183 u64 drop;
184
185 u64 ovflow0;
186 u64 ovflow1;
187 u64 ovflow2;
188 u64 ovflow3;
189 u64 trunc0;
190 u64 trunc1;
191 u64 trunc2;
192 u64 trunc3;
193 };
194
195 struct tp_tcp_stats {
196 u32 tcpOutRsts;
197 u64 tcpInSegs;
198 u64 tcpOutSegs;
199 u64 tcpRetransSegs;
200 };
201
202 struct tp_err_stats {
203 u32 macInErrs[4];
204 u32 hdrInErrs[4];
205 u32 tcpInErrs[4];
206 u32 tnlCongDrops[4];
207 u32 ofldChanDrops[4];
208 u32 tnlTxDrops[4];
209 u32 ofldVlanDrops[4];
210 u32 tcp6InErrs[4];
211 u32 ofldNoNeigh;
212 u32 ofldCongDefer;
213 };
214
215 struct sge_params {
216 u32 hps; /* host page size for our PF/VF */
217 u32 eq_qpp; /* egress queues/page for our PF/VF */
218 u32 iq_qpp; /* egress queues/page for our PF/VF */
219 };
220
221 struct tp_params {
222 unsigned int ntxchan; /* # of Tx channels */
223 unsigned int tre; /* log2 of core clocks per TP tick */
224 unsigned int la_mask; /* what events are recorded by TP LA */
225 unsigned short tx_modq_map; /* TX modulation scheduler queue to */
226 /* channel map */
227
228 uint32_t dack_re; /* DACK timer resolution */
229 unsigned short tx_modq[NCHAN]; /* channel to modulation queue map */
230
231 u32 vlan_pri_map; /* cached TP_VLAN_PRI_MAP */
232 u32 ingress_config; /* cached TP_INGRESS_CONFIG */
233
234 /* TP_VLAN_PRI_MAP Compressed Filter Tuple field offsets. This is a
235 * subset of the set of fields which may be present in the Compressed
236 * Filter Tuple portion of filters and TCP TCB connections. The
237 * fields which are present are controlled by the TP_VLAN_PRI_MAP.
238 * Since a variable number of fields may or may not be present, their
239 * shifted field positions within the Compressed Filter Tuple may
240 * vary, or not even be present if the field isn't selected in
241 * TP_VLAN_PRI_MAP. Since some of these fields are needed in various
242 * places we store their offsets here, or a -1 if the field isn't
243 * present.
244 */
245 int vlan_shift;
246 int vnic_shift;
247 int port_shift;
248 int protocol_shift;
249 };
250
251 struct vpd_params {
252 unsigned int cclk;
253 u8 ec[EC_LEN + 1];
254 u8 sn[SERNUM_LEN + 1];
255 u8 id[ID_LEN + 1];
256 u8 pn[PN_LEN + 1];
257 };
258
259 struct pci_params {
260 unsigned char speed;
261 unsigned char width;
262 };
263
264 #define CHELSIO_CHIP_CODE(version, revision) (((version) << 4) | (revision))
265 #define CHELSIO_CHIP_FPGA 0x100
266 #define CHELSIO_CHIP_VERSION(code) (((code) >> 4) & 0xf)
267 #define CHELSIO_CHIP_RELEASE(code) ((code) & 0xf)
268
269 #define CHELSIO_T4 0x4
270 #define CHELSIO_T5 0x5
271
272 enum chip_type {
273 T4_A1 = CHELSIO_CHIP_CODE(CHELSIO_T4, 1),
274 T4_A2 = CHELSIO_CHIP_CODE(CHELSIO_T4, 2),
275 T4_FIRST_REV = T4_A1,
276 T4_LAST_REV = T4_A2,
277
278 T5_A0 = CHELSIO_CHIP_CODE(CHELSIO_T5, 0),
279 T5_A1 = CHELSIO_CHIP_CODE(CHELSIO_T5, 1),
280 T5_FIRST_REV = T5_A0,
281 T5_LAST_REV = T5_A1,
282 };
283
284 struct devlog_params {
285 u32 memtype; /* which memory (EDC0, EDC1, MC) */
286 u32 start; /* start of log in firmware memory */
287 u32 size; /* size of log */
288 };
289
290 struct adapter_params {
291 struct sge_params sge;
292 struct tp_params tp;
293 struct vpd_params vpd;
294 struct pci_params pci;
295 struct devlog_params devlog;
296 enum pcie_memwin drv_memwin;
297
298 unsigned int cim_la_size;
299
300 unsigned int sf_size; /* serial flash size in bytes */
301 unsigned int sf_nsec; /* # of flash sectors */
302 unsigned int sf_fw_start; /* start of FW image in flash */
303
304 unsigned int fw_vers;
305 unsigned int tp_vers;
306 u8 api_vers[7];
307
308 unsigned short mtus[NMTUS];
309 unsigned short a_wnd[NCCTRL_WIN];
310 unsigned short b_wnd[NCCTRL_WIN];
311
312 unsigned char nports; /* # of ethernet ports */
313 unsigned char portvec;
314 enum chip_type chip; /* chip code */
315 unsigned char offload;
316
317 unsigned char bypass;
318
319 unsigned int ofldq_wr_cred;
320 bool ulptx_memwrite_dsgl; /* use of T5 DSGL allowed */
321
322 unsigned int max_ordird_qp; /* Max read depth per RDMA QP */
323 unsigned int max_ird_adapter; /* Max read depth per adapter */
324 };
325
326 #include "t4fw_api.h"
327
328 #define FW_VERSION(chip) ( \
329 FW_HDR_FW_VER_MAJOR_G(chip##FW_VERSION_MAJOR) | \
330 FW_HDR_FW_VER_MINOR_G(chip##FW_VERSION_MINOR) | \
331 FW_HDR_FW_VER_MICRO_G(chip##FW_VERSION_MICRO) | \
332 FW_HDR_FW_VER_BUILD_G(chip##FW_VERSION_BUILD))
333 #define FW_INTFVER(chip, intf) (FW_HDR_INTFVER_##intf)
334
335 struct fw_info {
336 u8 chip;
337 char *fs_name;
338 char *fw_mod_name;
339 struct fw_hdr fw_hdr;
340 };
341
342
343 struct trace_params {
344 u32 data[TRACE_LEN / 4];
345 u32 mask[TRACE_LEN / 4];
346 unsigned short snap_len;
347 unsigned short min_len;
348 unsigned char skip_ofst;
349 unsigned char skip_len;
350 unsigned char invert;
351 unsigned char port;
352 };
353
354 struct link_config {
355 unsigned short supported; /* link capabilities */
356 unsigned short advertising; /* advertised capabilities */
357 unsigned short requested_speed; /* speed user has requested */
358 unsigned short speed; /* actual link speed */
359 unsigned char requested_fc; /* flow control user has requested */
360 unsigned char fc; /* actual link flow control */
361 unsigned char autoneg; /* autonegotiating? */
362 unsigned char link_ok; /* link up? */
363 };
364
365 #define FW_LEN16(fw_struct) FW_CMD_LEN16_V(sizeof(fw_struct) / 16)
366
367 enum {
368 MAX_ETH_QSETS = 32, /* # of Ethernet Tx/Rx queue sets */
369 MAX_OFLD_QSETS = 16, /* # of offload Tx/Rx queue sets */
370 MAX_CTRL_QUEUES = NCHAN, /* # of control Tx queues */
371 MAX_RDMA_QUEUES = NCHAN, /* # of streaming RDMA Rx queues */
372 MAX_RDMA_CIQS = 32, /* # of RDMA concentrator IQs */
373 MAX_ISCSI_QUEUES = NCHAN, /* # of streaming iSCSI Rx queues */
374 };
375
376 enum {
377 INGQ_EXTRAS = 2, /* firmware event queue and */
378 /* forwarded interrupts */
379 MAX_INGQ = MAX_ETH_QSETS + MAX_OFLD_QSETS + MAX_RDMA_QUEUES
380 + MAX_RDMA_CIQS + MAX_ISCSI_QUEUES + INGQ_EXTRAS,
381 };
382
383 struct adapter;
384 struct sge_rspq;
385
386 #include "cxgb4_dcb.h"
387
388 #ifdef CONFIG_CHELSIO_T4_FCOE
389 #include "cxgb4_fcoe.h"
390 #endif /* CONFIG_CHELSIO_T4_FCOE */
391
392 struct port_info {
393 struct adapter *adapter;
394 u16 viid;
395 s16 xact_addr_filt; /* index of exact MAC address filter */
396 u16 rss_size; /* size of VI's RSS table slice */
397 s8 mdio_addr;
398 enum fw_port_type port_type;
399 u8 mod_type;
400 u8 port_id;
401 u8 tx_chan;
402 u8 lport; /* associated offload logical port */
403 u8 nqsets; /* # of qsets */
404 u8 first_qset; /* index of first qset */
405 u8 rss_mode;
406 struct link_config link_cfg;
407 u16 *rss;
408 #ifdef CONFIG_CHELSIO_T4_DCB
409 struct port_dcb_info dcb; /* Data Center Bridging support */
410 #endif
411 #ifdef CONFIG_CHELSIO_T4_FCOE
412 struct cxgb_fcoe fcoe;
413 #endif /* CONFIG_CHELSIO_T4_FCOE */
414 };
415
416 struct dentry;
417 struct work_struct;
418
419 enum { /* adapter flags */
420 FULL_INIT_DONE = (1 << 0),
421 DEV_ENABLED = (1 << 1),
422 USING_MSI = (1 << 2),
423 USING_MSIX = (1 << 3),
424 FW_OK = (1 << 4),
425 RSS_TNLALLLOOKUP = (1 << 5),
426 USING_SOFT_PARAMS = (1 << 6),
427 MASTER_PF = (1 << 7),
428 FW_OFLD_CONN = (1 << 9),
429 };
430
431 struct rx_sw_desc;
432
433 struct sge_fl { /* SGE free-buffer queue state */
434 unsigned int avail; /* # of available Rx buffers */
435 unsigned int pend_cred; /* new buffers since last FL DB ring */
436 unsigned int cidx; /* consumer index */
437 unsigned int pidx; /* producer index */
438 unsigned long alloc_failed; /* # of times buffer allocation failed */
439 unsigned long large_alloc_failed;
440 unsigned long starving;
441 /* RO fields */
442 unsigned int cntxt_id; /* SGE context id for the free list */
443 unsigned int size; /* capacity of free list */
444 struct rx_sw_desc *sdesc; /* address of SW Rx descriptor ring */
445 __be64 *desc; /* address of HW Rx descriptor ring */
446 dma_addr_t addr; /* bus address of HW ring start */
447 void __iomem *bar2_addr; /* address of BAR2 Queue registers */
448 unsigned int bar2_qid; /* Queue ID for BAR2 Queue registers */
449 };
450
451 /* A packet gather list */
452 struct pkt_gl {
453 struct page_frag frags[MAX_SKB_FRAGS];
454 void *va; /* virtual address of first byte */
455 unsigned int nfrags; /* # of fragments */
456 unsigned int tot_len; /* total length of fragments */
457 };
458
459 typedef int (*rspq_handler_t)(struct sge_rspq *q, const __be64 *rsp,
460 const struct pkt_gl *gl);
461
462 struct sge_rspq { /* state for an SGE response queue */
463 struct napi_struct napi;
464 const __be64 *cur_desc; /* current descriptor in queue */
465 unsigned int cidx; /* consumer index */
466 u8 gen; /* current generation bit */
467 u8 intr_params; /* interrupt holdoff parameters */
468 u8 next_intr_params; /* holdoff params for next interrupt */
469 u8 adaptive_rx;
470 u8 pktcnt_idx; /* interrupt packet threshold */
471 u8 uld; /* ULD handling this queue */
472 u8 idx; /* queue index within its group */
473 int offset; /* offset into current Rx buffer */
474 u16 cntxt_id; /* SGE context id for the response q */
475 u16 abs_id; /* absolute SGE id for the response q */
476 __be64 *desc; /* address of HW response ring */
477 dma_addr_t phys_addr; /* physical address of the ring */
478 void __iomem *bar2_addr; /* address of BAR2 Queue registers */
479 unsigned int bar2_qid; /* Queue ID for BAR2 Queue registers */
480 unsigned int iqe_len; /* entry size */
481 unsigned int size; /* capacity of response queue */
482 struct adapter *adap;
483 struct net_device *netdev; /* associated net device */
484 rspq_handler_t handler;
485 #ifdef CONFIG_NET_RX_BUSY_POLL
486 #define CXGB_POLL_STATE_IDLE 0
487 #define CXGB_POLL_STATE_NAPI BIT(0) /* NAPI owns this poll */
488 #define CXGB_POLL_STATE_POLL BIT(1) /* poll owns this poll */
489 #define CXGB_POLL_STATE_NAPI_YIELD BIT(2) /* NAPI yielded this poll */
490 #define CXGB_POLL_STATE_POLL_YIELD BIT(3) /* poll yielded this poll */
491 #define CXGB_POLL_YIELD (CXGB_POLL_STATE_NAPI_YIELD | \
492 CXGB_POLL_STATE_POLL_YIELD)
493 #define CXGB_POLL_LOCKED (CXGB_POLL_STATE_NAPI | \
494 CXGB_POLL_STATE_POLL)
495 #define CXGB_POLL_USER_PEND (CXGB_POLL_STATE_POLL | \
496 CXGB_POLL_STATE_POLL_YIELD)
497 unsigned int bpoll_state;
498 spinlock_t bpoll_lock; /* lock for busy poll */
499 #endif /* CONFIG_NET_RX_BUSY_POLL */
500
501 };
502
503 struct sge_eth_stats { /* Ethernet queue statistics */
504 unsigned long pkts; /* # of ethernet packets */
505 unsigned long lro_pkts; /* # of LRO super packets */
506 unsigned long lro_merged; /* # of wire packets merged by LRO */
507 unsigned long rx_cso; /* # of Rx checksum offloads */
508 unsigned long vlan_ex; /* # of Rx VLAN extractions */
509 unsigned long rx_drops; /* # of packets dropped due to no mem */
510 };
511
512 struct sge_eth_rxq { /* SW Ethernet Rx queue */
513 struct sge_rspq rspq;
514 struct sge_fl fl;
515 struct sge_eth_stats stats;
516 } ____cacheline_aligned_in_smp;
517
518 struct sge_ofld_stats { /* offload queue statistics */
519 unsigned long pkts; /* # of packets */
520 unsigned long imm; /* # of immediate-data packets */
521 unsigned long an; /* # of asynchronous notifications */
522 unsigned long nomem; /* # of responses deferred due to no mem */
523 };
524
525 struct sge_ofld_rxq { /* SW offload Rx queue */
526 struct sge_rspq rspq;
527 struct sge_fl fl;
528 struct sge_ofld_stats stats;
529 } ____cacheline_aligned_in_smp;
530
531 struct tx_desc {
532 __be64 flit[8];
533 };
534
535 struct tx_sw_desc;
536
537 struct sge_txq {
538 unsigned int in_use; /* # of in-use Tx descriptors */
539 unsigned int size; /* # of descriptors */
540 unsigned int cidx; /* SW consumer index */
541 unsigned int pidx; /* producer index */
542 unsigned long stops; /* # of times q has been stopped */
543 unsigned long restarts; /* # of queue restarts */
544 unsigned int cntxt_id; /* SGE context id for the Tx q */
545 struct tx_desc *desc; /* address of HW Tx descriptor ring */
546 struct tx_sw_desc *sdesc; /* address of SW Tx descriptor ring */
547 struct sge_qstat *stat; /* queue status entry */
548 dma_addr_t phys_addr; /* physical address of the ring */
549 spinlock_t db_lock;
550 int db_disabled;
551 unsigned short db_pidx;
552 unsigned short db_pidx_inc;
553 void __iomem *bar2_addr; /* address of BAR2 Queue registers */
554 unsigned int bar2_qid; /* Queue ID for BAR2 Queue registers */
555 };
556
557 struct sge_eth_txq { /* state for an SGE Ethernet Tx queue */
558 struct sge_txq q;
559 struct netdev_queue *txq; /* associated netdev TX queue */
560 #ifdef CONFIG_CHELSIO_T4_DCB
561 u8 dcb_prio; /* DCB Priority bound to queue */
562 #endif
563 unsigned long tso; /* # of TSO requests */
564 unsigned long tx_cso; /* # of Tx checksum offloads */
565 unsigned long vlan_ins; /* # of Tx VLAN insertions */
566 unsigned long mapping_err; /* # of I/O MMU packet mapping errors */
567 } ____cacheline_aligned_in_smp;
568
569 struct sge_ofld_txq { /* state for an SGE offload Tx queue */
570 struct sge_txq q;
571 struct adapter *adap;
572 struct sk_buff_head sendq; /* list of backpressured packets */
573 struct tasklet_struct qresume_tsk; /* restarts the queue */
574 u8 full; /* the Tx ring is full */
575 unsigned long mapping_err; /* # of I/O MMU packet mapping errors */
576 } ____cacheline_aligned_in_smp;
577
578 struct sge_ctrl_txq { /* state for an SGE control Tx queue */
579 struct sge_txq q;
580 struct adapter *adap;
581 struct sk_buff_head sendq; /* list of backpressured packets */
582 struct tasklet_struct qresume_tsk; /* restarts the queue */
583 u8 full; /* the Tx ring is full */
584 } ____cacheline_aligned_in_smp;
585
586 struct sge {
587 struct sge_eth_txq ethtxq[MAX_ETH_QSETS];
588 struct sge_ofld_txq ofldtxq[MAX_OFLD_QSETS];
589 struct sge_ctrl_txq ctrlq[MAX_CTRL_QUEUES];
590
591 struct sge_eth_rxq ethrxq[MAX_ETH_QSETS];
592 struct sge_ofld_rxq ofldrxq[MAX_OFLD_QSETS];
593 struct sge_ofld_rxq rdmarxq[MAX_RDMA_QUEUES];
594 struct sge_ofld_rxq rdmaciq[MAX_RDMA_CIQS];
595 struct sge_rspq fw_evtq ____cacheline_aligned_in_smp;
596
597 struct sge_rspq intrq ____cacheline_aligned_in_smp;
598 spinlock_t intrq_lock;
599
600 u16 max_ethqsets; /* # of available Ethernet queue sets */
601 u16 ethqsets; /* # of active Ethernet queue sets */
602 u16 ethtxq_rover; /* Tx queue to clean up next */
603 u16 ofldqsets; /* # of active offload queue sets */
604 u16 rdmaqs; /* # of available RDMA Rx queues */
605 u16 rdmaciqs; /* # of available RDMA concentrator IQs */
606 u16 ofld_rxq[MAX_OFLD_QSETS];
607 u16 rdma_rxq[MAX_RDMA_QUEUES];
608 u16 rdma_ciq[MAX_RDMA_CIQS];
609 u16 timer_val[SGE_NTIMERS];
610 u8 counter_val[SGE_NCOUNTERS];
611 u32 fl_pg_order; /* large page allocation size */
612 u32 stat_len; /* length of status page at ring end */
613 u32 pktshift; /* padding between CPL & packet data */
614 u32 fl_align; /* response queue message alignment */
615 u32 fl_starve_thres; /* Free List starvation threshold */
616
617 /* State variables for detecting an SGE Ingress DMA hang */
618 unsigned int idma_1s_thresh;/* SGE same State Counter 1s threshold */
619 unsigned int idma_stalled[2];/* SGE synthesized stalled timers in HZ */
620 unsigned int idma_state[2]; /* SGE IDMA Hang detect state */
621 unsigned int idma_qid[2]; /* SGE IDMA Hung Ingress Queue ID */
622
623 unsigned int egr_start;
624 unsigned int egr_sz;
625 unsigned int ingr_start;
626 unsigned int ingr_sz;
627 void **egr_map; /* qid->queue egress queue map */
628 struct sge_rspq **ingr_map; /* qid->queue ingress queue map */
629 unsigned long *starving_fl;
630 unsigned long *txq_maperr;
631 struct timer_list rx_timer; /* refills starving FLs */
632 struct timer_list tx_timer; /* checks Tx queues */
633 };
634
635 #define for_each_ethrxq(sge, i) for (i = 0; i < (sge)->ethqsets; i++)
636 #define for_each_ofldrxq(sge, i) for (i = 0; i < (sge)->ofldqsets; i++)
637 #define for_each_rdmarxq(sge, i) for (i = 0; i < (sge)->rdmaqs; i++)
638 #define for_each_rdmaciq(sge, i) for (i = 0; i < (sge)->rdmaciqs; i++)
639
640 struct l2t_data;
641
642 #ifdef CONFIG_PCI_IOV
643
644 /* T4 supports SRIOV on PF0-3 and T5 on PF0-7. However, the Serial
645 * Configuration initialization for T5 only has SR-IOV functionality enabled
646 * on PF0-3 in order to simplify everything.
647 */
648 #define NUM_OF_PF_WITH_SRIOV 4
649
650 #endif
651
652 struct adapter {
653 void __iomem *regs;
654 void __iomem *bar2;
655 u32 t4_bar0;
656 struct pci_dev *pdev;
657 struct device *pdev_dev;
658 unsigned int mbox;
659 unsigned int fn;
660 unsigned int flags;
661 enum chip_type chip;
662
663 int msg_enable;
664
665 struct adapter_params params;
666 struct cxgb4_virt_res vres;
667 unsigned int swintr;
668
669 unsigned int wol;
670
671 struct {
672 unsigned short vec;
673 char desc[IFNAMSIZ + 10];
674 } msix_info[MAX_INGQ + 1];
675
676 struct sge sge;
677
678 struct net_device *port[MAX_NPORTS];
679 u8 chan_map[NCHAN]; /* channel -> port map */
680
681 u32 filter_mode;
682 unsigned int l2t_start;
683 unsigned int l2t_end;
684 struct l2t_data *l2t;
685 unsigned int clipt_start;
686 unsigned int clipt_end;
687 struct clip_tbl *clipt;
688 void *uld_handle[CXGB4_ULD_MAX];
689 struct list_head list_node;
690 struct list_head rcu_node;
691
692 struct tid_info tids;
693 void **tid_release_head;
694 spinlock_t tid_release_lock;
695 struct workqueue_struct *workq;
696 struct work_struct tid_release_task;
697 struct work_struct db_full_task;
698 struct work_struct db_drop_task;
699 bool tid_release_task_busy;
700
701 struct dentry *debugfs_root;
702
703 spinlock_t stats_lock;
704 spinlock_t win0_lock ____cacheline_aligned_in_smp;
705 };
706
707 /* Defined bit width of user definable filter tuples
708 */
709 #define ETHTYPE_BITWIDTH 16
710 #define FRAG_BITWIDTH 1
711 #define MACIDX_BITWIDTH 9
712 #define FCOE_BITWIDTH 1
713 #define IPORT_BITWIDTH 3
714 #define MATCHTYPE_BITWIDTH 3
715 #define PROTO_BITWIDTH 8
716 #define TOS_BITWIDTH 8
717 #define PF_BITWIDTH 8
718 #define VF_BITWIDTH 8
719 #define IVLAN_BITWIDTH 16
720 #define OVLAN_BITWIDTH 16
721
722 /* Filter matching rules. These consist of a set of ingress packet field
723 * (value, mask) tuples. The associated ingress packet field matches the
724 * tuple when ((field & mask) == value). (Thus a wildcard "don't care" field
725 * rule can be constructed by specifying a tuple of (0, 0).) A filter rule
726 * matches an ingress packet when all of the individual individual field
727 * matching rules are true.
728 *
729 * Partial field masks are always valid, however, while it may be easy to
730 * understand their meanings for some fields (e.g. IP address to match a
731 * subnet), for others making sensible partial masks is less intuitive (e.g.
732 * MPS match type) ...
733 *
734 * Most of the following data structures are modeled on T4 capabilities.
735 * Drivers for earlier chips use the subsets which make sense for those chips.
736 * We really need to come up with a hardware-independent mechanism to
737 * represent hardware filter capabilities ...
738 */
739 struct ch_filter_tuple {
740 /* Compressed header matching field rules. The TP_VLAN_PRI_MAP
741 * register selects which of these fields will participate in the
742 * filter match rules -- up to a maximum of 36 bits. Because
743 * TP_VLAN_PRI_MAP is a global register, all filters must use the same
744 * set of fields.
745 */
746 uint32_t ethtype:ETHTYPE_BITWIDTH; /* Ethernet type */
747 uint32_t frag:FRAG_BITWIDTH; /* IP fragmentation header */
748 uint32_t ivlan_vld:1; /* inner VLAN valid */
749 uint32_t ovlan_vld:1; /* outer VLAN valid */
750 uint32_t pfvf_vld:1; /* PF/VF valid */
751 uint32_t macidx:MACIDX_BITWIDTH; /* exact match MAC index */
752 uint32_t fcoe:FCOE_BITWIDTH; /* FCoE packet */
753 uint32_t iport:IPORT_BITWIDTH; /* ingress port */
754 uint32_t matchtype:MATCHTYPE_BITWIDTH; /* MPS match type */
755 uint32_t proto:PROTO_BITWIDTH; /* protocol type */
756 uint32_t tos:TOS_BITWIDTH; /* TOS/Traffic Type */
757 uint32_t pf:PF_BITWIDTH; /* PCI-E PF ID */
758 uint32_t vf:VF_BITWIDTH; /* PCI-E VF ID */
759 uint32_t ivlan:IVLAN_BITWIDTH; /* inner VLAN */
760 uint32_t ovlan:OVLAN_BITWIDTH; /* outer VLAN */
761
762 /* Uncompressed header matching field rules. These are always
763 * available for field rules.
764 */
765 uint8_t lip[16]; /* local IP address (IPv4 in [3:0]) */
766 uint8_t fip[16]; /* foreign IP address (IPv4 in [3:0]) */
767 uint16_t lport; /* local port */
768 uint16_t fport; /* foreign port */
769 };
770
771 /* A filter ioctl command.
772 */
773 struct ch_filter_specification {
774 /* Administrative fields for filter.
775 */
776 uint32_t hitcnts:1; /* count filter hits in TCB */
777 uint32_t prio:1; /* filter has priority over active/server */
778
779 /* Fundamental filter typing. This is the one element of filter
780 * matching that doesn't exist as a (value, mask) tuple.
781 */
782 uint32_t type:1; /* 0 => IPv4, 1 => IPv6 */
783
784 /* Packet dispatch information. Ingress packets which match the
785 * filter rules will be dropped, passed to the host or switched back
786 * out as egress packets.
787 */
788 uint32_t action:2; /* drop, pass, switch */
789
790 uint32_t rpttid:1; /* report TID in RSS hash field */
791
792 uint32_t dirsteer:1; /* 0 => RSS, 1 => steer to iq */
793 uint32_t iq:10; /* ingress queue */
794
795 uint32_t maskhash:1; /* dirsteer=0: store RSS hash in TCB */
796 uint32_t dirsteerhash:1;/* dirsteer=1: 0 => TCB contains RSS hash */
797 /* 1 => TCB contains IQ ID */
798
799 /* Switch proxy/rewrite fields. An ingress packet which matches a
800 * filter with "switch" set will be looped back out as an egress
801 * packet -- potentially with some Ethernet header rewriting.
802 */
803 uint32_t eport:2; /* egress port to switch packet out */
804 uint32_t newdmac:1; /* rewrite destination MAC address */
805 uint32_t newsmac:1; /* rewrite source MAC address */
806 uint32_t newvlan:2; /* rewrite VLAN Tag */
807 uint8_t dmac[ETH_ALEN]; /* new destination MAC address */
808 uint8_t smac[ETH_ALEN]; /* new source MAC address */
809 uint16_t vlan; /* VLAN Tag to insert */
810
811 /* Filter rule value/mask pairs.
812 */
813 struct ch_filter_tuple val;
814 struct ch_filter_tuple mask;
815 };
816
817 enum {
818 FILTER_PASS = 0, /* default */
819 FILTER_DROP,
820 FILTER_SWITCH
821 };
822
823 enum {
824 VLAN_NOCHANGE = 0, /* default */
825 VLAN_REMOVE,
826 VLAN_INSERT,
827 VLAN_REWRITE
828 };
829
830 static inline int is_t5(enum chip_type chip)
831 {
832 return CHELSIO_CHIP_VERSION(chip) == CHELSIO_T5;
833 }
834
835 static inline int is_t4(enum chip_type chip)
836 {
837 return CHELSIO_CHIP_VERSION(chip) == CHELSIO_T4;
838 }
839
840 static inline u32 t4_read_reg(struct adapter *adap, u32 reg_addr)
841 {
842 return readl(adap->regs + reg_addr);
843 }
844
845 static inline void t4_write_reg(struct adapter *adap, u32 reg_addr, u32 val)
846 {
847 writel(val, adap->regs + reg_addr);
848 }
849
850 #ifndef readq
851 static inline u64 readq(const volatile void __iomem *addr)
852 {
853 return readl(addr) + ((u64)readl(addr + 4) << 32);
854 }
855
856 static inline void writeq(u64 val, volatile void __iomem *addr)
857 {
858 writel(val, addr);
859 writel(val >> 32, addr + 4);
860 }
861 #endif
862
863 static inline u64 t4_read_reg64(struct adapter *adap, u32 reg_addr)
864 {
865 return readq(adap->regs + reg_addr);
866 }
867
868 static inline void t4_write_reg64(struct adapter *adap, u32 reg_addr, u64 val)
869 {
870 writeq(val, adap->regs + reg_addr);
871 }
872
873 /**
874 * netdev2pinfo - return the port_info structure associated with a net_device
875 * @dev: the netdev
876 *
877 * Return the struct port_info associated with a net_device
878 */
879 static inline struct port_info *netdev2pinfo(const struct net_device *dev)
880 {
881 return netdev_priv(dev);
882 }
883
884 /**
885 * adap2pinfo - return the port_info of a port
886 * @adap: the adapter
887 * @idx: the port index
888 *
889 * Return the port_info structure for the port of the given index.
890 */
891 static inline struct port_info *adap2pinfo(struct adapter *adap, int idx)
892 {
893 return netdev_priv(adap->port[idx]);
894 }
895
896 /**
897 * netdev2adap - return the adapter structure associated with a net_device
898 * @dev: the netdev
899 *
900 * Return the struct adapter associated with a net_device
901 */
902 static inline struct adapter *netdev2adap(const struct net_device *dev)
903 {
904 return netdev2pinfo(dev)->adapter;
905 }
906
907 #ifdef CONFIG_NET_RX_BUSY_POLL
908 static inline void cxgb_busy_poll_init_lock(struct sge_rspq *q)
909 {
910 spin_lock_init(&q->bpoll_lock);
911 q->bpoll_state = CXGB_POLL_STATE_IDLE;
912 }
913
914 static inline bool cxgb_poll_lock_napi(struct sge_rspq *q)
915 {
916 bool rc = true;
917
918 spin_lock(&q->bpoll_lock);
919 if (q->bpoll_state & CXGB_POLL_LOCKED) {
920 q->bpoll_state |= CXGB_POLL_STATE_NAPI_YIELD;
921 rc = false;
922 } else {
923 q->bpoll_state = CXGB_POLL_STATE_NAPI;
924 }
925 spin_unlock(&q->bpoll_lock);
926 return rc;
927 }
928
929 static inline bool cxgb_poll_unlock_napi(struct sge_rspq *q)
930 {
931 bool rc = false;
932
933 spin_lock(&q->bpoll_lock);
934 if (q->bpoll_state & CXGB_POLL_STATE_POLL_YIELD)
935 rc = true;
936 q->bpoll_state = CXGB_POLL_STATE_IDLE;
937 spin_unlock(&q->bpoll_lock);
938 return rc;
939 }
940
941 static inline bool cxgb_poll_lock_poll(struct sge_rspq *q)
942 {
943 bool rc = true;
944
945 spin_lock_bh(&q->bpoll_lock);
946 if (q->bpoll_state & CXGB_POLL_LOCKED) {
947 q->bpoll_state |= CXGB_POLL_STATE_POLL_YIELD;
948 rc = false;
949 } else {
950 q->bpoll_state |= CXGB_POLL_STATE_POLL;
951 }
952 spin_unlock_bh(&q->bpoll_lock);
953 return rc;
954 }
955
956 static inline bool cxgb_poll_unlock_poll(struct sge_rspq *q)
957 {
958 bool rc = false;
959
960 spin_lock_bh(&q->bpoll_lock);
961 if (q->bpoll_state & CXGB_POLL_STATE_POLL_YIELD)
962 rc = true;
963 q->bpoll_state = CXGB_POLL_STATE_IDLE;
964 spin_unlock_bh(&q->bpoll_lock);
965 return rc;
966 }
967
968 static inline bool cxgb_poll_busy_polling(struct sge_rspq *q)
969 {
970 return q->bpoll_state & CXGB_POLL_USER_PEND;
971 }
972 #else
973 static inline void cxgb_busy_poll_init_lock(struct sge_rspq *q)
974 {
975 }
976
977 static inline bool cxgb_poll_lock_napi(struct sge_rspq *q)
978 {
979 return true;
980 }
981
982 static inline bool cxgb_poll_unlock_napi(struct sge_rspq *q)
983 {
984 return false;
985 }
986
987 static inline bool cxgb_poll_lock_poll(struct sge_rspq *q)
988 {
989 return false;
990 }
991
992 static inline bool cxgb_poll_unlock_poll(struct sge_rspq *q)
993 {
994 return false;
995 }
996
997 static inline bool cxgb_poll_busy_polling(struct sge_rspq *q)
998 {
999 return false;
1000 }
1001 #endif /* CONFIG_NET_RX_BUSY_POLL */
1002
1003 void t4_os_portmod_changed(const struct adapter *adap, int port_id);
1004 void t4_os_link_changed(struct adapter *adap, int port_id, int link_stat);
1005
1006 void *t4_alloc_mem(size_t size);
1007
1008 void t4_free_sge_resources(struct adapter *adap);
1009 void t4_free_ofld_rxqs(struct adapter *adap, int n, struct sge_ofld_rxq *q);
1010 irq_handler_t t4_intr_handler(struct adapter *adap);
1011 netdev_tx_t t4_eth_xmit(struct sk_buff *skb, struct net_device *dev);
1012 int t4_ethrx_handler(struct sge_rspq *q, const __be64 *rsp,
1013 const struct pkt_gl *gl);
1014 int t4_mgmt_tx(struct adapter *adap, struct sk_buff *skb);
1015 int t4_ofld_send(struct adapter *adap, struct sk_buff *skb);
1016 int t4_sge_alloc_rxq(struct adapter *adap, struct sge_rspq *iq, bool fwevtq,
1017 struct net_device *dev, int intr_idx,
1018 struct sge_fl *fl, rspq_handler_t hnd);
1019 int t4_sge_alloc_eth_txq(struct adapter *adap, struct sge_eth_txq *txq,
1020 struct net_device *dev, struct netdev_queue *netdevq,
1021 unsigned int iqid);
1022 int t4_sge_alloc_ctrl_txq(struct adapter *adap, struct sge_ctrl_txq *txq,
1023 struct net_device *dev, unsigned int iqid,
1024 unsigned int cmplqid);
1025 int t4_sge_alloc_ofld_txq(struct adapter *adap, struct sge_ofld_txq *txq,
1026 struct net_device *dev, unsigned int iqid);
1027 irqreturn_t t4_sge_intr_msix(int irq, void *cookie);
1028 int t4_sge_init(struct adapter *adap);
1029 void t4_sge_start(struct adapter *adap);
1030 void t4_sge_stop(struct adapter *adap);
1031 int cxgb_busy_poll(struct napi_struct *napi);
1032 extern int dbfifo_int_thresh;
1033
1034 #define for_each_port(adapter, iter) \
1035 for (iter = 0; iter < (adapter)->params.nports; ++iter)
1036
1037 static inline int is_bypass(struct adapter *adap)
1038 {
1039 return adap->params.bypass;
1040 }
1041
1042 static inline int is_bypass_device(int device)
1043 {
1044 /* this should be set based upon device capabilities */
1045 switch (device) {
1046 case 0x440b:
1047 case 0x440c:
1048 return 1;
1049 default:
1050 return 0;
1051 }
1052 }
1053
1054 static inline unsigned int core_ticks_per_usec(const struct adapter *adap)
1055 {
1056 return adap->params.vpd.cclk / 1000;
1057 }
1058
1059 static inline unsigned int us_to_core_ticks(const struct adapter *adap,
1060 unsigned int us)
1061 {
1062 return (us * adap->params.vpd.cclk) / 1000;
1063 }
1064
1065 static inline unsigned int core_ticks_to_us(const struct adapter *adapter,
1066 unsigned int ticks)
1067 {
1068 /* add Core Clock / 2 to round ticks to nearest uS */
1069 return ((ticks * 1000 + adapter->params.vpd.cclk/2) /
1070 adapter->params.vpd.cclk);
1071 }
1072
1073 void t4_set_reg_field(struct adapter *adap, unsigned int addr, u32 mask,
1074 u32 val);
1075
1076 int t4_wr_mbox_meat(struct adapter *adap, int mbox, const void *cmd, int size,
1077 void *rpl, bool sleep_ok);
1078
1079 static inline int t4_wr_mbox(struct adapter *adap, int mbox, const void *cmd,
1080 int size, void *rpl)
1081 {
1082 return t4_wr_mbox_meat(adap, mbox, cmd, size, rpl, true);
1083 }
1084
1085 static inline int t4_wr_mbox_ns(struct adapter *adap, int mbox, const void *cmd,
1086 int size, void *rpl)
1087 {
1088 return t4_wr_mbox_meat(adap, mbox, cmd, size, rpl, false);
1089 }
1090
1091 void t4_write_indirect(struct adapter *adap, unsigned int addr_reg,
1092 unsigned int data_reg, const u32 *vals,
1093 unsigned int nregs, unsigned int start_idx);
1094 void t4_read_indirect(struct adapter *adap, unsigned int addr_reg,
1095 unsigned int data_reg, u32 *vals, unsigned int nregs,
1096 unsigned int start_idx);
1097 void t4_hw_pci_read_cfg4(struct adapter *adapter, int reg, u32 *val);
1098
1099 struct fw_filter_wr;
1100
1101 void t4_intr_enable(struct adapter *adapter);
1102 void t4_intr_disable(struct adapter *adapter);
1103 int t4_slow_intr_handler(struct adapter *adapter);
1104
1105 int t4_wait_dev_ready(void __iomem *regs);
1106 int t4_link_start(struct adapter *adap, unsigned int mbox, unsigned int port,
1107 struct link_config *lc);
1108 int t4_restart_aneg(struct adapter *adap, unsigned int mbox, unsigned int port);
1109
1110 #define T4_MEMORY_WRITE 0
1111 #define T4_MEMORY_READ 1
1112 int t4_memory_rw(struct adapter *adap, int win, int mtype, u32 addr, u32 len,
1113 void *buf, int dir);
1114 static inline int t4_memory_write(struct adapter *adap, int mtype, u32 addr,
1115 u32 len, __be32 *buf)
1116 {
1117 return t4_memory_rw(adap, 0, mtype, addr, len, buf, 0);
1118 }
1119
1120 int t4_seeprom_wp(struct adapter *adapter, bool enable);
1121 int get_vpd_params(struct adapter *adapter, struct vpd_params *p);
1122 int t4_read_flash(struct adapter *adapter, unsigned int addr,
1123 unsigned int nwords, u32 *data, int byte_oriented);
1124 int t4_load_fw(struct adapter *adapter, const u8 *fw_data, unsigned int size);
1125 int t4_fwcache(struct adapter *adap, enum fw_params_param_dev_fwcache op);
1126 int t4_fw_upgrade(struct adapter *adap, unsigned int mbox,
1127 const u8 *fw_data, unsigned int size, int force);
1128 unsigned int t4_flash_cfg_addr(struct adapter *adapter);
1129 int t4_get_fw_version(struct adapter *adapter, u32 *vers);
1130 int t4_get_tp_version(struct adapter *adapter, u32 *vers);
1131 int t4_get_exprom_version(struct adapter *adapter, u32 *vers);
1132 int t4_prep_fw(struct adapter *adap, struct fw_info *fw_info,
1133 const u8 *fw_data, unsigned int fw_size,
1134 struct fw_hdr *card_fw, enum dev_state state, int *reset);
1135 int t4_prep_adapter(struct adapter *adapter);
1136
1137 enum t4_bar2_qtype { T4_BAR2_QTYPE_EGRESS, T4_BAR2_QTYPE_INGRESS };
1138 int cxgb4_t4_bar2_sge_qregs(struct adapter *adapter,
1139 unsigned int qid,
1140 enum t4_bar2_qtype qtype,
1141 u64 *pbar2_qoffset,
1142 unsigned int *pbar2_qid);
1143
1144 unsigned int qtimer_val(const struct adapter *adap,
1145 const struct sge_rspq *q);
1146
1147 int t4_init_devlog_params(struct adapter *adapter);
1148 int t4_init_sge_params(struct adapter *adapter);
1149 int t4_init_tp_params(struct adapter *adap);
1150 int t4_filter_field_shift(const struct adapter *adap, int filter_sel);
1151 int t4_port_init(struct adapter *adap, int mbox, int pf, int vf);
1152 void t4_fatal_err(struct adapter *adapter);
1153 int t4_config_rss_range(struct adapter *adapter, int mbox, unsigned int viid,
1154 int start, int n, const u16 *rspq, unsigned int nrspq);
1155 int t4_config_glbl_rss(struct adapter *adapter, int mbox, unsigned int mode,
1156 unsigned int flags);
1157 int t4_read_rss(struct adapter *adapter, u16 *entries);
1158 void t4_read_rss_key(struct adapter *adapter, u32 *key);
1159 void t4_write_rss_key(struct adapter *adap, const u32 *key, int idx);
1160 void t4_read_rss_pf_config(struct adapter *adapter, unsigned int index,
1161 u32 *valp);
1162 void t4_read_rss_vf_config(struct adapter *adapter, unsigned int index,
1163 u32 *vfl, u32 *vfh);
1164 u32 t4_read_rss_pf_map(struct adapter *adapter);
1165 u32 t4_read_rss_pf_mask(struct adapter *adapter);
1166
1167 int t4_mc_read(struct adapter *adap, int idx, u32 addr, __be32 *data,
1168 u64 *parity);
1169 int t4_edc_read(struct adapter *adap, int idx, u32 addr, __be32 *data,
1170 u64 *parity);
1171 void t4_pmtx_get_stats(struct adapter *adap, u32 cnt[], u64 cycles[]);
1172 void t4_pmrx_get_stats(struct adapter *adap, u32 cnt[], u64 cycles[]);
1173 int t4_read_cim_ibq(struct adapter *adap, unsigned int qid, u32 *data,
1174 size_t n);
1175 int t4_read_cim_obq(struct adapter *adap, unsigned int qid, u32 *data,
1176 size_t n);
1177 int t4_cim_read(struct adapter *adap, unsigned int addr, unsigned int n,
1178 unsigned int *valp);
1179 int t4_cim_write(struct adapter *adap, unsigned int addr, unsigned int n,
1180 const unsigned int *valp);
1181 int t4_cim_read_la(struct adapter *adap, u32 *la_buf, unsigned int *wrptr);
1182 void t4_read_cimq_cfg(struct adapter *adap, u16 *base, u16 *size, u16 *thres);
1183 const char *t4_get_port_type_description(enum fw_port_type port_type);
1184 void t4_get_port_stats(struct adapter *adap, int idx, struct port_stats *p);
1185 void t4_read_mtu_tbl(struct adapter *adap, u16 *mtus, u8 *mtu_log);
1186 void t4_read_cong_tbl(struct adapter *adap, u16 incr[NMTUS][NCCTRL_WIN]);
1187 void t4_tp_wr_bits_indirect(struct adapter *adap, unsigned int addr,
1188 unsigned int mask, unsigned int val);
1189 void t4_tp_read_la(struct adapter *adap, u64 *la_buf, unsigned int *wrptr);
1190 void t4_tp_get_tcp_stats(struct adapter *adap, struct tp_tcp_stats *v4,
1191 struct tp_tcp_stats *v6);
1192 void t4_load_mtus(struct adapter *adap, const unsigned short *mtus,
1193 const unsigned short *alpha, const unsigned short *beta);
1194
1195 void t4_ulprx_read_la(struct adapter *adap, u32 *la_buf);
1196
1197 void t4_mk_filtdelwr(unsigned int ftid, struct fw_filter_wr *wr, int qid);
1198
1199 void t4_wol_magic_enable(struct adapter *adap, unsigned int port,
1200 const u8 *addr);
1201 int t4_wol_pat_enable(struct adapter *adap, unsigned int port, unsigned int map,
1202 u64 mask0, u64 mask1, unsigned int crc, bool enable);
1203
1204 int t4_fw_hello(struct adapter *adap, unsigned int mbox, unsigned int evt_mbox,
1205 enum dev_master master, enum dev_state *state);
1206 int t4_fw_bye(struct adapter *adap, unsigned int mbox);
1207 int t4_early_init(struct adapter *adap, unsigned int mbox);
1208 int t4_fw_reset(struct adapter *adap, unsigned int mbox, int reset);
1209 int t4_fixup_host_params(struct adapter *adap, unsigned int page_size,
1210 unsigned int cache_line_size);
1211 int t4_fw_initialize(struct adapter *adap, unsigned int mbox);
1212 int t4_query_params(struct adapter *adap, unsigned int mbox, unsigned int pf,
1213 unsigned int vf, unsigned int nparams, const u32 *params,
1214 u32 *val);
1215 int t4_set_params(struct adapter *adap, unsigned int mbox, unsigned int pf,
1216 unsigned int vf, unsigned int nparams, const u32 *params,
1217 const u32 *val);
1218 int t4_set_params_nosleep(struct adapter *adap, unsigned int mbox,
1219 unsigned int pf, unsigned int vf,
1220 unsigned int nparams, const u32 *params,
1221 const u32 *val);
1222 int t4_cfg_pfvf(struct adapter *adap, unsigned int mbox, unsigned int pf,
1223 unsigned int vf, unsigned int txq, unsigned int txq_eth_ctrl,
1224 unsigned int rxqi, unsigned int rxq, unsigned int tc,
1225 unsigned int vi, unsigned int cmask, unsigned int pmask,
1226 unsigned int nexact, unsigned int rcaps, unsigned int wxcaps);
1227 int t4_alloc_vi(struct adapter *adap, unsigned int mbox, unsigned int port,
1228 unsigned int pf, unsigned int vf, unsigned int nmac, u8 *mac,
1229 unsigned int *rss_size);
1230 int t4_set_rxmode(struct adapter *adap, unsigned int mbox, unsigned int viid,
1231 int mtu, int promisc, int all_multi, int bcast, int vlanex,
1232 bool sleep_ok);
1233 int t4_alloc_mac_filt(struct adapter *adap, unsigned int mbox,
1234 unsigned int viid, bool free, unsigned int naddr,
1235 const u8 **addr, u16 *idx, u64 *hash, bool sleep_ok);
1236 int t4_change_mac(struct adapter *adap, unsigned int mbox, unsigned int viid,
1237 int idx, const u8 *addr, bool persist, bool add_smt);
1238 int t4_set_addr_hash(struct adapter *adap, unsigned int mbox, unsigned int viid,
1239 bool ucast, u64 vec, bool sleep_ok);
1240 int t4_enable_vi_params(struct adapter *adap, unsigned int mbox,
1241 unsigned int viid, bool rx_en, bool tx_en, bool dcb_en);
1242 int t4_enable_vi(struct adapter *adap, unsigned int mbox, unsigned int viid,
1243 bool rx_en, bool tx_en);
1244 int t4_identify_port(struct adapter *adap, unsigned int mbox, unsigned int viid,
1245 unsigned int nblinks);
1246 int t4_mdio_rd(struct adapter *adap, unsigned int mbox, unsigned int phy_addr,
1247 unsigned int mmd, unsigned int reg, u16 *valp);
1248 int t4_mdio_wr(struct adapter *adap, unsigned int mbox, unsigned int phy_addr,
1249 unsigned int mmd, unsigned int reg, u16 val);
1250 int t4_iq_free(struct adapter *adap, unsigned int mbox, unsigned int pf,
1251 unsigned int vf, unsigned int iqtype, unsigned int iqid,
1252 unsigned int fl0id, unsigned int fl1id);
1253 int t4_eth_eq_free(struct adapter *adap, unsigned int mbox, unsigned int pf,
1254 unsigned int vf, unsigned int eqid);
1255 int t4_ctrl_eq_free(struct adapter *adap, unsigned int mbox, unsigned int pf,
1256 unsigned int vf, unsigned int eqid);
1257 int t4_ofld_eq_free(struct adapter *adap, unsigned int mbox, unsigned int pf,
1258 unsigned int vf, unsigned int eqid);
1259 int t4_handle_fw_rpl(struct adapter *adap, const __be64 *rpl);
1260 void t4_db_full(struct adapter *adapter);
1261 void t4_db_dropped(struct adapter *adapter);
1262 int t4_fwaddrspace_write(struct adapter *adap, unsigned int mbox,
1263 u32 addr, u32 val);
1264 void t4_sge_decode_idma_state(struct adapter *adapter, int state);
1265 void t4_free_mem(void *addr);
1266 #endif /* __CXGB4_H__ */
This page took 0.0581 seconds and 5 git commands to generate.