tc35815: Define more Rx status bits
[linux-2.6/x86.git] / drivers / net / tokenring / abyss.c
blobb566d6d79ecdbe7ce0a5f58f7546f50e77600ec5
1 /*
2 * abyss.c: Network driver for the Madge Smart 16/4 PCI Mk2 token ring card.
4 * Written 1999-2000 by Adam Fritzler
6 * This software may be used and distributed according to the terms
7 * of the GNU General Public License, incorporated herein by reference.
9 * This driver module supports the following cards:
10 * - Madge Smart 16/4 PCI Mk2
12 * Maintainer(s):
13 * AF Adam Fritzler
15 * Modification History:
16 * 30-Dec-99 AF Split off from the tms380tr driver.
17 * 22-Jan-00 AF Updated to use indirect read/writes
18 * 23-Nov-00 JG New PCI API, cleanups
21 * TODO:
22 * 1. See if we can use MMIO instead of inb/outb/inw/outw
23 * 2. Add support for Mk1 (has AT24 attached to the PCI
24 * config registers)
28 #include <linux/module.h>
29 #include <linux/kernel.h>
30 #include <linux/errno.h>
31 #include <linux/pci.h>
32 #include <linux/init.h>
33 #include <linux/netdevice.h>
34 #include <linux/trdevice.h>
36 #include <asm/system.h>
37 #include <asm/io.h>
38 #include <asm/irq.h>
40 #include "tms380tr.h"
41 #include "abyss.h" /* Madge-specific constants */
43 static char version[] __devinitdata =
44 "abyss.c: v1.02 23/11/2000 by Adam Fritzler\n";
46 #define ABYSS_IO_EXTENT 64
48 static struct pci_device_id abyss_pci_tbl[] = {
49 { PCI_VENDOR_ID_MADGE, PCI_DEVICE_ID_MADGE_MK2,
50 PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_NETWORK_TOKEN_RING << 8, 0x00ffffff, },
51 { } /* Terminating entry */
53 MODULE_DEVICE_TABLE(pci, abyss_pci_tbl);
55 MODULE_LICENSE("GPL");
57 static int abyss_open(struct net_device *dev);
58 static int abyss_close(struct net_device *dev);
59 static void abyss_enable(struct net_device *dev);
60 static int abyss_chipset_init(struct net_device *dev);
61 static void abyss_read_eeprom(struct net_device *dev);
62 static unsigned short abyss_setnselout_pins(struct net_device *dev);
64 static void at24_writedatabyte(unsigned long regaddr, unsigned char byte);
65 static int at24_sendfullcmd(unsigned long regaddr, unsigned char cmd, unsigned char addr);
66 static int at24_sendcmd(unsigned long regaddr, unsigned char cmd);
67 static unsigned char at24_readdatabit(unsigned long regaddr);
68 static unsigned char at24_readdatabyte(unsigned long regaddr);
69 static int at24_waitforack(unsigned long regaddr);
70 static int at24_waitfornack(unsigned long regaddr);
71 static void at24_setlines(unsigned long regaddr, unsigned char clock, unsigned char data);
72 static void at24_start(unsigned long regaddr);
73 static unsigned char at24_readb(unsigned long regaddr, unsigned char addr);
75 static unsigned short abyss_sifreadb(struct net_device *dev, unsigned short reg)
77 return inb(dev->base_addr + reg);
80 static unsigned short abyss_sifreadw(struct net_device *dev, unsigned short reg)
82 return inw(dev->base_addr + reg);
85 static void abyss_sifwriteb(struct net_device *dev, unsigned short val, unsigned short reg)
87 outb(val, dev->base_addr + reg);
90 static void abyss_sifwritew(struct net_device *dev, unsigned short val, unsigned short reg)
92 outw(val, dev->base_addr + reg);
95 static int __devinit abyss_attach(struct pci_dev *pdev, const struct pci_device_id *ent)
97 static int versionprinted;
98 struct net_device *dev;
99 struct net_local *tp;
100 int ret, pci_irq_line;
101 unsigned long pci_ioaddr;
103 if (versionprinted++ == 0)
104 printk("%s", version);
106 if (pci_enable_device(pdev))
107 return -EIO;
109 /* Remove I/O space marker in bit 0. */
110 pci_irq_line = pdev->irq;
111 pci_ioaddr = pci_resource_start (pdev, 0);
113 /* At this point we have found a valid card. */
115 dev = alloc_trdev(sizeof(struct net_local));
116 if (!dev)
117 return -ENOMEM;
119 if (!request_region(pci_ioaddr, ABYSS_IO_EXTENT, dev->name)) {
120 ret = -EBUSY;
121 goto err_out_trdev;
124 ret = request_irq(pdev->irq, tms380tr_interrupt, IRQF_SHARED,
125 dev->name, dev);
126 if (ret)
127 goto err_out_region;
129 dev->base_addr = pci_ioaddr;
130 dev->irq = pci_irq_line;
132 printk("%s: Madge Smart 16/4 PCI Mk2 (Abyss)\n", dev->name);
133 printk("%s: IO: %#4lx IRQ: %d\n",
134 dev->name, pci_ioaddr, dev->irq);
136 * The TMS SIF registers lay 0x10 above the card base address.
138 dev->base_addr += 0x10;
140 ret = tmsdev_init(dev, &pdev->dev);
141 if (ret) {
142 printk("%s: unable to get memory for dev->priv.\n",
143 dev->name);
144 goto err_out_irq;
147 abyss_read_eeprom(dev);
149 printk("%s: Ring Station Address: %pM\n", dev->name, dev->dev_addr);
151 tp = netdev_priv(dev);
152 tp->setnselout = abyss_setnselout_pins;
153 tp->sifreadb = abyss_sifreadb;
154 tp->sifreadw = abyss_sifreadw;
155 tp->sifwriteb = abyss_sifwriteb;
156 tp->sifwritew = abyss_sifwritew;
158 memcpy(tp->ProductID, "Madge PCI 16/4 Mk2", PROD_ID_SIZE + 1);
160 dev->open = abyss_open;
161 dev->stop = abyss_close;
163 pci_set_drvdata(pdev, dev);
164 SET_NETDEV_DEV(dev, &pdev->dev);
166 ret = register_netdev(dev);
167 if (ret)
168 goto err_out_tmsdev;
169 return 0;
171 err_out_tmsdev:
172 pci_set_drvdata(pdev, NULL);
173 tmsdev_term(dev);
174 err_out_irq:
175 free_irq(pdev->irq, dev);
176 err_out_region:
177 release_region(pci_ioaddr, ABYSS_IO_EXTENT);
178 err_out_trdev:
179 free_netdev(dev);
180 return ret;
183 static unsigned short abyss_setnselout_pins(struct net_device *dev)
185 unsigned short val = 0;
186 struct net_local *tp = netdev_priv(dev);
188 if(tp->DataRate == SPEED_4)
189 val |= 0x01; /* Set 4Mbps */
190 else
191 val |= 0x00; /* Set 16Mbps */
193 return val;
197 * The following Madge boards should use this code:
198 * - Smart 16/4 PCI Mk2 (Abyss)
199 * - Smart 16/4 PCI Mk1 (PCI T)
200 * - Smart 16/4 Client Plus PnP (Big Apple)
201 * - Smart 16/4 Cardbus Mk2
203 * These access an Atmel AT24 SEEPROM using their glue chip registers.
206 static void at24_writedatabyte(unsigned long regaddr, unsigned char byte)
208 int i;
210 for (i = 0; i < 8; i++) {
211 at24_setlines(regaddr, 0, (byte >> (7-i))&0x01);
212 at24_setlines(regaddr, 1, (byte >> (7-i))&0x01);
213 at24_setlines(regaddr, 0, (byte >> (7-i))&0x01);
217 static int at24_sendfullcmd(unsigned long regaddr, unsigned char cmd, unsigned char addr)
219 if (at24_sendcmd(regaddr, cmd)) {
220 at24_writedatabyte(regaddr, addr);
221 return at24_waitforack(regaddr);
223 return 0;
226 static int at24_sendcmd(unsigned long regaddr, unsigned char cmd)
228 int i;
230 for (i = 0; i < 10; i++) {
231 at24_start(regaddr);
232 at24_writedatabyte(regaddr, cmd);
233 if (at24_waitforack(regaddr))
234 return 1;
236 return 0;
239 static unsigned char at24_readdatabit(unsigned long regaddr)
241 unsigned char val;
243 at24_setlines(regaddr, 0, 1);
244 at24_setlines(regaddr, 1, 1);
245 val = (inb(regaddr) & AT24_DATA)?1:0;
246 at24_setlines(regaddr, 1, 1);
247 at24_setlines(regaddr, 0, 1);
248 return val;
251 static unsigned char at24_readdatabyte(unsigned long regaddr)
253 unsigned char data = 0;
254 int i;
256 for (i = 0; i < 8; i++) {
257 data <<= 1;
258 data |= at24_readdatabit(regaddr);
261 return data;
264 static int at24_waitforack(unsigned long regaddr)
266 int i;
268 for (i = 0; i < 10; i++) {
269 if ((at24_readdatabit(regaddr) & 0x01) == 0x00)
270 return 1;
272 return 0;
275 static int at24_waitfornack(unsigned long regaddr)
277 int i;
278 for (i = 0; i < 10; i++) {
279 if ((at24_readdatabit(regaddr) & 0x01) == 0x01)
280 return 1;
282 return 0;
285 static void at24_setlines(unsigned long regaddr, unsigned char clock, unsigned char data)
287 unsigned char val = AT24_ENABLE;
288 if (clock)
289 val |= AT24_CLOCK;
290 if (data)
291 val |= AT24_DATA;
293 outb(val, regaddr);
294 tms380tr_wait(20); /* Very necessary. */
297 static void at24_start(unsigned long regaddr)
299 at24_setlines(regaddr, 0, 1);
300 at24_setlines(regaddr, 1, 1);
301 at24_setlines(regaddr, 1, 0);
302 at24_setlines(regaddr, 0, 1);
305 static unsigned char at24_readb(unsigned long regaddr, unsigned char addr)
307 unsigned char data = 0xff;
309 if (at24_sendfullcmd(regaddr, AT24_WRITE, addr)) {
310 if (at24_sendcmd(regaddr, AT24_READ)) {
311 data = at24_readdatabyte(regaddr);
312 if (!at24_waitfornack(regaddr))
313 data = 0xff;
316 return data;
321 * Enable basic functions of the Madge chipset needed
322 * for initialization.
324 static void abyss_enable(struct net_device *dev)
326 unsigned char reset_reg;
327 unsigned long ioaddr;
329 ioaddr = dev->base_addr;
330 reset_reg = inb(ioaddr + PCIBM2_RESET_REG);
331 reset_reg |= PCIBM2_RESET_REG_CHIP_NRES;
332 outb(reset_reg, ioaddr + PCIBM2_RESET_REG);
333 tms380tr_wait(100);
337 * Enable the functions of the Madge chipset needed for
338 * full working order.
340 static int abyss_chipset_init(struct net_device *dev)
342 unsigned char reset_reg;
343 unsigned long ioaddr;
345 ioaddr = dev->base_addr;
347 reset_reg = inb(ioaddr + PCIBM2_RESET_REG);
349 reset_reg |= PCIBM2_RESET_REG_CHIP_NRES;
350 outb(reset_reg, ioaddr + PCIBM2_RESET_REG);
352 reset_reg &= ~(PCIBM2_RESET_REG_CHIP_NRES |
353 PCIBM2_RESET_REG_FIFO_NRES |
354 PCIBM2_RESET_REG_SIF_NRES);
355 outb(reset_reg, ioaddr + PCIBM2_RESET_REG);
357 tms380tr_wait(100);
359 reset_reg |= PCIBM2_RESET_REG_CHIP_NRES;
360 outb(reset_reg, ioaddr + PCIBM2_RESET_REG);
362 reset_reg |= PCIBM2_RESET_REG_SIF_NRES;
363 outb(reset_reg, ioaddr + PCIBM2_RESET_REG);
365 reset_reg |= PCIBM2_RESET_REG_FIFO_NRES;
366 outb(reset_reg, ioaddr + PCIBM2_RESET_REG);
368 outb(PCIBM2_INT_CONTROL_REG_SINTEN |
369 PCIBM2_INT_CONTROL_REG_PCI_ERR_ENABLE,
370 ioaddr + PCIBM2_INT_CONTROL_REG);
372 outb(30, ioaddr + PCIBM2_FIFO_THRESHOLD);
374 return 0;
377 static inline void abyss_chipset_close(struct net_device *dev)
379 unsigned long ioaddr;
381 ioaddr = dev->base_addr;
382 outb(0, ioaddr + PCIBM2_RESET_REG);
386 * Read configuration data from the AT24 SEEPROM on Madge cards.
389 static void abyss_read_eeprom(struct net_device *dev)
391 struct net_local *tp;
392 unsigned long ioaddr;
393 unsigned short val;
394 int i;
396 tp = netdev_priv(dev);
397 ioaddr = dev->base_addr;
399 /* Must enable glue chip first */
400 abyss_enable(dev);
402 val = at24_readb(ioaddr + PCIBM2_SEEPROM_REG,
403 PCIBM2_SEEPROM_RING_SPEED);
404 tp->DataRate = val?SPEED_4:SPEED_16; /* set open speed */
405 printk("%s: SEEPROM: ring speed: %dMb/sec\n", dev->name, tp->DataRate);
407 val = at24_readb(ioaddr + PCIBM2_SEEPROM_REG,
408 PCIBM2_SEEPROM_RAM_SIZE) * 128;
409 printk("%s: SEEPROM: adapter RAM: %dkb\n", dev->name, val);
411 dev->addr_len = 6;
412 for (i = 0; i < 6; i++)
413 dev->dev_addr[i] = at24_readb(ioaddr + PCIBM2_SEEPROM_REG,
414 PCIBM2_SEEPROM_BIA+i);
417 static int abyss_open(struct net_device *dev)
419 abyss_chipset_init(dev);
420 tms380tr_open(dev);
421 return 0;
424 static int abyss_close(struct net_device *dev)
426 tms380tr_close(dev);
427 abyss_chipset_close(dev);
428 return 0;
431 static void __devexit abyss_detach (struct pci_dev *pdev)
433 struct net_device *dev = pci_get_drvdata(pdev);
435 BUG_ON(!dev);
436 unregister_netdev(dev);
437 release_region(dev->base_addr-0x10, ABYSS_IO_EXTENT);
438 free_irq(dev->irq, dev);
439 tmsdev_term(dev);
440 free_netdev(dev);
441 pci_set_drvdata(pdev, NULL);
444 static struct pci_driver abyss_driver = {
445 .name = "abyss",
446 .id_table = abyss_pci_tbl,
447 .probe = abyss_attach,
448 .remove = __devexit_p(abyss_detach),
451 static int __init abyss_init (void)
453 return pci_register_driver(&abyss_driver);
456 static void __exit abyss_rmmod (void)
458 pci_unregister_driver (&abyss_driver);
461 module_init(abyss_init);
462 module_exit(abyss_rmmod);