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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* $Id$
  2.  * bagetlance.c: Ethernet driver for VME Lance cards on Baget/MIPS
  3.  *      This code stealed and adopted from linux/drivers/net/atarilance.c
  4.  *      See that for author info
  5.  *
  6.  * Copyright (C) 1998 Gleb Raiko & Vladimir Roganov
  7.  */
  8. /* 
  9.  * Driver code for Baget/Lance taken from atarilance.c, which also
  10.  * works well in case of Besta. Most significant changes made here
  11.  * related with 16BIT-only access to A24 space.
  12.  */
  13. static char *version = "bagetlance.c: v1.1 11/10/98n";
  14. #include <linux/module.h>
  15. #include <linux/stddef.h>
  16. #include <linux/kernel.h>
  17. #include <linux/sched.h>
  18. #include <linux/string.h>
  19. #include <linux/ptrace.h>
  20. #include <linux/errno.h>
  21. #include <linux/slab.h>
  22. #include <linux/interrupt.h>
  23. #include <linux/init.h>
  24. #include <asm/irq.h>
  25. #include <asm/bitops.h>
  26. #include <asm/io.h>
  27. #include <linux/netdevice.h>
  28. #include <linux/etherdevice.h>
  29. #include <linux/skbuff.h>
  30. #include <asm/baget/baget.h>
  31. #define BAGET_LANCE_IRQ  BAGET_IRQ_MASK(0xdf)
  32. /*
  33.  *  Define following if you don't need 16BIT-only access to Lance memory
  34.  *  (Normally BAGET needs it)
  35.  */
  36. #undef NORMAL_MEM_ACCESS 
  37. /* Debug level:
  38.  *  0 = silent, print only serious errors
  39.  *  1 = normal, print error messages
  40.  *  2 = debug, print debug infos
  41.  *  3 = debug, print even more debug infos (packet data)
  42.  */
  43. #define LANCE_DEBUG 1  
  44. #ifdef LANCE_DEBUG
  45. static int lance_debug = LANCE_DEBUG;
  46. #else
  47. static int lance_debug = 1;
  48. #endif
  49. MODULE_PARM(lance_debug, "i");
  50. MODULE_PARM_DESC(lance_debug, "Lance debug level (0-3)");
  51. MODULE_LICENSE("GPL");
  52. /* Print debug messages on probing? */
  53. #undef LANCE_DEBUG_PROBE
  54. #define DPRINTK(n,a)
  55. do {
  56. if (lance_debug >= n)
  57. printk a;
  58. } while( 0 )
  59. #ifdef LANCE_DEBUG_PROBE
  60. # define PROBE_PRINT(a) printk a
  61. #else
  62. # define PROBE_PRINT(a)
  63. #endif
  64. /* These define the number of Rx and Tx buffers as log2. (Only powers
  65.  * of two are valid)
  66.  * Much more rx buffers (32) are reserved than tx buffers (8), since receiving
  67.  * is more time critical then sending and packets may have to remain in the
  68.  * board's memory when main memory is low.
  69.  */
  70. /* Baget Lance has 64K on-board memory, so it looks we can't increase
  71.    buffer quantity (40*1.5K is about 64K) */
  72. #define TX_LOG_RING_SIZE 3
  73. #define RX_LOG_RING_SIZE 5
  74. /* These are the derived values */
  75. #define TX_RING_SIZE (1 << TX_LOG_RING_SIZE)
  76. #define TX_RING_LEN_BITS (TX_LOG_RING_SIZE << 5)
  77. #define TX_RING_MOD_MASK (TX_RING_SIZE - 1)
  78. #define RX_RING_SIZE (1 << RX_LOG_RING_SIZE)
  79. #define RX_RING_LEN_BITS (RX_LOG_RING_SIZE << 5)
  80. #define RX_RING_MOD_MASK (RX_RING_SIZE - 1)
  81. /* The LANCE Rx and Tx ring descriptors. */
  82. struct lance_rx_head {
  83. volatile unsigned short base; /* Low word of base addr */
  84. #ifdef NORMAL_MEM_ACCESS
  85.        /* Following two fields are joined into one short to guarantee
  86.   16BIT access to Baget lance registers */
  87. volatile unsigned char flag;
  88. unsigned char base_hi; /* High word of base addr (unused) */
  89. #else
  90. /* Following macros are used as replecements to 8BIT fields */
  91. #define GET_FLAG(h)    (((h)->flag_base_hi >> 8) & 0xff)
  92. #define SET_FLAG(h,f)  (h)->flag_base_hi = ((h)->flag_base_hi & 0xff) | 
  93.                                                 (((unsigned)(f)) << 8)
  94. volatile unsigned short flag_base_hi; 
  95. #endif
  96. volatile short buf_length; /* This length is 2s complement! */
  97. volatile short msg_length; /* This length is "normal". */
  98. };
  99. struct lance_tx_head {
  100. volatile unsigned short base; /* Low word of base addr */
  101. #ifdef NORMAL_MEM_ACCESS 
  102. /* See comments above about 8BIT-access Baget A24-space problems */
  103. volatile unsigned char flag;
  104. unsigned char base_hi; /* High word of base addr (unused) */
  105. #else
  106. volatile unsigned short  flag_base_hi;
  107. #endif
  108. volatile short length; /* Length is 2s complement! */
  109. volatile short misc;
  110. };
  111. struct ringdesc {
  112. volatile unsigned short adr_lo; /* Low 16 bits of address */
  113. #ifdef NORMAL_MEM_ACCESS 
  114. /* See comments above about 8BIT-access Bage A24-space problems */
  115. unsigned char len; /* Length bits */
  116. unsigned char adr_hi; /* High 8 bits of address (unused) */
  117. #else
  118. volatile unsigned short  len_adr_hi;
  119. #endif
  120. };
  121. /* The LANCE initialization block, described in databook. */
  122. struct lance_init_block {
  123. unsigned short mode; /* Pre-set mode */
  124. unsigned char hwaddr[6]; /* Physical ethernet address */
  125. unsigned filter[2]; /* Multicast filter (unused). */
  126. /* Receive and transmit ring base, along with length bits. */
  127. struct ringdesc rx_ring;
  128. struct ringdesc tx_ring;
  129. };
  130. /* The whole layout of the Lance shared memory */
  131. struct lance_memory {
  132. struct lance_init_block init;
  133. struct lance_tx_head tx_head[TX_RING_SIZE];
  134. struct lance_rx_head rx_head[RX_RING_SIZE];
  135. char packet_area[0]; /* packet data follow after the
  136.  * init block and the ring
  137.  * descriptors and are located
  138.  * at runtime */
  139. };
  140. /* RieblCard specifics:
  141.  * The original TOS driver for these cards reserves the area from offset
  142.  * 0xee70 to 0xeebb for storing configuration data. Of interest to us is the
  143.  * Ethernet address there, and the magic for verifying the data's validity.
  144.  * The reserved area isn't touch by packet buffers. Furthermore, offset 0xfffe
  145.  * is reserved for the interrupt vector number.
  146.  */
  147. #define RIEBL_RSVD_START 0xee70
  148. #define RIEBL_RSVD_END 0xeec0
  149. #define RIEBL_MAGIC 0x09051990
  150. #define RIEBL_MAGIC_ADDR ((unsigned long *)(((char *)MEM) + 0xee8a))
  151. #define RIEBL_HWADDR_ADDR ((unsigned char *)(((char *)MEM) + 0xee8e))
  152. #define RIEBL_IVEC_ADDR ((unsigned short *)(((char *)MEM) + 0xfffe))
  153. /* This is a default address for the old RieblCards without a battery
  154.  * that have no ethernet address at boot time. 00:00:36:04 is the
  155.  * prefix for Riebl cards, the 00:00 at the end is arbitrary.
  156.  */
  157. static unsigned char OldRieblDefHwaddr[6] = {
  158. 0x00, 0x00, 0x36, 0x04, 0x00, 0x00
  159. };
  160. /* I/O registers of the Lance chip */
  161. struct lance_ioreg {
  162. /* base+0x0 */ volatile unsigned short data;
  163. /* base+0x2 */ volatile unsigned short addr;
  164. unsigned char _dummy1[3];
  165. /* base+0x7 */ volatile unsigned char ivec;
  166. unsigned char _dummy2[5];
  167. /* base+0xd */ volatile unsigned char eeprom;
  168. unsigned char _dummy3;
  169. /* base+0xf */ volatile unsigned char mem;
  170. };
  171. /* Types of boards this driver supports */
  172. enum lance_type {
  173. OLD_RIEBL, /* old Riebl card without battery */
  174. NEW_RIEBL, /* new Riebl card with battery */
  175. PAM_CARD /* PAM card with EEPROM */
  176. };
  177. static char *lance_names[] = {
  178. "Riebl-Card (without battery)",
  179. "Riebl-Card (with battery)",
  180. "PAM intern card"
  181. };
  182. /* The driver's private device structure */
  183. struct lance_private {
  184. enum lance_type cardtype;
  185. struct lance_ioreg *iobase;
  186. struct lance_memory *mem;
  187. int cur_rx, cur_tx; /* The next free ring entry */
  188. int dirty_tx; /* Ring entries to be freed. */
  189. /* copy function */
  190. void *(*memcpy_f)( void *, const void *, size_t );
  191. struct net_device_stats stats;
  192. /* These two must be longs for set_bit() */
  193. long tx_full;
  194. long lock;
  195. };
  196. /* I/O register access macros */
  197. #define MEM lp->mem
  198. #define DREG IO->data
  199. #define AREG IO->addr
  200. #define REGA(a) ( AREG = (a), DREG )
  201. /* Definitions for packet buffer access: */
  202. #define PKT_BUF_SZ 1544
  203. /* Get the address of a packet buffer corresponding to a given buffer head */
  204. #define PKTBUF_ADDR(head) (((unsigned char *)(MEM)) + (head)->base)
  205. /* Possible memory/IO addresses for probing */
  206. struct lance_addr {
  207. unsigned long memaddr;
  208. unsigned long ioaddr;
  209. int slow_flag;
  210. } lance_addr_list[] = {
  211. { BAGET_LANCE_MEM_BASE, BAGET_LANCE_IO_BASE, 1 } /* Baget Lance */
  212. };
  213. #define N_LANCE_ADDR (sizeof(lance_addr_list)/sizeof(*lance_addr_list))
  214. #define LANCE_HI_BASE (0xff & (BAGET_LANCE_MEM_BASE >> 16))
  215. /* Definitions for the Lance */
  216. /* tx_head flags */
  217. #define TMD1_ENP 0x01 /* end of packet */
  218. #define TMD1_STP 0x02 /* start of packet */
  219. #define TMD1_DEF 0x04 /* deferred */
  220. #define TMD1_ONE 0x08 /* one retry needed */
  221. #define TMD1_MORE 0x10 /* more than one retry needed */
  222. #define TMD1_ERR 0x40 /* error summary */
  223. #define TMD1_OWN  0x80 /* ownership (set: chip owns) */
  224. #define TMD1_OWN_CHIP TMD1_OWN
  225. #define TMD1_OWN_HOST 0
  226. /* tx_head misc field */
  227. #define TMD3_TDR 0x03FF /* Time Domain Reflectometry counter */
  228. #define TMD3_RTRY 0x0400 /* failed after 16 retries */
  229. #define TMD3_LCAR 0x0800 /* carrier lost */
  230. #define TMD3_LCOL 0x1000 /* late collision */
  231. #define TMD3_UFLO 0x4000 /* underflow (late memory) */
  232. #define TMD3_BUFF 0x8000 /* buffering error (no ENP) */
  233. /* rx_head flags */
  234. #define RMD1_ENP 0x01 /* end of packet */
  235. #define RMD1_STP 0x02 /* start of packet */
  236. #define RMD1_BUFF 0x04 /* buffer error */
  237. #define RMD1_CRC 0x08 /* CRC error */
  238. #define RMD1_OFLO 0x10 /* overflow */
  239. #define RMD1_FRAM 0x20 /* framing error */
  240. #define RMD1_ERR 0x40 /* error summary */
  241. #define RMD1_OWN  0x80 /* ownership (set: ship owns) */
  242. #define RMD1_OWN_CHIP RMD1_OWN
  243. #define RMD1_OWN_HOST 0
  244. /* register names */
  245. #define CSR0 0 /* mode/status */
  246. #define CSR1 1 /* init block addr (low) */
  247. #define CSR2 2 /* init block addr (high) */
  248. #define CSR3 3 /* misc */
  249. #define CSR8 8    /* address filter */
  250. #define CSR15 15 /* promiscuous mode */
  251. /* CSR0 */
  252. /* (R=readable, W=writeable, S=set on write, C=clear on write) */
  253. #define CSR0_INIT 0x0001 /* initialize (RS) */
  254. #define CSR0_STRT 0x0002 /* start (RS) */
  255. #define CSR0_STOP 0x0004 /* stop (RS) */
  256. #define CSR0_TDMD 0x0008 /* transmit demand (RS) */
  257. #define CSR0_TXON 0x0010 /* transmitter on (R) */
  258. #define CSR0_RXON 0x0020 /* receiver on (R) */
  259. #define CSR0_INEA 0x0040 /* interrupt enable (RW) */
  260. #define CSR0_INTR 0x0080 /* interrupt active (R) */
  261. #define CSR0_IDON 0x0100 /* initialization done (RC) */
  262. #define CSR0_TINT 0x0200 /* transmitter interrupt (RC) */
  263. #define CSR0_RINT 0x0400 /* receiver interrupt (RC) */
  264. #define CSR0_MERR 0x0800 /* memory error (RC) */
  265. #define CSR0_MISS 0x1000 /* missed frame (RC) */
  266. #define CSR0_CERR 0x2000 /* carrier error (no heartbeat :-) (RC) */
  267. #define CSR0_BABL 0x4000 /* babble: tx-ed too many bits (RC) */
  268. #define CSR0_ERR 0x8000 /* error (RC) */
  269. /* CSR3 */
  270. #define CSR3_BCON 0x0001 /* byte control */
  271. #define CSR3_ACON 0 // fixme: 0x0002 /* ALE control */
  272. #define CSR3_BSWP 0x0004 /* byte swap (1=big endian) */
  273. /***************************** Prototypes *****************************/
  274. static int addr_accessible( volatile void *regp, int wordflag, int
  275.                             writeflag );
  276. static int lance_probe1( struct net_device *dev, struct lance_addr *init_rec );
  277. static int lance_open( struct net_device *dev );
  278. static void lance_init_ring( struct net_device *dev );
  279. static int lance_start_xmit( struct sk_buff *skb, struct net_device *dev );
  280. static void lance_interrupt( int irq, void *dev_id, struct pt_regs *fp );
  281. static int lance_rx( struct net_device *dev );
  282. static int lance_close( struct net_device *dev );
  283. static struct net_device_stats *lance_get_stats( struct net_device *dev );
  284. static void set_multicast_list( struct net_device *dev );
  285. static int lance_set_mac_address( struct net_device *dev, void *addr );
  286. /************************* End of Prototypes **************************/
  287. /* Network traffic statistic (bytes) */
  288. int lance_stat = 0;
  289. static void update_lance_stat (int len) {
  290. lance_stat += len;
  291. }
  292. /* 
  293.    This function is used to access Baget/Lance memory to avoid 
  294.    8/32BIT access to VAC A24 space 
  295.    ALL memcpy calls was chenged to this function to avoid dbe problems
  296.    Don't confuse with function name -- it stays from original code
  297. */
  298. void *slow_memcpy( void *dst, const void *src, size_t len )
  299. {
  300. unsigned long to     = (unsigned long)dst;
  301. unsigned long from   = (unsigned long)src;
  302. unsigned long to_end = to +len;
  303. /* Unaligned flags */
  304. int odd_from   = from   & 1;
  305. int odd_to     = to     & 1;
  306. int odd_to_end = to_end & 1;
  307. /* Align for 16BIT-access first */
  308. register unsigned short *from_a   = (unsigned short*) (from   & ~1);
  309. register unsigned short *to_a     = (unsigned short*) (to     & ~1); 
  310. register unsigned short *to_end_a = (unsigned short*) (to_end & ~1);
  311. /* Caching values -- not in loop invariant */
  312. register unsigned short from_v; 
  313. register unsigned short to_v;
  314. /* Invariant is: from_a and to_a are pointers before or exactly to
  315.    currently copying byte */
  316. if (odd_to) { 
  317. /* First byte unaligned case */
  318. from_v = *from_a;
  319. to_v   = *to_a;
  320. to_v &= ~0xff;
  321. to_v |=  0xff & (from_v >> (odd_from ? 0 : 8));
  322. *to_a++ = to_v;
  323. if (odd_from) from_a++;
  324. }
  325.     if (odd_from == odd_to) {
  326. /* Same parity */
  327. while (to_a + 7 < to_end_a) {
  328. unsigned long dummy1, dummy2;
  329. unsigned long reg1, reg2, reg3, reg4;
  330. __asm__ __volatile__(
  331. ".settnoreordernt"
  332. ".settnoatnt"
  333. "lht%2,0(%1)nt"
  334. "nopnt"
  335.  "lht%3,2(%1)nt"
  336. "sht%2,0(%0)nt"
  337.    "lht%4,4(%1)nt"
  338.  "sht%3,2(%0)nt"
  339.     "lht%5,6(%1)nt"
  340.    "sht%4,4(%0)nt"
  341. "lht%2,8(%1)nt"
  342.     "sht%5,6(%0)nt"
  343.  "lht%3,10(%1)nt"
  344. "sht%2,8(%0)nt"
  345.   "lht%4,12(%1)nt"
  346.  "sht%3,10(%0)nt"
  347.     "lht%5,14(%1)nt"
  348.   "sht%4,12(%0)nt"
  349.  "nopnt"
  350.     "sht%5,14(%0)nt"
  351. ".settatnt"
  352. ".settreorder"
  353. :"=r" (dummy1), "=r" (dummy2),
  354. "=&r" (reg1), "=&r" (reg2), "=&r" (reg3), "=&r" (reg4)
  355. :"0" (to_a), "1" (from_a)
  356. :"memory");
  357. to_a   += 8;
  358. from_a += 8;
  359. }
  360. while (to_a < to_end_a) {
  361. *to_a++ = *from_a++;
  362. }
  363. } else {
  364. /* Different parity */
  365. from_v = *from_a;
  366. while (to_a < to_end_a) {
  367. unsigned short from_v_next;
  368. from_v_next = *++from_a;
  369. *to_a++ = ((from_v & 0xff)<<8) | ((from_v_next>>8) & 0xff);
  370. from_v = from_v_next; 
  371. }
  372. }
  373. if (odd_to_end) {
  374. /* Last byte unaligned case */
  375. to_v = *to_a;
  376. from_v = *from_a;
  377. to_v &= ~0xff00;
  378. if (odd_from == odd_to) {
  379. to_v |= from_v & 0xff00;
  380. } else {
  381. to_v |= (from_v<<8) & 0xff00;
  382. }
  383. *to_a = to_v;
  384. }
  385. update_lance_stat( len );
  386. return( dst );
  387. }
  388. int __init bagetlance_probe( struct net_device *dev )
  389. { int i;
  390. static int found;
  391. SET_MODULE_OWNER(dev);
  392. if (found)
  393. /* Assume there's only one board possible... That seems true, since
  394.  * the Riebl/PAM board's address cannot be changed. */
  395. return( -ENODEV );
  396. for( i = 0; i < N_LANCE_ADDR; ++i ) {
  397. if (lance_probe1( dev, &lance_addr_list[i] )) {
  398. found = 1;
  399. return( 0 );
  400. }
  401. }
  402. return( -ENODEV );
  403. }
  404. /* Derived from hwreg_present() in vme/config.c: */
  405. static int __init addr_accessible( volatile void *regp, 
  406.    int wordflag, 
  407.    int writeflag )
  408. {
  409. /* We have a fine function to do it */
  410. extern int try_read(unsigned long, int);
  411. return try_read((unsigned long)regp, sizeof(short)) != -1;   
  412. }
  413. /* Original atari driver uses it */
  414. #define IRQ_TYPE_PRIO SA_INTERRUPT
  415. #define IRQ_SOURCE_TO_VECTOR(x) (x)
  416. static int __init lance_probe1( struct net_device *dev,
  417. struct lance_addr *init_rec )
  418. { volatile unsigned short *memaddr =
  419. (volatile unsigned short *)init_rec->memaddr;
  420. volatile unsigned short *ioaddr =
  421. (volatile unsigned short *)init_rec->ioaddr;
  422. struct lance_private *lp;
  423. struct lance_ioreg *IO;
  424. int  i;
  425. static int  did_version;
  426. unsigned short save1, save2;
  427. PROBE_PRINT(( "Probing for Lance card at mem %#lx io %#lxn",
  428.   (long)memaddr, (long)ioaddr ));
  429. /* Test whether memory readable and writable */
  430. PROBE_PRINT(( "lance_probe1: testing memory to be accessiblen" ));
  431. if (!addr_accessible( memaddr, 1, 1 )) goto probe_fail;
  432. if ((unsigned long)memaddr >= KSEG2) {
  433. extern int kseg2_alloc_io (unsigned long addr, unsigned long size);
  434. if (kseg2_alloc_io((unsigned long)memaddr, BAGET_LANCE_MEM_SIZE)) {
  435. printk("bagetlance: unable map lance memoryn");
  436. goto probe_fail;
  437. }
  438. }
  439. /* Written values should come back... */
  440. PROBE_PRINT(( "lance_probe1: testing memory to be writable (1)n" ));
  441. save1 = *memaddr;
  442. *memaddr = 0x0001;
  443. if (*memaddr != 0x0001) goto probe_fail;
  444. PROBE_PRINT(( "lance_probe1: testing memory to be writable (2)n" ));
  445. *memaddr = 0x0000;
  446. if (*memaddr != 0x0000) goto probe_fail;
  447. *memaddr = save1;
  448. /* First port should be readable and writable */
  449. PROBE_PRINT(( "lance_probe1: testing ioport to be accessiblen" ));
  450. if (!addr_accessible( ioaddr, 1, 1 )) goto probe_fail;
  451. /* and written values should be readable */
  452. PROBE_PRINT(( "lance_probe1: testing ioport to be writeablen" ));
  453. save2 = ioaddr[1];
  454. ioaddr[1] = 0x0001;
  455. if (ioaddr[1] != 0x0001) goto probe_fail;
  456. /* The CSR0_INIT bit should not be readable */
  457. PROBE_PRINT(( "lance_probe1: testing CSR0 register function (1)n" ));
  458. save1 = ioaddr[0];
  459. ioaddr[1] = CSR0;
  460. ioaddr[0] = CSR0_INIT | CSR0_STOP;
  461. if (ioaddr[0] != CSR0_STOP) {
  462. ioaddr[0] = save1;
  463. ioaddr[1] = save2;
  464. goto probe_fail;
  465. }
  466. PROBE_PRINT(( "lance_probe1: testing CSR0 register function (2)n" ));
  467. ioaddr[0] = CSR0_STOP;
  468. if (ioaddr[0] != CSR0_STOP) {
  469. ioaddr[0] = save1;
  470. ioaddr[1] = save2;
  471. goto probe_fail;
  472. }
  473. /* Now ok... */
  474. PROBE_PRINT(( "lance_probe1: Lance card detectedn" ));
  475. goto probe_ok;
  476.   probe_fail:
  477. return( 0 );
  478.   probe_ok:
  479. init_etherdev( dev, sizeof(struct lance_private) );
  480. if (!dev->priv) {
  481. dev->priv = kmalloc( sizeof(struct lance_private), GFP_KERNEL );
  482. if (!dev->priv)
  483. return 0;
  484. }
  485. lp = (struct lance_private *)dev->priv;
  486. MEM = (struct lance_memory *)memaddr;
  487. IO = lp->iobase = (struct lance_ioreg *)ioaddr;
  488. dev->base_addr = (unsigned long)ioaddr; /* informational only */
  489. lp->memcpy_f = init_rec->slow_flag ? slow_memcpy : memcpy;
  490. REGA( CSR0 ) = CSR0_STOP;
  491. /* Now test for type: If the eeprom I/O port is readable, it is a
  492.  * PAM card */
  493. if (addr_accessible( &(IO->eeprom), 0, 0 )) {
  494. /* Switch back to Ram */
  495. i = IO->mem;
  496. lp->cardtype = PAM_CARD;
  497. }
  498. #ifdef NORMAL_MEM_ACCESS
  499. else if (*RIEBL_MAGIC_ADDR == RIEBL_MAGIC) {
  500. #else
  501. else if (({
  502. unsigned short *a = (unsigned short*)RIEBL_MAGIC_ADDR;
  503.     (((int)a[0]) << 16) + ((int)a[1]) == RIEBL_MAGIC;
  504. })) {
  505. #endif
  506. lp->cardtype = NEW_RIEBL;
  507. }
  508. else
  509. lp->cardtype = OLD_RIEBL;
  510. if (lp->cardtype == PAM_CARD ||
  511. memaddr == (unsigned short *)0xffe00000) {
  512. /* PAMs card and Riebl on ST use level 5 autovector */
  513. request_irq(BAGET_LANCE_IRQ, lance_interrupt, IRQ_TYPE_PRIO,
  514.             "PAM/Riebl-ST Ethernet", dev);
  515. dev->irq = (unsigned short)BAGET_LANCE_IRQ;
  516. }
  517. else {
  518. /* For VME-RieblCards, request a free VME int;
  519.  * (This must be unsigned long, since dev->irq is short and the
  520.  * IRQ_MACHSPEC bit would be cut off...)
  521.  */
  522. unsigned long irq = BAGET_LANCE_IRQ; 
  523. if (!irq) {
  524. printk( "Lance: request for VME interrupt failedn" );
  525. return( 0 );
  526. }
  527. request_irq(irq, lance_interrupt, IRQ_TYPE_PRIO,
  528.             "Riebl-VME Ethernet", dev);
  529. dev->irq = irq;
  530. }
  531. printk("%s: %s at io %#lx, mem %#lx, irq %d%s, hwaddr ",
  532.    dev->name, lance_names[lp->cardtype],
  533.    (unsigned long)ioaddr,
  534.    (unsigned long)memaddr,
  535.    dev->irq,
  536.    init_rec->slow_flag ? " (slow memcpy)" : "" );
  537. /* Get the ethernet address */
  538. switch( lp->cardtype ) {
  539.   case OLD_RIEBL:
  540. /* No ethernet address! (Set some default address) */
  541. slow_memcpy( dev->dev_addr, OldRieblDefHwaddr, 6 );
  542. break;
  543.   case NEW_RIEBL:
  544. lp->memcpy_f( dev->dev_addr, RIEBL_HWADDR_ADDR, 6 );
  545. break;
  546.   case PAM_CARD:
  547. i = IO->eeprom;
  548. for( i = 0; i < 6; ++i )
  549. dev->dev_addr[i] =
  550. ((((unsigned short *)MEM)[i*2] & 0x0f) << 4) |
  551. ((((unsigned short *)MEM)[i*2+1] & 0x0f));
  552. i = IO->mem;
  553. break;
  554. }
  555. for( i = 0; i < 6; ++i )
  556. printk( "%02x%s", dev->dev_addr[i], (i < 5) ? ":" : "n" );
  557. if (lp->cardtype == OLD_RIEBL) {
  558. printk( "%s: Warning: This is a default ethernet address!n",
  559. dev->name );
  560. printk( "      Use "ifconfig hw ether ..." to set the address.n" );
  561. }
  562. MEM->init.mode = 0x0000; /* Disable Rx and Tx. */
  563. {
  564. unsigned char hwaddr[6];
  565. for( i = 0; i < 6; i++ ) 
  566. hwaddr[i] = dev->dev_addr[i^1]; /* <- 16 bit swap! */
  567. slow_memcpy(MEM->init.hwaddr, hwaddr, sizeof(hwaddr));
  568. }
  569. MEM->init.filter[0] = 0x00000000;
  570. MEM->init.filter[1] = 0x00000000;
  571. MEM->init.rx_ring.adr_lo = offsetof( struct lance_memory, rx_head );
  572. #ifdef NORMAL_MEM_ACCESS
  573. MEM->init.rx_ring.adr_hi = LANCE_HI_BASE; 
  574. MEM->init.rx_ring.len    = RX_RING_LEN_BITS;
  575. #else
  576. MEM->init.rx_ring.len_adr_hi = 
  577. ((unsigned)RX_RING_LEN_BITS << 8) | LANCE_HI_BASE;
  578. #endif
  579. MEM->init.tx_ring.adr_lo = offsetof( struct lance_memory, tx_head );
  580. #ifdef NORMAL_MEM_ACCESS
  581. MEM->init.tx_ring.adr_hi = LANCE_HI_BASE; 
  582. MEM->init.tx_ring.len    = TX_RING_LEN_BITS;
  583. #else
  584. MEM->init.tx_ring.len_adr_hi = 
  585. ((unsigned)TX_RING_LEN_BITS<<8) | LANCE_HI_BASE;
  586. #endif
  587. if (lp->cardtype == PAM_CARD)
  588. IO->ivec = IRQ_SOURCE_TO_VECTOR(dev->irq);
  589. else
  590. *RIEBL_IVEC_ADDR = IRQ_SOURCE_TO_VECTOR(dev->irq);
  591. if (did_version++ == 0)
  592. DPRINTK( 1, ( version ));
  593. /* The LANCE-specific entries in the device structure. */
  594. dev->open = &lance_open;
  595. dev->hard_start_xmit = &lance_start_xmit;
  596. dev->stop = &lance_close;
  597. dev->get_stats = &lance_get_stats;
  598. dev->set_multicast_list = &set_multicast_list;
  599. dev->set_mac_address = &lance_set_mac_address;
  600. dev->start = 0;
  601. memset( &lp->stats, 0, sizeof(lp->stats) );
  602. return( 1 );
  603. }
  604. static int lance_open( struct net_device *dev )
  605. { struct lance_private *lp = (struct lance_private *)dev->priv;
  606. struct lance_ioreg  *IO = lp->iobase;
  607. int i;
  608. DPRINTK( 2, ( "%s: lance_open()n", dev->name ));
  609. lance_init_ring(dev);
  610. /* Re-initialize the LANCE, and start it when done. */
  611. REGA( CSR3 ) = CSR3_BSWP | (lp->cardtype == PAM_CARD ? CSR3_ACON : 0);
  612. REGA( CSR2 ) = 0;
  613. REGA( CSR1 ) = 0;
  614. REGA( CSR0 ) = CSR0_INIT;
  615. /* From now on, AREG is kept to point to CSR0 */
  616. i = 1000000;
  617. while (--i > 0)
  618. if (DREG & CSR0_IDON)
  619. break;
  620. if (i < 0 || (DREG & CSR0_ERR)) {
  621. DPRINTK( 2, ( "lance_open(): opening %s failed, i=%d, csr0=%04xn",
  622.   dev->name, i, DREG ));
  623. DREG = CSR0_STOP;
  624. return( -EIO );
  625. }
  626. DREG = CSR0_IDON;
  627. DREG = CSR0_STRT;
  628. DREG = CSR0_INEA;
  629. dev->tbusy = 0;
  630. dev->interrupt = 0;
  631. dev->start = 1;
  632. DPRINTK( 2, ( "%s: LANCE is open, csr0 %04xn", dev->name, DREG ));
  633. return( 0 );
  634. }
  635. /* Initialize the LANCE Rx and Tx rings. */
  636. static void lance_init_ring( struct net_device *dev )
  637. { struct lance_private *lp = (struct lance_private *)dev->priv;
  638. int i;
  639. unsigned offset;
  640. lp->lock = 0;
  641. lp->tx_full = 0;
  642. lp->cur_rx = lp->cur_tx = 0;
  643. lp->dirty_tx = 0;
  644. offset = offsetof( struct lance_memory, packet_area );
  645. /* If the packet buffer at offset 'o' would conflict with the reserved area
  646.  * of RieblCards, advance it */
  647. #define CHECK_OFFSET(o)  
  648. do {  
  649. if (lp->cardtype == OLD_RIEBL || lp->cardtype == NEW_RIEBL) {  
  650. if (((o) < RIEBL_RSVD_START) ? (o)+PKT_BUF_SZ > RIEBL_RSVD_START 
  651.  : (o) < RIEBL_RSVD_END)  
  652. (o) = RIEBL_RSVD_END;  
  653. }  
  654. } while(0)
  655. for( i = 0; i < TX_RING_SIZE; i++ ) {
  656. CHECK_OFFSET(offset);
  657. MEM->tx_head[i].base = offset;
  658. #ifdef NORMAL_MEM_ACCESS
  659. MEM->tx_head[i].flag = TMD1_OWN_HOST;
  660.   MEM->tx_head[i].base_hi = LANCE_HI_BASE;
  661. #else
  662. MEM->tx_head[i].flag_base_hi = 
  663. (TMD1_OWN_HOST<<8) | LANCE_HI_BASE;
  664. #endif
  665. MEM->tx_head[i].length = 0;
  666. MEM->tx_head[i].misc = 0;
  667. offset += PKT_BUF_SZ;
  668. }
  669. for( i = 0; i < RX_RING_SIZE; i++ ) {
  670. CHECK_OFFSET(offset);
  671. MEM->rx_head[i].base = offset;
  672. #ifdef NORMAL_MEM_ACCESS
  673. MEM->rx_head[i].flag = TMD1_OWN_CHIP;
  674. MEM->rx_head[i].base_hi = LANCE_HI_BASE; 
  675. #else
  676. MEM->rx_head[i].flag_base_hi = 
  677. (TMD1_OWN_CHIP<<8) | LANCE_HI_BASE;
  678. #endif
  679. MEM->rx_head[i].buf_length = -PKT_BUF_SZ;
  680. MEM->rx_head[i].msg_length = 0;
  681. offset += PKT_BUF_SZ;
  682. }
  683. }
  684. static int lance_start_xmit( struct sk_buff *skb, struct net_device *dev )
  685. { struct lance_private *lp = (struct lance_private *)dev->priv;
  686. struct lance_ioreg  *IO = lp->iobase;
  687. int entry, len;
  688. struct lance_tx_head *head;
  689. unsigned long flags;
  690. /* Transmitter timeout, serious problems. */
  691. if (dev->tbusy) {
  692. int tickssofar = jiffies - dev->trans_start;
  693. if (tickssofar < 20)
  694. return( 1 );
  695. AREG = CSR0;
  696. DPRINTK( 1, ( "%s: transmit timed out, status %04x, resetting.n",
  697.   dev->name, DREG ));
  698. DREG = CSR0_STOP;
  699. /*
  700.  * Always set BSWP after a STOP as STOP puts it back into
  701.  * little endian mode.
  702.  */
  703. REGA( CSR3 ) = CSR3_BSWP | (lp->cardtype == PAM_CARD ? CSR3_ACON : 0);
  704. lp->stats.tx_errors++;
  705. #ifndef final_version
  706. { int i;
  707. DPRINTK( 2, ( "Ring data: dirty_tx %d cur_tx %d%s cur_rx %dn",
  708.   lp->dirty_tx, lp->cur_tx,
  709.   lp->tx_full ? " (full)" : "",
  710.   lp->cur_rx ));
  711. for( i = 0 ; i < RX_RING_SIZE; i++ )
  712. DPRINTK( 2, ( "rx #%d: base=%04x blen=%04x mlen=%04xn",
  713.   i, MEM->rx_head[i].base,
  714.   -MEM->rx_head[i].buf_length,
  715.   MEM->rx_head[i].msg_length ));
  716. for( i = 0 ; i < TX_RING_SIZE; i++ )
  717. DPRINTK( 2, ( "tx #%d: base=%04x len=%04x misc=%04xn",
  718.   i, MEM->tx_head[i].base,
  719.   -MEM->tx_head[i].length,
  720.   MEM->tx_head[i].misc ));
  721. }
  722. #endif
  723. lance_init_ring(dev);
  724. REGA( CSR0 ) = CSR0_INEA | CSR0_INIT | CSR0_STRT;
  725. dev->tbusy = 0;
  726. dev->trans_start = jiffies;
  727. return( 0 );
  728. }
  729. DPRINTK( 2, ( "%s: lance_start_xmit() called, csr0 %4.4x.n",
  730.   dev->name, DREG ));
  731. /* Block a timer-based transmit from overlapping.  This could better be
  732.    done with atomic_swap(1, dev->tbusy), but set_bit() works as well. */
  733. if (test_and_set_bit( 0, (void*)&dev->tbusy ) != 0) {
  734. DPRINTK( 0, ( "%s: Transmitter access conflict.n", dev->name ));
  735. return 1;
  736. }
  737. if (test_and_set_bit( 0, (void*)&lp->lock ) != 0) {
  738. DPRINTK( 0, ( "%s: tx queue lock!.n", dev->name ));
  739. /* don't clear dev->tbusy flag. */
  740. return 1;
  741. }
  742. /* Fill in a Tx ring entry */
  743. if (lance_debug >= 3) {
  744. u_char *p;
  745. int i;
  746. printk( "%s: TX pkt type 0x%04x from ", dev->name,
  747. ((u_short *)skb->data)[6]);
  748. for( p = &((u_char *)skb->data)[6], i = 0; i < 6; i++ )
  749. printk("%02x%s", *p++, i != 5 ? ":" : "" );
  750. printk(" to ");
  751. for( p = (u_char *)skb->data, i = 0; i < 6; i++ )
  752. printk("%02x%s", *p++, i != 5 ? ":" : "" );
  753. printk(" data at 0x%08x len %dn", (int)skb->data,
  754.    (int)skb->len );
  755. }
  756. /* We're not prepared for the int until the last flags are set/reset. And
  757.  * the int may happen already after setting the OWN_CHIP... */
  758. save_flags(flags);
  759. cli();
  760. /* Mask to ring buffer boundary. */
  761. entry = lp->cur_tx & TX_RING_MOD_MASK;
  762. head  = &(MEM->tx_head[entry]);
  763. /* Caution: the write order is important here, set the "ownership" bits
  764.  * last.
  765.  */
  766. /* The old LANCE chips doesn't automatically pad buffers to min. size. */
  767. len = (ETH_ZLEN < skb->len) ? skb->len : ETH_ZLEN;
  768. /* PAM-Card has a bug: Can only send packets with even number of bytes! */
  769. if (lp->cardtype == PAM_CARD && (len & 1))
  770. ++len;
  771. head->length = -len;
  772. head->misc = 0;
  773. lp->memcpy_f( PKTBUF_ADDR(head), (void *)skb->data, skb->len );
  774. #ifdef NORMAL_MEM_ACCESS
  775. head->flag = TMD1_OWN_CHIP | TMD1_ENP | TMD1_STP;
  776. #else
  777.     SET_FLAG(head,(TMD1_OWN_CHIP | TMD1_ENP | TMD1_STP));
  778. #endif
  779. lp->stats.tx_bytes += skb->len;
  780. dev_kfree_skb( skb );
  781. lp->cur_tx++;
  782. while( lp->cur_tx >= TX_RING_SIZE && lp->dirty_tx >= TX_RING_SIZE ) {
  783. lp->cur_tx -= TX_RING_SIZE;
  784. lp->dirty_tx -= TX_RING_SIZE;
  785. }
  786. /* Trigger an immediate send poll. */
  787. DREG = CSR0_INEA | CSR0_TDMD;
  788. dev->trans_start = jiffies;
  789. lp->lock = 0;
  790. #ifdef NORMAL_MEM_ACCESS
  791. if ((MEM->tx_head[(entry+1) & TX_RING_MOD_MASK].flag & TMD1_OWN) ==
  792. #else
  793. if ((GET_FLAG(&MEM->tx_head[(entry+1) & TX_RING_MOD_MASK]) & TMD1_OWN) ==
  794. #endif
  795. TMD1_OWN_HOST)
  796. dev->tbusy = 0;
  797. else
  798. lp->tx_full = 1;
  799. restore_flags(flags);
  800. return 0;
  801. }
  802. /* The LANCE interrupt handler. */
  803. static void lance_interrupt( int irq, void *dev_id, struct pt_regs *fp)
  804. {
  805. struct net_device *dev = dev_id;
  806. struct lance_private *lp;
  807. struct lance_ioreg  *IO;
  808. int csr0, boguscnt = 10;
  809. if (dev == NULL) {
  810. DPRINTK( 1, ( "lance_interrupt(): interrupt for unknown device.n" ));
  811. return;
  812. }
  813. lp = (struct lance_private *)dev->priv;
  814. IO = lp->iobase;
  815. AREG = CSR0;
  816. if (dev->interrupt) {
  817. DPRINTK( 1, ( "Re-entering CAUSE=%08x STATUS=%08xn",  
  818.   read_32bit_cp0_register(CP0_CAUSE),  
  819.   read_32bit_cp0_register(CP0_STATUS) ));
  820. panic("lance: interrupt handler reentered !");
  821. }
  822. dev->interrupt = 1;
  823. while( ((csr0 = DREG) & (CSR0_ERR | CSR0_TINT | CSR0_RINT)) &&
  824.    --boguscnt >= 0) {
  825. /* Acknowledge all of the current interrupt sources ASAP. */
  826. DREG = csr0 & ~(CSR0_INIT | CSR0_STRT | CSR0_STOP |
  827. CSR0_TDMD | CSR0_INEA);
  828. DPRINTK( 2, ( "%s: interrupt  csr0=%04x new csr=%04x.n",
  829.   dev->name, csr0, DREG ));
  830. if (csr0 & CSR0_RINT) /* Rx interrupt */
  831. lance_rx( dev );
  832. if (csr0 & CSR0_TINT) { /* Tx-done interrupt */
  833. int dirty_tx = lp->dirty_tx;
  834. while( dirty_tx < lp->cur_tx) {
  835. int entry = dirty_tx & TX_RING_MOD_MASK;
  836. #ifdef NORMAL_MEM_ACCESS
  837. int status = MEM->tx_head[entry].flag;
  838. #else
  839. int status = GET_FLAG(&MEM->tx_head[entry]);
  840. #endif
  841. if (status & TMD1_OWN_CHIP)
  842. break; /* It still hasn't been Txed */
  843. #ifdef NORMAL_MEM_ACCESS
  844. MEM->tx_head[entry].flag = 0;
  845. #else
  846. SET_FLAG(&MEM->tx_head[entry],0);
  847. #endif
  848. if (status & TMD1_ERR) {
  849. /* There was an major error, log it. */
  850. int err_status = MEM->tx_head[entry].misc;
  851. lp->stats.tx_errors++;
  852. if (err_status & TMD3_RTRY) lp->stats.tx_aborted_errors++;
  853. if (err_status & TMD3_LCAR) lp->stats.tx_carrier_errors++;
  854. if (err_status & TMD3_LCOL) lp->stats.tx_window_errors++;
  855. if (err_status & TMD3_UFLO) {
  856. /* Ackk!  On FIFO errors the Tx unit is turned off! */
  857. lp->stats.tx_fifo_errors++;
  858. /* Remove this verbosity later! */
  859. DPRINTK( 1, ( "%s: Tx FIFO error! Status %04xn",
  860.   dev->name, csr0 ));
  861. /* Restart the chip. */
  862. DREG = CSR0_STRT;
  863. }
  864. } else {
  865. if (status & (TMD1_MORE | TMD1_ONE | TMD1_DEF))
  866. lp->stats.collisions++;
  867. lp->stats.tx_packets++;
  868. }
  869. dirty_tx++;
  870. }
  871. #ifndef final_version
  872. if (lp->cur_tx - dirty_tx >= TX_RING_SIZE) {
  873. DPRINTK( 0, ( "out-of-sync dirty pointer,"
  874.   " %d vs. %d, full=%d.n",
  875.   dirty_tx, lp->cur_tx, lp->tx_full ));
  876. dirty_tx += TX_RING_SIZE;
  877. }
  878. #endif
  879. if (lp->tx_full && dev->tbusy
  880. && dirty_tx > lp->cur_tx - TX_RING_SIZE + 2) {
  881. /* The ring is no longer full, clear tbusy. */
  882. lp->tx_full = 0;
  883. dev->tbusy = 0;
  884. mark_bh( NET_BH );
  885. }
  886. lp->dirty_tx = dirty_tx;
  887. }
  888. /* Log misc errors. */
  889. if (csr0 & CSR0_BABL) lp->stats.tx_errors++; /* Tx babble. */
  890. if (csr0 & CSR0_MISS) lp->stats.rx_errors++; /* Missed a Rx frame. */
  891. if (csr0 & CSR0_MERR) {
  892. DPRINTK( 1, ( "%s: Bus master arbitration failure (?!?), "
  893.   "status %04x.n", dev->name, csr0 ));
  894. /* Restart the chip. */
  895. DREG = CSR0_STRT;
  896. }
  897. }
  898.     /* Clear any other interrupt, and set interrupt enable. */
  899. DREG = CSR0_BABL | CSR0_CERR | CSR0_MISS | CSR0_MERR |
  900.    CSR0_IDON | CSR0_INEA;
  901. DPRINTK( 2, ( "%s: exiting interrupt, csr0=%#04x.n",
  902.   dev->name, DREG ));
  903. dev->interrupt = 0;
  904. return;
  905. }
  906. static int lance_rx( struct net_device *dev )
  907. { struct lance_private *lp = (struct lance_private *)dev->priv;
  908. int entry = lp->cur_rx & RX_RING_MOD_MASK;
  909. int i;
  910. #ifdef NORMAL_MEM_ACCESS
  911. DPRINTK( 2, ( "%s: rx int, flag=%04xn", dev->name,
  912.   MEM->rx_head[entry].flag ));
  913. #else
  914. DPRINTK( 2, ( "%s: rx int, flag=%04xn", dev->name,
  915.   GET_FLAG(&MEM->rx_head[entry]) ));
  916. #endif
  917. /* If we own the next entry, it's a new packet. Send it up. */
  918. #ifdef NORMAL_MEM_ACCESS
  919. while( (MEM->rx_head[entry].flag & RMD1_OWN) == RMD1_OWN_HOST ) {
  920. #else
  921. while( (GET_FLAG(&MEM->rx_head[entry]) & RMD1_OWN) == RMD1_OWN_HOST ) {
  922. #endif
  923. struct lance_rx_head *head = &(MEM->rx_head[entry]);
  924. #ifdef NORMAL_MEM_ACCESS
  925. int status = head->flag;
  926. #else
  927. int status = GET_FLAG(head);
  928. #endif
  929. if (status != (RMD1_ENP|RMD1_STP)) { /* There was an error. */
  930. /* There is a tricky error noted by John Murphy,
  931.    <murf@perftech.com> to Russ Nelson: Even with full-sized
  932.    buffers it's possible for a jabber packet to use two
  933.    buffers, with only the last correctly noting the error. */
  934. if (status & RMD1_ENP) /* Only count a general error at the */
  935. lp->stats.rx_errors++; /* end of a packet.*/
  936. if (status & RMD1_FRAM) lp->stats.rx_frame_errors++;
  937. if (status & RMD1_OFLO) lp->stats.rx_over_errors++;
  938. if (status & RMD1_CRC) lp->stats.rx_crc_errors++;
  939. if (status & RMD1_BUFF) lp->stats.rx_fifo_errors++;
  940. #ifdef NORMAL_MEM_ACCESS
  941. head->flag &= (RMD1_ENP|RMD1_STP);
  942. #else
  943. SET_FLAG(head,GET_FLAG(head) & (RMD1_ENP|RMD1_STP));
  944. #endif
  945. } else {
  946. /* Malloc up new buffer, compatible with net-3. */
  947. short pkt_len = head->msg_length & 0xfff;
  948. struct sk_buff *skb;
  949. if (pkt_len < 60) {
  950. printk( "%s: Runt packet!n", dev->name );
  951. lp->stats.rx_errors++;
  952. }
  953. else {
  954. skb = dev_alloc_skb( pkt_len+2 );
  955. if (skb == NULL) {
  956. DPRINTK( 1, ( "%s: Memory squeeze, deferring packet.n",
  957.   dev->name ));
  958.                           for( i = 0; i < RX_RING_SIZE; i++ )
  959. #ifdef NORMAL_MEM_ACCESS
  960.                         if (MEM->rx_head[(entry+i) & RX_RING_MOD_MASK].flag &
  961. #else
  962. if (GET_FLAG(&MEM->rx_head[(entry+i) & 
  963.   RX_RING_MOD_MASK]) &
  964. #endif
  965. RMD1_OWN_CHIP)
  966. break;
  967. if (i > RX_RING_SIZE - 2) {
  968. lp->stats.rx_dropped++;
  969. #ifdef NORMAL_MEM_ACCESS
  970.                         head->flag |= RMD1_OWN_CHIP;
  971. #else
  972.                         SET_FLAG(head,GET_FLAG(head) | RMD1_OWN_CHIP);
  973. #endif
  974. lp->cur_rx++;
  975. }
  976. break;
  977. }
  978. if (lance_debug >= 3) {
  979. u_char *data = PKTBUF_ADDR(head), *p;
  980. printk( "%s: RX pkt type 0x%04x from ", dev->name,
  981. ((u_short *)data)[6]);
  982. for( p = &data[6], i = 0; i < 6; i++ )
  983. printk("%02x%s", *p++, i != 5 ? ":" : "" );
  984. printk(" to ");
  985. for( p = data, i = 0; i < 6; i++ )
  986. printk("%02x%s", *p++, i != 5 ? ":" : "" );
  987. printk(" data %02x %02x %02x %02x %02x %02x %02x %02x "
  988.    "len %dn",
  989.    data[15], data[16], data[17], data[18],
  990.    data[19], data[20], data[21], data[22],
  991.    pkt_len );
  992. }
  993. skb->dev = dev;
  994. skb_reserve( skb, 2 ); /* 16 byte align */
  995. skb_put( skb, pkt_len ); /* Make room */
  996. lp->memcpy_f( skb->data, PKTBUF_ADDR(head), pkt_len );
  997. skb->protocol = eth_type_trans( skb, dev );
  998. netif_rx( skb );
  999. dev->last_rx = jiffies;
  1000. lp->stats.rx_packets++;
  1001. lp->stats.rx_bytes += pkt_len;
  1002. }
  1003. }
  1004. #ifdef NORMAL_MEM_ACCESS
  1005. head->flag |= RMD1_OWN_CHIP;
  1006. #else
  1007. SET_FLAG(head,GET_FLAG(head) | RMD1_OWN_CHIP);
  1008. #endif
  1009. entry = (++lp->cur_rx) & RX_RING_MOD_MASK;
  1010. }
  1011. lp->cur_rx &= RX_RING_MOD_MASK;
  1012. /* From lance.c (Donald Becker): */
  1013. /* We should check that at least two ring entries are free.  If not,
  1014.    we should free one and mark stats->rx_dropped++. */
  1015. return 0;
  1016. }
  1017. static int lance_close( struct net_device *dev )
  1018. { struct lance_private *lp = (struct lance_private *)dev->priv;
  1019. struct lance_ioreg  *IO = lp->iobase;
  1020. dev->start = 0;
  1021. dev->tbusy = 1;
  1022. AREG = CSR0;
  1023. DPRINTK( 2, ( "%s: Shutting down ethercard, status was %2.2x.n",
  1024.   dev->name, DREG ));
  1025. /* We stop the LANCE here -- it occasionally polls
  1026.    memory if we don't. */
  1027. DREG = CSR0_STOP;
  1028. return 0;
  1029. }
  1030. static struct net_device_stats *lance_get_stats( struct net_device *dev )
  1031. {
  1032. struct lance_private *lp = (struct lance_private *)dev->priv;
  1033. return &lp->stats;
  1034. }
  1035. /* Set or clear the multicast filter for this adaptor.
  1036.    num_addrs == -1 Promiscuous mode, receive all packets
  1037.    num_addrs == 0 Normal mode, clear multicast list
  1038.    num_addrs > 0 Multicast mode, receive normal and MC packets, and do
  1039. best-effort filtering.
  1040.  */
  1041. static void set_multicast_list( struct net_device *dev )
  1042. { struct lance_private *lp = (struct lance_private *)dev->priv;
  1043. struct lance_ioreg  *IO = lp->iobase;
  1044. if (!dev->start)
  1045. /* Only possible if board is already started */
  1046. return;
  1047. /* We take the simple way out and always enable promiscuous mode. */
  1048. DREG = CSR0_STOP; /* Temporarily stop the lance. */
  1049. if (dev->flags & IFF_PROMISC) {
  1050. /* Log any net taps. */
  1051. DPRINTK( 1, ( "%s: Promiscuous mode enabled.n", dev->name ));
  1052. REGA( CSR15 ) = 0x8000; /* Set promiscuous mode */
  1053. } else {
  1054. short multicast_table[4];
  1055. int num_addrs = dev->mc_count;
  1056. int i;
  1057. /* We don't use the multicast table, but rely on upper-layer
  1058.  * filtering. */
  1059. memset( multicast_table, (num_addrs == 0) ? 0 : -1,
  1060. sizeof(multicast_table) );
  1061. for( i = 0; i < 4; i++ )
  1062. REGA( CSR8+i ) = multicast_table[i];
  1063. REGA( CSR15 ) = 0; /* Unset promiscuous mode */
  1064. }
  1065. /*
  1066.  * Always set BSWP after a STOP as STOP puts it back into
  1067.  * little endian mode.
  1068.  */
  1069. REGA( CSR3 ) = CSR3_BSWP | (lp->cardtype == PAM_CARD ? CSR3_ACON : 0);
  1070. /* Resume normal operation and reset AREG to CSR0 */
  1071. REGA( CSR0 ) = CSR0_IDON | CSR0_INEA | CSR0_STRT;
  1072. }
  1073. /* This is needed for old RieblCards and possible for new RieblCards */
  1074. static int lance_set_mac_address( struct net_device *dev, void *addr )
  1075. { struct lance_private *lp = (struct lance_private *)dev->priv;
  1076. struct sockaddr *saddr = addr;
  1077. int i;
  1078. if (lp->cardtype != OLD_RIEBL && lp->cardtype != NEW_RIEBL)
  1079. return( -EOPNOTSUPP );
  1080. if (dev->start) {
  1081. /* Only possible while card isn't started */
  1082. DPRINTK( 1, ( "%s: hwaddr can be set only while card isn't open.n",
  1083.   dev->name ));
  1084. return( -EIO );
  1085. }
  1086. slow_memcpy( dev->dev_addr, saddr->sa_data, dev->addr_len );
  1087. {
  1088. unsigned char hwaddr[6];
  1089. for( i = 0; i < 6; i++ ) 
  1090. hwaddr[i] = dev->dev_addr[i^1]; /* <- 16 bit swap! */
  1091. slow_memcpy(MEM->init.hwaddr, hwaddr, sizeof(hwaddr));
  1092. }
  1093. lp->memcpy_f( RIEBL_HWADDR_ADDR, dev->dev_addr, 6 );
  1094. /* set also the magic for future sessions */
  1095. #ifdef NORMAL_MEM_ACCESS
  1096. *RIEBL_MAGIC_ADDR = RIEBL_MAGIC;
  1097. #else
  1098. {
  1099. unsigned long magic = RIEBL_MAGIC;
  1100. slow_memcpy(RIEBL_MAGIC_ADDR, &magic, sizeof(*RIEBL_MAGIC_ADDR));
  1101. }
  1102. #endif
  1103. return( 0 );
  1104. }
  1105. #ifdef MODULE
  1106. static struct net_device bagetlance_dev;
  1107. int init_module(void)
  1108. { int err;
  1109. bagetlance_dev.init = bagetlance_probe;
  1110. if ((err = register_netdev( &bagetlance_dev ))) {
  1111. if (err == -EIO)  {
  1112. printk( "No Vme Lance board found. Module not loaded.n");
  1113. }
  1114. return( err );
  1115. }
  1116. return( 0 );
  1117. }
  1118. void cleanup_module(void)
  1119. {
  1120. unregister_netdev( &bagetlance_dev );
  1121. }
  1122. #endif /* MODULE */
  1123. /*
  1124.  * Local variables:
  1125.  *  c-indent-level: 4
  1126.  *  tab-width: 4
  1127.  * End:
  1128.  */