1*a6013785SThomas Gleixner /* SPDX-License-Identifier: GPL-2.0-only */
2f7917c00SJeff Kirsher /*****************************************************************************
3f7917c00SJeff Kirsher * *
4f7917c00SJeff Kirsher * File: common.h *
5f7917c00SJeff Kirsher * $Revision: 1.21 $ *
6f7917c00SJeff Kirsher * $Date: 2005/06/22 00:43:25 $ *
7f7917c00SJeff Kirsher * Description: *
8f7917c00SJeff Kirsher * part of the Chelsio 10Gb Ethernet Driver. *
9f7917c00SJeff Kirsher * *
10f7917c00SJeff Kirsher * *
11f7917c00SJeff Kirsher * http://www.chelsio.com *
12f7917c00SJeff Kirsher * *
13f7917c00SJeff Kirsher * Copyright (c) 2003 - 2005 Chelsio Communications, Inc. *
14f7917c00SJeff Kirsher * All rights reserved. *
15f7917c00SJeff Kirsher * *
16f7917c00SJeff Kirsher * Maintainers: maintainers@chelsio.com *
17f7917c00SJeff Kirsher * *
18f7917c00SJeff Kirsher * Authors: Dimitrios Michailidis <dm@chelsio.com> *
19f7917c00SJeff Kirsher * Tina Yang <tainay@chelsio.com> *
20f7917c00SJeff Kirsher * Felix Marti <felix@chelsio.com> *
21f7917c00SJeff Kirsher * Scott Bardone <sbardone@chelsio.com> *
22f7917c00SJeff Kirsher * Kurt Ottaway <kottaway@chelsio.com> *
23f7917c00SJeff Kirsher * Frank DiMambro <frank@chelsio.com> *
24f7917c00SJeff Kirsher * *
25f7917c00SJeff Kirsher * History: *
26f7917c00SJeff Kirsher * *
27f7917c00SJeff Kirsher ****************************************************************************/
28f7917c00SJeff Kirsher
29f7917c00SJeff Kirsher #define pr_fmt(fmt) "cxgb: " fmt
30f7917c00SJeff Kirsher
31f7917c00SJeff Kirsher #ifndef _CXGB_COMMON_H_
32f7917c00SJeff Kirsher #define _CXGB_COMMON_H_
33f7917c00SJeff Kirsher
34f7917c00SJeff Kirsher #include <linux/module.h>
35f7917c00SJeff Kirsher #include <linux/netdevice.h>
36f7917c00SJeff Kirsher #include <linux/types.h>
37f7917c00SJeff Kirsher #include <linux/delay.h>
38f7917c00SJeff Kirsher #include <linux/pci.h>
39f7917c00SJeff Kirsher #include <linux/ethtool.h>
40f7917c00SJeff Kirsher #include <linux/if_vlan.h>
41f7917c00SJeff Kirsher #include <linux/mdio.h>
42f7917c00SJeff Kirsher #include <linux/crc32.h>
43f7917c00SJeff Kirsher #include <linux/slab.h>
44f7917c00SJeff Kirsher #include <asm/io.h>
45f7917c00SJeff Kirsher #include <linux/pci_ids.h>
46f7917c00SJeff Kirsher
47f7917c00SJeff Kirsher #define DRV_DESCRIPTION "Chelsio 10Gb Ethernet Driver"
48f7917c00SJeff Kirsher #define DRV_NAME "cxgb"
49f7917c00SJeff Kirsher
50f7917c00SJeff Kirsher #define CH_DEVICE(devid, ssid, idx) \
51f7917c00SJeff Kirsher { PCI_VENDOR_ID_CHELSIO, devid, PCI_ANY_ID, ssid, 0, 0, idx }
52f7917c00SJeff Kirsher
53f7917c00SJeff Kirsher #define SUPPORTED_PAUSE (1 << 13)
54f7917c00SJeff Kirsher #define SUPPORTED_LOOPBACK (1 << 15)
55f7917c00SJeff Kirsher
56f7917c00SJeff Kirsher #define ADVERTISED_PAUSE (1 << 13)
57f7917c00SJeff Kirsher #define ADVERTISED_ASYM_PAUSE (1 << 14)
58f7917c00SJeff Kirsher
59f7917c00SJeff Kirsher typedef struct adapter adapter_t;
60f7917c00SJeff Kirsher
61f7917c00SJeff Kirsher struct t1_rx_mode {
62f7917c00SJeff Kirsher struct net_device *dev;
63f7917c00SJeff Kirsher };
64f7917c00SJeff Kirsher
65f7917c00SJeff Kirsher #define t1_rx_mode_promisc(rm) (rm->dev->flags & IFF_PROMISC)
66f7917c00SJeff Kirsher #define t1_rx_mode_allmulti(rm) (rm->dev->flags & IFF_ALLMULTI)
67f7917c00SJeff Kirsher #define t1_rx_mode_mc_cnt(rm) (netdev_mc_count(rm->dev))
68f7917c00SJeff Kirsher #define t1_get_netdev(rm) (rm->dev)
69f7917c00SJeff Kirsher
70f7917c00SJeff Kirsher #define MAX_NPORTS 4
71f7917c00SJeff Kirsher #define PORT_MASK ((1 << MAX_NPORTS) - 1)
72f7917c00SJeff Kirsher #define NMTUS 8
73f7917c00SJeff Kirsher #define TCB_SIZE 128
74f7917c00SJeff Kirsher
75f7917c00SJeff Kirsher #define SPEED_INVALID 0xffff
76f7917c00SJeff Kirsher #define DUPLEX_INVALID 0xff
77f7917c00SJeff Kirsher
7844770e11SJarod Wilson /* Max frame size PM3393 can handle. Includes Ethernet header and CRC. */
7944770e11SJarod Wilson #define PM3393_MAX_FRAME_SIZE 9600
8044770e11SJarod Wilson
8144770e11SJarod Wilson #define VSC7326_MAX_MTU 9600
8244770e11SJarod Wilson
83f7917c00SJeff Kirsher enum {
84f7917c00SJeff Kirsher CHBT_BOARD_N110,
85f7917c00SJeff Kirsher CHBT_BOARD_N210,
86f7917c00SJeff Kirsher CHBT_BOARD_7500,
87f7917c00SJeff Kirsher CHBT_BOARD_8000,
88f7917c00SJeff Kirsher CHBT_BOARD_CHT101,
89f7917c00SJeff Kirsher CHBT_BOARD_CHT110,
90f7917c00SJeff Kirsher CHBT_BOARD_CHT210,
91f7917c00SJeff Kirsher CHBT_BOARD_CHT204,
92f7917c00SJeff Kirsher CHBT_BOARD_CHT204V,
93f7917c00SJeff Kirsher CHBT_BOARD_CHT204E,
94f7917c00SJeff Kirsher CHBT_BOARD_CHN204,
95f7917c00SJeff Kirsher CHBT_BOARD_COUGAR,
96f7917c00SJeff Kirsher CHBT_BOARD_6800,
97f7917c00SJeff Kirsher CHBT_BOARD_SIMUL,
98f7917c00SJeff Kirsher };
99f7917c00SJeff Kirsher
100f7917c00SJeff Kirsher enum {
101f7917c00SJeff Kirsher CHBT_TERM_FPGA,
102f7917c00SJeff Kirsher CHBT_TERM_T1,
103f7917c00SJeff Kirsher CHBT_TERM_T2,
104f7917c00SJeff Kirsher CHBT_TERM_T3
105f7917c00SJeff Kirsher };
106f7917c00SJeff Kirsher
107f7917c00SJeff Kirsher enum {
108f7917c00SJeff Kirsher CHBT_MAC_CHELSIO_A,
109f7917c00SJeff Kirsher CHBT_MAC_IXF1010,
110f7917c00SJeff Kirsher CHBT_MAC_PM3393,
111f7917c00SJeff Kirsher CHBT_MAC_VSC7321,
112f7917c00SJeff Kirsher CHBT_MAC_DUMMY
113f7917c00SJeff Kirsher };
114f7917c00SJeff Kirsher
115f7917c00SJeff Kirsher enum {
116f7917c00SJeff Kirsher CHBT_PHY_88E1041,
117f7917c00SJeff Kirsher CHBT_PHY_88E1111,
118f7917c00SJeff Kirsher CHBT_PHY_88X2010,
119f7917c00SJeff Kirsher CHBT_PHY_XPAK,
120f7917c00SJeff Kirsher CHBT_PHY_MY3126,
121f7917c00SJeff Kirsher CHBT_PHY_8244,
122f7917c00SJeff Kirsher CHBT_PHY_DUMMY
123f7917c00SJeff Kirsher };
124f7917c00SJeff Kirsher
125f7917c00SJeff Kirsher enum {
126f7917c00SJeff Kirsher PAUSE_RX = 1 << 0,
127f7917c00SJeff Kirsher PAUSE_TX = 1 << 1,
128f7917c00SJeff Kirsher PAUSE_AUTONEG = 1 << 2
129f7917c00SJeff Kirsher };
130f7917c00SJeff Kirsher
131f7917c00SJeff Kirsher /* Revisions of T1 chip */
132f7917c00SJeff Kirsher enum {
133f7917c00SJeff Kirsher TERM_T1A = 0,
134f7917c00SJeff Kirsher TERM_T1B = 1,
135f7917c00SJeff Kirsher TERM_T2 = 3
136f7917c00SJeff Kirsher };
137f7917c00SJeff Kirsher
138f7917c00SJeff Kirsher struct sge_params {
139f7917c00SJeff Kirsher unsigned int cmdQ_size[2];
140f7917c00SJeff Kirsher unsigned int freelQ_size[2];
141f7917c00SJeff Kirsher unsigned int large_buf_capacity;
142f7917c00SJeff Kirsher unsigned int rx_coalesce_usecs;
143f7917c00SJeff Kirsher unsigned int last_rx_coalesce_raw;
144f7917c00SJeff Kirsher unsigned int default_rx_coalesce_usecs;
145f7917c00SJeff Kirsher unsigned int sample_interval_usecs;
146f7917c00SJeff Kirsher unsigned int coalesce_enable;
147f7917c00SJeff Kirsher unsigned int polling;
148f7917c00SJeff Kirsher };
149f7917c00SJeff Kirsher
150f7917c00SJeff Kirsher struct chelsio_pci_params {
151f7917c00SJeff Kirsher unsigned short speed;
152f7917c00SJeff Kirsher unsigned char width;
153f7917c00SJeff Kirsher unsigned char is_pcix;
154f7917c00SJeff Kirsher };
155f7917c00SJeff Kirsher
156f7917c00SJeff Kirsher struct tp_params {
157f7917c00SJeff Kirsher unsigned int pm_size;
158f7917c00SJeff Kirsher unsigned int cm_size;
159f7917c00SJeff Kirsher unsigned int pm_rx_base;
160f7917c00SJeff Kirsher unsigned int pm_tx_base;
161f7917c00SJeff Kirsher unsigned int pm_rx_pg_size;
162f7917c00SJeff Kirsher unsigned int pm_tx_pg_size;
163f7917c00SJeff Kirsher unsigned int pm_rx_num_pgs;
164f7917c00SJeff Kirsher unsigned int pm_tx_num_pgs;
165f7917c00SJeff Kirsher unsigned int rx_coalescing_size;
166f7917c00SJeff Kirsher unsigned int use_5tuple_mode;
167f7917c00SJeff Kirsher };
168f7917c00SJeff Kirsher
169f7917c00SJeff Kirsher struct mc5_params {
170f7917c00SJeff Kirsher unsigned int mode; /* selects MC5 width */
171f7917c00SJeff Kirsher unsigned int nservers; /* size of server region */
172f7917c00SJeff Kirsher unsigned int nroutes; /* size of routing region */
173f7917c00SJeff Kirsher };
174f7917c00SJeff Kirsher
175f7917c00SJeff Kirsher /* Default MC5 region sizes */
176f7917c00SJeff Kirsher #define DEFAULT_SERVER_REGION_LEN 256
177f7917c00SJeff Kirsher #define DEFAULT_RT_REGION_LEN 1024
178f7917c00SJeff Kirsher
179f7917c00SJeff Kirsher struct adapter_params {
180f7917c00SJeff Kirsher struct sge_params sge;
181f7917c00SJeff Kirsher struct mc5_params mc5;
182f7917c00SJeff Kirsher struct tp_params tp;
183f7917c00SJeff Kirsher struct chelsio_pci_params pci;
184f7917c00SJeff Kirsher
185f7917c00SJeff Kirsher const struct board_info *brd_info;
186f7917c00SJeff Kirsher
187f7917c00SJeff Kirsher unsigned short mtus[NMTUS];
188f7917c00SJeff Kirsher unsigned int nports; /* # of ethernet ports */
189f7917c00SJeff Kirsher unsigned int stats_update_period;
190f7917c00SJeff Kirsher unsigned short chip_revision;
191f7917c00SJeff Kirsher unsigned char chip_version;
192f7917c00SJeff Kirsher unsigned char is_asic;
193f7917c00SJeff Kirsher unsigned char has_msi;
194f7917c00SJeff Kirsher };
195f7917c00SJeff Kirsher
196f7917c00SJeff Kirsher struct link_config {
197f7917c00SJeff Kirsher unsigned int supported; /* link capabilities */
198f7917c00SJeff Kirsher unsigned int advertising; /* advertised capabilities */
199f7917c00SJeff Kirsher unsigned short requested_speed; /* speed user has requested */
200f7917c00SJeff Kirsher unsigned short speed; /* actual link speed */
201f7917c00SJeff Kirsher unsigned char requested_duplex; /* duplex user has requested */
202f7917c00SJeff Kirsher unsigned char duplex; /* actual link duplex */
203f7917c00SJeff Kirsher unsigned char requested_fc; /* flow control user has requested */
204f7917c00SJeff Kirsher unsigned char fc; /* actual link flow control */
205f7917c00SJeff Kirsher unsigned char autoneg; /* autonegotiating? */
206f7917c00SJeff Kirsher };
207f7917c00SJeff Kirsher
208f7917c00SJeff Kirsher struct cmac;
209f7917c00SJeff Kirsher struct cphy;
210f7917c00SJeff Kirsher
211f7917c00SJeff Kirsher struct port_info {
212f7917c00SJeff Kirsher struct net_device *dev;
213f7917c00SJeff Kirsher struct cmac *mac;
214f7917c00SJeff Kirsher struct cphy *phy;
215f7917c00SJeff Kirsher struct link_config link_config;
216f7917c00SJeff Kirsher };
217f7917c00SJeff Kirsher
218f7917c00SJeff Kirsher struct sge;
219f7917c00SJeff Kirsher struct peespi;
220f7917c00SJeff Kirsher
221f7917c00SJeff Kirsher struct adapter {
222f7917c00SJeff Kirsher u8 __iomem *regs;
223f7917c00SJeff Kirsher struct pci_dev *pdev;
224f7917c00SJeff Kirsher unsigned long registered_device_map;
225f7917c00SJeff Kirsher unsigned long open_device_map;
226f7917c00SJeff Kirsher unsigned long flags;
227f7917c00SJeff Kirsher
228f7917c00SJeff Kirsher const char *name;
229f7917c00SJeff Kirsher int msg_enable;
230f7917c00SJeff Kirsher u32 mmio_len;
231f7917c00SJeff Kirsher
232f7917c00SJeff Kirsher struct adapter_params params;
233f7917c00SJeff Kirsher
234f7917c00SJeff Kirsher /* Terminator modules. */
235f7917c00SJeff Kirsher struct sge *sge;
236f7917c00SJeff Kirsher struct peespi *espi;
237f7917c00SJeff Kirsher struct petp *tp;
238f7917c00SJeff Kirsher
239f7917c00SJeff Kirsher struct napi_struct napi;
240f7917c00SJeff Kirsher struct port_info port[MAX_NPORTS];
241f7917c00SJeff Kirsher struct delayed_work stats_update_task;
242f7917c00SJeff Kirsher struct timer_list stats_update_timer;
243f7917c00SJeff Kirsher
244f7917c00SJeff Kirsher spinlock_t tpi_lock;
245f7917c00SJeff Kirsher spinlock_t work_lock;
246f7917c00SJeff Kirsher spinlock_t mac_lock;
247f7917c00SJeff Kirsher
248f7917c00SJeff Kirsher /* guards async operations */
249f7917c00SJeff Kirsher spinlock_t async_lock ____cacheline_aligned;
250fec7fa0aSSebastian Andrzej Siewior u32 pending_thread_intr;
251f7917c00SJeff Kirsher u32 slow_intr_mask;
252f7917c00SJeff Kirsher int t1powersave;
253f7917c00SJeff Kirsher };
254f7917c00SJeff Kirsher
255f7917c00SJeff Kirsher enum { /* adapter flags */
256f7917c00SJeff Kirsher FULL_INIT_DONE = 1 << 0,
257f7917c00SJeff Kirsher };
258f7917c00SJeff Kirsher
259f7917c00SJeff Kirsher struct mdio_ops;
260f7917c00SJeff Kirsher struct gmac;
261f7917c00SJeff Kirsher struct gphy;
262f7917c00SJeff Kirsher
263f7917c00SJeff Kirsher struct board_info {
264f7917c00SJeff Kirsher unsigned char board;
265f7917c00SJeff Kirsher unsigned char port_number;
266f7917c00SJeff Kirsher unsigned long caps;
267f7917c00SJeff Kirsher unsigned char chip_term;
268f7917c00SJeff Kirsher unsigned char chip_mac;
269f7917c00SJeff Kirsher unsigned char chip_phy;
270f7917c00SJeff Kirsher unsigned int clock_core;
271f7917c00SJeff Kirsher unsigned int clock_mc3;
272f7917c00SJeff Kirsher unsigned int clock_mc4;
273f7917c00SJeff Kirsher unsigned int espi_nports;
274f7917c00SJeff Kirsher unsigned int clock_elmer0;
275f7917c00SJeff Kirsher unsigned char mdio_mdien;
276f7917c00SJeff Kirsher unsigned char mdio_mdiinv;
277f7917c00SJeff Kirsher unsigned char mdio_mdc;
278f7917c00SJeff Kirsher unsigned char mdio_phybaseaddr;
279f7917c00SJeff Kirsher const struct gmac *gmac;
280f7917c00SJeff Kirsher const struct gphy *gphy;
281f7917c00SJeff Kirsher const struct mdio_ops *mdio_ops;
282f7917c00SJeff Kirsher const char *desc;
283f7917c00SJeff Kirsher };
284f7917c00SJeff Kirsher
t1_is_asic(const adapter_t * adapter)285f7917c00SJeff Kirsher static inline int t1_is_asic(const adapter_t *adapter)
286f7917c00SJeff Kirsher {
287f7917c00SJeff Kirsher return adapter->params.is_asic;
288f7917c00SJeff Kirsher }
289f7917c00SJeff Kirsher
290f7917c00SJeff Kirsher extern const struct pci_device_id t1_pci_tbl[];
291f7917c00SJeff Kirsher
adapter_matches_type(const adapter_t * adapter,int version,int revision)292f7917c00SJeff Kirsher static inline int adapter_matches_type(const adapter_t *adapter,
293f7917c00SJeff Kirsher int version, int revision)
294f7917c00SJeff Kirsher {
295f7917c00SJeff Kirsher return adapter->params.chip_version == version &&
296f7917c00SJeff Kirsher adapter->params.chip_revision == revision;
297f7917c00SJeff Kirsher }
298f7917c00SJeff Kirsher
299f7917c00SJeff Kirsher #define t1_is_T1B(adap) adapter_matches_type(adap, CHBT_TERM_T1, TERM_T1B)
300f7917c00SJeff Kirsher #define is_T2(adap) adapter_matches_type(adap, CHBT_TERM_T2, TERM_T2)
301f7917c00SJeff Kirsher
302f7917c00SJeff Kirsher /* Returns true if an adapter supports VLAN acceleration and TSO */
vlan_tso_capable(const adapter_t * adapter)303f7917c00SJeff Kirsher static inline int vlan_tso_capable(const adapter_t *adapter)
304f7917c00SJeff Kirsher {
305f7917c00SJeff Kirsher return !t1_is_T1B(adapter);
306f7917c00SJeff Kirsher }
307f7917c00SJeff Kirsher
308f7917c00SJeff Kirsher #define for_each_port(adapter, iter) \
309f7917c00SJeff Kirsher for (iter = 0; iter < (adapter)->params.nports; ++iter)
310f7917c00SJeff Kirsher
311f7917c00SJeff Kirsher #define board_info(adapter) ((adapter)->params.brd_info)
312f7917c00SJeff Kirsher #define is_10G(adapter) (board_info(adapter)->caps & SUPPORTED_10000baseT_Full)
313f7917c00SJeff Kirsher
core_ticks_per_usec(const adapter_t * adap)314f7917c00SJeff Kirsher static inline unsigned int core_ticks_per_usec(const adapter_t *adap)
315f7917c00SJeff Kirsher {
316f7917c00SJeff Kirsher return board_info(adap)->clock_core / 1000000;
317f7917c00SJeff Kirsher }
318f7917c00SJeff Kirsher
31922018e45SJoe Perches int __t1_tpi_read(adapter_t *adapter, u32 addr, u32 *valp);
32022018e45SJoe Perches int __t1_tpi_write(adapter_t *adapter, u32 addr, u32 value);
32122018e45SJoe Perches int t1_tpi_write(adapter_t *adapter, u32 addr, u32 value);
32222018e45SJoe Perches int t1_tpi_read(adapter_t *adapter, u32 addr, u32 *value);
323f7917c00SJeff Kirsher
32422018e45SJoe Perches void t1_interrupts_enable(adapter_t *adapter);
32522018e45SJoe Perches void t1_interrupts_disable(adapter_t *adapter);
32622018e45SJoe Perches void t1_interrupts_clear(adapter_t *adapter);
32722018e45SJoe Perches int t1_elmer0_ext_intr_handler(adapter_t *adapter);
328fec7fa0aSSebastian Andrzej Siewior irqreturn_t t1_slow_intr_handler(adapter_t *adapter);
329f7917c00SJeff Kirsher
33022018e45SJoe Perches int t1_link_start(struct cphy *phy, struct cmac *mac, struct link_config *lc);
33122018e45SJoe Perches const struct board_info *t1_get_board_info(unsigned int board_id);
33222018e45SJoe Perches const struct board_info *t1_get_board_info_from_ids(unsigned int devid,
333f7917c00SJeff Kirsher unsigned short ssid);
33422018e45SJoe Perches int t1_seeprom_read(adapter_t *adapter, u32 addr, __le32 *data);
33522018e45SJoe Perches int t1_get_board_rev(adapter_t *adapter, const struct board_info *bi,
336f7917c00SJeff Kirsher struct adapter_params *p);
33722018e45SJoe Perches int t1_init_hw_modules(adapter_t *adapter);
33822018e45SJoe Perches int t1_init_sw_modules(adapter_t *adapter, const struct board_info *bi);
33922018e45SJoe Perches void t1_free_sw_modules(adapter_t *adapter);
34022018e45SJoe Perches void t1_link_changed(adapter_t *adapter, int port_id);
34122018e45SJoe Perches void t1_link_negotiated(adapter_t *adapter, int port_id, int link_stat,
342f7917c00SJeff Kirsher int speed, int duplex, int pause);
343f7917c00SJeff Kirsher #endif /* _CXGB_COMMON_H_ */
344