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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* eepro.c: Intel EtherExpress Pro/10 device driver for Linux. */
  2. /*
  3. Written 1994, 1995,1996 by Bao C. Ha.
  4. Copyright (C) 1994, 1995,1996 by Bao C. Ha.
  5. This software may be used and distributed
  6. according to the terms of the GNU General Public License,
  7. incorporated herein by reference.
  8. The author may be reached at bao.ha@srs.gov
  9. or 418 Hastings Place, Martinez, GA 30907.
  10. Things remaining to do:
  11. Better record keeping of errors.
  12. Eliminate transmit interrupt to reduce overhead.
  13. Implement "concurrent processing". I won't be doing it!
  14. Bugs:
  15. If you have a problem of not detecting the 82595 during a
  16. reboot (warm reset), disable the FLASH memory should fix it.
  17. This is a compatibility hardware problem.
  18. Versions:
  19. 0.13a   in memory shortage, drop packets also in board
  20. (Michael Westermann <mw@microdata-pos.de>, 07/30/2002)
  21. 0.13    irq sharing, rewrote probe function, fixed a nasty bug in
  22. hardware_send_packet and a major cleanup (aris, 11/08/2001)
  23. 0.12d fixing a problem with single card detected as eight eth devices
  24. fixing a problem with sudden drop in card performance
  25. (chris (asdn@go2.pl), 10/29/2001)
  26. 0.12c fixing some problems with old cards (aris, 01/08/2001)
  27. 0.12b misc fixes (aris, 06/26/2000)
  28. 0.12a   port of version 0.12a of 2.2.x kernels to 2.3.x
  29. (aris (aris@conectiva.com.br), 05/19/2000)
  30. 0.11e   some tweaks about multiple cards support (PdP, jul/aug 1999)
  31. 0.11d added __initdata, __init stuff; call spin_lock_init
  32.         in eepro_probe1. Replaced "eepro" by dev->name. Augmented
  33. the code protected by spin_lock in interrupt routine
  34. (PdP, 12/12/1998)
  35. 0.11c   minor cleanup (PdP, RMC, 09/12/1998)
  36. 0.11b   Pascal Dupuis (dupuis@lei.ucl.ac.be): works as a module
  37.         under 2.1.xx. Debug messages are flagged as KERN_DEBUG to
  38. avoid console flooding. Added locking at critical parts. Now
  39. the dawn thing is SMP safe.
  40. 0.11a   Attempt to get 2.1.xx support up (RMC)
  41. 0.11 Brian Candler added support for multiple cards. Tested as
  42. a module, no idea if it works when compiled into kernel.
  43. 0.10e Rick Bressler notified me that ifconfig up;ifconfig down fails
  44. because the irq is lost somewhere. Fixed that by moving
  45. request_irq and free_irq to eepro_open and eepro_close respectively.
  46. 0.10d Ugh! Now Wakeup works. Was seriously broken in my first attempt.
  47. I'll need to find a way to specify an ioport other than
  48. the default one in the PnP case. PnP definitively sucks.
  49. And, yes, this is not the only reason.
  50. 0.10c PnP Wakeup Test for 595FX. uncomment #define PnPWakeup;
  51. to use.
  52. 0.10b Should work now with (some) Pro/10+. At least for
  53. me (and my two cards) it does. _No_ guarantee for
  54. function with non-Pro/10+ cards! (don't have any)
  55. (RMC, 9/11/96)
  56. 0.10 Added support for the Etherexpress Pro/10+.  The
  57. IRQ map was changed significantly from the old
  58. pro/10.  The new interrupt map was provided by
  59. Rainer M. Canavan (Canavan@Zeus.cs.bonn.edu).
  60. (BCH, 9/3/96)
  61. 0.09 Fixed a race condition in the transmit algorithm,
  62. which causes crashes under heavy load with fast
  63. pentium computers.  The performance should also
  64. improve a bit.  The size of RX buffer, and hence
  65. TX buffer, can also be changed via lilo or insmod.
  66. (BCH, 7/31/96)
  67. 0.08 Implement 32-bit I/O for the 82595TX and 82595FX
  68. based lan cards.  Disable full-duplex mode if TPE
  69. is not used.  (BCH, 4/8/96)
  70. 0.07a Fix a stat report which counts every packet as a
  71. heart-beat failure. (BCH, 6/3/95)
  72. 0.07 Modified to support all other 82595-based lan cards.
  73. The IRQ vector of the EtherExpress Pro will be set
  74. according to the value saved in the EEPROM.  For other
  75. cards, I will do autoirq_request() to grab the next
  76. available interrupt vector. (BCH, 3/17/95)
  77. 0.06a,b Interim released.  Minor changes in the comments and
  78. print out format. (BCH, 3/9/95 and 3/14/95)
  79. 0.06 First stable release that I am comfortable with. (BCH,
  80. 3/2/95)
  81. 0.05 Complete testing of multicast. (BCH, 2/23/95)
  82. 0.04 Adding multicast support. (BCH, 2/14/95)
  83. 0.03 First widely alpha release for public testing.
  84. (BCH, 2/14/95)
  85. */
  86. static const char version[] =
  87. "eepro.c: v0.13 11/08/2001 aris@cathedrallabs.orgn";
  88. #include <linux/module.h>
  89. /*
  90.   Sources:
  91. This driver wouldn't have been written without the availability
  92. of the Crynwr's Lan595 driver source code.  It helps me to
  93. familiarize with the 82595 chipset while waiting for the Intel
  94. documentation.  I also learned how to detect the 82595 using
  95. the packet driver's technique.
  96. This driver is written by cutting and pasting the skeleton.c driver
  97. provided by Donald Becker.  I also borrowed the EEPROM routine from
  98. Donald Becker's 82586 driver.
  99. Datasheet for the Intel 82595 (including the TX and FX version). It
  100. provides just enough info that the casual reader might think that it
  101. documents the i82595.
  102. The User Manual for the 82595.  It provides a lot of the missing
  103. information.
  104. */
  105. #include <linux/kernel.h>
  106. #include <linux/sched.h>
  107. #include <linux/types.h>
  108. #include <linux/fcntl.h>
  109. #include <linux/interrupt.h>
  110. #include <linux/ptrace.h>
  111. #include <linux/ioport.h>
  112. #include <linux/in.h>
  113. #include <linux/slab.h>
  114. #include <linux/string.h>
  115. #include <asm/system.h>
  116. #include <asm/bitops.h>
  117. #include <asm/io.h>
  118. #include <asm/dma.h>
  119. #include <linux/errno.h>
  120. #include <linux/netdevice.h>
  121. #include <linux/etherdevice.h>
  122. #include <linux/skbuff.h>
  123. #include <linux/spinlock.h>
  124. #include <linux/init.h>
  125. #include <linux/delay.h>
  126. #define compat_dev_kfree_skb( skb, mode ) dev_kfree_skb( (skb) )
  127. /* I had reports of looong delays with SLOW_DOWN defined as udelay(2) */
  128. #define SLOW_DOWN inb(0x80)
  129. /* udelay(2) */
  130. #define compat_init_data     __initdata
  131. /* First, a few definitions that the brave might change. */
  132. /* A zero-terminated list of I/O addresses to be probed. */
  133. static unsigned int eepro_portlist[] compat_init_data =
  134.    { 0x300, 0x210, 0x240, 0x280, 0x2C0, 0x200, 0x320, 0x340, 0x360, 0};
  135. /* note: 0x300 is default, the 595FX supports ALL IO Ports
  136.   from 0x000 to 0x3F0, some of which are reserved in PCs */
  137. /* To try the (not-really PnP Wakeup: */
  138. /*
  139. #define PnPWakeup
  140. */
  141. /* use 0 for production, 1 for verification, >2 for debug */
  142. #ifndef NET_DEBUG
  143. #define NET_DEBUG 0
  144. #endif
  145. static unsigned int net_debug = NET_DEBUG;
  146. /* The number of low I/O ports used by the ethercard. */
  147. #define EEPRO_IO_EXTENT 16
  148. /* Different 82595 chips */
  149. #define LAN595 0
  150. #define LAN595TX 1
  151. #define LAN595FX 2
  152. #define LAN595FX_10ISA 3
  153. /* Information that need to be kept for each board. */
  154. struct eepro_local {
  155. struct net_device_stats stats;
  156. unsigned rx_start;
  157. unsigned tx_start; /* start of the transmit chain */
  158. int tx_last;  /* pointer to last packet in the transmit chain */
  159. unsigned tx_end;   /* end of the transmit chain (plus 1) */
  160. int eepro; /* 1 for the EtherExpress Pro/10,
  161.    2 for the EtherExpress Pro/10+,
  162.    3 for the EtherExpress 10 (blue cards),
  163.    0 for other 82595-based lan cards. */
  164. int version; /* a flag to indicate if this is a TX or FX
  165.    version of the 82595 chip. */
  166. int stepping;
  167. spinlock_t lock; /* Serializing lock  */
  168. unsigned rcv_ram; /* pre-calculated space for rx */
  169. unsigned xmt_ram; /* pre-calculated space for tx */
  170. unsigned char xmt_bar;
  171. unsigned char xmt_lower_limit_reg;
  172. unsigned char xmt_upper_limit_reg;
  173. short xmt_lower_limit;
  174. short xmt_upper_limit;
  175. short rcv_lower_limit;
  176. short rcv_upper_limit;
  177. unsigned char eeprom_reg;
  178. };
  179. /* The station (ethernet) address prefix, used for IDing the board. */
  180. #define SA_ADDR0 0x00 /* Etherexpress Pro/10 */
  181. #define SA_ADDR1 0xaa
  182. #define SA_ADDR2 0x00
  183. #define GetBit(x,y) ((x & (1<<y))>>y)
  184. /* EEPROM Word 0: */
  185. #define ee_PnP       0  /* Plug 'n Play enable bit */
  186. #define ee_Word1     1  /* Word 1? */
  187. #define ee_BusWidth  2  /* 8/16 bit */
  188. #define ee_FlashAddr 3  /* Flash Address */
  189. #define ee_FlashMask 0x7   /* Mask */
  190. #define ee_AutoIO    6  /* */
  191. #define ee_reserved0 7  /* =0! */
  192. #define ee_Flash     8  /* Flash there? */
  193. #define ee_AutoNeg   9  /* Auto Negotiation enabled? */
  194. #define ee_IO0       10 /* IO Address LSB */
  195. #define ee_IO0Mask   0x /*...*/
  196. #define ee_IO1       15 /* IO MSB */
  197. /* EEPROM Word 1: */
  198. #define ee_IntSel    0   /* Interrupt */
  199. #define ee_IntMask   0x7
  200. #define ee_LI        3   /* Link Integrity 0= enabled */
  201. #define ee_PC        4   /* Polarity Correction 0= enabled */
  202. #define ee_TPE_AUI   5   /* PortSelection 1=TPE */
  203. #define ee_Jabber    6   /* Jabber prevention 0= enabled */
  204. #define ee_AutoPort  7   /* Auto Port Selection 1= Disabled */
  205. #define ee_SMOUT     8   /* SMout Pin Control 0= Input */
  206. #define ee_PROM      9   /* Flash EPROM / PROM 0=Flash */
  207. #define ee_reserved1 10  /* .. 12 =0! */
  208. #define ee_AltReady  13  /* Alternate Ready, 0=normal */
  209. #define ee_reserved2 14  /* =0! */
  210. #define ee_Duplex    15
  211. /* Word2,3,4: */
  212. #define ee_IA5       0 /*bit start for individual Addr Byte 5 */
  213. #define ee_IA4       8 /*bit start for individual Addr Byte 5 */
  214. #define ee_IA3       0 /*bit start for individual Addr Byte 5 */
  215. #define ee_IA2       8 /*bit start for individual Addr Byte 5 */
  216. #define ee_IA1       0 /*bit start for individual Addr Byte 5 */
  217. #define ee_IA0       8 /*bit start for individual Addr Byte 5 */
  218. /* Word 5: */
  219. #define ee_BNC_TPE   0 /* 0=TPE */
  220. #define ee_BootType  1 /* 00=None, 01=IPX, 10=ODI, 11=NDIS */
  221. #define ee_BootTypeMask 0x3
  222. #define ee_NumConn   3  /* Number of Connections 0= One or Two */
  223. #define ee_FlashSock 4  /* Presence of Flash Socket 0= Present */
  224. #define ee_PortTPE   5
  225. #define ee_PortBNC   6
  226. #define ee_PortAUI   7
  227. #define ee_PowerMgt  10 /* 0= disabled */
  228. #define ee_CP        13 /* Concurrent Processing */
  229. #define ee_CPMask    0x7
  230. /* Word 6: */
  231. #define ee_Stepping  0 /* Stepping info */
  232. #define ee_StepMask  0x0F
  233. #define ee_BoardID   4 /* Manucaturer Board ID, reserved */
  234. #define ee_BoardMask 0x0FFF
  235. /* Word 7: */
  236. #define ee_INT_TO_IRQ 0 /* int to IRQ Mapping  = 0x1EB8 for Pro/10+ */
  237. #define ee_FX_INT2IRQ 0x1EB8 /* the _only_ mapping allowed for FX chips */
  238. /*..*/
  239. #define ee_SIZE 0x40 /* total EEprom Size */
  240. #define ee_Checksum 0xBABA /* initial and final value for adding checksum */
  241. /* Card identification via EEprom:   */
  242. #define ee_addr_vendor 0x10  /* Word offset for EISA Vendor ID */
  243. #define ee_addr_id 0x11      /* Word offset for Card ID */
  244. #define ee_addr_SN 0x12      /* Serial Number */
  245. #define ee_addr_CRC_8 0x14   /* CRC over last thee Bytes */
  246. #define ee_vendor_intel0 0x25  /* Vendor ID Intel */
  247. #define ee_vendor_intel1 0xD4
  248. #define ee_id_eepro10p0 0x10   /* ID for eepro/10+ */
  249. #define ee_id_eepro10p1 0x31
  250. #define TX_TIMEOUT 40
  251. /* Index to functions, as function prototypes. */
  252. extern int eepro_probe(struct net_device *dev);
  253. static int eepro_probe1(struct net_device *dev, short ioaddr);
  254. static int eepro_open(struct net_device *dev);
  255. static int eepro_send_packet(struct sk_buff *skb, struct net_device *dev);
  256. static void eepro_interrupt(int irq, void *dev_id, struct pt_regs *regs);
  257. static void  eepro_rx(struct net_device *dev);
  258. static void  eepro_transmit_interrupt(struct net_device *dev);
  259. static int eepro_close(struct net_device *dev);
  260. static struct net_device_stats *eepro_get_stats(struct net_device *dev);
  261. static void     set_multicast_list(struct net_device *dev);
  262. static void     eepro_tx_timeout (struct net_device *dev);
  263. static int read_eeprom(int ioaddr, int location, struct net_device *dev);
  264. static int hardware_send_packet(struct net_device *dev, void *buf, short length);
  265. static int eepro_grab_irq(struct net_device *dev);
  266. /*
  267. Details of the i82595.
  268. You will need either the datasheet or the user manual to understand what
  269. is going on here.  The 82595 is very different from the 82586, 82593.
  270. The receive algorithm in eepro_rx() is just an implementation of the
  271. RCV ring structure that the Intel 82595 imposes at the hardware level.
  272. The receive buffer is set at 24K, and the transmit buffer is 8K.  I
  273. am assuming that the total buffer memory is 32K, which is true for the
  274. Intel EtherExpress Pro/10.  If it is less than that on a generic card,
  275. the driver will be broken.
  276. The transmit algorithm in the hardware_send_packet() is similar to the
  277. one in the eepro_rx().  The transmit buffer is a ring linked list.
  278. I just queue the next available packet to the end of the list.  In my
  279. system, the 82595 is so fast that the list seems to always contain a
  280. single packet.  In other systems with faster computers and more congested
  281. network traffics, the ring linked list should improve performance by
  282. allowing up to 8K worth of packets to be queued.
  283. The sizes of the receive and transmit buffers can now be changed via lilo
  284. or insmod.  Lilo uses the appended line "ether=io,irq,debug,rx-buffer,eth0"
  285. where rx-buffer is in KB unit.  Modules uses the parameter mem which is
  286. also in KB unit, for example "insmod io=io-address irq=0 mem=rx-buffer."
  287. The receive buffer has to be more than 3K or less than 29K.  Otherwise,
  288. it is reset to the default of 24K, and, hence, 8K for the trasnmit
  289. buffer (transmit-buffer = 32K - receive-buffer).
  290. */
  291. #define RAM_SIZE        0x8000
  292. #define RCV_HEADER      8
  293. #define RCV_DEFAULT_RAM 0x6000
  294. #define XMT_HEADER      8
  295. #define XMT_DEFAULT_RAM (RAM_SIZE - RCV_DEFAULT_RAM)
  296. #define XMT_START_PRO RCV_DEFAULT_RAM
  297. #define XMT_START_10 0x0000
  298. #define RCV_START_PRO 0x0000
  299. #define RCV_START_10 XMT_DEFAULT_RAM
  300. #define RCV_DONE 0x0008
  301. #define RX_OK 0x2000
  302. #define RX_ERROR 0x0d81
  303. #define TX_DONE_BIT 0x0080
  304. #define TX_OK 0x2000
  305. #define CHAIN_BIT 0x8000
  306. #define XMT_STATUS 0x02
  307. #define XMT_CHAIN 0x04
  308. #define XMT_COUNT 0x06
  309. #define BANK0_SELECT 0x00
  310. #define BANK1_SELECT 0x40
  311. #define BANK2_SELECT 0x80
  312. /* Bank 0 registers */
  313. #define COMMAND_REG 0x00 /* Register 0 */
  314. #define MC_SETUP 0x03
  315. #define XMT_CMD 0x04
  316. #define DIAGNOSE_CMD 0x07
  317. #define RCV_ENABLE_CMD 0x08
  318. #define RCV_DISABLE_CMD 0x0a
  319. #define STOP_RCV_CMD 0x0b
  320. #define RESET_CMD 0x0e
  321. #define POWER_DOWN_CMD 0x18
  322. #define RESUME_XMT_CMD 0x1c
  323. #define SEL_RESET_CMD 0x1e
  324. #define STATUS_REG 0x01 /* Register 1 */
  325. #define RX_INT 0x02
  326. #define TX_INT 0x04
  327. #define EXEC_STATUS 0x30
  328. #define ID_REG 0x02 /* Register 2 */
  329. #define R_ROBIN_BITS 0xc0 /* round robin counter */
  330. #define ID_REG_MASK 0x2c
  331. #define ID_REG_SIG 0x24
  332. #define AUTO_ENABLE 0x10
  333. #define INT_MASK_REG 0x03 /* Register 3 */
  334. #define RX_STOP_MASK 0x01
  335. #define RX_MASK 0x02
  336. #define TX_MASK 0x04
  337. #define EXEC_MASK 0x08
  338. #define ALL_MASK 0x0f
  339. #define IO_32_BIT 0x10
  340. #define RCV_BAR 0x04 /* The following are word (16-bit) registers */
  341. #define RCV_STOP 0x06
  342. #define XMT_BAR_PRO 0x0a
  343. #define XMT_BAR_10 0x0b
  344. #define HOST_ADDRESS_REG 0x0c
  345. #define IO_PORT 0x0e
  346. #define IO_PORT_32_BIT 0x0c
  347. /* Bank 1 registers */
  348. #define REG1 0x01
  349. #define WORD_WIDTH 0x02
  350. #define INT_ENABLE 0x80
  351. #define INT_NO_REG 0x02
  352. #define RCV_LOWER_LIMIT_REG 0x08
  353. #define RCV_UPPER_LIMIT_REG 0x09
  354. #define XMT_LOWER_LIMIT_REG_PRO 0x0a
  355. #define XMT_UPPER_LIMIT_REG_PRO 0x0b
  356. #define XMT_LOWER_LIMIT_REG_10  0x0b
  357. #define XMT_UPPER_LIMIT_REG_10  0x0a
  358. /* Bank 2 registers */
  359. #define XMT_Chain_Int 0x20 /* Interrupt at the end of the transmit chain */
  360. #define XMT_Chain_ErrStop 0x40 /* Interrupt at the end of the chain even if there are errors */
  361. #define RCV_Discard_BadFrame 0x80 /* Throw bad frames away, and continue to receive others */
  362. #define REG2 0x02
  363. #define PRMSC_Mode 0x01
  364. #define Multi_IA 0x20
  365. #define REG3 0x03
  366. #define TPE_BIT 0x04
  367. #define BNC_BIT 0x20
  368. #define REG13 0x0d
  369. #define FDX 0x00
  370. #define A_N_ENABLE 0x02
  371. #define I_ADD_REG0 0x04
  372. #define I_ADD_REG1 0x05
  373. #define I_ADD_REG2 0x06
  374. #define I_ADD_REG3 0x07
  375. #define I_ADD_REG4 0x08
  376. #define I_ADD_REG5 0x09
  377. #define EEPROM_REG_PRO 0x0a
  378. #define EEPROM_REG_10  0x0b
  379. #define EESK 0x01
  380. #define EECS 0x02
  381. #define EEDI 0x04
  382. #define EEDO 0x08
  383. /* do a full reset */
  384. #define eepro_reset(ioaddr) outb(RESET_CMD, ioaddr)
  385. /* do a nice reset */
  386. #define eepro_sel_reset(ioaddr)  { 
  387. outb(SEL_RESET_CMD, ioaddr); 
  388. SLOW_DOWN; 
  389. SLOW_DOWN; 
  390. }
  391. /* disable all interrupts */
  392. #define eepro_dis_int(ioaddr) outb(ALL_MASK, ioaddr + INT_MASK_REG)
  393. /* clear all interrupts */
  394. #define eepro_clear_int(ioaddr) outb(ALL_MASK, ioaddr + STATUS_REG)
  395. /* enable tx/rx */
  396. #define eepro_en_int(ioaddr) outb(ALL_MASK & ~(RX_MASK | TX_MASK), 
  397. ioaddr + INT_MASK_REG)
  398. /* enable exec event interrupt */
  399. #define eepro_en_intexec(ioaddr) outb(ALL_MASK & ~(EXEC_MASK), ioaddr + INT_MASK_REG)
  400. /* enable rx */
  401. #define eepro_en_rx(ioaddr) outb(RCV_ENABLE_CMD, ioaddr)
  402. /* disable rx */
  403. #define eepro_dis_rx(ioaddr) outb(RCV_DISABLE_CMD, ioaddr)
  404. /* switch bank */
  405. #define eepro_sw2bank0(ioaddr) outb(BANK0_SELECT, ioaddr)
  406. #define eepro_sw2bank1(ioaddr) outb(BANK1_SELECT, ioaddr)
  407. #define eepro_sw2bank2(ioaddr) outb(BANK2_SELECT, ioaddr)
  408. /* enable interrupt line */
  409. #define eepro_en_intline(ioaddr) outb(inb(ioaddr + REG1) | INT_ENABLE,
  410. ioaddr + REG1)
  411. /* disable interrupt line */
  412. #define eepro_dis_intline(ioaddr) outb(inb(ioaddr + REG1) & 0x7f, 
  413. ioaddr + REG1);
  414. /* set diagnose flag */
  415. #define eepro_diag(ioaddr) outb(DIAGNOSE_CMD, ioaddr)
  416. /* ack for rx int */
  417. #define eepro_ack_rx(ioaddr) outb (RX_INT, ioaddr + STATUS_REG)
  418. /* ack for tx int */
  419. #define eepro_ack_tx(ioaddr) outb (TX_INT, ioaddr + STATUS_REG)
  420. /* a complete sel reset */
  421. #define eepro_complete_selreset(ioaddr) { 
  422. lp->stats.tx_errors++;
  423. eepro_sel_reset(ioaddr);
  424. lp->tx_end = 
  425. lp->xmt_lower_limit;
  426. lp->tx_start = lp->tx_end;
  427. lp->tx_last = 0;
  428. dev->trans_start = jiffies;
  429. netif_wake_queue(dev);
  430. eepro_en_rx(ioaddr);
  431. }
  432. /* Check for a network adaptor of this type, and return '0' if one exists.
  433.    If dev->base_addr == 0, probe all likely locations.
  434.    If dev->base_addr == 1, always return failure.
  435.    If dev->base_addr == 2, allocate space for the device and return success
  436.    (detachable devices only).
  437.    */
  438. int __init eepro_probe(struct net_device *dev)
  439. {
  440. int i;
  441. int base_addr = dev->base_addr;
  442. SET_MODULE_OWNER(dev);
  443. #ifdef PnPWakeup
  444. /* XXXX for multiple cards should this only be run once? */
  445. /* Wakeup: */
  446. #define WakeupPort 0x279
  447. #define WakeupSeq    {0x6A, 0xB5, 0xDA, 0xED, 0xF6, 0xFB, 0x7D, 0xBE,
  448.                       0xDF, 0x6F, 0x37, 0x1B, 0x0D, 0x86, 0xC3, 0x61,
  449.                       0xB0, 0x58, 0x2C, 0x16, 0x8B, 0x45, 0xA2, 0xD1,
  450.                       0xE8, 0x74, 0x3A, 0x9D, 0xCE, 0xE7, 0x73, 0x43}
  451. {
  452. unsigned short int WS[32]=WakeupSeq;
  453. if (check_region(WakeupPort, 2)==0) {
  454. if (net_debug>5)
  455. printk(KERN_DEBUG "Waking UPn");
  456. outb_p(0,WakeupPort);
  457. outb_p(0,WakeupPort);
  458. for (i=0; i<32; i++) {
  459. outb_p(WS[i],WakeupPort);
  460. if (net_debug>5) printk(KERN_DEBUG ": %#x ",WS[i]);
  461. }
  462. } else printk(KERN_WARNING "Checkregion Failed!n");
  463. }
  464. #endif
  465. if (base_addr > 0x1ff) /* Check a single specified location. */
  466. return eepro_probe1(dev, base_addr);
  467. else if (base_addr != 0) /* Don't probe at all. */
  468. return -ENXIO;
  469. for (i = 0; eepro_portlist[i]; i++) {
  470. int ioaddr = eepro_portlist[i];
  471. if (check_region(ioaddr, EEPRO_IO_EXTENT))
  472. continue;
  473. if (eepro_probe1(dev, ioaddr) == 0)
  474. return 0;
  475. }
  476. return -ENODEV;
  477. }
  478. static void __init printEEPROMInfo(short ioaddr, struct net_device *dev)
  479. {
  480. unsigned short Word;
  481. int i,j;
  482. for (i=0, j=ee_Checksum; i<ee_SIZE; i++)
  483. j+=read_eeprom(ioaddr,i,dev);
  484. printk(KERN_DEBUG "Checksum: %#xn",j&0xffff);
  485. Word=read_eeprom(ioaddr, 0, dev);
  486. printk(KERN_DEBUG "Word0:n");
  487. printk(KERN_DEBUG " Plug 'n Pray: %dn",GetBit(Word,ee_PnP));
  488. printk(KERN_DEBUG " Buswidth: %dn",(GetBit(Word,ee_BusWidth)+1)*8 );
  489. printk(KERN_DEBUG " AutoNegotiation: %dn",GetBit(Word,ee_AutoNeg));
  490. printk(KERN_DEBUG " IO Address: %#xn", (Word>>ee_IO0)<<4);
  491. if (net_debug>4)  {
  492. Word=read_eeprom(ioaddr, 1, dev);
  493. printk(KERN_DEBUG "Word1:n");
  494. printk(KERN_DEBUG " INT: %dn", Word & ee_IntMask);
  495. printk(KERN_DEBUG " LI: %dn", GetBit(Word,ee_LI));
  496. printk(KERN_DEBUG " PC: %dn", GetBit(Word,ee_PC));
  497. printk(KERN_DEBUG " TPE/AUI: %dn", GetBit(Word,ee_TPE_AUI));
  498. printk(KERN_DEBUG " Jabber: %dn", GetBit(Word,ee_Jabber));
  499. printk(KERN_DEBUG " AutoPort: %dn", GetBit(!Word,ee_Jabber));
  500. printk(KERN_DEBUG " Duplex: %dn", GetBit(Word,ee_Duplex));
  501. }
  502. Word=read_eeprom(ioaddr, 5, dev);
  503. printk(KERN_DEBUG "Word5:n");
  504. printk(KERN_DEBUG " BNC: %dn",GetBit(Word,ee_BNC_TPE));
  505. printk(KERN_DEBUG " NumConnectors: %dn",GetBit(Word,ee_NumConn));
  506. printk(KERN_DEBUG " Has ");
  507. if (GetBit(Word,ee_PortTPE)) printk(KERN_DEBUG "TPE ");
  508. if (GetBit(Word,ee_PortBNC)) printk(KERN_DEBUG "BNC ");
  509. if (GetBit(Word,ee_PortAUI)) printk(KERN_DEBUG "AUI ");
  510. printk(KERN_DEBUG "port(s) n");
  511. Word=read_eeprom(ioaddr, 6, dev);
  512. printk(KERN_DEBUG "Word6:n");
  513. printk(KERN_DEBUG " Stepping: %dn",Word & ee_StepMask);
  514. printk(KERN_DEBUG " BoardID: %dn",Word>>ee_BoardID);
  515. Word=read_eeprom(ioaddr, 7, dev);
  516. printk(KERN_DEBUG "Word7:n");
  517. printk(KERN_DEBUG " INT to IRQ:n");
  518. for (i=0, j=0; i<15; i++)
  519. if (GetBit(Word,i)) printk(KERN_DEBUG " INT%d -> IRQ %d;",j++,i);
  520. printk(KERN_DEBUG "n");
  521. }
  522. /* function to recalculate the limits of buffer based on rcv_ram */
  523. static void eepro_recalc (struct net_device *dev)
  524. {
  525. struct eepro_local * lp;
  526. lp = dev->priv;
  527. lp->xmt_ram = RAM_SIZE - lp->rcv_ram;
  528. if (lp->eepro == LAN595FX_10ISA) {
  529. lp->xmt_lower_limit = XMT_START_10;
  530. lp->xmt_upper_limit = (lp->xmt_ram - 2);
  531. lp->rcv_lower_limit = lp->xmt_ram;
  532. lp->rcv_upper_limit = (RAM_SIZE - 2);
  533. }
  534. else {
  535. lp->rcv_lower_limit = RCV_START_PRO;
  536. lp->rcv_upper_limit = (lp->rcv_ram - 2);
  537. lp->xmt_lower_limit = lp->rcv_ram;
  538. lp->xmt_upper_limit = (RAM_SIZE - 2);
  539. }
  540. }
  541. /* prints boot-time info */
  542. static void eepro_print_info (struct net_device *dev)
  543. {
  544. struct eepro_local * lp = dev->priv;
  545. int i;
  546. const char * ifmap[] = {"AUI", "10Base2", "10BaseT"};
  547. i = inb(dev->base_addr + ID_REG);
  548. printk(KERN_DEBUG " id: %#x ",i);
  549. printk(" io: %#x ", (unsigned)dev->base_addr);
  550. switch (lp->eepro) {
  551. case LAN595FX_10ISA:
  552. printk("%s: Intel EtherExpress 10 ISAn at %#x,",
  553. dev->name, (unsigned)dev->base_addr);
  554. break;
  555. case LAN595FX:
  556. printk("%s: Intel EtherExpress Pro/10+ ISAn at %#x,", 
  557. dev->name, (unsigned)dev->base_addr);
  558. break;
  559. case LAN595TX:
  560. printk("%s: Intel EtherExpress Pro/10 ISA at %#x,",
  561. dev->name, (unsigned)dev->base_addr);
  562. break;
  563. case LAN595:
  564. printk("%s: Intel 82595-based lan card at %#x,", 
  565. dev->name, (unsigned)dev->base_addr);
  566. }
  567. for (i=0; i < 6; i++)
  568. printk("%c%02x", i ? ':' : ' ', dev->dev_addr[i]);
  569. if (net_debug > 3)
  570. printk(KERN_DEBUG ", %dK RCV buffer",
  571. (int)(lp->rcv_ram)/1024);
  572. if (dev->irq > 2)
  573. printk(", IRQ %d, %s.n", dev->irq, ifmap[dev->if_port]);
  574. else 
  575. printk(", %s.n", ifmap[dev->if_port]);
  576. if (net_debug > 3) {
  577. i = read_eeprom(dev->base_addr, 5, dev);
  578. if (i & 0x2000) /* bit 13 of EEPROM word 5 */
  579. printk(KERN_DEBUG "%s: Concurrent Processing is "
  580. "enabled but not used!n", dev->name);
  581. }
  582. /* Check the station address for the manufacturer's code */
  583. if (net_debug>3)
  584. printEEPROMInfo(dev->base_addr, dev);
  585. }
  586. /* This is the real probe routine.  Linux has a history of friendly device
  587.    probes on the ISA bus.  A good device probe avoids doing writes, and
  588.    verifies that the correct device exists and functions.  */
  589. static int __init eepro_probe1(struct net_device *dev, short ioaddr)
  590. {
  591. unsigned short station_addr[6], id, counter;
  592. int i, j, irqMask, retval = 0;
  593. struct eepro_local *lp;
  594. enum iftype { AUI=0, BNC=1, TPE=2 };
  595. /* Now, we are going to check for the signature of the
  596.    ID_REG (register 2 of bank 0) */
  597. id=inb(ioaddr + ID_REG);
  598. if (((id) & ID_REG_MASK) != ID_REG_SIG) {
  599. retval = -ENODEV;
  600. goto exit;
  601. }
  602. /* We seem to have the 82595 signature, let's
  603.    play with its counter (last 2 bits of
  604.    register 2 of bank 0) to be sure. */
  605. counter = (id & R_ROBIN_BITS);
  606. if (((id=inb(ioaddr+ID_REG)) & R_ROBIN_BITS)!=(counter + 0x40)) {
  607. retval = -ENODEV;
  608. goto exit;
  609. }
  610. /* Initialize the device structure */
  611. dev->priv = kmalloc(sizeof(struct eepro_local), GFP_KERNEL);
  612. if (!dev->priv) {
  613. retval = -ENOMEM;
  614. goto exit;
  615. }
  616. memset(dev->priv, 0, sizeof(struct eepro_local));
  617. lp = (struct eepro_local *)dev->priv;
  618. /* default values */
  619. lp->eepro = 0;
  620. lp->xmt_bar = XMT_BAR_PRO;
  621. lp->xmt_lower_limit_reg = XMT_LOWER_LIMIT_REG_PRO;
  622. lp->xmt_upper_limit_reg = XMT_UPPER_LIMIT_REG_PRO;
  623. lp->eeprom_reg = EEPROM_REG_PRO;
  624. /* Now, get the ethernet hardware address from
  625.    the EEPROM */
  626. station_addr[0] = read_eeprom(ioaddr, 2, dev);
  627. /* FIXME - find another way to know that we've found
  628.  * an Etherexpress 10
  629.  */
  630. if (station_addr[0] == 0x0000 ||
  631.     station_addr[0] == 0xffff) {
  632. lp->eepro = LAN595FX_10ISA;
  633. lp->eeprom_reg = EEPROM_REG_10;
  634. lp->xmt_lower_limit_reg = XMT_LOWER_LIMIT_REG_10;
  635. lp->xmt_upper_limit_reg = XMT_UPPER_LIMIT_REG_10;
  636. lp->xmt_bar = XMT_BAR_10;
  637. station_addr[0] = read_eeprom(ioaddr, 2, dev);
  638. }
  639. station_addr[1] = read_eeprom(ioaddr, 3, dev);
  640. station_addr[2] = read_eeprom(ioaddr, 4, dev);
  641. if (!lp->eepro) {
  642. if (read_eeprom(ioaddr,7,dev)== ee_FX_INT2IRQ)
  643. lp->eepro = 2;
  644. else if (station_addr[2] == SA_ADDR1)
  645. lp->eepro = 1;
  646. }
  647. /* Fill in the 'dev' fields. */
  648. dev->base_addr = ioaddr;
  649. for (i=0; i < 6; i++)
  650. dev->dev_addr[i] = ((unsigned char *) station_addr)[5-i];
  651. /* RX buffer must be more than 3K and less than 29K */
  652. if (dev->mem_end < 3072 || dev->mem_end > 29696)
  653. lp->rcv_ram = RCV_DEFAULT_RAM;
  654. /* calculate {xmt,rcv}_{lower,upper}_limit */
  655. eepro_recalc(dev);
  656. if (GetBit( read_eeprom(ioaddr, 5, dev),ee_BNC_TPE))
  657. dev->if_port = BNC;
  658. else
  659. dev->if_port = TPE;
  660. if ((dev->irq < 2) && (lp->eepro!=0)) {
  661. i = read_eeprom(ioaddr, 1, dev);
  662. irqMask = read_eeprom(ioaddr, 7, dev);
  663. i &= 0x07; /* Mask off INT number */
  664. for (j=0; ((j<16) && (i>=0)); j++) {
  665. if ((irqMask & (1<<j))!=0) {
  666. if (i==0) {
  667. dev->irq = j;
  668. break; /* found bit corresponding to irq */
  669. }
  670. i--; /* count bits set in irqMask */
  671. }
  672. }
  673. if (dev->irq < 2) {
  674. printk(KERN_ERR " Duh! illegal interrupt vector stored in EEPROM.n");
  675. kfree(dev->priv);
  676. retval = -ENODEV;
  677. goto freeall;
  678. else if (dev->irq==2) dev->irq = 9;
  679. }
  680. /* Grab the region so we can find another board if autoIRQ fails. */
  681. if (!request_region(ioaddr, EEPRO_IO_EXTENT, dev->name)) { 
  682. printk(KERN_WARNING "EEPRO: io-port 0x%04x in use n", ioaddr);
  683. goto freeall;
  684. }
  685. ((struct eepro_local *)dev->priv)->lock = SPIN_LOCK_UNLOCKED;
  686. dev->open               = eepro_open;
  687. dev->stop               = eepro_close;
  688. dev->hard_start_xmit    = eepro_send_packet;
  689. dev->get_stats          = eepro_get_stats;
  690. dev->set_multicast_list = &set_multicast_list;
  691. dev->tx_timeout = eepro_tx_timeout;
  692. dev->watchdog_timeo = TX_TIMEOUT;
  693. /* Fill in the fields of the device structure with
  694. ethernet generic values */
  695. ether_setup(dev);
  696. /* print boot time info */
  697. eepro_print_info(dev);
  698. /* reset 82595 */
  699. eepro_reset(ioaddr);
  700. exit:
  701. return retval;
  702. freeall:
  703. kfree(dev->priv);
  704. goto exit;
  705. }
  706. /* Open/initialize the board.  This is called (in the current kernel)
  707.    sometime after booting when the 'ifconfig' program is run.
  708.    This routine should set everything up anew at each open, even
  709.    registers that "should" only need to be set once at boot, so that
  710.    there is non-reboot way to recover if something goes wrong.
  711.    */
  712. static char irqrmap[] = {-1,-1,0,1,-1,2,-1,-1,-1,0,3,4,-1,-1,-1,-1};
  713. static char irqrmap2[] = {-1,-1,4,0,1,2,-1,3,-1,4,5,6,7,-1,-1,-1};
  714. static int eepro_grab_irq(struct net_device *dev)
  715. {
  716. int irqlist[] = { 3, 4, 5, 7, 9, 10, 11, 12, 0 };
  717. int *irqp = irqlist, temp_reg, ioaddr = dev->base_addr;
  718. eepro_sw2bank1(ioaddr); /* be CAREFUL, BANK 1 now */
  719. /* Enable the interrupt line. */
  720. eepro_en_intline(ioaddr);
  721. /* be CAREFUL, BANK 0 now */
  722. eepro_sw2bank0(ioaddr);
  723. /* clear all interrupts */
  724. eepro_clear_int(ioaddr);
  725. /* Let EXEC event to interrupt */
  726. eepro_en_intexec(ioaddr);
  727. do {
  728. eepro_sw2bank1(ioaddr); /* be CAREFUL, BANK 1 now */
  729. temp_reg = inb(ioaddr + INT_NO_REG);
  730. outb((temp_reg & 0xf8) | irqrmap[*irqp], ioaddr + INT_NO_REG);
  731. eepro_sw2bank0(ioaddr); /* Switch back to Bank 0 */
  732. if (request_irq (*irqp, NULL, SA_SHIRQ, "bogus", dev) != EBUSY) {
  733. /* Twinkle the interrupt, and check if it's seen */
  734. autoirq_setup(0);
  735. eepro_diag(ioaddr); /* RESET the 82595 */
  736. if (*irqp == autoirq_report(2))  /* It's a good IRQ line */
  737. break;
  738. /* clear all interrupts */
  739. eepro_clear_int(ioaddr);
  740. }
  741. } while (*++irqp);
  742. eepro_sw2bank1(ioaddr); /* Switch back to Bank 1 */
  743. /* Disable the physical interrupt line. */
  744. eepro_dis_intline(ioaddr);
  745. eepro_sw2bank0(ioaddr); /* Switch back to Bank 0 */
  746. /* Mask all the interrupts. */
  747. eepro_dis_int(ioaddr);
  748. /* clear all interrupts */
  749. eepro_clear_int(ioaddr);
  750. return dev->irq;
  751. }
  752. static int eepro_open(struct net_device *dev)
  753. {
  754. unsigned short temp_reg, old8, old9;
  755. int irqMask;
  756. int i, ioaddr = dev->base_addr;
  757. struct eepro_local *lp = (struct eepro_local *)dev->priv;
  758. if (net_debug > 3)
  759. printk(KERN_DEBUG "%s: entering eepro_open routine.n", dev->name);
  760. irqMask = read_eeprom(ioaddr,7,dev);
  761. if (lp->eepro == LAN595FX_10ISA) {
  762. if (net_debug > 3) printk(KERN_DEBUG "p->eepro = 3;n");
  763. }
  764. else if (irqMask == ee_FX_INT2IRQ) /* INT to IRQ Mask */
  765. {
  766. lp->eepro = 2; /* Yes, an Intel EtherExpress Pro/10+ */
  767. if (net_debug > 3) printk(KERN_DEBUG "p->eepro = 2;n");
  768. }
  769. else if ((dev->dev_addr[0] == SA_ADDR0 &&
  770. dev->dev_addr[1] == SA_ADDR1 &&
  771. dev->dev_addr[2] == SA_ADDR2))
  772. {
  773. lp->eepro = 1;
  774. if (net_debug > 3) printk(KERN_DEBUG "p->eepro = 1;n");
  775. }  /* Yes, an Intel EtherExpress Pro/10 */
  776. else lp->eepro = 0; /* No, it is a generic 82585 lan card */
  777. /* Get the interrupt vector for the 82595 */
  778. if (dev->irq < 2 && eepro_grab_irq(dev) == 0) {
  779. printk(KERN_ERR "%s: unable to get IRQ %d.n", dev->name, dev->irq);
  780. return -EAGAIN;
  781. }
  782. if (request_irq(dev->irq , &eepro_interrupt, 0, dev->name, dev)) {
  783. printk(KERN_ERR "%s: unable to get IRQ %d.n", dev->name, dev->irq);
  784. return -EAGAIN;
  785. }
  786. #ifdef irq2dev_map
  787. if  (((irq2dev_map[dev->irq] != 0)
  788. || (irq2dev_map[dev->irq] = dev) == 0) &&
  789. (irq2dev_map[dev->irq]!=dev)) {
  790. /* printk("%s: IRQ map wrongn", dev->name); */
  791.         free_irq(dev->irq, dev);
  792. return -EAGAIN;
  793. }
  794. #endif
  795. /* Initialize the 82595. */
  796. eepro_sw2bank2(ioaddr); /* be CAREFUL, BANK 2 now */
  797. temp_reg = inb(ioaddr + lp->eeprom_reg);
  798. lp->stepping = temp_reg >> 5; /* Get the stepping number of the 595 */
  799. if (net_debug > 3)
  800. printk(KERN_DEBUG "The stepping of the 82595 is %dn", lp->stepping);
  801. if (temp_reg & 0x10) /* Check the TurnOff Enable bit */
  802. outb(temp_reg & 0xef, ioaddr + lp->eeprom_reg);
  803. for (i=0; i < 6; i++)
  804. outb(dev->dev_addr[i] , ioaddr + I_ADD_REG0 + i);
  805. temp_reg = inb(ioaddr + REG1);    /* Setup Transmit Chaining */
  806. outb(temp_reg | XMT_Chain_Int | XMT_Chain_ErrStop /* and discard bad RCV frames */
  807. | RCV_Discard_BadFrame, ioaddr + REG1);
  808. temp_reg = inb(ioaddr + REG2); /* Match broadcast */
  809. outb(temp_reg | 0x14, ioaddr + REG2);
  810. temp_reg = inb(ioaddr + REG3);
  811. outb(temp_reg & 0x3f, ioaddr + REG3); /* clear test mode */
  812. /* Set the receiving mode */
  813. eepro_sw2bank1(ioaddr); /* be CAREFUL, BANK 1 now */
  814. /* Set the interrupt vector */
  815. temp_reg = inb(ioaddr + INT_NO_REG);
  816. if (lp->eepro == LAN595FX || lp->eepro == LAN595FX_10ISA)
  817. outb((temp_reg & 0xf8) | irqrmap2[dev->irq], ioaddr + INT_NO_REG);
  818. else outb((temp_reg & 0xf8) | irqrmap[dev->irq], ioaddr + INT_NO_REG);
  819. temp_reg = inb(ioaddr + INT_NO_REG);
  820. if (lp->eepro == LAN595FX || lp->eepro == LAN595FX_10ISA)
  821. outb((temp_reg & 0xf0) | irqrmap2[dev->irq] | 0x08,ioaddr+INT_NO_REG);
  822. else outb((temp_reg & 0xf8) | irqrmap[dev->irq], ioaddr + INT_NO_REG);
  823. if (net_debug > 3)
  824. printk(KERN_DEBUG "eepro_open: content of INT Reg is %xn", temp_reg);
  825. /* Initialize the RCV and XMT upper and lower limits */
  826. outb(lp->rcv_lower_limit >> 8, ioaddr + RCV_LOWER_LIMIT_REG); 
  827. outb(lp->rcv_upper_limit >> 8, ioaddr + RCV_UPPER_LIMIT_REG); 
  828. outb(lp->xmt_lower_limit >> 8, ioaddr + lp->xmt_lower_limit_reg);
  829. outb(lp->xmt_upper_limit >> 8, ioaddr + lp->xmt_upper_limit_reg);
  830. /* Enable the interrupt line. */
  831. eepro_en_intline(ioaddr);
  832. /* Switch back to Bank 0 */
  833. eepro_sw2bank0(ioaddr);
  834. /* Let RX and TX events to interrupt */
  835. eepro_en_int(ioaddr);
  836. /* clear all interrupts */
  837. eepro_clear_int(ioaddr);
  838. /* Initialize RCV */
  839. outw(lp->rcv_lower_limit, ioaddr + RCV_BAR); 
  840. lp->rx_start = lp->rcv_lower_limit;
  841. outw(lp->rcv_upper_limit | 0xfe, ioaddr + RCV_STOP); 
  842. /* Initialize XMT */
  843. outw(lp->xmt_lower_limit, ioaddr + lp->xmt_bar); 
  844. lp->tx_start = lp->tx_end = lp->xmt_lower_limit;
  845. lp->tx_last = 0;
  846. /* Check for the i82595TX and i82595FX */
  847. old8 = inb(ioaddr + 8);
  848. outb(~old8, ioaddr + 8);
  849. if ((temp_reg = inb(ioaddr + 8)) == old8) {
  850. if (net_debug > 3)
  851. printk(KERN_DEBUG "i82595 detected!n");
  852. lp->version = LAN595;
  853. }
  854. else {
  855. lp->version = LAN595TX;
  856. outb(old8, ioaddr + 8);
  857. old9 = inb(ioaddr + 9);
  858. if (irqMask==ee_FX_INT2IRQ) {
  859. enum iftype { AUI=0, BNC=1, TPE=2 };
  860. if (net_debug > 3) {
  861. printk(KERN_DEBUG "IrqMask: %#xn",irqMask);
  862. printk(KERN_DEBUG "i82595FX detected!n");
  863. }
  864. lp->version = LAN595FX;
  865. outb(old9, ioaddr + 9);
  866. if (dev->if_port != TPE) { /* Hopefully, this will fix the
  867. problem of using Pentiums and
  868. pro/10 w/ BNC. */
  869. eepro_sw2bank2(ioaddr); /* be CAREFUL, BANK 2 now */
  870. temp_reg = inb(ioaddr + REG13);
  871. /* disable the full duplex mode since it is not
  872. applicable with the 10Base2 cable. */
  873. outb(temp_reg & ~(FDX | A_N_ENABLE), REG13);
  874. eepro_sw2bank0(ioaddr); /* be CAREFUL, BANK 0 now */
  875. }
  876. }
  877. else if (net_debug > 3) {
  878. printk(KERN_DEBUG "temp_reg: %#x  ~old9: %#xn",temp_reg,((~old9)&0xff));
  879. printk(KERN_DEBUG "i82595TX detected!n");
  880. }
  881. }
  882. eepro_sel_reset(ioaddr);
  883. netif_start_queue(dev);
  884. if (net_debug > 3)
  885. printk(KERN_DEBUG "%s: exiting eepro_open routine.n", dev->name);
  886. /* enabling rx */
  887. eepro_en_rx(ioaddr);
  888. MOD_INC_USE_COUNT;
  889. return 0;
  890. }
  891. static void eepro_tx_timeout (struct net_device *dev)
  892. {
  893. struct eepro_local *lp = (struct eepro_local *) dev->priv;
  894. int ioaddr = dev->base_addr;
  895. /* if (net_debug > 1) */
  896. printk (KERN_ERR "%s: transmit timed out, %s?n", dev->name,
  897. "network cable problem");
  898. /* This is not a duplicate. One message for the console,
  899.    one for the the log file  */
  900. printk (KERN_DEBUG "%s: transmit timed out, %s?n", dev->name,
  901. "network cable problem");
  902. eepro_complete_selreset(ioaddr);
  903. }
  904. static int eepro_send_packet(struct sk_buff *skb, struct net_device *dev)
  905. {
  906. struct eepro_local *lp = (struct eepro_local *)dev->priv;
  907. unsigned long flags;
  908. int ioaddr = dev->base_addr;
  909. if (net_debug > 5)
  910. printk(KERN_DEBUG  "%s: entering eepro_send_packet routine.n", dev->name);
  911. netif_stop_queue (dev);
  912. eepro_dis_int(ioaddr);
  913. spin_lock_irqsave(&lp->lock, flags);
  914. {
  915. short length = ETH_ZLEN < skb->len ? skb->len : ETH_ZLEN;
  916. unsigned char *buf = skb->data;
  917. if (hardware_send_packet(dev, buf, length))
  918. /* we won't wake queue here because we're out of space */
  919. lp->stats.tx_dropped++;
  920. else {
  921. lp->stats.tx_bytes+=skb->len;
  922. dev->trans_start = jiffies;
  923. netif_wake_queue(dev);
  924. }
  925. }
  926. dev_kfree_skb (skb);
  927. /* You might need to clean up and record Tx statistics here. */
  928. /* lp->stats.tx_aborted_errors++; */
  929. if (net_debug > 5)
  930. printk(KERN_DEBUG "%s: exiting eepro_send_packet routine.n", dev->name);
  931. eepro_en_int(ioaddr);
  932. spin_unlock_irqrestore(&lp->lock, flags);
  933. return 0;
  934. }
  935. /* The typical workload of the driver:
  936. Handle the network interface interrupts. */
  937. static void
  938. eepro_interrupt(int irq, void *dev_id, struct pt_regs * regs)
  939. {
  940. struct net_device *dev =  (struct net_device *)dev_id;
  941.                       /* (struct net_device *)(irq2dev_map[irq]);*/
  942. struct eepro_local *lp;
  943. int ioaddr, status, boguscount = 20;
  944. if (dev == NULL) {
  945.                 printk (KERN_ERR "eepro_interrupt(): irq %d for unknown device.\n", irq);
  946.                 return;
  947.         }
  948. lp = (struct eepro_local *)dev->priv;
  949.         spin_lock(&lp->lock);
  950. if (net_debug > 5)
  951. printk(KERN_DEBUG "%s: entering eepro_interrupt routine.n", dev->name);
  952. ioaddr = dev->base_addr;
  953. while (((status = inb(ioaddr + STATUS_REG)) & (RX_INT|TX_INT)) && (boguscount--))
  954. {
  955. if (status & RX_INT) {
  956. if (net_debug > 4)
  957. printk(KERN_DEBUG "%s: packet received interrupt.n", dev->name);
  958. eepro_dis_int(ioaddr);
  959. /* Get the received packets */
  960. eepro_ack_rx(ioaddr);
  961. eepro_rx(dev);
  962. eepro_en_int(ioaddr);
  963. }
  964. if (status & TX_INT) {
  965. if (net_debug > 4)
  966.   printk(KERN_DEBUG "%s: packet transmit interrupt.n", dev->name);
  967. eepro_dis_int(ioaddr);
  968. /* Process the status of transmitted packets */
  969. eepro_ack_tx(ioaddr);
  970. eepro_transmit_interrupt(dev);
  971. eepro_en_int(ioaddr);
  972. }
  973. }
  974. if (net_debug > 5)
  975. printk(KERN_DEBUG "%s: exiting eepro_interrupt routine.n", dev->name);
  976. spin_unlock(&lp->lock);
  977. return;
  978. }
  979. static int eepro_close(struct net_device *dev)
  980. {
  981. struct eepro_local *lp = (struct eepro_local *)dev->priv;
  982. int ioaddr = dev->base_addr;
  983. short temp_reg;
  984. netif_stop_queue(dev);
  985. eepro_sw2bank1(ioaddr); /* Switch back to Bank 1 */
  986. /* Disable the physical interrupt line. */
  987. temp_reg = inb(ioaddr + REG1);
  988. outb(temp_reg & 0x7f, ioaddr + REG1);
  989. eepro_sw2bank0(ioaddr); /* Switch back to Bank 0 */
  990. /* Flush the Tx and disable Rx. */
  991. outb(STOP_RCV_CMD, ioaddr);
  992. lp->tx_start = lp->tx_end = lp->xmt_lower_limit;
  993. lp->tx_last = 0;
  994. /* Mask all the interrupts. */
  995. eepro_dis_int(ioaddr);
  996. /* clear all interrupts */
  997. eepro_clear_int(ioaddr);
  998. /* Reset the 82595 */
  999. eepro_reset(ioaddr);
  1000. /* release the interrupt */
  1001. free_irq(dev->irq, dev);
  1002. #ifdef irq2dev_map
  1003. irq2dev_map[dev->irq] = 0;
  1004. #endif
  1005. /* Update the statistics here. What statistics? */
  1006. MOD_DEC_USE_COUNT;
  1007. return 0;
  1008. }
  1009. /* Get the current statistics. This may be called with the card open or
  1010.    closed. */
  1011. static struct net_device_stats *
  1012. eepro_get_stats(struct net_device *dev)
  1013. {
  1014. struct eepro_local *lp = (struct eepro_local *)dev->priv;
  1015. return &lp->stats;
  1016. }
  1017. /* Set or clear the multicast filter for this adaptor.
  1018.  */
  1019. static void
  1020. set_multicast_list(struct net_device *dev)
  1021. {
  1022. struct eepro_local *lp = (struct eepro_local *)dev->priv;
  1023. short ioaddr = dev->base_addr;
  1024. unsigned short mode;
  1025. struct dev_mc_list *dmi=dev->mc_list;
  1026. if (dev->flags&(IFF_ALLMULTI|IFF_PROMISC) || dev->mc_count > 63)
  1027. {
  1028. /*
  1029.  * We must make the kernel realise we had to move
  1030.  * into promisc mode or we start all out war on
  1031.  * the cable. If it was a promisc request the
  1032.  * flag is already set. If not we assert it.
  1033.  */
  1034. dev->flags|=IFF_PROMISC;
  1035. eepro_sw2bank2(ioaddr); /* be CAREFUL, BANK 2 now */
  1036. mode = inb(ioaddr + REG2);
  1037. outb(mode | PRMSC_Mode, ioaddr + REG2);
  1038. mode = inb(ioaddr + REG3);
  1039. outb(mode, ioaddr + REG3); /* writing reg. 3 to complete the update */
  1040. eepro_sw2bank0(ioaddr); /* Return to BANK 0 now */
  1041. printk(KERN_INFO "%s: promiscuous mode enabled.n", dev->name);
  1042. }
  1043. else if (dev->mc_count==0 )
  1044. {
  1045. eepro_sw2bank2(ioaddr); /* be CAREFUL, BANK 2 now */
  1046. mode = inb(ioaddr + REG2);
  1047. outb(mode & 0xd6, ioaddr + REG2); /* Turn off Multi-IA and PRMSC_Mode bits */
  1048. mode = inb(ioaddr + REG3);
  1049. outb(mode, ioaddr + REG3); /* writing reg. 3 to complete the update */
  1050. eepro_sw2bank0(ioaddr); /* Return to BANK 0 now */
  1051. }
  1052. else
  1053. {
  1054. unsigned short status, *eaddrs;
  1055. int i, boguscount = 0;
  1056. /* Disable RX and TX interrupts.  Necessary to avoid
  1057.    corruption of the HOST_ADDRESS_REG by interrupt
  1058.    service routines. */
  1059. eepro_dis_int(ioaddr);
  1060. eepro_sw2bank2(ioaddr); /* be CAREFUL, BANK 2 now */
  1061. mode = inb(ioaddr + REG2);
  1062. outb(mode | Multi_IA, ioaddr + REG2);
  1063. mode = inb(ioaddr + REG3);
  1064. outb(mode, ioaddr + REG3); /* writing reg. 3 to complete the update */
  1065. eepro_sw2bank0(ioaddr); /* Return to BANK 0 now */
  1066. outw(lp->tx_end, ioaddr + HOST_ADDRESS_REG);
  1067. outw(MC_SETUP, ioaddr + IO_PORT);
  1068. outw(0, ioaddr + IO_PORT);
  1069. outw(0, ioaddr + IO_PORT);
  1070. outw(6*(dev->mc_count + 1), ioaddr + IO_PORT);
  1071. for (i = 0; i < dev->mc_count; i++)
  1072. {
  1073. eaddrs=(unsigned short *)dmi->dmi_addr;
  1074. dmi=dmi->next;
  1075. outw(*eaddrs++, ioaddr + IO_PORT);
  1076. outw(*eaddrs++, ioaddr + IO_PORT);
  1077. outw(*eaddrs++, ioaddr + IO_PORT);
  1078. }
  1079. eaddrs = (unsigned short *) dev->dev_addr;
  1080. outw(eaddrs[0], ioaddr + IO_PORT);
  1081. outw(eaddrs[1], ioaddr + IO_PORT);
  1082. outw(eaddrs[2], ioaddr + IO_PORT);
  1083. outw(lp->tx_end, ioaddr + lp->xmt_bar);
  1084. outb(MC_SETUP, ioaddr);
  1085. /* Update the transmit queue */
  1086. i = lp->tx_end + XMT_HEADER + 6*(dev->mc_count + 1);
  1087. if (lp->tx_start != lp->tx_end)
  1088. {
  1089. /* update the next address and the chain bit in the
  1090.    last packet */
  1091. outw(lp->tx_last + XMT_CHAIN, ioaddr + HOST_ADDRESS_REG);
  1092. outw(i, ioaddr + IO_PORT);
  1093. outw(lp->tx_last + XMT_COUNT, ioaddr + HOST_ADDRESS_REG);
  1094. status = inw(ioaddr + IO_PORT);
  1095. outw(status | CHAIN_BIT, ioaddr + IO_PORT);
  1096. lp->tx_end = i ;
  1097. }
  1098. else {
  1099. lp->tx_start = lp->tx_end = i ;
  1100. }
  1101. /* Acknowledge that the MC setup is done */
  1102. do { /* We should be doing this in the eepro_interrupt()! */
  1103. SLOW_DOWN;
  1104. SLOW_DOWN;
  1105. if (inb(ioaddr + STATUS_REG) & 0x08)
  1106. {
  1107. i = inb(ioaddr);
  1108. outb(0x08, ioaddr + STATUS_REG);
  1109. if (i & 0x20) { /* command ABORTed */
  1110. printk(KERN_NOTICE "%s: multicast setup failed.n", 
  1111. dev->name);
  1112. break;
  1113. } else if ((i & 0x0f) == 0x03) { /* MC-Done */
  1114. printk(KERN_DEBUG "%s: set Rx mode to %d address%s.n",
  1115. dev->name, dev->mc_count,
  1116. dev->mc_count > 1 ? "es":"");
  1117. break;
  1118. }
  1119. }
  1120. } while (++boguscount < 100);
  1121. /* Re-enable RX and TX interrupts */
  1122. eepro_en_int(ioaddr);
  1123. }
  1124. if (lp->eepro == LAN595FX_10ISA) {
  1125. eepro_complete_selreset(ioaddr);
  1126. }
  1127. else
  1128. eepro_en_rx(ioaddr);
  1129. }
  1130. /* The horrible routine to read a word from the serial EEPROM. */
  1131. /* IMPORTANT - the 82595 will be set to Bank 0 after the eeprom is read */
  1132. /* The delay between EEPROM clock transitions. */
  1133. #define eeprom_delay() { udelay(40); }
  1134. #define EE_READ_CMD (6 << 6)
  1135. int
  1136. read_eeprom(int ioaddr, int location, struct net_device *dev)
  1137. {
  1138. int i;
  1139. unsigned short retval = 0;
  1140. struct eepro_local *lp = dev->priv;
  1141. short ee_addr = ioaddr + lp->eeprom_reg;
  1142. int read_cmd = location | EE_READ_CMD;
  1143. short ctrl_val = EECS ;
  1144. /* XXXX - black magic */
  1145. eepro_sw2bank1(ioaddr);
  1146. outb(0x00, ioaddr + STATUS_REG);
  1147. /* XXXX - black magic */
  1148. eepro_sw2bank2(ioaddr);
  1149. outb(ctrl_val, ee_addr);
  1150. /* Shift the read command bits out. */
  1151. for (i = 8; i >= 0; i--) {
  1152. short outval = (read_cmd & (1 << i)) ? ctrl_val | EEDI
  1153. : ctrl_val;
  1154. outb(outval, ee_addr);
  1155. outb(outval | EESK, ee_addr); /* EEPROM clock tick. */
  1156. eeprom_delay();
  1157. outb(outval, ee_addr); /* Finish EEPROM a clock tick. */
  1158. eeprom_delay();
  1159. }
  1160. outb(ctrl_val, ee_addr);
  1161. for (i = 16; i > 0; i--) {
  1162. outb(ctrl_val | EESK, ee_addr);  eeprom_delay();
  1163. retval = (retval << 1) | ((inb(ee_addr) & EEDO) ? 1 : 0);
  1164. outb(ctrl_val, ee_addr);  eeprom_delay();
  1165. }
  1166. /* Terminate the EEPROM access. */
  1167. ctrl_val &= ~EECS;
  1168. outb(ctrl_val | EESK, ee_addr);
  1169. eeprom_delay();
  1170. outb(ctrl_val, ee_addr);
  1171. eeprom_delay();
  1172. eepro_sw2bank0(ioaddr);
  1173. return retval;
  1174. }
  1175. static int
  1176. hardware_send_packet(struct net_device *dev, void *buf, short length)
  1177. {
  1178. struct eepro_local *lp = (struct eepro_local *)dev->priv;
  1179. short ioaddr = dev->base_addr;
  1180. unsigned status, tx_available, last, end;
  1181. if (net_debug > 5)
  1182. printk(KERN_DEBUG "%s: entering hardware_send_packet routine.n", dev->name);
  1183. /* determine how much of the transmit buffer space is available */
  1184. if (lp->tx_end > lp->tx_start)
  1185. tx_available = lp->xmt_ram - (lp->tx_end - lp->tx_start);
  1186. else if (lp->tx_end < lp->tx_start)
  1187. tx_available = lp->tx_start - lp->tx_end;
  1188. else tx_available = lp->xmt_ram;
  1189. if (((((length + 3) >> 1) << 1) + 2*XMT_HEADER) >= tx_available) {
  1190. /* No space available ??? */
  1191. return 1;
  1192. }
  1193. last = lp->tx_end;
  1194. end = last + (((length + 3) >> 1) << 1) + XMT_HEADER;
  1195. if (end >= lp->xmt_upper_limit + 2) { /* the transmit buffer is wrapped around */
  1196. if ((lp->xmt_upper_limit + 2 - last) <= XMT_HEADER) {
  1197. /* Arrrr!!!, must keep the xmt header together,
  1198. several days were lost to chase this one down. */
  1199. last = lp->xmt_lower_limit;
  1200. end = last + (((length + 3) >> 1) << 1) + XMT_HEADER;
  1201. }
  1202. else end = lp->xmt_lower_limit + (end -
  1203. lp->xmt_upper_limit + 2);
  1204. }
  1205. outw(last, ioaddr + HOST_ADDRESS_REG);
  1206. outw(XMT_CMD, ioaddr + IO_PORT);
  1207. outw(0, ioaddr + IO_PORT);
  1208. outw(end, ioaddr + IO_PORT);
  1209. outw(length, ioaddr + IO_PORT);
  1210. if (lp->version == LAN595)
  1211. outsw(ioaddr + IO_PORT, buf, (length + 3) >> 1);
  1212. else { /* LAN595TX or LAN595FX, capable of 32-bit I/O processing */
  1213. unsigned short temp = inb(ioaddr + INT_MASK_REG);
  1214. outb(temp | IO_32_BIT, ioaddr + INT_MASK_REG);
  1215. outsl(ioaddr + IO_PORT_32_BIT, buf, (length + 3) >> 2);
  1216. outb(temp & ~(IO_32_BIT), ioaddr + INT_MASK_REG);
  1217. }
  1218. /* A dummy read to flush the DRAM write pipeline */
  1219. status = inw(ioaddr + IO_PORT);
  1220. if (lp->tx_start == lp->tx_end) {
  1221. outw(last, ioaddr + lp->xmt_bar);
  1222. outb(XMT_CMD, ioaddr);
  1223. lp->tx_start = last;   /* I don't like to change tx_start here */
  1224. }
  1225. else {
  1226. /* update the next address and the chain bit in the
  1227. last packet */
  1228. if (lp->tx_end != last) {
  1229. outw(lp->tx_last + XMT_CHAIN, ioaddr + HOST_ADDRESS_REG);
  1230. outw(last, ioaddr + IO_PORT);
  1231. }
  1232. outw(lp->tx_last + XMT_COUNT, ioaddr + HOST_ADDRESS_REG);
  1233. status = inw(ioaddr + IO_PORT);
  1234. outw(status | CHAIN_BIT, ioaddr + IO_PORT);
  1235. /* Continue the transmit command */
  1236. outb(RESUME_XMT_CMD, ioaddr);
  1237. }
  1238. lp->tx_last = last;
  1239. lp->tx_end = end;
  1240. if (net_debug > 5)
  1241. printk(KERN_DEBUG "%s: exiting hardware_send_packet routine.n", dev->name);
  1242. return 0;
  1243. }
  1244. static void
  1245. eepro_rx(struct net_device *dev)
  1246. {
  1247. struct eepro_local *lp = (struct eepro_local *)dev->priv;
  1248. short ioaddr = dev->base_addr;
  1249. short boguscount = 20;
  1250. short rcv_car = lp->rx_start;
  1251. unsigned rcv_event, rcv_status, rcv_next_frame, rcv_size;
  1252. if (net_debug > 5)
  1253. printk(KERN_DEBUG "%s: entering eepro_rx routine.n", dev->name);
  1254. /* Set the read pointer to the start of the RCV */
  1255. outw(rcv_car, ioaddr + HOST_ADDRESS_REG);
  1256. rcv_event = inw(ioaddr + IO_PORT);
  1257. while (rcv_event == RCV_DONE) {
  1258. rcv_status = inw(ioaddr + IO_PORT);
  1259. rcv_next_frame = inw(ioaddr + IO_PORT);
  1260. rcv_size = inw(ioaddr + IO_PORT);
  1261. if ((rcv_status & (RX_OK | RX_ERROR)) == RX_OK) {
  1262. /* Malloc up new buffer. */
  1263. struct sk_buff *skb;
  1264. lp->stats.rx_bytes+=rcv_size;
  1265. rcv_size &= 0x3fff;
  1266. skb = dev_alloc_skb(rcv_size+5);
  1267. if (skb == NULL) {
  1268. printk(KERN_NOTICE "%s: Memory squeeze, dropping packet.n", dev->name);
  1269. lp->stats.rx_dropped++;
  1270. rcv_car = lp->rx_start + RCV_HEADER + rcv_size;
  1271. lp->rx_start = rcv_next_frame;
  1272. outw(rcv_next_frame, ioaddr + HOST_ADDRESS_REG);
  1273. break;
  1274. }
  1275. skb->dev = dev;
  1276. skb_reserve(skb,2);
  1277. if (lp->version == LAN595)
  1278. insw(ioaddr+IO_PORT, skb_put(skb,rcv_size), (rcv_size + 3) >> 1);
  1279. else { /* LAN595TX or LAN595FX, capable of 32-bit I/O processing */
  1280. unsigned short temp = inb(ioaddr + INT_MASK_REG);
  1281. outb(temp | IO_32_BIT, ioaddr + INT_MASK_REG);
  1282. insl(ioaddr+IO_PORT_32_BIT, skb_put(skb,rcv_size),
  1283. (rcv_size + 3) >> 2);
  1284. outb(temp & ~(IO_32_BIT), ioaddr + INT_MASK_REG);
  1285. }
  1286. skb->protocol = eth_type_trans(skb,dev);
  1287. netif_rx(skb);
  1288. dev->last_rx = jiffies;
  1289. lp->stats.rx_packets++;
  1290. }
  1291. else { /* Not sure will ever reach here,
  1292. I set the 595 to discard bad received frames */
  1293. lp->stats.rx_errors++;
  1294. if (rcv_status & 0x0100)
  1295. lp->stats.rx_over_errors++;
  1296. else if (rcv_status & 0x0400)
  1297. lp->stats.rx_frame_errors++;
  1298. else if (rcv_status & 0x0800)
  1299. lp->stats.rx_crc_errors++;
  1300. printk(KERN_DEBUG "%s: event = %#x, status = %#x, next = %#x, size = %#xn", 
  1301. dev->name, rcv_event, rcv_status, rcv_next_frame, rcv_size);
  1302. }
  1303. if (rcv_status & 0x1000)
  1304. lp->stats.rx_length_errors++;
  1305. rcv_car = lp->rx_start + RCV_HEADER + rcv_size;
  1306. lp->rx_start = rcv_next_frame;
  1307. if (--boguscount == 0)
  1308. break;
  1309. outw(rcv_next_frame, ioaddr + HOST_ADDRESS_REG);
  1310. rcv_event = inw(ioaddr + IO_PORT);
  1311. }
  1312. if (rcv_car == 0)
  1313. rcv_car = lp->rcv_upper_limit | 0xff;
  1314. outw(rcv_car - 1, ioaddr + RCV_STOP);
  1315. if (net_debug > 5)
  1316. printk(KERN_DEBUG "%s: exiting eepro_rx routine.n", dev->name);
  1317. }
  1318. static void
  1319. eepro_transmit_interrupt(struct net_device *dev)
  1320. {
  1321. struct eepro_local *lp = (struct eepro_local *)dev->priv;
  1322. short ioaddr = dev->base_addr;
  1323. short boguscount = 25; 
  1324. short xmt_status;
  1325. while ((lp->tx_start != lp->tx_end) && boguscount--) { 
  1326. outw(lp->tx_start, ioaddr + HOST_ADDRESS_REG);
  1327. xmt_status = inw(ioaddr+IO_PORT);
  1328. if (!(xmt_status & TX_DONE_BIT))
  1329. break;
  1330. xmt_status = inw(ioaddr+IO_PORT);
  1331. lp->tx_start = inw(ioaddr+IO_PORT);
  1332. netif_wake_queue (dev);
  1333. if (xmt_status & TX_OK)
  1334. lp->stats.tx_packets++;
  1335. else {
  1336. lp->stats.tx_errors++;
  1337. if (xmt_status & 0x0400) {
  1338. lp->stats.tx_carrier_errors++;
  1339. printk(KERN_DEBUG "%s: carrier errorn",
  1340. dev->name);
  1341. printk(KERN_DEBUG "%s: XMT status = %#xn",
  1342. dev->name, xmt_status);
  1343. }
  1344. else {
  1345. printk(KERN_DEBUG "%s: XMT status = %#xn",
  1346. dev->name, xmt_status);
  1347. printk(KERN_DEBUG "%s: XMT status = %#xn",
  1348. dev->name, xmt_status);
  1349. }
  1350. }
  1351. if (xmt_status & 0x000f) {
  1352. lp->stats.collisions += (xmt_status & 0x000f);
  1353. }
  1354. if ((xmt_status & 0x0040) == 0x0) {
  1355. lp->stats.tx_heartbeat_errors++;
  1356. }
  1357. }
  1358. }
  1359. #ifdef MODULE
  1360. #define MAX_EEPRO 8
  1361. static struct net_device dev_eepro[MAX_EEPRO];
  1362. static int io[MAX_EEPRO];
  1363. static int irq[MAX_EEPRO];
  1364. static int mem[MAX_EEPRO] = { /* Size of the rx buffer in KB */
  1365.   [0 ... MAX_EEPRO-1] = RCV_DEFAULT_RAM/1024
  1366. };
  1367. static int autodetect;
  1368. static int n_eepro;
  1369. /* For linux 2.1.xx */
  1370. MODULE_AUTHOR("Pascal Dupuis <dupuis@lei.ucl.ac.be> for the 2.1 stuff (locking,...)");
  1371. MODULE_DESCRIPTION("Intel i82595 ISA EtherExpressPro10/10+ driver");
  1372. MODULE_LICENSE("GPL");
  1373. MODULE_PARM(io, "1-" __MODULE_STRING(MAX_EEPRO) "i");
  1374. MODULE_PARM(irq, "1-" __MODULE_STRING(MAX_EEPRO) "i");
  1375. MODULE_PARM(mem, "1-" __MODULE_STRING(MAX_EEPRO) "i");
  1376. MODULE_PARM(autodetect, "1-" __MODULE_STRING(1) "i");
  1377. MODULE_PARM_DESC(io, "EtherExpress Pro/10 I/O base addres(es)");
  1378. MODULE_PARM_DESC(irq, "EtherExpress Pro/10 IRQ number(s)");
  1379. MODULE_PARM_DESC(mem, "EtherExpress Pro/10 Rx buffer size(es) in kB (3-29)");
  1380. MODULE_PARM_DESC(autodetect, "EtherExpress Pro/10 force board(s) detection (0-1)");
  1381. int
  1382. init_module(void)
  1383. {
  1384. int i;
  1385. if (io[0] == 0 && autodetect == 0) {
  1386. printk(KERN_WARNING "eepro_init_module: Probe is very dangerous in ISA boards!n");
  1387. printk(KERN_WARNING "eepro_init_module: Please add "autodetect=1" to force proben");
  1388. return 1;
  1389. }
  1390. else if (autodetect) {
  1391. /* if autodetect is set then we must force detection */
  1392. io[0] = 0;
  1393. printk(KERN_INFO "eepro_init_module: Auto-detecting boards (May God protect us...)n");
  1394. }
  1395. for (i = 0; i < MAX_EEPRO; i++) {
  1396. struct net_device *d = &dev_eepro[n_eepro];
  1397. d->mem_end = mem[i];
  1398. d->base_addr = io[i];
  1399. d->irq = irq[i];
  1400. d->init = eepro_probe;
  1401. if (register_netdev(d) == 0)
  1402. n_eepro++;
  1403. else
  1404. break;
  1405. }
  1406. if (n_eepro)
  1407. printk(KERN_INFO "%s", version);
  1408. return n_eepro ? 0 : -ENODEV;
  1409. }
  1410. void
  1411. cleanup_module(void)
  1412. {
  1413. int i;
  1414. for (i=0; i<n_eepro; i++) {
  1415. struct net_device *d = &dev_eepro[i];
  1416. unregister_netdev(d);
  1417. kfree(d->priv);
  1418. d->priv=NULL;
  1419. /* If we don't do this, we can't re-insmod it later. */
  1420. release_region(d->base_addr, EEPRO_IO_EXTENT);
  1421. }
  1422. }
  1423. #endif /* MODULE */