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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* 82596.c: A generic 82596 ethernet driver for linux. */
  2. /*
  3.    Based on Apricot.c
  4.    Written 1994 by Mark Evans.
  5.    This driver is for the Apricot 82596 bus-master interface
  6.    Modularised 12/94 Mark Evans
  7.    Modified to support the 82596 ethernet chips on 680x0 VME boards.
  8.    by Richard Hirst <richard@sleepie.demon.co.uk>
  9.    Renamed to be 82596.c
  10.    980825:  Changed to receive directly in to sk_buffs which are
  11.    allocated at open() time.  Eliminates copy on incoming frames
  12.    (small ones are still copied).  Shared data now held in a
  13.    non-cached page, so we can run on 68060 in copyback mode.
  14.    TBD:
  15.    * look at deferring rx frames rather than discarding (as per tulip)
  16.    * handle tx ring full as per tulip
  17.    * performace test to tune rx_copybreak
  18.    Most of my modifications relate to the braindead big-endian
  19.    implementation by Intel.  When the i596 is operating in
  20.    'big-endian' mode, it thinks a 32 bit value of 0x12345678
  21.    should be stored as 0x56781234.  This is a real pain, when
  22.    you have linked lists which are shared by the 680x0 and the
  23.    i596.
  24.    Driver skeleton
  25.    Written 1993 by Donald Becker.
  26.    Copyright 1993 United States Government as represented by the Director,
  27.    National Security Agency. This software may only be used and distributed
  28.    according to the terms of the GNU General Public License as modified by SRC,
  29.    incorporated herein by reference.
  30.    The author may be reached as becker@scyld.com, or C/O
  31.    Scyld Computing Corporation, 410 Severn Ave., Suite 210, Annapolis MD 21403
  32.  */
  33. #include <linux/config.h>
  34. #include <linux/module.h>
  35. #include <linux/kernel.h>
  36. #include <linux/sched.h>
  37. #include <linux/string.h>
  38. #include <linux/ptrace.h>
  39. #include <linux/errno.h>
  40. #include <linux/ioport.h>
  41. #include <linux/slab.h>
  42. #include <linux/interrupt.h>
  43. #include <linux/delay.h>
  44. #include <linux/netdevice.h>
  45. #include <linux/etherdevice.h>
  46. #include <linux/skbuff.h>
  47. #include <linux/init.h>
  48. #include <asm/bitops.h>
  49. #include <asm/io.h>
  50. #include <asm/dma.h>
  51. #include <asm/pgtable.h>
  52. #include <asm/pgalloc.h>
  53. static char version[] __initdata =
  54. "82596.c $Revision: 1.4 $n";
  55. /* DEBUG flags
  56.  */
  57. #define DEB_INIT 0x0001
  58. #define DEB_PROBE 0x0002
  59. #define DEB_SERIOUS 0x0004
  60. #define DEB_ERRORS 0x0008
  61. #define DEB_MULTI 0x0010
  62. #define DEB_TDR 0x0020
  63. #define DEB_OPEN 0x0040
  64. #define DEB_RESET 0x0080
  65. #define DEB_ADDCMD 0x0100
  66. #define DEB_STATUS 0x0200
  67. #define DEB_STARTTX 0x0400
  68. #define DEB_RXADDR 0x0800
  69. #define DEB_TXADDR 0x1000
  70. #define DEB_RXFRAME 0x2000
  71. #define DEB_INTS 0x4000
  72. #define DEB_STRUCT 0x8000
  73. #define DEB_ANY 0xffff
  74. #define DEB(x,y) if (i596_debug & (x)) y
  75. #if defined(CONFIG_MVME16x_NET) || defined(CONFIG_MVME16x_NET_MODULE)
  76. #define ENABLE_MVME16x_NET
  77. #endif
  78. #if defined(CONFIG_BVME6000_NET) || defined(CONFIG_BVME6000_NET_MODULE)
  79. #define ENABLE_BVME6000_NET
  80. #endif
  81. #if defined(CONFIG_APRICOT) || defined(CONFIG_APRICOT_MODULE)
  82. #define ENABLE_APRICOT
  83. #endif
  84. #ifdef ENABLE_MVME16x_NET
  85. #include <asm/mvme16xhw.h>
  86. #endif
  87. #ifdef ENABLE_BVME6000_NET
  88. #include <asm/bvme6000hw.h>
  89. #endif
  90. /*
  91.  * Define various macros for Channel Attention, word swapping etc., dependent
  92.  * on architecture.  MVME and BVME are 680x0 based, otherwise it is Intel.
  93.  */
  94. #ifdef __mc68000__
  95. #define WSWAPrfd(x)  ((struct i596_rfd *) (((u32)(x)<<16) | ((((u32)(x)))>>16)))
  96. #define WSWAPrbd(x)  ((struct i596_rbd *) (((u32)(x)<<16) | ((((u32)(x)))>>16)))
  97. #define WSWAPiscp(x) ((struct i596_iscp *)(((u32)(x)<<16) | ((((u32)(x)))>>16)))
  98. #define WSWAPscb(x)  ((struct i596_scb *) (((u32)(x)<<16) | ((((u32)(x)))>>16)))
  99. #define WSWAPcmd(x)  ((struct i596_cmd *) (((u32)(x)<<16) | ((((u32)(x)))>>16)))
  100. #define WSWAPtbd(x)  ((struct i596_tbd *) (((u32)(x)<<16) | ((((u32)(x)))>>16)))
  101. #define WSWAPchar(x) ((char *)            (((u32)(x)<<16) | ((((u32)(x)))>>16)))
  102. #define ISCP_BUSY 0x00010000
  103. #define MACH_IS_APRICOT 0
  104. #else
  105. #define WSWAPrfd(x)     ((struct i596_rfd *)(x))
  106. #define WSWAPrbd(x)     ((struct i596_rbd *)(x))
  107. #define WSWAPiscp(x)    ((struct i596_iscp *)(x))
  108. #define WSWAPscb(x)     ((struct i596_scb *)(x))
  109. #define WSWAPcmd(x)     ((struct i596_cmd *)(x))
  110. #define WSWAPtbd(x)     ((struct i596_tbd *)(x))
  111. #define WSWAPchar(x)    ((char *)(x))
  112. #define ISCP_BUSY 0x0001
  113. #define MACH_IS_APRICOT 1
  114. #endif
  115. /*
  116.  * The MPU_PORT command allows direct access to the 82596. With PORT access
  117.  * the following commands are available (p5-18). The 32-bit port command
  118.  * must be word-swapped with the most significant word written first.
  119.  * This only applies to VME boards.
  120.  */
  121. #define PORT_RESET 0x00 /* reset 82596 */
  122. #define PORT_SELFTEST 0x01 /* selftest */
  123. #define PORT_ALTSCP 0x02 /* alternate SCB address */
  124. #define PORT_ALTDUMP 0x03 /* Alternate DUMP address */
  125. static int i596_debug = (DEB_SERIOUS|DEB_PROBE);
  126. MODULE_AUTHOR("Richard Hirst");
  127. MODULE_DESCRIPTION("i82596 driver");
  128. MODULE_LICENSE("GPL");
  129. MODULE_PARM(i596_debug, "i");
  130. MODULE_PARM_DESC(i596_debug, "i82596 debug mask");
  131. /* Copy frames shorter than rx_copybreak, otherwise pass on up in
  132.  * a full sized sk_buff.  Value of 100 stolen from tulip.c (!alpha).
  133.  */
  134. static int rx_copybreak = 100;
  135. #define PKT_BUF_SZ 1536
  136. #define MAX_MC_CNT 64
  137. #define I596_TOTAL_SIZE 17
  138. #define I596_NULL ((void *)0xffffffff)
  139. #define CMD_EOL 0x8000 /* The last command of the list, stop. */
  140. #define CMD_SUSP 0x4000 /* Suspend after doing cmd. */
  141. #define CMD_INTR 0x2000 /* Interrupt after doing cmd. */
  142. #define CMD_FLEX 0x0008 /* Enable flexible memory model */
  143. enum commands {
  144. CmdNOp = 0, CmdSASetup = 1, CmdConfigure = 2, CmdMulticastList = 3,
  145. CmdTx = 4, CmdTDR = 5, CmdDump = 6, CmdDiagnose = 7
  146. };
  147. #define STAT_C 0x8000 /* Set to 0 after execution */
  148. #define STAT_B 0x4000 /* Command being executed */
  149. #define STAT_OK 0x2000 /* Command executed ok */
  150. #define STAT_A 0x1000 /* Command aborted */
  151. #define  CUC_START 0x0100
  152. #define  CUC_RESUME 0x0200
  153. #define  CUC_SUSPEND    0x0300
  154. #define  CUC_ABORT 0x0400
  155. #define  RX_START 0x0010
  156. #define  RX_RESUME 0x0020
  157. #define  RX_SUSPEND 0x0030
  158. #define  RX_ABORT 0x0040
  159. #define TX_TIMEOUT 5
  160. struct i596_reg {
  161. unsigned short porthi;
  162. unsigned short portlo;
  163. unsigned long ca;
  164. };
  165. #define EOF 0x8000
  166. #define SIZE_MASK 0x3fff
  167. struct i596_tbd {
  168. unsigned short size;
  169. unsigned short pad;
  170. struct i596_tbd *next;
  171. char *data;
  172. };
  173. /* The command structure has two 'next' pointers; v_next is the address of
  174.  * the next command as seen by the CPU, b_next is the address of the next
  175.  * command as seen by the 82596.  The b_next pointer, as used by the 82596
  176.  * always references the status field of the next command, rather than the
  177.  * v_next field, because the 82596 is unaware of v_next.  It may seem more
  178.  * logical to put v_next at the end of the structure, but we cannot do that
  179.  * because the 82596 expects other fields to be there, depending on command
  180.  * type.
  181.  */
  182. struct i596_cmd {
  183. struct i596_cmd *v_next; /* Address from CPUs viewpoint */
  184. unsigned short status;
  185. unsigned short command;
  186. struct i596_cmd *b_next; /* Address from i596 viewpoint */
  187. };
  188. struct tx_cmd {
  189. struct i596_cmd cmd;
  190. struct i596_tbd *tbd;
  191. unsigned short size;
  192. unsigned short pad;
  193. struct sk_buff *skb; /* So we can free it after tx */
  194. };
  195. struct tdr_cmd {
  196. struct i596_cmd cmd;
  197. unsigned short status;
  198. unsigned short pad;
  199. };
  200. struct mc_cmd {
  201. struct i596_cmd cmd;
  202. short mc_cnt;
  203. char mc_addrs[MAX_MC_CNT*6];
  204. };
  205. struct sa_cmd {
  206. struct i596_cmd cmd;
  207. char eth_addr[8];
  208. };
  209. struct cf_cmd {
  210. struct i596_cmd cmd;
  211. char i596_config[16];
  212. };
  213. struct i596_rfd {
  214. unsigned short stat;
  215. unsigned short cmd;
  216. struct i596_rfd *b_next; /* Address from i596 viewpoint */
  217. struct i596_rbd *rbd;
  218. unsigned short count;
  219. unsigned short size;
  220. struct i596_rfd *v_next; /* Address from CPUs viewpoint */
  221. struct i596_rfd *v_prev;
  222. };
  223. struct i596_rbd {
  224.     unsigned short count;
  225.     unsigned short zero1;
  226.     struct i596_rbd *b_next;
  227.     unsigned char *b_data; /* Address from i596 viewpoint */
  228.     unsigned short size;
  229.     unsigned short zero2;
  230.     struct sk_buff *skb;
  231.     struct i596_rbd *v_next;
  232.     struct i596_rbd *b_addr; /* This rbd addr from i596 view */
  233.     unsigned char *v_data; /* Address from CPUs viewpoint */
  234. };
  235. #define TX_RING_SIZE 64
  236. #define RX_RING_SIZE 16
  237. struct i596_scb {
  238. unsigned short status;
  239. unsigned short command;
  240. struct i596_cmd *cmd;
  241. struct i596_rfd *rfd;
  242. unsigned long crc_err;
  243. unsigned long align_err;
  244. unsigned long resource_err;
  245. unsigned long over_err;
  246. unsigned long rcvdt_err;
  247. unsigned long short_err;
  248. unsigned short t_on;
  249. unsigned short t_off;
  250. };
  251. struct i596_iscp {
  252. unsigned long stat;
  253. struct i596_scb *scb;
  254. };
  255. struct i596_scp {
  256. unsigned long sysbus;
  257. unsigned long pad;
  258. struct i596_iscp *iscp;
  259. };
  260. struct i596_private {
  261. volatile struct i596_scp scp;
  262. volatile struct i596_iscp iscp;
  263. volatile struct i596_scb scb;
  264. struct sa_cmd sa_cmd;
  265. struct cf_cmd cf_cmd;
  266. struct tdr_cmd tdr_cmd;
  267. struct mc_cmd mc_cmd;
  268. unsigned long stat;
  269. int last_restart __attribute__((aligned(4)));
  270. struct i596_rfd *rfd_head;
  271. struct i596_rbd *rbd_head;
  272. struct i596_cmd *cmd_tail;
  273. struct i596_cmd *cmd_head;
  274. int cmd_backlog;
  275. unsigned long last_cmd;
  276. struct net_device_stats stats;
  277. struct i596_rfd rfds[RX_RING_SIZE];
  278. struct i596_rbd rbds[RX_RING_SIZE];
  279. struct tx_cmd tx_cmds[TX_RING_SIZE];
  280. struct i596_tbd tbds[TX_RING_SIZE];
  281. int next_tx_cmd;
  282. spinlock_t lock;
  283. };
  284. static char init_setup[] =
  285. {
  286. 0x8E, /* length, prefetch on */
  287. 0xC8, /* fifo to 8, monitor off */
  288. #ifdef CONFIG_VME
  289. 0xc0, /* don't save bad frames */
  290. #else
  291. 0x80, /* don't save bad frames */
  292. #endif
  293. 0x2E, /* No source address insertion, 8 byte preamble */
  294. 0x00, /* priority and backoff defaults */
  295. 0x60, /* interframe spacing */
  296. 0x00, /* slot time LSB */
  297. 0xf2, /* slot time and retries */
  298. 0x00, /* promiscuous mode */
  299. 0x00, /* collision detect */
  300. 0x40, /* minimum frame length */
  301. 0xff,
  302. 0x00,
  303. 0x7f /*  *multi IA */ };
  304. static int i596_open(struct net_device *dev);
  305. static int i596_start_xmit(struct sk_buff *skb, struct net_device *dev);
  306. static void i596_interrupt(int irq, void *dev_id, struct pt_regs *regs);
  307. static int i596_close(struct net_device *dev);
  308. static struct net_device_stats *i596_get_stats(struct net_device *dev);
  309. static void i596_add_cmd(struct net_device *dev, struct i596_cmd *cmd);
  310. static void i596_tx_timeout (struct net_device *dev);
  311. static void print_eth(unsigned char *buf, char *str);
  312. static void set_multicast_list(struct net_device *dev);
  313. static int rx_ring_size = RX_RING_SIZE;
  314. static int ticks_limit = 25;
  315. static int max_cmd_backlog = TX_RING_SIZE-1;
  316. static inline void CA(struct net_device *dev)
  317. {
  318. #ifdef ENABLE_MVME16x_NET
  319. if (MACH_IS_MVME16x) {
  320. ((struct i596_reg *) dev->base_addr)->ca = 1;
  321. }
  322. #endif
  323. #ifdef ENABLE_BVME6000_NET
  324. if (MACH_IS_BVME6000) {
  325. volatile u32 i;
  326. i = *(volatile u32 *) (dev->base_addr);
  327. }
  328. #endif
  329. #ifdef ENABLE_APRICOT
  330. if (MACH_IS_APRICOT) {
  331. outw(0, (short) (dev->base_addr) + 4);
  332. }
  333. #endif
  334. }
  335. static inline void MPU_PORT(struct net_device *dev, int c, volatile void *x)
  336. {
  337. #ifdef ENABLE_MVME16x_NET
  338. if (MACH_IS_MVME16x) {
  339. struct i596_reg *p = (struct i596_reg *) (dev->base_addr);
  340. p->porthi = ((c) | (u32) (x)) & 0xffff;
  341. p->portlo = ((c) | (u32) (x)) >> 16;
  342. }
  343. #endif
  344. #ifdef ENABLE_BVME6000_NET
  345. if (MACH_IS_BVME6000) {
  346. u32 v = (u32) (c) | (u32) (x);
  347. v = ((u32) (v) << 16) | ((u32) (v) >> 16);
  348. *(volatile u32 *) dev->base_addr = v;
  349. udelay(1);
  350. *(volatile u32 *) dev->base_addr = v;
  351. }
  352. #endif
  353. }
  354. static inline int wait_istat(struct net_device *dev, struct i596_private *lp, int delcnt, char *str)
  355. {
  356. while (--delcnt && lp->iscp.stat)
  357. udelay(10);
  358. if (!delcnt) {
  359. printk("%s: %s, status %4.4x, cmd %4.4x.n",
  360.      dev->name, str, lp->scb.status, lp->scb.command);
  361. return -1;
  362. }
  363. else
  364. return 0;
  365. }
  366. static inline int wait_cmd(struct net_device *dev, struct i596_private *lp, int delcnt, char *str)
  367. {
  368. while (--delcnt && lp->scb.command)
  369. udelay(10);
  370. if (!delcnt) {
  371. printk("%s: %s, status %4.4x, cmd %4.4x.n",
  372.      dev->name, str, lp->scb.status, lp->scb.command);
  373. return -1;
  374. }
  375. else
  376. return 0;
  377. }
  378. static void i596_display_data(struct net_device *dev)
  379. {
  380. struct i596_private *lp = (struct i596_private *) dev->priv;
  381. struct i596_cmd *cmd;
  382. struct i596_rfd *rfd;
  383. struct i596_rbd *rbd;
  384. printk("lp and scp at %p, .sysbus = %08lx, .iscp = %pn",
  385.        &lp->scp, lp->scp.sysbus, lp->scp.iscp);
  386. printk("iscp at %p, iscp.stat = %08lx, .scb = %pn",
  387.        &lp->iscp, lp->iscp.stat, lp->iscp.scb);
  388. printk("scb at %p, scb.status = %04x, .command = %04x,"
  389. " .cmd = %p, .rfd = %pn",
  390.        &lp->scb, lp->scb.status, lp->scb.command,
  391. lp->scb.cmd, lp->scb.rfd);
  392. printk("   errors: crc %lx, align %lx, resource %lx,"
  393.                " over %lx, rcvdt %lx, short %lxn",
  394. lp->scb.crc_err, lp->scb.align_err, lp->scb.resource_err,
  395. lp->scb.over_err, lp->scb.rcvdt_err, lp->scb.short_err);
  396. cmd = lp->cmd_head;
  397. while (cmd != I596_NULL) {
  398. printk("cmd at %p, .status = %04x, .command = %04x, .b_next = %pn",
  399.   cmd, cmd->status, cmd->command, cmd->b_next);
  400. cmd = cmd->v_next;
  401. }
  402. rfd = lp->rfd_head;
  403. printk("rfd_head = %pn", rfd);
  404. do {
  405. printk ("   %p .stat %04x, .cmd %04x, b_next %p, rbd %p,"
  406.                         " count %04xn",
  407. rfd, rfd->stat, rfd->cmd, rfd->b_next, rfd->rbd,
  408. rfd->count);
  409. rfd = rfd->v_next;
  410. } while (rfd != lp->rfd_head);
  411. rbd = lp->rbd_head;
  412. printk("rbd_head = %pn", rbd);
  413. do {
  414. printk("   %p .count %04x, b_next %p, b_data %p, size %04xn",
  415. rbd, rbd->count, rbd->b_next, rbd->b_data, rbd->size);
  416. rbd = rbd->v_next;
  417. } while (rbd != lp->rbd_head);
  418. }
  419. #if defined(ENABLE_MVME16x_NET) || defined(ENABLE_BVME6000_NET)
  420. static void i596_error(int irq, void *dev_id, struct pt_regs *regs)
  421. {
  422. struct net_device *dev = dev_id;
  423. volatile unsigned char *pcc2 = (unsigned char *) 0xfff42000;
  424. pcc2[0x28] = 1;
  425. pcc2[0x2b] = 0x1d;
  426. printk("%s: Error interruptn", dev->name);
  427. i596_display_data(dev);
  428. }
  429. #endif
  430. static inline void init_rx_bufs(struct net_device *dev)
  431. {
  432. struct i596_private *lp = (struct i596_private *)dev->priv;
  433. int i;
  434. struct i596_rfd *rfd;
  435. struct i596_rbd *rbd;
  436. /* First build the Receive Buffer Descriptor List */
  437. for (i = 0, rbd = lp->rbds; i < rx_ring_size; i++, rbd++) {
  438. struct sk_buff *skb = dev_alloc_skb(PKT_BUF_SZ);
  439. if (skb == NULL)
  440. panic("82596: alloc_skb() failed");
  441. skb->dev = dev;
  442. rbd->v_next = rbd+1;
  443. rbd->b_next = WSWAPrbd(virt_to_bus(rbd+1));
  444. rbd->b_addr = WSWAPrbd(virt_to_bus(rbd));
  445. rbd->skb = skb;
  446. rbd->v_data = skb->tail;
  447. rbd->b_data = WSWAPchar(virt_to_bus(skb->tail));
  448. rbd->size = PKT_BUF_SZ;
  449. #ifdef __mc68000__
  450. cache_clear(virt_to_phys(skb->tail), PKT_BUF_SZ);
  451. #endif
  452. }
  453. lp->rbd_head = lp->rbds;
  454. rbd = lp->rbds + rx_ring_size - 1;
  455. rbd->v_next = lp->rbds;
  456. rbd->b_next = WSWAPrbd(virt_to_bus(lp->rbds));
  457. /* Now build the Receive Frame Descriptor List */
  458. for (i = 0, rfd = lp->rfds; i < rx_ring_size; i++, rfd++) {
  459. rfd->rbd = I596_NULL;
  460. rfd->v_next = rfd+1;
  461. rfd->v_prev = rfd-1;
  462. rfd->b_next = WSWAPrfd(virt_to_bus(rfd+1));
  463. rfd->cmd = CMD_FLEX;
  464. }
  465. lp->rfd_head = lp->rfds;
  466. lp->scb.rfd = WSWAPrfd(virt_to_bus(lp->rfds));
  467. rfd = lp->rfds;
  468. rfd->rbd = lp->rbd_head;
  469. rfd->v_prev = lp->rfds + rx_ring_size - 1;
  470. rfd = lp->rfds + rx_ring_size - 1;
  471. rfd->v_next = lp->rfds;
  472. rfd->b_next = WSWAPrfd(virt_to_bus(lp->rfds));
  473. rfd->cmd = CMD_EOL|CMD_FLEX;
  474. }
  475. static inline void remove_rx_bufs(struct net_device *dev)
  476. {
  477. struct i596_private *lp = (struct i596_private *)dev->priv;
  478. struct i596_rbd *rbd;
  479. int i;
  480. for (i = 0, rbd = lp->rbds; i < rx_ring_size; i++, rbd++) {
  481. if (rbd->skb == NULL)
  482. break;
  483. dev_kfree_skb(rbd->skb);
  484. }
  485. }
  486. static void rebuild_rx_bufs(struct net_device *dev)
  487. {
  488. struct i596_private *lp = (struct i596_private *) dev->priv;
  489. int i;
  490. /* Ensure rx frame/buffer descriptors are tidy */
  491. for (i = 0; i < rx_ring_size; i++) {
  492. lp->rfds[i].rbd = I596_NULL;
  493. lp->rfds[i].cmd = CMD_FLEX;
  494. }
  495. lp->rfds[rx_ring_size-1].cmd = CMD_EOL|CMD_FLEX;
  496. lp->rfd_head = lp->rfds;
  497. lp->scb.rfd = WSWAPrfd(virt_to_bus(lp->rfds));
  498. lp->rbd_head = lp->rbds;
  499. lp->rfds[0].rbd = WSWAPrbd(virt_to_bus(lp->rbds));
  500. }
  501. static int init_i596_mem(struct net_device *dev)
  502. {
  503. struct i596_private *lp = (struct i596_private *) dev->priv;
  504. #if !defined(ENABLE_MVME16x_NET) && !defined(ENABLE_BVME6000_NET)
  505. short ioaddr = dev->base_addr;
  506. #endif
  507. unsigned long flags;
  508. MPU_PORT(dev, PORT_RESET, 0);
  509. udelay(100); /* Wait 100us - seems to help */
  510. #if defined(ENABLE_MVME16x_NET) || defined(ENABLE_BVME6000_NET)
  511. #ifdef ENABLE_MVME16x_NET
  512. if (MACH_IS_MVME16x) {
  513. volatile unsigned char *pcc2 = (unsigned char *) 0xfff42000;
  514. /* Disable all ints for now */
  515. pcc2[0x28] = 1;
  516. pcc2[0x2a] = 0x48;
  517. /* Following disables snooping.  Snooping is not required
  518.  * as we make appropriate use of non-cached pages for
  519.  * shared data, and cache_push/cache_clear.
  520.  */
  521. pcc2[0x2b] = 0x08;
  522. }
  523. #endif
  524. #ifdef ENABLE_BVME6000_NET
  525. if (MACH_IS_BVME6000) {
  526. volatile unsigned char *ethirq = (unsigned char *) BVME_ETHIRQ_REG;
  527. *ethirq = 1;
  528. }
  529. #endif
  530. /* change the scp address */
  531. MPU_PORT(dev, PORT_ALTSCP, (void *)virt_to_bus(&lp->scp));
  532. #elif defined(ENABLE_APRICOT)
  533. {
  534. u32 scp = virt_to_bus(&lp->scp);
  535. /* change the scp address */
  536. outw(0, ioaddr);
  537. outw(0, ioaddr);
  538. outb(4, ioaddr + 0xf);
  539. outw(scp | 2, ioaddr);
  540. outw(scp >> 16, ioaddr);
  541. }
  542. #endif
  543. lp->last_cmd = jiffies;
  544. #ifdef ENABLE_MVME16x_NET
  545. if (MACH_IS_MVME16x)
  546. lp->scp.sysbus = 0x00000054;
  547. #endif
  548. #ifdef ENABLE_BVME6000_NET
  549. if (MACH_IS_BVME6000)
  550. lp->scp.sysbus = 0x0000004c;
  551. #endif
  552. #ifdef ENABLE_APRICOT
  553. if (MACH_IS_APRICOT)
  554. lp->scp.sysbus = 0x00440000;
  555. #endif
  556. lp->scp.iscp = WSWAPiscp(virt_to_bus(&(lp->iscp)));
  557. lp->iscp.scb = WSWAPscb(virt_to_bus(&(lp->scb)));
  558. lp->iscp.stat = ISCP_BUSY;
  559. lp->cmd_backlog = 0;
  560. lp->cmd_head = lp->scb.cmd = I596_NULL;
  561. DEB(DEB_INIT,printk("%s: starting i82596.n", dev->name));
  562. #if defined(ENABLE_APRICOT)
  563. (void) inb(ioaddr + 0x10);
  564. outb(4, ioaddr + 0xf);
  565. #endif
  566. CA(dev);
  567. if (wait_istat(dev,lp,1000,"initialization timed out"))
  568. goto failed;
  569. DEB(DEB_INIT,printk("%s: i82596 initialization successfuln", dev->name));
  570. /* Ensure rx frame/buffer descriptors are tidy */
  571. rebuild_rx_bufs(dev);
  572. lp->scb.command = 0;
  573. #ifdef ENABLE_MVME16x_NET
  574. if (MACH_IS_MVME16x) {
  575. volatile unsigned char *pcc2 = (unsigned char *) 0xfff42000;
  576. /* Enable ints, etc. now */
  577. pcc2[0x2a] = 0x55; /* Edge sensitive */
  578. pcc2[0x2b] = 0x15;
  579. }
  580. #endif
  581. #ifdef ENABLE_BVME6000_NET
  582. if (MACH_IS_BVME6000) {
  583. volatile unsigned char *ethirq = (unsigned char *) BVME_ETHIRQ_REG;
  584. *ethirq = 3;
  585. }
  586. #endif
  587. DEB(DEB_INIT,printk("%s: queuing CmdConfiguren", dev->name));
  588. memcpy(lp->cf_cmd.i596_config, init_setup, 14);
  589. lp->cf_cmd.cmd.command = CmdConfigure;
  590. i596_add_cmd(dev, &lp->cf_cmd.cmd);
  591. DEB(DEB_INIT,printk("%s: queuing CmdSASetupn", dev->name));
  592. memcpy(lp->sa_cmd.eth_addr, dev->dev_addr, 6);
  593. lp->sa_cmd.cmd.command = CmdSASetup;
  594. i596_add_cmd(dev, &lp->sa_cmd.cmd);
  595. DEB(DEB_INIT,printk("%s: queuing CmdTDRn", dev->name));
  596. lp->tdr_cmd.cmd.command = CmdTDR;
  597. i596_add_cmd(dev, &lp->tdr_cmd.cmd);
  598. spin_lock_irqsave (&lp->lock, flags);
  599. if (wait_cmd(dev,lp,1000,"timed out waiting to issue RX_START")) {
  600. spin_unlock_irqrestore (&lp->lock, flags);
  601. goto failed;
  602. }
  603. DEB(DEB_INIT,printk("%s: Issuing RX_STARTn", dev->name));
  604. lp->scb.command = RX_START;
  605. CA(dev);
  606. spin_unlock_irqrestore (&lp->lock, flags);
  607. if (wait_cmd(dev,lp,1000,"RX_START not processed"))
  608. goto failed;
  609. DEB(DEB_INIT,printk("%s: Receive unit started OKn", dev->name));
  610. return 0;
  611. failed:
  612. printk("%s: Failed to initialise 82596n", dev->name);
  613. MPU_PORT(dev, PORT_RESET, 0);
  614. return -1;
  615. }
  616. static inline int i596_rx(struct net_device *dev)
  617. {
  618. struct i596_private *lp = (struct i596_private *)dev->priv;
  619. struct i596_rfd *rfd;
  620. struct i596_rbd *rbd;
  621. int frames = 0;
  622. DEB(DEB_RXFRAME,printk ("i596_rx(), rfd_head %p, rbd_head %pn",
  623. lp->rfd_head, lp->rbd_head));
  624. rfd = lp->rfd_head; /* Ref next frame to check */
  625. while ((rfd->stat) & STAT_C) { /* Loop while complete frames */
  626. if (rfd->rbd == I596_NULL)
  627. rbd = I596_NULL;
  628. else if (rfd->rbd == lp->rbd_head->b_addr)
  629. rbd = lp->rbd_head;
  630. else {
  631. printk("%s: rbd chain broken!n", dev->name);
  632. /* XXX Now what? */
  633. rbd = I596_NULL;
  634. }
  635. DEB(DEB_RXFRAME, printk("  rfd %p, rfd.rbd %p, rfd.stat %04xn",
  636. rfd, rfd->rbd, rfd->stat));
  637. if (rbd != I596_NULL && ((rfd->stat) & STAT_OK)) {
  638. /* a good frame */
  639. int pkt_len = rbd->count & 0x3fff;
  640. struct sk_buff *skb = rbd->skb;
  641. int rx_in_place = 0;
  642. DEB(DEB_RXADDR,print_eth(rbd->v_data, "received"));
  643. frames++;
  644. /* Check if the packet is long enough to just accept
  645.  * without copying to a properly sized skbuff.
  646.  */
  647. if (pkt_len > rx_copybreak) {
  648. struct sk_buff *newskb;
  649. /* Get fresh skbuff to replace filled one. */
  650. newskb = dev_alloc_skb(PKT_BUF_SZ);
  651. if (newskb == NULL) {
  652. skb = NULL; /* drop pkt */
  653. goto memory_squeeze;
  654. }
  655. /* Pass up the skb already on the Rx ring. */
  656. skb_put(skb, pkt_len);
  657. rx_in_place = 1;
  658. rbd->skb = newskb;
  659. newskb->dev = dev;
  660. rbd->v_data = newskb->tail;
  661. rbd->b_data = WSWAPchar(virt_to_bus(newskb->tail));
  662. #ifdef __mc68000__
  663. cache_clear(virt_to_phys(newskb->tail), PKT_BUF_SZ);
  664. #endif
  665. }
  666. else
  667. skb = dev_alloc_skb(pkt_len + 2);
  668. memory_squeeze:
  669. if (skb == NULL) {
  670. /* XXX tulip.c can defer packets here!! */
  671. printk ("%s: i596_rx Memory squeeze, dropping packet.n", dev->name);
  672. lp->stats.rx_dropped++;
  673. }
  674. else {
  675. skb->dev = dev;
  676. if (!rx_in_place) {
  677. /* 16 byte align the data fields */
  678. skb_reserve(skb, 2);
  679. memcpy(skb_put(skb,pkt_len), rbd->v_data, pkt_len);
  680. }
  681. skb->protocol=eth_type_trans(skb,dev);
  682. skb->len = pkt_len;
  683. #ifdef __mc68000__
  684. cache_clear(virt_to_phys(rbd->skb->tail),
  685. pkt_len);
  686. #endif
  687. netif_rx(skb);
  688. dev->last_rx = jiffies;
  689. lp->stats.rx_packets++;
  690. lp->stats.rx_bytes+=pkt_len;
  691. }
  692. }
  693. else {
  694. DEB(DEB_ERRORS, printk("%s: Error, rfd.stat = 0x%04xn",
  695. dev->name, rfd->stat));
  696. lp->stats.rx_errors++;
  697. if ((rfd->stat) & 0x0001)
  698. lp->stats.collisions++;
  699. if ((rfd->stat) & 0x0080)
  700. lp->stats.rx_length_errors++;
  701. if ((rfd->stat) & 0x0100)
  702. lp->stats.rx_over_errors++;
  703. if ((rfd->stat) & 0x0200)
  704. lp->stats.rx_fifo_errors++;
  705. if ((rfd->stat) & 0x0400)
  706. lp->stats.rx_frame_errors++;
  707. if ((rfd->stat) & 0x0800)
  708. lp->stats.rx_crc_errors++;
  709. if ((rfd->stat) & 0x1000)
  710. lp->stats.rx_length_errors++;
  711. }
  712. /* Clear the buffer descriptor count and EOF + F flags */
  713. if (rbd != I596_NULL && (rbd->count & 0x4000)) {
  714. rbd->count = 0;
  715. lp->rbd_head = rbd->v_next;
  716. }
  717. /* Tidy the frame descriptor, marking it as end of list */
  718. rfd->rbd = I596_NULL;
  719. rfd->stat = 0;
  720. rfd->cmd = CMD_EOL|CMD_FLEX;
  721. rfd->count = 0;
  722. /* Remove end-of-list from old end descriptor */
  723. rfd->v_prev->cmd = CMD_FLEX;
  724. /* Update record of next frame descriptor to process */
  725. lp->scb.rfd = rfd->b_next;
  726. lp->rfd_head = rfd->v_next;
  727. rfd = lp->rfd_head;
  728. }
  729. DEB(DEB_RXFRAME,printk ("frames %dn", frames));
  730. return 0;
  731. }
  732. static inline void i596_cleanup_cmd(struct net_device *dev, struct i596_private *lp)
  733. {
  734. struct i596_cmd *ptr;
  735. while (lp->cmd_head != I596_NULL) {
  736. ptr = lp->cmd_head;
  737. lp->cmd_head = ptr->v_next;
  738. lp->cmd_backlog--;
  739. switch ((ptr->command) & 0x7) {
  740. case CmdTx:
  741. {
  742. struct tx_cmd *tx_cmd = (struct tx_cmd *) ptr;
  743. struct sk_buff *skb = tx_cmd->skb;
  744. dev_kfree_skb(skb);
  745. lp->stats.tx_errors++;
  746. lp->stats.tx_aborted_errors++;
  747. ptr->v_next = ptr->b_next = I596_NULL;
  748. tx_cmd->cmd.command = 0;  /* Mark as free */
  749. break;
  750. }
  751. default:
  752. ptr->v_next = ptr->b_next = I596_NULL;
  753. }
  754. }
  755. wait_cmd(dev,lp,100,"i596_cleanup_cmd timed out");
  756. lp->scb.cmd = I596_NULL;
  757. }
  758. static inline void i596_reset(struct net_device *dev, struct i596_private *lp, int ioaddr)
  759. {
  760. unsigned long flags;
  761. DEB(DEB_RESET,printk("i596_resetn"));
  762. spin_lock_irqsave (&lp->lock, flags);
  763. wait_cmd(dev,lp,100,"i596_reset timed out");
  764. netif_stop_queue(dev);
  765. lp->scb.command = CUC_ABORT | RX_ABORT;
  766. CA(dev);
  767. /* wait for shutdown */
  768. wait_cmd(dev,lp,1000,"i596_reset 2 timed out");
  769. spin_unlock_irqrestore (&lp->lock, flags);
  770. i596_cleanup_cmd(dev,lp);
  771. i596_rx(dev);
  772. netif_start_queue(dev);
  773. init_i596_mem(dev);
  774. }
  775. static void i596_add_cmd(struct net_device *dev, struct i596_cmd *cmd)
  776. {
  777. struct i596_private *lp = (struct i596_private *) dev->priv;
  778. int ioaddr = dev->base_addr;
  779. unsigned long flags;
  780. DEB(DEB_ADDCMD,printk("i596_add_cmdn"));
  781. cmd->status = 0;
  782. cmd->command |= (CMD_EOL | CMD_INTR);
  783. cmd->v_next = cmd->b_next = I596_NULL;
  784. spin_lock_irqsave (&lp->lock, flags);
  785. if (lp->cmd_head != I596_NULL) {
  786. lp->cmd_tail->v_next = cmd;
  787. lp->cmd_tail->b_next = WSWAPcmd(virt_to_bus(&cmd->status));
  788. } else {
  789. lp->cmd_head = cmd;
  790. wait_cmd(dev,lp,100,"i596_add_cmd timed out");
  791. lp->scb.cmd = WSWAPcmd(virt_to_bus(&cmd->status));
  792. lp->scb.command = CUC_START;
  793. CA(dev);
  794. }
  795. lp->cmd_tail = cmd;
  796. lp->cmd_backlog++;
  797. spin_unlock_irqrestore (&lp->lock, flags);
  798. if (lp->cmd_backlog > max_cmd_backlog) {
  799. unsigned long tickssofar = jiffies - lp->last_cmd;
  800. if (tickssofar < ticks_limit)
  801. return;
  802. printk("%s: command unit timed out, status resetting.n", dev->name);
  803. i596_reset(dev, lp, ioaddr);
  804. }
  805. }
  806. static int i596_open(struct net_device *dev)
  807. {
  808. int res = 0;
  809. DEB(DEB_OPEN,printk("%s: i596_open() irq %d.n", dev->name, dev->irq));
  810. if (request_irq(dev->irq, &i596_interrupt, 0, "i82596", dev)) {
  811. printk("%s: IRQ %d not freen", dev->name, dev->irq);
  812. return -EAGAIN;
  813. }
  814. #ifdef ENABLE_MVME16x_NET
  815. if (MACH_IS_MVME16x) {
  816. if (request_irq(0x56, &i596_error, 0, "i82596_error", dev))
  817. return -EAGAIN;
  818. }
  819. #endif
  820. init_rx_bufs(dev);
  821. netif_start_queue(dev);
  822. MOD_INC_USE_COUNT;
  823. /* Initialize the 82596 memory */
  824. if (init_i596_mem(dev)) {
  825. res = -EAGAIN;
  826. free_irq(dev->irq, dev);
  827. }
  828. return res;
  829. }
  830. static void i596_tx_timeout (struct net_device *dev)
  831. {
  832. struct i596_private *lp = (struct i596_private *) dev->priv;
  833. int ioaddr = dev->base_addr;
  834. /* Transmitter timeout, serious problems. */
  835. DEB(DEB_ERRORS,printk("%s: transmit timed out, status resetting.n",
  836. dev->name));
  837. lp->stats.tx_errors++;
  838. /* Try to restart the adaptor */
  839. if (lp->last_restart == lp->stats.tx_packets) {
  840. DEB(DEB_ERRORS,printk ("Resetting board.n"));
  841. /* Shutdown and restart */
  842. i596_reset (dev, lp, ioaddr);
  843. } else {
  844. /* Issue a channel attention signal */
  845. DEB(DEB_ERRORS,printk ("Kicking board.n"));
  846. lp->scb.command = CUC_START | RX_START;
  847. CA (dev);
  848. lp->last_restart = lp->stats.tx_packets;
  849. }
  850. dev->trans_start = jiffies;
  851. netif_wake_queue (dev);
  852. }
  853. static int i596_start_xmit(struct sk_buff *skb, struct net_device *dev)
  854. {
  855. struct i596_private *lp = (struct i596_private *) dev->priv;
  856. struct tx_cmd *tx_cmd;
  857. struct i596_tbd *tbd;
  858. short length = ETH_ZLEN < skb->len ? skb->len : ETH_ZLEN;
  859. dev->trans_start = jiffies;
  860. DEB(DEB_STARTTX,printk("%s: i596_start_xmit(%x,%x) calledn", dev->name,
  861. skb->len, (unsigned int)skb->data));
  862. netif_stop_queue(dev);
  863. tx_cmd = lp->tx_cmds + lp->next_tx_cmd;
  864. tbd = lp->tbds + lp->next_tx_cmd;
  865. if (tx_cmd->cmd.command) {
  866. DEB(DEB_ERRORS,printk ("%s: xmit ring full, dropping packet.n",
  867. dev->name));
  868. lp->stats.tx_dropped++;
  869. dev_kfree_skb(skb);
  870. } else {
  871. if (++lp->next_tx_cmd == TX_RING_SIZE)
  872. lp->next_tx_cmd = 0;
  873. tx_cmd->tbd = WSWAPtbd(virt_to_bus(tbd));
  874. tbd->next = I596_NULL;
  875. tx_cmd->cmd.command = CMD_FLEX | CmdTx;
  876. tx_cmd->skb = skb;
  877. tx_cmd->pad = 0;
  878. tx_cmd->size = 0;
  879. tbd->pad = 0;
  880. tbd->size = EOF | length;
  881. tbd->data = WSWAPchar(virt_to_bus(skb->data));
  882. #ifdef __mc68000__
  883. cache_push(virt_to_phys(skb->data), length);
  884. #endif
  885. DEB(DEB_TXADDR,print_eth(skb->data, "tx-queued"));
  886. i596_add_cmd(dev, &tx_cmd->cmd);
  887. lp->stats.tx_packets++;
  888. lp->stats.tx_bytes += length;
  889. }
  890. netif_start_queue(dev);
  891. return 0;
  892. }
  893. static void print_eth(unsigned char *add, char *str)
  894. {
  895. int i;
  896. printk("i596 0x%p, ", add);
  897. for (i = 0; i < 6; i++)
  898. printk(" %02X", add[i + 6]);
  899. printk(" -->");
  900. for (i = 0; i < 6; i++)
  901. printk(" %02X", add[i]);
  902. printk(" %02X%02X, %sn", add[12], add[13], str);
  903. }
  904. int __init i82596_probe(struct net_device *dev)
  905. {
  906. int i;
  907. struct i596_private *lp;
  908. char eth_addr[8];
  909. static int probed;
  910. if (probed)
  911. return -ENODEV;
  912. probed++;
  913. #ifdef ENABLE_MVME16x_NET
  914. if (MACH_IS_MVME16x) {
  915. if (mvme16x_config & MVME16x_CONFIG_NO_ETHERNET) {
  916. printk("Ethernet probe disabled - chip not presentn");
  917. return -ENODEV;
  918. }
  919. memcpy(eth_addr, (void *) 0xfffc1f2c, 6); /* YUCK! Get addr from NOVRAM */
  920. dev->base_addr = MVME_I596_BASE;
  921. dev->irq = (unsigned) MVME16x_IRQ_I596;
  922. }
  923. #endif
  924. #ifdef ENABLE_BVME6000_NET
  925. if (MACH_IS_BVME6000) {
  926. volatile unsigned char *rtc = (unsigned char *) BVME_RTC_BASE;
  927. unsigned char msr = rtc[3];
  928. int i;
  929. rtc[3] |= 0x80;
  930. for (i = 0; i < 6; i++)
  931. eth_addr[i] = rtc[i * 4 + 7]; /* Stored in RTC RAM at offset 1 */
  932. rtc[3] = msr;
  933. dev->base_addr = BVME_I596_BASE;
  934. dev->irq = (unsigned) BVME_IRQ_I596;
  935. }
  936. #endif
  937. #ifdef ENABLE_APRICOT
  938. {
  939. int checksum = 0;
  940. int ioaddr = 0x300;
  941. /* this is easy the ethernet interface can only be at 0x300 */
  942. /* first check nothing is already registered here */
  943. if (!request_region(ioaddr, I596_TOTAL_SIZE, dev->name)) {
  944. printk("82596: IO address 0x%04x in usen", ioaddr);
  945. return -EBUSY;
  946. }
  947. for (i = 0; i < 8; i++) {
  948. eth_addr[i] = inb(ioaddr + 8 + i);
  949. checksum += eth_addr[i];
  950. }
  951. /* checksum is a multiple of 0x100, got this wrong first time
  952.    some machines have 0x100, some 0x200. The DOS driver doesn't
  953.    even bother with the checksum.
  954.    Some other boards trip the checksum.. but then appear as
  955.    ether address 0. Trap these - AC */
  956. if ((checksum % 0x100) || 
  957.     (memcmp(eth_addr, "x00x00x49", 3) != 0)) {
  958. release_region(ioaddr, I596_TOTAL_SIZE);
  959. return -ENODEV;
  960. }
  961. dev->base_addr = ioaddr;
  962. dev->irq = 10;
  963. }
  964. #endif
  965. dev->mem_start = (int)__get_free_pages(GFP_ATOMIC, 0);
  966. if (!dev->mem_start) {
  967. #ifdef ENABLE_APRICOT
  968. release_region(dev->base_addr, I596_TOTAL_SIZE);
  969. #endif
  970. return -ENOMEM;
  971. }
  972. ether_setup(dev);
  973. DEB(DEB_PROBE,printk("%s: 82596 at %#3lx,", dev->name, dev->base_addr));
  974. for (i = 0; i < 6; i++)
  975. DEB(DEB_PROBE,printk(" %2.2X", dev->dev_addr[i] = eth_addr[i]));
  976. DEB(DEB_PROBE,printk(" IRQ %d.n", dev->irq));
  977. DEB(DEB_PROBE,printk(version));
  978. /* The 82596-specific entries in the device structure. */
  979. dev->open = i596_open;
  980. dev->stop = i596_close;
  981. dev->hard_start_xmit = i596_start_xmit;
  982. dev->get_stats = i596_get_stats;
  983. dev->set_multicast_list = set_multicast_list;
  984. dev->tx_timeout = i596_tx_timeout;
  985. dev->watchdog_timeo = TX_TIMEOUT;
  986. dev->priv = (void *)(dev->mem_start);
  987. lp = (struct i596_private *) dev->priv;
  988. DEB(DEB_INIT,printk ("%s: lp at 0x%08lx (%d bytes), lp->scb at 0x%08lxn",
  989. dev->name, (unsigned long)lp,
  990. sizeof(struct i596_private), (unsigned long)&lp->scb));
  991. memset((void *) lp, 0, sizeof(struct i596_private));
  992. #ifdef __mc68000__
  993. cache_push(virt_to_phys((void *)(dev->mem_start)), 4096);
  994. cache_clear(virt_to_phys((void *)(dev->mem_start)), 4096);
  995. kernel_set_cachemode((void *)(dev->mem_start), 4096, IOMAP_NOCACHE_SER);
  996. #endif
  997. lp->scb.command = 0;
  998. lp->scb.cmd = I596_NULL;
  999. lp->scb.rfd = I596_NULL;
  1000. lp->lock = SPIN_LOCK_UNLOCKED;
  1001. return 0;
  1002. }
  1003. static void i596_interrupt(int irq, void *dev_id, struct pt_regs *regs)
  1004. {
  1005. struct net_device *dev = dev_id;
  1006. struct i596_private *lp;
  1007. short ioaddr;
  1008. unsigned short status, ack_cmd = 0;
  1009. #ifdef ENABLE_BVME6000_NET
  1010. if (MACH_IS_BVME6000) {
  1011. if (*(char *) BVME_LOCAL_IRQ_STAT & BVME_ETHERR) {
  1012. i596_error(BVME_IRQ_I596, NULL, NULL);
  1013. return;
  1014. }
  1015. }
  1016. #endif
  1017. if (dev == NULL) {
  1018. printk("i596_interrupt(): irq %d for unknown device.n", irq);
  1019. return;
  1020. }
  1021. ioaddr = dev->base_addr;
  1022. lp = (struct i596_private *) dev->priv;
  1023. spin_lock (&lp->lock);
  1024. wait_cmd(dev,lp,100,"i596 interrupt, timeout");
  1025. status = lp->scb.status;
  1026. DEB(DEB_INTS,printk("%s: i596 interrupt, IRQ %d, status %4.4x.n",
  1027. dev->name, irq, status));
  1028. ack_cmd = status & 0xf000;
  1029. if ((status & 0x8000) || (status & 0x2000)) {
  1030. struct i596_cmd *ptr;
  1031. if ((status & 0x8000))
  1032. DEB(DEB_INTS,printk("%s: i596 interrupt completed command.n", dev->name));
  1033. if ((status & 0x2000))
  1034. DEB(DEB_INTS,printk("%s: i596 interrupt command unit inactive %x.n", dev->name, status & 0x0700));
  1035. while ((lp->cmd_head != I596_NULL) && (lp->cmd_head->status & STAT_C)) {
  1036. ptr = lp->cmd_head;
  1037. DEB(DEB_STATUS,printk("cmd_head->status = %04x, ->command = %04xn",
  1038.        lp->cmd_head->status, lp->cmd_head->command));
  1039. lp->cmd_head = ptr->v_next;
  1040. lp->cmd_backlog--;
  1041. switch ((ptr->command) & 0x7) {
  1042. case CmdTx:
  1043.     {
  1044. struct tx_cmd *tx_cmd = (struct tx_cmd *) ptr;
  1045. struct sk_buff *skb = tx_cmd->skb;
  1046. if ((ptr->status) & STAT_OK) {
  1047. DEB(DEB_TXADDR,print_eth(skb->data, "tx-done"));
  1048. } else {
  1049. lp->stats.tx_errors++;
  1050. if ((ptr->status) & 0x0020)
  1051. lp->stats.collisions++;
  1052. if (!((ptr->status) & 0x0040))
  1053. lp->stats.tx_heartbeat_errors++;
  1054. if ((ptr->status) & 0x0400)
  1055. lp->stats.tx_carrier_errors++;
  1056. if ((ptr->status) & 0x0800)
  1057. lp->stats.collisions++;
  1058. if ((ptr->status) & 0x1000)
  1059. lp->stats.tx_aborted_errors++;
  1060. }
  1061. dev_kfree_skb_irq(skb);
  1062. tx_cmd->cmd.command = 0; /* Mark free */
  1063. break;
  1064.     }
  1065. case CmdTDR:
  1066.     {
  1067. unsigned short status = ((struct tdr_cmd *)ptr)->status;
  1068. if (status & 0x8000) {
  1069. DEB(DEB_ANY,printk("%s: link ok.n", dev->name));
  1070. } else {
  1071. if (status & 0x4000)
  1072. printk("%s: Transceiver problem.n", dev->name);
  1073. if (status & 0x2000)
  1074. printk("%s: Termination problem.n", dev->name);
  1075. if (status & 0x1000)
  1076. printk("%s: Short circuit.n", dev->name);
  1077. DEB(DEB_TDR,printk("%s: Time %d.n", dev->name, status & 0x07ff));
  1078. }
  1079. break;
  1080.     }
  1081. case CmdConfigure:
  1082. /* Zap command so set_multicast_list() knows it is free */
  1083. ptr->command = 0;
  1084. break;
  1085. }
  1086. ptr->v_next = ptr->b_next = I596_NULL;
  1087. lp->last_cmd = jiffies;
  1088. }
  1089. ptr = lp->cmd_head;
  1090. while ((ptr != I596_NULL) && (ptr != lp->cmd_tail)) {
  1091. ptr->command &= 0x1fff;
  1092. ptr = ptr->v_next;
  1093. }
  1094. if ((lp->cmd_head != I596_NULL))
  1095. ack_cmd |= CUC_START;
  1096. lp->scb.cmd = WSWAPcmd(virt_to_bus(&lp->cmd_head->status));
  1097. }
  1098. if ((status & 0x1000) || (status & 0x4000)) {
  1099. if ((status & 0x4000))
  1100. DEB(DEB_INTS,printk("%s: i596 interrupt received a frame.n", dev->name));
  1101. i596_rx(dev);
  1102. /* Only RX_START if stopped - RGH 07-07-96 */
  1103. if (status & 0x1000) {
  1104. if (netif_running(dev)) {
  1105. DEB(DEB_ERRORS,printk("%s: i596 interrupt receive unit inactive, status 0x%xn", dev->name, status));
  1106. ack_cmd |= RX_START;
  1107. lp->stats.rx_errors++;
  1108. lp->stats.rx_fifo_errors++;
  1109. rebuild_rx_bufs(dev);
  1110. }
  1111. }
  1112. }
  1113. wait_cmd(dev,lp,100,"i596 interrupt, timeout");
  1114. lp->scb.command = ack_cmd;
  1115. #ifdef ENABLE_MVME16x_NET
  1116. if (MACH_IS_MVME16x) {
  1117. /* Ack the interrupt */
  1118. volatile unsigned char *pcc2 = (unsigned char *) 0xfff42000;
  1119. pcc2[0x2a] |= 0x08;
  1120. }
  1121. #endif
  1122. #ifdef ENABLE_BVME6000_NET
  1123. if (MACH_IS_BVME6000) {
  1124. volatile unsigned char *ethirq = (unsigned char *) BVME_ETHIRQ_REG;
  1125. *ethirq = 1;
  1126. *ethirq = 3;
  1127. }
  1128. #endif
  1129. #ifdef ENABLE_APRICOT
  1130. (void) inb(ioaddr + 0x10);
  1131. outb(4, ioaddr + 0xf);
  1132. #endif
  1133. CA(dev);
  1134. DEB(DEB_INTS,printk("%s: exiting interrupt.n", dev->name));
  1135. spin_unlock (&lp->lock);
  1136. return;
  1137. }
  1138. static int i596_close(struct net_device *dev)
  1139. {
  1140. struct i596_private *lp = (struct i596_private *) dev->priv;
  1141. unsigned long flags;
  1142. netif_stop_queue(dev);
  1143. DEB(DEB_INIT,printk("%s: Shutting down ethercard, status was %4.4x.n",
  1144.        dev->name, lp->scb.status));
  1145. save_flags(flags);
  1146. cli();
  1147. wait_cmd(dev,lp,100,"close1 timed out");
  1148. lp->scb.command = CUC_ABORT | RX_ABORT;
  1149. CA(dev);
  1150. wait_cmd(dev,lp,100,"close2 timed out");
  1151. restore_flags(flags);
  1152. DEB(DEB_STRUCT,i596_display_data(dev));
  1153. i596_cleanup_cmd(dev,lp);
  1154. #ifdef ENABLE_MVME16x_NET
  1155. if (MACH_IS_MVME16x) {
  1156. volatile unsigned char *pcc2 = (unsigned char *) 0xfff42000;
  1157. /* Disable all ints */
  1158. pcc2[0x28] = 1;
  1159. pcc2[0x2a] = 0x40;
  1160. pcc2[0x2b] = 0x40; /* Set snooping bits now! */
  1161. }
  1162. #endif
  1163. #ifdef ENABLE_BVME6000_NET
  1164. if (MACH_IS_BVME6000) {
  1165. volatile unsigned char *ethirq = (unsigned char *) BVME_ETHIRQ_REG;
  1166. *ethirq = 1;
  1167. }
  1168. #endif
  1169. free_irq(dev->irq, dev);
  1170. remove_rx_bufs(dev);
  1171. MOD_DEC_USE_COUNT;
  1172. return 0;
  1173. }
  1174. static struct net_device_stats *
  1175.  i596_get_stats(struct net_device *dev)
  1176. {
  1177. struct i596_private *lp = (struct i596_private *) dev->priv;
  1178. return &lp->stats;
  1179. }
  1180. /*
  1181.  *    Set or clear the multicast filter for this adaptor.
  1182.  */
  1183. static void set_multicast_list(struct net_device *dev)
  1184. {
  1185. struct i596_private *lp = (struct i596_private *) dev->priv;
  1186. int config = 0, cnt;
  1187. DEB(DEB_MULTI,printk("%s: set multicast list, %d entries, promisc %s, allmulti %sn", dev->name, dev->mc_count, dev->flags & IFF_PROMISC ? "ON" : "OFF", dev->flags & IFF_ALLMULTI ? "ON" : "OFF"));
  1188. if ((dev->flags & IFF_PROMISC) && !(lp->cf_cmd.i596_config[8] & 0x01)) {
  1189. lp->cf_cmd.i596_config[8] |= 0x01;
  1190. config = 1;
  1191. }
  1192. if (!(dev->flags & IFF_PROMISC) && (lp->cf_cmd.i596_config[8] & 0x01)) {
  1193. lp->cf_cmd.i596_config[8] &= ~0x01;
  1194. config = 1;
  1195. }
  1196. if ((dev->flags & IFF_ALLMULTI) && (lp->cf_cmd.i596_config[11] & 0x20)) {
  1197. lp->cf_cmd.i596_config[11] &= ~0x20;
  1198. config = 1;
  1199. }
  1200. if (!(dev->flags & IFF_ALLMULTI) && !(lp->cf_cmd.i596_config[11] & 0x20)) {
  1201. lp->cf_cmd.i596_config[11] |= 0x20;
  1202. config = 1;
  1203. }
  1204. if (config) {
  1205. if (lp->cf_cmd.cmd.command)
  1206. printk("%s: config change request already queuedn",
  1207.        dev->name);
  1208. else {
  1209. lp->cf_cmd.cmd.command = CmdConfigure;
  1210. i596_add_cmd(dev, &lp->cf_cmd.cmd);
  1211. }
  1212. }
  1213. cnt = dev->mc_count;
  1214. if (cnt > MAX_MC_CNT)
  1215. {
  1216. cnt = MAX_MC_CNT;
  1217. printk("%s: Only %d multicast addresses supported",
  1218. dev->name, cnt);
  1219. }
  1220. if (dev->mc_count > 0) {
  1221. struct dev_mc_list *dmi;
  1222. unsigned char *cp;
  1223. struct mc_cmd *cmd;
  1224. cmd = &lp->mc_cmd;
  1225. cmd->cmd.command = CmdMulticastList;
  1226. cmd->mc_cnt = dev->mc_count * 6;
  1227. cp = cmd->mc_addrs;
  1228. for (dmi = dev->mc_list; cnt && dmi != NULL; dmi = dmi->next, cnt--, cp += 6) {
  1229. memcpy(cp, dmi->dmi_addr, 6);
  1230. if (i596_debug > 1)
  1231. DEB(DEB_MULTI,printk("%s: Adding address %02x:%02x:%02x:%02x:%02x:%02xn",
  1232. dev->name, cp[0],cp[1],cp[2],cp[3],cp[4],cp[5]));
  1233. }
  1234. i596_add_cmd(dev, &cmd->cmd);
  1235. }
  1236. }
  1237. #ifdef MODULE
  1238. static struct net_device dev_82596 = { init: i82596_probe };
  1239. #ifdef ENABLE_APRICOT
  1240. static int io = 0x300;
  1241. static int irq = 10;
  1242. MODULE_PARM(irq, "i");
  1243. MODULE_PARM_DESC(irq, "Apricot IRQ number");
  1244. #endif
  1245. MODULE_PARM(debug, "i");
  1246. MODULE_PARM_DESC(debug, "i82596 debug mask");
  1247. static int debug = -1;
  1248. int init_module(void)
  1249. {
  1250. #ifdef ENABLE_APRICOT
  1251. dev_82596.base_addr = io;
  1252. dev_82596.irq = irq;
  1253. #endif
  1254. if (debug >= 0)
  1255. i596_debug = debug;
  1256. if (register_netdev(&dev_82596) != 0)
  1257. return -EIO;
  1258. return 0;
  1259. }
  1260. void cleanup_module(void)
  1261. {
  1262. unregister_netdev(&dev_82596);
  1263. #ifdef __mc68000__
  1264. /* XXX This assumes default cache mode to be IOMAP_FULL_CACHING,
  1265.  * XXX which may be invalid (CONFIG_060_WRITETHROUGH)
  1266.  */
  1267. kernel_set_cachemode((void *)(dev_82596.mem_start), 4096,
  1268. IOMAP_FULL_CACHING);
  1269. #endif
  1270. free_page ((u32)(dev_82596.mem_start));
  1271. dev_82596.priv = NULL;
  1272. #ifdef ENABLE_APRICOT
  1273. /* If we don't do this, we can't re-insmod it later. */
  1274. release_region(dev_82596.base_addr, I596_TOTAL_SIZE);
  1275. #endif
  1276. }
  1277. #endif /* MODULE */
  1278. /*
  1279.  * Local variables:
  1280.  *  compile-command: "gcc -D__KERNEL__ -I/usr/src/linux/net/inet -Wall -Wstrict-prototypes -O6 -m486 -c 82596.c"
  1281.  * End:
  1282.  */