⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 depca.c

📁 powerpc内核mpc8241linux系统下net驱动程序
💻 C
📖 第 1 页 / 共 5 页
字号:
/*  depca.c: A DIGITAL DEPCA  & EtherWORKS ethernet driver for linux.    Written 1994, 1995 by David C. Davies.                      Copyright 1994 David C. Davies		                   and 			 United States Government	 (as represented by the Director, National Security Agency).                 Copyright 1995  Digital Equipment Corporation.    This software may be used and distributed according to the terms of    the GNU Public License, incorporated herein by reference.    This driver is written for the Digital Equipment Corporation series    of DEPCA and EtherWORKS ethernet cards:        DEPCA       (the original)    	DE100    	DE101	DE200 Turbo	DE201 Turbo	DE202 Turbo (TP BNC)	DE210	DE422       (EISA)    The  driver has been tested on DE100, DE200 and DE202 cards  in  a    relatively busy network. The DE422 has been tested a little.    This  driver will NOT work   for the DE203,  DE204  and DE205 series  of    cards,  since they have  a  new custom ASIC in   place of the AMD  LANCE    chip.  See the 'ewrk3.c'   driver in the  Linux  source tree for running    those cards.    I have benchmarked the driver with a  DE100 at 595kB/s to (542kB/s from)    a DECstation 5000/200.    The author may be reached at davies@maniac.ultranet.com    =========================================================================    The  driver was originally based  on   the 'lance.c' driver from  Donald    Becker   which  is included with  the  standard  driver distribution for    linux.  V0.4  is  a complete  re-write  with only  the kernel  interface    remaining from the original code.    1) Lance.c code in /linux/drivers/net/    2) "Ethernet/IEEE 802.3 Family. 1992 World Network Data Book/Handbook",       AMD, 1992 [(800) 222-9323].    3) "Am79C90 CMOS Local Area Network Controller for Ethernet (C-LANCE)",       AMD, Pub. #17881, May 1993.    4) "Am79C960 PCnet-ISA(tm), Single-Chip Ethernet Controller for ISA",       AMD, Pub. #16907, May 1992    5) "DEC EtherWORKS LC Ethernet Controller Owners Manual",       Digital Equipment corporation, 1990, Pub. #EK-DE100-OM.003    6) "DEC EtherWORKS Turbo Ethernet Controller Owners Manual",       Digital Equipment corporation, 1990, Pub. #EK-DE200-OM.003    7) "DEPCA Hardware Reference Manual", Pub. #EK-DEPCA-PR       Digital Equipment Corporation, 1989    8) "DEC EtherWORKS Turbo_(TP BNC) Ethernet Controller Owners Manual",       Digital Equipment corporation, 1991, Pub. #EK-DE202-OM.001        Peter Bauer's depca.c (V0.5) was referred to when debugging V0.1 of this    driver.    The original DEPCA  card requires that the  ethernet ROM address counter    be enabled to count and has an 8 bit NICSR.  The ROM counter enabling is    only  done when a  0x08 is read as the  first address octet (to minimise    the chances  of writing over some  other hardware's  I/O register).  The    NICSR accesses   have been changed  to  byte accesses  for all the cards    supported by this driver, since there is only one  useful bit in the MSB    (remote boot timeout) and it  is not used.  Also, there  is a maximum of    only 48kB network  RAM for this  card.  My thanks  to Torbjorn Lindh for    help debugging all this (and holding my feet to  the fire until I got it    right).    The DE200  series  boards have  on-board 64kB  RAM for  use  as a shared    memory network  buffer. Only the DE100  cards make use  of a  2kB buffer    mode which has not  been implemented in  this driver (only the 32kB  and    64kB modes are supported [16kB/48kB for the original DEPCA]).    At the most only 2 DEPCA cards can  be supported on  the ISA bus because    there is only provision  for two I/O base addresses  on each card (0x300    and 0x200). The I/O address is detected by searching for a byte sequence    in the Ethernet station address PROM at the expected I/O address for the    Ethernet  PROM.   The shared memory  base   address  is 'autoprobed'  by    looking  for the self  test PROM  and detecting the  card name.   When a    second  DEPCA is  detected,  information  is   placed in the   base_addr    variable of the  next device structure (which  is created if necessary),    thus  enabling ethif_probe  initialization  for the device.  More than 2    EISA cards can  be  supported, but  care will  be  needed assigning  the    shared memory to ensure that each slot has the  correct IRQ, I/O address    and shared memory address assigned.    ************************************************************************    NOTE: If you are using two  ISA DEPCAs, it is  important that you assign    the base memory addresses correctly.   The  driver autoprobes I/O  0x300    then 0x200.  The  base memory address for  the first device must be less    than that of the second so that the auto probe will correctly assign the    I/O and memory addresses on the same card.  I can't think of a way to do    this unambiguously at the moment, since there is nothing on the cards to    tie I/O and memory information together.    I am unable  to  test  2 cards   together for now,    so this  code   is    unchecked. All reports, good or bad, are welcome.    ************************************************************************    The board IRQ   setting must be  at an  unused IRQ which  is auto-probed    using Donald Becker's autoprobe routines. DEPCA and DE100 board IRQs are    {2,3,4,5,7}, whereas the  DE200 is at {5,9,10,11,15}.  Note that IRQ2 is    really IRQ9 in machines with 16 IRQ lines.    No 16MB memory  limitation should exist with this  driver as DMA is  not    used and the common memory area is in low memory on the network card (my    current system has 20MB and I've not had problems yet).    The ability to load this driver as a loadable module has been added. To    utilise this ability, you have to do <8 things:    0) have a copy of the loadable modules code installed on your system.    1) copy depca.c from the  /linux/drivers/net directory to your favourite    temporary directory.    2) if you wish, edit the  source code near  line 1530 to reflect the I/O    address and IRQ you're using (see also 5).    3) compile  depca.c, but include -DMODULE in  the command line to ensure    that the correct bits are compiled (see end of source code).    4) if you are wanting to add a new  card, goto 5. Otherwise, recompile a    kernel with the depca configuration turned off and reboot.    5) insmod depca.o [irq=7] [io=0x200] [mem=0xd0000] [adapter_name=DE100]       [Alan Cox: Changed the code to allow command line irq/io assignments]       [Dave Davies: Changed the code to allow command line mem/name                                                                assignments]    6) run the net startup bits for your eth?? interface manually     (usually /etc/rc.inet[12] at boot time).     7) enjoy!    Note that autoprobing is not allowed in loadable modules - the system is    already up and running and you're messing with interrupts.    To unload a module, turn off the associated interface     'ifconfig eth?? down' then 'rmmod depca'.    To assign a base memory address for the shared memory  when running as a    loadable module, see 5 above.  To include the adapter  name (if you have    no PROM  but know the card name)  also see 5  above. Note that this last    option  will not work  with kernel  built-in  depca's.     The shared memory assignment for a loadable module  makes sense to avoid    the 'memory autoprobe' picking the wrong shared memory  (for the case of    2 depca's in a PC).    ************************************************************************    Support for MCA EtherWORKS cards added 11-3-98.    Verified to work with up to 2 DE212 cards in a system (although not      fully stress-tested).      Currently known bugs/limitations:    Note:  with the MCA stuff as a module, it trusts the MCA configuration,           not the command line for IRQ and memory address.  You can           specify them if you want, but it will throw your values out.           You still have to pass the IO address it was configured as           though.    ************************************************************************    TO DO:    ------    Revision History    ----------------    Version   Date        Description        0.1     25-jan-94   Initial writing.      0.2     27-jan-94   Added LANCE TX hardware buffer chaining.      0.3      1-feb-94   Added multiple DEPCA support.      0.31     4-feb-94   Added DE202 recognition.      0.32    19-feb-94   Tidy up. Improve multi-DEPCA support.      0.33    25-feb-94   Fix DEPCA ethernet ROM counter enable.                          Add jabber packet fix from murf@perftech.com			  and becker@super.org      0.34     7-mar-94   Fix DEPCA max network memory RAM & NICSR access.      0.35     8-mar-94   Added DE201 recognition. Tidied up.      0.351   30-apr-94   Added EISA support. Added DE422 recognition.      0.36    16-may-94   DE422 fix released.      0.37    22-jul-94   Added MODULE support      0.38    15-aug-94   Added DBR ROM switch in depca_close().                           Multi DEPCA bug fix.      0.38axp 15-sep-94   Special version for Alpha AXP Linux V1.0.      0.381   12-dec-94   Added DE101 recognition, fix multicast bug.      0.382    9-feb-95   Fix recognition bug reported by <bkm@star.rl.ac.uk>.      0.383   22-feb-95   Fix for conflict with VESA SCSI reported by                          <stromain@alf.dec.com>      0.384   17-mar-95   Fix a ring full bug reported by <bkm@star.rl.ac.uk>      0.385    3-apr-95   Fix a recognition bug reported by                                                 <ryan.niemi@lastfrontier.com>      0.386   21-apr-95   Fix the last fix...sorry, must be galloping senility      0.40    25-May-95   Rewrite for portability & updated.                          ALPHA support from <jestabro@amt.tay1.dec.com>      0.41    26-Jun-95   Added verify_area() calls in depca_ioctl() from                          suggestion by <heiko@colossus.escape.de>      0.42    27-Dec-95   Add 'mem' shared memory assignment for loadable                           modules.                          Add 'adapter_name' for loadable modules when no PROM.			  Both above from a suggestion by 			  <pchen@woodruffs121.residence.gatech.edu>.			  Add new multicasting code.      0.421   22-Apr-96	  Fix alloc_device() bug <jari@markkus2.fimr.fi>      0.422   29-Apr-96	  Fix depca_hw_init() bug <jari@markkus2.fimr.fi>      0.423    7-Jun-96   Fix module load bug <kmg@barco.be>      0.43    16-Aug-96   Update alloc_device() to conform to de4x5.c      0.44     1-Sep-97   Fix *_probe() to test check_region() first - bug                           reported by <mmogilvi@elbert.uccs.edu>      0.45     3-Nov-98   Added support for MCA EtherWORKS (DE210/DE212) cards                           by <tymm@computer.org>       0.451    5-Nov-98   Fixed mca stuff cuz I'm a dummy. <tymm@computer.org>      0.5     14-Nov-98   Re-spin for 2.1.x kernels.    =========================================================================*/static const char *version = "depca.c:v0.5 1998/11/14 davies@maniac.ultranet.com\n";#include <linux/config.h>#include <linux/module.h>#include <linux/kernel.h>#include <linux/sched.h>#include <linux/string.h>#include <linux/ptrace.h>#include <linux/errno.h>#include <linux/ioport.h>#include <linux/malloc.h>#include <linux/interrupt.h>#include <linux/delay.h>#include <linux/init.h>#include <asm/uaccess.h>#include <asm/bitops.h>#include <asm/io.h>#include <asm/dma.h>#include <linux/netdevice.h>#include <linux/etherdevice.h>#include <linux/skbuff.h>#include <linux/time.h>#include <linux/types.h>#include <linux/unistd.h>#include <linux/ctype.h>#ifdef CONFIG_MCA#include <linux/mca.h>#endif#include "depca.h"#ifdef DEPCA_DEBUGstatic int depca_debug = DEPCA_DEBUG;#elsestatic int depca_debug = 1;#endif#define DEPCA_NDA 0xffe0            /* No Device Address *//*** Ethernet PROM defines*/#define PROBE_LENGTH    32#define ETH_PROM_SIG    0xAA5500FFUL/*** Set the number of Tx and Rx buffers. Ensure that the memory requested** here is <= to the amount of shared memory set up by the board switches.** The number of descriptors MUST BE A POWER OF 2.**** total_memory = NUM_RX_DESC*(8+RX_BUFF_SZ) + NUM_TX_DESC*(8+TX_BUFF_SZ)*/#define NUM_RX_DESC     8               /* Number of RX descriptors */#define NUM_TX_DESC     8               /* Number of TX descriptors */#define RX_BUFF_SZ	1536            /* Buffer size for each Rx buffer */#define TX_BUFF_SZ	1536            /* Buffer size for each Tx buffer */#define CRC_POLYNOMIAL_BE 0x04c11db7UL  /* Ethernet CRC, big endian */#define CRC_POLYNOMIAL_LE 0xedb88320UL  /* Ethernet CRC, little endian *//*** EISA bus defines*/#define DEPCA_EISA_IO_PORTS 0x0c00       /* I/O port base address, slot 0 */#define MAX_EISA_SLOTS 16#define EISA_SLOT_INC 0x1000/*** ISA Bus defines*/#define DEPCA_RAM_BASE_ADDRESSES {0xc0000,0xd0000,0xe0000,0x00000}#define DEPCA_IO_PORTS {0x300, 0x200, 0}#define DEPCA_TOTAL_SIZE 0x10static short mem_chkd = 0;/*** Adapter ID for the MCA EtherWORKS DE210/212 adapter*/#define DE212_ID 0x6def/*** Name <-> Adapter mapping*/#define DEPCA_SIGNATURE {"DEPCA",\			 "DE100","DE101",\                         "DE200","DE201","DE202",\			 "DE210","DE212",\                         "DE422",\                         ""}static enum {  DEPCA, de100, de101, de200, de201, de202, de210, de212, de422, unknown} adapter;/*** Miscellaneous info...*/#define DEPCA_STRLEN 16#define MAX_NUM_DEPCAS 2/*** Memory Alignment. Each descriptor is 4 longwords long. To force a** particular alignment on the TX descriptor, adjust DESC_SKIP_LEN and** DESC_ALIGN. ALIGN aligns the start address of the private memory area** and hence the RX descriptor ring's first entry. */#define ALIGN4      ((u_long)4 - 1)       /* 1 longword align */#define ALIGN8      ((u_long)8 - 1)       /* 2 longword (quadword) align */#define ALIGN         ALIGN8              /* Keep the LANCE happy... *//*** The DEPCA Rx and Tx ring descriptors. */struct depca_rx_desc {    volatile s32 base;    s16 buf_length;		/* This length is negative 2's complement! */    s16 msg_length;		/* This length is "normal". */};struct depca_tx_desc {    volatile s32 base;    s16 length;		        /* This length is negative 2's complement! */    s16 misc;                   /* Errors and TDR info */};#define LA_MASK 0x0000ffff      /* LANCE address mask for mapping network RAM				   to LANCE memory address space *//*** The Lance initialization block, described in databook, in common memory.*/struct depca_init {    u16 mode;	                /* Mode register */    u8  phys_addr[ETH_ALEN];	/* Physical ethernet address */    u8  mcast_table[8];	        /* Multicast Hash Table. */    u32 rx_ring;     	        /* Rx ring base pointer & ring length */    u32 tx_ring;	        /* Tx ring base pointer & ring length */};#define DEPCA_PKT_STAT_SZ 16#define DEPCA_PKT_BIN_SZ  128                /* Should be >=100 unless you                                                increase DEPCA_PKT_STAT_SZ */struct depca_private {    char devname[DEPCA_STRLEN];    /* Device Product String                  */    char adapter_name[DEPCA_STRLEN];/* /proc/ioports string                  */    char adapter;                  /* Adapter type                           */    char mca_slot;                 /* MCA slot, if MCA else -1               */    struct depca_rx_desc *rx_ring; /* Pointer to start of RX descriptor ring */    struct depca_tx_desc *tx_ring; /* Pointer to start of TX descriptor ring */    struct depca_init	init_block;/* Shadow Initialization block            */    char *rx_memcpy[NUM_RX_DESC];  /* CPU virt address of sh'd memory buffs  */    char *tx_memcpy[NUM_TX_DESC];  /* CPU virt address of sh'd memory buffs  */    u_long bus_offset;             /* (E)ISA bus address offset vs LANCE     */    u_long sh_mem;  		   /* Physical start addr of shared mem area */    u_long dma_buffs;		   /* LANCE Rx and Tx buffers start address. */    int	rx_new, tx_new;		   /* The next free ring entry               */    int rx_old, tx_old;	           /* The ring entries to be free()ed.       */    struct net_device_stats stats;    struct {                       /* Private stats counters                 */	u32 bins[DEPCA_PKT_STAT_SZ];	u32 unicast;	u32 multicast;	u32 broadcast;	u32 excessive_collisions;	u32 tx_underruns;	u32 excessive_underruns;    } pktStats;    int txRingMask;                /* TX ring mask                           */    int rxRingMask;                /* RX ring mask                           */    s32 rx_rlen;                   /* log2(rxRingMask+1) for the descriptors */    s32 tx_rlen;                   /* log2(txRingMask+1) for the descriptors */};/*** The transmit ring full condition is described by the tx_old and tx_new** pointers by:

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -