blob: efe1f6685285ff2dc26836e569da5b40ff4cf75f [file] [log] [blame]
Christoph Lameter8199d3a2005-03-30 13:34:31 -08001/*****************************************************************************
2 * *
3 * File: common.h *
Scott Bardone559fb512005-06-23 01:40:19 -04004 * $Revision: 1.21 $ *
5 * $Date: 2005/06/22 00:43:25 $ *
Christoph Lameter8199d3a2005-03-30 13:34:31 -08006 * Description: *
7 * part of the Chelsio 10Gb Ethernet Driver. *
8 * *
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. *
12 * *
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. *
16 * *
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. *
20 * *
21 * http://www.chelsio.com *
22 * *
23 * Copyright (c) 2003 - 2005 Chelsio Communications, Inc. *
24 * All rights reserved. *
25 * *
26 * Maintainers: maintainers@chelsio.com *
27 * *
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> *
34 * *
35 * History: *
36 * *
37 ****************************************************************************/
38
Scott Bardone559fb512005-06-23 01:40:19 -040039#ifndef _CXGB_COMMON_H_
40#define _CXGB_COMMON_H_
Christoph Lameter8199d3a2005-03-30 13:34:31 -080041
Scott Bardone559fb512005-06-23 01:40:19 -040042#include <linux/module.h>
43#include <linux/netdevice.h>
44#include <linux/types.h>
45#include <linux/delay.h>
46#include <linux/pci.h>
47#include <linux/ethtool.h>
48#include <linux/mii.h>
49#include <linux/crc32.h>
50#include <linux/init.h>
51#include <asm/io.h>
52#include <linux/pci_ids.h>
Christoph Lameter8199d3a2005-03-30 13:34:31 -080053
Scott Bardone559fb512005-06-23 01:40:19 -040054#define DRV_DESCRIPTION "Chelsio 10Gb Ethernet Driver"
55#define DRV_NAME "cxgb"
56#define DRV_VERSION "2.1.1"
57#define PFX DRV_NAME ": "
58
59#define CH_ERR(fmt, ...) printk(KERN_ERR PFX fmt, ## __VA_ARGS__)
60#define CH_WARN(fmt, ...) printk(KERN_WARNING PFX fmt, ## __VA_ARGS__)
61#define CH_ALERT(fmt, ...) printk(KERN_ALERT PFX fmt, ## __VA_ARGS__)
62
63#define CH_DEVICE(devid, ssid, idx) \
64 { PCI_VENDOR_ID_CHELSIO, devid, PCI_ANY_ID, ssid, 0, 0, idx }
65
66#define SUPPORTED_PAUSE (1 << 13)
67#define SUPPORTED_LOOPBACK (1 << 15)
68
69#define ADVERTISED_PAUSE (1 << 13)
70#define ADVERTISED_ASYM_PAUSE (1 << 14)
71
72typedef struct adapter adapter_t;
73
74void t1_elmer0_ext_intr(adapter_t *adapter);
75void t1_link_changed(adapter_t *adapter, int port_id, int link_status,
76 int speed, int duplex, int fc);
77
78struct t1_rx_mode {
79 struct net_device *dev;
80 u32 idx;
81 struct dev_mc_list *list;
82};
83
84#define t1_rx_mode_promisc(rm) (rm->dev->flags & IFF_PROMISC)
85#define t1_rx_mode_allmulti(rm) (rm->dev->flags & IFF_ALLMULTI)
86#define t1_rx_mode_mc_cnt(rm) (rm->dev->mc_count)
87
88static inline u8 *t1_get_next_mcaddr(struct t1_rx_mode *rm)
89{
viro@ftp.linux.org.uk91fb4c92005-09-05 03:25:48 +010090 u8 *addr = NULL;
Scott Bardone559fb512005-06-23 01:40:19 -040091
92 if (rm->idx++ < rm->dev->mc_count) {
93 addr = rm->list->dmi_addr;
94 rm->list = rm->list->next;
95 }
96 return addr;
97}
98
99#define MAX_NPORTS 4
100
101#define SPEED_INVALID 0xffff
102#define DUPLEX_INVALID 0xff
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800103
104enum {
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800105 CHBT_BOARD_N110,
Scott Bardone559fb512005-06-23 01:40:19 -0400106 CHBT_BOARD_N210
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800107};
108
109enum {
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800110 CHBT_TERM_T1,
Scott Bardone559fb512005-06-23 01:40:19 -0400111 CHBT_TERM_T2
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800112};
113
114enum {
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800115 CHBT_MAC_PM3393,
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800116};
117
118enum {
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800119 CHBT_PHY_88X2010,
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800120};
121
122enum {
Scott Bardone559fb512005-06-23 01:40:19 -0400123 PAUSE_RX = 1 << 0,
124 PAUSE_TX = 1 << 1,
125 PAUSE_AUTONEG = 1 << 2
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800126};
127
128/* Revisions of T1 chip */
Scott Bardone559fb512005-06-23 01:40:19 -0400129enum {
130 TERM_T1A = 0,
131 TERM_T1B = 1,
132 TERM_T2 = 3
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800133};
134
135struct sge_params {
136 unsigned int cmdQ_size[2];
137 unsigned int freelQ_size[2];
138 unsigned int large_buf_capacity;
139 unsigned int rx_coalesce_usecs;
140 unsigned int last_rx_coalesce_raw;
141 unsigned int default_rx_coalesce_usecs;
142 unsigned int sample_interval_usecs;
143 unsigned int coalesce_enable;
144 unsigned int polling;
145};
146
Scott Bardone559fb512005-06-23 01:40:19 -0400147struct chelsio_pci_params {
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800148 unsigned short speed;
149 unsigned char width;
150 unsigned char is_pcix;
151};
152
153struct adapter_params {
154 struct sge_params sge;
Scott Bardone559fb512005-06-23 01:40:19 -0400155 struct chelsio_pci_params pci;
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800156
157 const struct board_info *brd_info;
158
Scott Bardone559fb512005-06-23 01:40:19 -0400159 unsigned int nports; /* # of ethernet ports */
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800160 unsigned int stats_update_period;
161 unsigned short chip_revision;
162 unsigned char chip_version;
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800163};
164
165struct link_config {
166 unsigned int supported; /* link capabilities */
167 unsigned int advertising; /* advertised capabilities */
168 unsigned short requested_speed; /* speed user has requested */
169 unsigned short speed; /* actual link speed */
170 unsigned char requested_duplex; /* duplex user has requested */
171 unsigned char duplex; /* actual link duplex */
172 unsigned char requested_fc; /* flow control user has requested */
173 unsigned char fc; /* actual link flow control */
174 unsigned char autoneg; /* autonegotiating? */
175};
176
Scott Bardone559fb512005-06-23 01:40:19 -0400177struct cmac;
178struct cphy;
179
180struct port_info {
181 struct net_device *dev;
182 struct cmac *mac;
183 struct cphy *phy;
184 struct link_config link_config;
185 struct net_device_stats netstats;
186};
187
188struct sge;
189struct peespi;
190
191struct adapter {
viro@ftp.linux.org.uk91fb4c92005-09-05 03:25:48 +0100192 u8 __iomem *regs;
Scott Bardone559fb512005-06-23 01:40:19 -0400193 struct pci_dev *pdev;
194 unsigned long registered_device_map;
195 unsigned long open_device_map;
196 unsigned long flags;
197
198 const char *name;
199 int msg_enable;
200 u32 mmio_len;
201
202 struct work_struct ext_intr_handler_task;
203 struct adapter_params params;
204
205 struct vlan_group *vlan_grp;
206
207 /* Terminator modules. */
208 struct sge *sge;
209 struct peespi *espi;
210
211 struct port_info port[MAX_NPORTS];
212 struct work_struct stats_update_task;
213 struct timer_list stats_update_timer;
214
Scott Bardone559fb512005-06-23 01:40:19 -0400215 spinlock_t tpi_lock;
216 spinlock_t work_lock;
217 /* guards async operations */
218 spinlock_t async_lock ____cacheline_aligned;
219 u32 slow_intr_mask;
220};
221
222enum { /* adapter flags */
223 FULL_INIT_DONE = 1 << 0,
224 TSO_CAPABLE = 1 << 2,
225 TCP_CSUM_CAPABLE = 1 << 3,
226 UDP_CSUM_CAPABLE = 1 << 4,
227 VLAN_ACCEL_CAPABLE = 1 << 5,
228 RX_CSUM_ENABLED = 1 << 6,
229};
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800230
231struct mdio_ops;
232struct gmac;
233struct gphy;
234
235struct board_info {
236 unsigned char board;
237 unsigned char port_number;
238 unsigned long caps;
239 unsigned char chip_term;
240 unsigned char chip_mac;
241 unsigned char chip_phy;
242 unsigned int clock_core;
243 unsigned int clock_mc3;
244 unsigned int clock_mc4;
245 unsigned int espi_nports;
246 unsigned int clock_cspi;
247 unsigned int clock_elmer0;
248 unsigned char mdio_mdien;
249 unsigned char mdio_mdiinv;
250 unsigned char mdio_mdc;
251 unsigned char mdio_phybaseaddr;
252 struct gmac *gmac;
253 struct gphy *gphy;
254 struct mdio_ops *mdio_ops;
255 const char *desc;
256};
257
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800258extern struct pci_device_id t1_pci_tbl[];
259
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800260static inline int adapter_matches_type(const adapter_t *adapter,
261 int version, int revision)
262{
263 return adapter->params.chip_version == version &&
264 adapter->params.chip_revision == revision;
265}
266
267#define t1_is_T1B(adap) adapter_matches_type(adap, CHBT_TERM_T1, TERM_T1B)
268#define is_T2(adap) adapter_matches_type(adap, CHBT_TERM_T2, TERM_T2)
269
270/* Returns true if an adapter supports VLAN acceleration and TSO */
271static inline int vlan_tso_capable(const adapter_t *adapter)
272{
273 return !t1_is_T1B(adapter);
274}
275
276#define for_each_port(adapter, iter) \
277 for (iter = 0; iter < (adapter)->params.nports; ++iter)
278
279#define board_info(adapter) ((adapter)->params.brd_info)
280#define is_10G(adapter) (board_info(adapter)->caps & SUPPORTED_10000baseT_Full)
281
282static inline unsigned int core_ticks_per_usec(const adapter_t *adap)
283{
284 return board_info(adap)->clock_core / 1000000;
285}
286
Scott Bardone559fb512005-06-23 01:40:19 -0400287extern int t1_tpi_write(adapter_t *adapter, u32 addr, u32 value);
288extern int t1_tpi_read(adapter_t *adapter, u32 addr, u32 *value);
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800289
Scott Bardone559fb512005-06-23 01:40:19 -0400290extern void t1_interrupts_enable(adapter_t *adapter);
291extern void t1_interrupts_disable(adapter_t *adapter);
292extern void t1_interrupts_clear(adapter_t *adapter);
293extern int elmer0_ext_intr_handler(adapter_t *adapter);
294extern int t1_slow_intr_handler(adapter_t *adapter);
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800295
Scott Bardone559fb512005-06-23 01:40:19 -0400296extern int t1_link_start(struct cphy *phy, struct cmac *mac, struct link_config *lc);
297extern const struct board_info *t1_get_board_info(unsigned int board_id);
298extern const struct board_info *t1_get_board_info_from_ids(unsigned int devid,
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800299 unsigned short ssid);
Scott Bardone559fb512005-06-23 01:40:19 -0400300extern int t1_seeprom_read(adapter_t *adapter, u32 addr, u32 *data);
301extern int t1_get_board_rev(adapter_t *adapter, const struct board_info *bi,
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800302 struct adapter_params *p);
Scott Bardone559fb512005-06-23 01:40:19 -0400303extern int t1_init_hw_modules(adapter_t *adapter);
304extern int t1_init_sw_modules(adapter_t *adapter, const struct board_info *bi);
305extern void t1_free_sw_modules(adapter_t *adapter);
306extern void t1_fatal_err(adapter_t *adapter);
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800307
Scott Bardone559fb512005-06-23 01:40:19 -0400308extern void t1_tp_set_udp_checksum_offload(adapter_t *adapter, int enable);
309extern void t1_tp_set_tcp_checksum_offload(adapter_t *adapter, int enable);
310extern void t1_tp_set_ip_checksum_offload(adapter_t *adapter, int enable);
311
312#endif /* _CXGB_COMMON_H_ */