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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* eth16i.c An ICL EtherTeam 16i and 32 EISA ethernet driver for Linux
  2.    
  3.    Written 1994-1999 by Mika Kuoppala
  4.    
  5.    Copyright (C) 1994-1999 by Mika Kuoppala
  6.    Based on skeleton.c and heavily on at1700.c 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 as miku@iki.fi
  10.    This driver supports following cards :
  11. - ICL EtherTeam 16i
  12. - ICL EtherTeam 32 EISA 
  13.   (Uses true 32 bit transfers rather than 16i compability mode)
  14.    Example Module usage:
  15.         insmod eth16i.o io=0x2a0 mediatype=bnc
  16. mediatype can be one of the following: bnc,tp,dix,auto,eprom
  17. 'auto' will try to autoprobe mediatype.
  18. 'eprom' will use whatever type defined in eprom.
  19.    I have benchmarked driver with PII/300Mhz as a ftp client
  20.    and 486/33Mhz as a ftp server. Top speed was 1128.37 kilobytes/sec.
  21.    
  22.    Sources:
  23.      - skeleton.c  a sample network driver core for linux,
  24.        written by Donald Becker <becker@scyld.com>
  25.      - at1700.c a driver for Allied Telesis AT1700, written 
  26.        by Donald Becker.
  27.      - e16iSRV.asm a Netware 3.X Server Driver for ICL EtherTeam16i
  28.        written by Markku Viima
  29.      - The Fujitsu MB86965 databook.
  30.    
  31.    Author thanks following persons due to their valueble assistance:    
  32.         Markku Viima (ICL)
  33. Ari Valve (ICL)      
  34. Donald Becker
  35. Kurt Huwig <kurt@huwig.de>
  36.    Revision history:
  37.    Version Date Description
  38.    
  39.    0.01         15.12-94        Initial version (card detection)
  40.    0.02         23.01-95        Interrupt is now hooked correctly
  41.    0.03         01.02-95        Rewrote initialization part
  42.    0.04         07.02-95        Base skeleton done...
  43.                                 Made a few changes to signature checking
  44.                                 to make it a bit reliable.
  45.                                 - fixed bug in tx_buf mapping
  46.                                 - fixed bug in initialization (DLC_EN
  47.                                   wasn't enabled when initialization
  48.                                   was done.)
  49.    0.05         08.02-95        If there were more than one packet to send,
  50.                                 transmit was jammed due to invalid
  51.                                 register write...now fixed
  52.    0.06         19.02-95        Rewrote interrupt handling        
  53.    0.07         13.04-95        Wrote EEPROM read routines
  54.                                 Card configuration now set according to
  55.                                 data read from EEPROM
  56.    0.08         23.06-95        Wrote part that tries to probe used interface
  57.                                 port if AUTO is selected
  58.    0.09         01.09-95        Added module support
  59.    
  60.    0.10         04.09-95        Fixed receive packet allocation to work
  61.                                 with kernels > 1.3.x
  62.       
  63.    0.20 20.09-95 Added support for EtherTeam32 EISA
  64.    0.21         17.10-95        Removed the unnecessary extern 
  65. init_etherdev() declaration. Some
  66. other cleanups.
  67.    
  68.    0.22 22.02-96 Receive buffer was not flushed
  69. correctly when faulty packet was
  70. received. Now fixed.
  71.    0.23 26.02-96 Made resetting the adapter
  72.   more reliable.
  73.    
  74.    0.24 27.02-96 Rewrote faulty packet handling in eth16i_rx
  75.    0.25 22.05-96 kfree() was missing from cleanup_module.
  76.    0.26 11.06-96 Sometimes card was not found by 
  77. check_signature(). Now made more reliable.
  78.    
  79.    0.27 23.06-96 Oops. 16 consecutive collisions halted 
  80. adapter. Now will try to retransmit 
  81. MAX_COL_16 times before finally giving up.
  82.    
  83.    0.28         28.10-97 Added dev_id parameter (NULL) for free_irq
  84.    0.29         29.10-97        Multiple card support for module users
  85.    0.30         30.10-97        Fixed irq allocation bug.
  86.                                 (request_irq moved from probe to open)
  87.    0.30a        21.08-98        Card detection made more relaxed. Driver
  88.                                 had problems with some TCP/IP-PROM boots
  89. to find the card. Suggested by 
  90. Kurt Huwig <kurt@huwig.de>
  91.    0.31         28.08-98        Media interface port can now be selected
  92.                                 with module parameters or kernel
  93. boot parameters. 
  94.    0.32         31.08-98        IRQ was never freed if open/close 
  95.                                 pair wasn't called. Now fixed.
  96.    
  97.    0.33         10.09-98        When eth16i_open() was called after
  98.                                 eth16i_close() chip never recovered.
  99. Now more shallow reset is made on
  100. close.
  101.    0.34         29.06-99 Fixed one bad #ifdef.
  102. Changed ioaddr -> io for consistency
  103.    0.35         01.07-99        transmit,-receive bytes were never
  104.                                 updated in stats. 
  105.    Bugs:
  106. In some cases the media interface autoprobing code doesn't find 
  107. the correct interface type. In this case you can 
  108. manually choose the interface type in DOS with E16IC.EXE which is 
  109. configuration software for EtherTeam16i and EtherTeam32 cards.
  110. This is also true for IRQ setting. You cannot use module
  111. parameter to configure IRQ of the card (yet). 
  112.    To do:
  113. - Real multicast support
  114. - Rewrite the media interface autoprobing code. Its _horrible_ !
  115. - Possibly merge all the MB86965 specific code to external
  116.   module for use by eth16.c and Donald's at1700.c
  117. - IRQ configuration with module parameter. I will do
  118.   this when i will get enough info about setting
  119.   irq without configuration utility.
  120. */
  121. static char *version = 
  122.     "eth16i.c: v0.35 01-Jul-1999 Mika Kuoppala (miku@iki.fi)n";
  123. #include <linux/module.h>
  124. #include <linux/kernel.h>
  125. #include <linux/sched.h>
  126. #include <linux/types.h>   
  127. #include <linux/fcntl.h>   
  128. #include <linux/interrupt.h>   
  129. #include <linux/ptrace.h>   
  130. #include <linux/ioport.h>   
  131. #include <linux/in.h>   
  132. #include <linux/slab.h>   
  133. #include <linux/string.h>   
  134. #include <linux/errno.h>
  135. #include <linux/init.h>
  136. #include <linux/spinlock.h>
  137. #include <linux/netdevice.h>
  138. #include <linux/etherdevice.h>
  139. #include <linux/skbuff.h>
  140. #include <asm/system.h>   
  141. #include <asm/bitops.h>   
  142. #include <asm/io.h>   
  143. #include <asm/dma.h>
  144. /* Few macros */
  145. #define BIT(a)        ( (1 << (a)) )  
  146. #define BITSET(ioaddr, bnum)   ((outb(((inb(ioaddr)) | (bnum)), ioaddr))) 
  147. #define BITCLR(ioaddr, bnum)   ((outb(((inb(ioaddr)) & (~(bnum))), ioaddr)))
  148. /* This is the I/O address space for Etherteam 16i adapter. */
  149. #define ETH16I_IO_EXTENT       32
  150. /* Ticks before deciding that transmit has timed out */
  151. #define TX_TIMEOUT             (400*HZ/1000)
  152. /* Maximum loop count when receiving packets */
  153. #define MAX_RX_LOOP            20
  154. /* Some interrupt masks */
  155. #define ETH16I_INTR_ON        0xef8a       /* Higher is receive mask */
  156. #define ETH16I_INTR_OFF        0x0000
  157.  
  158. /* Buffers header status byte meanings */
  159. #define PKT_GOOD               BIT(5)
  160. #define PKT_GOOD_RMT           BIT(4)
  161. #define PKT_SHORT              BIT(3)
  162. #define PKT_ALIGN_ERR          BIT(2)
  163. #define PKT_CRC_ERR            BIT(1)
  164. #define PKT_RX_BUF_OVERFLOW    BIT(0)
  165. /* Transmit status register (DLCR0) */
  166. #define TX_STATUS_REG          0
  167. #define TX_DONE                BIT(7)
  168. #define NET_BUSY               BIT(6)
  169. #define TX_PKT_RCD             BIT(5)
  170. #define CR_LOST                BIT(4)
  171. #define TX_JABBER_ERR        BIT(3)
  172. #define COLLISION              BIT(2)
  173. #define COLLISIONS_16          BIT(1)
  174. /* Receive status register (DLCR1) */
  175. #define RX_STATUS_REG          1
  176. #define RX_PKT                 BIT(7)  /* Packet received */
  177. #define BUS_RD_ERR             BIT(6)
  178. #define SHORT_PKT_ERR          BIT(3)
  179. #define ALIGN_ERR              BIT(2)
  180. #define CRC_ERR                BIT(1)
  181. #define RX_BUF_OVERFLOW        BIT(0)
  182.               
  183. /* Transmit Interrupt Enable Register (DLCR2) */
  184. #define TX_INTR_REG            2
  185. #define TX_INTR_DONE           BIT(7)
  186. #define TX_INTR_COL            BIT(2)
  187. #define TX_INTR_16_COL         BIT(1)
  188. /* Receive Interrupt Enable Register (DLCR3) */
  189. #define RX_INTR_REG            3
  190. #define RX_INTR_RECEIVE        BIT(7)
  191. #define RX_INTR_SHORT_PKT      BIT(3)
  192. #define RX_INTR_CRC_ERR        BIT(1)
  193. #define RX_INTR_BUF_OVERFLOW   BIT(0)
  194. /* Transmit Mode Register (DLCR4) */
  195. #define TRANSMIT_MODE_REG      4
  196. #define LOOPBACK_CONTROL       BIT(1)
  197. #define CONTROL_OUTPUT         BIT(2)
  198. /* Receive Mode Register (DLCR5) */
  199. #define RECEIVE_MODE_REG       5
  200. #define RX_BUFFER_EMPTY        BIT(6)
  201. #define ACCEPT_BAD_PACKETS     BIT(5)
  202. #define RECEIVE_SHORT_ADDR     BIT(4)
  203. #define ACCEPT_SHORT_PACKETS   BIT(3)
  204. #define REMOTE_RESET           BIT(2)
  205. #define ADDRESS_FILTER_MODE    BIT(1) | BIT(0)
  206. #define REJECT_ALL             0
  207. #define ACCEPT_ALL             3
  208. #define MODE_1                 1            /* NODE ID, BC, MC, 2-24th bit */
  209. #define MODE_2                 2            /* NODE ID, BC, MC, Hash Table */
  210. /* Configuration Register 0 (DLCR6) */
  211. #define CONFIG_REG_0           6
  212. #define DLC_EN                 BIT(7)
  213. #define SRAM_CYCLE_TIME_100NS  BIT(6)
  214. #define SYSTEM_BUS_WIDTH_8     BIT(5)       /* 1 = 8bit, 0 = 16bit */
  215. #define BUFFER_WIDTH_8         BIT(4)       /* 1 = 8bit, 0 = 16bit */
  216. #define TBS1                   BIT(3)       
  217. #define TBS0                   BIT(2)
  218. #define SRAM_BS1               BIT(1)       /* 00=8kb,  01=16kb  */
  219. #define SRAM_BS0               BIT(0)       /* 10=32kb, 11=64kb  */
  220. #ifndef ETH16I_TX_BUF_SIZE                   /* 0 = 2kb, 1 = 4kb  */ 
  221. #define ETH16I_TX_BUF_SIZE     3             /* 2 = 8kb, 3 = 16kb */
  222. #endif                                      
  223. #define TX_BUF_1x2048          0
  224. #define TX_BUF_2x2048          1
  225. #define TX_BUF_2x4098          2
  226. #define TX_BUF_2x8192          3
  227. /* Configuration Register 1 (DLCR7) */
  228. #define CONFIG_REG_1           7
  229. #define POWERUP                BIT(5)
  230. /* Transmit start register */
  231. #define TRANSMIT_START_REG     10
  232. #define TRANSMIT_START_RB      2
  233. #define TX_START               BIT(7)       /* Rest of register bit indicate*/
  234.                                             /* number of packets in tx buffer*/
  235. /* Node ID registers (DLCR8-13) */
  236. #define NODE_ID_0              8
  237. #define NODE_ID_RB             0
  238. /* Hash Table registers (HT8-15) */
  239. #define HASH_TABLE_0           8
  240. #define HASH_TABLE_RB          1
  241. /* Buffer memory ports */
  242. #define BUFFER_MEM_PORT_LB     8
  243. #define DATAPORT               BUFFER_MEM_PORT_LB
  244. #define BUFFER_MEM_PORT_HB     9
  245. /* 16 Collision control register (BMPR11) */
  246. #define COL_16_REG             11
  247. #define HALT_ON_16             0x00
  248. #define RETRANS_AND_HALT_ON_16 0x02
  249. /* Maximum number of attempts to send after 16 concecutive collisions */
  250. #define MAX_COL_16        10
  251. /* DMA Burst and Transceiver Mode Register (BMPR13) */
  252. #define TRANSCEIVER_MODE_REG   13
  253. #define TRANSCEIVER_MODE_RB    2         
  254. #define IO_BASE_UNLOCK        BIT(7)
  255. #define LOWER_SQUELCH_TRESH    BIT(6)
  256. #define LINK_TEST_DISABLE      BIT(5)
  257. #define AUI_SELECT             BIT(4)
  258. #define DIS_AUTO_PORT_SEL      BIT(3)
  259. /* Filter Self Receive Register (BMPR14)  */
  260. #define FILTER_SELF_RX_REG     14
  261. #define SKIP_RX_PACKET         BIT(2)
  262. #define FILTER_SELF_RECEIVE    BIT(0)
  263. /* EEPROM Control Register (BMPR 16) */
  264. #define EEPROM_CTRL_REG        16
  265. /* EEPROM Data Register (BMPR 17) */
  266. #define EEPROM_DATA_REG        17
  267. /* NMC93CSx6 EEPROM Control Bits */
  268. #define CS_0                   0x00
  269. #define CS_1                   0x20
  270. #define SK_0                   0x00
  271. #define SK_1                   0x40
  272. #define DI_0                   0x00
  273. #define DI_1                   0x80
  274. /* NMC93CSx6 EEPROM Instructions */
  275. #define EEPROM_READ            0x80
  276. /* NMC93CSx6 EEPROM Addresses */
  277. #define E_NODEID_0             0x02
  278. #define E_NODEID_1             0x03
  279. #define E_NODEID_2             0x04
  280. #define E_PORT_SELECT          0x14
  281.   #define E_PORT_BNC           0x00
  282.   #define E_PORT_DIX           0x01
  283.   #define E_PORT_TP            0x02
  284.   #define E_PORT_AUTO          0x03
  285.   #define E_PORT_FROM_EPROM    0x04
  286. #define E_PRODUCT_CFG          0x30
  287.  
  288. /* Macro to slow down io between EEPROM clock transitions */
  289. #define eeprom_slow_io() do { int _i = 40; while(--_i > 0) { inb(0x80); }}while(0)
  290. /* Jumperless Configuration Register (BMPR19) */
  291. #define JUMPERLESS_CONFIG      19
  292. /* ID ROM registers, writing to them also resets some parts of chip */
  293. #define ID_ROM_0               24
  294. #define ID_ROM_7               31
  295. #define RESET                  ID_ROM_0
  296. /* This is the I/O address list to be probed when seeking the card */
  297. static unsigned int eth16i_portlist[] __initdata = {
  298. 0x260, 0x280, 0x2A0, 0x240, 0x340, 0x320, 0x380, 0x300, 0 
  299. };
  300. static unsigned int eth32i_portlist[] __initdata = { 
  301. 0x1000, 0x2000, 0x3000, 0x4000, 0x5000, 0x6000, 0x7000, 0x8000,
  302. 0x9000, 0xA000, 0xB000, 0xC000, 0xD000, 0xE000, 0xF000, 0 
  303. };
  304. /* This is the Interrupt lookup table for Eth16i card */
  305. static unsigned int eth16i_irqmap[] __initdata = { 9, 10, 5, 15, 0 };
  306. #define NUM_OF_ISA_IRQS    4
  307. /* This is the Interrupt lookup table for Eth32i card */
  308. static unsigned int eth32i_irqmap[] __initdata = { 3, 5, 7, 9, 10, 11, 12, 15, 0 };  
  309. #define EISA_IRQ_REG 0xc89
  310. #define NUM_OF_EISA_IRQS   8
  311. static unsigned int eth16i_tx_buf_map[] = { 2048, 2048, 4096, 8192 };
  312. static unsigned int boot = 1;
  313. /* Use 0 for production, 1 for verification, >2 for debug */
  314. #ifndef ETH16I_DEBUG
  315. #define ETH16I_DEBUG 0
  316. #endif
  317. static unsigned int eth16i_debug = ETH16I_DEBUG;
  318. /* Information for each board */
  319. struct eth16i_local {
  320. struct net_device_stats stats;
  321. unsigned char     tx_started;
  322. unsigned char     tx_buf_busy;
  323. unsigned short    tx_queue;  /* Number of packets in transmit buffer */
  324. unsigned short    tx_queue_len;         
  325. unsigned int      tx_buf_size;
  326. unsigned long     open_time;
  327. unsigned long     tx_buffered_packets;
  328. unsigned long     tx_buffered_bytes;
  329. unsigned long     col_16;
  330. spinlock_t   lock;
  331. };
  332. /* Function prototypes */
  333. extern int     eth16i_probe(struct net_device *dev);
  334. static int     eth16i_probe1(struct net_device *dev, int ioaddr);
  335. static int     eth16i_check_signature(int ioaddr);
  336. static int     eth16i_probe_port(int ioaddr);
  337. static void    eth16i_set_port(int ioaddr, int porttype);
  338. static int     eth16i_send_probe_packet(int ioaddr, unsigned char *b, int l);
  339. static int     eth16i_receive_probe_packet(int ioaddr);
  340. static int     eth16i_get_irq(int ioaddr);
  341. static int     eth16i_read_eeprom(int ioaddr, int offset);
  342. static int     eth16i_read_eeprom_word(int ioaddr);
  343. static void    eth16i_eeprom_cmd(int ioaddr, unsigned char command);
  344. static int     eth16i_open(struct net_device *dev);
  345. static int     eth16i_close(struct net_device *dev);
  346. static int     eth16i_tx(struct sk_buff *skb, struct net_device *dev);
  347. static void    eth16i_rx(struct net_device *dev);
  348. static void    eth16i_timeout(struct net_device *dev);
  349. static void    eth16i_interrupt(int irq, void *dev_id, struct pt_regs *regs);
  350. static void    eth16i_reset(struct net_device *dev);
  351. static void    eth16i_timeout(struct net_device *dev);
  352. static void    eth16i_skip_packet(struct net_device *dev);
  353. static void    eth16i_multicast(struct net_device *dev); 
  354. static void    eth16i_select_regbank(unsigned char regbank, int ioaddr);
  355. static void    eth16i_initialize(struct net_device *dev);
  356. #if 0
  357. static int     eth16i_set_irq(struct net_device *dev);
  358. #endif
  359. #ifdef MODULE
  360. static ushort  eth16i_parse_mediatype(const char* s);
  361. #endif
  362. static struct net_device_stats *eth16i_get_stats(struct net_device *dev);
  363. static char cardname[] __initdata = "ICL EtherTeam 16i/32";
  364. int __init eth16i_probe(struct net_device *dev)
  365. {
  366. int i;
  367. int ioaddr;
  368. int base_addr = dev->base_addr;
  369.     
  370. SET_MODULE_OWNER(dev);
  371. if(eth16i_debug > 4) 
  372. printk(KERN_DEBUG "Probing started for %sn", cardname);
  373. if(base_addr > 0x1ff)           /* Check only single location */
  374. return eth16i_probe1(dev, base_addr);
  375. else if(base_addr != 0)         /* Don't probe at all */
  376. return -ENXIO;
  377. /* Seek card from the ISA io address space */
  378. for(i = 0; (ioaddr = eth16i_portlist[i]) ; i++)
  379. if(eth16i_probe1(dev, ioaddr) == 0)
  380. return 0;
  381. /* Seek card from the EISA io address space */
  382. for(i = 0; (ioaddr = eth32i_portlist[i]) ; i++)
  383. if(eth16i_probe1(dev, ioaddr) == 0)
  384. return 0;
  385. return -ENODEV;
  386. }
  387. static int __init eth16i_probe1(struct net_device *dev, int ioaddr)
  388. {
  389. struct eth16i_local *lp;
  390. static unsigned version_printed;
  391. int retval;
  392. boot = 1;  /* To inform initilization that we are in boot probe */
  393. /* Let's grab the region */
  394. if (!request_region(ioaddr, ETH16I_IO_EXTENT, dev->name))
  395. return -EBUSY;
  396. /*
  397.   The MB86985 chip has on register which holds information in which 
  398.   io address the chip lies. First read this register and compare
  399.   it to our current io address and if match then this could
  400.   be our chip.
  401.   */
  402. if(ioaddr < 0x1000) {
  403. if(eth16i_portlist[(inb(ioaddr + JUMPERLESS_CONFIG) & 0x07)] 
  404.    != ioaddr) {
  405. retval = -ENODEV;
  406. goto out;
  407. }
  408. }
  409. /* Now we will go a bit deeper and try to find the chip's signature */
  410. if(eth16i_check_signature(ioaddr) != 0) {
  411. retval = -ENODEV;
  412. goto out;
  413. }
  414. /* 
  415.    Now it seems that we have found a ethernet chip in this particular
  416.    ioaddr. The MB86985 chip has this feature, that when you read a 
  417.    certain register it will increase it's io base address to next
  418.    configurable slot. Now when we have found the chip, first thing is
  419.    to make sure that the chip's ioaddr will hold still here.
  420.    */
  421. eth16i_select_regbank(TRANSCEIVER_MODE_RB, ioaddr);
  422. outb(0x00, ioaddr + TRANSCEIVER_MODE_REG);
  423. outb(0x00, ioaddr + RESET);             /* Reset some parts of chip */
  424. BITSET(ioaddr + CONFIG_REG_0, BIT(7));  /* Disable the data link */
  425. if( (eth16i_debug & version_printed++) == 0)
  426. printk(KERN_INFO "%s", version);
  427. dev->base_addr = ioaddr;
  428. dev->irq = eth16i_get_irq(ioaddr);
  429. /* Try to obtain interrupt vector */
  430. if ((retval = request_irq(dev->irq, (void *)&eth16i_interrupt, 0, dev->name, dev))) {
  431. printk(KERN_WARNING "%s: %s at %#3x, but is unusable due conflicting IRQ %d.n", 
  432.        dev->name, cardname, ioaddr, dev->irq);
  433. goto out;
  434. }
  435. printk(KERN_INFO "%s: %s at %#3x, IRQ %d, ",
  436.        dev->name, cardname, ioaddr, dev->irq);
  437. /* Now we will have to lock the chip's io address */
  438. eth16i_select_regbank(TRANSCEIVER_MODE_RB, ioaddr);
  439. outb(0x38, ioaddr + TRANSCEIVER_MODE_REG); 
  440. eth16i_initialize(dev);   /* Initialize rest of the chip's registers */
  441. /* Now let's same some energy by shutting down the chip ;) */
  442. BITCLR(ioaddr + CONFIG_REG_1, POWERUP);
  443. /* Initialize the device structure */
  444. if(dev->priv == NULL) {
  445. dev->priv = kmalloc(sizeof(struct eth16i_local), GFP_KERNEL);
  446. if(dev->priv == NULL) {
  447. free_irq(dev->irq, dev);
  448. retval = -ENOMEM;
  449. goto out;
  450. }
  451. }
  452. memset(dev->priv, 0, sizeof(struct eth16i_local));
  453. dev->open               = eth16i_open;
  454. dev->stop               = eth16i_close;
  455. dev->hard_start_xmit    = eth16i_tx;
  456. dev->get_stats          = eth16i_get_stats;
  457. dev->set_multicast_list = eth16i_multicast;
  458. dev->tx_timeout  = eth16i_timeout;
  459. dev->watchdog_timeo = TX_TIMEOUT;
  460. lp = (struct eth16i_local *)dev->priv;
  461. spin_lock_init(&lp->lock);
  462. /* Fill in the fields of the device structure with ethernet values. */
  463. ether_setup(dev);
  464. boot = 0;
  465. return 0;
  466. out:
  467. release_region(ioaddr, ETH16I_IO_EXTENT);
  468. return retval;
  469. }
  470. static void eth16i_initialize(struct net_device *dev)
  471. {
  472. int ioaddr = dev->base_addr;
  473. int i, node_w = 0;
  474. unsigned char node_byte = 0;
  475. /* Setup station address */
  476. eth16i_select_regbank(NODE_ID_RB, ioaddr);
  477. for(i = 0 ; i < 3 ; i++) {
  478. unsigned short node_val = eth16i_read_eeprom(ioaddr, E_NODEID_0 + i);
  479. ((unsigned short *)dev->dev_addr)[i] = ntohs(node_val);
  480. }
  481. for(i = 0; i < 6; i++) { 
  482. outb( ((unsigned char *)dev->dev_addr)[i], ioaddr + NODE_ID_0 + i);
  483. if(boot) {
  484. printk("%02x", inb(ioaddr + NODE_ID_0 + i));
  485. if(i != 5)
  486. printk(":");
  487. }
  488. }
  489. /* Now we will set multicast addresses to accept none */
  490. eth16i_select_regbank(HASH_TABLE_RB, ioaddr);
  491. for(i = 0; i < 8; i++) 
  492. outb(0x00, ioaddr + HASH_TABLE_0 + i);
  493. /*
  494.   Now let's disable the transmitter and receiver, set the buffer ram 
  495.   cycle time, bus width and buffer data path width. Also we shall
  496.   set transmit buffer size and total buffer size.
  497.   */
  498. eth16i_select_regbank(2, ioaddr);
  499. node_byte = 0;
  500. node_w = eth16i_read_eeprom(ioaddr, E_PRODUCT_CFG);
  501. if( (node_w & 0xFF00) == 0x0800)
  502. node_byte |= BUFFER_WIDTH_8;
  503. node_byte |= SRAM_BS1;
  504. if( (node_w & 0x00FF) == 64)
  505. node_byte |= SRAM_BS0;
  506. node_byte |= DLC_EN | SRAM_CYCLE_TIME_100NS | (ETH16I_TX_BUF_SIZE << 2);
  507. outb(node_byte, ioaddr + CONFIG_REG_0);
  508. /* We shall halt the transmitting, if 16 collisions are detected */
  509. outb(HALT_ON_16, ioaddr + COL_16_REG);
  510. #ifdef MODULE
  511. /* if_port already set by init_module() */
  512. #else
  513. dev->if_port = (dev->mem_start < E_PORT_FROM_EPROM) ? 
  514. dev->mem_start : E_PORT_FROM_EPROM;
  515. #endif
  516. /* Set interface port type */
  517. if(boot) {
  518. char *porttype[] = {"BNC", "DIX", "TP", "AUTO", "FROM_EPROM" };
  519. switch(dev->if_port)
  520. {
  521. case E_PORT_FROM_EPROM:
  522. dev->if_port = eth16i_read_eeprom(ioaddr, E_PORT_SELECT);
  523. break;
  524. case E_PORT_AUTO:
  525. dev->if_port = eth16i_probe_port(ioaddr);
  526. break;
  527. case E_PORT_BNC:
  528. case E_PORT_TP:
  529. case E_PORT_DIX:
  530. break;
  531. }
  532. printk(" %s interface.n", porttype[dev->if_port]);
  533. eth16i_set_port(ioaddr, dev->if_port);
  534. }
  535. /* Set Receive Mode to normal operation */
  536. outb(MODE_2, ioaddr + RECEIVE_MODE_REG);
  537. }
  538. static int eth16i_probe_port(int ioaddr)
  539. {
  540. int i;
  541. int retcode;
  542. unsigned char dummy_packet[64];
  543. /* Powerup the chip */
  544. outb(0xc0 | POWERUP, ioaddr + CONFIG_REG_1);
  545. BITSET(ioaddr + CONFIG_REG_0, DLC_EN);
  546. eth16i_select_regbank(NODE_ID_RB, ioaddr);
  547. for(i = 0; i < 6; i++) {
  548. dummy_packet[i] = inb(ioaddr + NODE_ID_0 + i);
  549. dummy_packet[i+6] = inb(ioaddr + NODE_ID_0 + i);
  550. }
  551. dummy_packet[12] = 0x00;
  552. dummy_packet[13] = 0x04;
  553. memset(dummy_packet + 14, 0, sizeof(dummy_packet) - 14);
  554. eth16i_select_regbank(2, ioaddr);
  555. for(i = 0; i < 3; i++) {
  556. BITSET(ioaddr + CONFIG_REG_0, DLC_EN);
  557. BITCLR(ioaddr + CONFIG_REG_0, DLC_EN);
  558. eth16i_set_port(ioaddr, i);
  559. if(eth16i_debug > 1)
  560. printk(KERN_DEBUG "Set port number %dn", i);
  561. retcode = eth16i_send_probe_packet(ioaddr, dummy_packet, 64);
  562. if(retcode == 0) {
  563. retcode = eth16i_receive_probe_packet(ioaddr);
  564. if(retcode != -1) {
  565. if(eth16i_debug > 1)
  566. printk(KERN_DEBUG "Eth16i interface port found at %dn", i);
  567. return i;
  568. }
  569. }
  570. else {
  571. if(eth16i_debug > 1)
  572. printk(KERN_DEBUG "TRANSMIT_DONE timeout when probing interface portn");
  573. }
  574. }
  575. if( eth16i_debug > 1)
  576. printk(KERN_DEBUG "Using default portn");
  577. return E_PORT_BNC;
  578. }
  579. static void eth16i_set_port(int ioaddr, int porttype)
  580. unsigned short temp = 0;
  581. eth16i_select_regbank(TRANSCEIVER_MODE_RB, ioaddr);
  582. outb(LOOPBACK_CONTROL, ioaddr + TRANSMIT_MODE_REG);
  583. temp |= DIS_AUTO_PORT_SEL;
  584. switch(porttype) {
  585. case E_PORT_BNC :
  586. temp |= AUI_SELECT;
  587. break;
  588. case E_PORT_TP :
  589. break;
  590. case E_PORT_DIX :
  591. temp |= AUI_SELECT;
  592. BITSET(ioaddr + TRANSMIT_MODE_REG, CONTROL_OUTPUT);
  593. break;
  594. }  
  595. outb(temp, ioaddr + TRANSCEIVER_MODE_REG);
  596. if(eth16i_debug > 1) {
  597. printk(KERN_DEBUG "TRANSMIT_MODE_REG = %xn", inb(ioaddr + TRANSMIT_MODE_REG));
  598. printk(KERN_DEBUG "TRANSCEIVER_MODE_REG = %xn", 
  599.        inb(ioaddr+TRANSCEIVER_MODE_REG));
  600. }
  601. }
  602. static int eth16i_send_probe_packet(int ioaddr, unsigned char *b, int l)
  603. {
  604. int starttime;
  605. outb(0xff, ioaddr + TX_STATUS_REG);
  606. outw(l, ioaddr + DATAPORT);
  607. outsw(ioaddr + DATAPORT, (unsigned short *)b, (l + 1) >> 1);  
  608. starttime = jiffies;
  609. outb(TX_START | 1, ioaddr + TRANSMIT_START_REG); 
  610. while( (inb(ioaddr + TX_STATUS_REG) & 0x80) == 0) {
  611. if( (jiffies - starttime) > TX_TIMEOUT) {
  612. return -1;
  613. }
  614. }
  615. return 0;
  616. }
  617. static int eth16i_receive_probe_packet(int ioaddr)
  618. {
  619. int starttime;
  620. starttime = jiffies;
  621. while((inb(ioaddr + TX_STATUS_REG) & 0x20) == 0) {
  622. if( (jiffies - starttime) > TX_TIMEOUT) {
  623. if(eth16i_debug > 1)
  624. printk(KERN_DEBUG "Timeout occurred waiting transmit packet receivedn");
  625. starttime = jiffies;
  626. while((inb(ioaddr + RX_STATUS_REG) & 0x80) == 0) {
  627. if( (jiffies - starttime) > TX_TIMEOUT) {
  628. if(eth16i_debug > 1)
  629. printk(KERN_DEBUG "Timeout occurred waiting receive packetn");
  630. return -1;
  631. }
  632. }
  633. if(eth16i_debug > 1)
  634. printk(KERN_DEBUG "RECEIVE_PACKETn");
  635. return(0); /* Found receive packet */
  636. }
  637. }
  638. if(eth16i_debug > 1) {
  639. printk(KERN_DEBUG "TRANSMIT_PACKET_RECEIVED %xn", inb(ioaddr + TX_STATUS_REG));
  640. printk(KERN_DEBUG "RX_STATUS_REG = %xn", inb(ioaddr + RX_STATUS_REG));
  641. }
  642. return(0); /* Return success */
  643. }
  644. #if 0
  645. static int eth16i_set_irq(struct net_device* dev)
  646. {
  647. const int ioaddr = dev->base_addr;
  648. const int irq = dev->irq;
  649. int i = 0;
  650. if(ioaddr < 0x1000) {
  651. while(eth16i_irqmap[i] && eth16i_irqmap[i] != irq)
  652. i++;
  653. if(i < NUM_OF_ISA_IRQS) {
  654. u8 cbyte = inb(ioaddr + JUMPERLESS_CONFIG);
  655. cbyte = (cbyte & 0x3F) | (i << 6);
  656. outb(cbyte, ioaddr + JUMPERLESS_CONFIG);
  657. return 0;
  658. }
  659. }
  660. else {
  661. printk(KERN_NOTICE "%s: EISA Interrupt cannot be set. Use EISA Configuration utility.n", dev->name);
  662. }
  663. return -1;
  664. }
  665. #endif
  666. static int __init eth16i_get_irq(int ioaddr)
  667. {
  668. unsigned char cbyte;
  669. if( ioaddr < 0x1000) {
  670. cbyte = inb(ioaddr + JUMPERLESS_CONFIG);
  671. return( eth16i_irqmap[ ((cbyte & 0xC0) >> 6) ] );
  672. } else {  /* Oh..the card is EISA so method getting IRQ different */
  673. unsigned short index = 0;
  674. cbyte = inb(ioaddr + EISA_IRQ_REG);
  675. while( (cbyte & 0x01) == 0) {
  676. cbyte = cbyte >> 1;
  677. index++;
  678. }
  679. return( eth32i_irqmap[ index ] );
  680. }
  681. }
  682. static int __init eth16i_check_signature(int ioaddr)
  683. {
  684. int i;
  685. unsigned char creg[4] = { 0 };
  686. for(i = 0; i < 4 ; i++) {
  687. creg[i] = inb(ioaddr + TRANSMIT_MODE_REG + i);
  688. if(eth16i_debug > 1)
  689. printk("eth16i: read signature byte %x at %xn", 
  690.        creg[i],
  691.        ioaddr + TRANSMIT_MODE_REG + i);
  692. }
  693. creg[0] &= 0x0F;      /* Mask collision cnr */
  694. creg[2] &= 0x7F;      /* Mask DCLEN bit */
  695. #if 0
  696. /* 
  697.    This was removed because the card was sometimes left to state
  698.    from which it couldn't be find anymore. If there is need
  699.    to more strict check still this have to be fixed.
  700.    */
  701. if( ! ((creg[0] == 0x06) && (creg[1] == 0x41)) ) {
  702. if(creg[1] != 0x42)
  703. return -1;
  704. }
  705. #endif
  706. if( !((creg[2] == 0x36) && (creg[3] == 0xE0)) ) {
  707. creg[2] &= 0x40;
  708. creg[3] &= 0x03;
  709. if( !((creg[2] == 0x40) && (creg[3] == 0x00)) )
  710. return -1;
  711. }
  712. if(eth16i_read_eeprom(ioaddr, E_NODEID_0) != 0)
  713. return -1;
  714. if((eth16i_read_eeprom(ioaddr, E_NODEID_1) & 0xFF00) != 0x4B00)
  715. return -1;
  716. return 0;
  717. }
  718. static int eth16i_read_eeprom(int ioaddr, int offset)
  719. {
  720. int data = 0;
  721. eth16i_eeprom_cmd(ioaddr, EEPROM_READ | offset);
  722. outb(CS_1, ioaddr + EEPROM_CTRL_REG);
  723. data = eth16i_read_eeprom_word(ioaddr);
  724. outb(CS_0 | SK_0, ioaddr + EEPROM_CTRL_REG);
  725. return(data);  
  726. }
  727. static int eth16i_read_eeprom_word(int ioaddr)
  728. {
  729. int i;
  730. int data = 0;
  731.      
  732. for(i = 16; i > 0; i--) {
  733. outb(CS_1 | SK_0, ioaddr + EEPROM_CTRL_REG);
  734. eeprom_slow_io();
  735. outb(CS_1 | SK_1, ioaddr + EEPROM_CTRL_REG);
  736. eeprom_slow_io();
  737. data = (data << 1) | 
  738. ((inb(ioaddr + EEPROM_DATA_REG) & DI_1) ? 1 : 0);
  739. eeprom_slow_io();
  740. }
  741. return(data);
  742. }
  743. static void eth16i_eeprom_cmd(int ioaddr, unsigned char command)
  744. {
  745. int i;
  746. outb(CS_0 | SK_0, ioaddr + EEPROM_CTRL_REG);
  747. outb(DI_0, ioaddr + EEPROM_DATA_REG);
  748. outb(CS_1 | SK_0, ioaddr + EEPROM_CTRL_REG);
  749. outb(DI_1, ioaddr + EEPROM_DATA_REG);
  750. outb(CS_1 | SK_1, ioaddr + EEPROM_CTRL_REG);
  751. for(i = 7; i >= 0; i--) {
  752. short cmd = ( (command & (1 << i)) ? DI_1 : DI_0 );
  753. outb(cmd, ioaddr + EEPROM_DATA_REG);
  754. outb(CS_1 | SK_0, ioaddr + EEPROM_CTRL_REG);
  755. eeprom_slow_io();
  756. outb(CS_1 | SK_1, ioaddr + EEPROM_CTRL_REG);
  757. eeprom_slow_io();
  758. }
  759. static int eth16i_open(struct net_device *dev)
  760. {
  761. struct eth16i_local *lp = (struct eth16i_local *)dev->priv;
  762. int ioaddr = dev->base_addr;
  763. /* Powerup the chip */
  764. outb(0xc0 | POWERUP, ioaddr + CONFIG_REG_1);
  765. /* Initialize the chip */
  766. eth16i_initialize(dev);  
  767. /* Set the transmit buffer size */
  768. lp->tx_buf_size = eth16i_tx_buf_map[ETH16I_TX_BUF_SIZE & 0x03];
  769. if(eth16i_debug > 0)
  770. printk(KERN_DEBUG "%s: transmit buffer size %dn", 
  771.        dev->name, lp->tx_buf_size);
  772. /* Now enable Transmitter and Receiver sections */
  773. BITCLR(ioaddr + CONFIG_REG_0, DLC_EN);
  774. /* Now switch to register bank 2, for run time operation */
  775. eth16i_select_regbank(2, ioaddr);
  776. lp->open_time = jiffies;
  777. lp->tx_started = 0;
  778. lp->tx_queue = 0;
  779. lp->tx_queue_len = 0;
  780. /* Turn on interrupts*/
  781. outw(ETH16I_INTR_ON, ioaddr + TX_INTR_REG);  
  782. netif_start_queue(dev);
  783. return 0;
  784. }
  785. static int eth16i_close(struct net_device *dev)
  786. {
  787. struct eth16i_local *lp = (struct eth16i_local *)dev->priv;
  788. int ioaddr = dev->base_addr;
  789. eth16i_reset(dev);
  790. /* Turn off interrupts*/
  791. outw(ETH16I_INTR_OFF, ioaddr + TX_INTR_REG);  
  792. netif_stop_queue(dev);
  793. lp->open_time = 0;
  794. /* Disable transmit and receive */
  795. BITSET(ioaddr + CONFIG_REG_0, DLC_EN);
  796. /* Reset the chip */
  797. /* outb(0xff, ioaddr + RESET); */
  798. /* outw(0xffff, ioaddr + TX_STATUS_REG);    */
  799. outb(0x00, ioaddr + CONFIG_REG_1);
  800. return 0;
  801. }
  802. static void eth16i_timeout(struct net_device *dev)
  803. {
  804. struct eth16i_local *lp = (struct eth16i_local *)dev->priv;
  805. int ioaddr = dev->base_addr;
  806. /* 
  807.    If we get here, some higher level has decided that 
  808.    we are broken. There should really be a "kick me" 
  809.    function call instead. 
  810.    */
  811. outw(ETH16I_INTR_OFF, ioaddr + TX_INTR_REG);
  812. printk(KERN_WARNING "%s: transmit timed out with status %04x, %s ?n", 
  813.        dev->name,
  814. inw(ioaddr + TX_STATUS_REG),  (inb(ioaddr + TX_STATUS_REG) & TX_DONE) ? 
  815.        "IRQ conflict" : "network cable problem");
  816. dev->trans_start = jiffies;
  817. /* Let's dump all registers */
  818. if(eth16i_debug > 0) { 
  819. printk(KERN_DEBUG "%s: timeout: %02x %02x %02x %02x %02x %02x %02x %02x.n",
  820.        dev->name, inb(ioaddr + 0), 
  821.        inb(ioaddr + 1), inb(ioaddr + 2), 
  822.        inb(ioaddr + 3), inb(ioaddr + 4), 
  823.        inb(ioaddr + 5),
  824.        inb(ioaddr + 6), inb(ioaddr + 7));
  825. printk(KERN_DEBUG "%s: transmit start reg: %02x. collision reg %02xn",
  826.        dev->name, inb(ioaddr + TRANSMIT_START_REG),
  827.        inb(ioaddr + COL_16_REG));
  828. printk(KERN_DEBUG "lp->tx_queue = %dn", lp->tx_queue);
  829. printk(KERN_DEBUG "lp->tx_queue_len = %dn", lp->tx_queue_len);
  830. printk(KERN_DEBUG "lp->tx_started = %dn", lp->tx_started);
  831. }
  832. lp->stats.tx_errors++;
  833. eth16i_reset(dev);
  834. dev->trans_start = jiffies;
  835. outw(ETH16I_INTR_ON, ioaddr + TX_INTR_REG);
  836. netif_wake_queue(dev);
  837. }
  838. static int eth16i_tx(struct sk_buff *skb, struct net_device *dev)
  839. {
  840. struct eth16i_local *lp = (struct eth16i_local *)dev->priv;
  841. int ioaddr = dev->base_addr;
  842. int status = 0;
  843. ushort length = ETH_ZLEN < skb->len ? skb->len : ETH_ZLEN;
  844. unsigned char *buf = skb->data;
  845. unsigned long flags;
  846. netif_stop_queue(dev);
  847. /* Turn off TX interrupts */
  848. outw(ETH16I_INTR_OFF, ioaddr + TX_INTR_REG);
  849. /* We would be better doing the disable_irq tricks the 3c509 does,
  850.    that would make this suck a lot less */
  851.    
  852. spin_lock_irqsave(&lp->lock, flags);
  853. if( (length + 2) > (lp->tx_buf_size - lp->tx_queue_len)) {
  854. if(eth16i_debug > 0) 
  855. printk(KERN_WARNING "%s: Transmit buffer full.n", dev->name);  
  856. else {
  857. outw(length, ioaddr + DATAPORT);
  858. if( ioaddr < 0x1000 ) 
  859. outsw(ioaddr + DATAPORT, buf, (length + 1) >> 1);
  860. else {
  861. unsigned char frag = length % 4;
  862. outsl(ioaddr + DATAPORT, buf, length >> 2);
  863. if( frag != 0 ) {
  864. outsw(ioaddr + DATAPORT, (buf + (length & 0xFFFC)), 1);
  865. if( frag == 3 ) 
  866. outsw(ioaddr + DATAPORT, 
  867.       (buf + (length & 0xFFFC) + 2), 1);
  868. }
  869. }
  870. lp->tx_buffered_packets++;
  871. lp->tx_buffered_bytes = length;
  872. lp->tx_queue++;
  873. lp->tx_queue_len += length + 2;
  874. }
  875. lp->tx_buf_busy = 0;
  876. if(lp->tx_started == 0) {
  877. /* If the transmitter is idle..always trigger a transmit */
  878. outb(TX_START | lp->tx_queue, ioaddr + TRANSMIT_START_REG);
  879. lp->tx_queue = 0;
  880. lp->tx_queue_len = 0;
  881. dev->trans_start = jiffies;
  882. lp->tx_started = 1;
  883. netif_wake_queue(dev);
  884. }
  885. else if(lp->tx_queue_len < lp->tx_buf_size - (ETH_FRAME_LEN + 2)) {
  886. /* There is still more room for one more packet in tx buffer */
  887. netif_wake_queue(dev);
  888. }
  889. spin_unlock_irqrestore(&lp->lock, flags);
  890. outw(ETH16I_INTR_ON, ioaddr + TX_INTR_REG);
  891. /* Turn TX interrupts back on */
  892. /* outb(TX_INTR_DONE | TX_INTR_16_COL, ioaddr + TX_INTR_REG); */
  893. status = 0;
  894. dev_kfree_skb(skb);
  895. return 0;
  896. }
  897. static void eth16i_rx(struct net_device *dev)
  898. {
  899. struct eth16i_local *lp = (struct eth16i_local *)dev->priv;
  900. int ioaddr = dev->base_addr;
  901. int boguscount = MAX_RX_LOOP;
  902. /* Loop until all packets have been read */
  903. while( (inb(ioaddr + RECEIVE_MODE_REG) & RX_BUFFER_EMPTY) == 0) {
  904. /* Read status byte from receive buffer */ 
  905. ushort status = inw(ioaddr + DATAPORT);
  906. /* Get the size of the packet from receive buffer */
  907. ushort pkt_len = inw(ioaddr + DATAPORT);
  908. if(eth16i_debug > 4)
  909. printk(KERN_DEBUG "%s: Receiving packet mode %02x status %04x.n", 
  910.        dev->name, 
  911.        inb(ioaddr + RECEIVE_MODE_REG), status);
  912. if( !(status & PKT_GOOD) ) {
  913. lp->stats.rx_errors++;
  914. if( (pkt_len < ETH_ZLEN) || (pkt_len > ETH_FRAME_LEN) ) {
  915. lp->stats.rx_length_errors++;
  916. eth16i_reset(dev);
  917. return;
  918. }
  919. else { 
  920. eth16i_skip_packet(dev);
  921. lp->stats.rx_dropped++;
  922. }
  923. }
  924. else {   /* Ok so now we should have a good packet */
  925. struct sk_buff *skb;
  926. skb = dev_alloc_skb(pkt_len + 3);
  927. if( skb == NULL ) {
  928. printk(KERN_WARNING "%s: Could'n allocate memory for packet (len %d)n", 
  929.        dev->name, pkt_len);
  930. eth16i_skip_packet(dev);
  931. lp->stats.rx_dropped++;
  932. break;
  933. }
  934. skb->dev = dev;
  935. skb_reserve(skb,2);
  936. /* 
  937.    Now let's get the packet out of buffer.
  938.    size is (pkt_len + 1) >> 1, cause we are now reading words
  939.    and it have to be even aligned.
  940.    */ 
  941. if(ioaddr < 0x1000) 
  942. insw(ioaddr + DATAPORT, skb_put(skb, pkt_len), 
  943.      (pkt_len + 1) >> 1);
  944. else {
  945. unsigned char *buf = skb_put(skb, pkt_len);
  946. unsigned char frag = pkt_len % 4;
  947. insl(ioaddr + DATAPORT, buf, pkt_len >> 2);
  948. if(frag != 0) {
  949. unsigned short rest[2];
  950. rest[0] = inw( ioaddr + DATAPORT );
  951. if(frag == 3)
  952. rest[1] = inw( ioaddr + DATAPORT );
  953. memcpy(buf + (pkt_len & 0xfffc), (char *)rest, frag);
  954. }
  955. }
  956. skb->protocol=eth_type_trans(skb, dev);
  957. if( eth16i_debug > 5 ) {
  958. int i;
  959. printk(KERN_DEBUG "%s: Received packet of length %d.n", 
  960.        dev->name, pkt_len);
  961. for(i = 0; i < 14; i++) 
  962. printk(KERN_DEBUG " %02x", skb->data[i]);
  963. printk(KERN_DEBUG ".n");
  964. }
  965. netif_rx(skb);
  966. dev->last_rx = jiffies;
  967. lp->stats.rx_packets++;
  968. lp->stats.rx_bytes += pkt_len;
  969. } /* else */
  970. if(--boguscount <= 0)
  971. break;
  972. } /* while */
  973. }
  974. static void eth16i_interrupt(int irq, void *dev_id, struct pt_regs *regs)
  975. {
  976. struct net_device *dev = dev_id;
  977. struct eth16i_local *lp;
  978. int ioaddr = 0, status;
  979. ioaddr = dev->base_addr;
  980. lp = (struct eth16i_local *)dev->priv;
  981. /* Turn off all interrupts from adapter */
  982. outw(ETH16I_INTR_OFF, ioaddr + TX_INTR_REG);
  983. /* eth16i_tx wont be called */
  984. spin_lock(&lp->lock);
  985. status = inw(ioaddr + TX_STATUS_REG);      /* Get the status */
  986. outw(status, ioaddr + TX_STATUS_REG);      /* Clear status bits */
  987. if(eth16i_debug > 3)
  988. printk(KERN_DEBUG "%s: Interrupt with status %04x.n", dev->name, status);
  989. if( status & 0x7f00 ) {
  990. lp->stats.rx_errors++;
  991. if(status & (BUS_RD_ERR << 8) ) 
  992. printk(KERN_WARNING "%s: Bus read error.n",dev->name);
  993. if(status & (SHORT_PKT_ERR << 8) )   lp->stats.rx_length_errors++;
  994. if(status & (ALIGN_ERR << 8) )       lp->stats.rx_frame_errors++;
  995. if(status & (CRC_ERR << 8) )     lp->stats.rx_crc_errors++;
  996. if(status & (RX_BUF_OVERFLOW << 8) ) lp->stats.rx_over_errors++;
  997. }
  998. if( status & 0x001a) {
  999. lp->stats.tx_errors++;
  1000. if(status & CR_LOST) lp->stats.tx_carrier_errors++;
  1001. if(status & TX_JABBER_ERR) lp->stats.tx_window_errors++;
  1002. #if 0        
  1003. if(status & COLLISION) {
  1004. lp->stats.collisions += 
  1005. ((inb(ioaddr+TRANSMIT_MODE_REG) & 0xF0) >> 4);
  1006. }
  1007. #endif
  1008. if(status & COLLISIONS_16) {
  1009. if(lp->col_16 < MAX_COL_16) { 
  1010. lp->col_16++;
  1011. lp->stats.collisions++;
  1012. /* Resume transmitting, skip failed packet */
  1013. outb(0x02, ioaddr + COL_16_REG);
  1014. }
  1015. else {
  1016. printk(KERN_WARNING "%s: bailing out due to many consecutive 16-in-a-row collisions. Network cable problem?n", dev->name);
  1017. }
  1018. }
  1019. }
  1020. if( status & 0x00ff ) {          /* Let's check the transmit status reg */
  1021. if(status & TX_DONE) {         /* The transmit has been done */
  1022. lp->stats.tx_packets = lp->tx_buffered_packets;
  1023. lp->stats.tx_bytes += lp->tx_buffered_bytes;
  1024. lp->col_16 = 0;    
  1025. if(lp->tx_queue) {           /* Is there still packets ? */
  1026. /* There was packet(s) so start transmitting and write also
  1027.    how many packets there is to be sended */
  1028. outb(TX_START | lp->tx_queue, ioaddr + TRANSMIT_START_REG);
  1029. lp->tx_queue = 0;
  1030. lp->tx_queue_len = 0;
  1031. lp->tx_started = 1;
  1032. }
  1033. else {
  1034. lp->tx_started = 0;
  1035. }
  1036. netif_wake_queue(dev);
  1037. }
  1038. }
  1039. if( ( status & 0x8000 ) || 
  1040.     ( (inb(ioaddr + RECEIVE_MODE_REG) & RX_BUFFER_EMPTY) == 0) ) {
  1041. eth16i_rx(dev);  /* We have packet in receive buffer */
  1042. }  
  1043. /* Turn interrupts back on */
  1044. outw(ETH16I_INTR_ON, ioaddr + TX_INTR_REG);
  1045. if(lp->tx_queue_len < lp->tx_buf_size - (ETH_FRAME_LEN + 2)) {
  1046. /* There is still more room for one more packet in tx buffer */
  1047. netif_wake_queue(dev);
  1048. }
  1049. spin_unlock(&lp->lock);
  1050. return;
  1051. }
  1052. static void eth16i_skip_packet(struct net_device *dev)
  1053. {  
  1054. int ioaddr = dev->base_addr;
  1055. inw(ioaddr + DATAPORT);
  1056. inw(ioaddr + DATAPORT);
  1057. inw(ioaddr + DATAPORT);
  1058. outb(SKIP_RX_PACKET, ioaddr + FILTER_SELF_RX_REG);
  1059. while( inb( ioaddr + FILTER_SELF_RX_REG ) != 0);
  1060. }
  1061. static void eth16i_reset(struct net_device *dev)
  1062. {
  1063. struct eth16i_local *lp = (struct eth16i_local *)dev->priv;
  1064. int ioaddr = dev->base_addr;
  1065. if(eth16i_debug > 1) 
  1066. printk(KERN_DEBUG "%s: Resetting device.n", dev->name);
  1067. BITSET(ioaddr + CONFIG_REG_0, DLC_EN);
  1068. outw(0xffff, ioaddr + TX_STATUS_REG);    
  1069. eth16i_select_regbank(2, ioaddr);
  1070. lp->tx_started = 0;
  1071. lp->tx_buf_busy = 0;
  1072. lp->tx_queue = 0;
  1073. lp->tx_queue_len = 0;    
  1074. BITCLR(ioaddr + CONFIG_REG_0, DLC_EN);
  1075. }
  1076. static void eth16i_multicast(struct net_device *dev)
  1077. {
  1078. int ioaddr = dev->base_addr;
  1079.   
  1080. if(dev->mc_count || dev->flags&(IFF_ALLMULTI|IFF_PROMISC)) 
  1081. {
  1082. dev->flags|=IFF_PROMISC; /* Must do this */
  1083. outb(3, ioaddr + RECEIVE_MODE_REG);    
  1084. } else {
  1085. outb(2, ioaddr + RECEIVE_MODE_REG);
  1086. }
  1087. }
  1088. static struct net_device_stats *eth16i_get_stats(struct net_device *dev)
  1089. {
  1090. struct eth16i_local *lp = (struct eth16i_local *)dev->priv;
  1091. return &lp->stats;
  1092. }
  1093. static void eth16i_select_regbank(unsigned char banknbr, int ioaddr)
  1094. {
  1095. unsigned char data;
  1096. data = inb(ioaddr + CONFIG_REG_1);
  1097. outb( ((data & 0xF3) | ( (banknbr & 0x03) << 2)), ioaddr + CONFIG_REG_1); 
  1098. }
  1099. #ifdef MODULE
  1100. static ushort eth16i_parse_mediatype(const char* s)
  1101. {
  1102. if(!s)
  1103. return E_PORT_FROM_EPROM;
  1104.         if (!strncmp(s, "bnc", 3))
  1105. return E_PORT_BNC;
  1106.         else if (!strncmp(s, "tp", 2))
  1107.                 return E_PORT_TP;
  1108.         else if (!strncmp(s, "dix", 3))
  1109.                 return E_PORT_DIX;
  1110.         else if (!strncmp(s, "auto", 4))
  1111. return E_PORT_AUTO;
  1112. else
  1113. return E_PORT_FROM_EPROM;
  1114. }
  1115. #define MAX_ETH16I_CARDS 4  /* Max number of Eth16i cards per module */
  1116. static struct net_device dev_eth16i[MAX_ETH16I_CARDS];
  1117. static int io[MAX_ETH16I_CARDS];
  1118. #if 0
  1119. static int irq[MAX_ETH16I_CARDS];
  1120. #endif
  1121. static char* mediatype[MAX_ETH16I_CARDS];
  1122. static int debug = -1;
  1123. #if (LINUX_VERSION_CODE >= 0x20115) 
  1124. MODULE_AUTHOR("Mika Kuoppala <miku@iki.fi>");
  1125. MODULE_DESCRIPTION("ICL EtherTeam 16i/32 driver");
  1126. MODULE_LICENSE("GPL");
  1127. MODULE_PARM(io, "1-" __MODULE_STRING(MAX_ETH16I_CARDS) "i");
  1128. MODULE_PARM_DESC(io, "eth16i I/O base address(es)");
  1129. #if 0
  1130. MODULE_PARM(irq, "1-" __MODULE_STRING(MAX_ETH16I_CARDS) "i");
  1131. MODULE_PARM_DESC(irq, "eth16i interrupt request number");
  1132. #endif
  1133. MODULE_PARM(mediatype, "1-" __MODULE_STRING(MAX_ETH16I_CARDS) "s");
  1134. MODULE_PARM_DESC(mediatype, "eth16i media type of interface(s) (bnc,tp,dix,auto,eprom)");
  1135. MODULE_PARM(debug, "i");
  1136. MODULE_PARM_DESC(debug, "eth16i debug level (0-6)");
  1137. #endif
  1138. int init_module(void)
  1139. {
  1140. int this_dev, found = 0;
  1141. for(this_dev = 0; this_dev < MAX_ETH16I_CARDS; this_dev++)
  1142. {
  1143. struct net_device *dev = &dev_eth16i[this_dev];
  1144. dev->irq = 0; /* irq[this_dev]; */
  1145. dev->base_addr = io[this_dev];
  1146. dev->init = eth16i_probe;
  1147.         if(debug != -1)
  1148. eth16i_debug = debug;
  1149. if(eth16i_debug > 1)
  1150. printk(KERN_NOTICE "eth16i(%d): interface type %sn", this_dev, mediatype[this_dev] ? mediatype[this_dev] : "none" );
  1151. dev->if_port = eth16i_parse_mediatype(mediatype[this_dev]);
  1152. if(io[this_dev] == 0)
  1153. {
  1154. if(this_dev != 0) break; /* Only autoprobe 1st one */
  1155. printk(KERN_NOTICE "eth16i.c: Presently autoprobing (not recommended) for a single card.n");
  1156. }
  1157. if(register_netdev(dev) != 0)
  1158. {
  1159. printk(KERN_WARNING "eth16i.c No Eth16i card found (i/o = 0x%x).n",
  1160.        io[this_dev]);
  1161.     
  1162. if(found != 0) return 0;
  1163. return -ENXIO;
  1164. }
  1165. found++;
  1166. }
  1167. return 0;
  1168. }
  1169. void cleanup_module(void)
  1170. {
  1171. int this_dev;
  1172. for(this_dev = 0; this_dev < MAX_ETH16I_CARDS; this_dev++)
  1173. {
  1174. struct net_device* dev = &dev_eth16i[this_dev];
  1175. if(dev->priv != NULL)
  1176. {
  1177. unregister_netdev(dev);
  1178. kfree(dev->priv);
  1179. dev->priv = NULL;
  1180. free_irq(dev->irq, dev);
  1181. release_region(dev->base_addr, ETH16I_IO_EXTENT);
  1182. }
  1183. }
  1184. }
  1185. #endif /* MODULE */
  1186. /*
  1187.  * Local variables:
  1188.  *  compile-command: "gcc -DMODULE -D__KERNEL__ -Wall -Wstrict-prototypes -O6 -c eth16i.c"
  1189.  *  alt-compile-command: "gcc -DMODVERSIONS -DMODULE -D__KERNEL__ -Wall -Wstrict -prototypes -O6 -c eth16i.c"
  1190.  *  tab-width: 8
  1191.  *  c-basic-offset: 8
  1192.  *  c-indent-level: 8
  1193.  * End:
  1194.  */
  1195. /* End of file eth16i.c */