atp.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:30k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* atp.c: Attached (pocket) ethernet adapter driver for linux. */
  2. /*
  3. This is a driver for commonly OEM pocket (parallel port)
  4. ethernet adapters based on the Realtek RTL8002 and RTL8012 chips.
  5. Written 1993-2000 by Donald Becker.
  6. This software may be used and distributed according to the terms of
  7. the GNU General Public License (GPL), incorporated herein by reference.
  8. Drivers based on or derived from this code fall under the GPL and must
  9. retain the authorship, copyright and license notice.  This file is not
  10. a complete program and may only be used when the entire operating
  11. system is licensed under the GPL.
  12. Copyright 1993 United States Government as represented by the Director,
  13. National Security Agency.  Copyright 1994-2000 retained by the original
  14. author, Donald Becker. The timer-based reset code was supplied in 1995
  15. by Bill Carlson, wwc@super.org.
  16. The author may be reached as becker@scyld.com, or C/O
  17. Scyld Computing Corporation
  18. 410 Severn Ave., Suite 210
  19. Annapolis MD 21403
  20. Support information and updates available at
  21. http://www.scyld.com/network/atp.html
  22. Modular support/softnet added by Alan Cox.
  23. */
  24. static const char versionA[] =
  25. "atp.c:v1.09 8/9/2000 Donald Becker <becker@scyld.com>n";
  26. static const char versionB[] =
  27. "  http://www.scyld.com/network/atp.htmln";
  28. /* The user-configurable values.
  29.    These may be modified when a driver module is loaded.*/
  30. static int debug = 1;  /* 1 normal messages, 0 quiet .. 7 verbose. */
  31. #define net_debug debug
  32. /* Maximum events (Rx packets, etc.) to handle at each interrupt. */
  33. static int max_interrupt_work = 15;
  34. #define NUM_UNITS 2
  35. /* The standard set of ISA module parameters. */
  36. static int io[NUM_UNITS];
  37. static int irq[NUM_UNITS];
  38. static int xcvr[NUM_UNITS];  /* The data transfer mode. */
  39. /* Operational parameters that are set at compile time. */
  40. /* Time in jiffies before concluding the transmitter is hung. */
  41. #define TX_TIMEOUT  (400*HZ/1000)
  42. /*
  43. This file is a device driver for the RealTek (aka AT-Lan-Tec) pocket
  44. ethernet adapter.  This is a common low-cost OEM pocket ethernet
  45. adapter, sold under many names.
  46.   Sources:
  47. This driver was written from the packet driver assembly code provided by
  48. Vincent Bono of AT-Lan-Tec.  Ever try to figure out how a complicated
  49. device works just from the assembly code?  It ain't pretty.  The following
  50. description is written based on guesses and writing lots of special-purpose
  51. code to test my theorized operation.
  52. In 1997 Realtek made available the documentation for the second generation
  53. RTL8012 chip, which has lead to several driver improvements.
  54.   http://www.realtek.com.tw/cn/cn.html
  55. Theory of Operation
  56. The RTL8002 adapter seems to be built around a custom spin of the SEEQ
  57. controller core.  It probably has a 16K or 64K internal packet buffer, of
  58. which the first 4K is devoted to transmit and the rest to receive.
  59. The controller maintains the queue of received packet and the packet buffer
  60. access pointer internally, with only 'reset to beginning' and 'skip to next
  61. packet' commands visible.  The transmit packet queue holds two (or more?)
  62. packets: both 'retransmit this packet' (due to collision) and 'transmit next
  63. packet' commands must be started by hand.
  64. The station address is stored in a standard bit-serial EEPROM which must be
  65. read (ughh) by the device driver.  (Provisions have been made for
  66. substituting a 74S288 PROM, but I haven't gotten reports of any models
  67. using it.)  Unlike built-in devices, a pocket adapter can temporarily lose
  68. power without indication to the device driver.  The major effect is that
  69. the station address, receive filter (promiscuous, etc.) and transceiver
  70. must be reset.
  71. The controller itself has 16 registers, some of which use only the lower
  72. bits.  The registers are read and written 4 bits at a time.  The four bit
  73. register address is presented on the data lines along with a few additional
  74. timing and control bits.  The data is then read from status port or written
  75. to the data port.
  76. Correction: the controller has two banks of 16 registers.  The second
  77. bank contains only the multicast filter table (now used) and the EEPROM
  78. access registers.
  79. Since the bulk data transfer of the actual packets through the slow
  80. parallel port dominates the driver's running time, four distinct data
  81. (non-register) transfer modes are provided by the adapter, two in each
  82. direction.  In the first mode timing for the nibble transfers is
  83. provided through the data port.  In the second mode the same timing is
  84. provided through the control port.  In either case the data is read from
  85. the status port and written to the data port, just as it is accessing
  86. registers.
  87. In addition to the basic data transfer methods, several more are modes are
  88. created by adding some delay by doing multiple reads of the data to allow
  89. it to stabilize.  This delay seems to be needed on most machines.
  90. The data transfer mode is stored in the 'dev->if_port' field.  Its default
  91. value is '4'.  It may be overridden at boot-time using the third parameter
  92. to the "ether=..." initialization.
  93. The header file <atp.h> provides inline functions that encapsulate the
  94. register and data access methods.  These functions are hand-tuned to
  95. generate reasonable object code.  This header file also documents my
  96. interpretations of the device registers.
  97. */
  98. #include <linux/kernel.h>
  99. #include <linux/module.h>
  100. #include <linux/sched.h>
  101. #include <linux/types.h>
  102. #include <linux/fcntl.h>
  103. #include <linux/interrupt.h>
  104. #include <linux/ptrace.h>
  105. #include <linux/ioport.h>
  106. #include <linux/in.h>
  107. #include <linux/slab.h>
  108. #include <linux/string.h>
  109. #include <asm/system.h>
  110. #include <asm/bitops.h>
  111. #include <asm/io.h>
  112. #include <asm/dma.h>
  113. #include <linux/errno.h>
  114. #include <linux/init.h>
  115. #include <linux/crc32.h>
  116. #include <linux/netdevice.h>
  117. #include <linux/etherdevice.h>
  118. #include <linux/skbuff.h>
  119. #include <linux/spinlock.h>
  120. #include <linux/delay.h>
  121. #include "atp.h"
  122. MODULE_AUTHOR("Donald Becker <becker@scyld.com>");
  123. MODULE_DESCRIPTION("RealTek RTL8002/8012 parallel port Ethernet driver");
  124. MODULE_LICENSE("GPL");
  125. MODULE_PARM(max_interrupt_work, "i");
  126. MODULE_PARM(debug, "i");
  127. MODULE_PARM(io, "1-" __MODULE_STRING(NUM_UNITS) "i");
  128. MODULE_PARM(irq, "1-" __MODULE_STRING(NUM_UNITS) "i");
  129. MODULE_PARM(xcvr, "1-" __MODULE_STRING(NUM_UNITS) "i");
  130. MODULE_PARM_DESC(max_interrupt_work, "ATP maximum events handled per interrupt");
  131. MODULE_PARM_DESC(debug, "ATP debug level (0-7)");
  132. MODULE_PARM_DESC(io, "ATP I/O base address(es)");
  133. MODULE_PARM_DESC(irq, "ATP IRQ number(s)");
  134. MODULE_PARM_DESC(xcvr, "ATP tranceiver(s) (0=internal, 1=external)");
  135. #define RUN_AT(x) (jiffies + (x))
  136. /* The number of low I/O ports used by the ethercard. */
  137. #define ETHERCARD_TOTAL_SIZE 3
  138. /* Sequence to switch an 8012 from printer mux to ethernet mode. */
  139. static char mux_8012[] = { 0xff, 0xf7, 0xff, 0xfb, 0xf3, 0xfb, 0xff, 0xf7,};
  140. struct net_local {
  141.     spinlock_t lock;
  142.     struct net_device *next_module;
  143.     struct net_device_stats stats;
  144.     struct timer_list timer; /* Media selection timer. */
  145.     long last_rx_time; /* Last Rx, in jiffies, to handle Rx hang. */
  146.     int saved_tx_size;
  147.     unsigned int tx_unit_busy:1;
  148.     unsigned char re_tx, /* Number of packet retransmissions. */
  149. addr_mode, /* Current Rx filter e.g. promiscuous, etc. */
  150. pac_cnt_in_tx_buf,
  151. chip_type;
  152. };
  153. /* This code, written by wwc@super.org, resets the adapter every
  154.    TIMED_CHECKER ticks.  This recovers from an unknown error which
  155.    hangs the device. */
  156. #define TIMED_CHECKER (HZ/4)
  157. #ifdef TIMED_CHECKER
  158. #include <linux/timer.h>
  159. static void atp_timed_checker(unsigned long ignored);
  160. #endif
  161. /* Index to functions, as function prototypes. */
  162. static int atp_probe1(struct net_device *dev, long ioaddr);
  163. static void get_node_ID(struct net_device *dev);
  164. static unsigned short eeprom_op(long ioaddr, unsigned int cmd);
  165. static int net_open(struct net_device *dev);
  166. static void hardware_init(struct net_device *dev);
  167. static void write_packet(long ioaddr, int length, unsigned char *packet, int mode);
  168. static void trigger_send(long ioaddr, int length);
  169. static int atp_send_packet(struct sk_buff *skb, struct net_device *dev);
  170. static void atp_interrupt(int irq, void *dev_id, struct pt_regs *regs);
  171. static void net_rx(struct net_device *dev);
  172. static void read_block(long ioaddr, int length, unsigned char *buffer, int data_mode);
  173. static int net_close(struct net_device *dev);
  174. static struct net_device_stats *net_get_stats(struct net_device *dev);
  175. static void set_rx_mode_8002(struct net_device *dev);
  176. static void set_rx_mode_8012(struct net_device *dev);
  177. static void tx_timeout(struct net_device *dev);
  178. /* A list of all installed ATP devices, for removing the driver module. */
  179. static struct net_device *root_atp_dev;
  180. /* Check for a network adapter of this type, and return '0' iff one exists.
  181.    If dev->base_addr == 0, probe all likely locations.
  182.    If dev->base_addr == 1, always return failure.
  183.    If dev->base_addr == 2, allocate space for the device and return success
  184.    (detachable devices only).
  185.    */
  186. static int __init atp_init(struct net_device *dev)
  187. {
  188. int *port, ports[] = {0x378, 0x278, 0x3bc, 0};
  189. int base_addr = dev ? dev->base_addr : io[0];
  190. if (base_addr > 0x1ff) /* Check a single specified location. */
  191. return atp_probe1(dev, base_addr);
  192. else if (base_addr == 1) /* Don't probe at all. */
  193. return -ENXIO;
  194. for (port = ports; *port; port++) {
  195. long ioaddr = *port;
  196. outb(0x57, ioaddr + PAR_DATA);
  197. if (inb(ioaddr + PAR_DATA) != 0x57)
  198. continue;
  199. if (atp_probe1(dev, ioaddr) == 0)
  200. return 0;
  201. }
  202. return -ENODEV;
  203. }
  204. static int __init atp_probe1(struct net_device *dev, long ioaddr)
  205. {
  206. struct net_local *lp;
  207. int saved_ctrl_reg, status, i;
  208. outb(0xff, ioaddr + PAR_DATA);
  209. /* Save the original value of the Control register, in case we guessed
  210.    wrong. */
  211. saved_ctrl_reg = inb(ioaddr + PAR_CONTROL);
  212. if (net_debug > 3)
  213. printk("atp: Control register was %#2.2x.n", saved_ctrl_reg);
  214. /* IRQEN=0, SLCTB=high INITB=high, AUTOFDB=high, STBB=high. */
  215. outb(0x04, ioaddr + PAR_CONTROL);
  216. #ifndef final_version
  217. if (net_debug > 3) {
  218. /* Turn off the printer multiplexer on the 8012. */
  219. for (i = 0; i < 8; i++)
  220. outb(mux_8012[i], ioaddr + PAR_DATA);
  221. write_reg(ioaddr, MODSEL, 0x00);
  222. printk("atp: Registers are ");
  223. for (i = 0; i < 32; i++)
  224. printk(" %2.2x", read_nibble(ioaddr, i));
  225. printk(".n");
  226. }
  227. #endif
  228. /* Turn off the printer multiplexer on the 8012. */
  229. for (i = 0; i < 8; i++)
  230. outb(mux_8012[i], ioaddr + PAR_DATA);
  231. write_reg_high(ioaddr, CMR1, CMR1h_RESET);
  232. /* udelay() here? */
  233. status = read_nibble(ioaddr, CMR1);
  234. if (net_debug > 3) {
  235. printk(KERN_DEBUG "atp: Status nibble was %#2.2x..", status);
  236. for (i = 0; i < 32; i++)
  237. printk(" %2.2x", read_nibble(ioaddr, i));
  238. printk("n");
  239. }
  240. if ((status & 0x78) != 0x08) {
  241. /* The pocket adapter probe failed, restore the control register. */
  242. outb(saved_ctrl_reg, ioaddr + PAR_CONTROL);
  243. return -ENODEV;
  244. }
  245. status = read_nibble(ioaddr, CMR2_h);
  246. if ((status & 0x78) != 0x10) {
  247. outb(saved_ctrl_reg, ioaddr + PAR_CONTROL);
  248. return -ENODEV;
  249. }
  250. dev = init_etherdev(dev, sizeof(struct net_local));
  251. if (!dev)
  252. return -ENOMEM;
  253. SET_MODULE_OWNER(dev);
  254. /* Find the IRQ used by triggering an interrupt. */
  255. write_reg_byte(ioaddr, CMR2, 0x01); /* No accept mode, IRQ out. */
  256. write_reg_high(ioaddr, CMR1, CMR1h_RxENABLE | CMR1h_TxENABLE); /* Enable Tx and Rx. */
  257. /* Omit autoIRQ routine for now. Use "table lookup" instead.  Uhgggh. */
  258. if (irq[0])
  259. dev->irq = irq[0];
  260. else if (ioaddr == 0x378)
  261. dev->irq = 7;
  262. else
  263. dev->irq = 5;
  264. write_reg_high(ioaddr, CMR1, CMR1h_TxRxOFF); /* Disable Tx and Rx units. */
  265. write_reg(ioaddr, CMR2, CMR2_NULL);
  266. dev->base_addr = ioaddr;
  267. /* Read the station address PROM.  */
  268. get_node_ID(dev);
  269. #ifndef MODULE
  270. if (net_debug)
  271. printk(KERN_INFO "%s" KERN_INFO "%s", versionA, versionB);
  272. #endif
  273. printk(KERN_NOTICE "%s: Pocket adapter found at %#3lx, IRQ %d, SAPROM "
  274.    "%02X:%02X:%02X:%02X:%02X:%02X.n", dev->name, dev->base_addr,
  275.    dev->irq, dev->dev_addr[0], dev->dev_addr[1], dev->dev_addr[2],
  276.    dev->dev_addr[3], dev->dev_addr[4], dev->dev_addr[5]);
  277. /* Reset the ethernet hardware and activate the printer pass-through. */
  278.     write_reg_high(ioaddr, CMR1, CMR1h_RESET | CMR1h_MUX);
  279. /* Initialize the device structure. */
  280. ether_setup(dev);
  281. if (dev->priv == NULL)
  282. dev->priv = kmalloc(sizeof(struct net_local), GFP_KERNEL);
  283. if (dev->priv == NULL)
  284. return -ENOMEM;
  285. memset(dev->priv, 0, sizeof(struct net_local));
  286. lp = (struct net_local *)dev->priv;
  287. lp->chip_type = RTL8002;
  288. lp->addr_mode = CMR2h_Normal;
  289. spin_lock_init(&lp->lock);
  290. lp->next_module = root_atp_dev;
  291. root_atp_dev = dev;
  292. /* For the ATP adapter the "if_port" is really the data transfer mode. */
  293. if (xcvr[0])
  294. dev->if_port = xcvr[0];
  295. else
  296. dev->if_port = (dev->mem_start & 0xf) ? (dev->mem_start & 0x7) : 4;
  297. if (dev->mem_end & 0xf)
  298. net_debug = dev->mem_end & 7;
  299. dev->open = net_open;
  300. dev->stop = net_close;
  301. dev->hard_start_xmit = atp_send_packet;
  302. dev->get_stats = net_get_stats;
  303. dev->set_multicast_list =
  304.   lp->chip_type == RTL8002 ? &set_rx_mode_8002 : &set_rx_mode_8012;
  305. dev->tx_timeout = tx_timeout;
  306. dev->watchdog_timeo = TX_TIMEOUT;
  307. return 0;
  308. }
  309. /* Read the station address PROM, usually a word-wide EEPROM. */
  310. static void __init get_node_ID(struct net_device *dev)
  311. {
  312. long ioaddr = dev->base_addr;
  313. int sa_offset = 0;
  314. int i;
  315. write_reg(ioaddr, CMR2, CMR2_EEPROM);   /* Point to the EEPROM control registers. */
  316. /* Some adapters have the station address at offset 15 instead of offset
  317.    zero.  Check for it, and fix it if needed. */
  318. if (eeprom_op(ioaddr, EE_READ(0)) == 0xffff)
  319. sa_offset = 15;
  320. for (i = 0; i < 3; i++)
  321. ((u16 *)dev->dev_addr)[i] =
  322. be16_to_cpu(eeprom_op(ioaddr, EE_READ(sa_offset + i)));
  323. write_reg(ioaddr, CMR2, CMR2_NULL);
  324. }
  325. /*
  326.   An EEPROM read command starts by shifting out 0x60+address, and then
  327.   shifting in the serial data. See the NatSemi databook for details.
  328.  *    ________________
  329.  * CS : __|
  330.  *    ___    ___
  331.  * CLK: ______|   |___|   |
  332.  *  __ _______ _______
  333.  * DI :  __X_______X_______X
  334.  * DO :  _________X_______X
  335.  */
  336. static unsigned short __init eeprom_op(long ioaddr, unsigned int cmd)
  337. {
  338. unsigned eedata_out = 0;
  339. int num_bits = EE_CMD_SIZE;
  340. while (--num_bits >= 0) {
  341. char outval = test_bit(num_bits, &cmd) ? EE_DATA_WRITE : 0;
  342. write_reg_high(ioaddr, PROM_CMD, outval | EE_CLK_LOW);
  343. write_reg_high(ioaddr, PROM_CMD, outval | EE_CLK_HIGH);
  344. eedata_out <<= 1;
  345. if (read_nibble(ioaddr, PROM_DATA) & EE_DATA_READ)
  346. eedata_out++;
  347. }
  348. write_reg_high(ioaddr, PROM_CMD, EE_CLK_LOW & ~EE_CS);
  349. return eedata_out;
  350. }
  351. /* Open/initialize the board.  This is called (in the current kernel)
  352.    sometime after booting when the 'ifconfig' program is run.
  353.    This routine sets everything up anew at each open, even
  354.    registers that "should" only need to be set once at boot, so that
  355.    there is non-reboot way to recover if something goes wrong.
  356.    This is an attachable device: if there is no dev->priv entry then it wasn't
  357.    probed for at boot-time, and we need to probe for it again.
  358.    */
  359. static int net_open(struct net_device *dev)
  360. {
  361. struct net_local *lp = (struct net_local *)dev->priv;
  362. int ret;
  363. /* The interrupt line is turned off (tri-stated) when the device isn't in
  364.    use.  That's especially important for "attached" interfaces where the
  365.    port or interrupt may be shared. */
  366. ret = request_irq(dev->irq, &atp_interrupt, 0, dev->name, dev);
  367. if (ret)
  368. return ret;
  369. hardware_init(dev);
  370. init_timer(&lp->timer);
  371. lp->timer.expires = RUN_AT(TIMED_CHECKER);
  372. lp->timer.data = (unsigned long)dev;
  373. lp->timer.function = &atp_timed_checker;    /* timer handler */
  374. add_timer(&lp->timer);
  375. netif_start_queue(dev);
  376. return 0;
  377. }
  378. /* This routine resets the hardware.  We initialize everything, assuming that
  379.    the hardware may have been temporarily detached. */
  380. static void hardware_init(struct net_device *dev)
  381. {
  382. struct net_local *lp = (struct net_local *)dev->priv;
  383. long ioaddr = dev->base_addr;
  384.     int i;
  385. /* Turn off the printer multiplexer on the 8012. */
  386. for (i = 0; i < 8; i++)
  387. outb(mux_8012[i], ioaddr + PAR_DATA);
  388. write_reg_high(ioaddr, CMR1, CMR1h_RESET);
  389.     for (i = 0; i < 6; i++)
  390. write_reg_byte(ioaddr, PAR0 + i, dev->dev_addr[i]);
  391. write_reg_high(ioaddr, CMR2, lp->addr_mode);
  392. if (net_debug > 2) {
  393. printk(KERN_DEBUG "%s: Reset: current Rx mode %d.n", dev->name,
  394.    (read_nibble(ioaddr, CMR2_h) >> 3) & 0x0f);
  395. }
  396.     write_reg(ioaddr, CMR2, CMR2_IRQOUT);
  397.     write_reg_high(ioaddr, CMR1, CMR1h_RxENABLE | CMR1h_TxENABLE);
  398. /* Enable the interrupt line from the serial port. */
  399. outb(Ctrl_SelData + Ctrl_IRQEN, ioaddr + PAR_CONTROL);
  400. /* Unmask the interesting interrupts. */
  401.     write_reg(ioaddr, IMR, ISR_RxOK | ISR_TxErr | ISR_TxOK);
  402.     write_reg_high(ioaddr, IMR, ISRh_RxErr);
  403. lp->tx_unit_busy = 0;
  404.     lp->pac_cnt_in_tx_buf = 0;
  405. lp->saved_tx_size = 0;
  406. }
  407. static void trigger_send(long ioaddr, int length)
  408. {
  409. write_reg_byte(ioaddr, TxCNT0, length & 0xff);
  410. write_reg(ioaddr, TxCNT1, length >> 8);
  411. write_reg(ioaddr, CMR1, CMR1_Xmit);
  412. }
  413. static void write_packet(long ioaddr, int length, unsigned char *packet, int data_mode)
  414. {
  415.     length = (length + 1) & ~1; /* Round up to word length. */
  416.     outb(EOC+MAR, ioaddr + PAR_DATA);
  417.     if ((data_mode & 1) == 0) {
  418. /* Write the packet out, starting with the write addr. */
  419. outb(WrAddr+MAR, ioaddr + PAR_DATA);
  420. do {
  421. write_byte_mode0(ioaddr, *packet++);
  422. } while (--length > 0) ;
  423.     } else {
  424. /* Write the packet out in slow mode. */
  425. unsigned char outbyte = *packet++;
  426. outb(Ctrl_LNibWrite + Ctrl_IRQEN, ioaddr + PAR_CONTROL);
  427. outb(WrAddr+MAR, ioaddr + PAR_DATA);
  428. outb((outbyte & 0x0f)|0x40, ioaddr + PAR_DATA);
  429. outb(outbyte & 0x0f, ioaddr + PAR_DATA);
  430. outbyte >>= 4;
  431. outb(outbyte & 0x0f, ioaddr + PAR_DATA);
  432. outb(Ctrl_HNibWrite + Ctrl_IRQEN, ioaddr + PAR_CONTROL);
  433. while (--length > 0)
  434. write_byte_mode1(ioaddr, *packet++);
  435.     }
  436.     /* Terminate the Tx frame.  End of write: ECB. */
  437.     outb(0xff, ioaddr + PAR_DATA);
  438.     outb(Ctrl_HNibWrite | Ctrl_SelData | Ctrl_IRQEN, ioaddr + PAR_CONTROL);
  439. }
  440. static void tx_timeout(struct net_device *dev)
  441. {
  442. struct net_local *np = (struct net_local *)dev->priv;
  443. long ioaddr = dev->base_addr;
  444. printk(KERN_WARNING "%s: Transmit timed out, %s?n", dev->name,
  445.    inb(ioaddr + PAR_CONTROL) & 0x10 ? "network cable problem"
  446.    :  "IRQ conflict");
  447. np->stats.tx_errors++;
  448. /* Try to restart the adapter. */
  449. hardware_init(dev);
  450. dev->trans_start = jiffies;
  451. netif_wake_queue(dev);
  452. np->stats.tx_errors++;
  453. }
  454. static int atp_send_packet(struct sk_buff *skb, struct net_device *dev)
  455. {
  456. struct net_local *lp = (struct net_local *)dev->priv;
  457. long ioaddr = dev->base_addr;
  458. int length;
  459. long flags;
  460. length = ETH_ZLEN < skb->len ? skb->len : ETH_ZLEN;
  461. netif_stop_queue(dev);
  462. /* Disable interrupts by writing 0x00 to the Interrupt Mask Register.
  463.    This sequence must not be interrupted by an incoming packet. */
  464. spin_lock_irqsave(&lp->lock, flags);
  465. write_reg(ioaddr, IMR, 0);
  466. write_reg_high(ioaddr, IMR, 0);
  467. spin_unlock_irqrestore(&lp->lock, flags);
  468. write_packet(ioaddr, length, skb->data, dev->if_port);
  469. lp->pac_cnt_in_tx_buf++;
  470. if (lp->tx_unit_busy == 0) {
  471. trigger_send(ioaddr, length);
  472. lp->saved_tx_size = 0;  /* Redundant */
  473. lp->re_tx = 0;
  474. lp->tx_unit_busy = 1;
  475. } else
  476. lp->saved_tx_size = length;
  477. /* Re-enable the LPT interrupts. */
  478. write_reg(ioaddr, IMR, ISR_RxOK | ISR_TxErr | ISR_TxOK);
  479. write_reg_high(ioaddr, IMR, ISRh_RxErr);
  480. dev->trans_start = jiffies;
  481. dev_kfree_skb (skb);
  482. return 0;
  483. }
  484. /* The typical workload of the driver:
  485.    Handle the network interface interrupts. */
  486. static void atp_interrupt(int irq, void *dev_instance, struct pt_regs * regs)
  487. {
  488. struct net_device *dev = (struct net_device *)dev_instance;
  489. struct net_local *lp;
  490. long ioaddr;
  491. static int num_tx_since_rx;
  492. int boguscount = max_interrupt_work;
  493. if (dev == NULL) {
  494. printk(KERN_ERR "ATP_interrupt(): irq %d for unknown device.n", irq);
  495. return;
  496. }
  497. ioaddr = dev->base_addr;
  498. lp = (struct net_local *)dev->priv;
  499. spin_lock(&lp->lock);
  500. /* Disable additional spurious interrupts. */
  501. outb(Ctrl_SelData, ioaddr + PAR_CONTROL);
  502. /* The adapter's output is currently the IRQ line, switch it to data. */
  503. write_reg(ioaddr, CMR2, CMR2_NULL);
  504. write_reg(ioaddr, IMR, 0);
  505. if (net_debug > 5) printk(KERN_DEBUG "%s: In interrupt ", dev->name);
  506.     while (--boguscount > 0) {
  507. int status = read_nibble(ioaddr, ISR);
  508. if (net_debug > 5) printk("loop status %02x..", status);
  509. if (status & (ISR_RxOK<<3)) {
  510. write_reg(ioaddr, ISR, ISR_RxOK); /* Clear the Rx interrupt. */
  511. do {
  512. int read_status = read_nibble(ioaddr, CMR1);
  513. if (net_debug > 6)
  514. printk("handling Rx packet %02x..", read_status);
  515. /* We acknowledged the normal Rx interrupt, so if the interrupt
  516.    is still outstanding we must have a Rx error. */
  517. if (read_status & (CMR1_IRQ << 3)) { /* Overrun. */
  518. lp->stats.rx_over_errors++;
  519. /* Set to no-accept mode long enough to remove a packet. */
  520. write_reg_high(ioaddr, CMR2, CMR2h_OFF);
  521. net_rx(dev);
  522. /* Clear the interrupt and return to normal Rx mode. */
  523. write_reg_high(ioaddr, ISR, ISRh_RxErr);
  524. write_reg_high(ioaddr, CMR2, lp->addr_mode);
  525. } else if ((read_status & (CMR1_BufEnb << 3)) == 0) {
  526. net_rx(dev);
  527. num_tx_since_rx = 0;
  528. } else
  529. break;
  530. } while (--boguscount > 0);
  531. } else if (status & ((ISR_TxErr + ISR_TxOK)<<3)) {
  532. if (net_debug > 6)  printk("handling Tx done..");
  533. /* Clear the Tx interrupt.  We should check for too many failures
  534.    and reinitialize the adapter. */
  535. write_reg(ioaddr, ISR, ISR_TxErr + ISR_TxOK);
  536. if (status & (ISR_TxErr<<3)) {
  537. lp->stats.collisions++;
  538. if (++lp->re_tx > 15) {
  539. lp->stats.tx_aborted_errors++;
  540. hardware_init(dev);
  541. break;
  542. }
  543. /* Attempt to retransmit. */
  544. if (net_debug > 6)  printk("attempting to ReTx");
  545. write_reg(ioaddr, CMR1, CMR1_ReXmit + CMR1_Xmit);
  546. } else {
  547. /* Finish up the transmit. */
  548. lp->stats.tx_packets++;
  549. lp->pac_cnt_in_tx_buf--;
  550. if ( lp->saved_tx_size) {
  551. trigger_send(ioaddr, lp->saved_tx_size);
  552. lp->saved_tx_size = 0;
  553. lp->re_tx = 0;
  554. } else
  555. lp->tx_unit_busy = 0;
  556. netif_wake_queue(dev); /* Inform upper layers. */
  557. }
  558. num_tx_since_rx++;
  559. } else if (num_tx_since_rx > 8
  560.    && time_after(jiffies, dev->last_rx + HZ)) {
  561. if (net_debug > 2)
  562. printk(KERN_DEBUG "%s: Missed packet? No Rx after %d Tx and "
  563.    "%ld jiffies status %02x  CMR1 %02x.n", dev->name,
  564.    num_tx_since_rx, jiffies - dev->last_rx, status,
  565.    (read_nibble(ioaddr, CMR1) >> 3) & 15);
  566. lp->stats.rx_missed_errors++;
  567. hardware_init(dev);
  568. num_tx_since_rx = 0;
  569. break;
  570. } else
  571. break;
  572.     }
  573. /* This following code fixes a rare (and very difficult to track down)
  574.    problem where the adapter forgets its ethernet address. */
  575. {
  576. int i;
  577. for (i = 0; i < 6; i++)
  578. write_reg_byte(ioaddr, PAR0 + i, dev->dev_addr[i]);
  579. #if 0 && defined(TIMED_CHECKER)
  580. mod_timer(&lp->timer, RUN_AT(TIMED_CHECKER));
  581. #endif
  582. }
  583. /* Tell the adapter that it can go back to using the output line as IRQ. */
  584.     write_reg(ioaddr, CMR2, CMR2_IRQOUT);
  585. /* Enable the physical interrupt line, which is sure to be low until.. */
  586. outb(Ctrl_SelData + Ctrl_IRQEN, ioaddr + PAR_CONTROL);
  587. /* .. we enable the interrupt sources. */
  588. write_reg(ioaddr, IMR, ISR_RxOK | ISR_TxErr | ISR_TxOK);
  589. write_reg_high(ioaddr, IMR, ISRh_RxErr);  /* Hmmm, really needed? */
  590. spin_unlock(&lp->lock);
  591. if (net_debug > 5) printk("exiting interrupt.n");
  592. return;
  593. }
  594. #ifdef TIMED_CHECKER
  595. /* This following code fixes a rare (and very difficult to track down)
  596.    problem where the adapter forgets its ethernet address. */
  597. static void atp_timed_checker(unsigned long data)
  598. {
  599. struct net_device *dev = (struct net_device *)data;
  600. long ioaddr = dev->base_addr;
  601. struct net_local *lp = (struct net_local *)dev->priv;
  602. int tickssofar = jiffies - lp->last_rx_time;
  603. int i;
  604. spin_lock(&lp->lock);
  605. if (tickssofar > 2*HZ) {
  606. #if 1
  607. for (i = 0; i < 6; i++)
  608. write_reg_byte(ioaddr, PAR0 + i, dev->dev_addr[i]);
  609. lp->last_rx_time = jiffies;
  610. #else
  611. for (i = 0; i < 6; i++)
  612. if (read_cmd_byte(ioaddr, PAR0 + i) != atp_timed_dev->dev_addr[i])
  613. {
  614. struct net_local *lp = (struct net_local *)atp_timed_dev->priv;
  615. write_reg_byte(ioaddr, PAR0 + i, atp_timed_dev->dev_addr[i]);
  616. if (i == 2)
  617.   lp->stats.tx_errors++;
  618. else if (i == 3)
  619.   lp->stats.tx_dropped++;
  620. else if (i == 4)
  621.   lp->stats.collisions++;
  622. else
  623.   lp->stats.rx_errors++;
  624.   }
  625. #endif
  626. }
  627. spin_unlock(&lp->lock);
  628. lp->timer.expires = RUN_AT(TIMED_CHECKER);
  629. add_timer(&lp->timer);
  630. }
  631. #endif
  632. /* We have a good packet(s), get it/them out of the buffers. */
  633. static void net_rx(struct net_device *dev)
  634. {
  635. struct net_local *lp = (struct net_local *)dev->priv;
  636. long ioaddr = dev->base_addr;
  637. struct rx_header rx_head;
  638. /* Process the received packet. */
  639. outb(EOC+MAR, ioaddr + PAR_DATA);
  640. read_block(ioaddr, 8, (unsigned char*)&rx_head, dev->if_port);
  641. if (net_debug > 5)
  642. printk(KERN_DEBUG " rx_count %04x %04x %04x %04x..", rx_head.pad,
  643.    rx_head.rx_count, rx_head.rx_status, rx_head.cur_addr);
  644. if ((rx_head.rx_status & 0x77) != 0x01) {
  645. lp->stats.rx_errors++;
  646. if (rx_head.rx_status & 0x0004) lp->stats.rx_frame_errors++;
  647. else if (rx_head.rx_status & 0x0002) lp->stats.rx_crc_errors++;
  648. if (net_debug > 3)
  649. printk(KERN_DEBUG "%s: Unknown ATP Rx error %04x.n",
  650.    dev->name, rx_head.rx_status);
  651. if  (rx_head.rx_status & 0x0020) {
  652. lp->stats.rx_fifo_errors++;
  653. write_reg_high(ioaddr, CMR1, CMR1h_TxENABLE);
  654. write_reg_high(ioaddr, CMR1, CMR1h_RxENABLE | CMR1h_TxENABLE);
  655. } else if (rx_head.rx_status & 0x0050)
  656. hardware_init(dev);
  657. return;
  658. } else {
  659. /* Malloc up new buffer. The "-4" omits the FCS (CRC). */
  660. int pkt_len = (rx_head.rx_count & 0x7ff) - 4;
  661. struct sk_buff *skb;
  662. skb = dev_alloc_skb(pkt_len + 2);
  663. if (skb == NULL) {
  664. printk(KERN_ERR "%s: Memory squeeze, dropping packet.n",
  665.    dev->name);
  666. lp->stats.rx_dropped++;
  667. goto done;
  668. }
  669. skb->dev = dev;
  670. skb_reserve(skb, 2); /* Align IP on 16 byte boundaries */
  671. read_block(ioaddr, pkt_len, skb_put(skb,pkt_len), dev->if_port);
  672. skb->protocol = eth_type_trans(skb, dev);
  673. netif_rx(skb);
  674. dev->last_rx = jiffies;
  675. lp->stats.rx_packets++;
  676. lp->stats.rx_bytes += pkt_len;
  677. }
  678.  done:
  679. write_reg(ioaddr, CMR1, CMR1_NextPkt);
  680. lp->last_rx_time = jiffies;
  681. return;
  682. }
  683. static void read_block(long ioaddr, int length, unsigned char *p, int data_mode)
  684. {
  685. if (data_mode <= 3) { /* Mode 0 or 1 */
  686. outb(Ctrl_LNibRead, ioaddr + PAR_CONTROL);
  687. outb(length == 8  ?  RdAddr | HNib | MAR  :  RdAddr | MAR,
  688.  ioaddr + PAR_DATA);
  689. if (data_mode <= 1) { /* Mode 0 or 1 */
  690. do  *p++ = read_byte_mode0(ioaddr);  while (--length > 0);
  691. } else /* Mode 2 or 3 */
  692. do  *p++ = read_byte_mode2(ioaddr);  while (--length > 0);
  693. } else if (data_mode <= 5)
  694. do      *p++ = read_byte_mode4(ioaddr);  while (--length > 0);
  695. else
  696. do      *p++ = read_byte_mode6(ioaddr);  while (--length > 0);
  697.     outb(EOC+HNib+MAR, ioaddr + PAR_DATA);
  698. outb(Ctrl_SelData, ioaddr + PAR_CONTROL);
  699. }
  700. /* The inverse routine to net_open(). */
  701. static int
  702. net_close(struct net_device *dev)
  703. {
  704. struct net_local *lp = (struct net_local *)dev->priv;
  705. long ioaddr = dev->base_addr;
  706. netif_stop_queue(dev);
  707. del_timer_sync(&lp->timer);
  708. /* Flush the Tx and disable Rx here. */
  709. lp->addr_mode = CMR2h_OFF;
  710. write_reg_high(ioaddr, CMR2, CMR2h_OFF);
  711. /* Free the IRQ line. */
  712. outb(0x00, ioaddr + PAR_CONTROL);
  713. free_irq(dev->irq, dev);
  714. /* Reset the ethernet hardware and activate the printer pass-through. */
  715. write_reg_high(ioaddr, CMR1, CMR1h_RESET | CMR1h_MUX);
  716. return 0;
  717. }
  718. /* Get the current statistics. This may be called with the card open or
  719.    closed. */
  720. static struct net_device_stats *
  721. net_get_stats(struct net_device *dev)
  722. {
  723. struct net_local *lp = (struct net_local *)dev->priv;
  724. return &lp->stats;
  725. }
  726. /*
  727.  * Set or clear the multicast filter for this adapter.
  728.  */
  729. static void set_rx_mode_8002(struct net_device *dev)
  730. {
  731. struct net_local *lp = (struct net_local *)dev->priv;
  732. long ioaddr = dev->base_addr;
  733. if ( dev->mc_count > 0 || (dev->flags & (IFF_ALLMULTI|IFF_PROMISC))) {
  734. /* We must make the kernel realise we had to move
  735.  * into promisc mode or we start all out war on
  736.  * the cable. - AC
  737.  */
  738. dev->flags|=IFF_PROMISC;
  739. lp->addr_mode = CMR2h_PROMISC;
  740. } else
  741. lp->addr_mode = CMR2h_Normal;
  742. write_reg_high(ioaddr, CMR2, lp->addr_mode);
  743. }
  744. static void set_rx_mode_8012(struct net_device *dev)
  745. {
  746. struct net_local *lp = (struct net_local *)dev->priv;
  747. long ioaddr = dev->base_addr;
  748. unsigned char new_mode, mc_filter[8]; /* Multicast hash filter */
  749. int i;
  750. if (dev->flags & IFF_PROMISC) { /* Set promiscuous. */
  751. new_mode = CMR2h_PROMISC;
  752. } else if ((dev->mc_count > 1000)  ||  (dev->flags & IFF_ALLMULTI)) {
  753. /* Too many to filter perfectly -- accept all multicasts. */
  754. memset(mc_filter, 0xff, sizeof(mc_filter));
  755. new_mode = CMR2h_Normal;
  756. } else {
  757. struct dev_mc_list *mclist;
  758. memset(mc_filter, 0, sizeof(mc_filter));
  759. for (i = 0, mclist = dev->mc_list; mclist && i < dev->mc_count;
  760.  i++, mclist = mclist->next)
  761. set_bit(ether_crc_le(ETH_ALEN, mclist->dmi_addr) & 0x3f,
  762. mc_filter);
  763. new_mode = CMR2h_Normal;
  764. }
  765. lp->addr_mode = new_mode;
  766.     write_reg(ioaddr, CMR2, CMR2_IRQOUT | 0x04); /* Switch to page 1. */
  767.     for (i = 0; i < 8; i++)
  768. write_reg_byte(ioaddr, i, mc_filter[i]);
  769. if (net_debug > 2 || 1) {
  770. lp->addr_mode = 1;
  771. printk(KERN_DEBUG "%s: Mode %d, setting multicast filter to",
  772.    dev->name, lp->addr_mode);
  773. for (i = 0; i < 8; i++)
  774. printk(" %2.2x", mc_filter[i]);
  775. printk(".n");
  776. }
  777. write_reg_high(ioaddr, CMR2, lp->addr_mode);
  778.     write_reg(ioaddr, CMR2, CMR2_IRQOUT); /* Switch back to page 0 */
  779. }
  780. static int __init atp_init_module(void) {
  781. if (debug) /* Emit version even if no cards detected. */
  782. printk(KERN_INFO "%s" KERN_INFO "%s", versionA, versionB);
  783. return atp_init(NULL);
  784. }
  785. static void __exit atp_cleanup_module(void) {
  786. struct net_device *next_dev;
  787. while (root_atp_dev) {
  788. next_dev = ((struct net_local *)root_atp_dev->priv)->next_module;
  789. unregister_netdev(root_atp_dev);
  790. /* No need to release_region(), since we never snarf it. */
  791. kfree(root_atp_dev);
  792. root_atp_dev = next_dev;
  793. }
  794. }
  795. module_init(atp_init_module);
  796. module_exit(atp_cleanup_module);