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

嵌入式Linux

开发平台:

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