]> Pileus Git - ~andy/linux/blob - drivers/staging/et131x/et131x_netdev.c
70a0da3fb52d901e6fad20d0394c765e4ea7b6d4
[~andy/linux] / drivers / staging / et131x / et131x_netdev.c
1 /*
2  * Agere Systems Inc.
3  * 10/100/1000 Base-T Ethernet Driver for the ET1301 and ET131x series MACs
4  *
5  * Copyright © 2005 Agere Systems Inc.
6  * 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  *
22  * Copyright © 2005 Agere Systems Inc.
23  * 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  *
43  * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
44  * 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"
59 #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>
68 #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>
74 #include <linux/io.h>
75 #include <linux/bitops.h>
76 #include <linux/pci.h>
77 #include <asm/system.h>
78
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"
87 #include "et1310_tx.h"
88 #include "et131x_adapter.h"
89 #include "et131x.h"
90
91 /**
92  * et131x_stats - Return the current device statistics.
93  * @netdev: device whose stats are being queried
94  *
95  * Returns 0 on success, errno on failure (as defined in errno.h)
96  */
97 static struct net_device_stats *et131x_stats(struct net_device *netdev)
98 {
99         struct et131x_adapter *adapter = netdev_priv(netdev);
100         struct net_device_stats *stats = &adapter->net_stats;
101         struct ce_stats *devstat = &adapter->stats;
102
103         stats->rx_errors = devstat->rx_length_errs +
104                            devstat->rx_align_errs +
105                            devstat->rx_crc_errs +
106                            devstat->rx_code_violations +
107                            devstat->rx_other_errs;
108         stats->tx_errors = devstat->tx_max_pkt_errs;
109         stats->multicast = devstat->multicast_pkts_rcvd;
110         stats->collisions = devstat->tx_collisions;
111
112         stats->rx_length_errors = devstat->rx_length_errs;
113         stats->rx_over_errors = devstat->rx_overflows;
114         stats->rx_crc_errors = devstat->rx_crc_errs;
115
116         /* NOTE: These stats don't have corresponding values in CE_STATS,
117          * so we're going to have to update these directly from within the
118          * TX/RX code
119          */
120         /* stats->rx_bytes            = 20; devstat->; */
121         /* stats->tx_bytes            = 20;  devstat->; */
122         /* stats->rx_dropped          = devstat->; */
123         /* stats->tx_dropped          = devstat->; */
124
125         /*  NOTE: Not used, can't find analogous statistics */
126         /* stats->rx_frame_errors     = devstat->; */
127         /* stats->rx_fifo_errors      = devstat->; */
128         /* stats->rx_missed_errors    = devstat->; */
129
130         /* stats->tx_aborted_errors   = devstat->; */
131         /* stats->tx_carrier_errors   = devstat->; */
132         /* stats->tx_fifo_errors      = devstat->; */
133         /* stats->tx_heartbeat_errors = devstat->; */
134         /* stats->tx_window_errors    = devstat->; */
135         return stats;
136 }
137
138 /**
139  * et131x_open - Open the device for use.
140  * @netdev: device to be opened
141  *
142  * Returns 0 on success, errno on failure (as defined in errno.h)
143  */
144 int et131x_open(struct net_device *netdev)
145 {
146         int result = 0;
147         struct et131x_adapter *adapter = netdev_priv(netdev);
148
149         /* Start the timer to track NIC errors */
150         add_timer(&adapter->error_timer);
151
152         /* Register our IRQ */
153         result = request_irq(netdev->irq, et131x_isr, IRQF_SHARED,
154                                         netdev->name, netdev);
155         if (result) {
156                 dev_err(&adapter->pdev->dev, "c ould not register IRQ %d\n",
157                         netdev->irq);
158                 return result;
159         }
160
161         /* Enable the Tx and Rx DMA engines (if not already enabled) */
162         et131x_rx_dma_enable(adapter);
163         et131x_tx_dma_enable(adapter);
164
165         /* Enable device interrupts */
166         et131x_enable_interrupts(adapter);
167
168         adapter->flags |= fMP_ADAPTER_INTERRUPT_IN_USE;
169
170         /* We're ready to move some data, so start the queue */
171         netif_start_queue(netdev);
172         return result;
173 }
174
175 /**
176  * et131x_close - Close the device
177  * @netdev: device to be closed
178  *
179  * Returns 0 on success, errno on failure (as defined in errno.h)
180  */
181 int et131x_close(struct net_device *netdev)
182 {
183         struct et131x_adapter *adapter = netdev_priv(netdev);
184
185         /* First thing is to stop the queue */
186         netif_stop_queue(netdev);
187
188         /* Stop the Tx and Rx DMA engines */
189         et131x_rx_dma_disable(adapter);
190         et131x_tx_dma_disable(adapter);
191
192         /* Disable device interrupts */
193         et131x_disable_interrupts(adapter);
194
195         /* Deregistering ISR */
196         adapter->flags &= ~fMP_ADAPTER_INTERRUPT_IN_USE;
197         free_irq(netdev->irq, netdev);
198
199         /* Stop the error timer */
200         del_timer_sync(&adapter->error_timer);
201         return 0;
202 }
203
204 /**
205  * et131x_ioctl_mii - The function which handles MII IOCTLs
206  * @netdev: device on which the query is being made
207  * @reqbuf: the request-specific data buffer
208  * @cmd: the command request code
209  *
210  * Returns 0 on success, errno on failure (as defined in errno.h)
211  */
212 int et131x_ioctl_mii(struct net_device *netdev, struct ifreq *reqbuf, int cmd)
213 {
214         int status = 0;
215         struct et131x_adapter *adapter = netdev_priv(netdev);
216         struct mii_ioctl_data *data = if_mii(reqbuf);
217
218         switch (cmd) {
219         case SIOCGMIIPHY:
220                 data->phy_id = adapter->stats.xcvr_addr;
221                 break;
222
223         case SIOCGMIIREG:
224                 if (!capable(CAP_NET_ADMIN))
225                         status = -EPERM;
226                 else
227                         status = et131x_mii_read(adapter,
228                                         data->reg_num, &data->val_out);
229                 break;
230
231         case SIOCSMIIREG:
232                 if (!capable(CAP_NET_ADMIN))
233                         status = -EPERM;
234                 else
235                         status = et131x_mii_write(adapter, data->reg_num,
236                                          data->val_in);
237                 break;
238
239         default:
240                 status = -EOPNOTSUPP;
241         }
242         return status;
243 }
244
245 /**
246  * et131x_ioctl - The I/O Control handler for the driver
247  * @netdev: device on which the control request is being made
248  * @reqbuf: a pointer to the IOCTL request buffer
249  * @cmd: the IOCTL command code
250  *
251  * Returns 0 on success, errno on failure (as defined in errno.h)
252  */
253 int et131x_ioctl(struct net_device *netdev, struct ifreq *reqbuf, int cmd)
254 {
255         int status = 0;
256
257         switch (cmd) {
258         case SIOCGMIIPHY:
259         case SIOCGMIIREG:
260         case SIOCSMIIREG:
261                 status = et131x_ioctl_mii(netdev, reqbuf, cmd);
262                 break;
263
264         default:
265                 status = -EOPNOTSUPP;
266         }
267         return status;
268 }
269
270 /**
271  * et131x_set_packet_filter - Configures the Rx Packet filtering on the device
272  * @adapter: pointer to our private adapter structure
273  *
274  * FIXME: lot of dups with MAC code
275  *
276  * Returns 0 on success, errno on failure
277  */
278 int et131x_set_packet_filter(struct et131x_adapter *adapter)
279 {
280         int status = 0;
281         uint32_t filter = adapter->packet_filter;
282         u32 ctrl;
283         u32 pf_ctrl;
284
285         ctrl = readl(&adapter->regs->rxmac.ctrl);
286         pf_ctrl = readl(&adapter->regs->rxmac.pf_ctrl);
287
288         /* Default to disabled packet filtering.  Enable it in the individual
289          * case statements that require the device to filter something
290          */
291         ctrl |= 0x04;
292
293         /* Set us to be in promiscuous mode so we receive everything, this
294          * is also true when we get a packet filter of 0
295          */
296         if ((filter & ET131X_PACKET_TYPE_PROMISCUOUS) || filter == 0)
297                 pf_ctrl &= ~7;  /* Clear filter bits */
298         else {
299                 /*
300                  * Set us up with Multicast packet filtering.  Three cases are
301                  * possible - (1) we have a multi-cast list, (2) we receive ALL
302                  * multicast entries or (3) we receive none.
303                  */
304                 if (filter & ET131X_PACKET_TYPE_ALL_MULTICAST)
305                         pf_ctrl &= ~2;  /* Multicast filter bit */
306                 else {
307                         et1310_setup_device_for_multicast(adapter);
308                         pf_ctrl |= 2;
309                         ctrl &= ~0x04;
310                 }
311
312                 /* Set us up with Unicast packet filtering */
313                 if (filter & ET131X_PACKET_TYPE_DIRECTED) {
314                         et1310_setup_device_for_unicast(adapter);
315                         pf_ctrl |= 4;
316                         ctrl &= ~0x04;
317                 }
318
319                 /* Set us up with Broadcast packet filtering */
320                 if (filter & ET131X_PACKET_TYPE_BROADCAST) {
321                         pf_ctrl |= 1;   /* Broadcast filter bit */
322                         ctrl &= ~0x04;
323                 } else
324                         pf_ctrl &= ~1;
325
326                 /* Setup the receive mac configuration registers - Packet
327                  * Filter control + the enable / disable for packet filter
328                  * in the control reg.
329                  */
330                 writel(pf_ctrl, &adapter->regs->rxmac.pf_ctrl);
331                 writel(ctrl, &adapter->regs->rxmac.ctrl);
332         }
333         return status;
334 }
335
336 /**
337  * et131x_multicast - The handler to configure multicasting on the interface
338  * @netdev: a pointer to a net_device struct representing the device
339  */
340 void et131x_multicast(struct net_device *netdev)
341 {
342         struct et131x_adapter *adapter = netdev_priv(netdev);
343         uint32_t packet_filter = 0;
344         unsigned long flags;
345         struct netdev_hw_addr *ha;
346         int i;
347
348         spin_lock_irqsave(&adapter->lock, flags);
349
350         /* Before we modify the platform-independent filter flags, store them
351          * locally. This allows us to determine if anything's changed and if
352          * we even need to bother the hardware
353          */
354         packet_filter = adapter->packet_filter;
355
356         /* Clear the 'multicast' flag locally; because we only have a single
357          * flag to check multicast, and multiple multicast addresses can be
358          * set, this is the easiest way to determine if more than one
359          * multicast address is being set.
360          */
361         packet_filter &= ~ET131X_PACKET_TYPE_MULTICAST;
362
363         /* Check the net_device flags and set the device independent flags
364          * accordingly
365          */
366
367         if (netdev->flags & IFF_PROMISC)
368                 adapter->packet_filter |= ET131X_PACKET_TYPE_PROMISCUOUS;
369         else
370                 adapter->packet_filter &= ~ET131X_PACKET_TYPE_PROMISCUOUS;
371
372         if (netdev->flags & IFF_ALLMULTI)
373                 adapter->packet_filter |= ET131X_PACKET_TYPE_ALL_MULTICAST;
374
375         if (netdev_mc_count(netdev) > NIC_MAX_MCAST_LIST)
376                 adapter->packet_filter |= ET131X_PACKET_TYPE_ALL_MULTICAST;
377
378         if (netdev_mc_count(netdev) < 1) {
379                 adapter->packet_filter &= ~ET131X_PACKET_TYPE_ALL_MULTICAST;
380                 adapter->packet_filter &= ~ET131X_PACKET_TYPE_MULTICAST;
381         } else
382                 adapter->packet_filter |= ET131X_PACKET_TYPE_MULTICAST;
383
384         /* Set values in the private adapter struct */
385         i = 0;
386         netdev_for_each_mc_addr(ha, netdev) {
387                 if (i == NIC_MAX_MCAST_LIST)
388                         break;
389                 memcpy(adapter->multicast_list[i++], ha->addr, ETH_ALEN);
390         }
391         adapter->multicast_addr_count = i;
392
393         /* Are the new flags different from the previous ones? If not, then no
394          * action is required
395          *
396          * NOTE - This block will always update the multicast_list with the
397          *        hardware, even if the addresses aren't the same.
398          */
399         if (packet_filter != adapter->packet_filter) {
400                 /* Call the device's filter function */
401                 et131x_set_packet_filter(adapter);
402         }
403         spin_unlock_irqrestore(&adapter->lock, flags);
404 }
405
406 /**
407  * et131x_tx - The handler to tx a packet on the device
408  * @skb: data to be Tx'd
409  * @netdev: device on which data is to be Tx'd
410  *
411  * Returns 0 on success, errno on failure (as defined in errno.h)
412  */
413 int et131x_tx(struct sk_buff *skb, struct net_device *netdev)
414 {
415         int status = 0;
416
417         /* Save the timestamp for the TX timeout watchdog */
418         netdev->trans_start = jiffies;
419
420         /* Call the device-specific data Tx routine */
421         status = et131x_send_packets(skb, netdev);
422
423         /* Check status and manage the netif queue if necessary */
424         if (status != 0) {
425                 if (status == -ENOMEM) {
426                         /* Put the queue to sleep until resources are
427                          * available
428                          */
429                         netif_stop_queue(netdev);
430                         status = NETDEV_TX_BUSY;
431                 } else {
432                         status = NETDEV_TX_OK;
433                 }
434         }
435         return status;
436 }
437
438 /**
439  * et131x_tx_timeout - Timeout handler
440  * @netdev: a pointer to a net_device struct representing the device
441  *
442  * The handler called when a Tx request times out. The timeout period is
443  * specified by the 'tx_timeo" element in the net_device structure (see
444  * et131x_alloc_device() to see how this value is set).
445  */
446 void et131x_tx_timeout(struct net_device *netdev)
447 {
448         struct et131x_adapter *adapter = netdev_priv(netdev);
449         struct tcb *tcb;
450         unsigned long flags;
451
452         /* Any nonrecoverable hardware error?
453          * Checks adapter->flags for any failure in phy reading
454          */
455         if (adapter->flags & fMP_ADAPTER_NON_RECOVER_ERROR)
456                 return;
457
458         /* Hardware failure? */
459         if (adapter->flags & fMP_ADAPTER_HARDWARE_ERROR) {
460                 dev_err(&adapter->pdev->dev, "hardware error - reset\n");
461                 return;
462         }
463
464         /* Is send stuck? */
465         spin_lock_irqsave(&adapter->tcb_send_qlock, flags);
466
467         tcb = adapter->tx_ring.send_head;
468
469         if (tcb != NULL) {
470                 tcb->count++;
471
472                 if (tcb->count > NIC_SEND_HANG_THRESHOLD) {
473                         spin_unlock_irqrestore(&adapter->tcb_send_qlock,
474                                                flags);
475
476                         dev_warn(&adapter->pdev->dev,
477                                 "Send stuck - reset.  tcb->WrIndex %x, flags 0x%08x\n",
478                                 tcb->index,
479                                 tcb->flags);
480
481                         adapter->net_stats.tx_errors++;
482
483                         /* perform reset */
484                         /* First thing is to stop the queue */
485                         netif_stop_queue(netdev);
486
487                         /* Stop the Tx and Rx DMA engines */
488                         et131x_rx_dma_disable(adapter);
489                         et131x_tx_dma_disable(adapter);
490
491                         /* Disable device interrupts */
492                         et131x_disable_interrupts(adapter);
493
494                         /* Enable the Tx and Rx DMA engines (if not already enabled) */
495                         et131x_rx_dma_enable(adapter);
496                         et131x_tx_dma_enable(adapter);
497
498                         /* Enable device interrupts */
499                         et131x_enable_interrupts(adapter);
500
501                         /* We're ready to move some data, so start the queue */
502                         netif_start_queue(netdev);
503                         return;
504                 }
505         }
506
507         spin_unlock_irqrestore(&adapter->tcb_send_qlock, flags);
508 }
509
510 /**
511  * et131x_change_mtu - The handler called to change the MTU for the device
512  * @netdev: device whose MTU is to be changed
513  * @new_mtu: the desired MTU
514  *
515  * Returns 0 on success, errno on failure (as defined in errno.h)
516  */
517 int et131x_change_mtu(struct net_device *netdev, int new_mtu)
518 {
519         int result = 0;
520         struct et131x_adapter *adapter = netdev_priv(netdev);
521
522         /* Make sure the requested MTU is valid */
523         if (new_mtu < 64 || new_mtu > 9216)
524                 return -EINVAL;
525
526         /* Stop the netif queue */
527         netif_stop_queue(netdev);
528
529         /* Stop the Tx and Rx DMA engines */
530         et131x_rx_dma_disable(adapter);
531         et131x_tx_dma_disable(adapter);
532
533         /* Disable device interrupts */
534         et131x_disable_interrupts(adapter);
535         et131x_handle_send_interrupt(adapter);
536         et131x_handle_recv_interrupt(adapter);
537
538         /* Set the new MTU */
539         netdev->mtu = new_mtu;
540
541         /* Free Rx DMA memory */
542         et131x_adapter_memory_free(adapter);
543
544         /* Set the config parameter for Jumbo Packet support */
545         adapter->registry_jumbo_packet = new_mtu + 14;
546         et131x_soft_reset(adapter);
547
548         /* Alloc and init Rx DMA memory */
549         result = et131x_adapter_memory_alloc(adapter);
550         if (result != 0) {
551                 dev_warn(&adapter->pdev->dev,
552                         "Change MTU failed; couldn't re-alloc DMA memory\n");
553                 return result;
554         }
555
556         et131x_init_send(adapter);
557
558         et131x_hwaddr_init(adapter);
559         memcpy(netdev->dev_addr, adapter->addr, ETH_ALEN);
560
561         /* Init the device with the new settings */
562         et131x_adapter_setup(adapter);
563
564         /* Enable interrupts */
565         if (adapter->flags & fMP_ADAPTER_INTERRUPT_IN_USE)
566                 et131x_enable_interrupts(adapter);
567
568         /* Restart the Tx and Rx DMA engines */
569         et131x_rx_dma_enable(adapter);
570         et131x_tx_dma_enable(adapter);
571
572         /* Restart the netif queue */
573         netif_wake_queue(netdev);
574         return result;
575 }
576
577 /**
578  * et131x_set_mac_addr - handler to change the MAC address for the device
579  * @netdev: device whose MAC is to be changed
580  * @new_mac: the desired MAC address
581  *
582  * Returns 0 on success, errno on failure (as defined in errno.h)
583  *
584  * IMPLEMENTED BY : blux http://berndlux.de 22.01.2007 21:14
585  */
586 int et131x_set_mac_addr(struct net_device *netdev, void *new_mac)
587 {
588         int result = 0;
589         struct et131x_adapter *adapter = netdev_priv(netdev);
590         struct sockaddr *address = new_mac;
591
592         /* begin blux */
593
594         if (adapter == NULL)
595                 return -ENODEV;
596
597         /* Make sure the requested MAC is valid */
598         if (!is_valid_ether_addr(address->sa_data))
599                 return -EINVAL;
600
601         /* Stop the netif queue */
602         netif_stop_queue(netdev);
603
604         /* Stop the Tx and Rx DMA engines */
605         et131x_rx_dma_disable(adapter);
606         et131x_tx_dma_disable(adapter);
607
608         /* Disable device interrupts */
609         et131x_disable_interrupts(adapter);
610         et131x_handle_send_interrupt(adapter);
611         et131x_handle_recv_interrupt(adapter);
612
613         /* Set the new MAC */
614         /* netdev->set_mac_address  = &new_mac; */
615
616         memcpy(netdev->dev_addr, address->sa_data, netdev->addr_len);
617
618         printk(KERN_INFO "%s: Setting MAC address to %pM\n",
619                         netdev->name, netdev->dev_addr);
620
621         /* Free Rx DMA memory */
622         et131x_adapter_memory_free(adapter);
623
624         et131x_soft_reset(adapter);
625
626         /* Alloc and init Rx DMA memory */
627         result = et131x_adapter_memory_alloc(adapter);
628         if (result != 0) {
629                 dev_err(&adapter->pdev->dev,
630                         "Change MAC failed; couldn't re-alloc DMA memory\n");
631                 return result;
632         }
633
634         et131x_init_send(adapter);
635
636         et131x_hwaddr_init(adapter);
637
638         /* Init the device with the new settings */
639         et131x_adapter_setup(adapter);
640
641         /* Enable interrupts */
642         if (adapter->flags & fMP_ADAPTER_INTERRUPT_IN_USE)
643                 et131x_enable_interrupts(adapter);
644
645         /* Restart the Tx and Rx DMA engines */
646         et131x_rx_dma_enable(adapter);
647         et131x_tx_dma_enable(adapter);
648
649         /* Restart the netif queue */
650         netif_wake_queue(netdev);
651         return result;
652 }
653
654 static const struct net_device_ops et131x_netdev_ops = {
655         .ndo_open               = et131x_open,
656         .ndo_stop               = et131x_close,
657         .ndo_start_xmit         = et131x_tx,
658         .ndo_set_multicast_list = et131x_multicast,
659         .ndo_tx_timeout         = et131x_tx_timeout,
660         .ndo_change_mtu         = et131x_change_mtu,
661         .ndo_set_mac_address    = et131x_set_mac_addr,
662         .ndo_validate_addr      = eth_validate_addr,
663         .ndo_get_stats          = et131x_stats,
664         .ndo_do_ioctl           = et131x_ioctl,
665 };
666
667 /**
668  * et131x_device_alloc
669  *
670  * Returns pointer to the allocated and initialized net_device struct for
671  * this device.
672  *
673  * Create instances of net_device and wl_private for the new adapter and
674  * register the device's entry points in the net_device structure.
675  */
676 struct net_device *et131x_device_alloc(void)
677 {
678         struct net_device *netdev;
679
680         /* Alloc net_device and adapter structs */
681         netdev = alloc_etherdev(sizeof(struct et131x_adapter));
682
683         if (netdev == NULL) {
684                 printk(KERN_ERR "et131x: Alloc of net_device struct failed\n");
685                 return NULL;
686         }
687
688         /* Setup the function registration table (and other data) for a
689          * net_device
690          */
691
692         netdev->watchdog_timeo = ET131X_TX_TIMEOUT;
693         netdev->netdev_ops = &et131x_netdev_ops;
694
695         /* netdev->ethtool_ops        = &et131x_ethtool_ops; */
696
697         /* Poll? */
698         /* netdev->poll               = &et131x_poll; */
699         /* netdev->poll_controller    = &et131x_poll_controller; */
700         return netdev;
701 }
702