blob: ab047f2ff72cd10e1a3a17e34803f4e8f04b1893 [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_netdev.c - Routines and data required by all Linux network devices.
12 *
13 *------------------------------------------------------------------------------
14 *
15 * SOFTWARE LICENSE
16 *
17 * This software is provided subject to the following terms and conditions,
18 * which you should read carefully before using the software. Using this
19 * software indicates your acceptance of these terms and conditions. If you do
20 * not agree with these terms and conditions, do not use the software.
21 *
Alan Cox64f93032009-06-10 17:30:41 +010022 * Copyright © 2005 Agere Systems Inc.
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -070023 * All rights reserved.
24 *
25 * Redistribution and use in source or binary forms, with or without
26 * modifications, are permitted provided that the following conditions are met:
27 *
28 * . Redistributions of source code must retain the above copyright notice, this
29 * list of conditions and the following Disclaimer as comments in the code as
30 * well as in the documentation and/or other materials provided with the
31 * distribution.
32 *
33 * . Redistributions in binary form must reproduce the above copyright notice,
34 * this list of conditions and the following Disclaimer in the documentation
35 * and/or other materials provided with the distribution.
36 *
37 * . Neither the name of Agere Systems Inc. nor the names of the contributors
38 * may be used to endorse or promote products derived from this software
39 * without specific prior written permission.
40 *
41 * Disclaimer
42 *
Alan Cox64f93032009-06-10 17:30:41 +010043 * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -070044 * INCLUDING, BUT NOT LIMITED TO, INFRINGEMENT AND THE IMPLIED WARRANTIES OF
45 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. ANY
46 * USE, MODIFICATION OR DISTRIBUTION OF THIS SOFTWARE IS SOLELY AT THE USERS OWN
47 * RISK. IN NO EVENT SHALL AGERE SYSTEMS INC. OR CONTRIBUTORS BE LIABLE FOR ANY
48 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
49 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
50 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
51 * ON ANY THEORY OF LIABILITY, INCLUDING, BUT NOT LIMITED TO, CONTRACT, STRICT
52 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
53 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
54 * DAMAGE.
55 *
56 */
57
58#include "et131x_version.h"
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -070059#include "et131x_defs.h"
60
61#include <linux/init.h>
62#include <linux/module.h>
63#include <linux/types.h>
64#include <linux/kernel.h>
65
66#include <linux/sched.h>
67#include <linux/ptrace.h>
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -070068#include <linux/ctype.h>
69#include <linux/string.h>
70#include <linux/timer.h>
71#include <linux/interrupt.h>
72#include <linux/in.h>
73#include <linux/delay.h>
Alan Cox64f93032009-06-10 17:30:41 +010074#include <linux/io.h>
75#include <linux/bitops.h>
Alan Cox15700032009-08-27 11:03:09 +010076#include <linux/pci.h>
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -070077#include <asm/system.h>
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -070078
79#include <linux/mii.h>
80#include <linux/netdevice.h>
81#include <linux/etherdevice.h>
82#include <linux/skbuff.h>
83#include <linux/if_arp.h>
84#include <linux/ioport.h>
85
86#include "et1310_phy.h"
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -070087#include "et1310_tx.h"
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -070088#include "et131x_adapter.h"
Alan Cox69ea5fc2010-01-18 15:34:24 +000089#include "et131x.h"
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -070090
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -070091struct net_device_stats *et131x_stats(struct net_device *netdev);
92int et131x_open(struct net_device *netdev);
93int et131x_close(struct net_device *netdev);
94int et131x_ioctl(struct net_device *netdev, struct ifreq *reqbuf, int cmd);
95void et131x_multicast(struct net_device *netdev);
96int et131x_tx(struct sk_buff *skb, struct net_device *netdev);
97void et131x_tx_timeout(struct net_device *netdev);
98int et131x_change_mtu(struct net_device *netdev, int new_mtu);
99int et131x_set_mac_addr(struct net_device *netdev, void *new_mac);
100void et131x_vlan_rx_register(struct net_device *netdev, struct vlan_group *grp);
101void et131x_vlan_rx_add_vid(struct net_device *netdev, uint16_t vid);
102void et131x_vlan_rx_kill_vid(struct net_device *netdev, uint16_t vid);
103
Alexander Beregalovfa5a6022009-03-29 19:25:33 +0400104static const struct net_device_ops et131x_netdev_ops = {
105 .ndo_open = et131x_open,
106 .ndo_stop = et131x_close,
107 .ndo_start_xmit = et131x_tx,
108 .ndo_set_multicast_list = et131x_multicast,
109 .ndo_tx_timeout = et131x_tx_timeout,
110 .ndo_change_mtu = et131x_change_mtu,
111 .ndo_set_mac_address = et131x_set_mac_addr,
112 .ndo_validate_addr = eth_validate_addr,
113 .ndo_get_stats = et131x_stats,
114 .ndo_do_ioctl = et131x_ioctl,
115};
116
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700117/**
118 * et131x_device_alloc
119 *
120 * Returns pointer to the allocated and initialized net_device struct for
121 * this device.
122 *
123 * Create instances of net_device and wl_private for the new adapter and
124 * register the device's entry points in the net_device structure.
125 */
126struct net_device *et131x_device_alloc(void)
127{
128 struct net_device *netdev;
129
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700130 /* Alloc net_device and adapter structs */
131 netdev = alloc_etherdev(sizeof(struct et131x_adapter));
132
133 if (netdev == NULL) {
Alan Cox15700032009-08-27 11:03:09 +0100134 printk(KERN_ERR "et131x: Alloc of net_device struct failed\n");
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700135 return NULL;
136 }
137
138 /* Setup the function registration table (and other data) for a
139 * net_device
140 */
Alan Cox64f93032009-06-10 17:30:41 +0100141 /* netdev->init = &et131x_init; */
142 /* netdev->set_config = &et131x_config; */
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700143 netdev->watchdog_timeo = ET131X_TX_TIMEOUT;
Alexander Beregalovfa5a6022009-03-29 19:25:33 +0400144 netdev->netdev_ops = &et131x_netdev_ops;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700145
Alan Cox64f93032009-06-10 17:30:41 +0100146 /* netdev->ethtool_ops = &et131x_ethtool_ops; */
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700147
Alan Cox64f93032009-06-10 17:30:41 +0100148 /* Poll? */
149 /* netdev->poll = &et131x_poll; */
150 /* netdev->poll_controller = &et131x_poll_controller; */
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700151 return netdev;
152}
153
154/**
155 * et131x_stats - Return the current device statistics.
156 * @netdev: device whose stats are being queried
157 *
158 * Returns 0 on success, errno on failure (as defined in errno.h)
159 */
160struct net_device_stats *et131x_stats(struct net_device *netdev)
161{
162 struct et131x_adapter *adapter = netdev_priv(netdev);
163 struct net_device_stats *stats = &adapter->net_stats;
164 CE_STATS_t *devstat = &adapter->Stats;
165
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700166 stats->rx_packets = devstat->ipackets;
167 stats->tx_packets = devstat->opackets;
168 stats->rx_errors = devstat->length_err + devstat->alignment_err +
169 devstat->crc_err + devstat->code_violations + devstat->other_errors;
170 stats->tx_errors = devstat->max_pkt_error;
171 stats->multicast = devstat->multircv;
172 stats->collisions = devstat->collisions;
173
174 stats->rx_length_errors = devstat->length_err;
175 stats->rx_over_errors = devstat->rx_ov_flow;
176 stats->rx_crc_errors = devstat->crc_err;
177
Alan Cox64f93032009-06-10 17:30:41 +0100178 /* NOTE: These stats don't have corresponding values in CE_STATS,
179 * so we're going to have to update these directly from within the
180 * TX/RX code
181 */
182 /* stats->rx_bytes = 20; devstat->; */
183 /* stats->tx_bytes = 20; devstat->; */
184 /* stats->rx_dropped = devstat->; */
185 /* stats->tx_dropped = devstat->; */
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700186
Alan Cox64f93032009-06-10 17:30:41 +0100187 /* NOTE: Not used, can't find analogous statistics */
188 /* stats->rx_frame_errors = devstat->; */
189 /* stats->rx_fifo_errors = devstat->; */
190 /* stats->rx_missed_errors = devstat->; */
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700191
Alan Cox64f93032009-06-10 17:30:41 +0100192 /* stats->tx_aborted_errors = devstat->; */
193 /* stats->tx_carrier_errors = devstat->; */
194 /* stats->tx_fifo_errors = devstat->; */
195 /* stats->tx_heartbeat_errors = devstat->; */
196 /* stats->tx_window_errors = devstat->; */
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700197 return stats;
198}
199
200/**
201 * et131x_open - Open the device for use.
202 * @netdev: device to be opened
203 *
204 * Returns 0 on success, errno on failure (as defined in errno.h)
205 */
206int et131x_open(struct net_device *netdev)
207{
208 int result = 0;
209 struct et131x_adapter *adapter = netdev_priv(netdev);
210
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700211 /* Start the timer to track NIC errors */
212 add_timer(&adapter->ErrorTimer);
213
Alan Cox15700032009-08-27 11:03:09 +0100214 /* Register our IRQ */
215 result = request_irq(netdev->irq, et131x_isr, IRQF_SHARED,
216 netdev->name, netdev);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700217 if (result) {
Alan Cox15700032009-08-27 11:03:09 +0100218 dev_err(&adapter->pdev->dev, "c ould not register IRQ %d\n",
219 netdev->irq);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700220 return result;
221 }
222
223 /* Enable the Tx and Rx DMA engines (if not already enabled) */
224 et131x_rx_dma_enable(adapter);
225 et131x_tx_dma_enable(adapter);
226
227 /* Enable device interrupts */
228 et131x_enable_interrupts(adapter);
229
Alan Coxf6b35d62009-08-27 11:02:05 +0100230 adapter->Flags |= fMP_ADAPTER_INTERRUPT_IN_USE;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700231
232 /* We're ready to move some data, so start the queue */
233 netif_start_queue(netdev);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700234 return result;
235}
236
237/**
238 * et131x_close - Close the device
239 * @netdev: device to be closed
240 *
241 * Returns 0 on success, errno on failure (as defined in errno.h)
242 */
243int et131x_close(struct net_device *netdev)
244{
245 struct et131x_adapter *adapter = netdev_priv(netdev);
246
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700247 /* First thing is to stop the queue */
248 netif_stop_queue(netdev);
249
250 /* Stop the Tx and Rx DMA engines */
251 et131x_rx_dma_disable(adapter);
252 et131x_tx_dma_disable(adapter);
253
254 /* Disable device interrupts */
255 et131x_disable_interrupts(adapter);
256
257 /* Deregistering ISR */
Alan Coxf6b35d62009-08-27 11:02:05 +0100258 adapter->Flags &= ~fMP_ADAPTER_INTERRUPT_IN_USE;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700259 free_irq(netdev->irq, netdev);
260
261 /* Stop the error timer */
262 del_timer_sync(&adapter->ErrorTimer);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700263 return 0;
264}
265
266/**
267 * et131x_ioctl_mii - The function which handles MII IOCTLs
268 * @netdev: device on which the query is being made
269 * @reqbuf: the request-specific data buffer
270 * @cmd: the command request code
271 *
272 * Returns 0 on success, errno on failure (as defined in errno.h)
273 */
274int et131x_ioctl_mii(struct net_device *netdev, struct ifreq *reqbuf, int cmd)
275{
276 int status = 0;
Alan Cox25ad00b2009-08-19 18:21:44 +0100277 struct et131x_adapter *etdev = netdev_priv(netdev);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700278 struct mii_ioctl_data *data = if_mii(reqbuf);
279
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700280 switch (cmd) {
281 case SIOCGMIIPHY:
Alan Cox25ad00b2009-08-19 18:21:44 +0100282 data->phy_id = etdev->Stats.xcvr_addr;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700283 break;
284
285 case SIOCGMIIREG:
Alan Cox15700032009-08-27 11:03:09 +0100286 if (!capable(CAP_NET_ADMIN))
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700287 status = -EPERM;
Alan Cox15700032009-08-27 11:03:09 +0100288 else
Alan Cox25ad00b2009-08-19 18:21:44 +0100289 status = MiRead(etdev,
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700290 data->reg_num, &data->val_out);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700291 break;
292
293 case SIOCSMIIREG:
Alan Cox15700032009-08-27 11:03:09 +0100294 if (!capable(CAP_NET_ADMIN))
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700295 status = -EPERM;
Alan Cox15700032009-08-27 11:03:09 +0100296 else
Alan Cox25ad00b2009-08-19 18:21:44 +0100297 status = MiWrite(etdev, data->reg_num,
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700298 data->val_in);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700299 break;
300
301 default:
302 status = -EOPNOTSUPP;
303 }
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700304 return status;
305}
306
307/**
308 * et131x_ioctl - The I/O Control handler for the driver
309 * @netdev: device on which the control request is being made
310 * @reqbuf: a pointer to the IOCTL request buffer
311 * @cmd: the IOCTL command code
312 *
313 * Returns 0 on success, errno on failure (as defined in errno.h)
314 */
315int et131x_ioctl(struct net_device *netdev, struct ifreq *reqbuf, int cmd)
316{
317 int status = 0;
318
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700319 switch (cmd) {
320 case SIOCGMIIPHY:
321 case SIOCGMIIREG:
322 case SIOCSMIIREG:
323 status = et131x_ioctl_mii(netdev, reqbuf, cmd);
324 break;
325
326 default:
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700327 status = -EOPNOTSUPP;
328 }
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700329 return status;
330}
331
332/**
333 * et131x_set_packet_filter - Configures the Rx Packet filtering on the device
334 * @adapter: pointer to our private adapter structure
335 *
Alan Coxb186f332010-01-18 15:34:57 +0000336 * FIXME: lot of dups with MAC code
337 *
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700338 * Returns 0 on success, errno on failure
339 */
340int et131x_set_packet_filter(struct et131x_adapter *adapter)
341{
342 int status = 0;
343 uint32_t filter = adapter->PacketFilter;
Alan Coxbd03d0d2010-01-18 15:35:30 +0000344 u32 ctrl;
Alan Coxb186f332010-01-18 15:34:57 +0000345 u32 pf_ctrl;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700346
Alan Coxbd03d0d2010-01-18 15:35:30 +0000347 ctrl = readl(&adapter->regs->rxmac.ctrl);
Alan Coxb186f332010-01-18 15:34:57 +0000348 pf_ctrl = readl(&adapter->regs->rxmac.pf_ctrl);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700349
350 /* Default to disabled packet filtering. Enable it in the individual
351 * case statements that require the device to filter something
352 */
Alan Coxbd03d0d2010-01-18 15:35:30 +0000353 ctrl |= 0x04;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700354
355 /* Set us to be in promiscuous mode so we receive everything, this
356 * is also true when we get a packet filter of 0
357 */
Alan Coxb186f332010-01-18 15:34:57 +0000358 if ((filter & ET131X_PACKET_TYPE_PROMISCUOUS) || filter == 0)
359 pf_ctrl &= ~7; /* Clear filter bits */
360 else {
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700361 /*
362 * Set us up with Multicast packet filtering. Three cases are
363 * possible - (1) we have a multi-cast list, (2) we receive ALL
364 * multicast entries or (3) we receive none.
365 */
Alan Coxb186f332010-01-18 15:34:57 +0000366 if (filter & ET131X_PACKET_TYPE_ALL_MULTICAST)
367 pf_ctrl &= ~2; /* Multicast filter bit */
368 else {
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700369 SetupDeviceForMulticast(adapter);
Alan Coxb186f332010-01-18 15:34:57 +0000370 pf_ctrl |= 2;
Alan Coxbd03d0d2010-01-18 15:35:30 +0000371 ctrl &= ~0x04;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700372 }
373
374 /* Set us up with Unicast packet filtering */
375 if (filter & ET131X_PACKET_TYPE_DIRECTED) {
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700376 SetupDeviceForUnicast(adapter);
Alan Coxb186f332010-01-18 15:34:57 +0000377 pf_ctrl |= 4;
Alan Coxbd03d0d2010-01-18 15:35:30 +0000378 ctrl &= ~0x04;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700379 }
380
381 /* Set us up with Broadcast packet filtering */
382 if (filter & ET131X_PACKET_TYPE_BROADCAST) {
Alan Coxb186f332010-01-18 15:34:57 +0000383 pf_ctrl |= 1; /* Broadcast filter bit */
Alan Coxbd03d0d2010-01-18 15:35:30 +0000384 ctrl &= ~0x04;
Alan Coxb186f332010-01-18 15:34:57 +0000385 } else
386 pf_ctrl &= ~1;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700387
388 /* Setup the receive mac configuration registers - Packet
389 * Filter control + the enable / disable for packet filter
390 * in the control reg.
391 */
Alan Coxb186f332010-01-18 15:34:57 +0000392 writel(pf_ctrl, &adapter->regs->rxmac.pf_ctrl);
Alan Coxbd03d0d2010-01-18 15:35:30 +0000393 writel(ctrl, &adapter->regs->rxmac.ctrl);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700394 }
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700395 return status;
396}
397
398/**
399 * et131x_multicast - The handler to configure multicasting on the interface
400 * @netdev: a pointer to a net_device struct representing the device
401 */
402void et131x_multicast(struct net_device *netdev)
403{
404 struct et131x_adapter *adapter = netdev_priv(netdev);
405 uint32_t PacketFilter = 0;
Alan Cox37628602009-08-19 18:21:50 +0100406 unsigned long flags;
Jiri Pirkod5907942010-02-18 05:10:14 +0000407 struct dev_mc_list *mclist;
408 int i;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700409
Alan Cox37628602009-08-19 18:21:50 +0100410 spin_lock_irqsave(&adapter->Lock, flags);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700411
412 /* Before we modify the platform-independent filter flags, store them
413 * locally. This allows us to determine if anything's changed and if
414 * we even need to bother the hardware
415 */
416 PacketFilter = adapter->PacketFilter;
417
418 /* Clear the 'multicast' flag locally; becuase we only have a single
419 * flag to check multicast, and multiple multicast addresses can be
420 * set, this is the easiest way to determine if more than one
421 * multicast address is being set.
422 */
423 PacketFilter &= ~ET131X_PACKET_TYPE_MULTICAST;
424
425 /* Check the net_device flags and set the device independent flags
426 * accordingly
427 */
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700428
429 if (netdev->flags & IFF_PROMISC) {
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700430 adapter->PacketFilter |= ET131X_PACKET_TYPE_PROMISCUOUS;
431 } else {
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700432 adapter->PacketFilter &= ~ET131X_PACKET_TYPE_PROMISCUOUS;
433 }
434
435 if (netdev->flags & IFF_ALLMULTI) {
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700436 adapter->PacketFilter |= ET131X_PACKET_TYPE_ALL_MULTICAST;
437 }
438
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000439 if (netdev_mc_count(netdev) > NIC_MAX_MCAST_LIST) {
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700440 adapter->PacketFilter |= ET131X_PACKET_TYPE_ALL_MULTICAST;
441 }
442
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000443 if (netdev_mc_count(netdev) < 1) {
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700444 adapter->PacketFilter &= ~ET131X_PACKET_TYPE_ALL_MULTICAST;
445 adapter->PacketFilter &= ~ET131X_PACKET_TYPE_MULTICAST;
446 } else {
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700447 adapter->PacketFilter |= ET131X_PACKET_TYPE_MULTICAST;
448 }
449
450 /* Set values in the private adapter struct */
Jiri Pirkod5907942010-02-18 05:10:14 +0000451 i = 0;
452 netdev_for_each_mc_addr(mclist, netdev) {
453 if (i == NIC_MAX_MCAST_LIST)
454 break;
455 memcpy(adapter->MCList[i++], mclist->dmi_addr, ETH_ALEN);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700456 }
Jiri Pirkod5907942010-02-18 05:10:14 +0000457 adapter->MCAddressCount = i;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700458
459 /* Are the new flags different from the previous ones? If not, then no
460 * action is required
461 *
462 * NOTE - This block will always update the MCList with the hardware,
463 * even if the addresses aren't the same.
464 */
465 if (PacketFilter != adapter->PacketFilter) {
466 /* Call the device's filter function */
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700467 et131x_set_packet_filter(adapter);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700468 }
Alan Cox37628602009-08-19 18:21:50 +0100469 spin_unlock_irqrestore(&adapter->Lock, flags);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700470}
471
472/**
473 * et131x_tx - The handler to tx a packet on the device
474 * @skb: data to be Tx'd
475 * @netdev: device on which data is to be Tx'd
476 *
477 * Returns 0 on success, errno on failure (as defined in errno.h)
478 */
479int et131x_tx(struct sk_buff *skb, struct net_device *netdev)
480{
481 int status = 0;
482
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700483 /* Save the timestamp for the TX timeout watchdog */
484 netdev->trans_start = jiffies;
485
486 /* Call the device-specific data Tx routine */
487 status = et131x_send_packets(skb, netdev);
488
489 /* Check status and manage the netif queue if necessary */
490 if (status != 0) {
491 if (status == -ENOMEM) {
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700492 /* Put the queue to sleep until resources are
493 * available
494 */
495 netif_stop_queue(netdev);
Patrick McHardy5b548142009-06-12 06:22:29 +0000496 status = NETDEV_TX_BUSY;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700497 } else {
Patrick McHardy5b548142009-06-12 06:22:29 +0000498 status = NETDEV_TX_OK;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700499 }
500 }
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700501 return status;
502}
503
504/**
505 * et131x_tx_timeout - Timeout handler
506 * @netdev: a pointer to a net_device struct representing the device
507 *
508 * The handler called when a Tx request times out. The timeout period is
509 * specified by the 'tx_timeo" element in the net_device structure (see
510 * et131x_alloc_device() to see how this value is set).
511 */
512void et131x_tx_timeout(struct net_device *netdev)
513{
Alan Cox25ad00b2009-08-19 18:21:44 +0100514 struct et131x_adapter *etdev = netdev_priv(netdev);
Alan Coxb711b2e2009-10-06 15:48:33 +0100515 struct tcb *tcb;
Alan Cox37628602009-08-19 18:21:50 +0100516 unsigned long flags;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700517
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700518 /* Just skip this part if the adapter is doing link detection */
Alan Cox15700032009-08-27 11:03:09 +0100519 if (etdev->Flags & fMP_ADAPTER_LINK_DETECTION)
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700520 return;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700521
522 /* Any nonrecoverable hardware error?
523 * Checks adapter->flags for any failure in phy reading
524 */
Alan Cox15700032009-08-27 11:03:09 +0100525 if (etdev->Flags & fMP_ADAPTER_NON_RECOVER_ERROR)
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700526 return;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700527
528 /* Hardware failure? */
Alan Coxf6b35d62009-08-27 11:02:05 +0100529 if (etdev->Flags & fMP_ADAPTER_HARDWARE_ERROR) {
Alan Cox15700032009-08-27 11:03:09 +0100530 dev_err(&etdev->pdev->dev, "hardware error - reset\n");
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700531 return;
532 }
533
534 /* Is send stuck? */
Alan Cox37628602009-08-19 18:21:50 +0100535 spin_lock_irqsave(&etdev->TCBSendQLock, flags);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700536
Alan Coxc78732a2009-10-06 15:49:45 +0100537 tcb = etdev->tx_ring.send_head;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700538
Alan Coxb711b2e2009-10-06 15:48:33 +0100539 if (tcb != NULL) {
Alan Coxc78732a2009-10-06 15:49:45 +0100540 tcb->count++;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700541
Alan Coxc78732a2009-10-06 15:49:45 +0100542 if (tcb->count > NIC_SEND_HANG_THRESHOLD) {
Alan Cox25ad00b2009-08-19 18:21:44 +0100543 spin_unlock_irqrestore(&etdev->TCBSendQLock,
Alan Cox37628602009-08-19 18:21:50 +0100544 flags);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700545
Alan Cox15700032009-08-27 11:03:09 +0100546 dev_warn(&etdev->pdev->dev,
Alan Coxb711b2e2009-10-06 15:48:33 +0100547 "Send stuck - reset. tcb->WrIndex %x, Flags 0x%08x\n",
Alan Coxc78732a2009-10-06 15:49:45 +0100548 tcb->index,
549 tcb->flags);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700550
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700551 et131x_close(netdev);
552 et131x_open(netdev);
553
554 return;
555 }
556 }
557
Alan Cox37628602009-08-19 18:21:50 +0100558 spin_unlock_irqrestore(&etdev->TCBSendQLock, flags);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700559}
560
561/**
562 * et131x_change_mtu - The handler called to change the MTU for the device
563 * @netdev: device whose MTU is to be changed
564 * @new_mtu: the desired MTU
565 *
566 * Returns 0 on success, errno on failure (as defined in errno.h)
567 */
568int et131x_change_mtu(struct net_device *netdev, int new_mtu)
569{
570 int result = 0;
571 struct et131x_adapter *adapter = netdev_priv(netdev);
572
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700573 /* Make sure the requested MTU is valid */
Alan Cox15700032009-08-27 11:03:09 +0100574 if (new_mtu < 64 || new_mtu > 9216)
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700575 return -EINVAL;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700576
577 /* Stop the netif queue */
578 netif_stop_queue(netdev);
579
580 /* Stop the Tx and Rx DMA engines */
581 et131x_rx_dma_disable(adapter);
582 et131x_tx_dma_disable(adapter);
583
584 /* Disable device interrupts */
585 et131x_disable_interrupts(adapter);
586 et131x_handle_send_interrupt(adapter);
587 et131x_handle_recv_interrupt(adapter);
588
589 /* Set the new MTU */
590 netdev->mtu = new_mtu;
591
592 /* Free Rx DMA memory */
593 et131x_adapter_memory_free(adapter);
594
595 /* Set the config parameter for Jumbo Packet support */
596 adapter->RegistryJumboPacket = new_mtu + 14;
597 et131x_soft_reset(adapter);
598
599 /* Alloc and init Rx DMA memory */
600 result = et131x_adapter_memory_alloc(adapter);
601 if (result != 0) {
Alan Cox15700032009-08-27 11:03:09 +0100602 dev_warn(&adapter->pdev->dev,
Alan Cox64f93032009-06-10 17:30:41 +0100603 "Change MTU failed; couldn't re-alloc DMA memory\n");
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700604 return result;
605 }
606
607 et131x_init_send(adapter);
608
Alan Coxc431e3c2009-10-06 15:47:41 +0100609 et131x_hwaddr_init(adapter);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700610 memcpy(netdev->dev_addr, adapter->CurrentAddress, ETH_ALEN);
611
612 /* Init the device with the new settings */
613 et131x_adapter_setup(adapter);
614
615 /* Enable interrupts */
Alan Coxf6b35d62009-08-27 11:02:05 +0100616 if (adapter->Flags & fMP_ADAPTER_INTERRUPT_IN_USE)
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700617 et131x_enable_interrupts(adapter);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700618
619 /* Restart the Tx and Rx DMA engines */
620 et131x_rx_dma_enable(adapter);
621 et131x_tx_dma_enable(adapter);
622
623 /* Restart the netif queue */
624 netif_wake_queue(netdev);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700625 return result;
626}
627
628/**
629 * et131x_set_mac_addr - handler to change the MAC address for the device
630 * @netdev: device whose MAC is to be changed
631 * @new_mac: the desired MAC address
632 *
633 * Returns 0 on success, errno on failure (as defined in errno.h)
634 *
635 * IMPLEMENTED BY : blux http://berndlux.de 22.01.2007 21:14
636 */
637int et131x_set_mac_addr(struct net_device *netdev, void *new_mac)
638{
639 int result = 0;
640 struct et131x_adapter *adapter = netdev_priv(netdev);
641 struct sockaddr *address = new_mac;
642
Alan Cox64f93032009-06-10 17:30:41 +0100643 /* begin blux */
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700644
Alan Cox15700032009-08-27 11:03:09 +0100645 if (adapter == NULL)
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700646 return -ENODEV;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700647
648 /* Make sure the requested MAC is valid */
Alan Cox15700032009-08-27 11:03:09 +0100649 if (!is_valid_ether_addr(address->sa_data))
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700650 return -EINVAL;
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700651
652 /* Stop the netif queue */
653 netif_stop_queue(netdev);
654
655 /* Stop the Tx and Rx DMA engines */
656 et131x_rx_dma_disable(adapter);
657 et131x_tx_dma_disable(adapter);
658
659 /* Disable device interrupts */
660 et131x_disable_interrupts(adapter);
661 et131x_handle_send_interrupt(adapter);
662 et131x_handle_recv_interrupt(adapter);
663
664 /* Set the new MAC */
Alan Cox64f93032009-06-10 17:30:41 +0100665 /* netdev->set_mac_address = &new_mac; */
666 /* netdev->mtu = new_mtu; */
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700667
668 memcpy(netdev->dev_addr, address->sa_data, netdev->addr_len);
669
H Hartley Sweeten28a23332009-12-28 19:21:34 -0500670 printk(KERN_INFO "%s: Setting MAC address to %pM\n",
671 netdev->name, netdev->dev_addr);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700672
673 /* Free Rx DMA memory */
674 et131x_adapter_memory_free(adapter);
675
676 /* Set the config parameter for Jumbo Packet support */
Alan Cox64f93032009-06-10 17:30:41 +0100677 /* adapter->RegistryJumboPacket = new_mtu + 14; */
678 /* blux: not needet here, we'll change the MAC */
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700679
680 et131x_soft_reset(adapter);
681
682 /* Alloc and init Rx DMA memory */
683 result = et131x_adapter_memory_alloc(adapter);
684 if (result != 0) {
Alan Cox15700032009-08-27 11:03:09 +0100685 dev_err(&adapter->pdev->dev,
Alan Cox64f93032009-06-10 17:30:41 +0100686 "Change MAC failed; couldn't re-alloc DMA memory\n");
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700687 return result;
688 }
689
690 et131x_init_send(adapter);
691
Alan Coxc431e3c2009-10-06 15:47:41 +0100692 et131x_hwaddr_init(adapter);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700693
694 /* Init the device with the new settings */
695 et131x_adapter_setup(adapter);
696
697 /* Enable interrupts */
Alan Coxf6b35d62009-08-27 11:02:05 +0100698 if (adapter->Flags & fMP_ADAPTER_INTERRUPT_IN_USE)
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700699 et131x_enable_interrupts(adapter);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700700
701 /* Restart the Tx and Rx DMA engines */
702 et131x_rx_dma_enable(adapter);
703 et131x_tx_dma_enable(adapter);
704
705 /* Restart the netif queue */
706 netif_wake_queue(netdev);
Greg Kroah-Hartmancfb739b2008-04-03 17:30:53 -0700707 return result;
708}