ewrk3.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:51k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*  ewrk3.c: A DIGITAL EtherWORKS 3 ethernet driver for Linux.
  2.    Written 1994 by David C. Davies.
  3.    Copyright 1994 Digital Equipment Corporation.
  4.    This software may be used and distributed according to the terms of
  5.    the GNU General Public License, incorporated herein by reference.
  6.    This driver is written for the Digital Equipment Corporation series
  7.    of EtherWORKS ethernet cards:
  8.    DE203 Turbo (BNC)
  9.    DE204 Turbo (TP)
  10.    DE205 Turbo (TP BNC)
  11.    The driver has been tested on a relatively busy  network using the DE205
  12.    card and benchmarked with 'ttcp': it transferred 16M  of data at 975kB/s
  13.    (7.8Mb/s) to a DECstation 5000/200.
  14.    The author may be reached at davies@maniac.ultranet.com.
  15.    =========================================================================
  16.    This driver has been written  substantially  from scratch, although  its
  17.    inheritance of style and stack interface from 'depca.c' and in turn from
  18.    Donald Becker's 'lance.c' should be obvious.
  19.    The  DE203/4/5 boards  all  use a new proprietary   chip in place of the
  20.    LANCE chip used in prior cards  (DEPCA, DE100, DE200/1/2, DE210, DE422).
  21.    Use the depca.c driver in the standard distribution  for the LANCE based
  22.    cards from DIGITAL; this driver will not work with them.
  23.    The DE203/4/5 cards have 2  main modes: shared memory  and I/O only. I/O
  24.    only makes  all the card accesses through  I/O transactions and  no high
  25.    (shared)  memory is used. This  mode provides a >48% performance penalty
  26.    and  is deprecated in this  driver,  although allowed to provide initial
  27.    setup when hardstrapped.
  28.    The shared memory mode comes in 3 flavours: 2kB, 32kB and 64kB. There is
  29.    no point in using any mode other than the 2kB  mode - their performances
  30.    are virtually identical, although the driver has  been tested in the 2kB
  31.    and 32kB modes. I would suggest you uncomment the line:
  32.    FORCE_2K_MODE;
  33.    to allow the driver to configure the card as a  2kB card at your current
  34.    base  address, thus leaving more  room to clutter  your  system box with
  35.    other memory hungry boards.
  36.    As many ISA  and EISA cards  can be supported  under this driver  as you
  37.    wish, limited primarily  by the available IRQ lines,  rather than by the
  38.    available I/O addresses  (24 ISA,  16 EISA).   I have  checked different
  39.    configurations of  multiple  depca cards and  ewrk3 cards  and have  not
  40.    found a problem yet (provided you have at least depca.c v0.38) ...
  41.    The board IRQ setting   must be at  an unused  IRQ which is  auto-probed
  42.    using  Donald  Becker's autoprobe  routines.   All  these cards   are at
  43.    {5,10,11,15}.
  44.    No 16MB memory  limitation should exist with this  driver as DMA is  not
  45.    used and the common memory area is in low memory on the network card (my
  46.    current system has 20MB and I've not had problems yet).
  47.    The ability to load  this driver as a  loadable module has been included
  48.    and used  extensively during the  driver development (to save those long
  49.    reboot sequences). To utilise this ability, you have to do 8 things:
  50.    0) have a copy of the loadable modules code installed on your system.
  51.    1) copy ewrk3.c from the  /linux/drivers/net directory to your favourite
  52.    temporary directory.
  53.    2) edit the  source code near  line 1898 to reflect  the I/O address and
  54.    IRQ you're using.
  55.    3) compile  ewrk3.c, but include -DMODULE in  the command line to ensure
  56.    that the correct bits are compiled (see end of source code).
  57.    4) if you are wanting to add a new  card, goto 5. Otherwise, recompile a
  58.    kernel with the ewrk3 configuration turned off and reboot.
  59.    5) insmod ewrk3.o
  60.    [Alan Cox: Changed this so you can insmod ewrk3.o irq=x io=y]
  61.    6) run the net startup bits for your new eth?? interface manually
  62.    (usually /etc/rc.inet[12] at boot time).
  63.    7) enjoy!
  64.    Note that autoprobing is not allowed in loadable modules - the system is
  65.    already up and running and you're messing with interrupts.
  66.    To unload a module, turn off the associated interface
  67.    'ifconfig eth?? down' then 'rmmod ewrk3'.
  68.    Promiscuous   mode has been  turned  off  in this driver,   but  all the
  69.    multicast  address bits  have been   turned on. This  improved the  send
  70.    performance on a busy network by about 13%.
  71.    Ioctl's have now been provided (primarily because  I wanted to grab some
  72.    packet size statistics). They  are patterned after 'plipconfig.c' from a
  73.    suggestion by Alan Cox.  Using these  ioctls, you can enable promiscuous
  74.    mode, add/delete multicast  addresses, change the hardware address,  get
  75.    packet size distribution statistics and muck around with the control and
  76.    status register. I'll add others if and when the need arises.
  77.    TO DO:
  78.    ------
  79.    Revision History
  80.    ----------------
  81.    Version   Date        Description
  82.    0.1     26-aug-94   Initial writing. ALPHA code release.
  83.    0.11    31-aug-94   Fixed: 2k mode memory base calc.,
  84.    LeMAC version calc.,
  85.    IRQ vector assignments during autoprobe.
  86.    0.12    31-aug-94   Tested working on LeMAC2 (DE20[345]-AC) card.
  87.    Fixed up MCA hash table algorithm.
  88.    0.20     4-sep-94   Added IOCTL functionality.
  89.    0.21    14-sep-94   Added I/O mode.
  90.    0.21axp 15-sep-94   Special version for ALPHA AXP Linux V1.0.
  91.    0.22    16-sep-94   Added more IOCTLs & tidied up.
  92.    0.23    21-sep-94   Added transmit cut through.
  93.    0.24    31-oct-94   Added uid checks in some ioctls.
  94.    0.30     1-nov-94   BETA code release.
  95.    0.31     5-dec-94   Added check/allocate region code.
  96.    0.32    16-jan-95   Broadcast packet fix.
  97.    0.33    10-Feb-95   Fix recognition bug reported by <bkm@star.rl.ac.uk>.
  98.    0.40    27-Dec-95   Rationalise MODULE and autoprobe code.
  99.    Rewrite for portability & updated.
  100.    ALPHA support from <jestabro@amt.tay1.dec.com>
  101.    Added verify_area() calls in ewrk3_ioctl() from
  102.    suggestion by <heiko@colossus.escape.de>.
  103.    Add new multicasting code.
  104.    0.41    20-Jan-96   Fix IRQ set up problem reported by
  105.    <kenneth@bbs.sas.ntu.ac.sg>.
  106.    0.42    22-Apr-96      Fix alloc_device() bug <jari@markkus2.fimr.fi>
  107.    0.43    16-Aug-96      Update alloc_device() to conform to de4x5.c
  108.    =========================================================================
  109.  */
  110. #include <linux/module.h>
  111. #include <linux/kernel.h>
  112. #include <linux/sched.h>
  113. #include <linux/string.h>
  114. #include <linux/ptrace.h>
  115. #include <linux/errno.h>
  116. #include <linux/ioport.h>
  117. #include <linux/slab.h>
  118. #include <linux/interrupt.h>
  119. #include <linux/delay.h>
  120. #include <linux/init.h>
  121. #include <asm/bitops.h>
  122. #include <asm/io.h>
  123. #include <asm/dma.h>
  124. #include <asm/uaccess.h>
  125. #include <linux/netdevice.h>
  126. #include <linux/etherdevice.h>
  127. #include <linux/skbuff.h>
  128. #include <linux/time.h>
  129. #include <linux/types.h>
  130. #include <linux/unistd.h>
  131. #include <linux/ctype.h>
  132. #include "ewrk3.h"
  133. static char version[] __initdata =
  134. "ewrk3.c:v0.43a 2001/02/04 davies@maniac.ultranet.comn";
  135. #ifdef EWRK3_DEBUG
  136. static int ewrk3_debug = EWRK3_DEBUG;
  137. #else
  138. static int ewrk3_debug = 1;
  139. #endif
  140. #define EWRK3_NDA 0xffe0 /* No Device Address */
  141. #define PROBE_LENGTH    32
  142. #define ETH_PROM_SIG    0xAA5500FFUL
  143. #ifndef EWRK3_SIGNATURE
  144. #define EWRK3_SIGNATURE {"DE203","DE204","DE205",""}
  145. #define EWRK3_STRLEN 8
  146. #endif
  147. #ifndef EWRK3_RAM_BASE_ADDRESSES
  148. #define EWRK3_RAM_BASE_ADDRESSES {0xc0000,0xd0000,0x00000}
  149. #endif
  150. /*
  151.    ** Sets up the I/O area for the autoprobe.
  152.  */
  153. #define EWRK3_IO_BASE 0x100 /* Start address for probe search */
  154. #define EWRK3_IOP_INC 0x20 /* I/O address increment */
  155. #define EWRK3_TOTAL_SIZE 0x20 /* required I/O address length */
  156. #ifndef MAX_NUM_EWRK3S
  157. #define MAX_NUM_EWRK3S 21
  158. #endif
  159. #ifndef EWRK3_EISA_IO_PORTS
  160. #define EWRK3_EISA_IO_PORTS 0x0c00 /* I/O port base address, slot 0 */
  161. #endif
  162. #ifndef MAX_EISA_SLOTS
  163. #define MAX_EISA_SLOTS 16
  164. #define EISA_SLOT_INC 0x1000
  165. #endif
  166. #define CRC_POLYNOMIAL_BE 0x04c11db7UL /* Ethernet CRC, big endian */
  167. #define CRC_POLYNOMIAL_LE 0xedb88320UL /* Ethernet CRC, little endian */
  168. #define QUEUE_PKT_TIMEOUT (1*HZ) /* Jiffies */
  169. /*
  170.    ** EtherWORKS 3 shared memory window sizes
  171.  */
  172. #define IO_ONLY         0x00
  173. #define SHMEM_2K        0x800
  174. #define SHMEM_32K       0x8000
  175. #define SHMEM_64K       0x10000
  176. /*
  177.    ** EtherWORKS 3 IRQ ENABLE/DISABLE
  178.  */
  179. #define ENABLE_IRQs { 
  180.   icr |= lp->irq_mask;
  181.   outb(icr, EWRK3_ICR);                     /* Enable the IRQs */
  182. }
  183. #define DISABLE_IRQs { 
  184.   icr = inb(EWRK3_ICR);
  185.   icr &= ~lp->irq_mask;
  186.   outb(icr, EWRK3_ICR);                     /* Disable the IRQs */
  187. }
  188. /*
  189.    ** EtherWORKS 3 START/STOP
  190.  */
  191. #define START_EWRK3 { 
  192.   csr = inb(EWRK3_CSR);
  193.   csr &= ~(CSR_TXD|CSR_RXD);
  194.   outb(csr, EWRK3_CSR);                     /* Enable the TX and/or RX */
  195. }
  196. #define STOP_EWRK3 { 
  197.   csr = (CSR_TXD|CSR_RXD);
  198.   outb(csr, EWRK3_CSR);                     /* Disable the TX and/or RX */
  199. }
  200. /*
  201.    ** The EtherWORKS 3 private structure
  202.  */
  203. #define EWRK3_PKT_STAT_SZ 16
  204. #define EWRK3_PKT_BIN_SZ  128 /* Should be >=100 unless you
  205.    increase EWRK3_PKT_STAT_SZ */
  206. struct ewrk3_private {
  207. char adapter_name[80]; /* Name exported to /proc/ioports */
  208. u_long shmem_base; /* Shared memory start address */
  209. u_long shmem_length; /* Shared memory window length */
  210. struct net_device_stats stats; /* Public stats */
  211. struct {
  212. u32 bins[EWRK3_PKT_STAT_SZ]; /* Private stats counters */
  213. u32 unicast;
  214. u32 multicast;
  215. u32 broadcast;
  216. u32 excessive_collisions;
  217. u32 tx_underruns;
  218. u32 excessive_underruns;
  219. } pktStats;
  220. u_char irq_mask; /* Adapter IRQ mask bits */
  221. u_char mPage; /* Maximum 2kB Page number */
  222. u_char lemac; /* Chip rev. level */
  223. u_char hard_strapped; /* Don't allow a full open */
  224. u_char txc; /* Transmit cut through */
  225. u_char *mctbl; /* Pointer to the multicast table */
  226. spinlock_t hw_lock;
  227. };
  228. /*
  229.    ** Force the EtherWORKS 3 card to be in 2kB MODE
  230.  */
  231. #define FORCE_2K_MODE { 
  232.   shmem_length = SHMEM_2K;
  233.   outb(((mem_start - 0x80000) >> 11), EWRK3_MBR);
  234. }
  235. /*
  236.    ** Public Functions
  237.  */
  238. static int ewrk3_open(struct net_device *dev);
  239. static int ewrk3_queue_pkt(struct sk_buff *skb, struct net_device *dev);
  240. static void ewrk3_interrupt(int irq, void *dev_id, struct pt_regs *regs);
  241. static int ewrk3_close(struct net_device *dev);
  242. static struct net_device_stats *ewrk3_get_stats(struct net_device *dev);
  243. static void set_multicast_list(struct net_device *dev);
  244. static int ewrk3_ioctl(struct net_device *dev, struct ifreq *rq, int cmd);
  245. /*
  246.    ** Private functions
  247.  */
  248. static int ewrk3_hw_init(struct net_device *dev, u_long iobase);
  249. static void ewrk3_init(struct net_device *dev);
  250. static int ewrk3_rx(struct net_device *dev);
  251. static int ewrk3_tx(struct net_device *dev);
  252. static void ewrk3_timeout(struct net_device *dev);
  253. static void EthwrkSignature(char *name, char *eeprom_image);
  254. static int DevicePresent(u_long iobase);
  255. static void SetMulticastFilter(struct net_device *dev);
  256. static int EISA_signature(char *name, s32 eisa_id);
  257. static int Read_EEPROM(u_long iobase, u_char eaddr);
  258. static int Write_EEPROM(short data, u_long iobase, u_char eaddr);
  259. static u_char get_hw_addr(struct net_device *dev, u_char * eeprom_image, char chipType);
  260. static void isa_probe(struct net_device *dev, u_long iobase);
  261. static void eisa_probe(struct net_device *dev, u_long iobase);
  262. static struct net_device *alloc_device(struct net_device *dev, u_long iobase);
  263. static int ewrk3_dev_index(char *s);
  264. static struct net_device *insert_device(struct net_device *dev, u_long iobase, int (*init) (struct net_device *));
  265. #ifdef MODULE
  266. int init_module(void);
  267. void cleanup_module(void);
  268. static int autoprobed = 1, loading_module = 1;
  269. #else
  270. static u_char irq[] =
  271. {5, 0, 10, 3, 11, 9, 15, 12};
  272. static int autoprobed, loading_module;
  273. #endif /* MODULE */
  274. static char name[EWRK3_STRLEN + 1];
  275. static int num_ewrk3s, num_eth;
  276. /*
  277.    ** Miscellaneous defines...
  278.  */
  279. #define INIT_EWRK3 {
  280.     outb(EEPROM_INIT, EWRK3_IOPR);
  281.     mdelay(1);
  282. }
  283. int __init ewrk3_probe(struct net_device *dev)
  284. {
  285. int tmp = num_ewrk3s, status = -ENODEV;
  286. u_long iobase = dev->base_addr;
  287. SET_MODULE_OWNER(dev);
  288. if ((iobase == 0) && loading_module) {
  289. printk("Autoprobing is not supported when loading a module based driver.n");
  290. status = -EIO;
  291. } else { /* First probe for the Ethernet */
  292. /* Address PROM pattern */
  293. isa_probe(dev, iobase);
  294. eisa_probe(dev, iobase);
  295. if ((tmp == num_ewrk3s) && (iobase != 0) && loading_module) {
  296. printk("%s: ewrk3_probe() cannot find device at 0x%04lx.n", dev->name,
  297.        iobase);
  298. }
  299. /*
  300.    ** Walk the device list to check that at least one device
  301.    ** initialised OK
  302.  */
  303. for (; (dev->priv == NULL) && (dev->next != NULL); dev = dev->next);
  304. if (dev->priv)
  305. status = 0;
  306. if (iobase == 0)
  307. autoprobed = 1;
  308. }
  309. return status;
  310. }
  311. static int __init 
  312. ewrk3_hw_init(struct net_device *dev, u_long iobase)
  313. {
  314. struct ewrk3_private *lp;
  315. int i, status = 0;
  316. u_long mem_start, shmem_length;
  317. u_char cr, cmr, icr, nicsr, lemac, hard_strapped = 0;
  318. u_char eeprom_image[EEPROM_MAX], chksum, eisa_cr = 0;
  319. /*
  320.    ** Stop the EWRK3. Enable the DBR ROM. Disable interrupts and remote boot.
  321.    ** This also disables the EISA_ENABLE bit in the EISA Control Register.
  322.  */
  323. if (iobase > 0x400)
  324. eisa_cr = inb(EISA_CR);
  325. INIT_EWRK3;
  326. nicsr = inb(EWRK3_CSR);
  327. icr = inb(EWRK3_ICR);
  328. icr &= 0x70;
  329. outb(icr, EWRK3_ICR); /* Disable all the IRQs */
  330. if (nicsr == (CSR_TXD | CSR_RXD)) {
  331. /* Check that the EEPROM is alive and well and not living on Pluto... */
  332. for (chksum = 0, i = 0; i < EEPROM_MAX; i += 2) {
  333. union {
  334. short val;
  335. char c[2];
  336. } tmp;
  337. tmp.val = (short) Read_EEPROM(iobase, (i >> 1));
  338. eeprom_image[i] = tmp.c[0];
  339. eeprom_image[i + 1] = tmp.c[1];
  340. chksum += eeprom_image[i] + eeprom_image[i + 1];
  341. }
  342. if (chksum != 0) { /* Bad EEPROM Data! */
  343. printk("%s: Device has a bad on-board EEPROM.n", dev->name);
  344. status = -ENXIO;
  345. } else {
  346. EthwrkSignature(name, eeprom_image);
  347. if (*name != '') { /* found a EWRK3 device */
  348. dev->base_addr = iobase;
  349. if (iobase > 0x400) {
  350. outb(eisa_cr, EISA_CR); /* Rewrite the EISA CR */
  351. }
  352. lemac = eeprom_image[EEPROM_CHIPVER];
  353. cmr = inb(EWRK3_CMR);
  354. if (((lemac == LeMAC) && ((cmr & CMR_NO_EEPROM) != CMR_NO_EEPROM)) ||
  355. ((lemac == LeMAC2) && !(cmr & CMR_HS))) {
  356. printk("%s: %s at %#4lx", dev->name, name, iobase);
  357. hard_strapped = 1;
  358. } else if ((iobase & 0x0fff) == EWRK3_EISA_IO_PORTS) {
  359. /* EISA slot address */
  360. printk("%s: %s at %#4lx (EISA slot %ld)",
  361.        dev->name, name, iobase, ((iobase >> 12) & 0x0f));
  362. } else { /* ISA port address */
  363. printk("%s: %s at %#4lx", dev->name, name, iobase);
  364. }
  365. if (!status) {
  366. printk(", h/w address ");
  367. if (lemac != LeMAC2)
  368. DevicePresent(iobase); /* need after EWRK3_INIT */
  369. status = get_hw_addr(dev, eeprom_image, lemac);
  370. for (i = 0; i < ETH_ALEN - 1; i++) { /* get the ethernet addr. */
  371. printk("%2.2x:", dev->dev_addr[i]);
  372. }
  373. printk("%2.2x,n", dev->dev_addr[i]);
  374. if (status) {
  375. printk("      which has an EEPROM CRC error.n");
  376. status = -ENXIO;
  377. } else {
  378. if (lemac == LeMAC2) { /* Special LeMAC2 CMR things */
  379. cmr &= ~(CMR_RA | CMR_WB | CMR_LINK | CMR_POLARITY | CMR_0WS);
  380. if (eeprom_image[EEPROM_MISC0] & READ_AHEAD)
  381. cmr |= CMR_RA;
  382. if (eeprom_image[EEPROM_MISC0] & WRITE_BEHIND)
  383. cmr |= CMR_WB;
  384. if (eeprom_image[EEPROM_NETMAN0] & NETMAN_POL)
  385. cmr |= CMR_POLARITY;
  386. if (eeprom_image[EEPROM_NETMAN0] & NETMAN_LINK)
  387. cmr |= CMR_LINK;
  388. if (eeprom_image[EEPROM_MISC0] & _0WS_ENA)
  389. cmr |= CMR_0WS;
  390. }
  391. if (eeprom_image[EEPROM_SETUP] & SETUP_DRAM)
  392. cmr |= CMR_DRAM;
  393. outb(cmr, EWRK3_CMR);
  394. cr = inb(EWRK3_CR); /* Set up the Control Register */
  395. cr |= eeprom_image[EEPROM_SETUP] & SETUP_APD;
  396. if (cr & SETUP_APD)
  397. cr |= eeprom_image[EEPROM_SETUP] & SETUP_PS;
  398. cr |= eeprom_image[EEPROM_MISC0] & FAST_BUS;
  399. cr |= eeprom_image[EEPROM_MISC0] & ENA_16;
  400. outb(cr, EWRK3_CR);
  401. /*
  402.    ** Determine the base address and window length for the EWRK3
  403.    ** RAM from the memory base register.
  404.  */
  405. mem_start = inb(EWRK3_MBR);
  406. shmem_length = 0;
  407. if (mem_start != 0) {
  408. if ((mem_start >= 0x0a) && (mem_start <= 0x0f)) {
  409. mem_start *= SHMEM_64K;
  410. shmem_length = SHMEM_64K;
  411. } else if ((mem_start >= 0x14) && (mem_start <= 0x1f)) {
  412. mem_start *= SHMEM_32K;
  413. shmem_length = SHMEM_32K;
  414. } else if ((mem_start >= 0x40) && (mem_start <= 0xff)) {
  415. mem_start = mem_start * SHMEM_2K + 0x80000;
  416. shmem_length = SHMEM_2K;
  417. } else {
  418. status = -ENXIO;
  419. }
  420. }
  421. /*
  422.    ** See the top of this source code for comments about
  423.    ** uncommenting this line.
  424.  */
  425. /*          FORCE_2K_MODE; */
  426. if (!status) {
  427. if (hard_strapped) {
  428. printk("      is hard strapped.n");
  429. } else if (mem_start) {
  430. printk("      has a %dk RAM window", (int) (shmem_length >> 10));
  431. printk(" at 0x%.5lx", mem_start);
  432. } else {
  433. printk("      is in I/O only mode");
  434. }
  435. /* private area & initialise */
  436. dev->priv = (void *) kmalloc(sizeof(struct ewrk3_private),
  437.      GFP_KERNEL);
  438. if (dev->priv == NULL) {
  439. return -ENOMEM;
  440. }
  441. lp = (struct ewrk3_private *) dev->priv;
  442. memset(dev->priv, 0, sizeof(struct ewrk3_private));
  443. lp->shmem_base = mem_start;
  444. lp->shmem_length = shmem_length;
  445. lp->lemac = lemac;
  446. lp->hard_strapped = hard_strapped;
  447. spin_lock_init(&lp->hw_lock);
  448. lp->mPage = 64;
  449. if (cmr & CMR_DRAM)
  450. lp->mPage <<= 1; /* 2 DRAMS on module */
  451. sprintf(lp->adapter_name, "%s (%s)", name, dev->name);
  452. request_region(iobase, EWRK3_TOTAL_SIZE, lp->adapter_name);
  453. lp->irq_mask = ICR_TNEM | ICR_TXDM | ICR_RNEM | ICR_RXDM;
  454. if (!hard_strapped) {
  455. /*
  456.    ** Enable EWRK3 board interrupts for autoprobing
  457.  */
  458. icr |= ICR_IE; /* Enable interrupts */
  459. outb(icr, EWRK3_ICR);
  460. /* The DMA channel may be passed in on this parameter. */
  461. dev->dma = 0;
  462. /* To auto-IRQ we enable the initialization-done and DMA err,
  463.    interrupts. For now we will always get a DMA error. */
  464. if (dev->irq < 2) {
  465. #ifndef MODULE
  466. u_char irqnum;
  467. autoirq_setup(0);
  468. /*
  469.    ** Trigger a TNE interrupt.
  470.  */
  471. icr |= ICR_TNEM;
  472. outb(1, EWRK3_TDQ); /* Write to the TX done queue */
  473. outb(icr, EWRK3_ICR); /* Unmask the TXD interrupt */
  474. irqnum = irq[((icr & IRQ_SEL) >> 4)];
  475. dev->irq = autoirq_report(1);
  476. if ((dev->irq) && (irqnum == dev->irq)) {
  477. printk(" and uses IRQ%d.n", dev->irq);
  478. } else {
  479. if (!dev->irq) {
  480. printk(" and failed to detect IRQ line.n");
  481. } else if ((irqnum == 1) && (lemac == LeMAC2)) {
  482. printk(" and an illegal IRQ line detected.n");
  483. } else {
  484. printk(", but incorrect IRQ line detected.n");
  485. }
  486. status = -ENXIO;
  487. }
  488. DISABLE_IRQs; /* Mask all interrupts */
  489. #endif /* MODULE */
  490. } else {
  491. printk(" and requires IRQ%d.n", dev->irq);
  492. }
  493. }
  494. if (status)
  495. release_region(iobase, EWRK3_TOTAL_SIZE);
  496. } else {
  497. status = -ENXIO;
  498. }
  499. }
  500. }
  501. } else {
  502. status = -ENXIO;
  503. }
  504. }
  505. if (!status) {
  506. if (ewrk3_debug > 1) {
  507. printk(version);
  508. }
  509. /* The EWRK3-specific entries in the device structure. */
  510. dev->open = ewrk3_open;
  511. dev->hard_start_xmit = ewrk3_queue_pkt;
  512. dev->stop = ewrk3_close;
  513. dev->get_stats = ewrk3_get_stats;
  514. dev->set_multicast_list = set_multicast_list;
  515. dev->do_ioctl = ewrk3_ioctl;
  516. dev->tx_timeout = ewrk3_timeout;
  517. dev->watchdog_timeo = QUEUE_PKT_TIMEOUT;
  518. dev->mem_start = 0;
  519. /* Fill in the generic field of the device structure. */
  520. ether_setup(dev);
  521. }
  522. } else {
  523. status = -ENXIO;
  524. }
  525. return status;
  526. }
  527. static int ewrk3_open(struct net_device *dev)
  528. {
  529. struct ewrk3_private *lp = (struct ewrk3_private *) dev->priv;
  530. u_long iobase = dev->base_addr;
  531. int i, status = 0;
  532. u_char icr, csr;
  533. /*
  534.    ** Stop the TX and RX...
  535.  */
  536. STOP_EWRK3;
  537. if (!lp->hard_strapped) {
  538. if (request_irq(dev->irq, (void *) ewrk3_interrupt, 0, "ewrk3", dev)) {
  539. printk("ewrk3_open(): Requested IRQ%d is busyn", dev->irq);
  540. status = -EAGAIN;
  541. } else {
  542. /*
  543.    ** Re-initialize the EWRK3...
  544.  */
  545. ewrk3_init(dev);
  546. if (ewrk3_debug > 1) {
  547. printk("%s: ewrk3 open with irq %dn", dev->name, dev->irq);
  548. printk("  physical address: ");
  549. for (i = 0; i < 5; i++) {
  550. printk("%2.2x:", (u_char) dev->dev_addr[i]);
  551. }
  552. printk("%2.2xn", (u_char) dev->dev_addr[i]);
  553. if (lp->shmem_length == 0) {
  554. printk("  no shared memory, I/O only moden");
  555. } else {
  556. printk("  start of shared memory: 0x%08lxn", lp->shmem_base);
  557. printk("  window length: 0x%04lxn", lp->shmem_length);
  558. }
  559. printk("  # of DRAMS: %dn", ((inb(EWRK3_CMR) & 0x02) ? 2 : 1));
  560. printk("  csr:  0x%02xn", inb(EWRK3_CSR));
  561. printk("  cr:   0x%02xn", inb(EWRK3_CR));
  562. printk("  icr:  0x%02xn", inb(EWRK3_ICR));
  563. printk("  cmr:  0x%02xn", inb(EWRK3_CMR));
  564. printk("  fmqc: 0x%02xn", inb(EWRK3_FMQC));
  565. }
  566. netif_start_queue(dev);
  567. /*
  568.    ** Unmask EWRK3 board interrupts
  569.  */
  570. icr = inb(EWRK3_ICR);
  571. ENABLE_IRQs;
  572. }
  573. } else {
  574. printk(KERN_ERR "%s: ewrk3 available for hard strapped set up only.n", dev->name);
  575. printk(KERN_ERR "      Run the 'ewrk3setup' utility or remove the hard straps.n");
  576. return -EINVAL;
  577. }
  578. return status;
  579. }
  580. /*
  581.    ** Initialize the EtherWORKS 3 operating conditions
  582.  */
  583. static void ewrk3_init(struct net_device *dev)
  584. {
  585. struct ewrk3_private *lp = (struct ewrk3_private *) dev->priv;
  586. u_char csr, page;
  587. u_long iobase = dev->base_addr;
  588. /*
  589.    ** Enable any multicasts
  590.  */
  591. set_multicast_list(dev);
  592. /*
  593.    ** Clean out any remaining entries in all the queues here
  594.  */
  595. while (inb(EWRK3_TQ));
  596. while (inb(EWRK3_TDQ));
  597. while (inb(EWRK3_RQ));
  598. while (inb(EWRK3_FMQ));
  599. /*
  600.    ** Write a clean free memory queue
  601.  */
  602. for (page = 1; page < lp->mPage; page++) { /* Write the free page numbers */
  603. outb(page, EWRK3_FMQ); /* to the Free Memory Queue */
  604. }
  605. START_EWRK3; /* Enable the TX and/or RX */
  606. }
  607. /*
  608.  *  Transmit timeout
  609.  */
  610.  
  611. static void ewrk3_timeout(struct net_device *dev)
  612. {
  613. struct ewrk3_private *lp = (struct ewrk3_private *) dev->priv;
  614. u_char icr, csr;
  615. u_long iobase = dev->base_addr;
  616. if (!lp->hard_strapped) 
  617. {
  618. printk(KERN_WARNING"%s: transmit timed/locked out, status %04x, resetting.n",
  619.        dev->name, inb(EWRK3_CSR));
  620. /*
  621.    ** Mask all board interrupts
  622.  */
  623. DISABLE_IRQs;
  624. /*
  625.    ** Stop the TX and RX...
  626.  */
  627. STOP_EWRK3;
  628. ewrk3_init(dev);
  629. /*
  630.    ** Unmask EWRK3 board interrupts
  631.  */
  632. ENABLE_IRQs;
  633. dev->trans_start = jiffies;
  634. netif_wake_queue(dev);
  635. }
  636. }
  637. /*
  638.    ** Writes a socket buffer to the free page queue
  639.  */
  640. static int ewrk3_queue_pkt (struct sk_buff *skb, struct net_device *dev)
  641. {
  642. struct ewrk3_private *lp = (struct ewrk3_private *) dev->priv;
  643. u_long iobase = dev->base_addr;
  644. u_long buf = 0;
  645. u_char icr;
  646. u_char page;
  647. spin_lock_irq (&lp->hw_lock);
  648. DISABLE_IRQs;
  649. /* if no resources available, exit, request packet be queued */
  650. if (inb (EWRK3_FMQC) == 0) {
  651. printk (KERN_WARNING "%s: ewrk3_queue_pkt(): No free resources...n",
  652. dev->name);
  653. printk (KERN_WARNING "%s: ewrk3_queue_pkt(): CSR: %02x ICR: %02x FMQC: %02xn",
  654. dev->name, inb (EWRK3_CSR), inb (EWRK3_ICR),
  655. inb (EWRK3_FMQC));
  656. goto err_out;
  657. }
  658. /*
  659.  ** Get a free page from the FMQ
  660.  */
  661. if ((page = inb (EWRK3_FMQ)) >= lp->mPage) {
  662. printk ("ewrk3_queue_pkt(): Invalid free memory page (%d).n",
  663.      (u_char) page);
  664. goto err_out;
  665. }
  666. /*
  667.  ** Set up shared memory window and pointer into the window
  668.  */
  669. if (lp->shmem_length == IO_ONLY) {
  670. outb (page, EWRK3_IOPR);
  671. } else if (lp->shmem_length == SHMEM_2K) {
  672. buf = lp->shmem_base;
  673. outb (page, EWRK3_MPR);
  674. } else if (lp->shmem_length == SHMEM_32K) {
  675. buf = ((((short) page << 11) & 0x7800) + lp->shmem_base);
  676. outb ((page >> 4), EWRK3_MPR);
  677. } else if (lp->shmem_length == SHMEM_64K) {
  678. buf = ((((short) page << 11) & 0xf800) + lp->shmem_base);
  679. outb ((page >> 5), EWRK3_MPR);
  680. } else {
  681. printk (KERN_ERR "%s: Oops - your private data area is hosed!n",
  682. dev->name);
  683. BUG ();
  684. }
  685. /*
  686.  ** Set up the buffer control structures and copy the data from
  687.  ** the socket buffer to the shared memory .
  688.  */
  689. if (lp->shmem_length == IO_ONLY) {
  690. int i;
  691. u_char *p = skb->data;
  692. outb ((char) (TCR_QMODE | TCR_PAD | TCR_IFC), EWRK3_DATA);
  693. outb ((char) (skb->len & 0xff), EWRK3_DATA);
  694. outb ((char) ((skb->len >> 8) & 0xff), EWRK3_DATA);
  695. outb ((char) 0x04, EWRK3_DATA);
  696. for (i = 0; i < skb->len; i++) {
  697. outb (*p++, EWRK3_DATA);
  698. }
  699. outb (page, EWRK3_TQ); /* Start sending pkt */
  700. } else {
  701. isa_writeb ((char) (TCR_QMODE | TCR_PAD | TCR_IFC), buf); /* ctrl byte */
  702. buf += 1;
  703. isa_writeb ((char) (skb->len & 0xff), buf); /* length (16 bit xfer) */
  704. buf += 1;
  705. if (lp->txc) {
  706. isa_writeb ((char)
  707.     (((skb->len >> 8) & 0xff) | XCT), buf);
  708. buf += 1;
  709. isa_writeb (0x04, buf); /* index byte */
  710. buf += 1;
  711. isa_writeb (0x00, (buf + skb->len)); /* Write the XCT flag */
  712. isa_memcpy_toio (buf, skb->data, PRELOAD); /* Write PRELOAD bytes */
  713. outb (page, EWRK3_TQ); /* Start sending pkt */
  714. isa_memcpy_toio (buf + PRELOAD,
  715.  skb->data + PRELOAD,
  716.  skb->len - PRELOAD);
  717. isa_writeb (0xff, (buf + skb->len)); /* Write the XCT flag */
  718. } else {
  719. isa_writeb ((char)
  720.     ((skb->len >> 8) & 0xff), buf);
  721. buf += 1;
  722. isa_writeb (0x04, buf); /* index byte */
  723. buf += 1;
  724. isa_memcpy_toio (buf, skb->data, skb->len); /* Write data bytes */
  725. outb (page, EWRK3_TQ); /* Start sending pkt */
  726. }
  727. }
  728. ENABLE_IRQs;
  729. spin_unlock_irq (&lp->hw_lock);
  730. lp->stats.tx_bytes += skb->len;
  731. dev->trans_start = jiffies;
  732. dev_kfree_skb (skb);
  733. /* Check for free resources: stop Tx queue if there are none */
  734. if (inb (EWRK3_FMQC) == 0)
  735. netif_stop_queue (dev);
  736. return 0;
  737. err_out:
  738. ENABLE_IRQs;
  739. spin_unlock_irq (&lp->hw_lock);
  740. return 1;
  741. }
  742. /*
  743.    ** The EWRK3 interrupt handler.
  744.  */
  745. static void ewrk3_interrupt(int irq, void *dev_id, struct pt_regs *regs)
  746. {
  747. struct net_device *dev = dev_id;
  748. struct ewrk3_private *lp;
  749. u_long iobase;
  750. u_char icr, cr, csr;
  751. lp = (struct ewrk3_private *) dev->priv;
  752. iobase = dev->base_addr;
  753. /* get the interrupt information */
  754. csr = inb(EWRK3_CSR);
  755. /*
  756.  ** Mask the EWRK3 board interrupts and turn on the LED
  757.  */
  758. spin_lock(&lp->hw_lock);
  759. DISABLE_IRQs;
  760. cr = inb(EWRK3_CR);
  761. cr |= CR_LED;
  762. outb(cr, EWRK3_CR);
  763. if (csr & CSR_RNE) /* Rx interrupt (packet[s] arrived) */
  764. ewrk3_rx(dev);
  765. if (csr & CSR_TNE) /* Tx interrupt (packet sent) */
  766. ewrk3_tx(dev);
  767. /*
  768.  ** Now deal with the TX/RX disable flags. These are set when there
  769.  ** are no more resources. If resources free up then enable these
  770.  ** interrupts, otherwise mask them - failure to do this will result
  771.  ** in the system hanging in an interrupt loop.
  772.  */
  773. if (inb(EWRK3_FMQC)) { /* any resources available? */
  774. lp->irq_mask |= ICR_TXDM | ICR_RXDM; /* enable the interrupt source */
  775. csr &= ~(CSR_TXD | CSR_RXD); /* ensure restart of a stalled TX or RX */
  776. outb(csr, EWRK3_CSR);
  777. netif_wake_queue(dev);
  778. } else {
  779. lp->irq_mask &= ~(ICR_TXDM | ICR_RXDM); /* disable the interrupt source */
  780. }
  781. /* Unmask the EWRK3 board interrupts and turn off the LED */
  782. cr &= ~CR_LED;
  783. outb(cr, EWRK3_CR);
  784. ENABLE_IRQs;
  785. spin_unlock(&lp->hw_lock);
  786. }
  787. static int ewrk3_rx(struct net_device *dev)
  788. {
  789. struct ewrk3_private *lp = (struct ewrk3_private *) dev->priv;
  790. u_long iobase = dev->base_addr;
  791. int i, status = 0;
  792. u_char page;
  793. u_long buf = 0;
  794. while (inb(EWRK3_RQC) && !status) { /* Whilst there's incoming data */
  795. if ((page = inb(EWRK3_RQ)) < lp->mPage) { /* Get next entry's buffer page */
  796. /*
  797.    ** Set up shared memory window and pointer into the window
  798.  */
  799. if (lp->shmem_length == IO_ONLY) {
  800. outb(page, EWRK3_IOPR);
  801. } else if (lp->shmem_length == SHMEM_2K) {
  802. buf = lp->shmem_base;
  803. outb(page, EWRK3_MPR);
  804. } else if (lp->shmem_length == SHMEM_32K) {
  805. buf = ((((short) page << 11) & 0x7800) + lp->shmem_base);
  806. outb((page >> 4), EWRK3_MPR);
  807. } else if (lp->shmem_length == SHMEM_64K) {
  808. buf = ((((short) page << 11) & 0xf800) + lp->shmem_base);
  809. outb((page >> 5), EWRK3_MPR);
  810. } else {
  811. status = -1;
  812. printk("%s: Oops - your private data area is hosed!n", dev->name);
  813. }
  814. if (!status) {
  815. char rx_status;
  816. int pkt_len;
  817. if (lp->shmem_length == IO_ONLY) {
  818. rx_status = inb(EWRK3_DATA);
  819. pkt_len = inb(EWRK3_DATA);
  820. pkt_len |= ((u_short) inb(EWRK3_DATA) << 8);
  821. } else {
  822. rx_status = isa_readb(buf);
  823. buf += 1;
  824. pkt_len = isa_readw(buf);
  825. buf += 3;
  826. }
  827. if (!(rx_status & R_ROK)) { /* There was an error. */
  828. lp->stats.rx_errors++; /* Update the error stats. */
  829. if (rx_status & R_DBE)
  830. lp->stats.rx_frame_errors++;
  831. if (rx_status & R_CRC)
  832. lp->stats.rx_crc_errors++;
  833. if (rx_status & R_PLL)
  834. lp->stats.rx_fifo_errors++;
  835. } else {
  836. struct sk_buff *skb;
  837. if ((skb = dev_alloc_skb(pkt_len + 2)) != NULL) {
  838. unsigned char *p;
  839. skb->dev = dev;
  840. skb_reserve(skb, 2); /* Align to 16 bytes */
  841. p = skb_put(skb, pkt_len);
  842. if (lp->shmem_length == IO_ONLY) {
  843. *p = inb(EWRK3_DATA); /* dummy read */
  844. for (i = 0; i < pkt_len; i++) {
  845. *p++ = inb(EWRK3_DATA);
  846. }
  847. } else {
  848. isa_memcpy_fromio(p, buf, pkt_len);
  849. }
  850. for (i = 1; i < EWRK3_PKT_STAT_SZ - 1; i++) {
  851. if (pkt_len < i * EWRK3_PKT_BIN_SZ) {
  852. lp->pktStats.bins[i]++;
  853. i = EWRK3_PKT_STAT_SZ;
  854. }
  855. }
  856. p = skb->data; /* Look at the dest addr */
  857. if (p[0] & 0x01) { /* Multicast/Broadcast */
  858. if ((*(s32 *) & p[0] == -1) && (*(s16 *) & p[4] == -1)) {
  859. lp->pktStats.broadcast++;
  860. } else {
  861. lp->pktStats.multicast++;
  862. }
  863. } else if ((*(s32 *) & p[0] == *(s32 *) & dev->dev_addr[0]) &&
  864.    (*(s16 *) & p[4] == *(s16 *) & dev->dev_addr[4])) {
  865. lp->pktStats.unicast++;
  866. }
  867. lp->pktStats.bins[0]++; /* Duplicates stats.rx_packets */
  868. if (lp->pktStats.bins[0] == 0) { /* Reset counters */
  869. memset(&lp->pktStats, 0, sizeof(lp->pktStats));
  870. }
  871. /*
  872.    ** Notify the upper protocol layers that there is another
  873.    ** packet to handle
  874.  */
  875. skb->protocol = eth_type_trans(skb, dev);
  876. netif_rx(skb);
  877. /*
  878.    ** Update stats
  879.  */
  880. dev->last_rx = jiffies;
  881. lp->stats.rx_packets++;
  882. lp->stats.rx_bytes += pkt_len;
  883. } else {
  884. printk("%s: Insufficient memory; nuking packet.n", dev->name);
  885. lp->stats.rx_dropped++; /* Really, deferred. */
  886. break;
  887. }
  888. }
  889. }
  890. /*
  891.    ** Return the received buffer to the free memory queue
  892.  */
  893. outb(page, EWRK3_FMQ);
  894. } else {
  895. printk("ewrk3_rx(): Illegal page number, page %dn", page);
  896. printk("ewrk3_rx(): CSR: %02x ICR: %02x FMQC: %02xn", inb(EWRK3_CSR), inb(EWRK3_ICR), inb(EWRK3_FMQC));
  897. }
  898. }
  899. return status;
  900. }
  901. /*
  902.    ** Buffer sent - check for TX buffer errors.
  903.  */
  904. static int ewrk3_tx(struct net_device *dev)
  905. {
  906. struct ewrk3_private *lp = (struct ewrk3_private *) dev->priv;
  907. u_long iobase = dev->base_addr;
  908. u_char tx_status;
  909. while ((tx_status = inb(EWRK3_TDQ)) > 0) { /* Whilst there's old buffers */
  910. if (tx_status & T_VSTS) { /* The status is valid */
  911. if (tx_status & T_TXE) {
  912. lp->stats.tx_errors++;
  913. if (tx_status & T_NCL)
  914. lp->stats.tx_carrier_errors++;
  915. if (tx_status & T_LCL)
  916. lp->stats.tx_window_errors++;
  917. if (tx_status & T_CTU) {
  918. if ((tx_status & T_COLL) ^ T_XUR) {
  919. lp->pktStats.tx_underruns++;
  920. } else {
  921. lp->pktStats.excessive_underruns++;
  922. }
  923. } else if (tx_status & T_COLL) {
  924. if ((tx_status & T_COLL) ^ T_XCOLL) {
  925. lp->stats.collisions++;
  926. } else {
  927. lp->pktStats.excessive_collisions++;
  928. }
  929. }
  930. } else {
  931. lp->stats.tx_packets++;
  932. }
  933. }
  934. }
  935. return 0;
  936. }
  937. static int ewrk3_close(struct net_device *dev)
  938. {
  939. struct ewrk3_private *lp = (struct ewrk3_private *) dev->priv;
  940. u_long iobase = dev->base_addr;
  941. u_char icr, csr;
  942. netif_stop_queue(dev);
  943. if (ewrk3_debug > 1) {
  944. printk("%s: Shutting down ethercard, status was %2.2x.n",
  945.        dev->name, inb(EWRK3_CSR));
  946. }
  947. /*
  948.    ** We stop the EWRK3 here... mask interrupts and stop TX & RX
  949.  */
  950. DISABLE_IRQs;
  951. STOP_EWRK3;
  952. /*
  953.    ** Clean out the TX and RX queues here (note that one entry
  954.    ** may get added to either the TXD or RX queues if the TX or RX
  955.    ** just starts processing a packet before the STOP_EWRK3 command
  956.    ** is received. This will be flushed in the ewrk3_open() call).
  957.  */
  958. while (inb(EWRK3_TQ));
  959. while (inb(EWRK3_TDQ));
  960. while (inb(EWRK3_RQ));
  961. if (!lp->hard_strapped) {
  962. free_irq(dev->irq, dev);
  963. }
  964. return 0;
  965. }
  966. static struct net_device_stats *ewrk3_get_stats(struct net_device *dev)
  967. {
  968. struct ewrk3_private *lp = (struct ewrk3_private *) dev->priv;
  969. /* Null body since there is no framing error counter */
  970. return &lp->stats;
  971. }
  972. /*
  973.    ** Set or clear the multicast filter for this adapter.
  974.  */
  975. static void set_multicast_list(struct net_device *dev)
  976. {
  977. struct ewrk3_private *lp = (struct ewrk3_private *) dev->priv;
  978. u_long iobase = dev->base_addr;
  979. u_char csr;
  980. csr = inb(EWRK3_CSR);
  981. if (lp->shmem_length == IO_ONLY) {
  982. lp->mctbl = (char *) PAGE0_HTE;
  983. } else {
  984. lp->mctbl = (char *) (lp->shmem_base + PAGE0_HTE);
  985. }
  986. csr &= ~(CSR_PME | CSR_MCE);
  987. if (dev->flags & IFF_PROMISC) { /* set promiscuous mode */
  988. csr |= CSR_PME;
  989. outb(csr, EWRK3_CSR);
  990. } else {
  991. SetMulticastFilter(dev);
  992. csr |= CSR_MCE;
  993. outb(csr, EWRK3_CSR);
  994. }
  995. }
  996. /*
  997.    ** Calculate the hash code and update the logical address filter
  998.    ** from a list of ethernet multicast addresses.
  999.    ** Little endian crc one liner from Matt Thomas, DEC.
  1000.    **
  1001.    ** Note that when clearing the table, the broadcast bit must remain asserted
  1002.    ** to receive broadcast messages.
  1003.  */
  1004. static void SetMulticastFilter(struct net_device *dev)
  1005. {
  1006. struct ewrk3_private *lp = (struct ewrk3_private *) dev->priv;
  1007. struct dev_mc_list *dmi = dev->mc_list;
  1008. u_long iobase = dev->base_addr;
  1009. int i;
  1010. char *addrs, j, bit, byte;
  1011. short *p = (short *) lp->mctbl;
  1012. u16 hashcode;
  1013. s32 crc, poly = CRC_POLYNOMIAL_LE;
  1014. spin_lock_irq(&lp->hw_lock);
  1015. if (lp->shmem_length == IO_ONLY) {
  1016. outb(0, EWRK3_IOPR);
  1017. outw(EEPROM_OFFSET(lp->mctbl), EWRK3_PIR1);
  1018. } else {
  1019. outb(0, EWRK3_MPR);
  1020. }
  1021. if (dev->flags & IFF_ALLMULTI) {
  1022. for (i = 0; i < (HASH_TABLE_LEN >> 3); i++) {
  1023. if (lp->shmem_length == IO_ONLY) {
  1024. outb(0xff, EWRK3_DATA);
  1025. } else { /* memset didn't work here */
  1026. isa_writew(0xffff, (int) p);
  1027. p++;
  1028. i++;
  1029. }
  1030. }
  1031. } else {
  1032. /* Clear table except for broadcast bit */
  1033. if (lp->shmem_length == IO_ONLY) {
  1034. for (i = 0; i < (HASH_TABLE_LEN >> 4) - 1; i++) {
  1035. outb(0x00, EWRK3_DATA);
  1036. }
  1037. outb(0x80, EWRK3_DATA);
  1038. i++; /* insert the broadcast bit */
  1039. for (; i < (HASH_TABLE_LEN >> 3); i++) {
  1040. outb(0x00, EWRK3_DATA);
  1041. }
  1042. } else {
  1043. isa_memset_io((int) lp->mctbl, 0, (HASH_TABLE_LEN >> 3));
  1044. isa_writeb(0x80, (int) (lp->mctbl + (HASH_TABLE_LEN >> 4) - 1));
  1045. }
  1046. /* Update table */
  1047. for (i = 0; i < dev->mc_count; i++) { /* for each address in the list */
  1048. addrs = dmi->dmi_addr;
  1049. dmi = dmi->next;
  1050. if ((*addrs & 0x01) == 1) { /* multicast address? */
  1051. crc = 0xffffffff; /* init CRC for each address */
  1052. for (byte = 0; byte < ETH_ALEN; byte++) { /* for each address byte */
  1053. /* process each address bit */
  1054. for (bit = *addrs++, j = 0; j < 8; j++, bit >>= 1) {
  1055. crc = (crc >> 1) ^ (((crc ^ bit) & 0x01) ? poly : 0);
  1056. }
  1057. }
  1058. hashcode = crc & ((1 << 9) - 1); /* hashcode is 9 LSb of CRC */
  1059. byte = hashcode >> 3; /* bit[3-8] -> byte in filter */
  1060. bit = 1 << (hashcode & 0x07); /* bit[0-2] -> bit in byte */
  1061. if (lp->shmem_length == IO_ONLY) {
  1062. u_char tmp;
  1063. outw((short) ((long) lp->mctbl) + byte, EWRK3_PIR1);
  1064. tmp = inb(EWRK3_DATA);
  1065. tmp |= bit;
  1066. outw((short) ((long) lp->mctbl) + byte, EWRK3_PIR1);
  1067. outb(tmp, EWRK3_DATA);
  1068. } else {
  1069. isa_writeb(isa_readb((int)(lp->mctbl + byte)) | bit, (int)(lp->mctbl + byte));
  1070. }
  1071. }
  1072. }
  1073. }
  1074. spin_unlock_irq(&lp->hw_lock);
  1075. }
  1076. /*
  1077.    ** ISA bus I/O device probe
  1078.  */
  1079. static void __init isa_probe(struct net_device *dev, u_long ioaddr)
  1080. {
  1081. int i = num_ewrk3s, maxSlots;
  1082. u_long iobase;
  1083. if (!ioaddr && autoprobed)
  1084. return; /* Been here before ! */
  1085. if (ioaddr >= 0x400)
  1086. return; /* Not ISA */
  1087. if (ioaddr == 0) { /* Autoprobing */
  1088. iobase = EWRK3_IO_BASE; /* Get the first slot address */
  1089. maxSlots = 24;
  1090. } else { /* Probe a specific location */
  1091. iobase = ioaddr;
  1092. maxSlots = i + 1;
  1093. }
  1094. for (; (i < maxSlots) && (dev != NULL); iobase += EWRK3_IOP_INC, i++) {
  1095. if (!check_region(iobase, EWRK3_TOTAL_SIZE)) {
  1096. if (DevicePresent(iobase) == 0) {
  1097. if ((dev = alloc_device(dev, iobase)) != NULL) {
  1098. if (ewrk3_hw_init(dev, iobase) == 0) {
  1099. num_ewrk3s++;
  1100. }
  1101. num_eth++;
  1102. }
  1103. }
  1104. } else if (autoprobed) {
  1105. printk("%s: region already allocated at 0x%04lx.n", dev->name, iobase);
  1106. }
  1107. }
  1108. return;
  1109. }
  1110. /*
  1111.    ** EISA bus I/O device probe. Probe from slot 1 since slot 0 is usually
  1112.    ** the motherboard.
  1113.  */
  1114. static void __init eisa_probe(struct net_device *dev, u_long ioaddr)
  1115. {
  1116. int i, maxSlots;
  1117. u_long iobase;
  1118. char name[EWRK3_STRLEN];
  1119. if (!ioaddr && autoprobed)
  1120. return; /* Been here before ! */
  1121. if (ioaddr < 0x1000)
  1122. return; /* Not EISA */
  1123. if (ioaddr == 0) { /* Autoprobing */
  1124. iobase = EISA_SLOT_INC; /* Get the first slot address */
  1125. i = 1;
  1126. maxSlots = MAX_EISA_SLOTS;
  1127. } else { /* Probe a specific location */
  1128. iobase = ioaddr;
  1129. i = (ioaddr >> 12);
  1130. maxSlots = i + 1;
  1131. }
  1132. for (i = 1; (i < maxSlots) && (dev != NULL); i++, iobase += EISA_SLOT_INC) {
  1133. if (EISA_signature(name, EISA_ID) == 0) {
  1134. if (!check_region(iobase, EWRK3_TOTAL_SIZE)) {
  1135. if (DevicePresent(iobase) == 0) {
  1136. if ((dev = alloc_device(dev, iobase)) != NULL) {
  1137. if (ewrk3_hw_init(dev, iobase) == 0) {
  1138. num_ewrk3s++;
  1139. }
  1140. num_eth++;
  1141. }
  1142. }
  1143. } else if (autoprobed) {
  1144. printk("%s: region already allocated at 0x%04lx.n", dev->name, iobase);
  1145. }
  1146. }
  1147. }
  1148. return;
  1149. }
  1150. /*
  1151.    ** Search the entire 'eth' device list for a fixed probe. If a match isn't
  1152.    ** found then check for an autoprobe or unused device location. If they
  1153.    ** are not available then insert a new device structure at the end of
  1154.    ** the current list.
  1155.  */
  1156. static struct net_device * __init  alloc_device(struct net_device *dev, u_long iobase)
  1157. {
  1158. struct net_device *adev = NULL;
  1159. int fixed = 0, new_dev = 0;
  1160. num_eth = ewrk3_dev_index(dev->name);
  1161. if (loading_module)
  1162. return dev;
  1163. while (1) {
  1164. if (((dev->base_addr == EWRK3_NDA) || (dev->base_addr == 0)) && !adev) {
  1165. adev = dev;
  1166. } else if ((dev->priv == NULL) && (dev->base_addr == iobase)) {
  1167. fixed = 1;
  1168. } else {
  1169. if (dev->next == NULL) {
  1170. new_dev = 1;
  1171. } else if (strncmp(dev->next->name, "eth", 3) != 0) {
  1172. new_dev = 1;
  1173. }
  1174. }
  1175. if ((dev->next == NULL) || new_dev || fixed)
  1176. break;
  1177. dev = dev->next;
  1178. num_eth++;
  1179. }
  1180. if (adev && !fixed) {
  1181. dev = adev;
  1182. num_eth = ewrk3_dev_index(dev->name);
  1183. new_dev = 0;
  1184. }
  1185. if (((dev->next == NULL) &&
  1186.      ((dev->base_addr != EWRK3_NDA) && (dev->base_addr != 0)) && !fixed) ||
  1187.     new_dev) {
  1188. num_eth++; /* New device */
  1189. dev = insert_device(dev, iobase, ewrk3_probe);
  1190. }
  1191. return dev;
  1192. }
  1193. /*
  1194.    ** If at end of eth device list and can't use current entry, malloc
  1195.    ** one up. If memory could not be allocated, print an error message.
  1196.  */
  1197. static struct net_device * __init
  1198. insert_device(struct net_device *dev, u_long iobase, int (*init) (struct net_device *))
  1199. {
  1200. struct net_device *new;
  1201. new = (struct net_device *) kmalloc(sizeof(struct net_device) + 8, GFP_KERNEL);
  1202. if (new == NULL) {
  1203. printk("eth%d: Device not initialised, insufficient memoryn", num_eth);
  1204. return NULL;
  1205. } else {
  1206. new->next = dev->next;
  1207. dev->next = new;
  1208. dev = dev->next; /* point to the new device */
  1209. if (num_eth > 9999) {
  1210. sprintf(dev->name, "eth????"); /* New device name */
  1211. } else {
  1212. sprintf(dev->name, "eth%d", num_eth); /* New device name */
  1213. }
  1214. dev->base_addr = iobase; /* assign the io address */
  1215. dev->init = init; /* initialisation routine */
  1216. }
  1217. return dev;
  1218. }
  1219. static int __init 
  1220. ewrk3_dev_index(char *s)
  1221. {
  1222. int i = 0, j = 0;
  1223. for (; *s; s++) {
  1224. if (isdigit(*s)) {
  1225. j = 1;
  1226. i = (i * 10) + (*s - '0');
  1227. } else if (j)
  1228. break;
  1229. }
  1230. return i;
  1231. }
  1232. /*
  1233.    ** Read the EWRK3 EEPROM using this routine
  1234.  */
  1235. static int Read_EEPROM(u_long iobase, u_char eaddr)
  1236. {
  1237. int i;
  1238. outb((eaddr & 0x3f), EWRK3_PIR1); /* set up 6 bits of address info */
  1239. outb(EEPROM_RD, EWRK3_IOPR); /* issue read command */
  1240. for (i = 0; i < 5000; i++)
  1241. inb(EWRK3_CSR); /* wait 1msec */
  1242. return inw(EWRK3_EPROM1); /* 16 bits data return */
  1243. }
  1244. /*
  1245.    ** Write the EWRK3 EEPROM using this routine
  1246.  */
  1247. static int Write_EEPROM(short data, u_long iobase, u_char eaddr)
  1248. {
  1249. int i;
  1250. outb(EEPROM_WR_EN, EWRK3_IOPR); /* issue write enable command */
  1251. for (i = 0; i < 5000; i++)
  1252. inb(EWRK3_CSR); /* wait 1msec */
  1253. outw(data, EWRK3_EPROM1); /* write data to register */
  1254. outb((eaddr & 0x3f), EWRK3_PIR1); /* set up 6 bits of address info */
  1255. outb(EEPROM_WR, EWRK3_IOPR); /* issue write command */
  1256. for (i = 0; i < 75000; i++)
  1257. inb(EWRK3_CSR); /* wait 15msec */
  1258. outb(EEPROM_WR_DIS, EWRK3_IOPR); /* issue write disable command */
  1259. for (i = 0; i < 5000; i++)
  1260. inb(EWRK3_CSR); /* wait 1msec */
  1261. return 0;
  1262. }
  1263. /*
  1264.    ** Look for a particular board name in the on-board EEPROM.
  1265.  */
  1266. static void __init EthwrkSignature(char *name, char *eeprom_image)
  1267. {
  1268. u_long i, j, k;
  1269. char *signatures[] = EWRK3_SIGNATURE;
  1270. strcpy(name, "");
  1271. for (i = 0; *signatures[i] != '' && *name == ''; i++) {
  1272. for (j = EEPROM_PNAME7, k = 0; j <= EEPROM_PNAME0 && k < strlen(signatures[i]); j++) {
  1273. if (signatures[i][k] == eeprom_image[j]) { /* track signature */
  1274. k++;
  1275. } else { /* lost signature; begin search again */
  1276. k = 0;
  1277. }
  1278. }
  1279. if (k == strlen(signatures[i])) {
  1280. for (k = 0; k < EWRK3_STRLEN; k++) {
  1281. name[k] = eeprom_image[EEPROM_PNAME7 + k];
  1282. name[EWRK3_STRLEN] = '';
  1283. }
  1284. }
  1285. }
  1286. return; /* return the device name string */
  1287. }
  1288. /*
  1289.    ** Look for a special sequence in the Ethernet station address PROM that
  1290.    ** is common across all EWRK3 products.
  1291.    **
  1292.    ** Search the Ethernet address ROM for the signature. Since the ROM address
  1293.    ** counter can start at an arbitrary point, the search must include the entire
  1294.    ** probe sequence length plus the (length_of_the_signature - 1).
  1295.    ** Stop the search IMMEDIATELY after the signature is found so that the
  1296.    ** PROM address counter is correctly positioned at the start of the
  1297.    ** ethernet address for later read out.
  1298.  */
  1299. static int __init DevicePresent(u_long iobase)
  1300. {
  1301. union {
  1302. struct {
  1303. u32 a;
  1304. u32 b;
  1305. } llsig;
  1306. char Sig[sizeof(u32) << 1];
  1307. }
  1308. dev;
  1309. short sigLength;
  1310. char data;
  1311. int i, j, status = 0;
  1312. dev.llsig.a = ETH_PROM_SIG;
  1313. dev.llsig.b = ETH_PROM_SIG;
  1314. sigLength = sizeof(u32) << 1;
  1315. for (i = 0, j = 0; j < sigLength && i < PROBE_LENGTH + sigLength - 1; i++) {
  1316. data = inb(EWRK3_APROM);
  1317. if (dev.Sig[j] == data) { /* track signature */
  1318. j++;
  1319. } else { /* lost signature; begin search again */
  1320. if (data == dev.Sig[0]) {
  1321. j = 1;
  1322. } else {
  1323. j = 0;
  1324. }
  1325. }
  1326. }
  1327. if (j != sigLength) {
  1328. status = -ENODEV; /* search failed */
  1329. }
  1330. return status;
  1331. }
  1332. static u_char __init get_hw_addr(struct net_device *dev, u_char * eeprom_image, char chipType)
  1333. {
  1334. int i, j, k;
  1335. u_short chksum;
  1336. u_char crc, lfsr, sd, status = 0;
  1337. u_long iobase = dev->base_addr;
  1338. u16 tmp;
  1339. if (chipType == LeMAC2) {
  1340. for (crc = 0x6a, j = 0; j < ETH_ALEN; j++) {
  1341. sd = dev->dev_addr[j] = eeprom_image[EEPROM_PADDR0 + j];
  1342. outb(dev->dev_addr[j], EWRK3_PAR0 + j);
  1343. for (k = 0; k < 8; k++, sd >>= 1) {
  1344. lfsr = ((((crc & 0x02) >> 1) ^ (crc & 0x01)) ^ (sd & 0x01)) << 7;
  1345. crc = (crc >> 1) + lfsr;
  1346. }
  1347. }
  1348. if (crc != eeprom_image[EEPROM_PA_CRC])
  1349. status = -1;
  1350. } else {
  1351. for (i = 0, k = 0; i < ETH_ALEN;) {
  1352. k <<= 1;
  1353. if (k > 0xffff)
  1354. k -= 0xffff;
  1355. k += (u_char) (tmp = inb(EWRK3_APROM));
  1356. dev->dev_addr[i] = (u_char) tmp;
  1357. outb(dev->dev_addr[i], EWRK3_PAR0 + i);
  1358. i++;
  1359. k += (u_short) ((tmp = inb(EWRK3_APROM)) << 8);
  1360. dev->dev_addr[i] = (u_char) tmp;
  1361. outb(dev->dev_addr[i], EWRK3_PAR0 + i);
  1362. i++;
  1363. if (k > 0xffff)
  1364. k -= 0xffff;
  1365. }
  1366. if (k == 0xffff)
  1367. k = 0;
  1368. chksum = inb(EWRK3_APROM);
  1369. chksum |= (inb(EWRK3_APROM) << 8);
  1370. if (k != chksum)
  1371. status = -1;
  1372. }
  1373. return status;
  1374. }
  1375. /*
  1376.    ** Look for a particular board name in the EISA configuration space
  1377.  */
  1378. static int __init EISA_signature(char *name, s32 eisa_id)
  1379. {
  1380. u_long i;
  1381. char *signatures[] = EWRK3_SIGNATURE;
  1382. char ManCode[EWRK3_STRLEN];
  1383. union {
  1384. s32 ID;
  1385. char Id[4];
  1386. } Eisa;
  1387. int status = 0;
  1388. *name = '';
  1389. for (i = 0; i < 4; i++) {
  1390. Eisa.Id[i] = inb(eisa_id + i);
  1391. }
  1392. ManCode[0] = (((Eisa.Id[0] >> 2) & 0x1f) + 0x40);
  1393. ManCode[1] = (((Eisa.Id[1] & 0xe0) >> 5) + ((Eisa.Id[0] & 0x03) << 3) + 0x40);
  1394. ManCode[2] = (((Eisa.Id[2] >> 4) & 0x0f) + 0x30);
  1395. ManCode[3] = ((Eisa.Id[2] & 0x0f) + 0x30);
  1396. ManCode[4] = (((Eisa.Id[3] >> 4) & 0x0f) + 0x30);
  1397. ManCode[5] = '';
  1398. for (i = 0; (*signatures[i] != '') && (*name == ''); i++) {
  1399. if (strstr(ManCode, signatures[i]) != NULL) {
  1400. strcpy(name, ManCode);
  1401. status = 1;
  1402. }
  1403. }
  1404. return status; /* return the device name string */
  1405. }
  1406. /*
  1407.    ** Perform IOCTL call functions here. Some are privileged operations and the
  1408.    ** effective uid is checked in those cases.
  1409.  */
  1410. static int ewrk3_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
  1411. {
  1412. struct ewrk3_private *lp = (struct ewrk3_private *) dev->priv;
  1413. struct ewrk3_ioctl *ioc = (struct ewrk3_ioctl *) &rq->ifr_data;
  1414. u_long iobase = dev->base_addr;
  1415. int i, j, status = 0;
  1416. u_char csr;
  1417. union ewrk3_addr {
  1418. u_char addr[HASH_TABLE_LEN * ETH_ALEN];
  1419. u_short val[(HASH_TABLE_LEN * ETH_ALEN) >> 1];
  1420. };
  1421. union ewrk3_addr *tmp;
  1422. tmp = kmalloc(sizeof(union ewrk3_addr), GFP_KERNEL);
  1423. if(tmp==NULL)
  1424. return -ENOMEM;
  1425. switch (ioc->cmd) {
  1426. case EWRK3_GET_HWADDR: /* Get the hardware address */
  1427. for (i = 0; i < ETH_ALEN; i++) {
  1428. tmp->addr[i] = dev->dev_addr[i];
  1429. }
  1430. ioc->len = ETH_ALEN;
  1431. if (copy_to_user(ioc->data, tmp->addr, ioc->len))
  1432. status = -EFAULT;
  1433. break;
  1434. case EWRK3_SET_HWADDR: /* Set the hardware address */
  1435. if (capable(CAP_NET_ADMIN)) {
  1436. csr = inb(EWRK3_CSR);
  1437. csr |= (CSR_TXD | CSR_RXD);
  1438. outb(csr, EWRK3_CSR); /* Disable the TX and RX */
  1439. if (copy_from_user(tmp->addr, ioc->data, ETH_ALEN)) {
  1440. status = -EFAULT;
  1441. break;
  1442. }
  1443. for (i = 0; i < ETH_ALEN; i++) {
  1444. dev->dev_addr[i] = tmp->addr[i];
  1445. outb(tmp->addr[i], EWRK3_PAR0 + i);
  1446. }
  1447. csr &= ~(CSR_TXD | CSR_RXD); /* Enable the TX and RX */
  1448. outb(csr, EWRK3_CSR);
  1449. } else {
  1450. status = -EPERM;
  1451. }
  1452. break;
  1453. case EWRK3_SET_PROM: /* Set Promiscuous Mode */
  1454. if (capable(CAP_NET_ADMIN)) {
  1455. csr = inb(EWRK3_CSR);
  1456. csr |= CSR_PME;
  1457. csr &= ~CSR_MCE;
  1458. outb(csr, EWRK3_CSR);
  1459. } else {
  1460. status = -EPERM;
  1461. }
  1462. break;
  1463. case EWRK3_CLR_PROM: /* Clear Promiscuous Mode */
  1464. if (capable(CAP_NET_ADMIN)) {
  1465. csr = inb(EWRK3_CSR);
  1466. csr &= ~CSR_PME;
  1467. outb(csr, EWRK3_CSR);
  1468. } else {
  1469. status = -EPERM;
  1470. }
  1471. break;
  1472. case EWRK3_GET_MCA: /* Get the multicast address table */
  1473. spin_lock_irq(&lp->hw_lock);
  1474. if (lp->shmem_length == IO_ONLY) {
  1475. outb(0, EWRK3_IOPR);
  1476. outw(PAGE0_HTE, EWRK3_PIR1);
  1477. for (i = 0; i < (HASH_TABLE_LEN >> 3); i++) {
  1478. tmp->addr[i] = inb(EWRK3_DATA);
  1479. }
  1480. } else {
  1481. outb(0, EWRK3_MPR);
  1482. isa_memcpy_fromio(tmp->addr, lp->shmem_base + PAGE0_HTE, (HASH_TABLE_LEN >> 3));
  1483. }
  1484. spin_unlock_irq(&lp->hw_lock);
  1485. ioc->len = (HASH_TABLE_LEN >> 3);
  1486. if (copy_to_user(ioc->data, tmp->addr, ioc->len))
  1487. status = -EFAULT;
  1488. break;
  1489. case EWRK3_SET_MCA: /* Set a multicast address */
  1490. if (capable(CAP_NET_ADMIN)) {
  1491. if (copy_from_user(tmp->addr, ioc->data, ETH_ALEN * ioc->len)) {
  1492. status = -EFAULT;
  1493. break;
  1494. }
  1495. set_multicast_list(dev);
  1496. } else {
  1497. status = -EPERM;
  1498. }
  1499. break;
  1500. case EWRK3_CLR_MCA: /* Clear all multicast addresses */
  1501. if (capable(CAP_NET_ADMIN)) {
  1502. set_multicast_list(dev);
  1503. } else {
  1504. status = -EPERM;
  1505. }
  1506. break;
  1507. case EWRK3_MCA_EN: /* Enable multicast addressing */
  1508. if (capable(CAP_NET_ADMIN)) {
  1509. csr = inb(EWRK3_CSR);
  1510. csr |= CSR_MCE;
  1511. csr &= ~CSR_PME;
  1512. outb(csr, EWRK3_CSR);
  1513. } else {
  1514. status = -EPERM;
  1515. }
  1516. break;
  1517. case EWRK3_GET_STATS: /* Get the driver statistics */
  1518. cli();
  1519. ioc->len = sizeof(lp->pktStats);
  1520. if (copy_to_user(ioc->data, &lp->pktStats, ioc->len))
  1521. status = -EFAULT;
  1522. sti();
  1523. break;
  1524. case EWRK3_CLR_STATS: /* Zero out the driver statistics */
  1525. if (capable(CAP_NET_ADMIN)) {
  1526. cli();
  1527. memset(&lp->pktStats, 0, sizeof(lp->pktStats));
  1528. sti();
  1529. } else {
  1530. status = -EPERM;
  1531. }
  1532. break;
  1533. case EWRK3_GET_CSR: /* Get the CSR Register contents */
  1534. tmp->addr[0] = inb(EWRK3_CSR);
  1535. ioc->len = 1;
  1536. if (copy_to_user(ioc->data, tmp->addr, ioc->len))
  1537. status = -EFAULT;
  1538. break;
  1539. case EWRK3_SET_CSR: /* Set the CSR Register contents */
  1540. if (capable(CAP_NET_ADMIN)) {
  1541. if (copy_from_user(tmp->addr, ioc->data, 1)) {
  1542. status = -EFAULT;
  1543. break;
  1544. }
  1545. outb(tmp->addr[0], EWRK3_CSR);
  1546. } else {
  1547. status = -EPERM;
  1548. }
  1549. break;
  1550. case EWRK3_GET_EEPROM: /* Get the EEPROM contents */
  1551. if (capable(CAP_NET_ADMIN)) {
  1552. for (i = 0; i < (EEPROM_MAX >> 1); i++) {
  1553. tmp->val[i] = (short) Read_EEPROM(iobase, i);
  1554. }
  1555. i = EEPROM_MAX;
  1556. tmp->addr[i++] = inb(EWRK3_CMR); /* Config/Management Reg. */
  1557. for (j = 0; j < ETH_ALEN; j++) {
  1558. tmp->addr[i++] = inb(EWRK3_PAR0 + j);
  1559. }
  1560. ioc->len = EEPROM_MAX + 1 + ETH_ALEN;
  1561. if (copy_to_user(ioc->data, tmp->addr, ioc->len))
  1562. status = -EFAULT;
  1563. } else {
  1564. status = -EPERM;
  1565. }
  1566. break;
  1567. case EWRK3_SET_EEPROM: /* Set the EEPROM contents */
  1568. if (capable(CAP_NET_ADMIN)) {
  1569. if (copy_from_user(tmp->addr, ioc->data, EEPROM_MAX)) {
  1570. status = -EFAULT;
  1571. break;
  1572. }
  1573. for (i = 0; i < (EEPROM_MAX >> 1); i++) {
  1574. Write_EEPROM(tmp->val[i], iobase, i);
  1575. }
  1576. } else {
  1577. status = -EPERM;
  1578. }
  1579. break;
  1580. case EWRK3_GET_CMR: /* Get the CMR Register contents */
  1581. tmp->addr[0] = inb(EWRK3_CMR);
  1582. ioc->len = 1;
  1583. if (copy_to_user(ioc->data, tmp->addr, ioc->len))
  1584. status = -EFAULT;
  1585. break;
  1586. case EWRK3_SET_TX_CUT_THRU: /* Set TX cut through mode */
  1587. if (capable(CAP_NET_ADMIN)) {
  1588. lp->txc = 1;
  1589. } else {
  1590. status = -EPERM;
  1591. }
  1592. break;
  1593. case EWRK3_CLR_TX_CUT_THRU: /* Clear TX cut through mode */
  1594. if (capable(CAP_NET_ADMIN)) {
  1595. lp->txc = 0;
  1596. } else {
  1597. status = -EPERM;
  1598. }
  1599. break;
  1600. default:
  1601. status = -EOPNOTSUPP;
  1602. }
  1603. kfree(tmp);
  1604. return status;
  1605. }
  1606. #ifdef MODULE
  1607. static struct net_device thisEthwrk;
  1608. static int io = 0x300; /* <--- EDIT THESE LINES FOR YOUR CONFIGURATION */
  1609. static int irq = 5; /* or use the insmod io= irq= options           */
  1610. MODULE_PARM(io, "i");
  1611. MODULE_PARM(irq, "i");
  1612. MODULE_PARM_DESC(io, "EtherWORKS 3 I/O base address");
  1613. MODULE_PARM_DESC(irq, "EtherWORKS 3 IRQ number");
  1614. int init_module(void)
  1615. {
  1616. thisEthwrk.base_addr = io;
  1617. thisEthwrk.irq = irq;
  1618. thisEthwrk.init = ewrk3_probe;
  1619. if (register_netdev(&thisEthwrk) != 0)
  1620. return -EIO;
  1621. return 0;
  1622. }
  1623. void cleanup_module(void)
  1624. {
  1625. unregister_netdev(&thisEthwrk);
  1626. if (thisEthwrk.priv) {
  1627. kfree(thisEthwrk.priv);
  1628. thisEthwrk.priv = NULL;
  1629. }
  1630. thisEthwrk.irq = 0;
  1631. release_region(thisEthwrk.base_addr, EWRK3_TOTAL_SIZE);
  1632. }
  1633. #endif /* MODULE */
  1634. MODULE_LICENSE("GPL");
  1635. /*
  1636.  * Local variables:
  1637.  *  compile-command: "gcc -D__KERNEL__ -I/linux/include -Wall -Wstrict-prototypes -fomit-frame-pointer -fno-strength-reduce -malign-loops=2 -malign-jumps=2 -malign-functions=2 -O2 -m486 -c ewrk3.c"
  1638.  *
  1639.  *  compile-command: "gcc -D__KERNEL__ -DMODULE -I/linux/include -Wall -Wstrict-prototypes -fomit-frame-pointer -fno-strength-reduce -malign-loops=2 -malign-jumps=2 -malign-functions=2 -O2 -m486 -c ewrk3.c"
  1640.  * End:
  1641.  */