2 * Copyright (c) 1997-2000 LAN Media Corporation (LMC)
3 * All rights reserved. www.lanmedia.com
4 * Generic HDLC port Copyright (C) 2008 Krzysztof Halasa <khc@pm.waw.pl>
6 * This code is written by:
7 * Andrew Stanley-Jones (asj@cban.com)
8 * Rob Braun (bbraun@vix.com),
9 * Michael Graff (explorer@vix.com) and
10 * Matt Thomas (matt@3am-software.com).
17 * This software may be used and distributed according to the terms
18 * of the GNU General Public License version 2, incorporated herein by reference.
20 * Driver for the LanMedia LMC5200, LMC5245, LMC1000, LMC1200 cards.
22 * To control link specific options lmcctl is required.
23 * It can be obtained from ftp.lanmedia.com.
26 * Linux uses the device struct lmc_private to pass private information
29 * The initialization portion of this driver (the lmc_reset() and the
30 * lmc_dec_reset() functions, as well as the led controls and the
31 * lmc_initcsrs() functions.
33 * The watchdog function runs every second and checks to see if
34 * we still have link, and that the timing source is what we expected
35 * it to be. If link is lost, the interface is marked down, and
36 * we no longer can transmit.
40 #include <linux/kernel.h>
41 #include <linux/module.h>
42 #include <linux/string.h>
43 #include <linux/timer.h>
44 #include <linux/ptrace.h>
45 #include <linux/errno.h>
46 #include <linux/ioport.h>
47 #include <linux/slab.h>
48 #include <linux/interrupt.h>
49 #include <linux/pci.h>
50 #include <linux/delay.h>
51 #include <linux/hdlc.h>
52 #include <linux/init.h>
54 #include <linux/if_arp.h>
55 #include <linux/netdevice.h>
56 #include <linux/etherdevice.h>
57 #include <linux/skbuff.h>
58 #include <linux/inet.h>
59 #include <linux/bitops.h>
60 #include <asm/processor.h> /* Processor type for cache alignment. */
63 #include <asm/uaccess.h>
64 //#include <asm/spinlock.h>
66 #define DRIVER_MAJOR_VERSION 1
67 #define DRIVER_MINOR_VERSION 34
68 #define DRIVER_SUB_VERSION 0
70 #define DRIVER_VERSION ((DRIVER_MAJOR_VERSION << 8) + DRIVER_MINOR_VERSION)
74 #include "lmc_ioctl.h"
75 #include "lmc_debug.h"
76 #include "lmc_proto.h"
78 static int LMC_PKT_BUF_SZ
= 1542;
80 static struct pci_device_id lmc_pci_tbl
[] = {
81 { PCI_VENDOR_ID_DEC
, PCI_DEVICE_ID_DEC_TULIP_FAST
,
82 PCI_VENDOR_ID_LMC
, PCI_ANY_ID
},
83 { PCI_VENDOR_ID_DEC
, PCI_DEVICE_ID_DEC_TULIP_FAST
,
84 PCI_ANY_ID
, PCI_VENDOR_ID_LMC
},
88 MODULE_DEVICE_TABLE(pci
, lmc_pci_tbl
);
89 MODULE_LICENSE("GPL v2");
92 static int lmc_start_xmit(struct sk_buff
*skb
, struct net_device
*dev
);
93 static int lmc_rx (struct net_device
*dev
);
94 static int lmc_open(struct net_device
*dev
);
95 static int lmc_close(struct net_device
*dev
);
96 static struct net_device_stats
*lmc_get_stats(struct net_device
*dev
);
97 static irqreturn_t
lmc_interrupt(int irq
, void *dev_instance
);
98 static void lmc_initcsrs(lmc_softc_t
* const sc
, lmc_csrptr_t csr_base
, size_t csr_size
);
99 static void lmc_softreset(lmc_softc_t
* const);
100 static void lmc_running_reset(struct net_device
*dev
);
101 static int lmc_ifdown(struct net_device
* const);
102 static void lmc_watchdog(unsigned long data
);
103 static void lmc_reset(lmc_softc_t
* const sc
);
104 static void lmc_dec_reset(lmc_softc_t
* const sc
);
105 static void lmc_driver_timeout(struct net_device
*dev
);
108 * linux reserves 16 device specific IOCTLs. We call them
109 * LMCIOC* to control various bits of our world.
111 int lmc_ioctl(struct net_device
*dev
, struct ifreq
*ifr
, int cmd
) /*fold00*/
113 lmc_softc_t
*sc
= dev_to_sc(dev
);
115 int ret
= -EOPNOTSUPP
;
119 lmc_trace(dev
, "lmc_ioctl in");
122 * Most functions mess with the structure
123 * Disable interrupts while we do the polling
125 spin_lock_irqsave(&sc
->lmc_lock
, flags
);
129 * Return current driver state. Since we keep this up
130 * To date internally, just copy this out to the user.
132 case LMCIOCGINFO
: /*fold01*/
133 if (copy_to_user(ifr
->ifr_data
, &sc
->ictl
, sizeof(lmc_ctl_t
)))
139 case LMCIOCSINFO
: /*fold01*/
140 if (!capable(CAP_NET_ADMIN
)) {
145 if(dev
->flags
& IFF_UP
){
150 if (copy_from_user(&ctl
, ifr
->ifr_data
, sizeof(lmc_ctl_t
))) {
155 sc
->lmc_media
->set_status (sc
, &ctl
);
157 if(ctl
.crc_length
!= sc
->ictl
.crc_length
) {
158 sc
->lmc_media
->set_crc_length(sc
, ctl
.crc_length
);
159 if (sc
->ictl
.crc_length
== LMC_CTL_CRC_LENGTH_16
)
160 sc
->TxDescriptControlInit
|= LMC_TDES_ADD_CRC_DISABLE
;
162 sc
->TxDescriptControlInit
&= ~LMC_TDES_ADD_CRC_DISABLE
;
168 case LMCIOCIFTYPE
: /*fold01*/
170 u16 old_type
= sc
->if_type
;
173 if (!capable(CAP_NET_ADMIN
)) {
178 if (copy_from_user(&new_type
, ifr
->ifr_data
, sizeof(u16
))) {
184 if (new_type
== old_type
)
187 break; /* no change */
192 sc
->if_type
= new_type
;
193 lmc_proto_attach(sc
);
194 ret
= lmc_proto_open(sc
);
198 case LMCIOCGETXINFO
: /*fold01*/
199 sc
->lmc_xinfo
.Magic0
= 0xBEEFCAFE;
201 sc
->lmc_xinfo
.PciCardType
= sc
->lmc_cardtype
;
202 sc
->lmc_xinfo
.PciSlotNumber
= 0;
203 sc
->lmc_xinfo
.DriverMajorVersion
= DRIVER_MAJOR_VERSION
;
204 sc
->lmc_xinfo
.DriverMinorVersion
= DRIVER_MINOR_VERSION
;
205 sc
->lmc_xinfo
.DriverSubVersion
= DRIVER_SUB_VERSION
;
206 sc
->lmc_xinfo
.XilinxRevisionNumber
=
207 lmc_mii_readreg (sc
, 0, 3) & 0xf;
208 sc
->lmc_xinfo
.MaxFrameSize
= LMC_PKT_BUF_SZ
;
209 sc
->lmc_xinfo
.link_status
= sc
->lmc_media
->get_link_status (sc
);
210 sc
->lmc_xinfo
.mii_reg16
= lmc_mii_readreg (sc
, 0, 16);
212 sc
->lmc_xinfo
.Magic1
= 0xDEADBEEF;
214 if (copy_to_user(ifr
->ifr_data
, &sc
->lmc_xinfo
,
215 sizeof(struct lmc_xinfo
)))
222 case LMCIOCGETLMCSTATS
:
223 if (sc
->lmc_cardtype
== LMC_CARDTYPE_T1
) {
224 lmc_mii_writereg(sc
, 0, 17, T1FRAMER_FERR_LSB
);
225 sc
->extra_stats
.framingBitErrorCount
+=
226 lmc_mii_readreg(sc
, 0, 18) & 0xff;
227 lmc_mii_writereg(sc
, 0, 17, T1FRAMER_FERR_MSB
);
228 sc
->extra_stats
.framingBitErrorCount
+=
229 (lmc_mii_readreg(sc
, 0, 18) & 0xff) << 8;
230 lmc_mii_writereg(sc
, 0, 17, T1FRAMER_LCV_LSB
);
231 sc
->extra_stats
.lineCodeViolationCount
+=
232 lmc_mii_readreg(sc
, 0, 18) & 0xff;
233 lmc_mii_writereg(sc
, 0, 17, T1FRAMER_LCV_MSB
);
234 sc
->extra_stats
.lineCodeViolationCount
+=
235 (lmc_mii_readreg(sc
, 0, 18) & 0xff) << 8;
236 lmc_mii_writereg(sc
, 0, 17, T1FRAMER_AERR
);
237 regVal
= lmc_mii_readreg(sc
, 0, 18) & 0xff;
239 sc
->extra_stats
.lossOfFrameCount
+=
240 (regVal
& T1FRAMER_LOF_MASK
) >> 4;
241 sc
->extra_stats
.changeOfFrameAlignmentCount
+=
242 (regVal
& T1FRAMER_COFA_MASK
) >> 2;
243 sc
->extra_stats
.severelyErroredFrameCount
+=
244 regVal
& T1FRAMER_SEF_MASK
;
246 if (copy_to_user(ifr
->ifr_data
, &sc
->lmc_device
->stats
,
247 sizeof(sc
->lmc_device
->stats
)) ||
248 copy_to_user(ifr
->ifr_data
+ sizeof(sc
->lmc_device
->stats
),
249 &sc
->extra_stats
, sizeof(sc
->extra_stats
)))
255 case LMCIOCCLEARLMCSTATS
:
256 if (!capable(CAP_NET_ADMIN
)) {
261 memset(&sc
->lmc_device
->stats
, 0, sizeof(sc
->lmc_device
->stats
));
262 memset(&sc
->extra_stats
, 0, sizeof(sc
->extra_stats
));
263 sc
->extra_stats
.check
= STATCHECK
;
264 sc
->extra_stats
.version_size
= (DRIVER_VERSION
<< 16) +
265 sizeof(sc
->lmc_device
->stats
) + sizeof(sc
->extra_stats
);
266 sc
->extra_stats
.lmc_cardtype
= sc
->lmc_cardtype
;
270 case LMCIOCSETCIRCUIT
: /*fold01*/
271 if (!capable(CAP_NET_ADMIN
)){
276 if(dev
->flags
& IFF_UP
){
281 if (copy_from_user(&ctl
, ifr
->ifr_data
, sizeof(lmc_ctl_t
))) {
285 sc
->lmc_media
->set_circuit_type(sc
, ctl
.circuit_type
);
286 sc
->ictl
.circuit_type
= ctl
.circuit_type
;
291 case LMCIOCRESET
: /*fold01*/
292 if (!capable(CAP_NET_ADMIN
)){
297 /* Reset driver and bring back to current state */
298 printk (" REG16 before reset +%04x\n", lmc_mii_readreg (sc
, 0, 16));
299 lmc_running_reset (dev
);
300 printk (" REG16 after reset +%04x\n", lmc_mii_readreg (sc
, 0, 16));
302 LMC_EVENT_LOG(LMC_EVENT_FORCEDRESET
, LMC_CSR_READ (sc
, csr_status
), lmc_mii_readreg (sc
, 0, 16));
308 case LMCIOCDUMPEVENTLOG
:
309 if (copy_to_user(ifr
->ifr_data
, &lmcEventLogIndex
, sizeof(u32
))) {
313 if (copy_to_user(ifr
->ifr_data
+ sizeof(u32
), lmcEventLogBuf
,
314 sizeof(lmcEventLogBuf
)))
320 #endif /* end ifdef _DBG_EVENTLOG */
321 case LMCIOCT1CONTROL
: /*fold01*/
322 if (sc
->lmc_cardtype
!= LMC_CARDTYPE_T1
){
327 case LMCIOCXILINX
: /*fold01*/
329 struct lmc_xilinx_control xc
; /*fold02*/
331 if (!capable(CAP_NET_ADMIN
)){
337 * Stop the xwitter whlie we restart the hardware
339 netif_stop_queue(dev
);
341 if (copy_from_user(&xc
, ifr
->ifr_data
, sizeof(struct lmc_xilinx_control
))) {
346 case lmc_xilinx_reset
: /*fold02*/
349 mii
= lmc_mii_readreg (sc
, 0, 16);
352 * Make all of them 0 and make input
354 lmc_gpio_mkinput(sc
, 0xff);
357 * make the reset output
359 lmc_gpio_mkoutput(sc
, LMC_GEP_RESET
);
362 * RESET low to force configuration. This also forces
363 * the transmitter clock to be internal, but we expect to reset
367 sc
->lmc_gpio
&= ~LMC_GEP_RESET
;
368 LMC_CSR_WRITE(sc
, csr_gp
, sc
->lmc_gpio
);
372 * hold for more than 10 microseconds
376 sc
->lmc_gpio
|= LMC_GEP_RESET
;
377 LMC_CSR_WRITE(sc
, csr_gp
, sc
->lmc_gpio
);
381 * stop driving Xilinx-related signals
383 lmc_gpio_mkinput(sc
, 0xff);
385 /* Reset the frammer hardware */
386 sc
->lmc_media
->set_link_status (sc
, 1);
387 sc
->lmc_media
->set_status (sc
, NULL
);
388 // lmc_softreset(sc);
392 for(i
= 0; i
< 5; i
++){
393 lmc_led_on(sc
, LMC_DS3_LED0
);
395 lmc_led_off(sc
, LMC_DS3_LED0
);
396 lmc_led_on(sc
, LMC_DS3_LED1
);
398 lmc_led_off(sc
, LMC_DS3_LED1
);
399 lmc_led_on(sc
, LMC_DS3_LED3
);
401 lmc_led_off(sc
, LMC_DS3_LED3
);
402 lmc_led_on(sc
, LMC_DS3_LED2
);
404 lmc_led_off(sc
, LMC_DS3_LED2
);
415 case lmc_xilinx_load_prom
: /*fold02*/
418 int timeout
= 500000;
419 mii
= lmc_mii_readreg (sc
, 0, 16);
422 * Make all of them 0 and make input
424 lmc_gpio_mkinput(sc
, 0xff);
427 * make the reset output
429 lmc_gpio_mkoutput(sc
, LMC_GEP_DP
| LMC_GEP_RESET
);
432 * RESET low to force configuration. This also forces
433 * the transmitter clock to be internal, but we expect to reset
437 sc
->lmc_gpio
&= ~(LMC_GEP_RESET
| LMC_GEP_DP
);
438 LMC_CSR_WRITE(sc
, csr_gp
, sc
->lmc_gpio
);
442 * hold for more than 10 microseconds
446 sc
->lmc_gpio
|= LMC_GEP_DP
| LMC_GEP_RESET
;
447 LMC_CSR_WRITE(sc
, csr_gp
, sc
->lmc_gpio
);
450 * busy wait for the chip to reset
452 while( (LMC_CSR_READ(sc
, csr_gp
) & LMC_GEP_INIT
) == 0 &&
458 * stop driving Xilinx-related signals
460 lmc_gpio_mkinput(sc
, 0xff);
469 case lmc_xilinx_load
: /*fold02*/
473 int timeout
= 500000;
480 data
= kmalloc(xc
.len
, GFP_KERNEL
);
482 printk(KERN_WARNING
"%s: Failed to allocate memory for copy\n", dev
->name
);
487 if(copy_from_user(data
, xc
.data
, xc
.len
))
494 printk("%s: Starting load of data Len: %d at 0x%p == 0x%p\n", dev
->name
, xc
.len
, xc
.data
, data
);
496 lmc_gpio_mkinput(sc
, 0xff);
499 * Clear the Xilinx and start prgramming from the DEC
510 sc
->lmc_gpio
&= ~LMC_GEP_DP
;
511 sc
->lmc_gpio
&= ~LMC_GEP_RESET
;
512 sc
->lmc_gpio
|= LMC_GEP_MODE
;
513 LMC_CSR_WRITE(sc
, csr_gp
, sc
->lmc_gpio
);
515 lmc_gpio_mkoutput(sc
, LMC_GEP_MODE
| LMC_GEP_DP
| LMC_GEP_RESET
);
518 * Wait at least 10 us 20 to be safe
523 * Clear reset and activate programming lines
530 lmc_gpio_mkinput(sc
, LMC_GEP_DP
| LMC_GEP_RESET
);
533 * Set LOAD, DATA, Clock to 1
536 sc
->lmc_gpio
|= LMC_GEP_MODE
;
537 sc
->lmc_gpio
|= LMC_GEP_DATA
;
538 sc
->lmc_gpio
|= LMC_GEP_CLK
;
539 LMC_CSR_WRITE(sc
, csr_gp
, sc
->lmc_gpio
);
541 lmc_gpio_mkoutput(sc
, LMC_GEP_DATA
| LMC_GEP_CLK
| LMC_GEP_MODE
);
544 * busy wait for the chip to reset
546 while( (LMC_CSR_READ(sc
, csr_gp
) & LMC_GEP_INIT
) == 0 &&
550 printk(KERN_DEBUG
"%s: Waited %d for the Xilinx to clear it's memory\n", dev
->name
, 500000-timeout
);
552 for(pos
= 0; pos
< xc
.len
; pos
++){
555 sc
->lmc_gpio
&= ~LMC_GEP_DATA
; /* Data is 0 */
558 sc
->lmc_gpio
|= LMC_GEP_DATA
; /* Data is 1 */
561 printk(KERN_WARNING
"%s Bad data in xilinx programming data at %d, got %d wanted 0 or 1\n", dev
->name
, pos
, data
[pos
]);
562 sc
->lmc_gpio
|= LMC_GEP_DATA
; /* Assume it's 1 */
564 sc
->lmc_gpio
&= ~LMC_GEP_CLK
; /* Clock to zero */
565 sc
->lmc_gpio
|= LMC_GEP_MODE
;
566 LMC_CSR_WRITE(sc
, csr_gp
, sc
->lmc_gpio
);
569 sc
->lmc_gpio
|= LMC_GEP_CLK
; /* Put the clack back to one */
570 sc
->lmc_gpio
|= LMC_GEP_MODE
;
571 LMC_CSR_WRITE(sc
, csr_gp
, sc
->lmc_gpio
);
574 if((LMC_CSR_READ(sc
, csr_gp
) & LMC_GEP_INIT
) == 0){
575 printk(KERN_WARNING
"%s: Reprogramming FAILED. Needs to be reprogrammed. (corrupted data)\n", dev
->name
);
577 else if((LMC_CSR_READ(sc
, csr_gp
) & LMC_GEP_DP
) == 0){
578 printk(KERN_WARNING
"%s: Reprogramming FAILED. Needs to be reprogrammed. (done)\n", dev
->name
);
581 printk(KERN_DEBUG
"%s: Done reprogramming Xilinx, %d bits, good luck!\n", dev
->name
, pos
);
584 lmc_gpio_mkinput(sc
, 0xff);
586 sc
->lmc_miireg16
|= LMC_MII16_FIFO_RESET
;
587 lmc_mii_writereg(sc
, 0, 16, sc
->lmc_miireg16
);
589 sc
->lmc_miireg16
&= ~LMC_MII16_FIFO_RESET
;
590 lmc_mii_writereg(sc
, 0, 16, sc
->lmc_miireg16
);
603 netif_wake_queue(dev
);
609 /* If we don't know what to do, give the protocol a shot. */
610 ret
= lmc_proto_ioctl (sc
, ifr
, cmd
);
614 spin_unlock_irqrestore(&sc
->lmc_lock
, flags
); /*fold01*/
616 lmc_trace(dev
, "lmc_ioctl out");
622 /* the watchdog process that cruises around */
623 static void lmc_watchdog (unsigned long data
) /*fold00*/
625 struct net_device
*dev
= (struct net_device
*)data
;
626 lmc_softc_t
*sc
= dev_to_sc(dev
);
631 lmc_trace(dev
, "lmc_watchdog in");
633 spin_lock_irqsave(&sc
->lmc_lock
, flags
);
635 if(sc
->check
!= 0xBEAFCAFE){
636 printk("LMC: Corrupt net_device struct, breaking out\n");
637 spin_unlock_irqrestore(&sc
->lmc_lock
, flags
);
642 /* Make sure the tx jabber and rx watchdog are off,
643 * and the transmit and receive processes are running.
646 LMC_CSR_WRITE (sc
, csr_15
, 0x00000011);
647 sc
->lmc_cmdmode
|= TULIP_CMD_TXRUN
| TULIP_CMD_RXRUN
;
648 LMC_CSR_WRITE (sc
, csr_command
, sc
->lmc_cmdmode
);
653 LMC_EVENT_LOG(LMC_EVENT_WATCHDOG
, LMC_CSR_READ (sc
, csr_status
), lmc_mii_readreg (sc
, 0, 16));
655 /* --- begin time out check -----------------------------------
656 * check for a transmit interrupt timeout
657 * Has the packet xmt vs xmt serviced threshold been exceeded */
658 if (sc
->lmc_taint_tx
== sc
->lastlmc_taint_tx
&&
659 sc
->lmc_device
->stats
.tx_packets
> sc
->lasttx_packets
&&
660 sc
->tx_TimeoutInd
== 0)
663 /* wait for the watchdog to come around again */
664 sc
->tx_TimeoutInd
= 1;
666 else if (sc
->lmc_taint_tx
== sc
->lastlmc_taint_tx
&&
667 sc
->lmc_device
->stats
.tx_packets
> sc
->lasttx_packets
&&
671 LMC_EVENT_LOG(LMC_EVENT_XMTINTTMO
, LMC_CSR_READ (sc
, csr_status
), 0);
673 sc
->tx_TimeoutDisplay
= 1;
674 sc
->extra_stats
.tx_TimeoutCnt
++;
676 /* DEC chip is stuck, hit it with a RESET!!!! */
677 lmc_running_reset (dev
);
680 /* look at receive & transmit process state to make sure they are running */
681 LMC_EVENT_LOG(LMC_EVENT_RESET1
, LMC_CSR_READ (sc
, csr_status
), 0);
683 /* look at: DSR - 02 for Reg 16
689 LMC_EVENT_LOG(LMC_EVENT_RESET2
, lmc_mii_readreg (sc
, 0, 16), lmc_mii_readreg (sc
, 0, 17));
691 /* reset the transmit timeout detection flag */
692 sc
->tx_TimeoutInd
= 0;
693 sc
->lastlmc_taint_tx
= sc
->lmc_taint_tx
;
694 sc
->lasttx_packets
= sc
->lmc_device
->stats
.tx_packets
;
696 sc
->tx_TimeoutInd
= 0;
697 sc
->lastlmc_taint_tx
= sc
->lmc_taint_tx
;
698 sc
->lasttx_packets
= sc
->lmc_device
->stats
.tx_packets
;
701 /* --- end time out check ----------------------------------- */
704 link_status
= sc
->lmc_media
->get_link_status (sc
);
707 * hardware level link lost, but the interface is marked as up.
710 if ((link_status
== 0) && (sc
->last_link_status
!= 0)) {
711 printk(KERN_WARNING
"%s: hardware/physical link down\n", dev
->name
);
712 sc
->last_link_status
= 0;
713 /* lmc_reset (sc); Why reset??? The link can go down ok */
715 /* Inform the world that link has been lost */
716 netif_carrier_off(dev
);
720 * hardware link is up, but the interface is marked as down.
721 * Bring it back up again.
723 if (link_status
!= 0 && sc
->last_link_status
== 0) {
724 printk(KERN_WARNING
"%s: hardware/physical link up\n", dev
->name
);
725 sc
->last_link_status
= 1;
726 /* lmc_reset (sc); Again why reset??? */
728 netif_carrier_on(dev
);
731 /* Call media specific watchdog functions */
732 sc
->lmc_media
->watchdog(sc
);
735 * Poke the transmitter to make sure it
736 * never stops, even if we run out of mem
738 LMC_CSR_WRITE(sc
, csr_rxpoll
, 0);
741 * Check for code that failed
742 * and try and fix it as appropriate
744 if(sc
->failed_ring
== 1){
746 * Failed to setup the recv/xmit rin
752 if(sc
->failed_recv_alloc
== 1){
754 * We failed to alloc mem in the
755 * interrupt handler, go through the rings
758 sc
->failed_recv_alloc
= 0;
764 * remember the timer value
768 ticks
= LMC_CSR_READ (sc
, csr_gp_timer
);
769 LMC_CSR_WRITE (sc
, csr_gp_timer
, 0xffffffffUL
);
770 sc
->ictl
.ticks
= 0x0000ffff - (ticks
& 0x0000ffff);
773 * restart this timer.
775 sc
->timer
.expires
= jiffies
+ (HZ
);
776 add_timer (&sc
->timer
);
778 spin_unlock_irqrestore(&sc
->lmc_lock
, flags
);
780 lmc_trace(dev
, "lmc_watchdog out");
784 static int lmc_attach(struct net_device
*dev
, unsigned short encoding
,
785 unsigned short parity
)
787 if (encoding
== ENCODING_NRZ
&& parity
== PARITY_CRC16_PR1_CCITT
)
792 static int __devinit
lmc_init_one(struct pci_dev
*pdev
,
793 const struct pci_device_id
*ent
)
796 struct net_device
*dev
;
800 static int cards_found
;
802 /* lmc_trace(dev, "lmc_init_one in"); */
804 err
= pci_enable_device(pdev
);
806 printk(KERN_ERR
"lmc: pci enable failed: %d\n", err
);
810 err
= pci_request_regions(pdev
, "lmc");
812 printk(KERN_ERR
"lmc: pci_request_region failed\n");
817 * Allocate our own device structure
819 sc
= kzalloc(sizeof(lmc_softc_t
), GFP_KERNEL
);
825 dev
= alloc_hdlcdev(sc
);
827 printk(KERN_ERR
"lmc:alloc_netdev for device failed\n");
832 dev
->type
= ARPHRD_HDLC
;
833 dev_to_hdlc(dev
)->xmit
= lmc_start_xmit
;
834 dev_to_hdlc(dev
)->attach
= lmc_attach
;
835 dev
->open
= lmc_open
;
836 dev
->stop
= lmc_close
;
837 dev
->get_stats
= lmc_get_stats
;
838 dev
->do_ioctl
= lmc_ioctl
;
839 dev
->tx_timeout
= lmc_driver_timeout
;
840 dev
->watchdog_timeo
= HZ
; /* 1 second */
841 dev
->tx_queue_len
= 100;
842 sc
->lmc_device
= dev
;
843 sc
->name
= dev
->name
;
844 sc
->if_type
= LMC_PPP
;
845 sc
->check
= 0xBEAFCAFE;
846 dev
->base_addr
= pci_resource_start(pdev
, 0);
847 dev
->irq
= pdev
->irq
;
848 pci_set_drvdata(pdev
, dev
);
849 SET_NETDEV_DEV(dev
, &pdev
->dev
);
852 * This will get the protocol layer ready and do any 1 time init's
853 * Must have a valid sc and dev structure
855 lmc_proto_attach(sc
);
857 /* Init the spin lock so can call it latter */
859 spin_lock_init(&sc
->lmc_lock
);
860 pci_set_master(pdev
);
862 printk(KERN_INFO
"%s: detected at %lx, irq %d\n", dev
->name
,
863 dev
->base_addr
, dev
->irq
);
865 err
= register_hdlc_device(dev
);
867 printk(KERN_ERR
"%s: register_netdev failed.\n", dev
->name
);
872 sc
->lmc_cardtype
= LMC_CARDTYPE_UNKNOWN
;
873 sc
->lmc_timing
= LMC_CTL_CLOCK_SOURCE_EXT
;
877 * Check either the subvendor or the subdevice, some systems reverse
878 * the setting in the bois, seems to be version and arch dependent?
879 * Fix the error, exchange the two values
881 if ((subdevice
= pdev
->subsystem_device
) == PCI_VENDOR_ID_LMC
)
882 subdevice
= pdev
->subsystem_vendor
;
885 case PCI_DEVICE_ID_LMC_HSSI
:
886 printk(KERN_INFO
"%s: LMC HSSI\n", dev
->name
);
887 sc
->lmc_cardtype
= LMC_CARDTYPE_HSSI
;
888 sc
->lmc_media
= &lmc_hssi_media
;
890 case PCI_DEVICE_ID_LMC_DS3
:
891 printk(KERN_INFO
"%s: LMC DS3\n", dev
->name
);
892 sc
->lmc_cardtype
= LMC_CARDTYPE_DS3
;
893 sc
->lmc_media
= &lmc_ds3_media
;
895 case PCI_DEVICE_ID_LMC_SSI
:
896 printk(KERN_INFO
"%s: LMC SSI\n", dev
->name
);
897 sc
->lmc_cardtype
= LMC_CARDTYPE_SSI
;
898 sc
->lmc_media
= &lmc_ssi_media
;
900 case PCI_DEVICE_ID_LMC_T1
:
901 printk(KERN_INFO
"%s: LMC T1\n", dev
->name
);
902 sc
->lmc_cardtype
= LMC_CARDTYPE_T1
;
903 sc
->lmc_media
= &lmc_t1_media
;
906 printk(KERN_WARNING
"%s: LMC UNKOWN CARD!\n", dev
->name
);
910 lmc_initcsrs (sc
, dev
->base_addr
, 8);
912 lmc_gpio_mkinput (sc
, 0xff);
913 sc
->lmc_gpio
= 0; /* drive no signals yet */
915 sc
->lmc_media
->defaults (sc
);
917 sc
->lmc_media
->set_link_status (sc
, LMC_LINK_UP
);
919 /* verify that the PCI Sub System ID matches the Adapter Model number
920 * from the MII register
922 AdapModelNum
= (lmc_mii_readreg (sc
, 0, 3) & 0x3f0) >> 4;
924 if ((AdapModelNum
!= LMC_ADAP_T1
|| /* detect LMC1200 */
925 subdevice
!= PCI_DEVICE_ID_LMC_T1
) &&
926 (AdapModelNum
!= LMC_ADAP_SSI
|| /* detect LMC1000 */
927 subdevice
!= PCI_DEVICE_ID_LMC_SSI
) &&
928 (AdapModelNum
!= LMC_ADAP_DS3
|| /* detect LMC5245 */
929 subdevice
!= PCI_DEVICE_ID_LMC_DS3
) &&
930 (AdapModelNum
!= LMC_ADAP_HSSI
|| /* detect LMC5200 */
931 subdevice
!= PCI_DEVICE_ID_LMC_HSSI
))
932 printk(KERN_WARNING
"%s: Model number (%d) miscompare for PCI"
933 " Subsystem ID = 0x%04x\n",
934 dev
->name
, AdapModelNum
, subdevice
);
939 LMC_CSR_WRITE (sc
, csr_gp_timer
, 0xFFFFFFFFUL
);
941 sc
->board_idx
= cards_found
++;
942 sc
->extra_stats
.check
= STATCHECK
;
943 sc
->extra_stats
.version_size
= (DRIVER_VERSION
<< 16) +
944 sizeof(sc
->lmc_device
->stats
) + sizeof(sc
->extra_stats
);
945 sc
->extra_stats
.lmc_cardtype
= sc
->lmc_cardtype
;
948 sc
->last_link_status
= 0;
950 lmc_trace(dev
, "lmc_init_one out");
954 pci_set_drvdata(pdev
, NULL
);
957 pci_release_regions(pdev
);
959 pci_disable_device(pdev
);
964 * Called from pci when removing module.
966 static void __devexit
lmc_remove_one(struct pci_dev
*pdev
)
968 struct net_device
*dev
= pci_get_drvdata(pdev
);
971 printk(KERN_DEBUG
"%s: removing...\n", dev
->name
);
972 unregister_hdlc_device(dev
);
974 pci_release_regions(pdev
);
975 pci_disable_device(pdev
);
976 pci_set_drvdata(pdev
, NULL
);
980 /* After this is called, packets can be sent.
981 * Does not initialize the addresses
983 static int lmc_open(struct net_device
*dev
)
985 lmc_softc_t
*sc
= dev_to_sc(dev
);
988 lmc_trace(dev
, "lmc_open in");
990 lmc_led_on(sc
, LMC_DS3_LED0
);
995 LMC_EVENT_LOG(LMC_EVENT_RESET1
, LMC_CSR_READ(sc
, csr_status
), 0);
996 LMC_EVENT_LOG(LMC_EVENT_RESET2
, lmc_mii_readreg(sc
, 0, 16),
997 lmc_mii_readreg(sc
, 0, 17));
1000 lmc_trace(dev
, "lmc_open lmc_ok out");
1006 /* Since we have to use PCI bus, this should work on x86,alpha,ppc */
1007 if (request_irq (dev
->irq
, &lmc_interrupt
, IRQF_SHARED
, dev
->name
, dev
)){
1008 printk(KERN_WARNING
"%s: could not get irq: %d\n", dev
->name
, dev
->irq
);
1009 lmc_trace(dev
, "lmc_open irq failed out");
1014 /* Assert Terminal Active */
1015 sc
->lmc_miireg16
|= LMC_MII16_LED_ALL
;
1016 sc
->lmc_media
->set_link_status (sc
, LMC_LINK_UP
);
1019 * reset to last state.
1021 sc
->lmc_media
->set_status (sc
, NULL
);
1023 /* setup default bits to be used in tulip_desc_t transmit descriptor
1025 sc
->TxDescriptControlInit
= (
1026 LMC_TDES_INTERRUPT_ON_COMPLETION
1027 | LMC_TDES_FIRST_SEGMENT
1028 | LMC_TDES_LAST_SEGMENT
1029 | LMC_TDES_SECOND_ADDR_CHAINED
1030 | LMC_TDES_DISABLE_PADDING
1033 if (sc
->ictl
.crc_length
== LMC_CTL_CRC_LENGTH_16
) {
1034 /* disable 32 bit CRC generated by ASIC */
1035 sc
->TxDescriptControlInit
|= LMC_TDES_ADD_CRC_DISABLE
;
1037 sc
->lmc_media
->set_crc_length(sc
, sc
->ictl
.crc_length
);
1038 /* Acknoledge the Terminal Active and light LEDs */
1040 /* dev->flags |= IFF_UP; */
1042 if ((err
= lmc_proto_open(sc
)) != 0)
1045 dev
->do_ioctl
= lmc_ioctl
;
1048 netif_start_queue(dev
);
1049 sc
->extra_stats
.tx_tbusy0
++;
1052 * select what interrupts we want to get
1054 sc
->lmc_intrmask
= 0;
1055 /* Should be using the default interrupt mask defined in the .h file. */
1056 sc
->lmc_intrmask
|= (TULIP_STS_NORMALINTR
1059 | TULIP_STS_ABNRMLINTR
1060 | TULIP_STS_SYSERROR
1061 | TULIP_STS_TXSTOPPED
1062 | TULIP_STS_TXUNDERFLOW
1063 | TULIP_STS_RXSTOPPED
1066 LMC_CSR_WRITE (sc
, csr_intr
, sc
->lmc_intrmask
);
1068 sc
->lmc_cmdmode
|= TULIP_CMD_TXRUN
;
1069 sc
->lmc_cmdmode
|= TULIP_CMD_RXRUN
;
1070 LMC_CSR_WRITE (sc
, csr_command
, sc
->lmc_cmdmode
);
1072 sc
->lmc_ok
= 1; /* Run watchdog */
1075 * Set the if up now - pfb
1078 sc
->last_link_status
= 1;
1081 * Setup a timer for the watchdog on probe, and start it running.
1082 * Since lmc_ok == 0, it will be a NOP for now.
1084 init_timer (&sc
->timer
);
1085 sc
->timer
.expires
= jiffies
+ HZ
;
1086 sc
->timer
.data
= (unsigned long) dev
;
1087 sc
->timer
.function
= &lmc_watchdog
;
1088 add_timer (&sc
->timer
);
1090 lmc_trace(dev
, "lmc_open out");
1095 /* Total reset to compensate for the AdTran DSU doing bad things
1099 static void lmc_running_reset (struct net_device
*dev
) /*fold00*/
1101 lmc_softc_t
*sc
= dev_to_sc(dev
);
1103 lmc_trace(dev
, "lmc_runnig_reset in");
1105 /* stop interrupts */
1106 /* Clear the interrupt mask */
1107 LMC_CSR_WRITE (sc
, csr_intr
, 0x00000000);
1112 /* sc->lmc_miireg16 |= LMC_MII16_LED_ALL; */
1113 sc
->lmc_media
->set_link_status (sc
, 1);
1114 sc
->lmc_media
->set_status (sc
, NULL
);
1116 netif_wake_queue(dev
);
1119 sc
->extra_stats
.tx_tbusy0
++;
1121 sc
->lmc_intrmask
= TULIP_DEFAULT_INTR_MASK
;
1122 LMC_CSR_WRITE (sc
, csr_intr
, sc
->lmc_intrmask
);
1124 sc
->lmc_cmdmode
|= (TULIP_CMD_TXRUN
| TULIP_CMD_RXRUN
);
1125 LMC_CSR_WRITE (sc
, csr_command
, sc
->lmc_cmdmode
);
1127 lmc_trace(dev
, "lmc_runnin_reset_out");
1131 /* This is what is called when you ifconfig down a device.
1132 * This disables the timer for the watchdog and keepalives,
1133 * and disables the irq for dev.
1135 static int lmc_close(struct net_device
*dev
)
1137 /* not calling release_region() as we should */
1138 lmc_softc_t
*sc
= dev_to_sc(dev
);
1140 lmc_trace(dev
, "lmc_close in");
1143 sc
->lmc_media
->set_link_status (sc
, 0);
1144 del_timer (&sc
->timer
);
1145 lmc_proto_close(sc
);
1148 lmc_trace(dev
, "lmc_close out");
1153 /* Ends the transfer of packets */
1154 /* When the interface goes down, this is called */
1155 static int lmc_ifdown (struct net_device
*dev
) /*fold00*/
1157 lmc_softc_t
*sc
= dev_to_sc(dev
);
1161 lmc_trace(dev
, "lmc_ifdown in");
1163 /* Don't let anything else go on right now */
1165 netif_stop_queue(dev
);
1166 sc
->extra_stats
.tx_tbusy1
++;
1168 /* stop interrupts */
1169 /* Clear the interrupt mask */
1170 LMC_CSR_WRITE (sc
, csr_intr
, 0x00000000);
1172 /* Stop Tx and Rx on the chip */
1173 csr6
= LMC_CSR_READ (sc
, csr_command
);
1174 csr6
&= ~LMC_DEC_ST
; /* Turn off the Transmission bit */
1175 csr6
&= ~LMC_DEC_SR
; /* Turn off the Receive bit */
1176 LMC_CSR_WRITE (sc
, csr_command
, csr6
);
1178 sc
->lmc_device
->stats
.rx_missed_errors
+=
1179 LMC_CSR_READ(sc
, csr_missed_frames
) & 0xffff;
1181 /* release the interrupt */
1182 if(sc
->got_irq
== 1){
1183 free_irq (dev
->irq
, dev
);
1187 /* free skbuffs in the Rx queue */
1188 for (i
= 0; i
< LMC_RXDESCS
; i
++)
1190 struct sk_buff
*skb
= sc
->lmc_rxq
[i
];
1191 sc
->lmc_rxq
[i
] = NULL
;
1192 sc
->lmc_rxring
[i
].status
= 0;
1193 sc
->lmc_rxring
[i
].length
= 0;
1194 sc
->lmc_rxring
[i
].buffer1
= 0xDEADBEEF;
1197 sc
->lmc_rxq
[i
] = NULL
;
1200 for (i
= 0; i
< LMC_TXDESCS
; i
++)
1202 if (sc
->lmc_txq
[i
] != NULL
)
1203 dev_kfree_skb(sc
->lmc_txq
[i
]);
1204 sc
->lmc_txq
[i
] = NULL
;
1207 lmc_led_off (sc
, LMC_MII16_LED_ALL
);
1209 netif_wake_queue(dev
);
1210 sc
->extra_stats
.tx_tbusy0
++;
1212 lmc_trace(dev
, "lmc_ifdown out");
1217 /* Interrupt handling routine. This will take an incoming packet, or clean
1218 * up after a trasmit.
1220 static irqreturn_t
lmc_interrupt (int irq
, void *dev_instance
) /*fold00*/
1222 struct net_device
*dev
= (struct net_device
*) dev_instance
;
1223 lmc_softc_t
*sc
= dev_to_sc(dev
);
1229 int max_work
= LMC_RXDESCS
;
1232 lmc_trace(dev
, "lmc_interrupt in");
1234 spin_lock(&sc
->lmc_lock
);
1237 * Read the csr to find what interrupts we have (if any)
1239 csr
= LMC_CSR_READ (sc
, csr_status
);
1242 * Make sure this is our interrupt
1244 if ( ! (csr
& sc
->lmc_intrmask
)) {
1245 goto lmc_int_fail_out
;
1250 /* always go through this loop at least once */
1251 while (csr
& sc
->lmc_intrmask
) {
1255 * Clear interrupt bits, we handle all case below
1257 LMC_CSR_WRITE (sc
, csr_status
, csr
);
1261 * - Transmit process timed out CSR5<1>
1262 * - Transmit jabber timeout CSR5<3>
1263 * - Transmit underflow CSR5<5>
1264 * - Transmit Receiver buffer unavailable CSR5<7>
1265 * - Receive process stopped CSR5<8>
1266 * - Receive watchdog timeout CSR5<9>
1267 * - Early transmit interrupt CSR5<10>
1269 * Is this really right? Should we do a running reset for jabber?
1270 * (being a WAN card and all)
1272 if (csr
& TULIP_STS_ABNRMLINTR
){
1273 lmc_running_reset (dev
);
1277 if (csr
& TULIP_STS_RXINTR
){
1278 lmc_trace(dev
, "rx interrupt");
1282 if (csr
& (TULIP_STS_TXINTR
| TULIP_STS_TXNOBUF
| TULIP_STS_TXSTOPPED
)) {
1285 /* reset the transmit timeout detection flag -baz */
1286 sc
->extra_stats
.tx_NoCompleteCnt
= 0;
1288 badtx
= sc
->lmc_taint_tx
;
1289 i
= badtx
% LMC_TXDESCS
;
1291 while ((badtx
< sc
->lmc_next_tx
)) {
1292 stat
= sc
->lmc_txring
[i
].status
;
1294 LMC_EVENT_LOG (LMC_EVENT_XMTINT
, stat
,
1295 sc
->lmc_txring
[i
].length
);
1297 * If bit 31 is 1 the tulip owns it break out of the loop
1299 if (stat
& 0x80000000)
1302 n_compl
++ ; /* i.e., have an empty slot in ring */
1304 * If we have no skbuff or have cleared it
1305 * Already continue to the next buffer
1307 if (sc
->lmc_txq
[i
] == NULL
)
1311 * Check the total error summary to look for any errors
1313 if (stat
& 0x8000) {
1314 sc
->lmc_device
->stats
.tx_errors
++;
1316 sc
->lmc_device
->stats
.tx_aborted_errors
++;
1318 sc
->lmc_device
->stats
.tx_carrier_errors
++;
1320 sc
->lmc_device
->stats
.tx_window_errors
++;
1322 sc
->lmc_device
->stats
.tx_fifo_errors
++;
1324 sc
->lmc_device
->stats
.tx_bytes
+= sc
->lmc_txring
[i
].length
& 0x7ff;
1326 sc
->lmc_device
->stats
.tx_packets
++;
1329 // dev_kfree_skb(sc->lmc_txq[i]);
1330 dev_kfree_skb_irq(sc
->lmc_txq
[i
]);
1331 sc
->lmc_txq
[i
] = NULL
;
1334 i
= badtx
% LMC_TXDESCS
;
1337 if (sc
->lmc_next_tx
- badtx
> LMC_TXDESCS
)
1339 printk ("%s: out of sync pointer\n", dev
->name
);
1340 badtx
+= LMC_TXDESCS
;
1342 LMC_EVENT_LOG(LMC_EVENT_TBUSY0
, n_compl
, 0);
1344 netif_wake_queue(dev
);
1345 sc
->extra_stats
.tx_tbusy0
++;
1349 sc
->extra_stats
.dirtyTx
= badtx
;
1350 sc
->extra_stats
.lmc_next_tx
= sc
->lmc_next_tx
;
1351 sc
->extra_stats
.lmc_txfull
= sc
->lmc_txfull
;
1353 sc
->lmc_taint_tx
= badtx
;
1356 * Why was there a break here???
1358 } /* end handle transmit interrupt */
1360 if (csr
& TULIP_STS_SYSERROR
) {
1362 printk (KERN_WARNING
"%s: system bus error csr: %#8.8x\n", dev
->name
, csr
);
1363 error
= csr
>>23 & 0x7;
1366 printk(KERN_WARNING
"%s: Parity Fault (bad)\n", dev
->name
);
1369 printk(KERN_WARNING
"%s: Master Abort (naughty)\n", dev
->name
);
1372 printk(KERN_WARNING
"%s: Target Abort (not so naughty)\n", dev
->name
);
1375 printk(KERN_WARNING
"%s: This bus error code was supposed to be reserved!\n", dev
->name
);
1379 LMC_EVENT_LOG(LMC_EVENT_RESET1
, LMC_CSR_READ (sc
, csr_status
), 0);
1380 LMC_EVENT_LOG(LMC_EVENT_RESET2
,
1381 lmc_mii_readreg (sc
, 0, 16),
1382 lmc_mii_readreg (sc
, 0, 17));
1391 * Get current csr status to make sure
1392 * we've cleared all interrupts
1394 csr
= LMC_CSR_READ (sc
, csr_status
);
1395 } /* end interrupt loop */
1396 LMC_EVENT_LOG(LMC_EVENT_INT
, firstcsr
, csr
);
1400 spin_unlock(&sc
->lmc_lock
);
1402 lmc_trace(dev
, "lmc_interrupt out");
1403 return IRQ_RETVAL(handled
);
1406 static int lmc_start_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
1408 lmc_softc_t
*sc
= dev_to_sc(dev
);
1412 unsigned long flags
;
1414 lmc_trace(dev
, "lmc_start_xmit in");
1416 spin_lock_irqsave(&sc
->lmc_lock
, flags
);
1418 /* normal path, tbusy known to be zero */
1420 entry
= sc
->lmc_next_tx
% LMC_TXDESCS
;
1422 sc
->lmc_txq
[entry
] = skb
;
1423 sc
->lmc_txring
[entry
].buffer1
= virt_to_bus (skb
->data
);
1425 LMC_CONSOLE_LOG("xmit", skb
->data
, skb
->len
);
1428 /* If the queue is less than half full, don't interrupt */
1429 if (sc
->lmc_next_tx
- sc
->lmc_taint_tx
< LMC_TXDESCS
/ 2)
1431 /* Do not interrupt on completion of this packet */
1433 netif_wake_queue(dev
);
1435 else if (sc
->lmc_next_tx
- sc
->lmc_taint_tx
== LMC_TXDESCS
/ 2)
1437 /* This generates an interrupt on completion of this packet */
1439 netif_wake_queue(dev
);
1441 else if (sc
->lmc_next_tx
- sc
->lmc_taint_tx
< LMC_TXDESCS
- 1)
1443 /* Do not interrupt on completion of this packet */
1445 netif_wake_queue(dev
);
1449 /* This generates an interrupt on completion of this packet */
1452 netif_stop_queue(dev
);
1455 flag
= LMC_TDES_INTERRUPT_ON_COMPLETION
;
1457 if (sc
->lmc_next_tx
- sc
->lmc_taint_tx
>= LMC_TXDESCS
- 1)
1458 { /* ring full, go busy */
1460 netif_stop_queue(dev
);
1461 sc
->extra_stats
.tx_tbusy1
++;
1462 LMC_EVENT_LOG(LMC_EVENT_TBUSY1
, entry
, 0);
1467 if (entry
== LMC_TXDESCS
- 1) /* last descriptor in ring */
1468 flag
|= LMC_TDES_END_OF_RING
; /* flag as such for Tulip */
1470 /* don't pad small packets either */
1471 flag
= sc
->lmc_txring
[entry
].length
= (skb
->len
) | flag
|
1472 sc
->TxDescriptControlInit
;
1474 /* set the transmit timeout flag to be checked in
1475 * the watchdog timer handler. -baz
1478 sc
->extra_stats
.tx_NoCompleteCnt
++;
1481 /* give ownership to the chip */
1482 LMC_EVENT_LOG(LMC_EVENT_XMT
, flag
, entry
);
1483 sc
->lmc_txring
[entry
].status
= 0x80000000;
1486 LMC_CSR_WRITE (sc
, csr_txpoll
, 0);
1488 dev
->trans_start
= jiffies
;
1490 spin_unlock_irqrestore(&sc
->lmc_lock
, flags
);
1492 lmc_trace(dev
, "lmc_start_xmit_out");
1497 static int lmc_rx(struct net_device
*dev
)
1499 lmc_softc_t
*sc
= dev_to_sc(dev
);
1501 int rx_work_limit
= LMC_RXDESCS
;
1502 unsigned int next_rx
;
1503 int rxIntLoopCnt
; /* debug -baz */
1504 int localLengthErrCnt
= 0;
1506 struct sk_buff
*skb
, *nsb
;
1509 lmc_trace(dev
, "lmc_rx in");
1511 lmc_led_on(sc
, LMC_DS3_LED3
);
1513 rxIntLoopCnt
= 0; /* debug -baz */
1515 i
= sc
->lmc_next_rx
% LMC_RXDESCS
;
1516 next_rx
= sc
->lmc_next_rx
;
1518 while (((stat
= sc
->lmc_rxring
[i
].status
) & LMC_RDES_OWN_BIT
) != DESC_OWNED_BY_DC21X4
)
1520 rxIntLoopCnt
++; /* debug -baz */
1521 len
= ((stat
& LMC_RDES_FRAME_LENGTH
) >> RDES_FRAME_LENGTH_BIT_NUMBER
);
1522 if ((stat
& 0x0300) != 0x0300) { /* Check first segment and last segment */
1523 if ((stat
& 0x0000ffff) != 0x7fff) {
1524 /* Oversized frame */
1525 sc
->lmc_device
->stats
.rx_length_errors
++;
1530 if (stat
& 0x00000008) { /* Catch a dribbling bit error */
1531 sc
->lmc_device
->stats
.rx_errors
++;
1532 sc
->lmc_device
->stats
.rx_frame_errors
++;
1537 if (stat
& 0x00000004) { /* Catch a CRC error by the Xilinx */
1538 sc
->lmc_device
->stats
.rx_errors
++;
1539 sc
->lmc_device
->stats
.rx_crc_errors
++;
1543 if (len
> LMC_PKT_BUF_SZ
) {
1544 sc
->lmc_device
->stats
.rx_length_errors
++;
1545 localLengthErrCnt
++;
1549 if (len
< sc
->lmc_crcSize
+ 2) {
1550 sc
->lmc_device
->stats
.rx_length_errors
++;
1551 sc
->extra_stats
.rx_SmallPktCnt
++;
1552 localLengthErrCnt
++;
1556 if(stat
& 0x00004000){
1557 printk(KERN_WARNING
"%s: Receiver descriptor error, receiver out of sync?\n", dev
->name
);
1560 len
-= sc
->lmc_crcSize
;
1562 skb
= sc
->lmc_rxq
[i
];
1565 * We ran out of memory at some point
1566 * just allocate an skb buff and continue.
1570 nsb
= dev_alloc_skb (LMC_PKT_BUF_SZ
+ 2);
1572 sc
->lmc_rxq
[i
] = nsb
;
1574 sc
->lmc_rxring
[i
].buffer1
= virt_to_bus(skb_tail_pointer(nsb
));
1576 sc
->failed_recv_alloc
= 1;
1580 dev
->last_rx
= jiffies
;
1581 sc
->lmc_device
->stats
.rx_packets
++;
1582 sc
->lmc_device
->stats
.rx_bytes
+= len
;
1584 LMC_CONSOLE_LOG("recv", skb
->data
, len
);
1587 * I'm not sure of the sanity of this
1588 * Packets could be arriving at a constant
1589 * 44.210mbits/sec and we're going to copy
1590 * them into a new buffer??
1593 if(len
> (LMC_MTU
- (LMC_MTU
>>2))){ /* len > LMC_MTU * 0.75 */
1595 * If it's a large packet don't copy it just hand it up
1599 sc
->lmc_rxq
[i
] = NULL
;
1600 sc
->lmc_rxring
[i
].buffer1
= 0x0;
1603 skb
->protocol
= lmc_proto_type(sc
, skb
);
1604 skb_reset_mac_header(skb
);
1605 /* skb_reset_network_header(skb); */
1607 lmc_proto_netif(sc
, skb
);
1610 * This skb will be destroyed by the upper layers, make a new one
1612 nsb
= dev_alloc_skb (LMC_PKT_BUF_SZ
+ 2);
1614 sc
->lmc_rxq
[i
] = nsb
;
1616 sc
->lmc_rxring
[i
].buffer1
= virt_to_bus(skb_tail_pointer(nsb
));
1617 /* Transferred to 21140 below */
1621 * We've run out of memory, stop trying to allocate
1622 * memory and exit the interrupt handler
1624 * The chip may run out of receivers and stop
1625 * in which care we'll try to allocate the buffer
1626 * again. (once a second)
1628 sc
->extra_stats
.rx_BuffAllocErr
++;
1629 LMC_EVENT_LOG(LMC_EVENT_RCVINT
, stat
, len
);
1630 sc
->failed_recv_alloc
= 1;
1631 goto skip_out_of_mem
;
1635 nsb
= dev_alloc_skb(len
);
1637 goto give_it_anyways
;
1639 skb_copy_from_linear_data(skb
, skb_put(nsb
, len
), len
);
1641 nsb
->protocol
= lmc_proto_type(sc
, skb
);
1642 skb_reset_mac_header(nsb
);
1643 /* skb_reset_network_header(nsb); */
1645 lmc_proto_netif(sc
, nsb
);
1649 LMC_EVENT_LOG(LMC_EVENT_RCVINT
, stat
, len
);
1650 sc
->lmc_rxring
[i
].status
= DESC_OWNED_BY_DC21X4
;
1653 i
= sc
->lmc_next_rx
% LMC_RXDESCS
;
1655 if (rx_work_limit
< 0)
1659 /* detect condition for LMC1000 where DSU cable attaches and fills
1660 * descriptors with bogus packets
1662 if (localLengthErrCnt > LMC_RXDESCS - 3) {
1663 sc->extra_stats.rx_BadPktSurgeCnt++;
1664 LMC_EVENT_LOG(LMC_EVENT_BADPKTSURGE, localLengthErrCnt,
1665 sc->extra_stats.rx_BadPktSurgeCnt);
1668 /* save max count of receive descriptors serviced */
1669 if (rxIntLoopCnt
> sc
->extra_stats
.rxIntLoopCnt
)
1670 sc
->extra_stats
.rxIntLoopCnt
= rxIntLoopCnt
; /* debug -baz */
1673 if (rxIntLoopCnt
== 0)
1675 for (i
= 0; i
< LMC_RXDESCS
; i
++)
1677 if ((sc
->lmc_rxring
[i
].status
& LMC_RDES_OWN_BIT
)
1678 != DESC_OWNED_BY_DC21X4
)
1683 LMC_EVENT_LOG(LMC_EVENT_RCVEND
, rxIntLoopCnt
, 0);
1688 lmc_led_off(sc
, LMC_DS3_LED3
);
1692 lmc_trace(dev
, "lmc_rx out");
1697 static struct net_device_stats
*lmc_get_stats(struct net_device
*dev
)
1699 lmc_softc_t
*sc
= dev_to_sc(dev
);
1700 unsigned long flags
;
1702 lmc_trace(dev
, "lmc_get_stats in");
1704 spin_lock_irqsave(&sc
->lmc_lock
, flags
);
1706 sc
->lmc_device
->stats
.rx_missed_errors
+= LMC_CSR_READ(sc
, csr_missed_frames
) & 0xffff;
1708 spin_unlock_irqrestore(&sc
->lmc_lock
, flags
);
1710 lmc_trace(dev
, "lmc_get_stats out");
1712 return &sc
->lmc_device
->stats
;
1715 static struct pci_driver lmc_driver
= {
1717 .id_table
= lmc_pci_tbl
,
1718 .probe
= lmc_init_one
,
1719 .remove
= __devexit_p(lmc_remove_one
),
1722 static int __init
init_lmc(void)
1724 return pci_register_driver(&lmc_driver
);
1727 static void __exit
exit_lmc(void)
1729 pci_unregister_driver(&lmc_driver
);
1732 module_init(init_lmc
);
1733 module_exit(exit_lmc
);
1735 unsigned lmc_mii_readreg (lmc_softc_t
* const sc
, unsigned devaddr
, unsigned regno
) /*fold00*/
1738 int command
= (0xf6 << 10) | (devaddr
<< 5) | regno
;
1741 lmc_trace(sc
->lmc_device
, "lmc_mii_readreg in");
1745 lmc_trace(sc
->lmc_device
, "lmc_mii_readreg: done sync");
1747 for (i
= 15; i
>= 0; i
--)
1749 int dataval
= (command
& (1 << i
)) ? 0x20000 : 0;
1751 LMC_CSR_WRITE (sc
, csr_9
, dataval
);
1753 /* __SLOW_DOWN_IO; */
1754 LMC_CSR_WRITE (sc
, csr_9
, dataval
| 0x10000);
1756 /* __SLOW_DOWN_IO; */
1759 lmc_trace(sc
->lmc_device
, "lmc_mii_readreg: done1");
1761 for (i
= 19; i
> 0; i
--)
1763 LMC_CSR_WRITE (sc
, csr_9
, 0x40000);
1765 /* __SLOW_DOWN_IO; */
1766 retval
= (retval
<< 1) | ((LMC_CSR_READ (sc
, csr_9
) & 0x80000) ? 1 : 0);
1767 LMC_CSR_WRITE (sc
, csr_9
, 0x40000 | 0x10000);
1769 /* __SLOW_DOWN_IO; */
1772 lmc_trace(sc
->lmc_device
, "lmc_mii_readreg out");
1774 return (retval
>> 1) & 0xffff;
1777 void lmc_mii_writereg (lmc_softc_t
* const sc
, unsigned devaddr
, unsigned regno
, unsigned data
) /*fold00*/
1780 int command
= (0x5002 << 16) | (devaddr
<< 23) | (regno
<< 18) | data
;
1782 lmc_trace(sc
->lmc_device
, "lmc_mii_writereg in");
1791 if (command
& (1 << i
))
1796 LMC_CSR_WRITE (sc
, csr_9
, datav
);
1798 /* __SLOW_DOWN_IO; */
1799 LMC_CSR_WRITE (sc
, csr_9
, (datav
| 0x10000));
1801 /* __SLOW_DOWN_IO; */
1808 LMC_CSR_WRITE (sc
, csr_9
, 0x40000);
1810 /* __SLOW_DOWN_IO; */
1811 LMC_CSR_WRITE (sc
, csr_9
, 0x50000);
1813 /* __SLOW_DOWN_IO; */
1817 lmc_trace(sc
->lmc_device
, "lmc_mii_writereg out");
1820 static void lmc_softreset (lmc_softc_t
* const sc
) /*fold00*/
1824 lmc_trace(sc
->lmc_device
, "lmc_softreset in");
1826 /* Initialize the receive rings and buffers. */
1828 sc
->lmc_next_rx
= 0;
1829 sc
->lmc_next_tx
= 0;
1830 sc
->lmc_taint_rx
= 0;
1831 sc
->lmc_taint_tx
= 0;
1834 * Setup each one of the receiver buffers
1835 * allocate an skbuff for each one, setup the descriptor table
1836 * and point each buffer at the next one
1839 for (i
= 0; i
< LMC_RXDESCS
; i
++)
1841 struct sk_buff
*skb
;
1843 if (sc
->lmc_rxq
[i
] == NULL
)
1845 skb
= dev_alloc_skb (LMC_PKT_BUF_SZ
+ 2);
1847 printk(KERN_WARNING
"%s: Failed to allocate receiver ring, will try again\n", sc
->name
);
1848 sc
->failed_ring
= 1;
1852 sc
->lmc_rxq
[i
] = skb
;
1857 skb
= sc
->lmc_rxq
[i
];
1860 skb
->dev
= sc
->lmc_device
;
1862 /* owned by 21140 */
1863 sc
->lmc_rxring
[i
].status
= 0x80000000;
1865 /* used to be PKT_BUF_SZ now uses skb since we lose some to head room */
1866 sc
->lmc_rxring
[i
].length
= skb_tailroom(skb
);
1868 /* use to be tail which is dumb since you're thinking why write
1869 * to the end of the packj,et but since there's nothing there tail == data
1871 sc
->lmc_rxring
[i
].buffer1
= virt_to_bus (skb
->data
);
1873 /* This is fair since the structure is static and we have the next address */
1874 sc
->lmc_rxring
[i
].buffer2
= virt_to_bus (&sc
->lmc_rxring
[i
+ 1]);
1881 sc
->lmc_rxring
[i
- 1].length
|= 0x02000000; /* Set end of buffers flag */
1882 sc
->lmc_rxring
[i
- 1].buffer2
= virt_to_bus (&sc
->lmc_rxring
[0]); /* Point back to the start */
1883 LMC_CSR_WRITE (sc
, csr_rxlist
, virt_to_bus (sc
->lmc_rxring
)); /* write base address */
1886 /* Initialize the transmit rings and buffers */
1887 for (i
= 0; i
< LMC_TXDESCS
; i
++)
1889 if (sc
->lmc_txq
[i
] != NULL
){ /* have buffer */
1890 dev_kfree_skb(sc
->lmc_txq
[i
]); /* free it */
1891 sc
->lmc_device
->stats
.tx_dropped
++; /* We just dropped a packet */
1893 sc
->lmc_txq
[i
] = NULL
;
1894 sc
->lmc_txring
[i
].status
= 0x00000000;
1895 sc
->lmc_txring
[i
].buffer2
= virt_to_bus (&sc
->lmc_txring
[i
+ 1]);
1897 sc
->lmc_txring
[i
- 1].buffer2
= virt_to_bus (&sc
->lmc_txring
[0]);
1898 LMC_CSR_WRITE (sc
, csr_txlist
, virt_to_bus (sc
->lmc_txring
));
1900 lmc_trace(sc
->lmc_device
, "lmc_softreset out");
1903 void lmc_gpio_mkinput(lmc_softc_t
* const sc
, u32 bits
) /*fold00*/
1905 lmc_trace(sc
->lmc_device
, "lmc_gpio_mkinput in");
1906 sc
->lmc_gpio_io
&= ~bits
;
1907 LMC_CSR_WRITE(sc
, csr_gp
, TULIP_GP_PINSET
| (sc
->lmc_gpio_io
));
1908 lmc_trace(sc
->lmc_device
, "lmc_gpio_mkinput out");
1911 void lmc_gpio_mkoutput(lmc_softc_t
* const sc
, u32 bits
) /*fold00*/
1913 lmc_trace(sc
->lmc_device
, "lmc_gpio_mkoutput in");
1914 sc
->lmc_gpio_io
|= bits
;
1915 LMC_CSR_WRITE(sc
, csr_gp
, TULIP_GP_PINSET
| (sc
->lmc_gpio_io
));
1916 lmc_trace(sc
->lmc_device
, "lmc_gpio_mkoutput out");
1919 void lmc_led_on(lmc_softc_t
* const sc
, u32 led
) /*fold00*/
1921 lmc_trace(sc
->lmc_device
, "lmc_led_on in");
1922 if((~sc
->lmc_miireg16
) & led
){ /* Already on! */
1923 lmc_trace(sc
->lmc_device
, "lmc_led_on aon out");
1927 sc
->lmc_miireg16
&= ~led
;
1928 lmc_mii_writereg(sc
, 0, 16, sc
->lmc_miireg16
);
1929 lmc_trace(sc
->lmc_device
, "lmc_led_on out");
1932 void lmc_led_off(lmc_softc_t
* const sc
, u32 led
) /*fold00*/
1934 lmc_trace(sc
->lmc_device
, "lmc_led_off in");
1935 if(sc
->lmc_miireg16
& led
){ /* Already set don't do anything */
1936 lmc_trace(sc
->lmc_device
, "lmc_led_off aoff out");
1940 sc
->lmc_miireg16
|= led
;
1941 lmc_mii_writereg(sc
, 0, 16, sc
->lmc_miireg16
);
1942 lmc_trace(sc
->lmc_device
, "lmc_led_off out");
1945 static void lmc_reset(lmc_softc_t
* const sc
) /*fold00*/
1947 lmc_trace(sc
->lmc_device
, "lmc_reset in");
1948 sc
->lmc_miireg16
|= LMC_MII16_FIFO_RESET
;
1949 lmc_mii_writereg(sc
, 0, 16, sc
->lmc_miireg16
);
1951 sc
->lmc_miireg16
&= ~LMC_MII16_FIFO_RESET
;
1952 lmc_mii_writereg(sc
, 0, 16, sc
->lmc_miireg16
);
1955 * make some of the GPIO pins be outputs
1957 lmc_gpio_mkoutput(sc
, LMC_GEP_RESET
);
1960 * RESET low to force state reset. This also forces
1961 * the transmitter clock to be internal, but we expect to reset
1962 * that later anyway.
1964 sc
->lmc_gpio
&= ~(LMC_GEP_RESET
);
1965 LMC_CSR_WRITE(sc
, csr_gp
, sc
->lmc_gpio
);
1968 * hold for more than 10 microseconds
1973 * stop driving Xilinx-related signals
1975 lmc_gpio_mkinput(sc
, LMC_GEP_RESET
);
1978 * Call media specific init routine
1980 sc
->lmc_media
->init(sc
);
1982 sc
->extra_stats
.resetCount
++;
1983 lmc_trace(sc
->lmc_device
, "lmc_reset out");
1986 static void lmc_dec_reset(lmc_softc_t
* const sc
) /*fold00*/
1989 lmc_trace(sc
->lmc_device
, "lmc_dec_reset in");
1992 * disable all interrupts
1994 sc
->lmc_intrmask
= 0;
1995 LMC_CSR_WRITE(sc
, csr_intr
, sc
->lmc_intrmask
);
1998 * Reset the chip with a software reset command.
1999 * Wait 10 microseconds (actually 50 PCI cycles but at
2000 * 33MHz that comes to two microseconds but wait a
2001 * bit longer anyways)
2003 LMC_CSR_WRITE(sc
, csr_busmode
, TULIP_BUSMODE_SWRESET
);
2006 sc
->lmc_busmode
= LMC_CSR_READ(sc
, csr_busmode
);
2007 sc
->lmc_busmode
= 0x00100000;
2008 sc
->lmc_busmode
&= ~TULIP_BUSMODE_SWRESET
;
2009 LMC_CSR_WRITE(sc
, csr_busmode
, sc
->lmc_busmode
);
2011 sc
->lmc_cmdmode
= LMC_CSR_READ(sc
, csr_command
);
2015 * no ethernet address in frames we write
2016 * disable padding (txdesc, padding disable)
2017 * ignore runt frames (rdes0 bit 15)
2018 * no receiver watchdog or transmitter jabber timer
2019 * (csr15 bit 0,14 == 1)
2020 * if using 16-bit CRC, turn off CRC (trans desc, crc disable)
2023 sc
->lmc_cmdmode
|= ( TULIP_CMD_PROMISCUOUS
2024 | TULIP_CMD_FULLDUPLEX
2025 | TULIP_CMD_PASSBADPKT
2026 | TULIP_CMD_NOHEARTBEAT
2027 | TULIP_CMD_PORTSELECT
2028 | TULIP_CMD_RECEIVEALL
2029 | TULIP_CMD_MUSTBEONE
2031 sc
->lmc_cmdmode
&= ~( TULIP_CMD_OPERMODE
2032 | TULIP_CMD_THRESHOLDCTL
2033 | TULIP_CMD_STOREFWD
2034 | TULIP_CMD_TXTHRSHLDCTL
2037 LMC_CSR_WRITE(sc
, csr_command
, sc
->lmc_cmdmode
);
2040 * disable receiver watchdog and transmit jabber
2042 val
= LMC_CSR_READ(sc
, csr_sia_general
);
2043 val
|= (TULIP_WATCHDOG_TXDISABLE
| TULIP_WATCHDOG_RXDISABLE
);
2044 LMC_CSR_WRITE(sc
, csr_sia_general
, val
);
2046 lmc_trace(sc
->lmc_device
, "lmc_dec_reset out");
2049 static void lmc_initcsrs(lmc_softc_t
* const sc
, lmc_csrptr_t csr_base
, /*fold00*/
2052 lmc_trace(sc
->lmc_device
, "lmc_initcsrs in");
2053 sc
->lmc_csrs
.csr_busmode
= csr_base
+ 0 * csr_size
;
2054 sc
->lmc_csrs
.csr_txpoll
= csr_base
+ 1 * csr_size
;
2055 sc
->lmc_csrs
.csr_rxpoll
= csr_base
+ 2 * csr_size
;
2056 sc
->lmc_csrs
.csr_rxlist
= csr_base
+ 3 * csr_size
;
2057 sc
->lmc_csrs
.csr_txlist
= csr_base
+ 4 * csr_size
;
2058 sc
->lmc_csrs
.csr_status
= csr_base
+ 5 * csr_size
;
2059 sc
->lmc_csrs
.csr_command
= csr_base
+ 6 * csr_size
;
2060 sc
->lmc_csrs
.csr_intr
= csr_base
+ 7 * csr_size
;
2061 sc
->lmc_csrs
.csr_missed_frames
= csr_base
+ 8 * csr_size
;
2062 sc
->lmc_csrs
.csr_9
= csr_base
+ 9 * csr_size
;
2063 sc
->lmc_csrs
.csr_10
= csr_base
+ 10 * csr_size
;
2064 sc
->lmc_csrs
.csr_11
= csr_base
+ 11 * csr_size
;
2065 sc
->lmc_csrs
.csr_12
= csr_base
+ 12 * csr_size
;
2066 sc
->lmc_csrs
.csr_13
= csr_base
+ 13 * csr_size
;
2067 sc
->lmc_csrs
.csr_14
= csr_base
+ 14 * csr_size
;
2068 sc
->lmc_csrs
.csr_15
= csr_base
+ 15 * csr_size
;
2069 lmc_trace(sc
->lmc_device
, "lmc_initcsrs out");
2072 static void lmc_driver_timeout(struct net_device
*dev
)
2074 lmc_softc_t
*sc
= dev_to_sc(dev
);
2076 unsigned long flags
;
2078 lmc_trace(dev
, "lmc_driver_timeout in");
2080 spin_lock_irqsave(&sc
->lmc_lock
, flags
);
2082 printk("%s: Xmitter busy|\n", dev
->name
);
2084 sc
->extra_stats
.tx_tbusy_calls
++;
2085 if (jiffies
- dev
->trans_start
< TX_TIMEOUT
)
2089 * Chip seems to have locked up
2091 * This whips out all our decriptor
2092 * table and starts from scartch
2095 LMC_EVENT_LOG(LMC_EVENT_XMTPRCTMO
,
2096 LMC_CSR_READ (sc
, csr_status
),
2097 sc
->extra_stats
.tx_ProcTimeout
);
2099 lmc_running_reset (dev
);
2101 LMC_EVENT_LOG(LMC_EVENT_RESET1
, LMC_CSR_READ (sc
, csr_status
), 0);
2102 LMC_EVENT_LOG(LMC_EVENT_RESET2
,
2103 lmc_mii_readreg (sc
, 0, 16),
2104 lmc_mii_readreg (sc
, 0, 17));
2106 /* restart the tx processes */
2107 csr6
= LMC_CSR_READ (sc
, csr_command
);
2108 LMC_CSR_WRITE (sc
, csr_command
, csr6
| 0x0002);
2109 LMC_CSR_WRITE (sc
, csr_command
, csr6
| 0x2002);
2111 /* immediate transmit */
2112 LMC_CSR_WRITE (sc
, csr_txpoll
, 0);
2114 sc
->lmc_device
->stats
.tx_errors
++;
2115 sc
->extra_stats
.tx_ProcTimeout
++; /* -baz */
2117 dev
->trans_start
= jiffies
;
2121 spin_unlock_irqrestore(&sc
->lmc_lock
, flags
);
2123 lmc_trace(dev
, "lmc_driver_timout out");