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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* $Id: ethernet.c,v 1.22 2002/01/30 07:48:22 matsfg Exp $
  2.  *
  3.  * e100net.c: A network driver for the ETRAX 100LX network controller.
  4.  *
  5.  * Copyright (c) 1998-2001 Axis Communications AB.
  6.  *
  7.  * The outline of this driver comes from skeleton.c.
  8.  *
  9.  * $Log: ethernet.c,v $
  10.  * Revision 1.22  2002/01/30 07:48:22  matsfg
  11.  * Initiate R_NETWORK_TR_CTRL
  12.  *
  13.  * Revision 1.21  2001/11/23 11:54:49  starvik
  14.  * Added IFF_PROMISC and IFF_ALLMULTI handling in set_multicast_list
  15.  * Removed compiler warnings
  16.  *
  17.  * Revision 1.20  2001/11/12 19:26:00  pkj
  18.  * * Corrected e100_negotiate() to not assign half to current_duplex when
  19.  *   it was supposed to compare them...
  20.  * * Cleaned up failure handling in e100_open().
  21.  * * Fixed compiler warnings.
  22.  *
  23.  * Revision 1.19  2001/11/09 07:43:09  starvik
  24.  * Added full duplex support
  25.  * Added ioctl to set speed and duplex
  26.  * Clear LED timer only runs when LED is lit
  27.  *
  28.  * Revision 1.18  2001/10/03 14:40:43  jonashg
  29.  * Update rx_bytes counter.
  30.  *
  31.  * Revision 1.17  2001/06/11 12:43:46  olof
  32.  * Modified defines for network LED behavior
  33.  *
  34.  * Revision 1.16  2001/05/30 06:12:46  markusl
  35.  * TxDesc.next should not be set to NULL
  36.  *
  37.  * Revision 1.15  2001/05/29 10:27:04  markusl
  38.  * Updated after review remarks:
  39.  * +Use IO_EXTRACT
  40.  * +Handle underrun
  41.  *
  42.  * Revision 1.14  2001/05/29 09:20:14  jonashg
  43.  * Use driver name on printk output so one can tell which driver that complains.
  44.  *
  45.  * Revision 1.13  2001/05/09 12:35:59  johana
  46.  * Use DMA_NBR and IRQ_NBR defines from dma.h and irq.h
  47.  *
  48.  * Revision 1.12  2001/04/05 11:43:11  tobiasa
  49.  * Check dev before panic.
  50.  *
  51.  * Revision 1.11  2001/04/04 11:21:05  markusl
  52.  * Updated according to review remarks
  53.  *
  54.  * Revision 1.10  2001/03/26 16:03:06  bjornw
  55.  * Needs linux/config.h
  56.  *
  57.  * Revision 1.9  2001/03/19 14:47:48  pkj
  58.  * * Make sure there is always a pause after the network LEDs are
  59.  *   changed so they will not look constantly lit during heavy traffic.
  60.  * * Always use HZ when setting times relative to jiffies.
  61.  * * Use LED_NETWORK_SET() when setting the network LEDs.
  62.  *
  63.  * Revision 1.8  2001/02/27 13:52:48  bjornw
  64.  * malloc.h -> slab.h
  65.  *
  66.  * Revision 1.7  2001/02/23 13:46:38  bjornw
  67.  * Spellling check
  68.  *
  69.  * Revision 1.6  2001/01/26 15:21:04  starvik
  70.  * Don't disable interrupts while reading MDIO registers (MDIO is slow)
  71.  * Corrected promiscuous mode
  72.  * Improved deallocation of IRQs ("ifconfig eth0 down" now works)
  73.  *
  74.  * Revision 1.5  2000/11/29 17:22:22  bjornw
  75.  * Get rid of the udword types legacy stuff
  76.  *
  77.  * Revision 1.4  2000/11/22 16:36:09  bjornw
  78.  * Please marketing by using the correct case when spelling Etrax.
  79.  *
  80.  * Revision 1.3  2000/11/21 16:43:04  bjornw
  81.  * Minor short->int change
  82.  *
  83.  * Revision 1.2  2000/11/08 14:27:57  bjornw
  84.  * 2.4 port
  85.  *
  86.  * Revision 1.1  2000/11/06 13:56:00  bjornw
  87.  * Verbatim copy of the 1.24 version of e100net.c from elinux
  88.  *
  89.  * Revision 1.24  2000/10/04 15:55:23  bjornw
  90.  * * Use virt_to_phys etc. for DMA addresses
  91.  * * Removed bogus CHECKSUM_UNNECESSARY
  92.  *
  93.  *
  94.  */
  95. #include <linux/config.h>
  96. #include <linux/module.h>
  97. #include <linux/kernel.h>
  98. #include <linux/sched.h>
  99. #include <linux/delay.h>
  100. #include <linux/types.h>
  101. #include <linux/fcntl.h>
  102. #include <linux/interrupt.h>
  103. #include <linux/ptrace.h>
  104. #include <linux/ioport.h>
  105. #include <linux/in.h>
  106. #include <linux/slab.h>
  107. #include <linux/string.h>
  108. #include <linux/spinlock.h>
  109. #include <linux/errno.h>
  110. #include <linux/init.h>
  111. #include <linux/netdevice.h>
  112. #include <linux/etherdevice.h>
  113. #include <linux/skbuff.h>
  114. #include <asm/svinto.h>     /* DMA and register descriptions */
  115. #include <asm/io.h>         /* LED_* I/O functions */
  116. #include <asm/irq.h>
  117. #include <asm/dma.h>
  118. #include <asm/system.h>
  119. #include <asm/bitops.h>
  120. #include <asm/ethernet.h>
  121. //#define ETHDEBUG
  122. #define D(x)
  123. /*
  124.  * The name of the card. Is used for messages and in the requests for
  125.  * io regions, irqs and dma channels
  126.  */
  127. static const char* cardname = "ETRAX 100LX built-in ethernet controller";
  128. /* A default ethernet address. Highlevel SW will set the real one later */
  129. static struct sockaddr default_mac = {
  130. 0,
  131. { 0x00, 0x40, 0x8C, 0xCD, 0x00, 0x00 }
  132. };
  133. /* Information that need to be kept for each board. */
  134. struct net_local {
  135. struct net_device_stats stats;
  136. /* Tx control lock.  This protects the transmit buffer ring
  137.  * state along with the "tx full" state of the driver.  This
  138.  * means all netif_queue flow control actions are protected
  139.  * by this lock as well.
  140.  */
  141. spinlock_t lock;
  142. };
  143. /* Duplex settings */
  144. enum duplex
  145. {
  146. half,
  147. full,
  148. autoneg
  149. };
  150. /* Dma descriptors etc. */
  151. #define RX_BUF_SIZE 32768
  152. #define MAX_MEDIA_DATA_SIZE 1518
  153. #define MIN_PACKET_LEN      46
  154. #define ETHER_HEAD_LEN      14
  155. /* 
  156. ** MDIO constants.
  157. */
  158. #define MDIO_BASE_STATUS_REG                0x1
  159. #define MDIO_BASE_CONTROL_REG               0x0
  160. #define MDIO_BC_NEGOTIATE                0x0200
  161. #define MDIO_BC_FULL_DUPLEX_MASK         0x0100
  162. #define MDIO_BC_AUTO_NEG_MASK            0x1000
  163. #define MDIO_BC_SPEED_SELECT_MASK        0x2000
  164. #define MDIO_ADVERTISMENT_REG               0x4
  165. #define MDIO_ADVERT_100_FD                0x100
  166. #define MDIO_ADVERT_100_HD                0x080
  167. #define MDIO_ADVERT_10_FD                 0x040
  168. #define MDIO_ADVERT_10_HD                 0x020
  169. #define MDIO_LINK_UP_MASK                   0x4
  170. #define MDIO_START                          0x1
  171. #define MDIO_READ                           0x2
  172. #define MDIO_WRITE                          0x1
  173. #define MDIO_PREAMBLE              0xfffffffful
  174. /* Broadcom specific */
  175. #define MDIO_AUX_CTRL_STATUS_REG           0x18
  176. #define MDIO_FULL_DUPLEX_IND                0x1
  177. #define MDIO_SPEED                          0x2
  178. #define MDIO_PHYS_ADDR                      0x0
  179. /* Network flash constants */
  180. #define NET_FLASH_TIME                  (HZ/50) /* 20 ms */
  181. #define NET_FLASH_PAUSE                (HZ/100) /* 10 ms */
  182. #define NET_LINK_UP_CHECK_INTERVAL       (2*HZ) /* 2 s   */
  183. #define NET_DUPLEX_CHECK_INTERVAL        (2*HZ) /* 2 s   */
  184. #define NO_NETWORK_ACTIVITY 0
  185. #define NETWORK_ACTIVITY    1
  186. #define RX_DESC_BUF_SIZE   256
  187. #define NBR_OF_RX_DESC     (RX_BUF_SIZE / 
  188.                             RX_DESC_BUF_SIZE)
  189. #define GET_BIT(bit,val)   (((val) >> (bit)) & 0x01)
  190. /* Define some macros to access ETRAX 100 registers */
  191. #define SETF(var, reg, field, val) var = (var & ~IO_MASK(##reg##, field)) | 
  192.   IO_FIELD(##reg##, field, val)
  193. #define SETS(var, reg, field, val) var = (var & ~IO_MASK(##reg##, field)) | 
  194.   IO_STATE(##reg##, field, val)
  195. static etrax_dma_descr *myNextRxDesc;  /* Points to the next descriptor to
  196.                                           to be processed */
  197. static etrax_dma_descr *myLastRxDesc;  /* The last processed descriptor */
  198. static etrax_dma_descr *myPrevRxDesc;  /* The descriptor right before myNextRxDesc */
  199. static unsigned char RxBuf[RX_BUF_SIZE];
  200. static etrax_dma_descr RxDescList[NBR_OF_RX_DESC] __attribute__ ((aligned(4)));
  201. static etrax_dma_descr TxDesc __attribute__ ((aligned(4)));
  202. static struct sk_buff *tx_skb;
  203. static unsigned int network_rec_config_shadow = 0;
  204. /* Network speed indication. */
  205. static struct timer_list speed_timer;
  206. static struct timer_list clear_led_timer;
  207. static int current_speed; /* Speed read from tranceiver */
  208. static int current_speed_selection; /* Speed selected by user */
  209. static int led_next_time;
  210. static int led_active;
  211. /* Duplex */
  212. static struct timer_list duplex_timer;
  213. static int full_duplex;
  214. static enum duplex current_duplex;
  215. /* Index to functions, as function prototypes. */
  216. static int etrax_ethernet_init(struct net_device *dev);
  217. static int e100_open(struct net_device *dev);
  218. static int e100_set_mac_address(struct net_device *dev, void *addr);
  219. static int e100_send_packet(struct sk_buff *skb, struct net_device *dev);
  220. static void e100rx_interrupt(int irq, void *dev_id, struct pt_regs *regs);
  221. static void e100tx_interrupt(int irq, void *dev_id, struct pt_regs *regs);
  222. static void e100nw_interrupt(int irq, void *dev_id, struct pt_regs *regs);
  223. static void e100_rx(struct net_device *dev);
  224. static int e100_close(struct net_device *dev);
  225. static int e100_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd);
  226. static void e100_tx_timeout(struct net_device *dev);
  227. static struct net_device_stats *e100_get_stats(struct net_device *dev);
  228. static void set_multicast_list(struct net_device *dev);
  229. static void e100_hardware_send_packet(char *buf, int length);
  230. static void update_rx_stats(struct net_device_stats *);
  231. static void update_tx_stats(struct net_device_stats *);
  232. static void e100_check_speed(unsigned long dummy);
  233. static void e100_set_speed(unsigned long speed);
  234. static void e100_check_duplex(unsigned long dummy);
  235. static void e100_set_duplex(enum duplex);
  236. static void e100_negotiate(void);
  237. static unsigned short e100_get_mdio_reg(unsigned char reg_num);
  238. static void e100_send_mdio_cmd(unsigned short cmd, int write_cmd);
  239. static void e100_send_mdio_bit(unsigned char bit);
  240. static unsigned char e100_receive_mdio_bit(void);
  241. static void e100_reset_tranceiver(void);
  242. static void e100_clear_network_leds(unsigned long dummy);
  243. static void e100_set_network_leds(int active);
  244. #define tx_done(dev) (*R_DMA_CH0_CMD == 0)
  245. /*
  246.  * Check for a network adaptor of this type, and return '0' if one exists.
  247.  * If dev->base_addr == 0, probe all likely locations.
  248.  * If dev->base_addr == 1, always return failure.
  249.  * If dev->base_addr == 2, allocate space for the device and return success
  250.  * (detachable devices only).
  251.  */
  252. static int __init
  253. etrax_ethernet_init(struct net_device *dev)
  254. {
  255. int i;
  256. int anOffset = 0;
  257. printk("ETRAX 100LX 10/100MBit ethernet v2.0 (c) 2000-2001 Axis Communications ABn");
  258. dev->base_addr = (unsigned int)R_NETWORK_SA_0; /* just to have something to show */
  259. printk("%s initializedn", dev->name);
  260. /* make Linux aware of the new hardware  */
  261. if (!dev) {
  262. printk(KERN_WARNING "%s: dev == NULL. Should this happen?n",
  263.        cardname);
  264. dev = init_etherdev(dev, sizeof(struct net_local));
  265. if (!dev)
  266. panic("init_etherdev failedn");
  267. }
  268. /* setup generic handlers and stuff in the dev struct */
  269. ether_setup(dev);
  270. /* make room for the local structure containing stats etc */
  271. dev->priv = kmalloc(sizeof(struct net_local), GFP_KERNEL);
  272. if (dev->priv == NULL)
  273. return -ENOMEM;
  274. memset(dev->priv, 0, sizeof(struct net_local));
  275. /* now setup our etrax specific stuff */
  276. dev->irq = NETWORK_DMA_RX_IRQ_NBR; /* we really use DMATX as well... */
  277. dev->dma = NETWORK_RX_DMA_NBR;
  278. /* fill in our handlers so the network layer can talk to us in the future */
  279. dev->open               = e100_open;
  280. dev->hard_start_xmit    = e100_send_packet;
  281. dev->stop               = e100_close;
  282. dev->get_stats          = e100_get_stats;
  283. dev->set_multicast_list = set_multicast_list;
  284. dev->set_mac_address    = e100_set_mac_address;
  285. dev->do_ioctl           = e100_ioctl;
  286. dev->tx_timeout         = e100_tx_timeout;
  287. /* set the default MAC address */
  288. e100_set_mac_address(dev, &default_mac);
  289. /* Initialise the list of Etrax DMA-descriptors */
  290. /* Initialise receive descriptors */
  291. for (i = 0; i < (NBR_OF_RX_DESC - 1); i++) {
  292. RxDescList[i].ctrl   = 0;
  293. RxDescList[i].sw_len = RX_DESC_BUF_SIZE;
  294. RxDescList[i].next   = virt_to_phys(&RxDescList[i + 1]);
  295. RxDescList[i].buf    = virt_to_phys(RxBuf + anOffset);
  296. RxDescList[i].status = 0;
  297. RxDescList[i].hw_len = 0;
  298. anOffset += RX_DESC_BUF_SIZE;
  299. }
  300. RxDescList[i].ctrl   = d_eol;
  301. RxDescList[i].sw_len = RX_DESC_BUF_SIZE;
  302. RxDescList[i].next   = virt_to_phys(&RxDescList[0]);
  303. RxDescList[i].buf    = virt_to_phys(RxBuf + anOffset);
  304. RxDescList[i].status = 0;
  305. RxDescList[i].hw_len = 0;
  306. /* Initialise initial pointers */
  307. myNextRxDesc = &RxDescList[0];
  308. myLastRxDesc = &RxDescList[NBR_OF_RX_DESC - 1];
  309. myPrevRxDesc = &RxDescList[NBR_OF_RX_DESC - 1];
  310. /* Initialize speed indicator stuff. */
  311. current_speed = 10;
  312. current_speed_selection = 0; /* Auto */
  313. speed_timer.expires = jiffies + NET_LINK_UP_CHECK_INTERVAL;
  314. speed_timer.function = e100_check_speed;
  315. add_timer(&speed_timer);
  316.         
  317. clear_led_timer.function = e100_clear_network_leds;
  318.         
  319. full_duplex = 0;
  320. current_duplex = autoneg;
  321. duplex_timer.expires = jiffies + NET_DUPLEX_CHECK_INTERVAL;
  322. duplex_timer.function = e100_check_duplex;
  323. add_timer(&duplex_timer);
  324. return 0;
  325. }
  326. /* set MAC address of the interface. called from the core after a
  327.  * SIOCSIFADDR ioctl, and from the bootup above.
  328.  */
  329. static int
  330. e100_set_mac_address(struct net_device *dev, void *p)
  331. {
  332. struct sockaddr *addr = p;
  333. int i;
  334. /* remember it */
  335. memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
  336. /* Write it to the hardware.
  337.  * Note the way the address is wrapped:
  338.  * *R_NETWORK_SA_0 = a0_0 | (a0_1 << 8) | (a0_2 << 16) | (a0_3 << 24);
  339.  * *R_NETWORK_SA_1 = a0_4 | (a0_5 << 8);
  340.  */
  341. *R_NETWORK_SA_0 = dev->dev_addr[0] | (dev->dev_addr[1] << 8) |
  342. (dev->dev_addr[2] << 16) | (dev->dev_addr[3] << 24);
  343. *R_NETWORK_SA_1 = dev->dev_addr[4] | (dev->dev_addr[5] << 8);
  344. *R_NETWORK_SA_2 = 0;
  345. /* show it in the log as well */
  346. printk("%s: changed MAC to ", dev->name);
  347. for (i = 0; i < 5; i++)
  348. printk("%02X:", dev->dev_addr[i]);
  349. printk("%02Xn", dev->dev_addr[i]);
  350. return 0;
  351. }
  352. /*
  353.  * Open/initialize the board. This is called (in the current kernel)
  354.  * sometime after booting when the 'ifconfig' program is run.
  355.  *
  356.  * This routine should set everything up anew at each open, even
  357.  * registers that "should" only need to be set once at boot, so that
  358.  * there is non-reboot way to recover if something goes wrong.
  359.  */
  360. static int
  361. e100_open(struct net_device *dev)
  362. {
  363. unsigned long flags;
  364. /* disable the ethernet interface while we configure it */
  365. *R_NETWORK_GEN_CONFIG =
  366. IO_STATE(R_NETWORK_GEN_CONFIG, phy,    mii_clk) |
  367. IO_STATE(R_NETWORK_GEN_CONFIG, enable, off);
  368. /* enable the MDIO output pin */
  369. *R_NETWORK_MGM_CTRL = IO_STATE(R_NETWORK_MGM_CTRL, mdoe, enable);
  370. *R_IRQ_MASK0_CLR =
  371. IO_STATE(R_IRQ_MASK0_CLR, overrun, clr) |
  372. IO_STATE(R_IRQ_MASK0_CLR, underrun, clr) |
  373. IO_STATE(R_IRQ_MASK0_CLR, excessive_col, clr);
  374. /* clear dma0 and 1 eop and descr irq masks */
  375. *R_IRQ_MASK2_CLR =
  376. IO_STATE(R_IRQ_MASK2_CLR, dma0_descr, clr) |
  377. IO_STATE(R_IRQ_MASK2_CLR, dma0_eop, clr) |
  378. IO_STATE(R_IRQ_MASK2_CLR, dma1_descr, clr) |
  379. IO_STATE(R_IRQ_MASK2_CLR, dma1_eop, clr);
  380. /* Reset and wait for the DMA channels */
  381. RESET_DMA(NETWORK_TX_DMA_NBR);
  382. RESET_DMA(NETWORK_RX_DMA_NBR);
  383. WAIT_DMA(NETWORK_TX_DMA_NBR);
  384. WAIT_DMA(NETWORK_RX_DMA_NBR);
  385. /* Initialise the etrax network controller */
  386. /* allocate the irq corresponding to the receiving DMA */
  387. if (request_irq(NETWORK_DMA_RX_IRQ_NBR, e100rx_interrupt, 0,
  388. cardname, (void *)dev)) {
  389. goto grace_exit0;
  390. }
  391. /* allocate the irq corresponding to the transmitting DMA */
  392. if (request_irq(NETWORK_DMA_TX_IRQ_NBR, e100tx_interrupt, 0,
  393. cardname, (void *)dev)) {
  394. goto grace_exit1;
  395. }
  396. /* allocate the irq corresponding to the network errors etc */
  397. if (request_irq(NETWORK_STATUS_IRQ_NBR, e100nw_interrupt, 0,
  398. cardname, (void *)dev)) {
  399. goto grace_exit2;
  400. }
  401. /*
  402.  * Always allocate the DMA channels after the IRQ,
  403.  * and clean up on failure.
  404.  */
  405. if (request_dma(NETWORK_TX_DMA_NBR, cardname)) {
  406. goto grace_exit3;
  407. }
  408. if (request_dma(NETWORK_RX_DMA_NBR, cardname)) {
  409. goto grace_exit4;
  410. }
  411. /* give the HW an idea of what MAC address we want */
  412. *R_NETWORK_SA_0 = dev->dev_addr[0] | (dev->dev_addr[1] << 8) |
  413. (dev->dev_addr[2] << 16) | (dev->dev_addr[3] << 24);
  414. *R_NETWORK_SA_1 = dev->dev_addr[4] | (dev->dev_addr[5] << 8);
  415. *R_NETWORK_SA_2 = 0;
  416. #if 0
  417. /* use promiscuous mode for testing */
  418. *R_NETWORK_GA_0 = 0xffffffff;
  419. *R_NETWORK_GA_1 = 0xffffffff;
  420. *R_NETWORK_REC_CONFIG = 0xd; /* broadcast rec, individ. rec, ma0 enabled */
  421. #else
  422. SETS(network_rec_config_shadow, R_NETWORK_REC_CONFIG, broadcast, receive);
  423. SETS(network_rec_config_shadow, R_NETWORK_REC_CONFIG, ma0, enable);
  424. SETF(network_rec_config_shadow, R_NETWORK_REC_CONFIG, duplex, full_duplex);
  425. *R_NETWORK_REC_CONFIG = network_rec_config_shadow;
  426. #endif
  427. *R_NETWORK_GEN_CONFIG =
  428. IO_STATE(R_NETWORK_GEN_CONFIG, phy,    mii_clk) |
  429. IO_STATE(R_NETWORK_GEN_CONFIG, enable, on);
  430.         *R_NETWORK_TR_CTRL = 
  431.                 IO_STATE(R_NETWORK_TR_CTRL, clr_error, clr) |
  432.                 IO_STATE(R_NETWORK_TR_CTRL, delay, none) |
  433.                 IO_STATE(R_NETWORK_TR_CTRL, cancel, dont) |
  434.                 IO_STATE(R_NETWORK_TR_CTRL, cd, enable) |
  435.                 IO_STATE(R_NETWORK_TR_CTRL, retry, enable) |
  436.                 IO_STATE(R_NETWORK_TR_CTRL, pad, enable) |
  437.                 IO_STATE(R_NETWORK_TR_CTRL, crc, enable);
  438. save_flags(flags);
  439. cli();
  440. /* enable the irq's for ethernet DMA */
  441. *R_IRQ_MASK2_SET =
  442. IO_STATE(R_IRQ_MASK2_SET, dma0_eop, set) |
  443. IO_STATE(R_IRQ_MASK2_SET, dma1_eop, set);
  444. *R_IRQ_MASK0_SET =
  445. IO_STATE(R_IRQ_MASK0_SET, overrun,       set) |
  446. IO_STATE(R_IRQ_MASK0_SET, underrun,      set) |
  447. IO_STATE(R_IRQ_MASK0_SET, excessive_col, set);
  448. tx_skb = 0;
  449. /* make sure the irqs are cleared */
  450. *R_DMA_CH0_CLR_INTR = IO_STATE(R_DMA_CH0_CLR_INTR, clr_eop, do);
  451. *R_DMA_CH1_CLR_INTR = IO_STATE(R_DMA_CH1_CLR_INTR, clr_eop, do);
  452. /* make sure the rec and transmit error counters are cleared */
  453. (void)*R_REC_COUNTERS;  /* dummy read */
  454. (void)*R_TR_COUNTERS;   /* dummy read */
  455. /* start the receiving DMA channel so we can receive packets from now on */
  456. *R_DMA_CH1_FIRST = virt_to_phys(myNextRxDesc);
  457. *R_DMA_CH1_CMD = IO_STATE(R_DMA_CH1_CMD, cmd, start);
  458. restore_flags(flags);
  459. /* We are now ready to accept transmit requeusts from
  460.  * the queueing layer of the networking.
  461.  */
  462. netif_start_queue(dev);
  463. return 0;
  464. grace_exit4:
  465. free_dma(NETWORK_TX_DMA_NBR);
  466. grace_exit3:
  467. free_irq(NETWORK_STATUS_IRQ_NBR, (void *)dev);
  468. grace_exit2:
  469. free_irq(NETWORK_DMA_TX_IRQ_NBR, (void *)dev);
  470. grace_exit1:
  471. free_irq(NETWORK_DMA_RX_IRQ_NBR, (void *)dev);
  472. grace_exit0:
  473. return -EAGAIN;
  474. }
  475. static void
  476. e100_check_speed(unsigned long dummy)
  477. {
  478. unsigned long data;
  479. int old_speed = current_speed;
  480. data = e100_get_mdio_reg(MDIO_BASE_STATUS_REG);
  481. if (!(data & MDIO_LINK_UP_MASK)) {
  482. current_speed = 0;
  483. } else {
  484. data = e100_get_mdio_reg(MDIO_AUX_CTRL_STATUS_REG);
  485. current_speed = (data & MDIO_SPEED ? 100 : 10);
  486. }
  487. if (old_speed != current_speed)
  488. e100_set_network_leds(NO_NETWORK_ACTIVITY);
  489. /* Reinitialize the timer. */
  490. speed_timer.expires = jiffies + NET_LINK_UP_CHECK_INTERVAL;
  491. add_timer(&speed_timer);
  492. }
  493. static void
  494. e100_negotiate(void)
  495. {
  496. unsigned short cmd;
  497. unsigned short data = e100_get_mdio_reg(MDIO_ADVERTISMENT_REG);
  498. int bitCounter;
  499. /* Discard old speed and duplex settings */
  500. data &= ~(MDIO_ADVERT_100_HD | MDIO_ADVERT_100_FD | 
  501.           MDIO_ADVERT_10_FD | MDIO_ADVERT_10_HD);
  502.   
  503. switch (current_speed_selection) {
  504. case 10 :
  505. if (current_duplex == full)
  506. data |= MDIO_ADVERT_10_FD;
  507. else if (current_duplex == half)
  508. data |= MDIO_ADVERT_10_HD;
  509. else
  510. data |= MDIO_ADVERT_10_HD |  MDIO_ADVERT_10_FD;
  511. break;
  512. case 100 :
  513.  if (current_duplex == full)
  514. data |= MDIO_ADVERT_100_FD;
  515. else if (current_duplex == half)
  516. data |= MDIO_ADVERT_100_HD;
  517. else
  518. data |= MDIO_ADVERT_100_HD |  MDIO_ADVERT_100_FD;
  519. break;
  520. case 0 : /* Auto */
  521.  if (current_duplex == full)
  522. data |= MDIO_ADVERT_100_FD | MDIO_ADVERT_10_FD;
  523. else if (current_duplex == half)
  524. data |= MDIO_ADVERT_100_HD | MDIO_ADVERT_10_HD;
  525. else
  526. data |= MDIO_ADVERT_100_HD | MDIO_ADVERT_100_FD | MDIO_ADVERT_10_FD | MDIO_ADVERT_10_HD;
  527. break;
  528. default : /* assume autoneg speed and duplex */
  529. data |= MDIO_ADVERT_100_HD | MDIO_ADVERT_100_FD | 
  530.         MDIO_ADVERT_10_FD | MDIO_ADVERT_10_HD;
  531. }
  532. cmd = (MDIO_START << 14) | (MDIO_WRITE << 12) | (MDIO_PHYS_ADDR << 7) |
  533.       (MDIO_ADVERTISMENT_REG<< 2);
  534. e100_send_mdio_cmd(cmd, 1);
  535. /* Data... */
  536. for (bitCounter=15; bitCounter>=0 ; bitCounter--) {
  537. e100_send_mdio_bit(GET_BIT(bitCounter, data));
  538. }
  539. /* Renegotiate with link partner */
  540. data = e100_get_mdio_reg(MDIO_BASE_CONTROL_REG);
  541. data |= MDIO_BC_NEGOTIATE;
  542. cmd = (MDIO_START << 14) | (MDIO_WRITE << 12) | (MDIO_PHYS_ADDR << 7) |
  543.       (MDIO_BASE_CONTROL_REG<< 2);
  544. e100_send_mdio_cmd(cmd, 1);
  545. /* Data... */
  546. for (bitCounter=15; bitCounter>=0 ; bitCounter--) {
  547. e100_send_mdio_bit(GET_BIT(bitCounter, data));
  548. }  
  549. }
  550. static void
  551. e100_set_speed(unsigned long speed)
  552. {
  553. current_speed_selection = speed;
  554. e100_negotiate();
  555. }
  556. static void
  557. e100_check_duplex(unsigned long dummy)
  558. {
  559. unsigned long data;
  560. data = e100_get_mdio_reg(MDIO_AUX_CTRL_STATUS_REG);
  561.         
  562. if (data & MDIO_FULL_DUPLEX_IND) {
  563. if (!full_duplex) { /* Duplex changed to full? */
  564. full_duplex = 1;
  565. SETF(network_rec_config_shadow, R_NETWORK_REC_CONFIG, duplex, full_duplex);
  566. *R_NETWORK_REC_CONFIG = network_rec_config_shadow;
  567. }
  568. } else { /* half */
  569. if (full_duplex) { /* Duplex changed to half? */
  570. full_duplex = 0;
  571. SETF(network_rec_config_shadow, R_NETWORK_REC_CONFIG, duplex, full_duplex);
  572. *R_NETWORK_REC_CONFIG = network_rec_config_shadow;
  573. }
  574. }
  575. /* Reinitialize the timer. */
  576. duplex_timer.expires = jiffies + NET_DUPLEX_CHECK_INTERVAL;
  577. add_timer(&duplex_timer);
  578. }
  579. static void 
  580. e100_set_duplex(enum duplex new_duplex)
  581. {
  582. current_duplex = new_duplex;
  583. e100_negotiate();
  584. }
  585. static unsigned short
  586. e100_get_mdio_reg(unsigned char reg_num)
  587. {
  588. unsigned short cmd;    /* Data to be sent on MDIO port */
  589. unsigned short data;   /* Data read from MDIO */
  590. int bitCounter;
  591. /* Start of frame, OP Code, Physical Address, Register Address */
  592. cmd = (MDIO_START << 14) | (MDIO_READ << 12) | (MDIO_PHYS_ADDR << 7) |
  593. (reg_num << 2);
  594. e100_send_mdio_cmd(cmd, 0);
  595. data = 0;
  596. /* Data... */
  597. for (bitCounter=15; bitCounter>=0 ; bitCounter--) {
  598. data |= (e100_receive_mdio_bit() << bitCounter);
  599. }
  600. return data;
  601. }
  602. static void
  603. e100_send_mdio_cmd(unsigned short cmd, int write_cmd)
  604. {
  605. int bitCounter;
  606. unsigned char data = 0x2;
  607. /* Preamble */
  608. for (bitCounter = 31; bitCounter>= 0; bitCounter--)
  609. e100_send_mdio_bit(GET_BIT(bitCounter, MDIO_PREAMBLE));
  610. for (bitCounter = 15; bitCounter >= 2; bitCounter--)
  611. e100_send_mdio_bit(GET_BIT(bitCounter, cmd));
  612. /* Turnaround */
  613. for (bitCounter = 1; bitCounter >= 0 ; bitCounter--)
  614. if (write_cmd)
  615. e100_send_mdio_bit(GET_BIT(bitCounter, data));
  616. else
  617. e100_receive_mdio_bit();
  618. }
  619. static void
  620. e100_send_mdio_bit(unsigned char bit)
  621. {
  622. *R_NETWORK_MGM_CTRL =
  623. IO_STATE(R_NETWORK_MGM_CTRL, mdoe, enable) |
  624. IO_FIELD(R_NETWORK_MGM_CTRL, mdio, bit);
  625. udelay(1);
  626. *R_NETWORK_MGM_CTRL =
  627. IO_STATE(R_NETWORK_MGM_CTRL, mdoe, enable) |
  628. IO_MASK(R_NETWORK_MGM_CTRL, mdck) |
  629. IO_FIELD(R_NETWORK_MGM_CTRL, mdio, bit);
  630. udelay(1);
  631. }
  632. static unsigned char
  633. e100_receive_mdio_bit()
  634. {
  635. unsigned char bit;
  636. *R_NETWORK_MGM_CTRL = 0;
  637. bit = IO_EXTRACT(R_NETWORK_STAT, mdio, *R_NETWORK_STAT);
  638. udelay(1);
  639. *R_NETWORK_MGM_CTRL = IO_MASK(R_NETWORK_MGM_CTRL, mdck);
  640. udelay(1);
  641. return bit;
  642. }
  643. static void 
  644. e100_reset_tranceiver(void)
  645. {
  646. unsigned short cmd;
  647. unsigned short data;
  648. int bitCounter;
  649. data = e100_get_mdio_reg(MDIO_BASE_CONTROL_REG);
  650. cmd = (MDIO_START << 14) | (MDIO_WRITE << 12) | (MDIO_PHYS_ADDR << 7) | (MDIO_BASE_CONTROL_REG << 2);
  651. e100_send_mdio_cmd(cmd, 1);
  652. data |= 0x8000;
  653. for (bitCounter = 15; bitCounter >= 0 ; bitCounter--) {
  654. e100_send_mdio_bit(GET_BIT(bitCounter, data));
  655. }
  656. }
  657. /* Called by upper layers if they decide it took too long to complete
  658.  * sending a packet - we need to reset and stuff.
  659.  */
  660. static void
  661. e100_tx_timeout(struct net_device *dev)
  662. {
  663. struct net_local *np = (struct net_local *)dev->priv;
  664. printk(KERN_WARNING "%s: transmit timed out, %s?n", dev->name,
  665.        tx_done(dev) ? "IRQ problem" : "network cable problem");
  666. /* remember we got an error */
  667. np->stats.tx_errors++; 
  668. /* reset the TX DMA in case it has hung on something */
  669. RESET_DMA(NETWORK_TX_DMA_NBR);
  670. WAIT_DMA(NETWORK_TX_DMA_NBR);
  671. /* Reset the tranceiver. */
  672. e100_reset_tranceiver();
  673. /* and get rid of the packet that never got an interrupt */
  674. dev_kfree_skb(tx_skb);
  675. tx_skb = 0;
  676. /* tell the upper layers we're ok again */
  677. netif_wake_queue(dev);
  678. }
  679. /* This will only be invoked if the driver is _not_ in XOFF state.
  680.  * What this means is that we need not check it, and that this
  681.  * invariant will hold if we make sure that the netif_*_queue()
  682.  * calls are done at the proper times.
  683.  */
  684. static int
  685. e100_send_packet(struct sk_buff *skb, struct net_device *dev)
  686. {
  687. struct net_local *np = (struct net_local *)dev->priv;
  688. int length = ETH_ZLEN < skb->len ? skb->len : ETH_ZLEN;
  689. unsigned char *buf = skb->data;
  690. #ifdef ETHDEBUG
  691. printk("send packet len %dn", length);
  692. #endif
  693. spin_lock_irq(&np->lock);  /* protect from tx_interrupt */
  694. tx_skb = skb; /* remember it so we can free it in the tx irq handler later */
  695. dev->trans_start = jiffies;
  696. e100_hardware_send_packet(buf, length);
  697. /* this simple TX driver has only one send-descriptor so we're full
  698.  * directly. If this had a send-ring instead, we would only do this if
  699.  * the ring got full.
  700.  */
  701. netif_stop_queue(dev);
  702. spin_unlock_irq(&np->lock);
  703. return 0;
  704. }
  705. /*
  706.  * The typical workload of the driver:
  707.  *   Handle the network interface interrupts.
  708.  */
  709. static void
  710. e100rx_interrupt(int irq, void *dev_id, struct pt_regs * regs)
  711. {
  712. struct net_device *dev = (struct net_device *)dev_id;
  713. unsigned long irqbits = *R_IRQ_MASK2_RD;
  714.  
  715. if (irqbits & IO_STATE(R_IRQ_MASK2_RD, dma1_eop, active)) {
  716. /* acknowledge the eop interrupt */
  717. *R_DMA_CH1_CLR_INTR = IO_STATE(R_DMA_CH1_CLR_INTR, clr_eop, do);
  718. /* check if one or more complete packets were indeed received */
  719. while (*R_DMA_CH1_FIRST != virt_to_phys(myNextRxDesc)) {
  720. /* Take out the buffer and give it to the OS, then
  721.  * allocate a new buffer to put a packet in.
  722.  */
  723. e100_rx(dev);
  724. ((struct net_local *)dev->priv)->stats.rx_packets++;
  725. /* restart/continue on the channel, for safety */
  726. *R_DMA_CH1_CMD = IO_STATE(R_DMA_CH1_CMD, cmd, restart);
  727. /* clear dma channel 1 eop/descr irq bits */
  728. *R_DMA_CH1_CLR_INTR =
  729. IO_STATE(R_DMA_CH1_CLR_INTR, clr_eop, do) |
  730. IO_STATE(R_DMA_CH1_CLR_INTR, clr_descr, do);
  731. /* now, we might have gotten another packet
  732.    so we have to loop back and check if so */
  733. }
  734. }
  735. }
  736. /* the transmit dma channel interrupt
  737.  *
  738.  * this is supposed to free the skbuff which was pending during transmission,
  739.  * and inform the kernel that we can send one more buffer
  740.  */
  741. static void
  742. e100tx_interrupt(int irq, void *dev_id, struct pt_regs * regs)
  743. {
  744. struct net_device *dev = (struct net_device *)dev_id;
  745. unsigned long irqbits = *R_IRQ_MASK2_RD;
  746. struct net_local *np = (struct net_local *)dev->priv;
  747. /* check for a dma0_eop interrupt */
  748. if (irqbits & IO_STATE(R_IRQ_MASK2_RD, dma0_eop, active)) { 
  749. /* This protects us from concurrent execution of
  750.  * our dev->hard_start_xmit function above.
  751.  */
  752. spin_lock(&np->lock);
  753. /* acknowledge the eop interrupt */
  754. *R_DMA_CH0_CLR_INTR = IO_STATE(R_DMA_CH0_CLR_INTR, clr_eop, do);
  755. if (*R_DMA_CH0_FIRST == 0 && tx_skb) {
  756. np->stats.tx_bytes += tx_skb->len;
  757. np->stats.tx_packets++;
  758. /* dma is ready with the transmission of the data in tx_skb, so now
  759.    we can release the skb memory */
  760. dev_kfree_skb_irq(tx_skb);
  761. tx_skb = 0;
  762. netif_wake_queue(dev);
  763. } else {
  764. printk(KERN_WARNING "%s: tx weird interruptn",
  765.        cardname);
  766. }
  767. spin_unlock(&np->lock);
  768. }
  769. }
  770. static void
  771. e100nw_interrupt(int irq, void *dev_id, struct pt_regs * regs)
  772. {
  773. struct net_device *dev = (struct net_device *)dev_id;
  774. struct net_local *np = (struct net_local *)dev->priv;
  775. unsigned long irqbits = *R_IRQ_MASK0_RD;
  776. /* check for underrun irq */
  777. if (irqbits & IO_STATE(R_IRQ_MASK0_RD, underrun, active)) { 
  778. *R_NETWORK_TR_CTRL = IO_STATE(R_NETWORK_TR_CTRL, clr_error, clr);
  779. np->stats.tx_errors++;
  780. D(printk("ethernet receiver underrun!n"));
  781. }
  782. /* check for overrun irq */
  783. if (irqbits & IO_STATE(R_IRQ_MASK0_RD, overrun, active)) { 
  784. update_rx_stats(&np->stats); /* this will ack the irq */
  785. D(printk("ethernet receiver overrun!n"));
  786. }
  787. /* check for excessive collision irq */
  788. if (irqbits & IO_STATE(R_IRQ_MASK0_RD, excessive_col, active)) { 
  789. *R_NETWORK_TR_CTRL = IO_STATE(R_NETWORK_TR_CTRL, clr_error, clr);
  790. np->stats.tx_errors++;
  791. D(printk("ethernet excessive collisions!n"));
  792. }
  793. }
  794. /* We have a good packet(s), get it/them out of the buffers. */
  795. static void
  796. e100_rx(struct net_device *dev)
  797. {
  798. struct sk_buff *skb;
  799. int length = 0;
  800. struct net_local *np = (struct net_local *)dev->priv;
  801. struct etrax_dma_descr *mySaveRxDesc = myNextRxDesc;
  802. unsigned char *skb_data_ptr;
  803. #ifdef ETHDEBUG
  804. int i;
  805. #endif
  806. if (!led_active && jiffies > led_next_time) {
  807. /* light the network leds depending on the current speed. */
  808. e100_set_network_leds(NETWORK_ACTIVITY);
  809. /* Set the earliest time we may clear the LED */
  810. led_next_time = jiffies + NET_FLASH_TIME;
  811. led_active = 1;
  812. mod_timer(&clear_led_timer, jiffies + HZ/10);
  813. }
  814. /* If the packet is broken down in many small packages then merge
  815.  * count how much space we will need to alloc with skb_alloc() for
  816.  * it to fit.
  817.  */
  818. while (!(myNextRxDesc->status & d_eop)) {
  819. length += myNextRxDesc->sw_len; /* use sw_len for the first descs */
  820. myNextRxDesc->status = 0;
  821. myNextRxDesc = phys_to_virt(myNextRxDesc->next);
  822. }
  823. length += myNextRxDesc->hw_len; /* use hw_len for the last descr */
  824. ((struct net_local *)dev->priv)->stats.rx_bytes += length;
  825. #ifdef ETHDEBUG
  826. printk("Got a packet of length %d:n", length);
  827. /* dump the first bytes in the packet */
  828. skb_data_ptr = (unsigned char *)phys_to_virt(mySaveRxDesc->buf);
  829. for (i = 0; i < 8; i++) {
  830. printk("%d: %.2x %.2x %.2x %.2x %.2x %.2x %.2x %.2xn", i * 8,
  831.        skb_data_ptr[0],skb_data_ptr[1],skb_data_ptr[2],skb_data_ptr[3],
  832.        skb_data_ptr[4],skb_data_ptr[5],skb_data_ptr[6],skb_data_ptr[7]);
  833. skb_data_ptr += 8;
  834. }
  835. #endif
  836. skb = dev_alloc_skb(length - ETHER_HEAD_LEN);
  837. if (!skb) {
  838. np->stats.rx_errors++;
  839. printk(KERN_NOTICE "%s: Memory squeeze, dropping packet.n",
  840.        dev->name);
  841. return;
  842. }
  843. skb_put(skb, length - ETHER_HEAD_LEN);        /* allocate room for the packet body */
  844. skb_data_ptr = skb_push(skb, ETHER_HEAD_LEN); /* allocate room for the header */
  845. #ifdef ETHDEBUG
  846. printk("head = 0x%x, data = 0x%x, tail = 0x%x, end = 0x%xn",
  847.        skb->head, skb->data, skb->tail, skb->end);
  848. printk("copying packet to 0x%x.n", skb_data_ptr);
  849. #endif
  850. /* this loop can be made using max two memcpy's if optimized */
  851. while (mySaveRxDesc != myNextRxDesc) {
  852. memcpy(skb_data_ptr, phys_to_virt(mySaveRxDesc->buf),
  853.        mySaveRxDesc->sw_len);
  854. skb_data_ptr += mySaveRxDesc->sw_len;
  855. mySaveRxDesc = phys_to_virt(mySaveRxDesc->next);
  856. }
  857. memcpy(skb_data_ptr, phys_to_virt(mySaveRxDesc->buf),
  858.        mySaveRxDesc->hw_len);
  859. skb->dev = dev;
  860. skb->protocol = eth_type_trans(skb, dev);
  861. /* Send the packet to the upper layers */
  862. netif_rx(skb);
  863. /* Prepare for next packet */
  864. myNextRxDesc->status = 0;
  865. myPrevRxDesc = myNextRxDesc;
  866. myNextRxDesc = phys_to_virt(myNextRxDesc->next);
  867. myPrevRxDesc->ctrl |= d_eol;
  868. myLastRxDesc->ctrl &= ~d_eol;
  869. myLastRxDesc = myPrevRxDesc;
  870. return;
  871. }
  872. /* The inverse routine to net_open(). */
  873. static int
  874. e100_close(struct net_device *dev)
  875. {
  876. struct net_local *np = (struct net_local *)dev->priv;
  877. printk("Closing %s.n", dev->name);
  878. netif_stop_queue(dev);
  879. *R_NETWORK_GEN_CONFIG =
  880. IO_STATE(R_NETWORK_GEN_CONFIG, phy,    mii_clk) |
  881. IO_STATE(R_NETWORK_GEN_CONFIG, enable, off);
  882. *R_IRQ_MASK0_CLR =
  883. IO_STATE(R_IRQ_MASK0_CLR, overrun, clr) |
  884. IO_STATE(R_IRQ_MASK0_CLR, underrun, clr) |
  885. IO_STATE(R_IRQ_MASK0_CLR, excessive_col, clr);
  886. *R_IRQ_MASK2_CLR =
  887. IO_STATE(R_IRQ_MASK2_CLR, dma0_descr, clr) |
  888. IO_STATE(R_IRQ_MASK2_CLR, dma0_eop, clr) |
  889. IO_STATE(R_IRQ_MASK2_CLR, dma1_descr, clr) |
  890. IO_STATE(R_IRQ_MASK2_CLR, dma1_eop, clr);
  891. /* Stop the receiver and the transmitter */
  892. RESET_DMA(NETWORK_TX_DMA_NBR);
  893. RESET_DMA(NETWORK_RX_DMA_NBR);
  894. /* Flush the Tx and disable Rx here. */
  895. free_irq(NETWORK_DMA_RX_IRQ_NBR, (void *)dev);
  896. free_irq(NETWORK_DMA_TX_IRQ_NBR, (void *)dev);
  897. free_irq(NETWORK_STATUS_IRQ_NBR, (void *)dev);
  898. free_dma(NETWORK_TX_DMA_NBR);
  899. free_dma(NETWORK_RX_DMA_NBR);
  900. /* Update the statistics here. */
  901. update_rx_stats(&np->stats);
  902. update_tx_stats(&np->stats);
  903. return 0;
  904. }
  905. static int
  906. e100_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
  907. {
  908. /* Maybe default should return -EINVAL instead? */
  909. switch (cmd) {
  910. case SET_ETH_SPEED_10:                  /* 10 Mbps */
  911. e100_set_speed(10);
  912. break;
  913. case SET_ETH_SPEED_100:                /* 100 Mbps */
  914. e100_set_speed(100);
  915. break;
  916. case SET_ETH_SPEED_AUTO:              /* Auto negotiate speed */
  917. e100_set_speed(0);
  918. break;
  919. case SET_ETH_DUPLEX_HALF:              /* Hhalf duplex. */
  920. e100_set_duplex(half);
  921. break;
  922. case SET_ETH_DUPLEX_FULL:              /* Full duplex. */
  923. e100_set_duplex(full);
  924. break;
  925. case SET_ETH_DUPLEX_AUTO:             /* Autonegotiate duplex*/
  926. e100_set_duplex(autoneg);
  927. break;
  928. default: /* Auto neg */
  929. e100_set_speed(0);
  930. e100_set_duplex(autoneg);
  931. break;
  932. }
  933. return 0;
  934. }
  935. static void
  936. update_rx_stats(struct net_device_stats *es)
  937. {
  938. unsigned long r = *R_REC_COUNTERS;
  939. /* update stats relevant to reception errors */
  940. es->rx_fifo_errors += IO_EXTRACT(R_REC_COUNTERS, congestion, r);
  941. es->rx_crc_errors += IO_EXTRACT(R_REC_COUNTERS, crc_error, r);
  942. es->rx_frame_errors += IO_EXTRACT(R_REC_COUNTERS, alignment_error, r);
  943. es->rx_length_errors += IO_EXTRACT(R_REC_COUNTERS, oversize, r);
  944. }
  945. static void
  946. update_tx_stats(struct net_device_stats *es)
  947. {
  948. unsigned long r = *R_TR_COUNTERS;
  949. /* update stats relevant to transmission errors */
  950. es->collisions +=
  951. IO_EXTRACT(R_TR_COUNTERS, single_col, r) +
  952. IO_EXTRACT(R_TR_COUNTERS, multiple_col, r);
  953. es->tx_errors += IO_EXTRACT(R_TR_COUNTERS, deferred, r);
  954. }
  955. /*
  956.  * Get the current statistics.
  957.  * This may be called with the card open or closed.
  958.  */
  959. static struct net_device_stats *
  960. e100_get_stats(struct net_device *dev)
  961. {
  962. struct net_local *lp = (struct net_local *)dev->priv;
  963. update_rx_stats(&lp->stats);
  964. update_tx_stats(&lp->stats);
  965. return &lp->stats;
  966. }
  967. /*
  968.  * Set or clear the multicast filter for this adaptor.
  969.  * num_addrs == -1 Promiscuous mode, receive all packets
  970.  * num_addrs == 0 Normal mode, clear multicast list
  971.  * num_addrs > 0 Multicast mode, receive normal and MC packets,
  972.  * and do best-effort filtering.
  973.  */
  974. static void
  975. set_multicast_list(struct net_device *dev)
  976. {
  977. int num_addr = dev->mc_count;
  978. unsigned long int lo_bits;
  979. unsigned long int hi_bits;
  980. if (dev->flags & IFF_PROMISC)
  981. {
  982. /* promiscuous mode */
  983. lo_bits = 0xfffffffful;
  984. hi_bits = 0xfffffffful;
  985. /* Enable individual receive */
  986. SETS(network_rec_config_shadow, R_NETWORK_REC_CONFIG, individual, receive);
  987. *R_NETWORK_REC_CONFIG = network_rec_config_shadow;
  988. } else if (dev->flags & IFF_ALLMULTI) {
  989. /* enable all multicasts */
  990. lo_bits = 0xfffffffful;
  991. hi_bits = 0xfffffffful;
  992. /* Disable individual receive */
  993. SETS(network_rec_config_shadow, R_NETWORK_REC_CONFIG, individual, discard);
  994. *R_NETWORK_REC_CONFIG =  network_rec_config_shadow;
  995. } else if (num_addr == 0) {
  996. /* Normal, clear the mc list */
  997. lo_bits = 0x00000000ul;
  998. hi_bits = 0x00000000ul;
  999. /* Disable individual receive */
  1000. SETS(network_rec_config_shadow, R_NETWORK_REC_CONFIG, individual, discard);
  1001. *R_NETWORK_REC_CONFIG =  network_rec_config_shadow;
  1002. } else {
  1003. /* MC mode, receive normal and MC packets */
  1004. char hash_ix;
  1005. struct dev_mc_list *dmi = dev->mc_list;
  1006. int i;
  1007. char *baddr;
  1008. lo_bits = 0x00000000ul;
  1009. hi_bits = 0x00000000ul;
  1010. for (i=0; i<num_addr; i++) {
  1011. /* Calculate the hash index for the GA registers */
  1012. hash_ix = 0;
  1013. baddr = dmi->dmi_addr;
  1014. hash_ix ^= (*baddr) & 0x3f;
  1015. hash_ix ^= ((*baddr) >> 6) & 0x03;
  1016. ++baddr;
  1017. hash_ix ^= ((*baddr) << 2) & 0x03c;
  1018. hash_ix ^= ((*baddr) >> 4) & 0xf;
  1019. ++baddr;
  1020. hash_ix ^= ((*baddr) << 4) & 0x30;
  1021. hash_ix ^= ((*baddr) >> 2) & 0x3f;
  1022. ++baddr;
  1023. hash_ix ^= (*baddr) & 0x3f;
  1024. hash_ix ^= ((*baddr) >> 6) & 0x03;
  1025. ++baddr;
  1026. hash_ix ^= ((*baddr) << 2) & 0x03c;
  1027. hash_ix ^= ((*baddr) >> 4) & 0xf;
  1028. ++baddr;
  1029. hash_ix ^= ((*baddr) << 4) & 0x30;
  1030. hash_ix ^= ((*baddr) >> 2) & 0x3f;
  1031. hash_ix &= 0x3f;
  1032. if (hash_ix > 32) {
  1033. hi_bits |= (1 << (hash_ix-32));
  1034. }
  1035. else {
  1036. lo_bits |= (1 << hash_ix);
  1037. }
  1038. dmi = dmi->next;
  1039. }
  1040. /* Disable individual receive */
  1041. SETS(network_rec_config_shadow, R_NETWORK_REC_CONFIG, individual, discard);
  1042. *R_NETWORK_REC_CONFIG = network_rec_config_shadow;
  1043. }
  1044. *R_NETWORK_GA_0 = lo_bits;
  1045. *R_NETWORK_GA_1 = hi_bits;
  1046. }
  1047. void
  1048. e100_hardware_send_packet(char *buf, int length)
  1049. {
  1050. D(printk("e100 send pack, buf 0x%x len %dn", buf, length));
  1051. if (!led_active && jiffies > led_next_time) {
  1052. /* light the network leds depending on the current speed. */
  1053. e100_set_network_leds(NETWORK_ACTIVITY);
  1054. /* Set the earliest time we may clear the LED */
  1055. led_next_time = jiffies + NET_FLASH_TIME;
  1056. led_active = 1;
  1057. mod_timer(&clear_led_timer, jiffies + HZ/10);
  1058. }
  1059. /* configure the tx dma descriptor */
  1060. TxDesc.sw_len = length;
  1061. TxDesc.ctrl = d_eop | d_eol | d_wait;
  1062. TxDesc.buf = virt_to_phys(buf);
  1063. /* setup the dma channel and start it */
  1064. *R_DMA_CH0_FIRST = virt_to_phys(&TxDesc);
  1065. *R_DMA_CH0_CMD = IO_STATE(R_DMA_CH0_CMD, cmd, start);
  1066. }
  1067. static void
  1068. e100_clear_network_leds(unsigned long dummy)
  1069. {
  1070. if (led_active && jiffies > led_next_time) {
  1071. e100_set_network_leds(NO_NETWORK_ACTIVITY);
  1072. /* Set the earliest time we may set the LED */
  1073. led_next_time = jiffies + NET_FLASH_PAUSE;
  1074. led_active = 0;
  1075. }
  1076. }
  1077. static void
  1078. e100_set_network_leds(int active)
  1079. {
  1080. #if defined(CONFIG_ETRAX_NETWORK_LED_ON_WHEN_LINK)
  1081. int light_leds = (active == NO_NETWORK_ACTIVITY);
  1082. #elif defined(CONFIG_ETRAX_NETWORK_LED_ON_WHEN_ACTIVITY)
  1083. int light_leds = (active == NETWORK_ACTIVITY);
  1084. #else
  1085. #error "Define either CONFIG_ETRAX_NETWORK_LED_ON_WHEN_LINK or CONFIG_ETRAX_NETWORK_LED_ON_WHEN_ACTIVITY"
  1086. #endif
  1087. if (!current_speed) {
  1088. /* Make LED red, link is down */
  1089. LED_NETWORK_SET(LED_RED);
  1090. }
  1091. else if (light_leds) {
  1092. if (current_speed == 10) {
  1093. LED_NETWORK_SET(LED_ORANGE);
  1094. } else {
  1095. LED_NETWORK_SET(LED_GREEN);
  1096. }
  1097. }
  1098. else {
  1099. LED_NETWORK_SET(LED_OFF);
  1100. }
  1101. }
  1102. static struct net_device dev_etrax_ethernet;  /* only got one */
  1103. static int
  1104. etrax_init_module(void)
  1105. {
  1106. struct net_device *d = &dev_etrax_ethernet;
  1107. d->init = etrax_ethernet_init;
  1108. if (register_netdev(d) == 0)
  1109. return 0;
  1110. else
  1111. return -ENODEV;
  1112. }
  1113. module_init(etrax_init_module);