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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2. 8139too.c: A RealTek RTL-8139 Fast Ethernet driver for Linux.
  3. Maintained by Jeff Garzik <jgarzik@mandrakesoft.com>
  4. Copyright 2000-2002 Jeff Garzik
  5. Much code comes from Donald Becker's rtl8139.c driver,
  6. versions 1.13 and older.  This driver was originally based
  7. on rtl8139.c version 1.07.  Header of rtl8139.c version 1.13:
  8. -----<snip>-----
  9.          Written 1997-2001 by Donald Becker.
  10. This software may be used and distributed according to the
  11. terms of the GNU General Public License (GPL), incorporated
  12. herein by reference.  Drivers based on or derived from this
  13. code fall under the GPL and must retain the authorship,
  14. copyright and license notice.  This file is not a complete
  15. program and may only be used when the entire operating
  16. system is licensed under the GPL.
  17. This driver is for boards based on the RTL8129 and RTL8139
  18. PCI ethernet chips.
  19. The author may be reached as becker@scyld.com, or C/O Scyld
  20. Computing Corporation 410 Severn Ave., Suite 210 Annapolis
  21. MD 21403
  22. Support and updates available at
  23. http://www.scyld.com/network/rtl8139.html
  24. Twister-tuning table provided by Kinston
  25. <shangh@realtek.com.tw>.
  26. -----<snip>-----
  27. This software may be used and distributed according to the terms
  28. of the GNU General Public License, incorporated herein by reference.
  29. Contributors:
  30. Donald Becker - he wrote the original driver, kudos to him!
  31. (but please don't e-mail him for support, this isn't his driver)
  32. Tigran Aivazian - bug fixes, skbuff free cleanup
  33. Martin Mares - suggestions for PCI cleanup
  34. David S. Miller - PCI DMA and softnet updates
  35. Ernst Gill - fixes ported from BSD driver
  36. Daniel Kobras - identified specific locations of
  37. posted MMIO write bugginess
  38. Gerard Sharp - bug fix, testing and feedback
  39. David Ford - Rx ring wrap fix
  40. Dan DeMaggio - swapped RTL8139 cards with me, and allowed me
  41. to find and fix a crucial bug on older chipsets.
  42. Donald Becker/Chris Butterworth/Marcus Westergren -
  43. Noticed various Rx packet size-related buglets.
  44. Santiago Garcia Mantinan - testing and feedback
  45. Jens David - 2.2.x kernel backports
  46. Martin Dennett - incredibly helpful insight on undocumented
  47. features of the 8139 chips
  48. Jean-Jacques Michel - bug fix
  49. Tobias Ringstr鰉 - Rx interrupt status checking suggestion
  50. Andrew Morton - Clear blocked signals, avoid
  51. buffer overrun setting current->comm.
  52. Kalle Olavi Niemitalo - Wake-on-LAN ioctls
  53. Robert Kuebel - Save kernel thread from dying on any signal.
  54. Submitting bug reports:
  55. "rtl8139-diag -mmmaaavvveefN" output
  56. enable RTL8139_DEBUG below, and look at 'dmesg' or kernel log
  57. See 8139too.txt for more details.
  58. */
  59. #define DRV_NAME "8139too"
  60. #define DRV_VERSION "0.9.24"
  61. #include <linux/config.h>
  62. #include <linux/module.h>
  63. #include <linux/kernel.h>
  64. #include <linux/compiler.h>
  65. #include <linux/pci.h>
  66. #include <linux/init.h>
  67. #include <linux/ioport.h>
  68. #include <linux/netdevice.h>
  69. #include <linux/etherdevice.h>
  70. #include <linux/rtnetlink.h>
  71. #include <linux/delay.h>
  72. #include <linux/ethtool.h>
  73. #include <linux/mii.h>
  74. #include <linux/completion.h>
  75. #include <asm/io.h>
  76. #include <asm/uaccess.h>
  77. #define RTL8139_DRIVER_NAME   DRV_NAME " Fast Ethernet driver " DRV_VERSION
  78. #define PFX DRV_NAME ": "
  79. /* enable PIO instead of MMIO, if CONFIG_8139TOO_PIO is selected */
  80. #ifdef CONFIG_8139TOO_PIO
  81. #define USE_IO_OPS 1
  82. #endif
  83. /* define to 1 to enable copious debugging info */
  84. #undef RTL8139_DEBUG
  85. /* define to 1 to disable lightweight runtime debugging checks */
  86. #undef RTL8139_NDEBUG
  87. #ifdef RTL8139_DEBUG
  88. /* note: prints function name for you */
  89. #  define DPRINTK(fmt, args...) printk(KERN_DEBUG "%s: " fmt, __FUNCTION__ , ## args)
  90. #else
  91. #  define DPRINTK(fmt, args...)
  92. #endif
  93. #ifdef RTL8139_NDEBUG
  94. #  define assert(expr) do {} while (0)
  95. #else
  96. #  define assert(expr) 
  97.         if(!(expr)) {
  98.         printk( "Assertion failed! %s,%s,%s,line=%dn",
  99.         #expr,__FILE__,__FUNCTION__,__LINE__);
  100.         }
  101. #endif
  102. /* A few user-configurable values. */
  103. /* media options */
  104. #define MAX_UNITS 8
  105. static int media[MAX_UNITS] = {-1, -1, -1, -1, -1, -1, -1, -1};
  106. static int full_duplex[MAX_UNITS] = {-1, -1, -1, -1, -1, -1, -1, -1};
  107. /* Maximum events (Rx packets, etc.) to handle at each interrupt. */
  108. static int max_interrupt_work = 20;
  109. /* Maximum number of multicast addresses to filter (vs. Rx-all-multicast).
  110.    The RTL chips use a 64 element hash table based on the Ethernet CRC.  */
  111. static int multicast_filter_limit = 32;
  112. /* bitmapped message enable number */
  113. static int debug = -1;
  114. /* Size of the in-memory receive ring. */
  115. #define RX_BUF_LEN_IDX 2 /* 0==8K, 1==16K, 2==32K, 3==64K */
  116. #define RX_BUF_LEN (8192 << RX_BUF_LEN_IDX)
  117. #define RX_BUF_PAD 16
  118. #define RX_BUF_WRAP_PAD 2048 /* spare padding to handle lack of packet wrap */
  119. #define RX_BUF_TOT_LEN (RX_BUF_LEN + RX_BUF_PAD + RX_BUF_WRAP_PAD)
  120. /* Number of Tx descriptor registers. */
  121. #define NUM_TX_DESC 4
  122. /* max supported ethernet frame size -- must be at least (dev->mtu+14+4).*/
  123. #define MAX_ETH_FRAME_SIZE 1536
  124. /* Size of the Tx bounce buffers -- must be at least (dev->mtu+14+4). */
  125. #define TX_BUF_SIZE MAX_ETH_FRAME_SIZE
  126. #define TX_BUF_TOT_LEN (TX_BUF_SIZE * NUM_TX_DESC)
  127. /* PCI Tuning Parameters
  128.    Threshold is bytes transferred to chip before transmission starts. */
  129. #define TX_FIFO_THRESH 256 /* In bytes, rounded down to 32 byte units. */
  130. /* The following settings are log_2(bytes)-4:  0 == 16 bytes .. 6==1024, 7==end of packet. */
  131. #define RX_FIFO_THRESH 7 /* Rx buffer level before first PCI xfer.  */
  132. #define RX_DMA_BURST 7 /* Maximum PCI burst, '6' is 1024 */
  133. #define TX_DMA_BURST 6 /* Maximum PCI burst, '6' is 1024 */
  134. #define TX_RETRY 8 /* 0-15.  retries = 16 + (TX_RETRY * 16) */
  135. /* Operational parameters that usually are not changed. */
  136. /* Time in jiffies before concluding the transmitter is hung. */
  137. #define TX_TIMEOUT  (6*HZ)
  138. enum {
  139. HAS_MII_XCVR = 0x010000,
  140. HAS_CHIP_XCVR = 0x020000,
  141. HAS_LNK_CHNG = 0x040000,
  142. };
  143. #define RTL_MIN_IO_SIZE 0x80
  144. #define RTL8139B_IO_SIZE 256
  145. #define RTL8129_CAPS HAS_MII_XCVR
  146. #define RTL8139_CAPS HAS_CHIP_XCVR|HAS_LNK_CHNG
  147. typedef enum {
  148. RTL8139 = 0,
  149. RTL8139_CB,
  150. SMC1211TX,
  151. /*MPX5030,*/
  152. DELTA8139,
  153. ADDTRON8139,
  154. DFE538TX,
  155. DFE690TXD,
  156. FE2000VX,
  157. ALLIED8139,
  158. RTL8129,
  159. } board_t;
  160. /* indexed by board_t, above */
  161. static struct {
  162. const char *name;
  163. u32 hw_flags;
  164. } board_info[] __devinitdata = {
  165. { "RealTek RTL8139 Fast Ethernet", RTL8139_CAPS },
  166. { "RealTek RTL8139B PCI/CardBus", RTL8139_CAPS },
  167. { "SMC1211TX EZCard 10/100 (RealTek RTL8139)", RTL8139_CAPS },
  168. /* { MPX5030, "Accton MPX5030 (RealTek RTL8139)", RTL8139_CAPS },*/
  169. { "Delta Electronics 8139 10/100BaseTX", RTL8139_CAPS },
  170. { "Addtron Technolgy 8139 10/100BaseTX", RTL8139_CAPS },
  171. { "D-Link DFE-538TX (RealTek RTL8139)", RTL8139_CAPS },
  172. { "D-Link DFE-690TXD (RealTek RTL8139)", RTL8139_CAPS },
  173. { "AboCom FE2000VX (RealTek RTL8139)", RTL8139_CAPS },
  174. { "Allied Telesyn 8139 CardBus", RTL8139_CAPS },
  175. { "RealTek RTL8129", RTL8129_CAPS },
  176. };
  177. static struct pci_device_id rtl8139_pci_tbl[] __devinitdata = {
  178. {0x10ec, 0x8139, PCI_ANY_ID, PCI_ANY_ID, 0, 0, RTL8139 },
  179. {0x10ec, 0x8138, PCI_ANY_ID, PCI_ANY_ID, 0, 0, RTL8139_CB },
  180. {0x1113, 0x1211, PCI_ANY_ID, PCI_ANY_ID, 0, 0, SMC1211TX },
  181. /* {0x1113, 0x1211, PCI_ANY_ID, PCI_ANY_ID, 0, 0, MPX5030 },*/
  182. {0x1500, 0x1360, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DELTA8139 },
  183. {0x4033, 0x1360, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ADDTRON8139 },
  184. {0x1186, 0x1300, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DFE538TX },
  185. {0x1186, 0x1340, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DFE690TXD },
  186. {0x13d1, 0xab06, PCI_ANY_ID, PCI_ANY_ID, 0, 0, FE2000VX },
  187. {0x1259, 0xa117, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ALLIED8139 },
  188. #ifdef CONFIG_8139TOO_8129
  189. {0x10ec, 0x8129, PCI_ANY_ID, PCI_ANY_ID, 0, 0, RTL8129 },
  190. #endif
  191. /* some crazy cards report invalid vendor ids like
  192.  * 0x0001 here.  The other ids are valid and constant,
  193.  * so we simply don't match on the main vendor id.
  194.  */
  195. {PCI_ANY_ID, 0x8139, 0x10ec, 0x8139, 0, 0, RTL8139 },
  196. {PCI_ANY_ID, 0x8139, 0x1186, 0x1300, 0, 0, DFE538TX },
  197. {PCI_ANY_ID, 0x8139, 0x13d1, 0xab06, 0, 0, FE2000VX },
  198. {0,}
  199. };
  200. MODULE_DEVICE_TABLE (pci, rtl8139_pci_tbl);
  201. /* The rest of these values should never change. */
  202. /* Symbolic offsets to registers. */
  203. enum RTL8139_registers {
  204. MAC0 = 0, /* Ethernet hardware address. */
  205. MAR0 = 8, /* Multicast filter. */
  206. TxStatus0 = 0x10, /* Transmit status (Four 32bit registers). */
  207. TxAddr0 = 0x20, /* Tx descriptors (also four 32bit). */
  208. RxBuf = 0x30,
  209. ChipCmd = 0x37,
  210. RxBufPtr = 0x38,
  211. RxBufAddr = 0x3A,
  212. IntrMask = 0x3C,
  213. IntrStatus = 0x3E,
  214. TxConfig = 0x40,
  215. ChipVersion = 0x43,
  216. RxConfig = 0x44,
  217. Timer = 0x48, /* A general-purpose counter. */
  218. RxMissed = 0x4C, /* 24 bits valid, write clears. */
  219. Cfg9346 = 0x50,
  220. Config0 = 0x51,
  221. Config1 = 0x52,
  222. FlashReg = 0x54,
  223. MediaStatus = 0x58,
  224. Config3 = 0x59,
  225. Config4 = 0x5A, /* absent on RTL-8139A */
  226. HltClk = 0x5B,
  227. MultiIntr = 0x5C,
  228. TxSummary = 0x60,
  229. BasicModeCtrl = 0x62,
  230. BasicModeStatus = 0x64,
  231. NWayAdvert = 0x66,
  232. NWayLPAR = 0x68,
  233. NWayExpansion = 0x6A,
  234. /* Undocumented registers, but required for proper operation. */
  235. FIFOTMS = 0x70, /* FIFO Control and test. */
  236. CSCR = 0x74, /* Chip Status and Configuration Register. */
  237. PARA78 = 0x78,
  238. PARA7c = 0x7c, /* Magic transceiver parameter register. */
  239. Config5 = 0xD8, /* absent on RTL-8139A */
  240. };
  241. enum ClearBitMasks {
  242. MultiIntrClear = 0xF000,
  243. ChipCmdClear = 0xE2,
  244. Config1Clear = (1<<7)|(1<<6)|(1<<3)|(1<<2)|(1<<1),
  245. };
  246. enum ChipCmdBits {
  247. CmdReset = 0x10,
  248. CmdRxEnb = 0x08,
  249. CmdTxEnb = 0x04,
  250. RxBufEmpty = 0x01,
  251. };
  252. /* Interrupt register bits, using my own meaningful names. */
  253. enum IntrStatusBits {
  254. PCIErr = 0x8000,
  255. PCSTimeout = 0x4000,
  256. RxFIFOOver = 0x40,
  257. RxUnderrun = 0x20,
  258. RxOverflow = 0x10,
  259. TxErr = 0x08,
  260. TxOK = 0x04,
  261. RxErr = 0x02,
  262. RxOK = 0x01,
  263. RxAckBits = RxFIFOOver | RxOverflow | RxOK,
  264. };
  265. enum TxStatusBits {
  266. TxHostOwns = 0x2000,
  267. TxUnderrun = 0x4000,
  268. TxStatOK = 0x8000,
  269. TxOutOfWindow = 0x20000000,
  270. TxAborted = 0x40000000,
  271. TxCarrierLost = 0x80000000,
  272. };
  273. enum RxStatusBits {
  274. RxMulticast = 0x8000,
  275. RxPhysical = 0x4000,
  276. RxBroadcast = 0x2000,
  277. RxBadSymbol = 0x0020,
  278. RxRunt = 0x0010,
  279. RxTooLong = 0x0008,
  280. RxCRCErr = 0x0004,
  281. RxBadAlign = 0x0002,
  282. RxStatusOK = 0x0001,
  283. };
  284. /* Bits in RxConfig. */
  285. enum rx_mode_bits {
  286. AcceptErr = 0x20,
  287. AcceptRunt = 0x10,
  288. AcceptBroadcast = 0x08,
  289. AcceptMulticast = 0x04,
  290. AcceptMyPhys = 0x02,
  291. AcceptAllPhys = 0x01,
  292. };
  293. /* Bits in TxConfig. */
  294. enum tx_config_bits {
  295. TxIFG1 = (1 << 25), /* Interframe Gap Time */
  296. TxIFG0 = (1 << 24), /* Enabling these bits violates IEEE 802.3 */
  297. TxLoopBack = (1 << 18) | (1 << 17), /* enable loopback test mode */
  298. TxCRC = (1 << 16), /* DISABLE appending CRC to end of Tx packets */
  299. TxClearAbt = (1 << 0), /* Clear abort (WO) */
  300. TxDMAShift = 8, /* DMA burst value (0-7) is shifted this many bits */
  301. TxRetryShift = 4, /* TXRR value (0-15) is shifted this many bits */
  302. TxVersionMask = 0x7C800000, /* mask out version bits 30-26, 23 */
  303. };
  304. /* Bits in Config1 */
  305. enum Config1Bits {
  306. Cfg1_PM_Enable = 0x01,
  307. Cfg1_VPD_Enable = 0x02,
  308. Cfg1_PIO = 0x04,
  309. Cfg1_MMIO = 0x08,
  310. LWAKE = 0x10, /* not on 8139, 8139A */
  311. Cfg1_Driver_Load = 0x20,
  312. Cfg1_LED0 = 0x40,
  313. Cfg1_LED1 = 0x80,
  314. SLEEP = (1 << 1), /* only on 8139, 8139A */
  315. PWRDN = (1 << 0), /* only on 8139, 8139A */
  316. };
  317. /* Bits in Config3 */
  318. enum Config3Bits {
  319. Cfg3_FBtBEn    = (1 << 0), /* 1 = Fast Back to Back */
  320. Cfg3_FuncRegEn = (1 << 1), /* 1 = enable CardBus Function registers */
  321. Cfg3_CLKRUN_En = (1 << 2), /* 1 = enable CLKRUN */
  322. Cfg3_CardB_En  = (1 << 3), /* 1 = enable CardBus registers */
  323. Cfg3_LinkUp    = (1 << 4), /* 1 = wake up on link up */
  324. Cfg3_Magic     = (1 << 5), /* 1 = wake up on Magic Packet (tm) */
  325. Cfg3_PARM_En   = (1 << 6), /* 0 = software can set twister parameters */
  326. Cfg3_GNTSel    = (1 << 7), /* 1 = delay 1 clock from PCI GNT signal */
  327. };
  328. /* Bits in Config4 */
  329. enum Config4Bits {
  330. LWPTN = (1 << 2), /* not on 8139, 8139A */
  331. };
  332. /* Bits in Config5 */
  333. enum Config5Bits {
  334. Cfg5_PME_STS     = (1 << 0), /* 1 = PCI reset resets PME_Status */
  335. Cfg5_LANWake     = (1 << 1), /* 1 = enable LANWake signal */
  336. Cfg5_LDPS        = (1 << 2), /* 0 = save power when link is down */
  337. Cfg5_FIFOAddrPtr = (1 << 3), /* Realtek internal SRAM testing */
  338. Cfg5_UWF         = (1 << 4), /* 1 = accept unicast wakeup frame */
  339. Cfg5_MWF         = (1 << 5), /* 1 = accept multicast wakeup frame */
  340. Cfg5_BWF         = (1 << 6), /* 1 = accept broadcast wakeup frame */
  341. };
  342. enum RxConfigBits {
  343. /* rx fifo threshold */
  344. RxCfgFIFOShift = 13,
  345. RxCfgFIFONone = (7 << RxCfgFIFOShift),
  346. /* Max DMA burst */
  347. RxCfgDMAShift = 8,
  348. RxCfgDMAUnlimited = (7 << RxCfgDMAShift),
  349. /* rx ring buffer length */
  350. RxCfgRcv8K = 0,
  351. RxCfgRcv16K = (1 << 11),
  352. RxCfgRcv32K = (1 << 12),
  353. RxCfgRcv64K = (1 << 11) | (1 << 12),
  354. /* Disable packet wrap at end of Rx buffer */
  355. RxNoWrap = (1 << 7),
  356. };
  357. /* Twister tuning parameters from RealTek.
  358.    Completely undocumented, but required to tune bad links. */
  359. enum CSCRBits {
  360. CSCR_LinkOKBit = 0x0400,
  361. CSCR_LinkChangeBit = 0x0800,
  362. CSCR_LinkStatusBits = 0x0f000,
  363. CSCR_LinkDownOffCmd = 0x003c0,
  364. CSCR_LinkDownCmd = 0x0f3c0,
  365. };
  366. enum Cfg9346Bits {
  367. Cfg9346_Lock = 0x00,
  368. Cfg9346_Unlock = 0xC0,
  369. };
  370. #define PARA78_default 0x78fa8388
  371. #define PARA7c_default 0xcb38de43 /* param[0][3] */
  372. #define PARA7c_xxx 0xcb38de43
  373. static const unsigned long param[4][4] = {
  374. {0xcb39de43, 0xcb39ce43, 0xfb38de03, 0xcb38de43},
  375. {0xcb39de43, 0xcb39ce43, 0xcb39ce83, 0xcb39ce83},
  376. {0xcb39de43, 0xcb39ce43, 0xcb39ce83, 0xcb39ce83},
  377. {0xbb39de43, 0xbb39ce43, 0xbb39ce83, 0xbb39ce83}
  378. };
  379. typedef enum {
  380. CH_8139 = 0,
  381. CH_8139_K,
  382. CH_8139A,
  383. CH_8139B,
  384. CH_8130,
  385. CH_8139C,
  386. } chip_t;
  387. enum chip_flags {
  388. HasHltClk = (1 << 0),
  389. HasLWake = (1 << 1),
  390. };
  391. /* directly indexed by chip_t, above */
  392. const static struct {
  393. const char *name;
  394. u8 version; /* from RTL8139C docs */
  395. u32 RxConfigMask; /* should clear the bits supported by this chip */
  396. u32 flags;
  397. } rtl_chip_info[] = {
  398. { "RTL-8139",
  399.   0x40,
  400.   0xf0fe0040, /* XXX copied from RTL8139A, verify */
  401.   HasHltClk,
  402. },
  403. { "RTL-8139 rev K",
  404.   0x60,
  405.   0xf0fe0040,
  406.   HasHltClk,
  407. },
  408. { "RTL-8139A",
  409.   0x70,
  410.   0xf0fe0040,
  411.   HasHltClk, /* XXX undocumented? */
  412. },
  413. { "RTL-8139B",
  414.   0x78,
  415.   0xf0fc0040,
  416.   HasLWake,
  417. },
  418. { "RTL-8130",
  419.   0x7C,
  420.   0xf0fe0040, /* XXX copied from RTL8139A, verify */
  421.   HasLWake,
  422. },
  423. { "RTL-8139C",
  424.   0x74,
  425.   0xf0fc0040, /* XXX copied from RTL8139B, verify */
  426.   HasLWake,
  427. },
  428. };
  429. struct rtl_extra_stats {
  430. unsigned long early_rx;
  431. unsigned long tx_buf_mapped;
  432. unsigned long tx_timeouts;
  433. unsigned long rx_lost_in_ring;
  434. };
  435. struct rtl8139_private {
  436. void *mmio_addr;
  437. int drv_flags;
  438. struct pci_dev *pci_dev;
  439. struct net_device_stats stats;
  440. unsigned char *rx_ring;
  441. unsigned int cur_rx; /* Index into the Rx buffer of next Rx pkt. */
  442. unsigned int tx_flag;
  443. unsigned long cur_tx;
  444. unsigned long dirty_tx;
  445. unsigned char *tx_buf[NUM_TX_DESC]; /* Tx bounce buffers */
  446. unsigned char *tx_bufs; /* Tx bounce buffer region. */
  447. dma_addr_t rx_ring_dma;
  448. dma_addr_t tx_bufs_dma;
  449. signed char phys[4]; /* MII device addresses. */
  450. char twistie, twist_row, twist_col; /* Twister tune state. */
  451. unsigned int default_port:4; /* Last dev->if_port value. */
  452. unsigned int medialock:1; /* Don't sense media type. */
  453. spinlock_t lock;
  454. chip_t chipset;
  455. pid_t thr_pid;
  456. wait_queue_head_t thr_wait;
  457. struct completion thr_exited;
  458. u32 rx_config;
  459. struct rtl_extra_stats xstats;
  460. int time_to_die;
  461. struct mii_if_info mii;
  462. };
  463. MODULE_AUTHOR ("Jeff Garzik <jgarzik@mandrakesoft.com>");
  464. MODULE_DESCRIPTION ("RealTek RTL-8139 Fast Ethernet driver");
  465. MODULE_LICENSE("GPL");
  466. MODULE_PARM (multicast_filter_limit, "i");
  467. MODULE_PARM (max_interrupt_work, "i");
  468. MODULE_PARM (media, "1-" __MODULE_STRING(MAX_UNITS) "i");
  469. MODULE_PARM (full_duplex, "1-" __MODULE_STRING(MAX_UNITS) "i");
  470. MODULE_PARM (debug, "i");
  471. MODULE_PARM_DESC (debug, "8139too bitmapped message enable number");
  472. MODULE_PARM_DESC (multicast_filter_limit, "8139too maximum number of filtered multicast addresses");
  473. MODULE_PARM_DESC (max_interrupt_work, "8139too maximum events handled per interrupt");
  474. MODULE_PARM_DESC (media, "8139too: Bits 4+9: force full duplex, bit 5: 100Mbps");
  475. MODULE_PARM_DESC (full_duplex, "8139too: Force full duplex for board(s) (1)");
  476. static int read_eeprom (void *ioaddr, int location, int addr_len);
  477. static int rtl8139_open (struct net_device *dev);
  478. static int mdio_read (struct net_device *dev, int phy_id, int location);
  479. static void mdio_write (struct net_device *dev, int phy_id, int location,
  480. int val);
  481. static int rtl8139_thread (void *data);
  482. static void rtl8139_tx_timeout (struct net_device *dev);
  483. static void rtl8139_init_ring (struct net_device *dev);
  484. static int rtl8139_start_xmit (struct sk_buff *skb,
  485.        struct net_device *dev);
  486. static void rtl8139_interrupt (int irq, void *dev_instance,
  487.        struct pt_regs *regs);
  488. static int rtl8139_close (struct net_device *dev);
  489. static int netdev_ioctl (struct net_device *dev, struct ifreq *rq, int cmd);
  490. static struct net_device_stats *rtl8139_get_stats (struct net_device *dev);
  491. static inline u32 ether_crc (int length, unsigned char *data);
  492. static void rtl8139_set_rx_mode (struct net_device *dev);
  493. static void __set_rx_mode (struct net_device *dev);
  494. static void rtl8139_hw_start (struct net_device *dev);
  495. #ifdef USE_IO_OPS
  496. #define RTL_R8(reg) inb (((unsigned long)ioaddr) + (reg))
  497. #define RTL_R16(reg) inw (((unsigned long)ioaddr) + (reg))
  498. #define RTL_R32(reg) ((unsigned long) inl (((unsigned long)ioaddr) + (reg)))
  499. #define RTL_W8(reg, val8) outb ((val8), ((unsigned long)ioaddr) + (reg))
  500. #define RTL_W16(reg, val16) outw ((val16), ((unsigned long)ioaddr) + (reg))
  501. #define RTL_W32(reg, val32) outl ((val32), ((unsigned long)ioaddr) + (reg))
  502. #define RTL_W8_F RTL_W8
  503. #define RTL_W16_F RTL_W16
  504. #define RTL_W32_F RTL_W32
  505. #undef readb
  506. #undef readw
  507. #undef readl
  508. #undef writeb
  509. #undef writew
  510. #undef writel
  511. #define readb(addr) inb((unsigned long)(addr))
  512. #define readw(addr) inw((unsigned long)(addr))
  513. #define readl(addr) inl((unsigned long)(addr))
  514. #define writeb(val,addr) outb((val),(unsigned long)(addr))
  515. #define writew(val,addr) outw((val),(unsigned long)(addr))
  516. #define writel(val,addr) outl((val),(unsigned long)(addr))
  517. #else
  518. /* write MMIO register, with flush */
  519. /* Flush avoids rtl8139 bug w/ posted MMIO writes */
  520. #define RTL_W8_F(reg, val8) do { writeb ((val8), ioaddr + (reg)); readb (ioaddr + (reg)); } while (0)
  521. #define RTL_W16_F(reg, val16) do { writew ((val16), ioaddr + (reg)); readw (ioaddr + (reg)); } while (0)
  522. #define RTL_W32_F(reg, val32) do { writel ((val32), ioaddr + (reg)); readl (ioaddr + (reg)); } while (0)
  523. #define MMIO_FLUSH_AUDIT_COMPLETE 1
  524. #if MMIO_FLUSH_AUDIT_COMPLETE
  525. /* write MMIO register */
  526. #define RTL_W8(reg, val8) writeb ((val8), ioaddr + (reg))
  527. #define RTL_W16(reg, val16) writew ((val16), ioaddr + (reg))
  528. #define RTL_W32(reg, val32) writel ((val32), ioaddr + (reg))
  529. #else
  530. /* write MMIO register, then flush */
  531. #define RTL_W8 RTL_W8_F
  532. #define RTL_W16 RTL_W16_F
  533. #define RTL_W32 RTL_W32_F
  534. #endif /* MMIO_FLUSH_AUDIT_COMPLETE */
  535. /* read MMIO register */
  536. #define RTL_R8(reg) readb (ioaddr + (reg))
  537. #define RTL_R16(reg) readw (ioaddr + (reg))
  538. #define RTL_R32(reg) ((unsigned long) readl (ioaddr + (reg)))
  539. #endif /* USE_IO_OPS */
  540. static const u16 rtl8139_intr_mask =
  541. PCIErr | PCSTimeout | RxUnderrun | RxOverflow | RxFIFOOver |
  542. TxErr | TxOK | RxErr | RxOK;
  543. static const unsigned int rtl8139_rx_config =
  544. RxCfgRcv32K | RxNoWrap |
  545. (RX_FIFO_THRESH << RxCfgFIFOShift) |
  546. (RX_DMA_BURST << RxCfgDMAShift);
  547. static const unsigned int rtl8139_tx_config =
  548. (TX_DMA_BURST << TxDMAShift) | (TX_RETRY << TxRetryShift);
  549. static void __rtl8139_cleanup_dev (struct net_device *dev)
  550. {
  551. struct rtl8139_private *tp;
  552. struct pci_dev *pdev;
  553. assert (dev != NULL);
  554. assert (dev->priv != NULL);
  555. tp = dev->priv;
  556. assert (tp->pci_dev != NULL);
  557. pdev = tp->pci_dev;
  558. #ifndef USE_IO_OPS
  559. if (tp->mmio_addr)
  560. iounmap (tp->mmio_addr);
  561. #endif /* !USE_IO_OPS */
  562. /* it's ok to call this even if we have no regions to free */
  563. pci_release_regions (pdev);
  564. #ifndef RTL8139_NDEBUG
  565. /* poison memory before freeing */
  566. memset (dev, 0xBC,
  567. sizeof (struct net_device) +
  568. sizeof (struct rtl8139_private));
  569. #endif /* RTL8139_NDEBUG */
  570. kfree (dev);
  571. pci_set_drvdata (pdev, NULL);
  572. }
  573. static void rtl8139_chip_reset (void *ioaddr)
  574. {
  575. int i;
  576. /* Soft reset the chip. */
  577. RTL_W8 (ChipCmd, CmdReset);
  578. /* Check that the chip has finished the reset. */
  579. for (i = 1000; i > 0; i--) {
  580. barrier();
  581. if ((RTL_R8 (ChipCmd) & CmdReset) == 0)
  582. break;
  583. udelay (10);
  584. }
  585. }
  586. static int __devinit rtl8139_init_board (struct pci_dev *pdev,
  587.  struct net_device **dev_out)
  588. {
  589. void *ioaddr;
  590. struct net_device *dev;
  591. struct rtl8139_private *tp;
  592. u8 tmp8;
  593. int rc;
  594. unsigned int i;
  595. u32 pio_start, pio_end, pio_flags, pio_len;
  596. unsigned long mmio_start, mmio_end, mmio_flags, mmio_len;
  597. u32 tmp;
  598. assert (pdev != NULL);
  599. *dev_out = NULL;
  600. /* dev and dev->priv zeroed in alloc_etherdev */
  601. dev = alloc_etherdev (sizeof (*tp));
  602. if (dev == NULL) {
  603. printk (KERN_ERR PFX "%s: Unable to alloc new net devicen", pdev->slot_name);
  604. return -ENOMEM;
  605. }
  606. SET_MODULE_OWNER(dev);
  607. tp = dev->priv;
  608. tp->pci_dev = pdev;
  609. /* enable device (incl. PCI PM wakeup and hotplug setup) */
  610. rc = pci_enable_device (pdev);
  611. if (rc)
  612. goto err_out;
  613. pio_start = pci_resource_start (pdev, 0);
  614. pio_end = pci_resource_end (pdev, 0);
  615. pio_flags = pci_resource_flags (pdev, 0);
  616. pio_len = pci_resource_len (pdev, 0);
  617. mmio_start = pci_resource_start (pdev, 1);
  618. mmio_end = pci_resource_end (pdev, 1);
  619. mmio_flags = pci_resource_flags (pdev, 1);
  620. mmio_len = pci_resource_len (pdev, 1);
  621. /* set this immediately, we need to know before
  622.  * we talk to the chip directly */
  623. DPRINTK("PIO region size == 0x%02Xn", pio_len);
  624. DPRINTK("MMIO region size == 0x%02lXn", mmio_len);
  625. #ifdef USE_IO_OPS
  626. /* make sure PCI base addr 0 is PIO */
  627. if (!(pio_flags & IORESOURCE_IO)) {
  628. printk (KERN_ERR PFX "%s: region #0 not a PIO resource, abortingn", pdev->slot_name);
  629. rc = -ENODEV;
  630. goto err_out;
  631. }
  632. /* check for weird/broken PCI region reporting */
  633. if (pio_len < RTL_MIN_IO_SIZE) {
  634. printk (KERN_ERR PFX "%s: Invalid PCI I/O region size(s), abortingn", pdev->slot_name);
  635. rc = -ENODEV;
  636. goto err_out;
  637. }
  638. #else
  639. /* make sure PCI base addr 1 is MMIO */
  640. if (!(mmio_flags & IORESOURCE_MEM)) {
  641. printk (KERN_ERR PFX "%s: region #1 not an MMIO resource, abortingn", pdev->slot_name);
  642. rc = -ENODEV;
  643. goto err_out;
  644. }
  645. if (mmio_len < RTL_MIN_IO_SIZE) {
  646. printk (KERN_ERR PFX "%s: Invalid PCI mem region size(s), abortingn", pdev->slot_name);
  647. rc = -ENODEV;
  648. goto err_out;
  649. }
  650. #endif
  651. rc = pci_request_regions (pdev, "8139too");
  652. if (rc)
  653. goto err_out;
  654. /* enable PCI bus-mastering */
  655. pci_set_master (pdev);
  656. #ifdef USE_IO_OPS
  657. ioaddr = (void *) pio_start;
  658. dev->base_addr = pio_start;
  659. tp->mmio_addr = ioaddr;
  660. #else
  661. /* ioremap MMIO region */
  662. ioaddr = ioremap (mmio_start, mmio_len);
  663. if (ioaddr == NULL) {
  664. printk (KERN_ERR PFX "%s: cannot remap MMIO, abortingn", pdev->slot_name);
  665. rc = -EIO;
  666. goto err_out;
  667. }
  668. dev->base_addr = (long) ioaddr;
  669. tp->mmio_addr = ioaddr;
  670. #endif /* USE_IO_OPS */
  671. /* Bring old chips out of low-power mode. */
  672. RTL_W8 (HltClk, 'R');
  673. /* check for missing/broken hardware */
  674. if (RTL_R32 (TxConfig) == 0xFFFFFFFF) {
  675. printk (KERN_ERR PFX "%s: Chip not responding, ignoring boardn",
  676. pdev->slot_name);
  677. rc = -EIO;
  678. goto err_out;
  679. }
  680. /* identify chip attached to board */
  681. tmp = RTL_R8 (ChipVersion);
  682. for (i = 0; i < ARRAY_SIZE (rtl_chip_info); i++)
  683. if (tmp == rtl_chip_info[i].version) {
  684. tp->chipset = i;
  685. goto match;
  686. }
  687. /* if unknown chip, assume array element #0, original RTL-8139 in this case */
  688. printk (KERN_DEBUG PFX "%s: unknown chip version, assuming RTL-8139n",
  689. pdev->slot_name);
  690. printk (KERN_DEBUG PFX "%s: TxConfig = 0x%lxn", pdev->slot_name, RTL_R32 (TxConfig));
  691. tp->chipset = 0;
  692. match:
  693. DPRINTK ("chipset id (%d) == index %d, '%s'n",
  694. tmp,
  695. tp->chipset,
  696. rtl_chip_info[tp->chipset].name);
  697. if (tp->chipset >= CH_8139B) {
  698. u8 new_tmp8 = tmp8 = RTL_R8 (Config1);
  699. DPRINTK("PCI PM wakeupn");
  700. if ((rtl_chip_info[tp->chipset].flags & HasLWake) &&
  701.     (tmp8 & LWAKE))
  702. new_tmp8 &= ~LWAKE;
  703. new_tmp8 |= Cfg1_PM_Enable;
  704. if (new_tmp8 != tmp8) {
  705. RTL_W8 (Cfg9346, Cfg9346_Unlock);
  706. RTL_W8 (Config1, tmp8);
  707. RTL_W8 (Cfg9346, Cfg9346_Lock);
  708. }
  709. if (rtl_chip_info[tp->chipset].flags & HasLWake) {
  710. tmp8 = RTL_R8 (Config4);
  711. if (tmp8 & LWPTN)
  712. RTL_W8 (Config4, tmp8 & ~LWPTN);
  713. }
  714. } else {
  715. DPRINTK("Old chip wakeupn");
  716. tmp8 = RTL_R8 (Config1);
  717. tmp8 &= ~(SLEEP | PWRDN);
  718. RTL_W8 (Config1, tmp8);
  719. }
  720. rtl8139_chip_reset (ioaddr);
  721. *dev_out = dev;
  722. return 0;
  723. err_out:
  724. __rtl8139_cleanup_dev (dev);
  725. return rc;
  726. }
  727. static int __devinit rtl8139_init_one (struct pci_dev *pdev,
  728.        const struct pci_device_id *ent)
  729. {
  730. struct net_device *dev = NULL;
  731. struct rtl8139_private *tp;
  732. int i, addr_len, option;
  733. void *ioaddr;
  734. static int board_idx = -1;
  735. u8 pci_rev;
  736. assert (pdev != NULL);
  737. assert (ent != NULL);
  738. board_idx++;
  739. /* when we're built into the kernel, the driver version message
  740.  * is only printed if at least one 8139 board has been found
  741.  */
  742. #ifndef MODULE
  743. {
  744. static int printed_version;
  745. if (!printed_version++)
  746. printk (KERN_INFO RTL8139_DRIVER_NAME "n");
  747. }
  748. #endif
  749. pci_read_config_byte(pdev, PCI_REVISION_ID, &pci_rev);
  750. if (pdev->vendor == PCI_VENDOR_ID_REALTEK &&
  751.     pdev->device == PCI_DEVICE_ID_REALTEK_8139 && pci_rev >= 0x20) {
  752. printk(KERN_INFO PFX "pci dev %s (id %04x:%04x rev %02x) is an enhanced 8139C+ chipn",
  753.        pdev->slot_name, pdev->vendor, pdev->device, pci_rev);
  754. printk(KERN_INFO PFX "Use the "8139cp" driver for improved performance and stability.n");
  755. }
  756. i = rtl8139_init_board (pdev, &dev);
  757. if (i < 0)
  758. return i;
  759. tp = dev->priv;
  760. ioaddr = tp->mmio_addr;
  761. assert (ioaddr != NULL);
  762. assert (dev != NULL);
  763. assert (tp != NULL);
  764. addr_len = read_eeprom (ioaddr, 0, 8) == 0x8129 ? 8 : 6;
  765. for (i = 0; i < 3; i++)
  766. ((u16 *) (dev->dev_addr))[i] =
  767.     le16_to_cpu (read_eeprom (ioaddr, i + 7, addr_len));
  768. /* The Rtl8139-specific entries in the device structure. */
  769. dev->open = rtl8139_open;
  770. dev->hard_start_xmit = rtl8139_start_xmit;
  771. dev->stop = rtl8139_close;
  772. dev->get_stats = rtl8139_get_stats;
  773. dev->set_multicast_list = rtl8139_set_rx_mode;
  774. dev->do_ioctl = netdev_ioctl;
  775. dev->tx_timeout = rtl8139_tx_timeout;
  776. dev->watchdog_timeo = TX_TIMEOUT;
  777. dev->features |= NETIF_F_SG|NETIF_F_HW_CSUM;
  778. dev->irq = pdev->irq;
  779. /* dev->priv/tp zeroed and aligned in init_etherdev */
  780. tp = dev->priv;
  781. /* note: tp->chipset set in rtl8139_init_board */
  782. tp->drv_flags = board_info[ent->driver_data].hw_flags;
  783. tp->mmio_addr = ioaddr;
  784. spin_lock_init (&tp->lock);
  785. init_waitqueue_head (&tp->thr_wait);
  786. init_completion (&tp->thr_exited);
  787. tp->mii.dev = dev;
  788. tp->mii.mdio_read = mdio_read;
  789. tp->mii.mdio_write = mdio_write;
  790. /* dev is fully set up and ready to use now */
  791. DPRINTK("about to register device named %s (%p)...n", dev->name, dev);
  792. i = register_netdev (dev);
  793. if (i) goto err_out;
  794. pci_set_drvdata (pdev, dev);
  795. printk (KERN_INFO "%s: %s at 0x%lx, "
  796. "%2.2x:%2.2x:%2.2x:%2.2x:%2.2x:%2.2x, "
  797. "IRQ %dn",
  798. dev->name,
  799. board_info[ent->driver_data].name,
  800. dev->base_addr,
  801. dev->dev_addr[0], dev->dev_addr[1],
  802. dev->dev_addr[2], dev->dev_addr[3],
  803. dev->dev_addr[4], dev->dev_addr[5],
  804. dev->irq);
  805. printk (KERN_DEBUG "%s:  Identified 8139 chip type '%s'n",
  806. dev->name, rtl_chip_info[tp->chipset].name);
  807. /* Find the connected MII xcvrs.
  808.    Doing this in open() would allow detecting external xcvrs later, but
  809.    takes too much time. */
  810. #ifdef CONFIG_8139TOO_8129
  811. if (tp->drv_flags & HAS_MII_XCVR) {
  812. int phy, phy_idx = 0;
  813. for (phy = 0; phy < 32 && phy_idx < sizeof(tp->phys); phy++) {
  814. int mii_status = mdio_read(dev, phy, 1);
  815. if (mii_status != 0xffff  &&  mii_status != 0x0000) {
  816. u16 advertising = mdio_read(dev, phy, 4);
  817. tp->phys[phy_idx++] = phy;
  818. printk(KERN_INFO "%s: MII transceiver %d status 0x%4.4x "
  819.    "advertising %4.4x.n",
  820.    dev->name, phy, mii_status, advertising);
  821. }
  822. }
  823. if (phy_idx == 0) {
  824. printk(KERN_INFO "%s: No MII transceivers found!  Assuming SYM "
  825.    "transceiver.n",
  826.    dev->name);
  827. tp->phys[0] = 32;
  828. }
  829. } else
  830. #endif
  831. tp->phys[0] = 32;
  832. /* The lower four bits are the media type. */
  833. option = (board_idx >= MAX_UNITS) ? 0 : media[board_idx];
  834. if (option > 0) {
  835. tp->mii.full_duplex = (option & 0x210) ? 1 : 0;
  836. tp->default_port = option & 0xFF;
  837. if (tp->default_port)
  838. tp->medialock = 1;
  839. }
  840. if (board_idx < MAX_UNITS  &&  full_duplex[board_idx] > 0)
  841. tp->mii.full_duplex = full_duplex[board_idx];
  842. if (tp->mii.full_duplex) {
  843. printk(KERN_INFO "%s: Media type forced to Full Duplex.n", dev->name);
  844. /* Changing the MII-advertised media because might prevent
  845.    re-connection. */
  846. tp->mii.duplex_lock = 1;
  847. }
  848. if (tp->default_port) {
  849. printk(KERN_INFO "  Forcing %dMbps %s-duplex operation.n",
  850.    (option & 0x20 ? 100 : 10),
  851.    (option & 0x10 ? "full" : "half"));
  852. mdio_write(dev, tp->phys[0], 0,
  853.    ((option & 0x20) ? 0x2000 : 0) |  /* 100Mbps? */
  854.    ((option & 0x10) ? 0x0100 : 0)); /* Full duplex? */
  855. }
  856. /* Put the chip into low-power mode. */
  857. if (rtl_chip_info[tp->chipset].flags & HasHltClk)
  858. RTL_W8 (HltClk, 'H'); /* 'R' would leave the clock running. */
  859. return 0;
  860. err_out:
  861. __rtl8139_cleanup_dev (dev);
  862. return i;
  863. }
  864. static void __devexit rtl8139_remove_one (struct pci_dev *pdev)
  865. {
  866. struct net_device *dev = pci_get_drvdata (pdev);
  867. struct rtl8139_private *np;
  868. assert (dev != NULL);
  869. np = dev->priv;
  870. assert (np != NULL);
  871. unregister_netdev (dev);
  872. __rtl8139_cleanup_dev (dev);
  873. }
  874. /* Serial EEPROM section. */
  875. /*  EEPROM_Ctrl bits. */
  876. #define EE_SHIFT_CLK 0x04 /* EEPROM shift clock. */
  877. #define EE_CS 0x08 /* EEPROM chip select. */
  878. #define EE_DATA_WRITE 0x02 /* EEPROM chip data in. */
  879. #define EE_WRITE_0 0x00
  880. #define EE_WRITE_1 0x02
  881. #define EE_DATA_READ 0x01 /* EEPROM chip data out. */
  882. #define EE_ENB (0x80 | EE_CS)
  883. /* Delay between EEPROM clock transitions.
  884.    No extra delay is needed with 33Mhz PCI, but 66Mhz may change this.
  885.  */
  886. #define eeprom_delay() readl(ee_addr)
  887. /* The EEPROM commands include the alway-set leading bit. */
  888. #define EE_WRITE_CMD (5)
  889. #define EE_READ_CMD (6)
  890. #define EE_ERASE_CMD (7)
  891. static int __devinit read_eeprom (void *ioaddr, int location, int addr_len)
  892. {
  893. int i;
  894. unsigned retval = 0;
  895. void *ee_addr = ioaddr + Cfg9346;
  896. int read_cmd = location | (EE_READ_CMD << addr_len);
  897. writeb (EE_ENB & ~EE_CS, ee_addr);
  898. writeb (EE_ENB, ee_addr);
  899. eeprom_delay ();
  900. /* Shift the read command bits out. */
  901. for (i = 4 + addr_len; i >= 0; i--) {
  902. int dataval = (read_cmd & (1 << i)) ? EE_DATA_WRITE : 0;
  903. writeb (EE_ENB | dataval, ee_addr);
  904. eeprom_delay ();
  905. writeb (EE_ENB | dataval | EE_SHIFT_CLK, ee_addr);
  906. eeprom_delay ();
  907. }
  908. writeb (EE_ENB, ee_addr);
  909. eeprom_delay ();
  910. for (i = 16; i > 0; i--) {
  911. writeb (EE_ENB | EE_SHIFT_CLK, ee_addr);
  912. eeprom_delay ();
  913. retval =
  914.     (retval << 1) | ((readb (ee_addr) & EE_DATA_READ) ? 1 :
  915.      0);
  916. writeb (EE_ENB, ee_addr);
  917. eeprom_delay ();
  918. }
  919. /* Terminate the EEPROM access. */
  920. writeb (~EE_CS, ee_addr);
  921. eeprom_delay ();
  922. return retval;
  923. }
  924. /* MII serial management: mostly bogus for now. */
  925. /* Read and write the MII management registers using software-generated
  926.    serial MDIO protocol.
  927.    The maximum data clock rate is 2.5 Mhz.  The minimum timing is usually
  928.    met by back-to-back PCI I/O cycles, but we insert a delay to avoid
  929.    "overclocking" issues. */
  930. #define MDIO_DIR 0x80
  931. #define MDIO_DATA_OUT 0x04
  932. #define MDIO_DATA_IN 0x02
  933. #define MDIO_CLK 0x01
  934. #define MDIO_WRITE0 (MDIO_DIR)
  935. #define MDIO_WRITE1 (MDIO_DIR | MDIO_DATA_OUT)
  936. #define mdio_delay(mdio_addr) readb(mdio_addr)
  937. static char mii_2_8139_map[8] = {
  938. BasicModeCtrl,
  939. BasicModeStatus,
  940. 0,
  941. 0,
  942. NWayAdvert,
  943. NWayLPAR,
  944. NWayExpansion,
  945. 0
  946. };
  947. #ifdef CONFIG_8139TOO_8129
  948. /* Syncronize the MII management interface by shifting 32 one bits out. */
  949. static void mdio_sync (void *mdio_addr)
  950. {
  951. int i;
  952. for (i = 32; i >= 0; i--) {
  953. writeb (MDIO_WRITE1, mdio_addr);
  954. mdio_delay (mdio_addr);
  955. writeb (MDIO_WRITE1 | MDIO_CLK, mdio_addr);
  956. mdio_delay (mdio_addr);
  957. }
  958. }
  959. #endif
  960. static int mdio_read (struct net_device *dev, int phy_id, int location)
  961. {
  962. struct rtl8139_private *tp = dev->priv;
  963. int retval = 0;
  964. #ifdef CONFIG_8139TOO_8129
  965. void *mdio_addr = tp->mmio_addr + Config4;
  966. int mii_cmd = (0xf6 << 10) | (phy_id << 5) | location;
  967. int i;
  968. #endif
  969. if (phy_id > 31) { /* Really a 8139.  Use internal registers. */
  970. return location < 8 && mii_2_8139_map[location] ?
  971.     readw (tp->mmio_addr + mii_2_8139_map[location]) : 0;
  972. }
  973. #ifdef CONFIG_8139TOO_8129
  974. mdio_sync (mdio_addr);
  975. /* Shift the read command bits out. */
  976. for (i = 15; i >= 0; i--) {
  977. int dataval = (mii_cmd & (1 << i)) ? MDIO_DATA_OUT : 0;
  978. writeb (MDIO_DIR | dataval, mdio_addr);
  979. mdio_delay (mdio_addr);
  980. writeb (MDIO_DIR | dataval | MDIO_CLK, mdio_addr);
  981. mdio_delay (mdio_addr);
  982. }
  983. /* Read the two transition, 16 data, and wire-idle bits. */
  984. for (i = 19; i > 0; i--) {
  985. writeb (0, mdio_addr);
  986. mdio_delay (mdio_addr);
  987. retval = (retval << 1) | ((readb (mdio_addr) & MDIO_DATA_IN) ? 1 : 0);
  988. writeb (MDIO_CLK, mdio_addr);
  989. mdio_delay (mdio_addr);
  990. }
  991. #endif
  992. return (retval >> 1) & 0xffff;
  993. }
  994. static void mdio_write (struct net_device *dev, int phy_id, int location,
  995. int value)
  996. {
  997. struct rtl8139_private *tp = dev->priv;
  998. #ifdef CONFIG_8139TOO_8129
  999. void *mdio_addr = tp->mmio_addr + Config4;
  1000. int mii_cmd = (0x5002 << 16) | (phy_id << 23) | (location << 18) | value;
  1001. int i;
  1002. #endif
  1003. if (phy_id > 31) { /* Really a 8139.  Use internal registers. */
  1004. void *ioaddr = tp->mmio_addr;
  1005. if (location == 0) {
  1006. RTL_W8 (Cfg9346, Cfg9346_Unlock);
  1007. RTL_W16 (BasicModeCtrl, value);
  1008. RTL_W8 (Cfg9346, Cfg9346_Lock);
  1009. } else if (location < 8 && mii_2_8139_map[location])
  1010. RTL_W16 (mii_2_8139_map[location], value);
  1011. return;
  1012. }
  1013. #ifdef CONFIG_8139TOO_8129
  1014. mdio_sync (mdio_addr);
  1015. /* Shift the command bits out. */
  1016. for (i = 31; i >= 0; i--) {
  1017. int dataval =
  1018.     (mii_cmd & (1 << i)) ? MDIO_WRITE1 : MDIO_WRITE0;
  1019. writeb (dataval, mdio_addr);
  1020. mdio_delay (mdio_addr);
  1021. writeb (dataval | MDIO_CLK, mdio_addr);
  1022. mdio_delay (mdio_addr);
  1023. }
  1024. /* Clear out extra bits. */
  1025. for (i = 2; i > 0; i--) {
  1026. writeb (0, mdio_addr);
  1027. mdio_delay (mdio_addr);
  1028. writeb (MDIO_CLK, mdio_addr);
  1029. mdio_delay (mdio_addr);
  1030. }
  1031. #endif
  1032. }
  1033. static int rtl8139_open (struct net_device *dev)
  1034. {
  1035. struct rtl8139_private *tp = dev->priv;
  1036. int retval;
  1037. #ifdef RTL8139_DEBUG
  1038. void *ioaddr = tp->mmio_addr;
  1039. #endif
  1040. retval = request_irq (dev->irq, rtl8139_interrupt, SA_SHIRQ, dev->name, dev);
  1041. if (retval)
  1042. return retval;
  1043. tp->tx_bufs = pci_alloc_consistent(tp->pci_dev, TX_BUF_TOT_LEN,
  1044.    &tp->tx_bufs_dma);
  1045. tp->rx_ring = pci_alloc_consistent(tp->pci_dev, RX_BUF_TOT_LEN,
  1046.    &tp->rx_ring_dma);
  1047. if (tp->tx_bufs == NULL || tp->rx_ring == NULL) {
  1048. free_irq(dev->irq, dev);
  1049. if (tp->tx_bufs)
  1050. pci_free_consistent(tp->pci_dev, TX_BUF_TOT_LEN,
  1051.     tp->tx_bufs, tp->tx_bufs_dma);
  1052. if (tp->rx_ring)
  1053. pci_free_consistent(tp->pci_dev, RX_BUF_TOT_LEN,
  1054.     tp->rx_ring, tp->rx_ring_dma);
  1055. return -ENOMEM;
  1056. }
  1057. tp->mii.full_duplex = tp->mii.duplex_lock;
  1058. tp->tx_flag = (TX_FIFO_THRESH << 11) & 0x003f0000;
  1059. tp->twistie = 1;
  1060. tp->time_to_die = 0;
  1061. rtl8139_init_ring (dev);
  1062. rtl8139_hw_start (dev);
  1063. DPRINTK ("%s: rtl8139_open() ioaddr %#lx IRQ %d"
  1064. " GP Pins %2.2x %s-duplex.n",
  1065. dev->name, pci_resource_start (tp->pci_dev, 1),
  1066. dev->irq, RTL_R8 (MediaStatus),
  1067. tp->mii.full_duplex ? "full" : "half");
  1068. tp->thr_pid = kernel_thread (rtl8139_thread, dev, CLONE_FS | CLONE_FILES);
  1069. if (tp->thr_pid < 0)
  1070. printk (KERN_WARNING "%s: unable to start kernel threadn",
  1071. dev->name);
  1072. return 0;
  1073. }
  1074. static void rtl_check_media (struct net_device *dev)
  1075. {
  1076. struct rtl8139_private *tp = dev->priv;
  1077. if (tp->phys[0] >= 0) {
  1078. u16 mii_lpa = mdio_read(dev, tp->phys[0], MII_LPA);
  1079. if (mii_lpa == 0xffff)
  1080. ; /* Not there */
  1081. else if ((mii_lpa & LPA_100FULL) == LPA_100FULL
  1082.  || (mii_lpa & 0x00C0) == LPA_10FULL)
  1083. tp->mii.full_duplex = 1;
  1084. printk (KERN_INFO"%s: Setting %s%s-duplex based on"
  1085. " auto-negotiated partner ability %4.4x.n",
  1086.         dev->name, mii_lpa == 0 ? "" :
  1087. (mii_lpa & 0x0180) ? "100mbps " : "10mbps ",
  1088. tp->mii.full_duplex ? "full" : "half", mii_lpa);
  1089. }
  1090. }
  1091. /* Start the hardware at open or resume. */
  1092. static void rtl8139_hw_start (struct net_device *dev)
  1093. {
  1094. struct rtl8139_private *tp = dev->priv;
  1095. void *ioaddr = tp->mmio_addr;
  1096. u32 i;
  1097. u8 tmp;
  1098. /* Bring old chips out of low-power mode. */
  1099. if (rtl_chip_info[tp->chipset].flags & HasHltClk)
  1100. RTL_W8 (HltClk, 'R');
  1101. rtl8139_chip_reset (ioaddr);
  1102. /* unlock Config[01234] and BMCR register writes */
  1103. RTL_W8_F (Cfg9346, Cfg9346_Unlock);
  1104. /* Restore our idea of the MAC address. */
  1105. RTL_W32_F (MAC0 + 0, cpu_to_le32 (*(u32 *) (dev->dev_addr + 0)));
  1106. RTL_W32_F (MAC0 + 4, cpu_to_le32 (*(u32 *) (dev->dev_addr + 4)));
  1107. /* Must enable Tx/Rx before setting transfer thresholds! */
  1108. RTL_W8 (ChipCmd, CmdRxEnb | CmdTxEnb);
  1109. tp->rx_config = rtl8139_rx_config | AcceptBroadcast | AcceptMyPhys;
  1110. RTL_W32 (RxConfig, tp->rx_config);
  1111. /* Check this value: the documentation for IFG contradicts ifself. */
  1112. RTL_W32 (TxConfig, rtl8139_tx_config);
  1113. tp->cur_rx = 0;
  1114. rtl_check_media (dev);
  1115. if (tp->chipset >= CH_8139B) {
  1116. /* Disable magic packet scanning, which is enabled
  1117.  * when PM is enabled in Config1.  It can be reenabled
  1118.  * via ETHTOOL_SWOL if desired.  */
  1119. RTL_W8 (Config3, RTL_R8 (Config3) & ~Cfg3_Magic);
  1120. }
  1121. DPRINTK("init buffer addressesn");
  1122. /* Lock Config[01234] and BMCR register writes */
  1123. RTL_W8 (Cfg9346, Cfg9346_Lock);
  1124. /* init Rx ring buffer DMA address */
  1125. RTL_W32_F (RxBuf, tp->rx_ring_dma);
  1126. /* init Tx buffer DMA addresses */
  1127. for (i = 0; i < NUM_TX_DESC; i++)
  1128. RTL_W32_F (TxAddr0 + (i * 4), tp->tx_bufs_dma + (tp->tx_buf[i] - tp->tx_bufs));
  1129. RTL_W32 (RxMissed, 0);
  1130. rtl8139_set_rx_mode (dev);
  1131. /* no early-rx interrupts */
  1132. RTL_W16 (MultiIntr, RTL_R16 (MultiIntr) & MultiIntrClear);
  1133. /* make sure RxTx has started */
  1134. tmp = RTL_R8 (ChipCmd);
  1135. if ((!(tmp & CmdRxEnb)) || (!(tmp & CmdTxEnb)))
  1136. RTL_W8 (ChipCmd, CmdRxEnb | CmdTxEnb);
  1137. /* Enable all known interrupts by setting the interrupt mask. */
  1138. RTL_W16 (IntrMask, rtl8139_intr_mask);
  1139. netif_start_queue (dev);
  1140. }
  1141. /* Initialize the Rx and Tx rings, along with various 'dev' bits. */
  1142. static void rtl8139_init_ring (struct net_device *dev)
  1143. {
  1144. struct rtl8139_private *tp = dev->priv;
  1145. int i;
  1146. tp->cur_rx = 0;
  1147. tp->cur_tx = 0;
  1148. tp->dirty_tx = 0;
  1149. for (i = 0; i < NUM_TX_DESC; i++)
  1150. tp->tx_buf[i] = &tp->tx_bufs[i * TX_BUF_SIZE];
  1151. }
  1152. /* This must be global for CONFIG_8139TOO_TUNE_TWISTER case */
  1153. static int next_tick = 3 * HZ;
  1154. #ifndef CONFIG_8139TOO_TUNE_TWISTER
  1155. static inline void rtl8139_tune_twister (struct net_device *dev,
  1156.   struct rtl8139_private *tp) {}
  1157. #else
  1158. static void rtl8139_tune_twister (struct net_device *dev,
  1159.   struct rtl8139_private *tp)
  1160. {
  1161. int linkcase;
  1162. void *ioaddr = tp->mmio_addr;
  1163. /* This is a complicated state machine to configure the "twister" for
  1164.    impedance/echos based on the cable length.
  1165.    All of this is magic and undocumented.
  1166.  */
  1167. switch (tp->twistie) {
  1168. case 1:
  1169. if (RTL_R16 (CSCR) & CSCR_LinkOKBit) {
  1170. /* We have link beat, let us tune the twister. */
  1171. RTL_W16 (CSCR, CSCR_LinkDownOffCmd);
  1172. tp->twistie = 2; /* Change to state 2. */
  1173. next_tick = HZ / 10;
  1174. } else {
  1175. /* Just put in some reasonable defaults for when beat returns. */
  1176. RTL_W16 (CSCR, CSCR_LinkDownCmd);
  1177. RTL_W32 (FIFOTMS, 0x20); /* Turn on cable test mode. */
  1178. RTL_W32 (PARA78, PARA78_default);
  1179. RTL_W32 (PARA7c, PARA7c_default);
  1180. tp->twistie = 0; /* Bail from future actions. */
  1181. }
  1182. break;
  1183. case 2:
  1184. /* Read how long it took to hear the echo. */
  1185. linkcase = RTL_R16 (CSCR) & CSCR_LinkStatusBits;
  1186. if (linkcase == 0x7000)
  1187. tp->twist_row = 3;
  1188. else if (linkcase == 0x3000)
  1189. tp->twist_row = 2;
  1190. else if (linkcase == 0x1000)
  1191. tp->twist_row = 1;
  1192. else
  1193. tp->twist_row = 0;
  1194. tp->twist_col = 0;
  1195. tp->twistie = 3; /* Change to state 2. */
  1196. next_tick = HZ / 10;
  1197. break;
  1198. case 3:
  1199. /* Put out four tuning parameters, one per 100msec. */
  1200. if (tp->twist_col == 0)
  1201. RTL_W16 (FIFOTMS, 0);
  1202. RTL_W32 (PARA7c, param[(int) tp->twist_row]
  1203.  [(int) tp->twist_col]);
  1204. next_tick = HZ / 10;
  1205. if (++tp->twist_col >= 4) {
  1206. /* For short cables we are done.
  1207.    For long cables (row == 3) check for mistune. */
  1208. tp->twistie =
  1209.     (tp->twist_row == 3) ? 4 : 0;
  1210. }
  1211. break;
  1212. case 4:
  1213. /* Special case for long cables: check for mistune. */
  1214. if ((RTL_R16 (CSCR) &
  1215.      CSCR_LinkStatusBits) == 0x7000) {
  1216. tp->twistie = 0;
  1217. break;
  1218. } else {
  1219. RTL_W32 (PARA7c, 0xfb38de03);
  1220. tp->twistie = 5;
  1221. next_tick = HZ / 10;
  1222. }
  1223. break;
  1224. case 5:
  1225. /* Retune for shorter cable (column 2). */
  1226. RTL_W32 (FIFOTMS, 0x20);
  1227. RTL_W32 (PARA78, PARA78_default);
  1228. RTL_W32 (PARA7c, PARA7c_default);
  1229. RTL_W32 (FIFOTMS, 0x00);
  1230. tp->twist_row = 2;
  1231. tp->twist_col = 0;
  1232. tp->twistie = 3;
  1233. next_tick = HZ / 10;
  1234. break;
  1235. default:
  1236. /* do nothing */
  1237. break;
  1238. }
  1239. }
  1240. #endif /* CONFIG_8139TOO_TUNE_TWISTER */
  1241. static inline void rtl8139_thread_iter (struct net_device *dev,
  1242.  struct rtl8139_private *tp,
  1243.  void *ioaddr)
  1244. {
  1245. int mii_lpa;
  1246. mii_lpa = mdio_read (dev, tp->phys[0], MII_LPA);
  1247. if (!tp->mii.duplex_lock && mii_lpa != 0xffff) {
  1248. int duplex = (mii_lpa & LPA_100FULL)
  1249.     || (mii_lpa & 0x01C0) == 0x0040;
  1250. if (tp->mii.full_duplex != duplex) {
  1251. tp->mii.full_duplex = duplex;
  1252. if (mii_lpa) {
  1253. printk (KERN_INFO
  1254. "%s: Setting %s-duplex based on MII #%d link"
  1255. " partner ability of %4.4x.n",
  1256. dev->name,
  1257. tp->mii.full_duplex ? "full" : "half",
  1258. tp->phys[0], mii_lpa);
  1259. } else {
  1260. printk(KERN_INFO"%s: media is unconnected, link down, or incompatible connectionn",
  1261.        dev->name);
  1262. }
  1263. #if 0
  1264. RTL_W8 (Cfg9346, Cfg9346_Unlock);
  1265. RTL_W8 (Config1, tp->mii.full_duplex ? 0x60 : 0x20);
  1266. RTL_W8 (Cfg9346, Cfg9346_Lock);
  1267. #endif
  1268. }
  1269. }
  1270. next_tick = HZ * 60;
  1271. rtl8139_tune_twister (dev, tp);
  1272. DPRINTK ("%s: Media selection tick, Link partner %4.4x.n",
  1273.  dev->name, RTL_R16 (NWayLPAR));
  1274. DPRINTK ("%s:  Other registers are IntMask %4.4x IntStatus %4.4xn",
  1275.  dev->name, RTL_R16 (IntrMask), RTL_R16 (IntrStatus));
  1276. DPRINTK ("%s:  Chip config %2.2x %2.2x.n",
  1277.  dev->name, RTL_R8 (Config0),
  1278.  RTL_R8 (Config1));
  1279. }
  1280. static int rtl8139_thread (void *data)
  1281. {
  1282. struct net_device *dev = data;
  1283. struct rtl8139_private *tp = dev->priv;
  1284. unsigned long timeout;
  1285. daemonize ();
  1286. reparent_to_init();
  1287. spin_lock_irq(&current->sigmask_lock);
  1288. sigemptyset(&current->blocked);
  1289. recalc_sigpending(current);
  1290. spin_unlock_irq(&current->sigmask_lock);
  1291. strncpy (current->comm, dev->name, sizeof(current->comm) - 1);
  1292. current->comm[sizeof(current->comm) - 1] = '';
  1293. while (1) {
  1294. timeout = next_tick;
  1295. do {
  1296. timeout = interruptible_sleep_on_timeout (&tp->thr_wait, timeout);
  1297. } while (!signal_pending (current) && (timeout > 0));
  1298. if (signal_pending (current)) {
  1299. spin_lock_irq(&current->sigmask_lock);
  1300. flush_signals(current);
  1301. spin_unlock_irq(&current->sigmask_lock);
  1302. }
  1303. if (tp->time_to_die)
  1304. break;
  1305. rtnl_lock ();
  1306. rtl8139_thread_iter (dev, tp, tp->mmio_addr);
  1307. rtnl_unlock ();
  1308. }
  1309. complete_and_exit (&tp->thr_exited, 0);
  1310. }
  1311. static void rtl8139_tx_clear (struct rtl8139_private *tp)
  1312. {
  1313. tp->cur_tx = 0;
  1314. tp->dirty_tx = 0;
  1315. /* XXX account for unsent Tx packets in tp->stats.tx_dropped */
  1316. }
  1317. static void rtl8139_tx_timeout (struct net_device *dev)
  1318. {
  1319. struct rtl8139_private *tp = dev->priv;
  1320. void *ioaddr = tp->mmio_addr;
  1321. int i;
  1322. u8 tmp8;
  1323. unsigned long flags;
  1324. DPRINTK ("%s: Transmit timeout, status %2.2x %4.4x "
  1325.  "media %2.2x.n", dev->name,
  1326.  RTL_R8 (ChipCmd),
  1327.  RTL_R16 (IntrStatus),
  1328.  RTL_R8 (MediaStatus));
  1329. tp->xstats.tx_timeouts++;
  1330. /* disable Tx ASAP, if not already */
  1331. tmp8 = RTL_R8 (ChipCmd);
  1332. if (tmp8 & CmdTxEnb)
  1333. RTL_W8 (ChipCmd, CmdRxEnb);
  1334. /* Disable interrupts by clearing the interrupt mask. */
  1335. RTL_W16 (IntrMask, 0x0000);
  1336. /* Emit info to figure out what went wrong. */
  1337. printk (KERN_DEBUG "%s: Tx queue start entry %ld  dirty entry %ld.n",
  1338. dev->name, tp->cur_tx, tp->dirty_tx);
  1339. for (i = 0; i < NUM_TX_DESC; i++)
  1340. printk (KERN_DEBUG "%s:  Tx descriptor %d is %8.8lx.%sn",
  1341. dev->name, i, RTL_R32 (TxStatus0 + (i * 4)),
  1342. i == tp->dirty_tx % NUM_TX_DESC ?
  1343. " (queue head)" : "");
  1344. /* Stop a shared interrupt from scavenging while we are. */
  1345. spin_lock_irqsave (&tp->lock, flags);
  1346. rtl8139_tx_clear (tp);
  1347. spin_unlock_irqrestore (&tp->lock, flags);
  1348. /* ...and finally, reset everything */
  1349. rtl8139_hw_start (dev);
  1350. netif_wake_queue (dev);
  1351. }
  1352. static int rtl8139_start_xmit (struct sk_buff *skb, struct net_device *dev)
  1353. {
  1354. struct rtl8139_private *tp = dev->priv;
  1355. void *ioaddr = tp->mmio_addr;
  1356. unsigned int entry;
  1357. unsigned int len = skb->len;
  1358. /* Calculate the next Tx descriptor entry. */
  1359. entry = tp->cur_tx % NUM_TX_DESC;
  1360. if (likely(len < TX_BUF_SIZE)) {
  1361. skb_copy_and_csum_dev(skb, tp->tx_buf[entry]);
  1362. dev_kfree_skb(skb);
  1363. } else {
  1364. dev_kfree_skb(skb);
  1365. tp->stats.tx_dropped++;
  1366. return 0;
  1367. }
  1368. /* Note: the chip doesn't have auto-pad! */
  1369. spin_lock_irq(&tp->lock);
  1370. RTL_W32_F (TxStatus0 + (entry * sizeof (u32)),
  1371.    tp->tx_flag | max(len, (unsigned int)ETH_ZLEN));
  1372. dev->trans_start = jiffies;
  1373. tp->cur_tx++;
  1374. wmb();
  1375. if ((tp->cur_tx - NUM_TX_DESC) == tp->dirty_tx)
  1376. netif_stop_queue (dev);
  1377. spin_unlock_irq(&tp->lock);
  1378. DPRINTK ("%s: Queued Tx packet size %u to slot %d.n",
  1379.  dev->name, len, entry);
  1380. return 0;
  1381. }
  1382. static void rtl8139_tx_interrupt (struct net_device *dev,
  1383.   struct rtl8139_private *tp,
  1384.   void *ioaddr)
  1385. {
  1386. unsigned long dirty_tx, tx_left;
  1387. assert (dev != NULL);
  1388. assert (tp != NULL);
  1389. assert (ioaddr != NULL);
  1390. dirty_tx = tp->dirty_tx;
  1391. tx_left = tp->cur_tx - dirty_tx;
  1392. while (tx_left > 0) {
  1393. int entry = dirty_tx % NUM_TX_DESC;
  1394. int txstatus;
  1395. txstatus = RTL_R32 (TxStatus0 + (entry * sizeof (u32)));
  1396. if (!(txstatus & (TxStatOK | TxUnderrun | TxAborted)))
  1397. break; /* It still hasn't been Txed */
  1398. /* Note: TxCarrierLost is always asserted at 100mbps. */
  1399. if (txstatus & (TxOutOfWindow | TxAborted)) {
  1400. /* There was an major error, log it. */
  1401. DPRINTK ("%s: Transmit error, Tx status %8.8x.n",
  1402.  dev->name, txstatus);
  1403. tp->stats.tx_errors++;
  1404. if (txstatus & TxAborted) {
  1405. tp->stats.tx_aborted_errors++;
  1406. RTL_W32 (TxConfig, TxClearAbt);
  1407. RTL_W16 (IntrStatus, TxErr);
  1408. wmb();
  1409. }
  1410. if (txstatus & TxCarrierLost)
  1411. tp->stats.tx_carrier_errors++;
  1412. if (txstatus & TxOutOfWindow)
  1413. tp->stats.tx_window_errors++;
  1414. #ifdef ETHER_STATS
  1415. if ((txstatus & 0x0f000000) == 0x0f000000)
  1416. tp->stats.collisions16++;
  1417. #endif
  1418. } else {
  1419. if (txstatus & TxUnderrun) {
  1420. /* Add 64 to the Tx FIFO threshold. */
  1421. if (tp->tx_flag < 0x00300000)
  1422. tp->tx_flag += 0x00020000;
  1423. tp->stats.tx_fifo_errors++;
  1424. }
  1425. tp->stats.collisions += (txstatus >> 24) & 15;
  1426. tp->stats.tx_bytes += txstatus & 0x7ff;
  1427. tp->stats.tx_packets++;
  1428. }
  1429. dirty_tx++;
  1430. tx_left--;
  1431. }
  1432. #ifndef RTL8139_NDEBUG
  1433. if (tp->cur_tx - dirty_tx > NUM_TX_DESC) {
  1434. printk (KERN_ERR "%s: Out-of-sync dirty pointer, %ld vs. %ld.n",
  1435.         dev->name, dirty_tx, tp->cur_tx);
  1436. dirty_tx += NUM_TX_DESC;
  1437. }
  1438. #endif /* RTL8139_NDEBUG */
  1439. /* only wake the queue if we did work, and the queue is stopped */
  1440. if (tp->dirty_tx != dirty_tx) {
  1441. tp->dirty_tx = dirty_tx;
  1442. mb();
  1443. if (netif_queue_stopped (dev))
  1444. netif_wake_queue (dev);
  1445. }
  1446. }
  1447. /* TODO: clean this up!  Rx reset need not be this intensive */
  1448. static void rtl8139_rx_err (u32 rx_status, struct net_device *dev,
  1449.     struct rtl8139_private *tp, void *ioaddr)
  1450. {
  1451. u8 tmp8;
  1452. #ifndef CONFIG_8139_NEW_RX_RESET
  1453. int tmp_work;
  1454. #endif
  1455. DPRINTK ("%s: Ethernet frame had errors, status %8.8x.n",
  1456.          dev->name, rx_status);
  1457. tp->stats.rx_errors++;
  1458. if (!(rx_status & RxStatusOK)) {
  1459. if (rx_status & RxTooLong) {
  1460. DPRINTK ("%s: Oversized Ethernet frame, status %4.4x!n",
  1461.   dev->name, rx_status);
  1462. /* A.C.: The chip hangs here. */
  1463. }
  1464. if (rx_status & (RxBadSymbol | RxBadAlign))
  1465. tp->stats.rx_frame_errors++;
  1466. if (rx_status & (RxRunt | RxTooLong))
  1467. tp->stats.rx_length_errors++;
  1468. if (rx_status & RxCRCErr)
  1469. tp->stats.rx_crc_errors++;
  1470. } else {
  1471. tp->xstats.rx_lost_in_ring++;
  1472. }
  1473. #ifdef CONFIG_8139_NEW_RX_RESET
  1474. tmp8 = RTL_R8 (ChipCmd);
  1475. RTL_W8 (ChipCmd, tmp8 & ~CmdRxEnb);
  1476. RTL_W8 (ChipCmd, tmp8);
  1477. RTL_W32 (RxConfig, tp->rx_config);
  1478. tp->cur_rx = 0;
  1479. #else
  1480. /* Reset the receiver, based on RealTek recommendation. (Bug?) */
  1481. /* disable receive */
  1482. RTL_W8_F (ChipCmd, CmdTxEnb);
  1483. tmp_work = 200;
  1484. while (--tmp_work > 0) {
  1485. udelay(1);
  1486. tmp8 = RTL_R8 (ChipCmd);
  1487. if (!(tmp8 & CmdRxEnb))
  1488. break;
  1489. }
  1490. if (tmp_work <= 0)
  1491. printk (KERN_WARNING PFX "rx stop wait too longn");
  1492. /* restart receive */
  1493. tmp_work = 200;
  1494. while (--tmp_work > 0) {
  1495. RTL_W8_F (ChipCmd, CmdRxEnb | CmdTxEnb);
  1496. udelay(1);
  1497. tmp8 = RTL_R8 (ChipCmd);
  1498. if ((tmp8 & CmdRxEnb) && (tmp8 & CmdTxEnb))
  1499. break;
  1500. }
  1501. if (tmp_work <= 0)
  1502. printk (KERN_WARNING PFX "tx/rx enable wait too longn");
  1503. /* and reinitialize all rx related registers */
  1504. RTL_W8_F (Cfg9346, Cfg9346_Unlock);
  1505. /* Must enable Tx/Rx before setting transfer thresholds! */
  1506. RTL_W8 (ChipCmd, CmdRxEnb | CmdTxEnb);
  1507. tp->rx_config = rtl8139_rx_config | AcceptBroadcast | AcceptMyPhys;
  1508. RTL_W32 (RxConfig, tp->rx_config);
  1509. tp->cur_rx = 0;
  1510. DPRINTK("init buffer addressesn");
  1511. /* Lock Config[01234] and BMCR register writes */
  1512. RTL_W8 (Cfg9346, Cfg9346_Lock);
  1513. /* init Rx ring buffer DMA address */
  1514. RTL_W32_F (RxBuf, tp->rx_ring_dma);
  1515. /* A.C.: Reset the multicast list. */
  1516. __set_rx_mode (dev);
  1517. #endif
  1518. }
  1519. static void rtl8139_rx_interrupt (struct net_device *dev,
  1520.   struct rtl8139_private *tp, void *ioaddr)
  1521. {
  1522. unsigned char *rx_ring;
  1523. u16 cur_rx;
  1524. assert (dev != NULL);
  1525. assert (tp != NULL);
  1526. assert (ioaddr != NULL);
  1527. rx_ring = tp->rx_ring;
  1528. cur_rx = tp->cur_rx;
  1529. DPRINTK ("%s: In rtl8139_rx(), current %4.4x BufAddr %4.4x,"
  1530.  " free to %4.4x, Cmd %2.2x.n", dev->name, cur_rx,
  1531.  RTL_R16 (RxBufAddr),
  1532.  RTL_R16 (RxBufPtr), RTL_R8 (ChipCmd));
  1533. while ((RTL_R8 (ChipCmd) & RxBufEmpty) == 0) {
  1534. int ring_offset = cur_rx % RX_BUF_LEN;
  1535. u32 rx_status;
  1536. unsigned int rx_size;
  1537. unsigned int pkt_size;
  1538. struct sk_buff *skb;
  1539. rmb();
  1540. /* read size+status of next frame from DMA ring buffer */
  1541. rx_status = le32_to_cpu (*(u32 *) (rx_ring + ring_offset));
  1542. rx_size = rx_status >> 16;
  1543. pkt_size = rx_size - 4;
  1544. DPRINTK ("%s:  rtl8139_rx() status %4.4x, size %4.4x,"
  1545.  " cur %4.4x.n", dev->name, rx_status,
  1546.  rx_size, cur_rx);
  1547. #if RTL8139_DEBUG > 2
  1548. {
  1549. int i;
  1550. DPRINTK ("%s: Frame contents ", dev->name);
  1551. for (i = 0; i < 70; i++)
  1552. printk (" %2.2x",
  1553. rx_ring[ring_offset + i]);
  1554. printk (".n");
  1555. }
  1556. #endif
  1557. /* Packet copy from FIFO still in progress.
  1558.  * Theoretically, this should never happen
  1559.  * since EarlyRx is disabled.
  1560.  */
  1561. if (rx_size == 0xfff0) {
  1562. tp->xstats.early_rx++;
  1563. break;
  1564. }
  1565. /* If Rx err or invalid rx_size/rx_status received
  1566.  * (which happens if we get lost in the ring),
  1567.  * Rx process gets reset, so we abort any further
  1568.  * Rx processing.
  1569.  */
  1570. if ((rx_size > (MAX_ETH_FRAME_SIZE+4)) ||
  1571.     (rx_size < 8) ||
  1572.     (!(rx_status & RxStatusOK))) {
  1573. rtl8139_rx_err (rx_status, dev, tp, ioaddr);
  1574. return;
  1575. }
  1576. /* Malloc up new buffer, compatible with net-2e. */
  1577. /* Omit the four octet CRC from the length. */
  1578. /* TODO: consider allocating skb's outside of
  1579.  * interrupt context, both to speed interrupt processing,
  1580.  * and also to reduce the chances of having to
  1581.  * drop packets here under memory pressure.
  1582.  */
  1583. skb = dev_alloc_skb (pkt_size + 2);
  1584. if (skb) {
  1585. skb->dev = dev;
  1586. skb_reserve (skb, 2); /* 16 byte align the IP fields. */
  1587. eth_copy_and_sum (skb, &rx_ring[ring_offset + 4], pkt_size, 0);
  1588. skb_put (skb, pkt_size);
  1589. skb->protocol = eth_type_trans (skb, dev);
  1590. netif_rx (skb);
  1591. dev->last_rx = jiffies;
  1592. tp->stats.rx_bytes += pkt_size;
  1593. tp->stats.rx_packets++;
  1594. } else {
  1595. printk (KERN_WARNING
  1596. "%s: Memory squeeze, dropping packet.n",
  1597. dev->name);
  1598. tp->stats.rx_dropped++;
  1599. }
  1600. cur_rx = (cur_rx + rx_size + 4 + 3) & ~3;
  1601. RTL_W16 (RxBufPtr, cur_rx - 16);
  1602. if (RTL_R16 (IntrStatus) & RxAckBits)
  1603. RTL_W16_F (IntrStatus, RxAckBits);
  1604. }
  1605. DPRINTK ("%s: Done rtl8139_rx(), current %4.4x BufAddr %4.4x,"
  1606.  " free to %4.4x, Cmd %2.2x.n", dev->name, cur_rx,
  1607.  RTL_R16 (RxBufAddr),
  1608.  RTL_R16 (RxBufPtr), RTL_R8 (ChipCmd));
  1609. tp->cur_rx = cur_rx;
  1610. }
  1611. static void rtl8139_weird_interrupt (struct net_device *dev,
  1612.      struct rtl8139_private *tp,
  1613.      void *ioaddr,
  1614.      int status, int link_changed)
  1615. {
  1616. DPRINTK ("%s: Abnormal interrupt, status %8.8x.n",
  1617.  dev->name, status);
  1618. assert (dev != NULL);
  1619. assert (tp != NULL);
  1620. assert (ioaddr != NULL);
  1621. /* Update the error count. */
  1622. tp->stats.rx_missed_errors += RTL_R32 (RxMissed);
  1623. RTL_W32 (RxMissed, 0);
  1624. if ((status & RxUnderrun) && link_changed &&
  1625.     (tp->drv_flags & HAS_LNK_CHNG)) {
  1626. /* Really link-change on new chips. */
  1627. int lpar = RTL_R16 (NWayLPAR);
  1628. int duplex = (lpar & LPA_100FULL) || (lpar & 0x01C0) == 0x0040
  1629. || tp->mii.duplex_lock;
  1630. if (tp->mii.full_duplex != duplex) {
  1631. tp->mii.full_duplex = duplex;
  1632. #if 0
  1633. RTL_W8 (Cfg9346, Cfg9346_Unlock);
  1634. RTL_W8 (Config1, tp->mii.full_duplex ? 0x60 : 0x20);
  1635. RTL_W8 (Cfg9346, Cfg9346_Lock);
  1636. #endif
  1637. }
  1638. status &= ~RxUnderrun;
  1639. }
  1640. /* XXX along with rtl8139_rx_err, are we double-counting errors? */
  1641. if (status &
  1642.     (RxUnderrun | RxOverflow | RxErr | RxFIFOOver))
  1643. tp->stats.rx_errors++;
  1644. if (status & PCSTimeout)
  1645. tp->stats.rx_length_errors++;
  1646. if (status & (RxUnderrun | RxFIFOOver))
  1647. tp->stats.rx_fifo_errors++;
  1648. if (status & PCIErr) {
  1649. u16 pci_cmd_status;
  1650. pci_read_config_word (tp->pci_dev, PCI_STATUS, &pci_cmd_status);
  1651. pci_write_config_word (tp->pci_dev, PCI_STATUS, pci_cmd_status);
  1652. printk (KERN_ERR "%s: PCI Bus error %4.4x.n",
  1653. dev->name, pci_cmd_status);
  1654. }
  1655. }
  1656. /* The interrupt handler does all of the Rx thread work and cleans up
  1657.    after the Tx thread. */
  1658. static void rtl8139_interrupt (int irq, void *dev_instance,
  1659.        struct pt_regs *regs)
  1660. {
  1661. struct net_device *dev = (struct net_device *) dev_instance;
  1662. struct rtl8139_private *tp = dev->priv;
  1663. int boguscnt = max_interrupt_work;
  1664. void *ioaddr = tp->mmio_addr;
  1665. int ackstat, status;
  1666. int link_changed = 0; /* avoid bogus "uninit" warning */
  1667. spin_lock (&tp->lock);
  1668. do {
  1669. status = RTL_R16 (IntrStatus);
  1670. /* h/w no longer present (hotplug?) or major error, bail */
  1671. if (status == 0xFFFF)
  1672. break;
  1673. if ((status &
  1674.      (PCIErr | PCSTimeout | RxUnderrun | RxOverflow |
  1675.       RxFIFOOver | TxErr | TxOK | RxErr | RxOK)) == 0)
  1676. break;
  1677. /* Acknowledge all of the current interrupt sources ASAP, but
  1678.    an first get an additional status bit from CSCR. */
  1679. if (status & RxUnderrun)
  1680. link_changed = RTL_R16 (CSCR) & CSCR_LinkChangeBit;
  1681. /* The chip takes special action when we clear RxAckBits,
  1682.  * so we clear them later in rtl8139_rx_interrupt
  1683.  */
  1684. ackstat = status & ~(RxAckBits | TxErr);
  1685. RTL_W16 (IntrStatus, ackstat);
  1686. DPRINTK ("%s: interrupt  status=%#4.4x ackstat=%#4.4x new intstat=%#4.4x.n",
  1687.  dev->name, ackstat, status, RTL_R16 (IntrStatus));
  1688. if (netif_running (dev) && (status & RxAckBits))
  1689. rtl8139_rx_interrupt (dev, tp, ioaddr);
  1690. /* Check uncommon events with one test. */
  1691. if (status & (PCIErr | PCSTimeout | RxUnderrun | RxOverflow |
  1692.          RxFIFOOver | RxErr))
  1693. rtl8139_weird_interrupt (dev, tp, ioaddr,
  1694.  status, link_changed);
  1695. if (netif_running (dev) && (status & (TxOK | TxErr))) {
  1696. rtl8139_tx_interrupt (dev, tp, ioaddr);
  1697. if (status & TxErr)
  1698. RTL_W16 (IntrStatus, TxErr);
  1699. }
  1700. boguscnt--;
  1701. } while (boguscnt > 0);
  1702. if (boguscnt <= 0) {
  1703. printk (KERN_WARNING "%s: Too much work at interrupt, "
  1704. "IntrStatus=0x%4.4x.n", dev->name, status);
  1705. /* Clear all interrupt sources. */
  1706. RTL_W16 (IntrStatus, 0xffff);
  1707. }
  1708. spin_unlock (&tp->lock);
  1709. DPRINTK ("%s: exiting interrupt, intr_status=%#4.4x.n",
  1710.  dev->name, RTL_R16 (IntrStatus));
  1711. }
  1712. static int rtl8139_close (struct net_device *dev)
  1713. {
  1714. struct rtl8139_private *tp = dev->priv;
  1715. void *ioaddr = tp->mmio_addr;
  1716. int ret = 0;
  1717. unsigned long flags;
  1718. netif_stop_queue (dev);
  1719. if (tp->thr_pid >= 0) {
  1720. tp->time_to_die = 1;
  1721. wmb();
  1722. ret = kill_proc (tp->thr_pid, SIGTERM, 1);
  1723. if (ret) {
  1724. printk (KERN_ERR "%s: unable to signal threadn", dev->name);
  1725. return ret;
  1726. }
  1727. wait_for_completion (&tp->thr_exited);
  1728. }
  1729. DPRINTK ("%s: Shutting down ethercard, status was 0x%4.4x.n",
  1730. dev->name, RTL_R16 (IntrStatus));
  1731. spin_lock_irqsave (&tp->lock, flags);
  1732. /* Stop the chip's Tx and Rx DMA processes. */
  1733. RTL_W8 (ChipCmd, 0);
  1734. /* Disable interrupts by clearing the interrupt mask. */
  1735. RTL_W16 (IntrMask, 0);
  1736. /* Update the error counts. */
  1737. tp->stats.rx_missed_errors += RTL_R32 (RxMissed);
  1738. RTL_W32 (RxMissed, 0);
  1739. spin_unlock_irqrestore (&tp->lock, flags);
  1740. synchronize_irq ();
  1741. free_irq (dev->irq, dev);
  1742. rtl8139_tx_clear (tp);
  1743. pci_free_consistent(tp->pci_dev, RX_BUF_TOT_LEN,
  1744.     tp->rx_ring, tp->rx_ring_dma);
  1745. pci_free_consistent(tp->pci_dev, TX_BUF_TOT_LEN,
  1746.     tp->tx_bufs, tp->tx_bufs_dma);
  1747. tp->rx_ring = NULL;
  1748. tp->tx_bufs = NULL;
  1749. /* Green! Put the chip in low-power mode. */
  1750. RTL_W8 (Cfg9346, Cfg9346_Unlock);
  1751. if (rtl_chip_info[tp->chipset].flags & HasHltClk)
  1752. RTL_W8 (HltClk, 'H'); /* 'R' would leave the clock running. */
  1753. return 0;
  1754. }
  1755. /* Get the ethtool Wake-on-LAN settings.  Assumes that wol points to
  1756.    kernel memory, *wol has been initialized as {ETHTOOL_GWOL}, and
  1757.    other threads or interrupts aren't messing with the 8139.  */
  1758. static void netdev_get_wol (struct net_device *dev, struct ethtool_wolinfo *wol)
  1759. {
  1760. struct rtl8139_private *np = dev->priv;
  1761. void *ioaddr = np->mmio_addr;
  1762. if (rtl_chip_info[np->chipset].flags & HasLWake) {
  1763. u8 cfg3 = RTL_R8 (Config3);
  1764. u8 cfg5 = RTL_R8 (Config5);
  1765. wol->supported = WAKE_PHY | WAKE_MAGIC
  1766. | WAKE_UCAST | WAKE_MCAST | WAKE_BCAST;
  1767. wol->wolopts = 0;
  1768. if (cfg3 & Cfg3_LinkUp)
  1769. wol->wolopts |= WAKE_PHY;
  1770. if (cfg3 & Cfg3_Magic)
  1771. wol->wolopts |= WAKE_MAGIC;
  1772. /* (KON)FIXME: See how netdev_set_wol() handles the
  1773.    following constants.  */
  1774. if (cfg5 & Cfg5_UWF)
  1775. wol->wolopts |= WAKE_UCAST;
  1776. if (cfg5 & Cfg5_MWF)
  1777. wol->wolopts |= WAKE_MCAST;
  1778. if (cfg5 & Cfg5_BWF)
  1779. wol->wolopts |= WAKE_BCAST;
  1780. }
  1781. }
  1782. /* Set the ethtool Wake-on-LAN settings.  Return 0 or -errno.  Assumes
  1783.    that wol points to kernel memory and other threads or interrupts
  1784.    aren't messing with the 8139.  */
  1785. static int netdev_set_wol (struct net_device *dev,
  1786.    const struct ethtool_wolinfo *wol)
  1787. {
  1788. struct rtl8139_private *np = dev->priv;
  1789. void *ioaddr = np->mmio_addr;
  1790. u32 support;
  1791. u8 cfg3, cfg5;
  1792. support = ((rtl_chip_info[np->chipset].flags & HasLWake)
  1793.    ? (WAKE_PHY | WAKE_MAGIC
  1794.       | WAKE_UCAST | WAKE_MCAST | WAKE_BCAST)
  1795.    : 0);
  1796. if (wol->wolopts & ~support)
  1797. return -EINVAL;
  1798. cfg3 = RTL_R8 (Config3) & ~(Cfg3_LinkUp | Cfg3_Magic);
  1799. if (wol->wolopts & WAKE_PHY)
  1800. cfg3 |= Cfg3_LinkUp;
  1801. if (wol->wolopts & WAKE_MAGIC)
  1802. cfg3 |= Cfg3_Magic;
  1803. RTL_W8 (Cfg9346, Cfg9346_Unlock);
  1804. RTL_W8 (Config3, cfg3);
  1805. RTL_W8 (Cfg9346, Cfg9346_Lock);
  1806. cfg5 = RTL_R8 (Config5) & ~(Cfg5_UWF | Cfg5_MWF | Cfg5_BWF);
  1807. /* (KON)FIXME: These are untested.  We may have to set the
  1808.    CRC0, Wakeup0 and LSBCRC0 registers too, but I have no
  1809.    documentation.  */
  1810. if (wol->wolopts & WAKE_UCAST)
  1811. cfg5 |= Cfg5_UWF;
  1812. if (wol->wolopts & WAKE_MCAST)
  1813. cfg5 |= Cfg5_MWF;
  1814. if (wol->wolopts & WAKE_BCAST)
  1815. cfg5 |= Cfg5_BWF;
  1816. RTL_W8 (Config5, cfg5); /* need not unlock via Cfg9346 */
  1817. return 0;
  1818. }
  1819. static int netdev_ethtool_ioctl (struct net_device *dev, void *useraddr)
  1820. {
  1821. struct rtl8139_private *np = dev->priv;
  1822. u32 ethcmd;
  1823. /* dev_ioctl() in ../../net/core/dev.c has already checked
  1824.    capable(CAP_NET_ADMIN), so don't bother with that here.  */
  1825. if (get_user(ethcmd, (u32 *)useraddr))
  1826. return -EFAULT;
  1827. switch (ethcmd) {
  1828. case ETHTOOL_GDRVINFO: {
  1829. struct ethtool_drvinfo info = { ETHTOOL_GDRVINFO };
  1830. strcpy (info.driver, DRV_NAME);
  1831. strcpy (info.version, DRV_VERSION);
  1832. strcpy (info.bus_info, np->pci_dev->slot_name);
  1833. if (copy_to_user (useraddr, &info, sizeof (info)))
  1834. return -EFAULT;
  1835. return 0;
  1836. }
  1837. /* get settings */
  1838. case ETHTOOL_GSET: {
  1839. struct ethtool_cmd ecmd = { ETHTOOL_GSET };
  1840. spin_lock_irq(&np->lock);
  1841. mii_ethtool_gset(&np->mii, &ecmd);
  1842. spin_unlock_irq(&np->lock);
  1843. if (copy_to_user(useraddr, &ecmd, sizeof(ecmd)))
  1844. return -EFAULT;
  1845. return 0;
  1846. }
  1847. /* set settings */
  1848. case ETHTOOL_SSET: {
  1849. int r;
  1850. struct ethtool_cmd ecmd;
  1851. if (copy_from_user(&ecmd, useraddr, sizeof(ecmd)))
  1852. return -EFAULT;
  1853. spin_lock_irq(&np->lock);
  1854. r = mii_ethtool_sset(&np->mii, &ecmd);
  1855. spin_unlock_irq(&np->lock);
  1856. return r;
  1857. }
  1858. /* restart autonegotiation */
  1859. case ETHTOOL_NWAY_RST: {
  1860. return mii_nway_restart(&np->mii);
  1861. }
  1862. /* get link status */
  1863. case ETHTOOL_GLINK: {
  1864. struct ethtool_value edata = {ETHTOOL_GLINK};
  1865. edata.data = mii_link_ok(&np->mii);
  1866. if (copy_to_user(useraddr, &edata, sizeof(edata)))
  1867. return -EFAULT;
  1868. return 0;
  1869. }
  1870. /* get message-level */
  1871. case ETHTOOL_GMSGLVL: {
  1872. struct ethtool_value edata = {ETHTOOL_GMSGLVL};
  1873. edata.data = debug;
  1874. if (copy_to_user(useraddr, &edata, sizeof(edata)))
  1875. return -EFAULT;
  1876. return 0;
  1877. }
  1878. /* set message-level */
  1879. case ETHTOOL_SMSGLVL: {
  1880. struct ethtool_value edata;
  1881. if (copy_from_user(&edata, useraddr, sizeof(edata)))
  1882. return -EFAULT;
  1883. debug = edata.data;
  1884. return 0;
  1885. }
  1886. case ETHTOOL_GWOL:
  1887. {
  1888. struct ethtool_wolinfo wol = { ETHTOOL_GWOL };
  1889. spin_lock_irq (&np->lock);
  1890. netdev_get_wol (dev, &wol);
  1891. spin_unlock_irq (&np->lock);
  1892. if (copy_to_user (useraddr, &wol, sizeof (wol)))
  1893. return -EFAULT;
  1894. return 0;
  1895. }
  1896. case ETHTOOL_SWOL:
  1897. {
  1898. struct ethtool_wolinfo wol;
  1899. int rc;
  1900. if (copy_from_user (&wol, useraddr, sizeof (wol)))
  1901. return -EFAULT;
  1902. spin_lock_irq (&np->lock);
  1903. rc = netdev_set_wol (dev, &wol);
  1904. spin_unlock_irq (&np->lock);
  1905. return rc;
  1906. }
  1907. default:
  1908. break;
  1909. }
  1910. return -EOPNOTSUPP;
  1911. }
  1912. static int netdev_ioctl (struct net_device *dev, struct ifreq *rq, int cmd)
  1913. {
  1914. struct rtl8139_private *tp = dev->priv;
  1915. struct mii_ioctl_data *data = (struct mii_ioctl_data *)&rq->ifr_data;
  1916. int rc = 0;
  1917. int phy = tp->phys[0] & 0x3f;
  1918. if (!netif_running(dev))
  1919. return -EINVAL;
  1920. if (cmd != SIOCETHTOOL) {
  1921. /* With SIOCETHTOOL, this would corrupt the pointer.  */
  1922. data->phy_id &= 0x1f;
  1923. data->reg_num &= 0x1f;
  1924. }
  1925. switch (cmd) {
  1926. case SIOCETHTOOL:
  1927. return netdev_ethtool_ioctl(dev, (void *) rq->ifr_data);
  1928. case SIOCGMIIPHY: /* Get the address of the PHY in use. */
  1929. case SIOCDEVPRIVATE: /* binary compat, remove in 2.5 */
  1930. data->phy_id = phy;
  1931. /* Fall Through */
  1932. case SIOCGMIIREG: /* Read the specified MII register. */
  1933. case SIOCDEVPRIVATE+1: /* binary compat, remove in 2.5 */
  1934. data->val_out = mdio_read (dev, data->phy_id, data->reg_num);
  1935. break;
  1936. case SIOCSMIIREG: /* Write the specified MII register */
  1937. case SIOCDEVPRIVATE+2: /* binary compat, remove in 2.5 */
  1938. if (!capable (CAP_NET_ADMIN)) {
  1939. rc = -EPERM;
  1940. break;
  1941. }
  1942. if (data->phy_id == phy) {
  1943. u16 value = data->val_in;
  1944. switch (data->reg_num) {
  1945. case 0:
  1946. /* Check for autonegotiation on or reset. */
  1947. tp->medialock = (value & 0x9000) ? 0 : 1;
  1948. if (tp->medialock)
  1949. tp->mii.full_duplex = (value & 0x0100) ? 1 : 0;
  1950. break;
  1951. case 4: tp->mii.advertising = value; break;
  1952. }
  1953. }
  1954. mdio_write(dev, data->phy_id, data->reg_num, data->val_in);
  1955. break;
  1956. default:
  1957. rc = -EOPNOTSUPP;
  1958. break;
  1959. }
  1960. return rc;
  1961. }
  1962. static struct net_device_stats *rtl8139_get_stats (struct net_device *dev)
  1963. {
  1964. struct rtl8139_private *tp = dev->priv;
  1965. void *ioaddr = tp->mmio_addr;
  1966. unsigned long flags;
  1967. if (netif_running(dev)) {
  1968. spin_lock_irqsave (&tp->lock, flags);
  1969. tp->stats.rx_missed_errors += RTL_R32 (RxMissed);
  1970. RTL_W32 (RxMissed, 0);
  1971. spin_unlock_irqrestore (&tp->lock, flags);
  1972. }
  1973. return &tp->stats;
  1974. }
  1975. /* Set or clear the multicast filter for this adaptor.
  1976.    This routine is not state sensitive and need not be SMP locked. */
  1977. static unsigned const ethernet_polynomial = 0x04c11db7U;
  1978. static inline u32 ether_crc (int length, unsigned char *data)
  1979. {
  1980. int crc = -1;
  1981. while (--length >= 0) {
  1982. unsigned char current_octet = *data++;
  1983. int bit;
  1984. for (bit = 0; bit < 8; bit++, current_octet >>= 1)
  1985. crc = (crc << 1) ^ ((crc < 0) ^ (current_octet & 1) ?
  1986.      ethernet_polynomial : 0);
  1987. }
  1988. return crc;
  1989. }
  1990. static void __set_rx_mode (struct net_device *dev)
  1991. {
  1992. struct rtl8139_private *tp = dev->priv;
  1993. void *ioaddr = tp->mmio_addr;
  1994. u32 mc_filter[2]; /* Multicast hash filter */
  1995. int i, rx_mode;
  1996. u32 tmp;
  1997. DPRINTK ("%s:   rtl8139_set_rx_mode(%4.4x) done -- Rx config %8.8lx.n",
  1998. dev->name, dev->flags, RTL_R32 (RxConfig));
  1999. /* Note: do not reorder, GCC is clever about common statements. */
  2000. if (dev->flags & IFF_PROMISC) {
  2001. /* Unconditionally log net taps. */
  2002. printk (KERN_NOTICE "%s: Promiscuous mode enabled.n",
  2003. dev->name);
  2004. rx_mode =
  2005.     AcceptBroadcast | AcceptMulticast | AcceptMyPhys |
  2006.     AcceptAllPhys;
  2007. mc_filter[1] = mc_filter[0] = 0xffffffff;
  2008. } else if ((dev->mc_count > multicast_filter_limit)
  2009.    || (dev->flags & IFF_ALLMULTI)) {
  2010. /* Too many to filter perfectly -- accept all multicasts. */
  2011. rx_mode = AcceptBroadcast | AcceptMulticast | AcceptMyPhys;
  2012. mc_filter[1] = mc_filter[0] = 0xffffffff;
  2013. } else {
  2014. struct dev_mc_list *mclist;
  2015. rx_mode = AcceptBroadcast | AcceptMyPhys;
  2016. mc_filter[1] = mc_filter[0] = 0;
  2017. for (i = 0, mclist = dev->mc_list; mclist && i < dev->mc_count;
  2018.      i++, mclist = mclist->next) {
  2019. int bit_nr = ether_crc(ETH_ALEN, mclist->dmi_addr) >> 26;
  2020. mc_filter[bit_nr >> 5] |= cpu_to_le32(1 << (bit_nr & 31));
  2021. rx_mode |= AcceptMulticast;
  2022. }
  2023. }
  2024. /* We can safely update without stopping the chip. */
  2025. tmp = rtl8139_rx_config | rx_mode;
  2026. if (tp->rx_config != tmp) {
  2027. RTL_W32_F (RxConfig, tmp);
  2028. tp->rx_config = tmp;
  2029. }
  2030. RTL_W32_F (MAR0 + 0, mc_filter[0]);
  2031. RTL_W32_F (MAR0 + 4, mc_filter[1]);
  2032. }
  2033. static void rtl8139_set_rx_mode (struct net_device *dev)
  2034. {
  2035. unsigned long flags;
  2036. struct rtl8139_private *tp = dev->priv;
  2037. spin_lock_irqsave (&tp->lock, flags);
  2038. __set_rx_mode(dev);
  2039. spin_unlock_irqrestore (&tp->lock, flags);
  2040. }
  2041. #ifdef CONFIG_PM
  2042. static int rtl8139_suspend (struct pci_dev *pdev, u32 state)
  2043. {
  2044. struct net_device *dev = pci_get_drvdata (pdev);
  2045. struct rtl8139_private *tp = dev->priv;
  2046. void *ioaddr = tp->mmio_addr;
  2047. unsigned long flags;
  2048. if (!netif_running (dev))
  2049. return 0;
  2050. netif_device_detach (dev);
  2051. spin_lock_irqsave (&tp->lock, flags);
  2052. /* Disable interrupts, stop Tx and Rx. */
  2053. RTL_W16 (IntrMask, 0);
  2054. RTL_W8 (ChipCmd, 0);
  2055. /* Update the error counts. */
  2056. tp->stats.rx_missed_errors += RTL_R32 (RxMissed);
  2057. RTL_W32 (RxMissed, 0);
  2058. spin_unlock_irqrestore (&tp->lock, flags);
  2059. return 0;
  2060. }
  2061. static int rtl8139_resume (struct pci_dev *pdev)
  2062. {
  2063. struct net_device *dev = pci_get_drvdata (pdev);
  2064. if (!netif_running (dev))
  2065. return 0;
  2066. netif_device_attach (dev);
  2067. rtl8139_hw_start (dev);
  2068. return 0;
  2069. }
  2070. #endif /* CONFIG_PM */
  2071. static struct pci_driver rtl8139_pci_driver = {
  2072. name: DRV_NAME,
  2073. id_table: rtl8139_pci_tbl,
  2074. probe: rtl8139_init_one,
  2075. remove: __devexit_p(rtl8139_remove_one),
  2076. #ifdef CONFIG_PM
  2077. suspend: rtl8139_suspend,
  2078. resume: rtl8139_resume,
  2079. #endif /* CONFIG_PM */
  2080. };
  2081. static int __init rtl8139_init_module (void)
  2082. {
  2083. /* when we're a module, we always print a version message,
  2084.  * even if no 8139 board is found.
  2085.  */
  2086. #ifdef MODULE
  2087. printk (KERN_INFO RTL8139_DRIVER_NAME "n");
  2088. #endif
  2089. return pci_module_init (&rtl8139_pci_driver);
  2090. }
  2091. static void __exit rtl8139_cleanup_module (void)
  2092. {
  2093. pci_unregister_driver (&rtl8139_pci_driver);
  2094. }
  2095. module_init(rtl8139_init_module);
  2096. module_exit(rtl8139_cleanup_module);