1 /*****************************************************************************
5 * $Date: 2005/06/22 00:43:25 $ *
7 * part of the Chelsio 10Gb Ethernet Driver. *
9 * This program is free software; you can redistribute it and/or modify *
10 * it under the terms of the GNU General Public License, version 2, as *
11 * published by the Free Software Foundation. *
13 * You should have received a copy of the GNU General Public License along *
14 * with this program; if not, write to the Free Software Foundation, Inc., *
15 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
17 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED *
18 * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF *
19 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. *
21 * http://www.chelsio.com *
23 * Copyright (c) 2003 - 2005 Chelsio Communications, Inc. *
24 * All rights reserved. *
26 * Maintainers: maintainers@chelsio.com *
28 * Authors: Dimitrios Michailidis <dm@chelsio.com> *
29 * Tina Yang <tainay@chelsio.com> *
30 * Felix Marti <felix@chelsio.com> *
31 * Scott Bardone <sbardone@chelsio.com> *
32 * Kurt Ottaway <kottaway@chelsio.com> *
33 * Frank DiMambro <frank@chelsio.com> *
37 ****************************************************************************/
39 #define pr_fmt(fmt) "cxgb: " fmt
41 #ifndef _CXGB_COMMON_H_
42 #define _CXGB_COMMON_H_
44 #include <linux/module.h>
45 #include <linux/netdevice.h>
46 #include <linux/types.h>
47 #include <linux/delay.h>
48 #include <linux/pci.h>
49 #include <linux/ethtool.h>
50 #include <linux/if_vlan.h>
51 #include <linux/mdio.h>
52 #include <linux/crc32.h>
53 #include <linux/init.h>
54 #include <linux/slab.h>
56 #include <linux/pci_ids.h>
58 #define DRV_DESCRIPTION "Chelsio 10Gb Ethernet Driver"
59 #define DRV_NAME "cxgb"
60 #define DRV_VERSION "2.2"
62 #define CH_DEVICE(devid, ssid, idx) \
63 { PCI_VENDOR_ID_CHELSIO, devid, PCI_ANY_ID, ssid, 0, 0, idx }
65 #define SUPPORTED_PAUSE (1 << 13)
66 #define SUPPORTED_LOOPBACK (1 << 15)
68 #define ADVERTISED_PAUSE (1 << 13)
69 #define ADVERTISED_ASYM_PAUSE (1 << 14)
71 typedef struct adapter adapter_t
;
74 struct net_device
*dev
;
77 #define t1_rx_mode_promisc(rm) (rm->dev->flags & IFF_PROMISC)
78 #define t1_rx_mode_allmulti(rm) (rm->dev->flags & IFF_ALLMULTI)
79 #define t1_rx_mode_mc_cnt(rm) (netdev_mc_count(rm->dev))
80 #define t1_get_netdev(rm) (rm->dev)
83 #define PORT_MASK ((1 << MAX_NPORTS) - 1)
87 #define SPEED_INVALID 0xffff
88 #define DUPLEX_INVALID 0xff
135 PAUSE_AUTONEG
= 1 << 2
138 /* Revisions of T1 chip */
146 unsigned int cmdQ_size
[2];
147 unsigned int freelQ_size
[2];
148 unsigned int large_buf_capacity
;
149 unsigned int rx_coalesce_usecs
;
150 unsigned int last_rx_coalesce_raw
;
151 unsigned int default_rx_coalesce_usecs
;
152 unsigned int sample_interval_usecs
;
153 unsigned int coalesce_enable
;
154 unsigned int polling
;
157 struct chelsio_pci_params
{
158 unsigned short speed
;
160 unsigned char is_pcix
;
164 unsigned int pm_size
;
165 unsigned int cm_size
;
166 unsigned int pm_rx_base
;
167 unsigned int pm_tx_base
;
168 unsigned int pm_rx_pg_size
;
169 unsigned int pm_tx_pg_size
;
170 unsigned int pm_rx_num_pgs
;
171 unsigned int pm_tx_num_pgs
;
172 unsigned int rx_coalescing_size
;
173 unsigned int use_5tuple_mode
;
177 unsigned int mode
; /* selects MC5 width */
178 unsigned int nservers
; /* size of server region */
179 unsigned int nroutes
; /* size of routing region */
182 /* Default MC5 region sizes */
183 #define DEFAULT_SERVER_REGION_LEN 256
184 #define DEFAULT_RT_REGION_LEN 1024
186 struct adapter_params
{
187 struct sge_params sge
;
188 struct mc5_params mc5
;
190 struct chelsio_pci_params pci
;
192 const struct board_info
*brd_info
;
194 unsigned short mtus
[NMTUS
];
195 unsigned int nports
; /* # of ethernet ports */
196 unsigned int stats_update_period
;
197 unsigned short chip_revision
;
198 unsigned char chip_version
;
199 unsigned char is_asic
;
200 unsigned char has_msi
;
204 unsigned int supported
; /* link capabilities */
205 unsigned int advertising
; /* advertised capabilities */
206 unsigned short requested_speed
; /* speed user has requested */
207 unsigned short speed
; /* actual link speed */
208 unsigned char requested_duplex
; /* duplex user has requested */
209 unsigned char duplex
; /* actual link duplex */
210 unsigned char requested_fc
; /* flow control user has requested */
211 unsigned char fc
; /* actual link flow control */
212 unsigned char autoneg
; /* autonegotiating? */
219 struct net_device
*dev
;
222 struct link_config link_config
;
223 struct net_device_stats netstats
;
231 struct pci_dev
*pdev
;
232 unsigned long registered_device_map
;
233 unsigned long open_device_map
;
240 struct work_struct ext_intr_handler_task
;
241 struct adapter_params params
;
243 struct vlan_group
*vlan_grp
;
245 /* Terminator modules. */
250 struct napi_struct napi
;
251 struct port_info port
[MAX_NPORTS
];
252 struct delayed_work stats_update_task
;
253 struct timer_list stats_update_timer
;
256 spinlock_t work_lock
;
259 /* guards async operations */
260 spinlock_t async_lock ____cacheline_aligned
;
265 enum { /* adapter flags */
266 FULL_INIT_DONE
= 1 << 0,
275 unsigned char port_number
;
277 unsigned char chip_term
;
278 unsigned char chip_mac
;
279 unsigned char chip_phy
;
280 unsigned int clock_core
;
281 unsigned int clock_mc3
;
282 unsigned int clock_mc4
;
283 unsigned int espi_nports
;
284 unsigned int clock_elmer0
;
285 unsigned char mdio_mdien
;
286 unsigned char mdio_mdiinv
;
287 unsigned char mdio_mdc
;
288 unsigned char mdio_phybaseaddr
;
289 const struct gmac
*gmac
;
290 const struct gphy
*gphy
;
291 const struct mdio_ops
*mdio_ops
;
295 static inline int t1_is_asic(const adapter_t
*adapter
)
297 return adapter
->params
.is_asic
;
300 extern const struct pci_device_id t1_pci_tbl
[];
302 static inline int adapter_matches_type(const adapter_t
*adapter
,
303 int version
, int revision
)
305 return adapter
->params
.chip_version
== version
&&
306 adapter
->params
.chip_revision
== revision
;
309 #define t1_is_T1B(adap) adapter_matches_type(adap, CHBT_TERM_T1, TERM_T1B)
310 #define is_T2(adap) adapter_matches_type(adap, CHBT_TERM_T2, TERM_T2)
312 /* Returns true if an adapter supports VLAN acceleration and TSO */
313 static inline int vlan_tso_capable(const adapter_t
*adapter
)
315 return !t1_is_T1B(adapter
);
318 #define for_each_port(adapter, iter) \
319 for (iter = 0; iter < (adapter)->params.nports; ++iter)
321 #define board_info(adapter) ((adapter)->params.brd_info)
322 #define is_10G(adapter) (board_info(adapter)->caps & SUPPORTED_10000baseT_Full)
324 static inline unsigned int core_ticks_per_usec(const adapter_t
*adap
)
326 return board_info(adap
)->clock_core
/ 1000000;
329 extern int __t1_tpi_read(adapter_t
*adapter
, u32 addr
, u32
*valp
);
330 extern int __t1_tpi_write(adapter_t
*adapter
, u32 addr
, u32 value
);
331 extern int t1_tpi_write(adapter_t
*adapter
, u32 addr
, u32 value
);
332 extern int t1_tpi_read(adapter_t
*adapter
, u32 addr
, u32
*value
);
334 extern void t1_interrupts_enable(adapter_t
*adapter
);
335 extern void t1_interrupts_disable(adapter_t
*adapter
);
336 extern void t1_interrupts_clear(adapter_t
*adapter
);
337 extern int t1_elmer0_ext_intr_handler(adapter_t
*adapter
);
338 extern void t1_elmer0_ext_intr(adapter_t
*adapter
);
339 extern int t1_slow_intr_handler(adapter_t
*adapter
);
341 extern int t1_link_start(struct cphy
*phy
, struct cmac
*mac
, struct link_config
*lc
);
342 extern const struct board_info
*t1_get_board_info(unsigned int board_id
);
343 extern const struct board_info
*t1_get_board_info_from_ids(unsigned int devid
,
344 unsigned short ssid
);
345 extern int t1_seeprom_read(adapter_t
*adapter
, u32 addr
, __le32
*data
);
346 extern int t1_get_board_rev(adapter_t
*adapter
, const struct board_info
*bi
,
347 struct adapter_params
*p
);
348 extern int t1_init_hw_modules(adapter_t
*adapter
);
349 extern int t1_init_sw_modules(adapter_t
*adapter
, const struct board_info
*bi
);
350 extern void t1_free_sw_modules(adapter_t
*adapter
);
351 extern void t1_fatal_err(adapter_t
*adapter
);
352 extern void t1_link_changed(adapter_t
*adapter
, int port_id
);
353 extern void t1_link_negotiated(adapter_t
*adapter
, int port_id
, int link_stat
,
354 int speed
, int duplex
, int pause
);
355 #endif /* _CXGB_COMMON_H_ */