blob: 64a678fcb60a511e1e7d243907947312ba01a1aa [file] [log] [blame]
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07001/*
2 * Agere Systems Inc.
3 * 10/100/1000 Base-T Ethernet Driver for the ET1301 and ET131x series MACs
4 *
Alan Cox64f93032009-06-10 17:30:41 +01005 * Copyright © 2005 Agere Systems Inc.
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -07006 * All rights reserved.
7 * http://www.agere.com
8 *
9 *------------------------------------------------------------------------------
10 *
11 * et131x_adapter.h - Header which includes the private adapter structure, along
12 * with related support structures, macros, definitions, etc.
13 *
14 *------------------------------------------------------------------------------
15 *
16 * SOFTWARE LICENSE
17 *
18 * This software is provided subject to the following terms and conditions,
19 * which you should read carefully before using the software. Using this
20 * software indicates your acceptance of these terms and conditions. If you do
21 * not agree with these terms and conditions, do not use the software.
22 *
Alan Cox64f93032009-06-10 17:30:41 +010023 * Copyright © 2005 Agere Systems Inc.
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -070024 * All rights reserved.
25 *
26 * Redistribution and use in source or binary forms, with or without
27 * modifications, are permitted provided that the following conditions are met:
28 *
29 * . Redistributions of source code must retain the above copyright notice, this
30 * list of conditions and the following Disclaimer as comments in the code as
31 * well as in the documentation and/or other materials provided with the
32 * distribution.
33 *
34 * . Redistributions in binary form must reproduce the above copyright notice,
35 * this list of conditions and the following Disclaimer in the documentation
36 * and/or other materials provided with the distribution.
37 *
38 * . Neither the name of Agere Systems Inc. nor the names of the contributors
39 * may be used to endorse or promote products derived from this software
40 * without specific prior written permission.
41 *
42 * Disclaimer
43 *
Alan Cox64f93032009-06-10 17:30:41 +010044 * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -070045 * INCLUDING, BUT NOT LIMITED TO, INFRINGEMENT AND THE IMPLIED WARRANTIES OF
46 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. ANY
47 * USE, MODIFICATION OR DISTRIBUTION OF THIS SOFTWARE IS SOLELY AT THE USERS OWN
48 * RISK. IN NO EVENT SHALL AGERE SYSTEMS INC. OR CONTRIBUTORS BE LIABLE FOR ANY
49 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
50 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
51 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
52 * ON ANY THEORY OF LIABILITY, INCLUDING, BUT NOT LIMITED TO, CONTRACT, STRICT
53 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
54 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
55 * DAMAGE.
56 *
57 */
58
59#ifndef __ET131X_ADAPTER_H__
60#define __ET131X_ADAPTER_H__
61
62#include "et1310_address_map.h"
63#include "et1310_tx.h"
64#include "et1310_rx.h"
65
66/*
67 * Do not change these values: if changed, then change also in respective
68 * TXdma and Rxdma engines
69 */
Alan Cox64f93032009-06-10 17:30:41 +010070#define NUM_DESC_PER_RING_TX 512 /* TX Do not change these values */
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -070071#define NUM_TCB 64
72
73/*
74 * These values are all superseded by registry entries to facilitate tuning.
75 * Once the desired performance has been achieved, the optimal registry values
76 * should be re-populated to these #defines:
77 */
78#define NUM_TRAFFIC_CLASSES 1
79
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -070080#define TX_ERROR_PERIOD 1000
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -070081
82#define LO_MARK_PERCENT_FOR_PSR 15
83#define LO_MARK_PERCENT_FOR_RX 15
84
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -070085/* RFD (Receive Frame Descriptor) */
86typedef struct _MP_RFD {
87 struct list_head list_node;
88 struct sk_buff *Packet;
Alan Cox64f93032009-06-10 17:30:41 +010089 u32 PacketSize; /* total size of receive frame */
Alan Cox9fa81092009-08-27 11:00:36 +010090 u16 bufferindex;
91 u8 ringindex;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -070092} MP_RFD, *PMP_RFD;
93
94/* Enum for Flow Control */
95typedef enum _eflow_control_t {
96 Both = 0,
97 TxOnly = 1,
98 RxOnly = 2,
99 None = 3
100} eFLOW_CONTROL_t, *PeFLOW_CONTROL_t;
101
102/* Struct to define some device statistics */
103typedef struct _ce_stats_t {
104 /* Link Input/Output stats */
Alan Cox64f93032009-06-10 17:30:41 +0100105 uint64_t ipackets; /* # of in packets */
106 uint64_t opackets; /* # of out packets */
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700107
108 /* MIB II variables
109 *
110 * NOTE: atomic_t types are only guaranteed to store 24-bits; if we
111 * MUST have 32, then we'll need another way to perform atomic
112 * operations
113 */
Alan Cox64f93032009-06-10 17:30:41 +0100114 u32 unircv; /* # multicast packets received */
115 atomic_t unixmt; /* # multicast packets for Tx */
116 u32 multircv; /* # multicast packets received */
117 atomic_t multixmt; /* # multicast packets for Tx */
118 u32 brdcstrcv; /* # broadcast packets received */
119 atomic_t brdcstxmt; /* # broadcast packets for Tx */
120 u32 norcvbuf; /* # Rx packets discarded */
121 u32 noxmtbuf; /* # Tx packets discarded */
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700122
123 /* Transciever state informations. */
124 u8 xcvr_addr;
125 u32 xcvr_id;
126
127 /* Tx Statistics. */
Alan Cox64f93032009-06-10 17:30:41 +0100128 u32 tx_uflo; /* Tx Underruns */
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700129
130 u32 collisions;
131 u32 excessive_collisions;
132 u32 first_collision;
133 u32 late_collisions;
134 u32 max_pkt_error;
135 u32 tx_deferred;
136
137 /* Rx Statistics. */
André Goddard Rosabbc9a992009-11-14 13:09:06 -0200138 u32 rx_ov_flow; /* Rx Overflow */
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700139
140 u32 length_err;
141 u32 alignment_err;
142 u32 crc_err;
143 u32 code_violations;
144 u32 other_errors;
145
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700146 u32 SynchrounousIterations;
Alan Cox2211b732009-08-27 11:02:12 +0100147 u32 InterruptStatus;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700148} CE_STATS_t, *PCE_STATS_t;
149
Alan Cox69ea5fc2010-01-18 15:34:24 +0000150typedef struct _MP_POWER_MGMT {
151 /* variable putting the phy into coma mode when boot up with no cable
152 * plugged in after 5 seconds
153 */
154 u8 TransPhyComaModeOnBoot;
155
156 /* Next two used to save power information at power down. This
157 * information will be used during power up to set up parts of Power
158 * Management in JAGCore
159 */
160 u16 PowerDownSpeed;
161 u8 PowerDownDuplex;
162} MP_POWER_MGMT, *PMP_POWER_MGMT;
163
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700164/* The private adapter structure */
165struct et131x_adapter {
166 struct net_device *netdev;
167 struct pci_dev *pdev;
168
169 struct work_struct task;
170
171 /* Flags that indicate current state of the adapter */
172 u32 Flags;
173 u32 HwErrCount;
174
175 /* Configuration */
176 u8 PermanentAddress[ETH_ALEN];
177 u8 CurrentAddress[ETH_ALEN];
Alan Cox9fa81092009-08-27 11:00:36 +0100178 bool has_eeprom;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700179 u8 eepromData[2];
180
181 /* Spinlocks */
182 spinlock_t Lock;
183
184 spinlock_t TCBSendQLock;
185 spinlock_t TCBReadyQLock;
186 spinlock_t SendHWLock;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700187
188 spinlock_t RcvLock;
189 spinlock_t RcvPendLock;
190 spinlock_t FbrLock;
191
192 spinlock_t PHYLock;
193
194 /* Packet Filter and look ahead size */
195 u32 PacketFilter;
Alan Cox9fa81092009-08-27 11:00:36 +0100196 u32 linkspeed;
197 u32 duplex_mode;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700198
199 /* multicast list */
200 u32 MCAddressCount;
201 u8 MCList[NIC_MAX_MCAST_LIST][ETH_ALEN];
202
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700203 /* Pointer to the device's PCI register space */
Alan Coxf3f415a2009-08-27 10:59:30 +0100204 ADDRESS_MAP_t __iomem *regs;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700205
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700206 /* Registry parameters */
Alan Cox64f93032009-06-10 17:30:41 +0100207 u8 SpeedDuplex; /* speed/duplex */
208 eFLOW_CONTROL_t RegistryFlowControl; /* for 802.3x flow control */
Alan Cox64f93032009-06-10 17:30:41 +0100209 u8 RegistryPhyComa; /* Phy Coma mode enable/disable */
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700210
Alan Cox64f93032009-06-10 17:30:41 +0100211 u32 RegistryRxMemEnd; /* Size of internal rx memory */
Alan Cox64f93032009-06-10 17:30:41 +0100212 u32 RegistryJumboPacket; /* Max supported ethernet packet size */
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700213
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700214
215 /* Derived from the registry: */
Alan Cox64f93032009-06-10 17:30:41 +0100216 u8 AiForceDpx; /* duplex setting */
217 u16 AiForceSpeed; /* 'Speed', user over-ride of line speed */
218 eFLOW_CONTROL_t FlowControl; /* flow control validated by the far-end */
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700219 enum {
220 NETIF_STATUS_INVALID = 0,
221 NETIF_STATUS_MEDIA_CONNECT,
222 NETIF_STATUS_MEDIA_DISCONNECT,
223 NETIF_STATUS_MAX
224 } MediaState;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700225
226 /* Minimize init-time */
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700227 struct timer_list ErrorTimer;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700228 MP_POWER_MGMT PoMgmt;
Alan Cox2211b732009-08-27 11:02:12 +0100229 u32 CachedMaskValue;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700230
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700231 /* Xcvr status at last poll */
232 MI_BMSR_t Bmsr;
233
234 /* Tx Memory Variables */
Alan Coxb711b2e2009-10-06 15:48:33 +0100235 struct tx_ring tx_ring;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700236
237 /* Rx Memory Variables */
Alan Cox8f127852010-01-18 15:34:07 +0000238 struct rx_ring rx_ring;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700239
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700240 /* Loopback specifics */
Alan Cox64f93032009-06-10 17:30:41 +0100241 u8 ReplicaPhyLoopbk; /* Replica Enable */
242 u8 ReplicaPhyLoopbkPF; /* Replica Enable Pass/Fail */
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700243
244 /* Stats */
245 CE_STATS_t Stats;
246
247 struct net_device_stats net_stats;
248 struct net_device_stats net_stats_prev;
249};
250
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700251#endif /* __ET131X_ADAPTER_H__ */