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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* cs89x0.c: A Crystal Semiconductor (Now Cirrus Logic) CS89[02]0
  2.  *  driver for linux.
  3.  */
  4. /*
  5. Written 1996 by Russell Nelson, with reference to skeleton.c
  6. written 1993-1994 by Donald Becker.
  7. This software may be used and distributed according to the terms
  8. of the GNU General Public License, incorporated herein by reference.
  9.         The author may be reached at nelson@crynwr.com, Crynwr
  10.         Software, 521 Pleasant Valley Rd., Potsdam, NY 13676
  11.   Changelog:
  12.   Mike Cruse        : mcruse@cti-ltd.com
  13.                     : Changes for Linux 2.0 compatibility. 
  14.                     : Added dev_id parameter in net_interrupt(),
  15.                     : request_irq() and free_irq(). Just NULL for now.
  16.   Mike Cruse        : Added MOD_INC_USE_COUNT and MOD_DEC_USE_COUNT macros
  17.                     : in net_open() and net_close() so kerneld would know
  18.                     : that the module is in use and wouldn't eject the 
  19.                     : driver prematurely.
  20.   Mike Cruse        : Rewrote init_module() and cleanup_module using 8390.c
  21.                     : as an example. Disabled autoprobing in init_module(),
  22.                     : not a good thing to do to other devices while Linux
  23.                     : is running from all accounts.
  24.   Russ Nelson       : Jul 13 1998.  Added RxOnly DMA support.
  25.   Melody Lee        : Aug 10 1999.  Changes for Linux 2.2.5 compatibility. 
  26.                     : email: ethernet@crystal.cirrus.com
  27.   Alan Cox          : Removed 1.2 support, added 2.1 extra counters.
  28.   Andrew Morton     : andrewm@uow.edu.au
  29.                     : Kernel 2.3.48
  30.                     : Handle kmalloc() failures
  31.                     : Other resource allocation fixes
  32.                     : Add SMP locks
  33.                     : Integrate Russ Nelson's ALLOW_DMA functionality back in.
  34.                     : If ALLOW_DMA is true, make DMA runtime selectable
  35.                     : Folded in changes from Cirrus (Melody Lee
  36.                     : <klee@crystal.cirrus.com>)
  37.                     : Don't call netif_wake_queue() in net_send_packet()
  38.                     : Fixed an out-of-mem bug in dma_rx()
  39.                     : Updated Documentation/cs89x0.txt
  40.   Andrew Morton     : andrewm@uow.edu.au / Kernel 2.3.99-pre1
  41.                     : Use skb_reserve to longword align IP header (two places)
  42.                     : Remove a delay loop from dma_rx()
  43.                     : Replace '100' with HZ
  44.                     : Clean up a couple of skb API abuses
  45.                     : Added 'cs89x0_dma=N' kernel boot option
  46.                     : Correctly initialise lp->lock in non-module compile
  47.   Andrew Morton     : andrewm@uow.edu.au / Kernel 2.3.99-pre4-1
  48.                     : MOD_INC/DEC race fix (see
  49.                     : http://www.uwsg.indiana.edu/hypermail/linux/kernel/0003.3/1532.html)
  50.   Andrew Morton     : andrewm@uow.edu.au / Kernel 2.4.0-test7-pre2
  51.                     : Enhanced EEPROM support to cover more devices,
  52.                     :   abstracted IRQ mapping to support CONFIG_ARCH_CLPS7500 arch
  53.                     :   (Jason Gunthorpe <jgg@ualberta.ca>)
  54.   Andrew Morton     : Kernel 2.4.0-test11-pre4
  55.                     : Use dev->name in request_*() (Andrey Panin)
  56.                     : Fix an error-path memleak in init_module()
  57.                     : Preserve return value from request_irq()
  58.                     : Fix type of `media' module parm (Keith Owens)
  59.                     : Use SET_MODULE_OWNER()
  60.                     : Tidied up strange request_irq() abuse in net_open().
  61.   Andrew Morton     : Kernel 2.4.3-pre1
  62.                     : Request correct number of pages for DMA (Hugh Dickens)
  63.                     : Select PP_ChipID _after_ unregister_netdev in cleanup_module()
  64.                     :  because unregister_netdev() calls get_stats.
  65.                     : Make `version[]' __initdata
  66.                     : Uninlined the read/write reg/word functions.
  67. */
  68. /* Always include 'config.h' first in case the user wants to turn on
  69.    or override something. */
  70. #include <linux/config.h>
  71. #include <linux/module.h>
  72. #include <linux/version.h>
  73. /*
  74.  * Set this to zero to disable DMA code
  75.  *
  76.  * Note that even if DMA is turned off we still support the 'dma' and  'use_dma'
  77.  * module options so we don't break any startup scripts.
  78.  */
  79. #define ALLOW_DMA 1
  80. /*
  81.  * Set this to zero to remove all the debug statements via
  82.  * dead code elimination
  83.  */
  84. #define DEBUGGING 1
  85. /*
  86.   Sources:
  87. Crynwr packet driver epktisa.
  88. Crystal Semiconductor data sheets.
  89. */
  90. #include <linux/config.h>
  91. #include <linux/kernel.h>
  92. #include <linux/sched.h>
  93. #include <linux/types.h>
  94. #include <linux/fcntl.h>
  95. #include <linux/interrupt.h>
  96. #include <linux/ptrace.h>
  97. #include <linux/ioport.h>
  98. #include <linux/in.h>
  99. #include <linux/slab.h>
  100. #include <linux/string.h>
  101. #include <linux/init.h>
  102. #include <asm/system.h>
  103. #include <asm/bitops.h>
  104. #include <asm/io.h>
  105. #if ALLOW_DMA
  106. #include <asm/dma.h>
  107. #endif
  108. #include <linux/errno.h>
  109. #include <linux/spinlock.h>
  110. #include <linux/netdevice.h>
  111. #include <linux/etherdevice.h>
  112. #include <linux/skbuff.h>
  113. #include "cs89x0.h"
  114. static char version[] __initdata =
  115. "cs89x0.c: v2.4.3-pre1 Russell Nelson <nelson@crynwr.com>, Andrew Morton <andrewm@uow.edu.au>n";
  116. /* First, a few definitions that the brave might change.
  117.    A zero-terminated list of I/O addresses to be probed. Some special flags..
  118.       Addr & 1 = Read back the address port, look for signature and reset
  119.                  the page window before probing 
  120.       Addr & 3 = Reset the page window and probe 
  121.    The CLPS eval board has the Cirrus chip at 0x80090300, in ARM IO space,
  122.    but it is possible that a Cirrus board could be plugged into the ISA
  123.    slots. */
  124. /* The cs8900 has 4 IRQ pins, software selectable. cs8900_irq_map maps 
  125.    them to system IRQ numbers. This mapping is card specific and is set to
  126.    the configuration of the Cirrus Eval board for this chip. */
  127. #ifdef CONFIG_ARCH_CLPS7500
  128. static unsigned int netcard_portlist[] __initdata =
  129.    { 0x80090303, 0x300, 0x320, 0x340, 0x360, 0x200, 0x220, 0x240, 0x260, 0x280, 0x2a0, 0x2c0, 0x2e0, 0};
  130. static unsigned int cs8900_irq_map[] = {12,0,0,0};
  131. #else
  132. static unsigned int netcard_portlist[] __initdata =
  133.    { 0x300, 0x320, 0x340, 0x360, 0x200, 0x220, 0x240, 0x260, 0x280, 0x2a0, 0x2c0, 0x2e0, 0};
  134. static unsigned int cs8900_irq_map[] = {10,11,12,5};
  135. #endif
  136. #if DEBUGGING
  137. static unsigned int net_debug = DEBUGGING;
  138. #else
  139. #define net_debug 0 /* gcc will remove all the debug code for us */
  140. #endif
  141. /* The number of low I/O ports used by the ethercard. */
  142. #define NETCARD_IO_EXTENT 16
  143. /* we allow the user to override various values normally set in the EEPROM */
  144. #define FORCE_RJ45 0x0001    /* pick one of these three */
  145. #define FORCE_AUI 0x0002
  146. #define FORCE_BNC 0x0004
  147. #define FORCE_AUTO 0x0010    /* pick one of these three */
  148. #define FORCE_HALF 0x0020
  149. #define FORCE_FULL 0x0030
  150. /* Information that need to be kept for each board. */
  151. struct net_local {
  152. struct net_device_stats stats;
  153. int chip_type; /* one of: CS8900, CS8920, CS8920M */
  154. char chip_revision; /* revision letter of the chip ('A'...) */
  155. int send_cmd; /* the proper send command: TX_NOW, TX_AFTER_381, or TX_AFTER_ALL */
  156. int auto_neg_cnf; /* auto-negotiation word from EEPROM */
  157. int adapter_cnf; /* adapter configuration from EEPROM */
  158. int isa_config; /* ISA configuration from EEPROM */
  159. int irq_map; /* IRQ map from EEPROM */
  160. int rx_mode; /* what mode are we in? 0, RX_MULTCAST_ACCEPT, or RX_ALL_ACCEPT */
  161. int curr_rx_cfg; /* a copy of PP_RxCFG */
  162. int linectl; /* either 0 or LOW_RX_SQUELCH, depending on configuration. */
  163. int send_underrun; /* keep track of how many underruns in a row we get */
  164. int force; /* force various values; see FORCE* above. */
  165. spinlock_t lock;
  166. #if ALLOW_DMA
  167. int use_dma; /* Flag: we're using dma */
  168. int dma; /* DMA channel */
  169. int dmasize; /* 16 or 64 */
  170. unsigned char *dma_buff; /* points to the beginning of the buffer */
  171. unsigned char *end_dma_buff; /* points to the end of the buffer */
  172. unsigned char *rx_dma_ptr; /* points to the next packet  */
  173. #endif
  174. };
  175. /* Index to functions, as function prototypes. */
  176. extern int cs89x0_probe(struct net_device *dev);
  177. static int cs89x0_probe1(struct net_device *dev, int ioaddr);
  178. static int net_open(struct net_device *dev);
  179. static int net_send_packet(struct sk_buff *skb, struct net_device *dev);
  180. static void net_interrupt(int irq, void *dev_id, struct pt_regs *regs);
  181. static void set_multicast_list(struct net_device *dev);
  182. static void net_timeout(struct net_device *dev);
  183. static void net_rx(struct net_device *dev);
  184. static int net_close(struct net_device *dev);
  185. static struct net_device_stats *net_get_stats(struct net_device *dev);
  186. static void reset_chip(struct net_device *dev);
  187. static int get_eeprom_data(struct net_device *dev, int off, int len, int *buffer);
  188. static int get_eeprom_cksum(int off, int len, int *buffer);
  189. static int set_mac_address(struct net_device *dev, void *addr);
  190. static void count_rx_errors(int status, struct net_local *lp);
  191. #if ALLOW_DMA
  192. static void get_dma_channel(struct net_device *dev);
  193. static void release_dma_buff(struct net_local *lp);
  194. #endif
  195. /* Example routines you must write ;->. */
  196. #define tx_done(dev) 1
  197. /*
  198.  * Permit 'cs89x0_dma=N' in the kernel boot environment
  199.  */
  200. #if !defined(MODULE) && (ALLOW_DMA != 0)
  201. static int g_cs89x0_dma;
  202. static int __init dma_fn(char *str)
  203. {
  204. g_cs89x0_dma = simple_strtol(str,NULL,0);
  205. return 1;
  206. }
  207. __setup("cs89x0_dma=", dma_fn);
  208. #endif /* !defined(MODULE) && (ALLOW_DMA != 0) */
  209. /* Check for a network adaptor of this type, and return '0' iff one exists.
  210.    If dev->base_addr == 0, probe all likely locations.
  211.    If dev->base_addr == 1, always return failure.
  212.    If dev->base_addr == 2, allocate space for the device and return success
  213.    (detachable devices only).
  214.    Return 0 on success.
  215.    */
  216. int __init cs89x0_probe(struct net_device *dev)
  217. {
  218. int i;
  219. int base_addr = dev ? dev->base_addr : 0;
  220. SET_MODULE_OWNER(dev);
  221. if (net_debug)
  222. printk("cs89x0:cs89x0_probe(0x%x)n", base_addr);
  223. if (base_addr > 0x1ff) /* Check a single specified location. */
  224. return cs89x0_probe1(dev, base_addr);
  225. else if (base_addr != 0) /* Don't probe at all. */
  226. return -ENXIO;
  227. for (i = 0; netcard_portlist[i]; i++) {
  228. if (cs89x0_probe1(dev, netcard_portlist[i]) == 0)
  229. return 0;
  230. }
  231. printk(KERN_WARNING "cs89x0: no cs8900 or cs8920 detected.  Be sure to disable PnP with SETUPn");
  232. return -ENODEV;
  233. }
  234. static int
  235. readreg(struct net_device *dev, int portno)
  236. {
  237. outw(portno, dev->base_addr + ADD_PORT);
  238. return inw(dev->base_addr + DATA_PORT);
  239. }
  240. static void
  241. writereg(struct net_device *dev, int portno, int value)
  242. {
  243. outw(portno, dev->base_addr + ADD_PORT);
  244. outw(value, dev->base_addr + DATA_PORT);
  245. }
  246. static int
  247. readword(struct net_device *dev, int portno)
  248. {
  249. return inw(dev->base_addr + portno);
  250. }
  251. static void
  252. writeword(struct net_device *dev, int portno, int value)
  253. {
  254. outw(value, dev->base_addr + portno);
  255. }
  256. static int __init
  257. wait_eeprom_ready(struct net_device *dev)
  258. {
  259. int timeout = jiffies;
  260. /* check to see if the EEPROM is ready, a timeout is used -
  261.    just in case EEPROM is ready when SI_BUSY in the
  262.    PP_SelfST is clear */
  263. while(readreg(dev, PP_SelfST) & SI_BUSY)
  264. if (jiffies - timeout >= 40)
  265. return -1;
  266. return 0;
  267. }
  268. static int __init
  269. get_eeprom_data(struct net_device *dev, int off, int len, int *buffer)
  270. {
  271. int i;
  272. if (net_debug > 3) printk("EEPROM data from %x for %x:n",off,len);
  273. for (i = 0; i < len; i++) {
  274. if (wait_eeprom_ready(dev) < 0) return -1;
  275. /* Now send the EEPROM read command and EEPROM location to read */
  276. writereg(dev, PP_EECMD, (off + i) | EEPROM_READ_CMD);
  277. if (wait_eeprom_ready(dev) < 0) return -1;
  278. buffer[i] = readreg(dev, PP_EEData);
  279. if (net_debug > 3) printk("%04x ", buffer[i]);
  280. }
  281. if (net_debug > 3) printk("n");
  282.         return 0;
  283. }
  284. static int  __init
  285. get_eeprom_cksum(int off, int len, int *buffer)
  286. {
  287. int i, cksum;
  288. cksum = 0;
  289. for (i = 0; i < len; i++)
  290. cksum += buffer[i];
  291. cksum &= 0xffff;
  292. if (cksum == 0)
  293. return 0;
  294. return -1;
  295. }
  296. /* This is the real probe routine.  Linux has a history of friendly device
  297.    probes on the ISA bus.  A good device probes avoids doing writes, and
  298.    verifies that the correct device exists and functions.
  299.    Return 0 on success.
  300.  */
  301. static int __init
  302. cs89x0_probe1(struct net_device *dev, int ioaddr)
  303. {
  304. struct net_local *lp;
  305. static unsigned version_printed;
  306. int i;
  307. unsigned rev_type = 0;
  308. int eeprom_buff[CHKSUM_LEN];
  309. int retval;
  310. /* Initialize the device structure. */
  311. if (dev->priv == NULL) {
  312. dev->priv = kmalloc(sizeof(struct net_local), GFP_KERNEL);
  313. if (dev->priv == 0) {
  314. retval = -ENOMEM;
  315. goto out;
  316. }
  317. lp = (struct net_local *)dev->priv;
  318. memset(lp, 0, sizeof(*lp));
  319. spin_lock_init(&lp->lock);
  320. #if !defined(MODULE) && (ALLOW_DMA != 0)
  321. if (g_cs89x0_dma) {
  322. lp->use_dma = 1;
  323. lp->dma = g_cs89x0_dma;
  324. lp->dmasize = 16; /* Could make this an option... */
  325. }
  326. #endif
  327.         }
  328. lp = (struct net_local *)dev->priv;
  329. /* Grab the region so we can find another board if autoIRQ fails. */
  330. if (!request_region(ioaddr & ~3, NETCARD_IO_EXTENT, dev->name)) {
  331. printk(KERN_ERR "%s: request_region(0x%x, 0x%x) failedn",
  332. dev->name, ioaddr, NETCARD_IO_EXTENT);
  333. retval = -EBUSY;
  334. goto out1;
  335. }
  336. /* if they give us an odd I/O address, then do ONE write to
  337.            the address port, to get it back to address zero, where we
  338.            expect to find the EISA signature word. An IO with a base of 0x3
  339.      will skip the test for the ADD_PORT. */
  340. if (ioaddr & 1) {
  341. if (net_debug > 1)
  342. printk(KERN_INFO "%s: odd ioaddr 0x%xn", dev->name, ioaddr);
  343.           if ((ioaddr & 2) != 2)
  344.          if ((inw((ioaddr & ~3)+ ADD_PORT) & ADD_MASK) != ADD_SIG) {
  345. printk(KERN_ERR "%s: bad signature 0x%xn",
  346. dev->name, inw((ioaddr & ~3)+ ADD_PORT));
  347.          retval = -ENODEV;
  348. goto out2;
  349. }
  350.   ioaddr &= ~3;
  351. outw(PP_ChipID, ioaddr + ADD_PORT);
  352. }
  353. printk("PP_addr=0x%xn", inw(ioaddr + ADD_PORT));
  354.         if (inw(ioaddr + DATA_PORT) != CHIP_EISA_ID_SIG) {
  355. printk(KERN_ERR "%s: incorrect signature 0x%xn",
  356. dev->name, inw(ioaddr + DATA_PORT));
  357. retval = -ENODEV;
  358.    goto out2;
  359. }
  360. /* Fill in the 'dev' fields. */
  361. dev->base_addr = ioaddr;
  362. /* get the chip type */
  363. rev_type = readreg(dev, PRODUCT_ID_ADD);
  364. lp->chip_type = rev_type &~ REVISON_BITS;
  365. lp->chip_revision = ((rev_type & REVISON_BITS) >> 8) + 'A';
  366. /* Check the chip type and revision in order to set the correct send command
  367. CS8920 revision C and CS8900 revision F can use the faster send. */
  368. lp->send_cmd = TX_AFTER_381;
  369. if (lp->chip_type == CS8900 && lp->chip_revision >= 'F')
  370. lp->send_cmd = TX_NOW;
  371. if (lp->chip_type != CS8900 && lp->chip_revision >= 'C')
  372. lp->send_cmd = TX_NOW;
  373. if (net_debug  &&  version_printed++ == 0)
  374. printk(version);
  375. printk(KERN_INFO "%s: cs89%c0%s rev %c found at %#3lx ",
  376.        dev->name,
  377.        lp->chip_type==CS8900?'0':'2',
  378.        lp->chip_type==CS8920M?"M":"",
  379.        lp->chip_revision,
  380.        dev->base_addr);
  381. reset_chip(dev);
  382.         /* Here we read the current configuration of the chip. If there
  383.    is no Extended EEPROM then the idea is to not disturb the chip
  384.    configuration, it should have been correctly setup by automatic
  385.    EEPROM read on reset. So, if the chip says it read the EEPROM
  386.    the driver will always do *something* instead of complain that
  387.    adapter_cnf is 0. */
  388.         if ((readreg(dev, PP_SelfST) & (EEPROM_OK | EEPROM_PRESENT)) == 
  389.       (EEPROM_OK|EEPROM_PRESENT)) {
  390.         /* Load the MAC. */
  391. for (i=0; i < ETH_ALEN/2; i++) {
  392.                 unsigned int Addr;
  393. Addr = readreg(dev, PP_IA+i*2);
  394.         dev->dev_addr[i*2] = Addr & 0xFF;
  395.         dev->dev_addr[i*2+1] = Addr >> 8;
  396. }
  397.    
  398.     /* Load the Adapter Configuration. 
  399.    Note:  Barring any more specific information from some 
  400.    other source (ie EEPROM+Schematics), we would not know 
  401.    how to operate a 10Base2 interface on the AUI port. 
  402.    However, since we  do read the status of HCB1 and use 
  403.    settings that always result in calls to control_dc_dc(dev,0) 
  404.    a BNC interface should work if the enable pin 
  405.    (dc/dc converter) is on HCB1. It will be called AUI 
  406.    however. */
  407.    
  408. lp->adapter_cnf = 0;
  409. i = readreg(dev, PP_LineCTL);
  410. /* Preserve the setting of the HCB1 pin. */
  411. if ((i & (HCB1 | HCB1_ENBL)) ==  (HCB1 | HCB1_ENBL))
  412. lp->adapter_cnf |= A_CNF_DC_DC_POLARITY;
  413. /* Save the sqelch bit */
  414. if ((i & LOW_RX_SQUELCH) == LOW_RX_SQUELCH)
  415. lp->adapter_cnf |= A_CNF_EXTND_10B_2 | A_CNF_LOW_RX_SQUELCH;
  416. /* Check if the card is in 10Base-t only mode */
  417. if ((i & (AUI_ONLY | AUTO_AUI_10BASET)) == 0)
  418. lp->adapter_cnf |=  A_CNF_10B_T | A_CNF_MEDIA_10B_T;
  419. /* Check if the card is in AUI only mode */
  420. if ((i & (AUI_ONLY | AUTO_AUI_10BASET)) == AUI_ONLY)
  421. lp->adapter_cnf |=  A_CNF_AUI | A_CNF_MEDIA_AUI;
  422. /* Check if the card is in Auto mode. */
  423. if ((i & (AUI_ONLY | AUTO_AUI_10BASET)) == AUTO_AUI_10BASET)
  424. lp->adapter_cnf |=  A_CNF_AUI | A_CNF_10B_T | 
  425. A_CNF_MEDIA_AUI | A_CNF_MEDIA_10B_T | A_CNF_MEDIA_AUTO;
  426. if (net_debug > 1)
  427. printk(KERN_INFO "%s: PP_LineCTL=0x%x, adapter_cnf=0x%xn",
  428. dev->name, i, lp->adapter_cnf);
  429. /* IRQ. Other chips already probe, see below. */
  430. if (lp->chip_type == CS8900) 
  431. lp->isa_config = readreg(dev, PP_CS8900_ISAINT) & INT_NO_MASK;
  432.    
  433. printk( "[Cirrus EEPROM] ");
  434. }
  435.         printk("n");
  436.    
  437. /* First check to see if an EEPROM is attached. */
  438. if ((readreg(dev, PP_SelfST) & EEPROM_PRESENT) == 0)
  439. printk(KERN_WARNING "cs89x0: No EEPROM, relying on command line....n");
  440. else if (get_eeprom_data(dev, START_EEPROM_DATA,CHKSUM_LEN,eeprom_buff) < 0) {
  441. printk(KERN_WARNING "ncs89x0: EEPROM read failed, relying on command line.n");
  442.         } else if (get_eeprom_cksum(START_EEPROM_DATA,CHKSUM_LEN,eeprom_buff) < 0) {
  443. /* Check if the chip was able to read its own configuration starting
  444.    at 0 in the EEPROM*/
  445. if ((readreg(dev, PP_SelfST) & (EEPROM_OK | EEPROM_PRESENT)) !=
  446.     (EEPROM_OK|EEPROM_PRESENT)) 
  447.                  printk(KERN_WARNING "cs89x0: Extended EEPROM checksum bad and no Cirrus EEPROM, relying on command linen");
  448.    
  449.         } else {
  450. /* This reads an extended EEPROM that is not documented
  451.    in the CS8900 datasheet. */
  452.                 /* get transmission control word  but keep the autonegotiation bits */
  453.                 if (!lp->auto_neg_cnf) lp->auto_neg_cnf = eeprom_buff[AUTO_NEG_CNF_OFFSET/2];
  454.                 /* Store adapter configuration */
  455.                 if (!lp->adapter_cnf) lp->adapter_cnf = eeprom_buff[ADAPTER_CNF_OFFSET/2];
  456.                 /* Store ISA configuration */
  457.                 lp->isa_config = eeprom_buff[ISA_CNF_OFFSET/2];
  458.                 dev->mem_start = eeprom_buff[PACKET_PAGE_OFFSET/2] << 8;
  459.                 /* eeprom_buff has 32-bit ints, so we can't just memcpy it */
  460.                 /* store the initial memory base address */
  461.                 for (i = 0; i < ETH_ALEN/2; i++) {
  462.                         dev->dev_addr[i*2] = eeprom_buff[i];
  463.                         dev->dev_addr[i*2+1] = eeprom_buff[i] >> 8;
  464.                 }
  465. if (net_debug > 1)
  466. printk(KERN_DEBUG "%s: new adapter_cnf: 0x%xn",
  467. dev->name, lp->adapter_cnf);
  468.         }
  469.         /* allow them to force multiple transceivers.  If they force multiple, autosense */
  470.         {
  471. int count = 0;
  472. if (lp->force & FORCE_RJ45) {lp->adapter_cnf |= A_CNF_10B_T; count++; }
  473. if (lp->force & FORCE_AUI)  {lp->adapter_cnf |= A_CNF_AUI; count++; }
  474. if (lp->force & FORCE_BNC) {lp->adapter_cnf |= A_CNF_10B_2; count++; }
  475. if (count > 1) {lp->adapter_cnf |= A_CNF_MEDIA_AUTO; }
  476. else if (lp->force & FORCE_RJ45){lp->adapter_cnf |= A_CNF_MEDIA_10B_T; }
  477. else if (lp->force & FORCE_AUI) {lp->adapter_cnf |= A_CNF_MEDIA_AUI; }
  478. else if (lp->force & FORCE_BNC) {lp->adapter_cnf |= A_CNF_MEDIA_10B_2; }
  479.         }
  480. if (net_debug > 1)
  481. printk(KERN_DEBUG "%s: after force 0x%x, adapter_cnf=0x%xn",
  482. dev->name, lp->force, lp->adapter_cnf);
  483.         /* FIXME: We don't let you set dc-dc polarity or low RX squelch from the command line: add it here */
  484.         /* FIXME: We don't let you set the IMM bit from the command line: add it to lp->auto_neg_cnf here */
  485.         /* FIXME: we don't set the Ethernet address on the command line.  Use
  486.            ifconfig IFACE hw ether AABBCCDDEEFF */
  487. printk(KERN_INFO "cs89x0 media %s%s%s",
  488.        (lp->adapter_cnf & A_CNF_10B_T)?"RJ-45,":"",
  489.        (lp->adapter_cnf & A_CNF_AUI)?"AUI,":"",
  490.        (lp->adapter_cnf & A_CNF_10B_2)?"BNC,":"");
  491. lp->irq_map = 0xffff;
  492. /* If this is a CS8900 then no pnp soft */
  493. if (lp->chip_type != CS8900 &&
  494.     /* Check if the ISA IRQ has been set  */
  495. (i = readreg(dev, PP_CS8920_ISAINT) & 0xff,
  496.  (i != 0 && i < CS8920_NO_INTS))) {
  497. if (!dev->irq)
  498. dev->irq = i;
  499. } else {
  500. i = lp->isa_config & INT_NO_MASK;
  501. if (lp->chip_type == CS8900) {
  502. /* Translate the IRQ using the IRQ mapping table. */
  503. if (i >= sizeof(cs8900_irq_map)/sizeof(cs8900_irq_map[0]))
  504. printk("ncs89x0: invalid ISA interrupt number %dn", i);
  505. else
  506. i = cs8900_irq_map[i];
  507. lp->irq_map = CS8900_IRQ_MAP; /* fixed IRQ map for CS8900 */
  508. } else {
  509. int irq_map_buff[IRQ_MAP_LEN/2];
  510. if (get_eeprom_data(dev, IRQ_MAP_EEPROM_DATA,
  511.     IRQ_MAP_LEN/2,
  512.     irq_map_buff) >= 0) {
  513. if ((irq_map_buff[0] & 0xff) == PNP_IRQ_FRMT)
  514. lp->irq_map = (irq_map_buff[0]>>8) | (irq_map_buff[1] << 8);
  515. }
  516. }
  517. if (!dev->irq)
  518. dev->irq = i;
  519. }
  520. printk(" IRQ %d", dev->irq);
  521. #if ALLOW_DMA
  522. if (lp->use_dma) {
  523. get_dma_channel(dev);
  524. printk(", DMA %d", dev->dma);
  525. }
  526. else
  527. #endif
  528. {
  529. printk(", programmed I/O");
  530. }
  531. /* print the ethernet address. */
  532. printk(", MAC ");
  533. for (i = 0; i < ETH_ALEN; i++)
  534. {
  535. printk("%s%02x", i ? ":" : "", dev->dev_addr[i]);
  536. }
  537. dev->open = net_open;
  538. dev->stop = net_close;
  539. dev->tx_timeout = net_timeout;
  540. dev->watchdog_timeo = HZ;
  541. dev->hard_start_xmit  = net_send_packet;
  542. dev->get_stats = net_get_stats;
  543. dev->set_multicast_list = set_multicast_list;
  544. dev->set_mac_address  = set_mac_address;
  545. /* Fill in the fields of the device structure with ethernet values. */
  546. ether_setup(dev);
  547. printk("n");
  548. if (net_debug)
  549. printk("cs89x0_probe1() successfuln");
  550. return 0;
  551. out2:
  552. release_region(ioaddr & ~3, NETCARD_IO_EXTENT);
  553. out1:
  554. kfree(dev->priv);
  555. dev->priv = 0;
  556. out:
  557. return retval;
  558. }
  559. /*********************************
  560.  * This page contains DMA routines
  561. **********************************/
  562. #if ALLOW_DMA
  563. #define dma_page_eq(ptr1, ptr2) ((long)(ptr1)>>17 == (long)(ptr2)>>17)
  564. static void
  565. get_dma_channel(struct net_device *dev)
  566. {
  567. struct net_local *lp = (struct net_local *)dev->priv;
  568. if (lp->dma) {
  569. dev->dma = lp->dma;
  570. lp->isa_config |= ISA_RxDMA;
  571. } else {
  572. if ((lp->isa_config & ANY_ISA_DMA) == 0)
  573. return;
  574. dev->dma = lp->isa_config & DMA_NO_MASK;
  575. if (lp->chip_type == CS8900)
  576. dev->dma += 5;
  577. if (dev->dma < 5 || dev->dma > 7) {
  578. lp->isa_config &= ~ANY_ISA_DMA;
  579. return;
  580. }
  581. }
  582. return;
  583. }
  584. static void
  585. write_dma(struct net_device *dev, int chip_type, int dma)
  586. {
  587. struct net_local *lp = (struct net_local *)dev->priv;
  588. if ((lp->isa_config & ANY_ISA_DMA) == 0)
  589. return;
  590. if (chip_type == CS8900) {
  591. writereg(dev, PP_CS8900_ISADMA, dma-5);
  592. } else {
  593. writereg(dev, PP_CS8920_ISADMA, dma);
  594. }
  595. }
  596. static void
  597. set_dma_cfg(struct net_device *dev)
  598. {
  599. struct net_local *lp = (struct net_local *)dev->priv;
  600. if (lp->use_dma) {
  601. if ((lp->isa_config & ANY_ISA_DMA) == 0) {
  602. if (net_debug > 3)
  603. printk("set_dma_cfg(): no DMAn");
  604. return;
  605. }
  606. if (lp->isa_config & ISA_RxDMA) {
  607. lp->curr_rx_cfg |= RX_DMA_ONLY;
  608. if (net_debug > 3)
  609. printk("set_dma_cfg(): RX_DMA_ONLYn");
  610. } else {
  611. lp->curr_rx_cfg |= AUTO_RX_DMA; /* not that we support it... */
  612. if (net_debug > 3)
  613. printk("set_dma_cfg(): AUTO_RX_DMAn");
  614. }
  615. }
  616. }
  617. static int
  618. dma_bufcfg(struct net_device *dev)
  619. {
  620. struct net_local *lp = (struct net_local *)dev->priv;
  621. if (lp->use_dma)
  622. return (lp->isa_config & ANY_ISA_DMA)? RX_DMA_ENBL : 0;
  623. else
  624. return 0;
  625. }
  626. static int
  627. dma_busctl(struct net_device *dev)
  628. {
  629. int retval = 0;
  630. struct net_local *lp = (struct net_local *)dev->priv;
  631. if (lp->use_dma) {
  632. if (lp->isa_config & ANY_ISA_DMA)
  633. retval |= RESET_RX_DMA; /* Reset the DMA pointer */
  634. if (lp->isa_config & DMA_BURST)
  635. retval |= DMA_BURST_MODE; /* Does ISA config specify DMA burst ? */
  636. if (lp->dmasize == 64)
  637. retval |= RX_DMA_SIZE_64K; /* did they ask for 64K? */
  638. retval |= MEMORY_ON; /* we need memory enabled to use DMA. */
  639. }
  640. return retval;
  641. }
  642. static void
  643. dma_rx(struct net_device *dev)
  644. {
  645. struct net_local *lp = (struct net_local *)dev->priv;
  646. struct sk_buff *skb;
  647. int status, length;
  648. unsigned char *bp = lp->rx_dma_ptr;
  649. status = bp[0] + (bp[1]<<8);
  650. length = bp[2] + (bp[3]<<8);
  651. bp += 4;
  652. if (net_debug > 5) {
  653. printk( "%s: receiving DMA packet at %lx, status %x, length %xn",
  654. dev->name, (unsigned long)bp, status, length);
  655. }
  656. if ((status & RX_OK) == 0) {
  657. count_rx_errors(status, lp);
  658. goto skip_this_frame;
  659. }
  660. /* Malloc up new buffer. */
  661. skb = dev_alloc_skb(length + 2);
  662. if (skb == NULL) {
  663. if (net_debug) /* I don't think we want to do this to a stressed system */
  664. printk("%s: Memory squeeze, dropping packet.n", dev->name);
  665. lp->stats.rx_dropped++;
  666. /* AKPM: advance bp to the next frame */
  667. skip_this_frame:
  668. bp += (length + 3) & ~3;
  669. if (bp >= lp->end_dma_buff) bp -= lp->dmasize*1024;
  670. lp->rx_dma_ptr = bp;
  671. return;
  672. }
  673. skb_reserve(skb, 2); /* longword align L3 header */
  674. skb->dev = dev;
  675. if (bp + length > lp->end_dma_buff) {
  676. int semi_cnt = lp->end_dma_buff - bp;
  677. memcpy(skb_put(skb,semi_cnt), bp, semi_cnt);
  678. memcpy(skb_put(skb,length - semi_cnt), lp->dma_buff,
  679.        length - semi_cnt);
  680. } else {
  681. memcpy(skb_put(skb,length), bp, length);
  682. }
  683. bp += (length + 3) & ~3;
  684. if (bp >= lp->end_dma_buff) bp -= lp->dmasize*1024;
  685. lp->rx_dma_ptr = bp;
  686. if (net_debug > 3) {
  687. printk( "%s: received %d byte DMA packet of type %xn",
  688. dev->name, length,
  689. (skb->data[ETH_ALEN+ETH_ALEN] << 8) | skb->data[ETH_ALEN+ETH_ALEN+1]);
  690. }
  691.         skb->protocol=eth_type_trans(skb,dev);
  692. netif_rx(skb);
  693. dev->last_rx = jiffies;
  694. lp->stats.rx_packets++;
  695. lp->stats.rx_bytes += length;
  696. }
  697. #endif /* ALLOW_DMA */
  698. void  __init reset_chip(struct net_device *dev)
  699. {
  700. struct net_local *lp = (struct net_local *)dev->priv;
  701. int ioaddr = dev->base_addr;
  702. int reset_start_time;
  703. writereg(dev, PP_SelfCTL, readreg(dev, PP_SelfCTL) | POWER_ON_RESET);
  704. /* wait 30 ms */
  705. current->state = TASK_INTERRUPTIBLE;
  706. schedule_timeout(30*HZ/1000);
  707. if (lp->chip_type != CS8900) {
  708. /* Hardware problem requires PNP registers to be reconfigured after a reset */
  709. outw(PP_CS8920_ISAINT, ioaddr + ADD_PORT);
  710. outb(dev->irq, ioaddr + DATA_PORT);
  711. outb(0,      ioaddr + DATA_PORT + 1);
  712. outw(PP_CS8920_ISAMemB, ioaddr + ADD_PORT);
  713. outb((dev->mem_start >> 16) & 0xff, ioaddr + DATA_PORT);
  714. outb((dev->mem_start >> 8) & 0xff,   ioaddr + DATA_PORT + 1);
  715. }
  716. /* Wait until the chip is reset */
  717. reset_start_time = jiffies;
  718. while( (readreg(dev, PP_SelfST) & INIT_DONE) == 0 && jiffies - reset_start_time < 2)
  719. ;
  720. }
  721. static void
  722. control_dc_dc(struct net_device *dev, int on_not_off)
  723. {
  724. struct net_local *lp = (struct net_local *)dev->priv;
  725. unsigned int selfcontrol;
  726. int timenow = jiffies;
  727. /* control the DC to DC convertor in the SelfControl register.  
  728.    Note: This is hooked up to a general purpose pin, might not
  729.    always be a DC to DC convertor. */
  730. selfcontrol = HCB1_ENBL; /* Enable the HCB1 bit as an output */
  731. if (((lp->adapter_cnf & A_CNF_DC_DC_POLARITY) != 0) ^ on_not_off)
  732. selfcontrol |= HCB1;
  733. else
  734. selfcontrol &= ~HCB1;
  735. writereg(dev, PP_SelfCTL, selfcontrol);
  736. /* Wait for the DC/DC converter to power up - 500ms */
  737. while (jiffies - timenow < HZ)
  738. ;
  739. }
  740. #define DETECTED_NONE  0
  741. #define DETECTED_RJ45H 1
  742. #define DETECTED_RJ45F 2
  743. #define DETECTED_AUI   3
  744. #define DETECTED_BNC   4
  745. static int
  746. detect_tp(struct net_device *dev)
  747. {
  748. struct net_local *lp = (struct net_local *)dev->priv;
  749. int timenow = jiffies;
  750. int fdx;
  751. if (net_debug > 1) printk("%s: Attempting TPn", dev->name);
  752.         /* If connected to another full duplex capable 10-Base-T card the link pulses
  753.            seem to be lost when the auto detect bit in the LineCTL is set.
  754.            To overcome this the auto detect bit will be cleared whilst testing the
  755.            10-Base-T interface.  This would not be necessary for the sparrow chip but
  756.            is simpler to do it anyway. */
  757. writereg(dev, PP_LineCTL, lp->linectl &~ AUI_ONLY);
  758. control_dc_dc(dev, 0);
  759.         /* Delay for the hardware to work out if the TP cable is present - 150ms */
  760. for (timenow = jiffies; jiffies - timenow < 15; )
  761.                 ;
  762. if ((readreg(dev, PP_LineST) & LINK_OK) == 0)
  763. return DETECTED_NONE;
  764. if (lp->chip_type == CS8900) {
  765.                 switch (lp->force & 0xf0) {
  766. #if 0
  767.                 case FORCE_AUTO:
  768. printk("%s: cs8900 doesn't autonegotiaten",dev->name);
  769.                         return DETECTED_NONE;
  770. #endif
  771. /* CS8900 doesn't support AUTO, change to HALF*/
  772.                 case FORCE_AUTO:
  773. lp->force &= ~FORCE_AUTO;
  774.                         lp->force |= FORCE_HALF;
  775. break;
  776. case FORCE_HALF:
  777. break;
  778.                 case FORCE_FULL:
  779. writereg(dev, PP_TestCTL, readreg(dev, PP_TestCTL) | FDX_8900);
  780. break;
  781.                 }
  782. fdx = readreg(dev, PP_TestCTL) & FDX_8900;
  783. } else {
  784. switch (lp->force & 0xf0) {
  785. case FORCE_AUTO:
  786. lp->auto_neg_cnf = AUTO_NEG_ENABLE;
  787. break;
  788. case FORCE_HALF:
  789. lp->auto_neg_cnf = 0;
  790. break;
  791. case FORCE_FULL:
  792. lp->auto_neg_cnf = RE_NEG_NOW | ALLOW_FDX;
  793. break;
  794.                 }
  795. writereg(dev, PP_AutoNegCTL, lp->auto_neg_cnf & AUTO_NEG_MASK);
  796. if ((lp->auto_neg_cnf & AUTO_NEG_BITS) == AUTO_NEG_ENABLE) {
  797. printk(KERN_INFO "%s: negotiating duplex...n",dev->name);
  798. while (readreg(dev, PP_AutoNegST) & AUTO_NEG_BUSY) {
  799. if (jiffies - timenow > 4000) {
  800. printk(KERN_ERR "**** Full / half duplex auto-negotiation timed out ****n");
  801. break;
  802. }
  803. }
  804. }
  805. fdx = readreg(dev, PP_AutoNegST) & FDX_ACTIVE;
  806. }
  807. if (fdx)
  808. return DETECTED_RJ45F;
  809. else
  810. return DETECTED_RJ45H;
  811. }
  812. /* send a test packet - return true if carrier bits are ok */
  813. static int
  814. send_test_pkt(struct net_device *dev)
  815. {
  816. char test_packet[] = { 0,0,0,0,0,0, 0,0,0,0,0,0,
  817.  0, 46, /* A 46 in network order */
  818.  0, 0, /* DSAP=0 & SSAP=0 fields */
  819.  0xf3, 0 /* Control (Test Req + P bit set) */ };
  820. long timenow = jiffies;
  821. writereg(dev, PP_LineCTL, readreg(dev, PP_LineCTL) | SERIAL_TX_ON);
  822. memcpy(test_packet,          dev->dev_addr, ETH_ALEN);
  823. memcpy(test_packet+ETH_ALEN, dev->dev_addr, ETH_ALEN);
  824.         writeword(dev, TX_CMD_PORT, TX_AFTER_ALL);
  825.         writeword(dev, TX_LEN_PORT, ETH_ZLEN);
  826. /* Test to see if the chip has allocated memory for the packet */
  827. while (jiffies - timenow < 5)
  828. if (readreg(dev, PP_BusST) & READY_FOR_TX_NOW)
  829. break;
  830. if (jiffies - timenow >= 5)
  831. return 0; /* this shouldn't happen */
  832. /* Write the contents of the packet */
  833. outsw(dev->base_addr + TX_FRAME_PORT,test_packet,(ETH_ZLEN+1) >>1);
  834. if (net_debug > 1) printk("Sending test packet ");
  835. /* wait a couple of jiffies for packet to be received */
  836. for (timenow = jiffies; jiffies - timenow < 3; )
  837.                 ;
  838.         if ((readreg(dev, PP_TxEvent) & TX_SEND_OK_BITS) == TX_OK) {
  839.                 if (net_debug > 1) printk("succeededn");
  840.                 return 1;
  841.         }
  842. if (net_debug > 1) printk("failedn");
  843. return 0;
  844. }
  845. static int
  846. detect_aui(struct net_device *dev)
  847. {
  848. struct net_local *lp = (struct net_local *)dev->priv;
  849. if (net_debug > 1) printk("%s: Attempting AUIn", dev->name);
  850. control_dc_dc(dev, 0);
  851. writereg(dev, PP_LineCTL, (lp->linectl &~ AUTO_AUI_10BASET) | AUI_ONLY);
  852. if (send_test_pkt(dev))
  853. return DETECTED_AUI;
  854. else
  855. return DETECTED_NONE;
  856. }
  857. static int
  858. detect_bnc(struct net_device *dev)
  859. {
  860. struct net_local *lp = (struct net_local *)dev->priv;
  861. if (net_debug > 1) printk("%s: Attempting BNCn", dev->name);
  862. control_dc_dc(dev, 1);
  863. writereg(dev, PP_LineCTL, (lp->linectl &~ AUTO_AUI_10BASET) | AUI_ONLY);
  864. if (send_test_pkt(dev))
  865. return DETECTED_BNC;
  866. else
  867. return DETECTED_NONE;
  868. }
  869. static void
  870. write_irq(struct net_device *dev, int chip_type, int irq)
  871. {
  872. int i;
  873. if (chip_type == CS8900) {
  874. /* Search the mapping table for the corresponding IRQ pin. */
  875. for (i = 0; i != sizeof(cs8900_irq_map)/sizeof(cs8900_irq_map[0]); i++)
  876. if (cs8900_irq_map[i] == irq)
  877. break;
  878. /* Not found */
  879. if (i == sizeof(cs8900_irq_map)/sizeof(cs8900_irq_map[0]))
  880. i = 3;
  881. writereg(dev, PP_CS8900_ISAINT, i);
  882. } else {
  883. writereg(dev, PP_CS8920_ISAINT, irq);
  884. }
  885. }
  886. /* Open/initialize the board.  This is called (in the current kernel)
  887.    sometime after booting when the 'ifconfig' program is run.
  888.    This routine should set everything up anew at each open, even
  889.    registers that "should" only need to be set once at boot, so that
  890.    there is non-reboot way to recover if something goes wrong.
  891.    */
  892. /* AKPM: do we need to do any locking here? */
  893. static int
  894. net_open(struct net_device *dev)
  895. {
  896. struct net_local *lp = (struct net_local *)dev->priv;
  897. int result = 0;
  898. int i;
  899. int ret;
  900. if (dev->irq < 2) {
  901. /* Allow interrupts to be generated by the chip */
  902. /* Cirrus' release had this: */
  903. #if 0
  904. writereg(dev, PP_BusCTL, readreg(dev, PP_BusCTL)|ENABLE_IRQ );
  905. #endif
  906. /* And 2.3.47 had this: */
  907. writereg(dev, PP_BusCTL, ENABLE_IRQ | MEMORY_ON);
  908. for (i = 2; i < CS8920_NO_INTS; i++) {
  909. if ((1 << dev->irq) & lp->irq_map) {
  910. if (request_irq(i, net_interrupt, 0, dev->name, dev) == 0) {
  911. dev->irq = i;
  912. write_irq(dev, lp->chip_type, i);
  913. /* writereg(dev, PP_BufCFG, GENERATE_SW_INTERRUPT); */
  914. break;
  915. }
  916. }
  917. }
  918. if (i >= CS8920_NO_INTS) {
  919. writereg(dev, PP_BusCTL, 0); /* disable interrupts. */
  920. printk(KERN_ERR "cs89x0: can't get an interruptn");
  921. ret = -EAGAIN;
  922. goto bad_out;
  923. }
  924. } else {
  925. if (((1 << dev->irq) & lp->irq_map) == 0) {
  926. printk(KERN_ERR "%s: IRQ %d is not in our map of allowable IRQs, which is %xn",
  927.                                dev->name, dev->irq, lp->irq_map);
  928. ret = -EAGAIN;
  929. goto bad_out;
  930. }
  931. /* FIXME: Cirrus' release had this: */
  932. writereg(dev, PP_BusCTL, readreg(dev, PP_BusCTL)|ENABLE_IRQ );
  933. /* And 2.3.47 had this: */
  934. #if 0
  935. writereg(dev, PP_BusCTL, ENABLE_IRQ | MEMORY_ON);
  936. #endif
  937. write_irq(dev, lp->chip_type, dev->irq);
  938. ret = request_irq(dev->irq, &net_interrupt, 0, dev->name, dev);
  939. if (ret) {
  940. if (net_debug)
  941. printk(KERN_DEBUG "cs89x0: request_irq(%d) failedn", dev->irq);
  942. goto bad_out;
  943. }
  944. }
  945. #if ALLOW_DMA
  946. if (lp->use_dma) {
  947. if (lp->isa_config & ANY_ISA_DMA) {
  948. unsigned long flags;
  949. lp->dma_buff = (unsigned char *)__get_dma_pages(GFP_KERNEL,
  950. get_order(lp->dmasize * 1024));
  951. if (!lp->dma_buff) {
  952. printk(KERN_ERR "%s: cannot get %dK memory for DMAn", dev->name, lp->dmasize);
  953. goto release_irq;
  954. }
  955. if (net_debug > 1) {
  956. printk( "%s: dma %lx %lxn",
  957. dev->name,
  958. (unsigned long)lp->dma_buff,
  959. (unsigned long)virt_to_bus(lp->dma_buff));
  960. }
  961. if ((unsigned long) lp->dma_buff >= MAX_DMA_ADDRESS ||
  962.     !dma_page_eq(lp->dma_buff, lp->dma_buff+lp->dmasize*1024-1)) {
  963. printk(KERN_ERR "%s: not usable as DMA buffern", dev->name);
  964. goto release_irq;
  965. }
  966. memset(lp->dma_buff, 0, lp->dmasize * 1024); /* Why? */
  967. if (request_dma(dev->dma, dev->name)) {
  968. printk(KERN_ERR "%s: cannot get dma channel %dn", dev->name, dev->dma);
  969. goto release_irq;
  970. }
  971. write_dma(dev, lp->chip_type, dev->dma);
  972. lp->rx_dma_ptr = lp->dma_buff;
  973. lp->end_dma_buff = lp->dma_buff + lp->dmasize*1024;
  974. spin_lock_irqsave(&lp->lock, flags);
  975. disable_dma(dev->dma);
  976. clear_dma_ff(dev->dma);
  977. set_dma_mode(dev->dma, 0x14); /* auto_init as well */
  978. set_dma_addr(dev->dma, virt_to_bus(lp->dma_buff));
  979. set_dma_count(dev->dma, lp->dmasize*1024);
  980. enable_dma(dev->dma);
  981. spin_unlock_irqrestore(&lp->lock, flags);
  982. }
  983. }
  984. #endif /* ALLOW_DMA */
  985. /* set the Ethernet address */
  986. for (i=0; i < ETH_ALEN/2; i++)
  987. writereg(dev, PP_IA+i*2, dev->dev_addr[i*2] | (dev->dev_addr[i*2+1] << 8));
  988. /* while we're testing the interface, leave interrupts disabled */
  989. writereg(dev, PP_BusCTL, MEMORY_ON);
  990. /* Set the LineCTL quintuplet based on adapter configuration read from EEPROM */
  991. if ((lp->adapter_cnf & A_CNF_EXTND_10B_2) && (lp->adapter_cnf & A_CNF_LOW_RX_SQUELCH))
  992.                 lp->linectl = LOW_RX_SQUELCH;
  993. else
  994.                 lp->linectl = 0;
  995.         /* check to make sure that they have the "right" hardware available */
  996. switch(lp->adapter_cnf & A_CNF_MEDIA_TYPE) {
  997. case A_CNF_MEDIA_10B_T: result = lp->adapter_cnf & A_CNF_10B_T; break;
  998. case A_CNF_MEDIA_AUI:   result = lp->adapter_cnf & A_CNF_AUI; break;
  999. case A_CNF_MEDIA_10B_2: result = lp->adapter_cnf & A_CNF_10B_2; break;
  1000.         default: result = lp->adapter_cnf & (A_CNF_10B_T | A_CNF_AUI | A_CNF_10B_2);
  1001.         }
  1002.         if (!result) {
  1003.                 printk(KERN_ERR "%s: EEPROM is configured for unavailable median", dev->name);
  1004.         release_irq:
  1005. #if ALLOW_DMA
  1006. release_dma_buff(lp);
  1007. #endif
  1008.                 writereg(dev, PP_LineCTL, readreg(dev, PP_LineCTL) & ~(SERIAL_TX_ON | SERIAL_RX_ON));
  1009.                 free_irq(dev->irq, dev);
  1010. ret = -EAGAIN;
  1011. goto bad_out;
  1012. }
  1013.         /* set the hardware to the configured choice */
  1014. switch(lp->adapter_cnf & A_CNF_MEDIA_TYPE) {
  1015. case A_CNF_MEDIA_10B_T:
  1016.                 result = detect_tp(dev);
  1017.                 if (result==DETECTED_NONE) {
  1018.                         printk(KERN_WARNING "%s: 10Base-T (RJ-45) has no cablen", dev->name);
  1019.                         if (lp->auto_neg_cnf & IMM_BIT) /* check "ignore missing media" bit */
  1020.                                 result = DETECTED_RJ45H; /* Yes! I don't care if I see a link pulse */
  1021.                 }
  1022. break;
  1023. case A_CNF_MEDIA_AUI:
  1024.                 result = detect_aui(dev);
  1025.                 if (result==DETECTED_NONE) {
  1026.                         printk(KERN_WARNING "%s: 10Base-5 (AUI) has no cablen", dev->name);
  1027.                         if (lp->auto_neg_cnf & IMM_BIT) /* check "ignore missing media" bit */
  1028.                                 result = DETECTED_AUI; /* Yes! I don't care if I see a carrrier */
  1029.                 }
  1030. break;
  1031. case A_CNF_MEDIA_10B_2:
  1032.                 result = detect_bnc(dev);
  1033.                 if (result==DETECTED_NONE) {
  1034.                         printk(KERN_WARNING "%s: 10Base-2 (BNC) has no cablen", dev->name);
  1035.                         if (lp->auto_neg_cnf & IMM_BIT) /* check "ignore missing media" bit */
  1036.                                 result = DETECTED_BNC; /* Yes! I don't care if I can xmit a packet */
  1037.                 }
  1038. break;
  1039. case A_CNF_MEDIA_AUTO:
  1040. writereg(dev, PP_LineCTL, lp->linectl | AUTO_AUI_10BASET);
  1041. if (lp->adapter_cnf & A_CNF_10B_T)
  1042. if ((result = detect_tp(dev)) != DETECTED_NONE)
  1043. break;
  1044. if (lp->adapter_cnf & A_CNF_AUI)
  1045. if ((result = detect_aui(dev)) != DETECTED_NONE)
  1046. break;
  1047. if (lp->adapter_cnf & A_CNF_10B_2)
  1048. if ((result = detect_bnc(dev)) != DETECTED_NONE)
  1049. break;
  1050. printk(KERN_ERR "%s: no media detectedn", dev->name);
  1051.                 goto release_irq;
  1052. }
  1053. switch(result) {
  1054. case DETECTED_NONE:
  1055. printk(KERN_ERR "%s: no network cable attached to configured median", dev->name);
  1056.                 goto release_irq;
  1057. case DETECTED_RJ45H:
  1058. printk(KERN_INFO "%s: using half-duplex 10Base-T (RJ-45)n", dev->name);
  1059. break;
  1060. case DETECTED_RJ45F:
  1061. printk(KERN_INFO "%s: using full-duplex 10Base-T (RJ-45)n", dev->name);
  1062. break;
  1063. case DETECTED_AUI:
  1064. printk(KERN_INFO "%s: using 10Base-5 (AUI)n", dev->name);
  1065. break;
  1066. case DETECTED_BNC:
  1067. printk(KERN_INFO "%s: using 10Base-2 (BNC)n", dev->name);
  1068. break;
  1069. }
  1070. /* Turn on both receive and transmit operations */
  1071. writereg(dev, PP_LineCTL, readreg(dev, PP_LineCTL) | SERIAL_RX_ON | SERIAL_TX_ON);
  1072. /* Receive only error free packets addressed to this card */
  1073. lp->rx_mode = 0;
  1074. writereg(dev, PP_RxCTL, DEF_RX_ACCEPT);
  1075. lp->curr_rx_cfg = RX_OK_ENBL | RX_CRC_ERROR_ENBL;
  1076. if (lp->isa_config & STREAM_TRANSFER)
  1077. lp->curr_rx_cfg |= RX_STREAM_ENBL;
  1078. #if ALLOW_DMA
  1079. set_dma_cfg(dev);
  1080. #endif
  1081. writereg(dev, PP_RxCFG, lp->curr_rx_cfg);
  1082. writereg(dev, PP_TxCFG, TX_LOST_CRS_ENBL | TX_SQE_ERROR_ENBL | TX_OK_ENBL |
  1083. TX_LATE_COL_ENBL | TX_JBR_ENBL | TX_ANY_COL_ENBL | TX_16_COL_ENBL);
  1084. writereg(dev, PP_BufCFG, READY_FOR_TX_ENBL | RX_MISS_COUNT_OVRFLOW_ENBL |
  1085. #if ALLOW_DMA
  1086. dma_bufcfg(dev) |
  1087. #endif
  1088. TX_COL_COUNT_OVRFLOW_ENBL | TX_UNDERRUN_ENBL);
  1089. /* now that we've got our act together, enable everything */
  1090. writereg(dev, PP_BusCTL, ENABLE_IRQ
  1091.  | (dev->mem_start?MEMORY_ON : 0) /* turn memory on */
  1092. #if ALLOW_DMA
  1093.  | dma_busctl(dev)
  1094. #endif
  1095.                  );
  1096.         netif_start_queue(dev);
  1097. if (net_debug > 1)
  1098. printk("cs89x0: net_open() succeededn");
  1099. return 0;
  1100. bad_out:
  1101. return ret;
  1102. }
  1103. static void net_timeout(struct net_device *dev)
  1104. {
  1105. /* If we get here, some higher level has decided we are broken.
  1106.    There should really be a "kick me" function call instead. */
  1107. if (net_debug > 0) printk("%s: transmit timed out, %s?n", dev->name,
  1108.    tx_done(dev) ? "IRQ conflict ?" : "network cable problem");
  1109. /* Try to restart the adaptor. */
  1110. netif_wake_queue(dev);
  1111. }
  1112. static int net_send_packet(struct sk_buff *skb, struct net_device *dev)
  1113. {
  1114. struct net_local *lp = (struct net_local *)dev->priv;
  1115. if (net_debug > 3) {
  1116. printk("%s: sent %d byte packet of type %xn",
  1117. dev->name, skb->len,
  1118. (skb->data[ETH_ALEN+ETH_ALEN] << 8) | skb->data[ETH_ALEN+ETH_ALEN+1]);
  1119. }
  1120. /* keep the upload from being interrupted, since we
  1121.                   ask the chip to start transmitting before the
  1122.                   whole packet has been completely uploaded. */
  1123. spin_lock_irq(&lp->lock);
  1124. netif_stop_queue(dev);
  1125. /* initiate a transmit sequence */
  1126. writeword(dev, TX_CMD_PORT, lp->send_cmd);
  1127. writeword(dev, TX_LEN_PORT, skb->len);
  1128. /* Test to see if the chip has allocated memory for the packet */
  1129. if ((readreg(dev, PP_BusST) & READY_FOR_TX_NOW) == 0) {
  1130. /*
  1131.  * Gasp!  It hasn't.  But that shouldn't happen since
  1132.  * we're waiting for TxOk, so return 1 and requeue this packet.
  1133.  */
  1134. spin_unlock_irq(&lp->lock);
  1135. if (net_debug) printk("cs89x0: Tx buffer not free!n");
  1136. return 1;
  1137. }
  1138. /* Write the contents of the packet */
  1139. outsw(dev->base_addr + TX_FRAME_PORT,skb->data,(skb->len+1) >>1);
  1140. spin_unlock_irq(&lp->lock);
  1141. dev->trans_start = jiffies;
  1142. dev_kfree_skb (skb);
  1143. /*
  1144.  * We DO NOT call netif_wake_queue() here.
  1145.  * We also DO NOT call netif_start_queue().
  1146.  *
  1147.  * Either of these would cause another bottom half run through
  1148.  * net_send_packet() before this packet has fully gone out.  That causes
  1149.  * us to hit the "Gasp!" above and the send is rescheduled.  it runs like
  1150.  * a dog.  We just return and wait for the Tx completion interrupt handler
  1151.  * to restart the netdevice layer
  1152.  */
  1153. return 0;
  1154. }
  1155. /* The typical workload of the driver:
  1156.    Handle the network interface interrupts. */
  1157.    
  1158. static void net_interrupt(int irq, void *dev_id, struct pt_regs * regs)
  1159. {
  1160. struct net_device *dev = dev_id;
  1161. struct net_local *lp;
  1162. int ioaddr, status;
  1163.  
  1164. ioaddr = dev->base_addr;
  1165. lp = (struct net_local *)dev->priv;
  1166. /* we MUST read all the events out of the ISQ, otherwise we'll never
  1167.            get interrupted again.  As a consequence, we can't have any limit
  1168.            on the number of times we loop in the interrupt handler.  The
  1169.            hardware guarantees that eventually we'll run out of events.  Of
  1170.            course, if you're on a slow machine, and packets are arriving
  1171.            faster than you can read them off, you're screwed.  Hasta la
  1172.            vista, baby!  */
  1173. while ((status = readword(dev, ISQ_PORT))) {
  1174. if (net_debug > 4)printk("%s: event=%04xn", dev->name, status);
  1175. switch(status & ISQ_EVENT_MASK) {
  1176. case ISQ_RECEIVER_EVENT:
  1177. /* Got a packet(s). */
  1178. net_rx(dev);
  1179. break;
  1180. case ISQ_TRANSMITTER_EVENT:
  1181. lp->stats.tx_packets++;
  1182. netif_wake_queue(dev); /* Inform upper layers. */
  1183. if ((status & ( TX_OK |
  1184. TX_LOST_CRS |
  1185. TX_SQE_ERROR |
  1186. TX_LATE_COL |
  1187. TX_16_COL)) != TX_OK) {
  1188. if ((status & TX_OK) == 0) lp->stats.tx_errors++;
  1189. if (status & TX_LOST_CRS) lp->stats.tx_carrier_errors++;
  1190. if (status & TX_SQE_ERROR) lp->stats.tx_heartbeat_errors++;
  1191. if (status & TX_LATE_COL) lp->stats.tx_window_errors++;
  1192. if (status & TX_16_COL) lp->stats.tx_aborted_errors++;
  1193. }
  1194. break;
  1195. case ISQ_BUFFER_EVENT:
  1196. if (status & READY_FOR_TX) {
  1197. /* we tried to transmit a packet earlier,
  1198.                                    but inexplicably ran out of buffers.
  1199.                                    That shouldn't happen since we only ever
  1200.                                    load one packet.  Shrug.  Do the right
  1201.                                    thing anyway. */
  1202. netif_wake_queue(dev); /* Inform upper layers. */
  1203. }
  1204. if (status & TX_UNDERRUN) {
  1205. if (net_debug > 0) printk("%s: transmit underrunn", dev->name);
  1206.                                 lp->send_underrun++;
  1207.                                 if (lp->send_underrun == 3) lp->send_cmd = TX_AFTER_381;
  1208.                                 else if (lp->send_underrun == 6) lp->send_cmd = TX_AFTER_ALL;
  1209. /* transmit cycle is done, although
  1210.    frame wasn't transmitted - this
  1211.    avoids having to wait for the upper
  1212.    layers to timeout on us, in the
  1213.    event of a tx underrun */
  1214. netif_wake_queue(dev); /* Inform upper layers. */
  1215.                         }
  1216. #if ALLOW_DMA
  1217. if (lp->use_dma && (status & RX_DMA)) {
  1218. int count = readreg(dev, PP_DmaFrameCnt);
  1219. while(count) {
  1220. if (net_debug > 5)
  1221. printk("%s: receiving %d DMA framesn", dev->name, count);
  1222. if (net_debug > 2 && count >1)
  1223. printk("%s: receiving %d DMA framesn", dev->name, count);
  1224. dma_rx(dev);
  1225. if (--count == 0)
  1226. count = readreg(dev, PP_DmaFrameCnt);
  1227. if (net_debug > 2 && count > 0)
  1228. printk("%s: continuing with %d DMA framesn", dev->name, count);
  1229. }
  1230. }
  1231. #endif
  1232. break;
  1233. case ISQ_RX_MISS_EVENT:
  1234. lp->stats.rx_missed_errors += (status >>6);
  1235. break;
  1236. case ISQ_TX_COL_EVENT:
  1237. lp->stats.collisions += (status >>6);
  1238. break;
  1239. }
  1240. }
  1241. }
  1242. static void
  1243. count_rx_errors(int status, struct net_local *lp)
  1244. {
  1245. lp->stats.rx_errors++;
  1246. if (status & RX_RUNT) lp->stats.rx_length_errors++;
  1247. if (status & RX_EXTRA_DATA) lp->stats.rx_length_errors++;
  1248. if (status & RX_CRC_ERROR) if (!(status & (RX_EXTRA_DATA|RX_RUNT)))
  1249. /* per str 172 */
  1250. lp->stats.rx_crc_errors++;
  1251. if (status & RX_DRIBBLE) lp->stats.rx_frame_errors++;
  1252. return;
  1253. }
  1254. /* We have a good packet(s), get it/them out of the buffers. */
  1255. static void
  1256. net_rx(struct net_device *dev)
  1257. {
  1258. struct net_local *lp = (struct net_local *)dev->priv;
  1259. struct sk_buff *skb;
  1260. int status, length;
  1261. int ioaddr = dev->base_addr;
  1262. status = inw(ioaddr + RX_FRAME_PORT);
  1263. length = inw(ioaddr + RX_FRAME_PORT);
  1264. if ((status & RX_OK) == 0) {
  1265. count_rx_errors(status, lp);
  1266. return;
  1267. }
  1268. /* Malloc up new buffer. */
  1269. skb = dev_alloc_skb(length + 2);
  1270. if (skb == NULL) {
  1271. #if 0 /* Again, this seems a cruel thing to do */
  1272. printk(KERN_WARNING "%s: Memory squeeze, dropping packet.n", dev->name);
  1273. #endif
  1274. lp->stats.rx_dropped++;
  1275. return;
  1276. }
  1277. skb_reserve(skb, 2); /* longword align L3 header */
  1278. skb->dev = dev;
  1279. insw(ioaddr + RX_FRAME_PORT, skb_put(skb, length), length >> 1);
  1280. if (length & 1)
  1281. skb->data[length-1] = inw(ioaddr + RX_FRAME_PORT);
  1282. if (net_debug > 3) {
  1283. printk( "%s: received %d byte packet of type %xn",
  1284. dev->name, length,
  1285. (skb->data[ETH_ALEN+ETH_ALEN] << 8) | skb->data[ETH_ALEN+ETH_ALEN+1]);
  1286. }
  1287.         skb->protocol=eth_type_trans(skb,dev);
  1288. netif_rx(skb);
  1289. dev->last_rx = jiffies;
  1290. lp->stats.rx_packets++;
  1291. lp->stats.rx_bytes += length;
  1292. }
  1293. #if ALLOW_DMA
  1294. static void release_dma_buff(struct net_local *lp)
  1295. {
  1296. if (lp->dma_buff) {
  1297. free_pages((unsigned long)(lp->dma_buff), get_order(lp->dmasize * 1024));
  1298. lp->dma_buff = 0;
  1299. }
  1300. }
  1301. #endif
  1302. /* The inverse routine to net_open(). */
  1303. static int
  1304. net_close(struct net_device *dev)
  1305. {
  1306. struct net_local *lp = (struct net_local *)dev->priv;
  1307. netif_stop_queue(dev);
  1308. writereg(dev, PP_RxCFG, 0);
  1309. writereg(dev, PP_TxCFG, 0);
  1310. writereg(dev, PP_BufCFG, 0);
  1311. writereg(dev, PP_BusCTL, 0);
  1312. free_irq(dev->irq, dev);
  1313. #if ALLOW_DMA
  1314. if (lp->use_dma && lp->dma) {
  1315. free_dma(dev->dma);
  1316. release_dma_buff(lp);
  1317. }
  1318. #endif
  1319. /* Update the statistics here. */
  1320. return 0;
  1321. }
  1322. /* Get the current statistics. This may be called with the card open or
  1323.    closed. */
  1324. static struct net_device_stats *
  1325. net_get_stats(struct net_device *dev)
  1326. {
  1327. struct net_local *lp = (struct net_local *)dev->priv;
  1328. unsigned long flags;
  1329. spin_lock_irqsave(&lp->lock, flags);
  1330. /* Update the statistics from the device registers. */
  1331. lp->stats.rx_missed_errors += (readreg(dev, PP_RxMiss) >> 6);
  1332. lp->stats.collisions += (readreg(dev, PP_TxCol) >> 6);
  1333. spin_unlock_irqrestore(&lp->lock, flags);
  1334. return &lp->stats;
  1335. }
  1336. static void set_multicast_list(struct net_device *dev)
  1337. {
  1338. struct net_local *lp = (struct net_local *)dev->priv;
  1339. unsigned long flags;
  1340. spin_lock_irqsave(&lp->lock, flags);
  1341. if(dev->flags&IFF_PROMISC)
  1342. {
  1343. lp->rx_mode = RX_ALL_ACCEPT;
  1344. }
  1345. else if((dev->flags&IFF_ALLMULTI)||dev->mc_list)
  1346. {
  1347. /* The multicast-accept list is initialized to accept-all, and we
  1348.    rely on higher-level filtering for now. */
  1349. lp->rx_mode = RX_MULTCAST_ACCEPT;
  1350. else
  1351. lp->rx_mode = 0;
  1352. writereg(dev, PP_RxCTL, DEF_RX_ACCEPT | lp->rx_mode);
  1353. /* in promiscuous mode, we accept errored packets, so we have to enable interrupts on them also */
  1354. writereg(dev, PP_RxCFG, lp->curr_rx_cfg |
  1355.      (lp->rx_mode == RX_ALL_ACCEPT? (RX_CRC_ERROR_ENBL|RX_RUNT_ENBL|RX_EXTRA_DATA_ENBL) : 0));
  1356. spin_unlock_irqrestore(&lp->lock, flags);
  1357. }
  1358. static int set_mac_address(struct net_device *dev, void *addr)
  1359. {
  1360. int i;
  1361. if (netif_running(dev))
  1362. return -EBUSY;
  1363. if (net_debug) {
  1364. printk("%s: Setting MAC address to ", dev->name);
  1365. for (i = 0; i < 6; i++)
  1366. printk(" %2.2x", dev->dev_addr[i] = ((unsigned char *)addr)[i]);
  1367. printk(".n");
  1368. }
  1369. /* set the Ethernet address */
  1370. for (i=0; i < ETH_ALEN/2; i++)
  1371. writereg(dev, PP_IA+i*2, dev->dev_addr[i*2] | (dev->dev_addr[i*2+1] << 8));
  1372. return 0;
  1373. }
  1374. #ifdef MODULE
  1375. static struct net_device dev_cs89x0 = {
  1376.         "",
  1377.         0, 0, 0, 0,
  1378.         0, 0,
  1379.         0, 0, 0, NULL, NULL };
  1380. /*
  1381.  * Support the 'debug' module parm even if we're compiled for non-debug to 
  1382.  * avoid breaking someone's startup scripts 
  1383.  */
  1384. static int io;
  1385. static int irq;
  1386. static int debug;
  1387. static char media[8];
  1388. static int duplex=-1;
  1389. static int use_dma; /* These generate unused var warnings if ALLOW_DMA = 0 */
  1390. static int dma;
  1391. static int dmasize=16; /* or 64 */
  1392. MODULE_PARM(io, "i");
  1393. MODULE_PARM(irq, "i");
  1394. MODULE_PARM(debug, "i");
  1395. MODULE_PARM(media, "c8");
  1396. MODULE_PARM(duplex, "i");
  1397. MODULE_PARM(dma , "i");
  1398. MODULE_PARM(dmasize , "i");
  1399. MODULE_PARM(use_dma , "i");
  1400. MODULE_PARM_DESC(io, "cs89x0 I/O base address");
  1401. MODULE_PARM_DESC(irq, "cs89x0 IRQ number");
  1402. #if DEBUGGING
  1403. MODULE_PARM_DESC(debug, "cs89x0 debug level (0-6)");
  1404. #else
  1405. MODULE_PARM_DESC(debug, "(ignored)");
  1406. #endif
  1407. MODULE_PARM_DESC(media, "Set cs89x0 adapter(s) media type(s) (rj45,bnc,aui)");
  1408. /* No other value than -1 for duplex seems to be currently interpreted */
  1409. MODULE_PARM_DESC(duplex, "(ignored)");
  1410. #if ALLOW_DMA
  1411. MODULE_PARM_DESC(dma , "cs89x0 ISA DMA channel; ignored if use_dma=0");
  1412. MODULE_PARM_DESC(dmasize , "cs89x0 DMA size in kB (16,64); ignored if use_dma=0");
  1413. MODULE_PARM_DESC(use_dma , "cs89x0 using DMA (0-1)");
  1414. #else
  1415. MODULE_PARM_DESC(dma , "(ignored)");
  1416. MODULE_PARM_DESC(dmasize , "(ignored)");
  1417. MODULE_PARM_DESC(use_dma , "(ignored)");
  1418. #endif
  1419. MODULE_AUTHOR("Mike Cruse, Russwll Nelson <nelson@crynwr.com>, Andrew Morton <andrewm@uow.edu.au>");
  1420. MODULE_LICENSE("GPL");
  1421. EXPORT_NO_SYMBOLS;
  1422. /*
  1423. * media=t             - specify media type
  1424.    or media=2
  1425.    or media=aui
  1426.    or medai=auto
  1427. * duplex=0            - specify forced half/full/autonegotiate duplex
  1428. * debug=#             - debug level
  1429. * Default Chip Configuration:
  1430.   * DMA Burst = enabled
  1431.   * IOCHRDY Enabled = enabled
  1432.     * UseSA = enabled
  1433.     * CS8900 defaults to half-duplex if not specified on command-line
  1434.     * CS8920 defaults to autoneg if not specified on command-line
  1435.     * Use reset defaults for other config parameters
  1436. * Assumptions:
  1437.   * media type specified is supported (circuitry is present)
  1438.   * if memory address is > 1MB, then required mem decode hw is present
  1439.   * if 10B-2, then agent other than driver will enable DC/DC converter
  1440.     (hw or software util)
  1441. */
  1442. int
  1443. init_module(void)
  1444. {
  1445. struct net_local *lp;
  1446. int ret = 0;
  1447. #if DEBUGGING
  1448. net_debug = debug;
  1449. #else
  1450. debug = 0;
  1451. #endif
  1452. dev_cs89x0.irq = irq;
  1453. dev_cs89x0.base_addr = io;
  1454.         dev_cs89x0.init = cs89x0_probe;
  1455.         dev_cs89x0.priv = kmalloc(sizeof(struct net_local), GFP_KERNEL);
  1456. if (dev_cs89x0.priv == 0) {
  1457. printk(KERN_ERR "cs89x0.c: Out of memory.n");
  1458. return -ENOMEM;
  1459. }
  1460. memset(dev_cs89x0.priv, 0, sizeof(struct net_local));
  1461. lp = (struct net_local *)dev_cs89x0.priv;
  1462. #if ALLOW_DMA
  1463. if (use_dma) {
  1464. lp->use_dma = use_dma;
  1465. lp->dma = dma;
  1466. lp->dmasize = dmasize;
  1467. }
  1468. #endif
  1469. spin_lock_init(&lp->lock);
  1470.         /* boy, they'd better get these right */
  1471.         if (!strcmp(media, "rj45"))
  1472. lp->adapter_cnf = A_CNF_MEDIA_10B_T | A_CNF_10B_T;
  1473. else if (!strcmp(media, "aui"))
  1474. lp->adapter_cnf = A_CNF_MEDIA_AUI   | A_CNF_AUI;
  1475. else if (!strcmp(media, "bnc"))
  1476. lp->adapter_cnf = A_CNF_MEDIA_10B_2 | A_CNF_10B_2;
  1477. else
  1478. lp->adapter_cnf = A_CNF_MEDIA_10B_T | A_CNF_10B_T;
  1479.         if (duplex==-1)
  1480. lp->auto_neg_cnf = AUTO_NEG_ENABLE;
  1481.         if (io == 0) {
  1482.                 printk(KERN_ERR "cs89x0.c: Module autoprobing not allowed.n");
  1483.                 printk(KERN_ERR "cs89x0.c: Append io=0xNNNn");
  1484.                 ret = -EPERM;
  1485. goto out;
  1486.         }
  1487. #if ALLOW_DMA
  1488. if (use_dma && dmasize != 16 && dmasize != 64) {
  1489. printk(KERN_ERR "cs89x0.c: dma size must be either 16K or 64K, not %dKn", dmasize);
  1490. ret = -EPERM;
  1491. goto out;
  1492. }
  1493. #endif
  1494.         if (register_netdev(&dev_cs89x0) != 0) {
  1495.                 printk(KERN_ERR "cs89x0.c: No card found at 0x%xn", io);
  1496.                 ret = -ENXIO;
  1497. goto out;
  1498.         }
  1499. out:
  1500. if (ret)
  1501. kfree(dev_cs89x0.priv);
  1502. return ret;
  1503. }
  1504. void
  1505. cleanup_module(void)
  1506. {
  1507.         if (dev_cs89x0.priv != NULL) {
  1508.                 /* Free up the private structure, or leak memory :-)  */
  1509.                 unregister_netdev(&dev_cs89x0);
  1510. outw(PP_ChipID, dev_cs89x0.base_addr + ADD_PORT);
  1511.                 kfree(dev_cs89x0.priv);
  1512.                 dev_cs89x0.priv = NULL; /* gets re-allocated by cs89x0_probe1 */
  1513.                 /* If we don't do this, we can't re-insmod it later. */
  1514.                 release_region(dev_cs89x0.base_addr, NETCARD_IO_EXTENT);
  1515.         }
  1516. }
  1517. #endif /* MODULE */
  1518. /*
  1519.  * Local variables:
  1520.  *  version-control: t
  1521.  *  kept-new-versions: 5
  1522.  *  c-indent-level: 8
  1523.  *  tab-width: 8
  1524.  * End:
  1525.  *
  1526.  */