📄 am79c961a.c
字号:
/* * linux/drivers/net/am79c961.c * * by Russell King <rmk@arm.linux.org.uk> 1995-2001. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. * * Derived from various things including skeleton.c * * This is a special driver for the am79c961A Lance chip used in the * Intel (formally Digital Equipment Corp) EBSA110 platform. Please * note that this can not be built as a module (it doesn't make sense). */#include <linux/kernel.h>#include <linux/types.h>#include <linux/interrupt.h>#include <linux/ioport.h>#include <linux/slab.h>#include <linux/string.h>#include <linux/errno.h>#include <linux/netdevice.h>#include <linux/etherdevice.h>#include <linux/delay.h>#include <linux/init.h>#include <linux/crc32.h>#include <linux/bitops.h>#include <linux/platform_device.h>#include <asm/hardware.h>#include <asm/io.h>#include <asm/system.h>#define TX_BUFFERS 15#define RX_BUFFERS 25#include "am79c961a.h"static irqreturn_tam79c961_interrupt (int irq, void *dev_id, struct pt_regs *regs);static unsigned int net_debug = NET_DEBUG;static const char version[] = "am79c961 ethernet driver (C) 1995-2001 Russell King v0.04\n";/* --------------------------------------------------------------------------- */#ifdef __arm__static void write_rreg(u_long base, u_int reg, u_int val){ __asm__( "str%?h %1, [%2] @ NET_RAP\n\t" "str%?h %0, [%2, #-4] @ NET_RDP" : : "r" (val), "r" (reg), "r" (ISAIO_BASE + 0x0464));}static inline unsigned short read_rreg(u_long base_addr, u_int reg){ unsigned short v; __asm__( "str%?h %1, [%2] @ NET_RAP\n\t" "ldr%?h %0, [%2, #-4] @ NET_RDP" : "=r" (v) : "r" (reg), "r" (ISAIO_BASE + 0x0464)); return v;}static inline void write_ireg(u_long base, u_int reg, u_int val){ __asm__( "str%?h %1, [%2] @ NET_RAP\n\t" "str%?h %0, [%2, #8] @ NET_IDP" : : "r" (val), "r" (reg), "r" (ISAIO_BASE + 0x0464));}static inline unsigned short read_ireg(u_long base_addr, u_int reg){ u_short v; __asm__( "str%?h %1, [%2] @ NAT_RAP\n\t" "ldr%?h %0, [%2, #8] @ NET_IDP\n\t" : "=r" (v) : "r" (reg), "r" (ISAIO_BASE + 0x0464)); return v;}#define am_writeword(dev,off,val) __raw_writew(val, ISAMEM_BASE + ((off) << 1))#define am_readword(dev,off) __raw_readw(ISAMEM_BASE + ((off) << 1))static inline voidam_writebuffer(struct net_device *dev, u_int offset, unsigned char *buf, unsigned int length){ offset = ISAMEM_BASE + (offset << 1); length = (length + 1) & ~1; if ((int)buf & 2) { __asm__ __volatile__("str%?h %2, [%0], #4" : "=&r" (offset) : "0" (offset), "r" (buf[0] | (buf[1] << 8))); buf += 2; length -= 2; } while (length > 8) { unsigned int tmp, tmp2; __asm__ __volatile__( "ldm%?ia %1!, {%2, %3}\n\t" "str%?h %2, [%0], #4\n\t" "mov%? %2, %2, lsr #16\n\t" "str%?h %2, [%0], #4\n\t" "str%?h %3, [%0], #4\n\t" "mov%? %3, %3, lsr #16\n\t" "str%?h %3, [%0], #4" : "=&r" (offset), "=&r" (buf), "=r" (tmp), "=r" (tmp2) : "0" (offset), "1" (buf)); length -= 8; } while (length > 0) { __asm__ __volatile__("str%?h %2, [%0], #4" : "=&r" (offset) : "0" (offset), "r" (buf[0] | (buf[1] << 8))); buf += 2; length -= 2; }}static inline voidam_readbuffer(struct net_device *dev, u_int offset, unsigned char *buf, unsigned int length){ offset = ISAMEM_BASE + (offset << 1); length = (length + 1) & ~1; if ((int)buf & 2) { unsigned int tmp; __asm__ __volatile__( "ldr%?h %2, [%0], #4\n\t" "str%?b %2, [%1], #1\n\t" "mov%? %2, %2, lsr #8\n\t" "str%?b %2, [%1], #1" : "=&r" (offset), "=&r" (buf), "=r" (tmp): "0" (offset), "1" (buf)); length -= 2; } while (length > 8) { unsigned int tmp, tmp2, tmp3; __asm__ __volatile__( "ldr%?h %2, [%0], #4\n\t" "ldr%?h %3, [%0], #4\n\t" "orr%? %2, %2, %3, lsl #16\n\t" "ldr%?h %3, [%0], #4\n\t" "ldr%?h %4, [%0], #4\n\t" "orr%? %3, %3, %4, lsl #16\n\t" "stm%?ia %1!, {%2, %3}" : "=&r" (offset), "=&r" (buf), "=r" (tmp), "=r" (tmp2), "=r" (tmp3) : "0" (offset), "1" (buf)); length -= 8; } while (length > 0) { unsigned int tmp; __asm__ __volatile__( "ldr%?h %2, [%0], #4\n\t" "str%?b %2, [%1], #1\n\t" "mov%? %2, %2, lsr #8\n\t" "str%?b %2, [%1], #1" : "=&r" (offset), "=&r" (buf), "=r" (tmp) : "0" (offset), "1" (buf)); length -= 2; }}#else#error Not compatible#endifstatic intam79c961_ramtest(struct net_device *dev, unsigned int val){ unsigned char *buffer = kmalloc (65536, GFP_KERNEL); int i, error = 0, errorcount = 0; if (!buffer) return 0; memset (buffer, val, 65536); am_writebuffer(dev, 0, buffer, 65536); memset (buffer, val ^ 255, 65536); am_readbuffer(dev, 0, buffer, 65536); for (i = 0; i < 65536; i++) { if (buffer[i] != val && !error) { printk ("%s: buffer error (%02X %02X) %05X - ", dev->name, val, buffer[i], i); error = 1; errorcount ++; } else if (error && buffer[i] == val) { printk ("%05X\n", i); error = 0; } } if (error) printk ("10000\n"); kfree (buffer); return errorcount;}static voidam79c961_init_for_open(struct net_device *dev){ struct dev_priv *priv = netdev_priv(dev); unsigned long flags; unsigned char *p; u_int hdr_addr, first_free_addr; int i; /* * Stop the chip. */ spin_lock_irqsave(priv->chip_lock, flags); write_rreg (dev->base_addr, CSR0, CSR0_BABL|CSR0_CERR|CSR0_MISS|CSR0_MERR|CSR0_TINT|CSR0_RINT|CSR0_STOP); spin_unlock_irqrestore(priv->chip_lock, flags); write_ireg (dev->base_addr, 5, 0x00a0); /* Receive address LED */ write_ireg (dev->base_addr, 6, 0x0081); /* Collision LED */ write_ireg (dev->base_addr, 7, 0x0090); /* XMIT LED */ write_ireg (dev->base_addr, 2, 0x0000); /* MODE register selects media */ for (i = LADRL; i <= LADRH; i++) write_rreg (dev->base_addr, i, 0); for (i = PADRL, p = dev->dev_addr; i <= PADRH; i++, p += 2) write_rreg (dev->base_addr, i, p[0] | (p[1] << 8)); i = MODE_PORT_10BT; if (dev->flags & IFF_PROMISC) i |= MODE_PROMISC; write_rreg (dev->base_addr, MODE, i); write_rreg (dev->base_addr, POLLINT, 0); write_rreg (dev->base_addr, SIZERXR, -RX_BUFFERS); write_rreg (dev->base_addr, SIZETXR, -TX_BUFFERS); first_free_addr = RX_BUFFERS * 8 + TX_BUFFERS * 8 + 16; hdr_addr = 0; priv->rxhead = 0; priv->rxtail = 0; priv->rxhdr = hdr_addr; for (i = 0; i < RX_BUFFERS; i++) { priv->rxbuffer[i] = first_free_addr; am_writeword (dev, hdr_addr, first_free_addr); am_writeword (dev, hdr_addr + 2, RMD_OWN); am_writeword (dev, hdr_addr + 4, (-1600)); am_writeword (dev, hdr_addr + 6, 0); first_free_addr += 1600; hdr_addr += 8; } priv->txhead = 0; priv->txtail = 0; priv->txhdr = hdr_addr; for (i = 0; i < TX_BUFFERS; i++) { priv->txbuffer[i] = first_free_addr; am_writeword (dev, hdr_addr, first_free_addr); am_writeword (dev, hdr_addr + 2, TMD_STP|TMD_ENP); am_writeword (dev, hdr_addr + 4, 0xf000); am_writeword (dev, hdr_addr + 6, 0); first_free_addr += 1600; hdr_addr += 8; } write_rreg (dev->base_addr, BASERXL, priv->rxhdr); write_rreg (dev->base_addr, BASERXH, 0); write_rreg (dev->base_addr, BASETXL, priv->txhdr); write_rreg (dev->base_addr, BASERXH, 0); write_rreg (dev->base_addr, CSR0, CSR0_STOP); write_rreg (dev->base_addr, CSR3, CSR3_IDONM|CSR3_BABLM|CSR3_DXSUFLO); write_rreg (dev->base_addr, CSR4, CSR4_APAD_XMIT|CSR4_MFCOM|CSR4_RCVCCOM|CSR4_TXSTRTM|CSR4_JABM); write_rreg (dev->base_addr, CSR0, CSR0_IENA|CSR0_STRT);}static void am79c961_timer(unsigned long data){ struct net_device *dev = (struct net_device *)data; struct dev_priv *priv = netdev_priv(dev); unsigned int lnkstat, carrier; lnkstat = read_ireg(dev->base_addr, ISALED0) & ISALED0_LNKST; carrier = netif_carrier_ok(dev); if (lnkstat && !carrier) { netif_carrier_on(dev); printk("%s: link up\n", dev->name); } else if (!lnkstat && carrier) { netif_carrier_off(dev); printk("%s: link down\n", dev->name); } mod_timer(&priv->timer, jiffies + msecs_to_jiffies(500));}/* * Open/initialize the board. */static intam79c961_open(struct net_device *dev){ struct dev_priv *priv = netdev_priv(dev); int ret; memset (&priv->stats, 0, sizeof (priv->stats)); ret = request_irq(dev->irq, am79c961_interrupt, 0, dev->name, dev); if (ret) return ret; am79c961_init_for_open(dev); netif_carrier_off(dev); priv->timer.expires = jiffies; add_timer(&priv->timer); netif_start_queue(dev); return 0;}/* * The inverse routine to am79c961_open(). */static intam79c961_close(struct net_device *dev){ struct dev_priv *priv = netdev_priv(dev); unsigned long flags; del_timer_sync(&priv->timer); netif_stop_queue(dev); netif_carrier_off(dev); spin_lock_irqsave(priv->chip_lock, flags); write_rreg (dev->base_addr, CSR0, CSR0_STOP); write_rreg (dev->base_addr, CSR3, CSR3_MASKALL); spin_unlock_irqrestore(priv->chip_lock, flags); free_irq (dev->irq, dev); return 0;}/* * Get the current statistics. */static struct net_device_stats *am79c961_getstats (struct net_device *dev){ struct dev_priv *priv = netdev_priv(dev); return &priv->stats;}static void am79c961_mc_hash(struct dev_mc_list *dmi, unsigned short *hash){ if (dmi->dmi_addrlen == ETH_ALEN && dmi->dmi_addr[0] & 0x01) { int idx, bit; u32 crc; crc = ether_crc_le(ETH_ALEN, dmi->dmi_addr); idx = crc >> 30; bit = (crc >> 26) & 15; hash[idx] |= 1 << bit; }}/* * Set or clear promiscuous/multicast mode filter for this adapter. */static void am79c961_setmulticastlist (struct net_device *dev){ struct dev_priv *priv = netdev_priv(dev); unsigned long flags; unsigned short multi_hash[4], mode; int i, stopped; mode = MODE_PORT_10BT; if (dev->flags & IFF_PROMISC) { mode |= MODE_PROMISC; } else if (dev->flags & IFF_ALLMULTI) { memset(multi_hash, 0xff, sizeof(multi_hash)); } else { struct dev_mc_list *dmi;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -