1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32#ifndef __CHELSIO_COMMON_H
33#define __CHELSIO_COMMON_H
34
35#include <linux/kernel.h>
36#include <linux/types.h>
37#include <linux/ctype.h>
38#include <linux/delay.h>
39#include <linux/init.h>
40#include <linux/netdevice.h>
41#include <linux/ethtool.h>
42#include <linux/mdio.h>
43#include "version.h"
44
45#define CH_ERR(adap, fmt, ...) dev_err(&adap->pdev->dev, fmt, ## __VA_ARGS__)
46#define CH_WARN(adap, fmt, ...) dev_warn(&adap->pdev->dev, fmt, ## __VA_ARGS__)
47#define CH_ALERT(adap, fmt, ...) \
48 dev_printk(KERN_ALERT, &adap->pdev->dev, fmt, ## __VA_ARGS__)
49
50
51
52
53
54#define CH_MSG(adapter, level, category, fmt, ...) do { \
55 if ((adapter)->msg_enable & NETIF_MSG_##category) \
56 dev_printk(KERN_##level, &adapter->pdev->dev, fmt, \
57 ## __VA_ARGS__); \
58} while (0)
59
60#ifdef DEBUG
61# define CH_DBG(adapter, category, fmt, ...) \
62 CH_MSG(adapter, DEBUG, category, fmt, ## __VA_ARGS__)
63#else
64# define CH_DBG(adapter, category, fmt, ...)
65#endif
66
67
68#define NETIF_MSG_MMIO 0x8000000
69
70enum {
71 MAX_NPORTS = 2,
72 MAX_FRAME_SIZE = 10240,
73 EEPROMSIZE = 8192,
74 SERNUM_LEN = 16,
75 RSS_TABLE_SIZE = 64,
76 TCB_SIZE = 128,
77 NMTUS = 16,
78 NCCTRL_WIN = 32,
79 PROTO_SRAM_LINES = 128,
80};
81
82#define MAX_RX_COALESCING_LEN 12288U
83
84enum {
85 PAUSE_RX = 1 << 0,
86 PAUSE_TX = 1 << 1,
87 PAUSE_AUTONEG = 1 << 2
88};
89
90enum {
91 SUPPORTED_IRQ = 1 << 24
92};
93
94enum {
95 STAT_ULP_CH0_PBL_OOB,
96 STAT_ULP_CH1_PBL_OOB,
97 STAT_PCI_CORR_ECC,
98
99 IRQ_NUM_STATS
100};
101
102#define TP_VERSION_MAJOR 1
103#define TP_VERSION_MINOR 1
104#define TP_VERSION_MICRO 0
105
106#define S_TP_VERSION_MAJOR 16
107#define M_TP_VERSION_MAJOR 0xFF
108#define V_TP_VERSION_MAJOR(x) ((x) << S_TP_VERSION_MAJOR)
109#define G_TP_VERSION_MAJOR(x) \
110 (((x) >> S_TP_VERSION_MAJOR) & M_TP_VERSION_MAJOR)
111
112#define S_TP_VERSION_MINOR 8
113#define M_TP_VERSION_MINOR 0xFF
114#define V_TP_VERSION_MINOR(x) ((x) << S_TP_VERSION_MINOR)
115#define G_TP_VERSION_MINOR(x) \
116 (((x) >> S_TP_VERSION_MINOR) & M_TP_VERSION_MINOR)
117
118#define S_TP_VERSION_MICRO 0
119#define M_TP_VERSION_MICRO 0xFF
120#define V_TP_VERSION_MICRO(x) ((x) << S_TP_VERSION_MICRO)
121#define G_TP_VERSION_MICRO(x) \
122 (((x) >> S_TP_VERSION_MICRO) & M_TP_VERSION_MICRO)
123
124enum {
125 SGE_QSETS = 8,
126 SGE_RXQ_PER_SET = 2,
127 SGE_TXQ_PER_SET = 3
128};
129
130enum sge_context_type {
131 SGE_CNTXT_RDMA = 0,
132 SGE_CNTXT_ETH = 2,
133 SGE_CNTXT_OFLD = 4,
134 SGE_CNTXT_CTRL = 5
135};
136
137enum {
138 AN_PKT_SIZE = 32,
139 IMMED_PKT_SIZE = 48
140};
141
142struct sg_ent {
143 __be32 len[2];
144 __be64 addr[2];
145};
146
147#ifndef SGE_NUM_GENBITS
148
149# define SGE_NUM_GENBITS 2
150#endif
151
152#define TX_DESC_FLITS 16U
153#define WR_FLITS (TX_DESC_FLITS + 1 - SGE_NUM_GENBITS)
154
155struct cphy;
156struct adapter;
157
158struct mdio_ops {
159 int (*read)(struct net_device *dev, int phy_addr, int mmd_addr,
160 u16 reg_addr);
161 int (*write)(struct net_device *dev, int phy_addr, int mmd_addr,
162 u16 reg_addr, u16 val);
163 unsigned mode_support;
164};
165
166struct adapter_info {
167 unsigned char nports0;
168 unsigned char nports1;
169 unsigned char phy_base_addr;
170 unsigned int gpio_out;
171 unsigned char gpio_intr[MAX_NPORTS];
172 unsigned long caps;
173 const struct mdio_ops *mdio_ops;
174 const char *desc;
175};
176
177struct mc5_stats {
178 unsigned long parity_err;
179 unsigned long active_rgn_full;
180 unsigned long nfa_srch_err;
181 unsigned long unknown_cmd;
182 unsigned long reqq_parity_err;
183 unsigned long dispq_parity_err;
184 unsigned long del_act_empty;
185};
186
187struct mc7_stats {
188 unsigned long corr_err;
189 unsigned long uncorr_err;
190 unsigned long parity_err;
191 unsigned long addr_err;
192};
193
194struct mac_stats {
195 u64 tx_octets;
196 u64 tx_octets_bad;
197 u64 tx_frames;
198 u64 tx_mcast_frames;
199 u64 tx_bcast_frames;
200 u64 tx_pause;
201 u64 tx_deferred;
202 u64 tx_late_collisions;
203 u64 tx_total_collisions;
204 u64 tx_excess_collisions;
205 u64 tx_underrun;
206 u64 tx_len_errs;
207 u64 tx_mac_internal_errs;
208 u64 tx_excess_deferral;
209 u64 tx_fcs_errs;
210
211 u64 tx_frames_64;
212 u64 tx_frames_65_127;
213 u64 tx_frames_128_255;
214 u64 tx_frames_256_511;
215 u64 tx_frames_512_1023;
216 u64 tx_frames_1024_1518;
217 u64 tx_frames_1519_max;
218
219 u64 rx_octets;
220 u64 rx_octets_bad;
221 u64 rx_frames;
222 u64 rx_mcast_frames;
223 u64 rx_bcast_frames;
224 u64 rx_pause;
225 u64 rx_fcs_errs;
226 u64 rx_align_errs;
227 u64 rx_symbol_errs;
228 u64 rx_data_errs;
229 u64 rx_sequence_errs;
230 u64 rx_runt;
231 u64 rx_jabber;
232 u64 rx_short;
233 u64 rx_too_long;
234 u64 rx_mac_internal_errs;
235
236 u64 rx_frames_64;
237 u64 rx_frames_65_127;
238 u64 rx_frames_128_255;
239 u64 rx_frames_256_511;
240 u64 rx_frames_512_1023;
241 u64 rx_frames_1024_1518;
242 u64 rx_frames_1519_max;
243
244 u64 rx_cong_drops;
245
246 unsigned long tx_fifo_parity_err;
247 unsigned long rx_fifo_parity_err;
248 unsigned long tx_fifo_urun;
249 unsigned long rx_fifo_ovfl;
250 unsigned long serdes_signal_loss;
251 unsigned long xaui_pcs_ctc_err;
252 unsigned long xaui_pcs_align_change;
253
254 unsigned long num_toggled;
255 unsigned long num_resets;
256
257 unsigned long link_faults;
258};
259
260struct tp_mib_stats {
261 u32 ipInReceive_hi;
262 u32 ipInReceive_lo;
263 u32 ipInHdrErrors_hi;
264 u32 ipInHdrErrors_lo;
265 u32 ipInAddrErrors_hi;
266 u32 ipInAddrErrors_lo;
267 u32 ipInUnknownProtos_hi;
268 u32 ipInUnknownProtos_lo;
269 u32 ipInDiscards_hi;
270 u32 ipInDiscards_lo;
271 u32 ipInDelivers_hi;
272 u32 ipInDelivers_lo;
273 u32 ipOutRequests_hi;
274 u32 ipOutRequests_lo;
275 u32 ipOutDiscards_hi;
276 u32 ipOutDiscards_lo;
277 u32 ipOutNoRoutes_hi;
278 u32 ipOutNoRoutes_lo;
279 u32 ipReasmTimeout;
280 u32 ipReasmReqds;
281 u32 ipReasmOKs;
282 u32 ipReasmFails;
283
284 u32 reserved[8];
285
286 u32 tcpActiveOpens;
287 u32 tcpPassiveOpens;
288 u32 tcpAttemptFails;
289 u32 tcpEstabResets;
290 u32 tcpOutRsts;
291 u32 tcpCurrEstab;
292 u32 tcpInSegs_hi;
293 u32 tcpInSegs_lo;
294 u32 tcpOutSegs_hi;
295 u32 tcpOutSegs_lo;
296 u32 tcpRetransSeg_hi;
297 u32 tcpRetransSeg_lo;
298 u32 tcpInErrs_hi;
299 u32 tcpInErrs_lo;
300 u32 tcpRtoMin;
301 u32 tcpRtoMax;
302};
303
304struct tp_params {
305 unsigned int nchan;
306 unsigned int pmrx_size;
307 unsigned int pmtx_size;
308 unsigned int cm_size;
309 unsigned int chan_rx_size;
310 unsigned int chan_tx_size;
311 unsigned int rx_pg_size;
312 unsigned int tx_pg_size;
313 unsigned int rx_num_pgs;
314 unsigned int tx_num_pgs;
315 unsigned int ntimer_qs;
316};
317
318struct qset_params {
319 unsigned int polling;
320 unsigned int coalesce_usecs;
321 unsigned int rspq_size;
322 unsigned int fl_size;
323 unsigned int jumbo_size;
324 unsigned int txq_size[SGE_TXQ_PER_SET];
325 unsigned int cong_thres;
326 unsigned int vector;
327};
328
329struct sge_params {
330 unsigned int max_pkt_size;
331 struct qset_params qset[SGE_QSETS];
332};
333
334struct mc5_params {
335 unsigned int mode;
336 unsigned int nservers;
337 unsigned int nfilters;
338 unsigned int nroutes;
339};
340
341
342enum {
343 DEFAULT_NSERVERS = 512,
344 DEFAULT_NFILTERS = 128
345};
346
347
348enum {
349 MC5_MODE_144_BIT = 1,
350 MC5_MODE_72_BIT = 2
351};
352
353
354enum { MC5_MIN_TIDS = 16 };
355
356struct vpd_params {
357 unsigned int cclk;
358 unsigned int mclk;
359 unsigned int uclk;
360 unsigned int mdc;
361 unsigned int mem_timing;
362 u8 sn[SERNUM_LEN + 1];
363 u8 eth_base[6];
364 u8 port_type[MAX_NPORTS];
365 unsigned short xauicfg[2];
366};
367
368struct pci_params {
369 unsigned int vpd_cap_addr;
370 unsigned int pcie_cap_addr;
371 unsigned short speed;
372 unsigned char width;
373 unsigned char variant;
374};
375
376enum {
377 PCI_VARIANT_PCI,
378 PCI_VARIANT_PCIX_MODE1_PARITY,
379 PCI_VARIANT_PCIX_MODE1_ECC,
380 PCI_VARIANT_PCIX_266_MODE2,
381 PCI_VARIANT_PCIE
382};
383
384struct adapter_params {
385 struct sge_params sge;
386 struct mc5_params mc5;
387 struct tp_params tp;
388 struct vpd_params vpd;
389 struct pci_params pci;
390
391 const struct adapter_info *info;
392
393 unsigned short mtus[NMTUS];
394 unsigned short a_wnd[NCCTRL_WIN];
395 unsigned short b_wnd[NCCTRL_WIN];
396
397 unsigned int nports;
398 unsigned int chan_map;
399 unsigned int stats_update_period;
400 unsigned int linkpoll_period;
401 unsigned int rev;
402 unsigned int offload;
403};
404
405enum {
406 T3_REV_A = 0,
407 T3_REV_B = 2,
408 T3_REV_B2 = 3,
409 T3_REV_C = 4,
410};
411
412struct trace_params {
413 u32 sip;
414 u32 sip_mask;
415 u32 dip;
416 u32 dip_mask;
417 u16 sport;
418 u16 sport_mask;
419 u16 dport;
420 u16 dport_mask;
421 u32 vlan:12;
422 u32 vlan_mask:12;
423 u32 intf:4;
424 u32 intf_mask:4;
425 u8 proto;
426 u8 proto_mask;
427};
428
429struct link_config {
430 unsigned int supported;
431 unsigned int advertising;
432 unsigned short requested_speed;
433 unsigned short speed;
434 unsigned char requested_duplex;
435 unsigned char duplex;
436 unsigned char requested_fc;
437 unsigned char fc;
438 unsigned char autoneg;
439 unsigned int link_ok;
440};
441
442#define SPEED_INVALID 0xffff
443#define DUPLEX_INVALID 0xff
444
445struct mc5 {
446 struct adapter *adapter;
447 unsigned int tcam_size;
448 unsigned char part_type;
449 unsigned char parity_enabled;
450 unsigned char mode;
451 struct mc5_stats stats;
452};
453
454static inline unsigned int t3_mc5_size(const struct mc5 *p)
455{
456 return p->tcam_size;
457}
458
459struct mc7 {
460 struct adapter *adapter;
461 unsigned int size;
462 unsigned int width;
463 unsigned int offset;
464 const char *name;
465 struct mc7_stats stats;
466};
467
468static inline unsigned int t3_mc7_size(const struct mc7 *p)
469{
470 return p->size;
471}
472
473struct cmac {
474 struct adapter *adapter;
475 unsigned int offset;
476 unsigned int nucast;
477 unsigned int tx_tcnt;
478 unsigned int tx_xcnt;
479 u64 tx_mcnt;
480 unsigned int rx_xcnt;
481 unsigned int rx_ocnt;
482 u64 rx_mcnt;
483 unsigned int toggle_cnt;
484 unsigned int txen;
485 u64 rx_pause;
486 struct mac_stats stats;
487};
488
489enum {
490 MAC_DIRECTION_RX = 1,
491 MAC_DIRECTION_TX = 2,
492 MAC_RXFIFO_SIZE = 32768
493};
494
495
496enum {
497 PHY_LOOPBACK_TX = 1,
498 PHY_LOOPBACK_RX = 2
499};
500
501
502enum {
503 cphy_cause_link_change = 1,
504 cphy_cause_fifo_error = 2,
505 cphy_cause_module_change = 4,
506};
507
508
509enum {
510 phy_modtype_none,
511 phy_modtype_sr,
512 phy_modtype_lr,
513 phy_modtype_lrm,
514 phy_modtype_twinax,
515 phy_modtype_twinax_long,
516 phy_modtype_unknown
517};
518
519
520struct cphy_ops {
521 int (*reset)(struct cphy *phy, int wait);
522
523 int (*intr_enable)(struct cphy *phy);
524 int (*intr_disable)(struct cphy *phy);
525 int (*intr_clear)(struct cphy *phy);
526 int (*intr_handler)(struct cphy *phy);
527
528 int (*autoneg_enable)(struct cphy *phy);
529 int (*autoneg_restart)(struct cphy *phy);
530
531 int (*advertise)(struct cphy *phy, unsigned int advertise_map);
532 int (*set_loopback)(struct cphy *phy, int mmd, int dir, int enable);
533 int (*set_speed_duplex)(struct cphy *phy, int speed, int duplex);
534 int (*get_link_status)(struct cphy *phy, int *link_ok, int *speed,
535 int *duplex, int *fc);
536 int (*power_down)(struct cphy *phy, int enable);
537
538 u32 mmds;
539};
540enum {
541 EDC_OPT_AEL2005 = 0,
542 EDC_OPT_AEL2005_SIZE = 1084,
543 EDC_TWX_AEL2005 = 1,
544 EDC_TWX_AEL2005_SIZE = 1464,
545 EDC_TWX_AEL2020 = 2,
546 EDC_TWX_AEL2020_SIZE = 1628,
547 EDC_MAX_SIZE = EDC_TWX_AEL2020_SIZE,
548};
549
550
551struct cphy {
552 u8 modtype;
553 short priv;
554 unsigned int caps;
555 struct adapter *adapter;
556 const char *desc;
557 unsigned long fifo_errors;
558 const struct cphy_ops *ops;
559 struct mdio_if_info mdio;
560 u16 phy_cache[EDC_MAX_SIZE];
561};
562
563
564static inline int t3_mdio_read(struct cphy *phy, int mmd, int reg,
565 unsigned int *valp)
566{
567 int rc = phy->mdio.mdio_read(phy->mdio.dev, phy->mdio.prtad, mmd, reg);
568 *valp = (rc >= 0) ? rc : -1;
569 return (rc >= 0) ? 0 : rc;
570}
571
572static inline int t3_mdio_write(struct cphy *phy, int mmd, int reg,
573 unsigned int val)
574{
575 return phy->mdio.mdio_write(phy->mdio.dev, phy->mdio.prtad, mmd,
576 reg, val);
577}
578
579
580static inline void cphy_init(struct cphy *phy, struct adapter *adapter,
581 int phy_addr, struct cphy_ops *phy_ops,
582 const struct mdio_ops *mdio_ops,
583 unsigned int caps, const char *desc)
584{
585 phy->caps = caps;
586 phy->adapter = adapter;
587 phy->desc = desc;
588 phy->ops = phy_ops;
589 if (mdio_ops) {
590 phy->mdio.prtad = phy_addr;
591 phy->mdio.mmds = phy_ops->mmds;
592 phy->mdio.mode_support = mdio_ops->mode_support;
593 phy->mdio.mdio_read = mdio_ops->read;
594 phy->mdio.mdio_write = mdio_ops->write;
595 }
596}
597
598
599#define MAC_STATS_ACCUM_SECS 180
600
601#define XGM_REG(reg_addr, idx) \
602 ((reg_addr) + (idx) * (XGMAC0_1_BASE_ADDR - XGMAC0_0_BASE_ADDR))
603
604struct addr_val_pair {
605 unsigned int reg_addr;
606 unsigned int val;
607};
608
609#include "adapter.h"
610
611#ifndef PCI_VENDOR_ID_CHELSIO
612# define PCI_VENDOR_ID_CHELSIO 0x1425
613#endif
614
615#define for_each_port(adapter, iter) \
616 for (iter = 0; iter < (adapter)->params.nports; ++iter)
617
618#define adapter_info(adap) ((adap)->params.info)
619
620static inline int uses_xaui(const struct adapter *adap)
621{
622 return adapter_info(adap)->caps & SUPPORTED_AUI;
623}
624
625static inline int is_10G(const struct adapter *adap)
626{
627 return adapter_info(adap)->caps & SUPPORTED_10000baseT_Full;
628}
629
630static inline int is_offload(const struct adapter *adap)
631{
632 return adap->params.offload;
633}
634
635static inline unsigned int core_ticks_per_usec(const struct adapter *adap)
636{
637 return adap->params.vpd.cclk / 1000;
638}
639
640static inline unsigned int is_pcie(const struct adapter *adap)
641{
642 return adap->params.pci.variant == PCI_VARIANT_PCIE;
643}
644
645void t3_set_reg_field(struct adapter *adap, unsigned int addr, u32 mask,
646 u32 val);
647void t3_write_regs(struct adapter *adapter, const struct addr_val_pair *p,
648 int n, unsigned int offset);
649int t3_wait_op_done_val(struct adapter *adapter, int reg, u32 mask,
650 int polarity, int attempts, int delay, u32 *valp);
651static inline int t3_wait_op_done(struct adapter *adapter, int reg, u32 mask,
652 int polarity, int attempts, int delay)
653{
654 return t3_wait_op_done_val(adapter, reg, mask, polarity, attempts,
655 delay, NULL);
656}
657int t3_mdio_change_bits(struct cphy *phy, int mmd, int reg, unsigned int clear,
658 unsigned int set);
659int t3_phy_reset(struct cphy *phy, int mmd, int wait);
660int t3_phy_advertise(struct cphy *phy, unsigned int advert);
661int t3_phy_advertise_fiber(struct cphy *phy, unsigned int advert);
662int t3_set_phy_speed_duplex(struct cphy *phy, int speed, int duplex);
663int t3_phy_lasi_intr_enable(struct cphy *phy);
664int t3_phy_lasi_intr_disable(struct cphy *phy);
665int t3_phy_lasi_intr_clear(struct cphy *phy);
666int t3_phy_lasi_intr_handler(struct cphy *phy);
667
668void t3_intr_enable(struct adapter *adapter);
669void t3_intr_disable(struct adapter *adapter);
670void t3_intr_clear(struct adapter *adapter);
671void t3_xgm_intr_enable(struct adapter *adapter, int idx);
672void t3_xgm_intr_disable(struct adapter *adapter, int idx);
673void t3_port_intr_enable(struct adapter *adapter, int idx);
674void t3_port_intr_disable(struct adapter *adapter, int idx);
675int t3_slow_intr_handler(struct adapter *adapter);
676int t3_phy_intr_handler(struct adapter *adapter);
677
678void t3_link_changed(struct adapter *adapter, int port_id);
679void t3_link_fault(struct adapter *adapter, int port_id);
680int t3_link_start(struct cphy *phy, struct cmac *mac, struct link_config *lc);
681const struct adapter_info *t3_get_adapter_info(unsigned int board_id);
682int t3_seeprom_read(struct adapter *adapter, u32 addr, __le32 *data);
683int t3_seeprom_write(struct adapter *adapter, u32 addr, __le32 data);
684int t3_seeprom_wp(struct adapter *adapter, int enable);
685int t3_get_tp_version(struct adapter *adapter, u32 *vers);
686int t3_check_tpsram_version(struct adapter *adapter);
687int t3_check_tpsram(struct adapter *adapter, const u8 *tp_ram,
688 unsigned int size);
689int t3_set_proto_sram(struct adapter *adap, const u8 *data);
690int t3_load_fw(struct adapter *adapter, const u8 * fw_data, unsigned int size);
691int t3_get_fw_version(struct adapter *adapter, u32 *vers);
692int t3_check_fw_version(struct adapter *adapter);
693int t3_init_hw(struct adapter *adapter, u32 fw_params);
694int t3_reset_adapter(struct adapter *adapter);
695int t3_prep_adapter(struct adapter *adapter, const struct adapter_info *ai,
696 int reset);
697int t3_replay_prep_adapter(struct adapter *adapter);
698void t3_led_ready(struct adapter *adapter);
699void t3_fatal_err(struct adapter *adapter);
700void t3_set_vlan_accel(struct adapter *adapter, unsigned int ports, int on);
701void t3_config_rss(struct adapter *adapter, unsigned int rss_config,
702 const u8 * cpus, const u16 *rspq);
703int t3_cim_ctl_blk_read(struct adapter *adap, unsigned int addr,
704 unsigned int n, unsigned int *valp);
705int t3_mc7_bd_read(struct mc7 *mc7, unsigned int start, unsigned int n,
706 u64 *buf);
707
708int t3_mac_reset(struct cmac *mac);
709void t3b_pcs_reset(struct cmac *mac);
710void t3_mac_disable_exact_filters(struct cmac *mac);
711void t3_mac_enable_exact_filters(struct cmac *mac);
712int t3_mac_enable(struct cmac *mac, int which);
713int t3_mac_disable(struct cmac *mac, int which);
714int t3_mac_set_mtu(struct cmac *mac, unsigned int mtu);
715int t3_mac_set_rx_mode(struct cmac *mac, struct net_device *dev);
716int t3_mac_set_address(struct cmac *mac, unsigned int idx, u8 addr[6]);
717int t3_mac_set_num_ucast(struct cmac *mac, int n);
718const struct mac_stats *t3_mac_update_stats(struct cmac *mac);
719int t3_mac_set_speed_duplex_fc(struct cmac *mac, int speed, int duplex, int fc);
720int t3b2_mac_watchdog_task(struct cmac *mac);
721
722void t3_mc5_prep(struct adapter *adapter, struct mc5 *mc5, int mode);
723int t3_mc5_init(struct mc5 *mc5, unsigned int nservers, unsigned int nfilters,
724 unsigned int nroutes);
725void t3_mc5_intr_handler(struct mc5 *mc5);
726
727void t3_tp_set_offload_mode(struct adapter *adap, int enable);
728void t3_tp_get_mib_stats(struct adapter *adap, struct tp_mib_stats *tps);
729void t3_load_mtus(struct adapter *adap, unsigned short mtus[NMTUS],
730 unsigned short alpha[NCCTRL_WIN],
731 unsigned short beta[NCCTRL_WIN], unsigned short mtu_cap);
732void t3_config_trace_filter(struct adapter *adapter,
733 const struct trace_params *tp, int filter_index,
734 int invert, int enable);
735int t3_config_sched(struct adapter *adap, unsigned int kbps, int sched);
736
737void t3_sge_prep(struct adapter *adap, struct sge_params *p);
738void t3_sge_init(struct adapter *adap, struct sge_params *p);
739int t3_sge_init_ecntxt(struct adapter *adapter, unsigned int id, int gts_enable,
740 enum sge_context_type type, int respq, u64 base_addr,
741 unsigned int size, unsigned int token, int gen,
742 unsigned int cidx);
743int t3_sge_init_flcntxt(struct adapter *adapter, unsigned int id,
744 int gts_enable, u64 base_addr, unsigned int size,
745 unsigned int esize, unsigned int cong_thres, int gen,
746 unsigned int cidx);
747int t3_sge_init_rspcntxt(struct adapter *adapter, unsigned int id,
748 int irq_vec_idx, u64 base_addr, unsigned int size,
749 unsigned int fl_thres, int gen, unsigned int cidx);
750int t3_sge_init_cqcntxt(struct adapter *adapter, unsigned int id, u64 base_addr,
751 unsigned int size, int rspq, int ovfl_mode,
752 unsigned int credits, unsigned int credit_thres);
753int t3_sge_enable_ecntxt(struct adapter *adapter, unsigned int id, int enable);
754int t3_sge_disable_fl(struct adapter *adapter, unsigned int id);
755int t3_sge_disable_rspcntxt(struct adapter *adapter, unsigned int id);
756int t3_sge_disable_cqcntxt(struct adapter *adapter, unsigned int id);
757int t3_sge_cqcntxt_op(struct adapter *adapter, unsigned int id, unsigned int op,
758 unsigned int credits);
759
760int t3_vsc8211_phy_prep(struct cphy *phy, struct adapter *adapter,
761 int phy_addr, const struct mdio_ops *mdio_ops);
762int t3_ael1002_phy_prep(struct cphy *phy, struct adapter *adapter,
763 int phy_addr, const struct mdio_ops *mdio_ops);
764int t3_ael1006_phy_prep(struct cphy *phy, struct adapter *adapter,
765 int phy_addr, const struct mdio_ops *mdio_ops);
766int t3_ael2005_phy_prep(struct cphy *phy, struct adapter *adapter,
767 int phy_addr, const struct mdio_ops *mdio_ops);
768int t3_ael2020_phy_prep(struct cphy *phy, struct adapter *adapter,
769 int phy_addr, const struct mdio_ops *mdio_ops);
770int t3_qt2045_phy_prep(struct cphy *phy, struct adapter *adapter, int phy_addr,
771 const struct mdio_ops *mdio_ops);
772int t3_xaui_direct_phy_prep(struct cphy *phy, struct adapter *adapter,
773 int phy_addr, const struct mdio_ops *mdio_ops);
774int t3_aq100x_phy_prep(struct cphy *phy, struct adapter *adapter,
775 int phy_addr, const struct mdio_ops *mdio_ops);
776#endif
777