1 /* $Id: cosa.c,v 1.31 2000/03/08 17:47:16 kas Exp $ */
4 * Copyright (C) 1995-1997 Jan "Yenya" Kasprzak <kas@fi.muni.cz>
5 * Generic HDLC port Copyright (C) 2008 Krzysztof Halasa <khc@pm.waw.pl>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 * The driver for the SRP and COSA synchronous serial cards.
27 * Both cards are developed at the Institute of Computer Science,
28 * Masaryk University (http://www.ics.muni.cz/). The hardware is
29 * developed by Jiri Novotny <novotny@ics.muni.cz>. More information
30 * and the photo of both cards is available at
31 * http://www.pavoucek.cz/cosa.html. The card documentation, firmwares
32 * and other goods can be downloaded from ftp://ftp.ics.muni.cz/pub/cosa/.
33 * For Linux-specific utilities, see below in the "Software info" section.
34 * If you want to order the card, contact Jiri Novotny.
36 * The SRP (serial port?, the Czech word "srp" means "sickle") card
37 * is a 2-port intelligent (with its own 8-bit CPU) synchronous serial card
38 * with V.24 interfaces up to 80kb/s each.
40 * The COSA (communication serial adapter?, the Czech word "kosa" means
41 * "scythe") is a next-generation sync/async board with two interfaces
42 * - currently any of V.24, X.21, V.35 and V.36 can be selected.
43 * It has a 16-bit SAB80166 CPU and can do up to 10 Mb/s per channel.
44 * The 8-channels version is in development.
46 * Both types have downloadable firmware and communicate via ISA DMA.
47 * COSA can be also a bus-mastering device.
51 * The homepage of the Linux driver is at http://www.fi.muni.cz/~kas/cosa/.
52 * The CVS tree of Linux driver can be viewed there, as well as the
53 * firmware binaries and user-space utilities for downloading the firmware
54 * into the card and setting up the card.
56 * The Linux driver (unlike the present *BSD drivers :-) can work even
57 * for the COSA and SRP in one computer and allows each channel to work
58 * in one of the two modes (character or network device).
62 * The Linux driver was written by Jan "Yenya" Kasprzak <kas@fi.muni.cz>.
64 * You can mail me bugfixes and even success reports. I am especially
65 * interested in the SMP and/or muliti-channel success/failure reports
66 * (I wonder if I did the locking properly :-).
68 * THE AUTHOR USED THE FOLLOWING SOURCES WHEN PROGRAMMING THE DRIVER
70 * The COSA/SRP NetBSD driver by Zdenek Salvet and Ivos Cernohlavek
71 * The skeleton.c by Donald Becker
72 * The SDL Riscom/N2 driver by Mike Natale
73 * The Comtrol Hostess SV11 driver by Alan Cox
74 * The Sync PPP/Cisco HDLC layer (syncppp.c) ported to Linux by Alan Cox
77 #include <linux/module.h>
78 #include <linux/kernel.h>
79 #include <linux/slab.h>
80 #include <linux/poll.h>
82 #include <linux/interrupt.h>
83 #include <linux/delay.h>
84 #include <linux/hdlc.h>
85 #include <linux/errno.h>
86 #include <linux/ioport.h>
87 #include <linux/netdevice.h>
88 #include <linux/spinlock.h>
89 #include <linux/mutex.h>
90 #include <linux/device.h>
91 #include <linux/smp_lock.h>
94 #include <asm/byteorder.h>
96 #undef COSA_SLOW_IO /* for testing purposes only */
100 /* Maximum length of the identification string. */
101 #define COSA_MAX_ID_STRING 128
103 /* Maximum length of the channel name */
104 #define COSA_MAX_NAME (sizeof("cosaXXXcXXX")+1)
106 /* Per-channel data structure */
108 struct channel_data {
109 int usage; /* Usage count; >0 for chrdev, -1 for netdev */
110 int num; /* Number of the channel */
111 struct cosa_data *cosa; /* Pointer to the per-card structure */
112 int txsize; /* Size of transmitted data */
113 char *txbuf; /* Transmit buffer */
114 char name[COSA_MAX_NAME]; /* channel name */
116 /* The HW layer interface */
117 /* routine called from the RX interrupt */
118 char *(*setup_rx)(struct channel_data *channel, int size);
119 /* routine called when the RX is done (from the EOT interrupt) */
120 int (*rx_done)(struct channel_data *channel);
121 /* routine called when the TX is done (from the EOT interrupt) */
122 int (*tx_done)(struct channel_data *channel, int size);
124 /* Character device parts */
126 struct semaphore wsem;
129 wait_queue_head_t txwaitq, rxwaitq;
130 int tx_status, rx_status;
132 /* generic HDLC device parts */
133 struct net_device *netdev;
134 struct sk_buff *rx_skb, *tx_skb;
137 /* cosa->firmware_status bits */
138 #define COSA_FW_RESET (1<<0) /* Is the ROM monitor active? */
139 #define COSA_FW_DOWNLOAD (1<<1) /* Is the microcode downloaded? */
140 #define COSA_FW_START (1<<2) /* Is the microcode running? */
143 int num; /* Card number */
144 char name[COSA_MAX_NAME]; /* Card name - e.g "cosa0" */
145 unsigned int datareg, statusreg; /* I/O ports */
146 unsigned short irq, dma; /* IRQ and DMA number */
147 unsigned short startaddr; /* Firmware start address */
148 unsigned short busmaster; /* Use busmastering? */
149 int nchannels; /* # of channels on this card */
150 int driver_status; /* For communicating with firmware */
151 int firmware_status; /* Downloaded, reseted, etc. */
152 unsigned long rxbitmap, txbitmap;/* Bitmap of channels who are willing to send/receive data */
153 unsigned long rxtx; /* RX or TX in progress? */
155 int usage; /* usage count */
156 int txchan, txsize, rxsize;
157 struct channel_data *rxchan;
160 struct channel_data *chan;
161 spinlock_t lock; /* For exclusive operations on this structure */
162 char id_string[COSA_MAX_ID_STRING]; /* ROM monitor ID string */
163 char *type; /* card type */
167 * Define this if you want all the possible ports to be autoprobed.
168 * It is here but it probably is not a good idea to use this.
170 /* #define COSA_ISA_AUTOPROBE 1 */
173 * Character device major number. 117 was allocated for us.
174 * The value of 0 means to allocate a first free one.
176 static int cosa_major = 117;
179 * Encoding of the minor numbers:
180 * The lowest CARD_MINOR_BITS bits means the channel on the single card,
181 * the highest bits means the card number.
183 #define CARD_MINOR_BITS 4 /* How many bits in minor number are reserved
184 * for the single card */
186 * The following depends on CARD_MINOR_BITS. Unfortunately, the "MODULE_STRING"
187 * macro doesn't like anything other than the raw number as an argument :-(
190 /* #define MAX_CARDS (1 << (8-CARD_MINOR_BITS)) */
192 #define DRIVER_RX_READY 0x0001
193 #define DRIVER_TX_READY 0x0002
194 #define DRIVER_TXMAP_SHIFT 2
195 #define DRIVER_TXMAP_MASK 0x0c /* FIXME: 0xfc for 8-channel version */
198 * for cosa->rxtx - indicates whether either transmit or receive is
199 * in progress. These values are mean number of the bit.
205 #define COSA_MTU 2000 /* FIXME: I don't know this exactly */
207 #undef DEBUG_DATA //1 /* Dump the data read or written to the channel */
208 #undef DEBUG_IRQS //1 /* Print the message when the IRQ is received */
209 #undef DEBUG_IO //1 /* Dump the I/O traffic */
211 #define TX_TIMEOUT (5*HZ)
213 /* Maybe the following should be allocated dynamically */
214 static struct cosa_data cosa_cards[MAX_CARDS];
217 #ifdef COSA_ISA_AUTOPROBE
218 static int io[MAX_CARDS+1] = { 0x220, 0x228, 0x210, 0x218, 0, };
219 /* NOTE: DMA is not autoprobed!!! */
220 static int dma[MAX_CARDS+1] = { 1, 7, 1, 7, 1, 7, 1, 7, 0, };
222 static int io[MAX_CARDS+1];
223 static int dma[MAX_CARDS+1];
225 /* IRQ can be safely autoprobed */
226 static int irq[MAX_CARDS+1] = { -1, -1, -1, -1, -1, -1, 0, };
229 static struct class *cosa_class;
232 module_param_array(io, int, NULL, 0);
233 MODULE_PARM_DESC(io, "The I/O bases of the COSA or SRP cards");
234 module_param_array(irq, int, NULL, 0);
235 MODULE_PARM_DESC(irq, "The IRQ lines of the COSA or SRP cards");
236 module_param_array(dma, int, NULL, 0);
237 MODULE_PARM_DESC(dma, "The DMA channels of the COSA or SRP cards");
239 MODULE_AUTHOR("Jan \"Yenya\" Kasprzak, <kas@fi.muni.cz>");
240 MODULE_DESCRIPTION("Modular driver for the COSA or SRP synchronous card");
241 MODULE_LICENSE("GPL");
244 /* I use this mainly for testing purposes */
246 #define cosa_outb outb_p
247 #define cosa_outw outw_p
248 #define cosa_inb inb_p
249 #define cosa_inw inw_p
251 #define cosa_outb outb
252 #define cosa_outw outw
257 #define is_8bit(cosa) (!(cosa->datareg & 0x08))
259 #define cosa_getstatus(cosa) (cosa_inb(cosa->statusreg))
260 #define cosa_putstatus(cosa, stat) (cosa_outb(stat, cosa->statusreg))
261 #define cosa_getdata16(cosa) (cosa_inw(cosa->datareg))
262 #define cosa_getdata8(cosa) (cosa_inb(cosa->datareg))
263 #define cosa_putdata16(cosa, dt) (cosa_outw(dt, cosa->datareg))
264 #define cosa_putdata8(cosa, dt) (cosa_outb(dt, cosa->datareg))
266 /* Initialization stuff */
267 static int cosa_probe(int ioaddr, int irq, int dma);
270 static void cosa_enable_rx(struct channel_data *chan);
271 static void cosa_disable_rx(struct channel_data *chan);
272 static int cosa_start_tx(struct channel_data *channel, char *buf, int size);
273 static void cosa_kick(struct cosa_data *cosa);
274 static int cosa_dma_able(struct channel_data *chan, char *buf, int data);
276 /* Network device stuff */
277 static int cosa_net_attach(struct net_device *dev, unsigned short encoding,
278 unsigned short parity);
279 static int cosa_net_open(struct net_device *d);
280 static int cosa_net_close(struct net_device *d);
281 static void cosa_net_timeout(struct net_device *d);
282 static int cosa_net_tx(struct sk_buff *skb, struct net_device *d);
283 static char *cosa_net_setup_rx(struct channel_data *channel, int size);
284 static int cosa_net_rx_done(struct channel_data *channel);
285 static int cosa_net_tx_done(struct channel_data *channel, int size);
286 static int cosa_net_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd);
288 /* Character device */
289 static char *chrdev_setup_rx(struct channel_data *channel, int size);
290 static int chrdev_rx_done(struct channel_data *channel);
291 static int chrdev_tx_done(struct channel_data *channel, int size);
292 static ssize_t cosa_read(struct file *file,
293 char __user *buf, size_t count, loff_t *ppos);
294 static ssize_t cosa_write(struct file *file,
295 const char __user *buf, size_t count, loff_t *ppos);
296 static unsigned int cosa_poll(struct file *file, poll_table *poll);
297 static int cosa_open(struct inode *inode, struct file *file);
298 static int cosa_release(struct inode *inode, struct file *file);
299 static int cosa_chardev_ioctl(struct inode *inode, struct file *file,
300 unsigned int cmd, unsigned long arg);
301 #ifdef COSA_FASYNC_WORKING
302 static int cosa_fasync(struct inode *inode, struct file *file, int on);
305 static const struct file_operations cosa_fops = {
306 .owner = THIS_MODULE,
311 .ioctl = cosa_chardev_ioctl,
313 .release = cosa_release,
314 #ifdef COSA_FASYNC_WORKING
315 .fasync = cosa_fasync,
320 static int cosa_start(struct cosa_data *cosa, int address);
321 static int cosa_reset(struct cosa_data *cosa);
322 static int cosa_download(struct cosa_data *cosa, void __user *a);
323 static int cosa_readmem(struct cosa_data *cosa, void __user *a);
325 /* COSA/SRP ROM monitor */
326 static int download(struct cosa_data *cosa, const char __user *data, int addr, int len);
327 static int startmicrocode(struct cosa_data *cosa, int address);
328 static int readmem(struct cosa_data *cosa, char __user *data, int addr, int len);
329 static int cosa_reset_and_read_id(struct cosa_data *cosa, char *id);
331 /* Auxilliary functions */
332 static int get_wait_data(struct cosa_data *cosa);
333 static int put_wait_data(struct cosa_data *cosa, int data);
334 static int puthexnumber(struct cosa_data *cosa, int number);
335 static void put_driver_status(struct cosa_data *cosa);
336 static void put_driver_status_nolock(struct cosa_data *cosa);
338 /* Interrupt handling */
339 static irqreturn_t cosa_interrupt(int irq, void *cosa);
341 /* I/O ops debugging */
343 static void debug_data_in(struct cosa_data *cosa, int data);
344 static void debug_data_out(struct cosa_data *cosa, int data);
345 static void debug_data_cmd(struct cosa_data *cosa, int data);
346 static void debug_status_in(struct cosa_data *cosa, int status);
347 static void debug_status_out(struct cosa_data *cosa, int status);
350 static inline struct channel_data* dev_to_chan(struct net_device *dev)
352 return (struct channel_data *)dev_to_hdlc(dev)->priv;
355 /* ---------- Initialization stuff ---------- */
357 static int __init cosa_init(void)
361 if (cosa_major > 0) {
362 if (register_chrdev(cosa_major, "cosa", &cosa_fops)) {
363 printk(KERN_WARNING "cosa: unable to get major %d\n",
369 if (!(cosa_major=register_chrdev(0, "cosa", &cosa_fops))) {
370 printk(KERN_WARNING "cosa: unable to register chardev\n");
375 for (i=0; i<MAX_CARDS; i++)
376 cosa_cards[i].num = -1;
377 for (i=0; io[i] != 0 && i < MAX_CARDS; i++)
378 cosa_probe(io[i], irq[i], dma[i]);
380 printk(KERN_WARNING "cosa: no devices found.\n");
381 unregister_chrdev(cosa_major, "cosa");
385 cosa_class = class_create(THIS_MODULE, "cosa");
386 if (IS_ERR(cosa_class)) {
387 err = PTR_ERR(cosa_class);
390 for (i = 0; i < nr_cards; i++)
391 device_create(cosa_class, NULL, MKDEV(cosa_major, i), NULL,
397 unregister_chrdev(cosa_major, "cosa");
401 module_init(cosa_init);
403 static void __exit cosa_exit(void)
405 struct cosa_data *cosa;
408 for (i = 0; i < nr_cards; i++)
409 device_destroy(cosa_class, MKDEV(cosa_major, i));
410 class_destroy(cosa_class);
412 for (cosa = cosa_cards; nr_cards--; cosa++) {
413 /* Clean up the per-channel data */
414 for (i = 0; i < cosa->nchannels; i++) {
415 /* Chardev driver has no alloc'd per-channel data */
416 unregister_hdlc_device(cosa->chan[i].netdev);
417 free_netdev(cosa->chan[i].netdev);
419 /* Clean up the per-card data */
421 kfree(cosa->bouncebuf);
422 free_irq(cosa->irq, cosa);
424 release_region(cosa->datareg, is_8bit(cosa) ? 2 : 4);
426 unregister_chrdev(cosa_major, "cosa");
428 module_exit(cosa_exit);
430 static int cosa_probe(int base, int irq, int dma)
432 struct cosa_data *cosa = cosa_cards+nr_cards;
435 memset(cosa, 0, sizeof(struct cosa_data));
437 /* Checking validity of parameters: */
438 /* IRQ should be 2-7 or 10-15; negative IRQ means autoprobe */
439 if ((irq >= 0 && irq < 2) || irq > 15 || (irq < 10 && irq > 7)) {
440 printk (KERN_INFO "cosa_probe: invalid IRQ %d\n", irq);
443 /* I/O address should be between 0x100 and 0x3ff and should be
445 if (base < 0x100 || base > 0x3ff || base & 0x7) {
446 printk (KERN_INFO "cosa_probe: invalid I/O address 0x%x\n",
450 /* DMA should be 0,1 or 3-7 */
451 if (dma < 0 || dma == 4 || dma > 7) {
452 printk (KERN_INFO "cosa_probe: invalid DMA %d\n", dma);
455 /* and finally, on 16-bit COSA DMA should be 4-7 and
456 * I/O base should not be multiple of 0x10 */
457 if (((base & 0x8) && dma < 4) || (!(base & 0x8) && dma > 3)) {
458 printk (KERN_INFO "cosa_probe: 8/16 bit base and DMA mismatch"
459 " (base=0x%x, dma=%d)\n", base, dma);
464 cosa->datareg = base;
465 cosa->statusreg = is_8bit(cosa)?base+1:base+2;
466 spin_lock_init(&cosa->lock);
468 if (!request_region(base, is_8bit(cosa)?2:4,"cosa"))
471 if (cosa_reset_and_read_id(cosa, cosa->id_string) < 0) {
472 printk(KERN_DEBUG "cosa: probe at 0x%x failed.\n", base);
477 /* Test the validity of identification string */
478 if (!strncmp(cosa->id_string, "SRP", 3))
480 else if (!strncmp(cosa->id_string, "COSA", 4))
481 cosa->type = is_8bit(cosa)? "cosa8": "cosa16";
483 /* Print a warning only if we are not autoprobing */
484 #ifndef COSA_ISA_AUTOPROBE
485 printk(KERN_INFO "cosa: valid signature not found at 0x%x.\n",
491 /* Update the name of the region now we know the type of card */
492 release_region(base, is_8bit(cosa)?2:4);
493 if (!request_region(base, is_8bit(cosa)?2:4, cosa->type)) {
494 printk(KERN_DEBUG "cosa: changing name at 0x%x failed.\n", base);
498 /* Now do IRQ autoprobe */
501 /* printk(KERN_INFO "IRQ autoprobe\n"); */
502 irqs = probe_irq_on();
504 * Enable interrupt on tx buffer empty (it sure is)
506 * FIXME: When this code is not used as module, we should
507 * probably call udelay() instead of the interruptible sleep.
509 set_current_state(TASK_INTERRUPTIBLE);
510 cosa_putstatus(cosa, SR_TX_INT_ENA);
511 schedule_timeout(30);
512 irq = probe_irq_off(irqs);
513 /* Disable all IRQs from the card */
514 cosa_putstatus(cosa, 0);
515 /* Empty the received data register */
519 printk (KERN_INFO "cosa IRQ autoprobe: multiple interrupts obtained (%d, board at 0x%x)\n",
525 printk (KERN_INFO "cosa IRQ autoprobe: no interrupt obtained (board at 0x%x)\n",
532 cosa->num = nr_cards;
534 cosa->nchannels = 2; /* FIXME: how to determine this? */
536 if (request_irq(cosa->irq, cosa_interrupt, 0, cosa->type, cosa)) {
540 if (request_dma(cosa->dma, cosa->type)) {
545 cosa->bouncebuf = kmalloc(COSA_MTU, GFP_KERNEL|GFP_DMA);
546 if (!cosa->bouncebuf) {
550 sprintf(cosa->name, "cosa%d", cosa->num);
552 /* Initialize the per-channel data */
553 cosa->chan = kcalloc(cosa->nchannels, sizeof(struct channel_data), GFP_KERNEL);
559 for (i = 0; i < cosa->nchannels; i++) {
560 struct channel_data *chan = &cosa->chan[i];
564 sprintf(chan->name, "cosa%dc%d", chan->cosa->num, i);
566 /* Initialize the chardev data structures */
567 mutex_init(&chan->rlock);
568 init_MUTEX(&chan->wsem);
570 /* Register the network interface */
571 if (!(chan->netdev = alloc_hdlcdev(chan))) {
572 printk(KERN_WARNING "%s: alloc_hdlcdev failed.\n",
576 dev_to_hdlc(chan->netdev)->attach = cosa_net_attach;
577 dev_to_hdlc(chan->netdev)->xmit = cosa_net_tx;
578 chan->netdev->open = cosa_net_open;
579 chan->netdev->stop = cosa_net_close;
580 chan->netdev->do_ioctl = cosa_net_ioctl;
581 chan->netdev->tx_timeout = cosa_net_timeout;
582 chan->netdev->watchdog_timeo = TX_TIMEOUT;
583 chan->netdev->base_addr = chan->cosa->datareg;
584 chan->netdev->irq = chan->cosa->irq;
585 chan->netdev->dma = chan->cosa->dma;
586 if (register_hdlc_device(chan->netdev)) {
587 printk(KERN_WARNING "%s: register_hdlc_device()"
588 " failed.\n", chan->netdev->name);
589 free_netdev(chan->netdev);
594 printk (KERN_INFO "cosa%d: %s (%s at 0x%x irq %d dma %d), %d channels\n",
595 cosa->num, cosa->id_string, cosa->type,
596 cosa->datareg, cosa->irq, cosa->dma, cosa->nchannels);
602 unregister_hdlc_device(cosa->chan[i].netdev);
603 free_netdev(cosa->chan[i].netdev);
607 kfree(cosa->bouncebuf);
611 free_irq(cosa->irq, cosa);
613 release_region(cosa->datareg,is_8bit(cosa)?2:4);
614 printk(KERN_NOTICE "cosa%d: allocating resources failed\n",
620 /*---------- network device ---------- */
622 static int cosa_net_attach(struct net_device *dev, unsigned short encoding,
623 unsigned short parity)
625 if (encoding == ENCODING_NRZ && parity == PARITY_CRC16_PR1_CCITT)
630 static int cosa_net_open(struct net_device *dev)
632 struct channel_data *chan = dev_to_chan(dev);
636 if (!(chan->cosa->firmware_status & COSA_FW_START)) {
637 printk(KERN_NOTICE "%s: start the firmware first (status %d)\n",
638 chan->cosa->name, chan->cosa->firmware_status);
641 spin_lock_irqsave(&chan->cosa->lock, flags);
642 if (chan->usage != 0) {
643 printk(KERN_WARNING "%s: cosa_net_open called with usage count"
644 " %d\n", chan->name, chan->usage);
645 spin_unlock_irqrestore(&chan->cosa->lock, flags);
648 chan->setup_rx = cosa_net_setup_rx;
649 chan->tx_done = cosa_net_tx_done;
650 chan->rx_done = cosa_net_rx_done;
653 spin_unlock_irqrestore(&chan->cosa->lock, flags);
655 err = hdlc_open(dev);
657 spin_lock_irqsave(&chan->cosa->lock, flags);
660 spin_unlock_irqrestore(&chan->cosa->lock, flags);
664 netif_start_queue(dev);
665 cosa_enable_rx(chan);
669 static int cosa_net_tx(struct sk_buff *skb, struct net_device *dev)
671 struct channel_data *chan = dev_to_chan(dev);
673 netif_stop_queue(dev);
676 cosa_start_tx(chan, skb->data, skb->len);
680 static void cosa_net_timeout(struct net_device *dev)
682 struct channel_data *chan = dev_to_chan(dev);
684 if (test_bit(RXBIT, &chan->cosa->rxtx)) {
685 chan->netdev->stats.rx_errors++;
686 chan->netdev->stats.rx_missed_errors++;
688 chan->netdev->stats.tx_errors++;
689 chan->netdev->stats.tx_aborted_errors++;
691 cosa_kick(chan->cosa);
693 dev_kfree_skb(chan->tx_skb);
696 netif_wake_queue(dev);
699 static int cosa_net_close(struct net_device *dev)
701 struct channel_data *chan = dev_to_chan(dev);
704 netif_stop_queue(dev);
706 cosa_disable_rx(chan);
707 spin_lock_irqsave(&chan->cosa->lock, flags);
709 kfree_skb(chan->rx_skb);
713 kfree_skb(chan->tx_skb);
718 spin_unlock_irqrestore(&chan->cosa->lock, flags);
722 static char *cosa_net_setup_rx(struct channel_data *chan, int size)
725 * We can safely fall back to non-dma-able memory, because we have
726 * the cosa->bouncebuf pre-allocated.
729 kfree_skb(chan->rx_skb);
730 chan->rx_skb = dev_alloc_skb(size);
731 if (chan->rx_skb == NULL) {
732 printk(KERN_NOTICE "%s: Memory squeeze, dropping packet\n",
734 chan->netdev->stats.rx_dropped++;
737 chan->netdev->trans_start = jiffies;
738 return skb_put(chan->rx_skb, size);
741 static int cosa_net_rx_done(struct channel_data *chan)
744 printk(KERN_WARNING "%s: rx_done with empty skb!\n",
746 chan->netdev->stats.rx_errors++;
747 chan->netdev->stats.rx_frame_errors++;
750 chan->rx_skb->protocol = hdlc_type_trans(chan->rx_skb, chan->netdev);
751 chan->rx_skb->dev = chan->netdev;
752 skb_reset_mac_header(chan->rx_skb);
753 chan->netdev->stats.rx_packets++;
754 chan->netdev->stats.rx_bytes += chan->cosa->rxsize;
755 netif_rx(chan->rx_skb);
761 static int cosa_net_tx_done(struct channel_data *chan, int size)
764 printk(KERN_WARNING "%s: tx_done with empty skb!\n",
766 chan->netdev->stats.tx_errors++;
767 chan->netdev->stats.tx_aborted_errors++;
770 dev_kfree_skb_irq(chan->tx_skb);
772 chan->netdev->stats.tx_packets++;
773 chan->netdev->stats.tx_bytes += size;
774 netif_wake_queue(chan->netdev);
778 /*---------- Character device ---------- */
780 static ssize_t cosa_read(struct file *file,
781 char __user *buf, size_t count, loff_t *ppos)
783 DECLARE_WAITQUEUE(wait, current);
785 struct channel_data *chan = file->private_data;
786 struct cosa_data *cosa = chan->cosa;
789 if (!(cosa->firmware_status & COSA_FW_START)) {
790 printk(KERN_NOTICE "%s: start the firmware first (status %d)\n",
791 cosa->name, cosa->firmware_status);
794 if (mutex_lock_interruptible(&chan->rlock))
797 if ((chan->rxdata = kmalloc(COSA_MTU, GFP_DMA|GFP_KERNEL)) == NULL) {
798 printk(KERN_INFO "%s: cosa_read() - OOM\n", cosa->name);
799 mutex_unlock(&chan->rlock);
804 cosa_enable_rx(chan);
805 spin_lock_irqsave(&cosa->lock, flags);
806 add_wait_queue(&chan->rxwaitq, &wait);
807 while(!chan->rx_status) {
808 current->state = TASK_INTERRUPTIBLE;
809 spin_unlock_irqrestore(&cosa->lock, flags);
811 spin_lock_irqsave(&cosa->lock, flags);
812 if (signal_pending(current) && chan->rx_status == 0) {
814 remove_wait_queue(&chan->rxwaitq, &wait);
815 current->state = TASK_RUNNING;
816 spin_unlock_irqrestore(&cosa->lock, flags);
817 mutex_unlock(&chan->rlock);
821 remove_wait_queue(&chan->rxwaitq, &wait);
822 current->state = TASK_RUNNING;
824 count = chan->rxsize;
825 spin_unlock_irqrestore(&cosa->lock, flags);
826 mutex_unlock(&chan->rlock);
828 if (copy_to_user(buf, kbuf, count)) {
836 static char *chrdev_setup_rx(struct channel_data *chan, int size)
838 /* Expect size <= COSA_MTU */
843 static int chrdev_rx_done(struct channel_data *chan)
845 if (chan->rx_status) { /* Reader has died */
850 wake_up_interruptible(&chan->rxwaitq);
855 static ssize_t cosa_write(struct file *file,
856 const char __user *buf, size_t count, loff_t *ppos)
858 DECLARE_WAITQUEUE(wait, current);
859 struct channel_data *chan = file->private_data;
860 struct cosa_data *cosa = chan->cosa;
864 if (!(cosa->firmware_status & COSA_FW_START)) {
865 printk(KERN_NOTICE "%s: start the firmware first (status %d)\n",
866 cosa->name, cosa->firmware_status);
869 if (down_interruptible(&chan->wsem))
872 if (count > COSA_MTU)
875 /* Allocate the buffer */
876 if ((kbuf = kmalloc(count, GFP_KERNEL|GFP_DMA)) == NULL) {
877 printk(KERN_NOTICE "%s: cosa_write() OOM - dropping packet\n",
882 if (copy_from_user(kbuf, buf, count)) {
888 cosa_start_tx(chan, kbuf, count);
890 spin_lock_irqsave(&cosa->lock, flags);
891 add_wait_queue(&chan->txwaitq, &wait);
892 while(!chan->tx_status) {
893 current->state = TASK_INTERRUPTIBLE;
894 spin_unlock_irqrestore(&cosa->lock, flags);
896 spin_lock_irqsave(&cosa->lock, flags);
897 if (signal_pending(current) && chan->tx_status == 0) {
899 remove_wait_queue(&chan->txwaitq, &wait);
900 current->state = TASK_RUNNING;
902 spin_unlock_irqrestore(&cosa->lock, flags);
906 remove_wait_queue(&chan->txwaitq, &wait);
907 current->state = TASK_RUNNING;
909 spin_unlock_irqrestore(&cosa->lock, flags);
914 static int chrdev_tx_done(struct channel_data *chan, int size)
916 if (chan->tx_status) { /* Writer was interrupted */
921 wake_up_interruptible(&chan->txwaitq);
925 static unsigned int cosa_poll(struct file *file, poll_table *poll)
927 printk(KERN_INFO "cosa_poll is here\n");
931 static int cosa_open(struct inode *inode, struct file *file)
933 struct cosa_data *cosa;
934 struct channel_data *chan;
940 if ((n=iminor(file->f_path.dentry->d_inode)>>CARD_MINOR_BITS)
947 if ((n=iminor(file->f_path.dentry->d_inode)
948 & ((1<<CARD_MINOR_BITS)-1)) >= cosa->nchannels) {
952 chan = cosa->chan + n;
954 file->private_data = chan;
956 spin_lock_irqsave(&cosa->lock, flags);
958 if (chan->usage < 0) { /* in netdev mode */
959 spin_unlock_irqrestore(&cosa->lock, flags);
966 chan->tx_done = chrdev_tx_done;
967 chan->setup_rx = chrdev_setup_rx;
968 chan->rx_done = chrdev_rx_done;
969 spin_unlock_irqrestore(&cosa->lock, flags);
975 static int cosa_release(struct inode *inode, struct file *file)
977 struct channel_data *channel = file->private_data;
978 struct cosa_data *cosa;
981 cosa = channel->cosa;
982 spin_lock_irqsave(&cosa->lock, flags);
985 spin_unlock_irqrestore(&cosa->lock, flags);
989 #ifdef COSA_FASYNC_WORKING
990 static struct fasync_struct *fasync[256] = { NULL, };
993 static int cosa_fasync(struct inode *inode, struct file *file, int on)
995 int port = iminor(inode);
996 int rv = fasync_helper(inode, file, on, &fasync[port]);
997 return rv < 0 ? rv : 0;
1002 /* ---------- Ioctls ---------- */
1005 * Ioctl subroutines can safely be made inline, because they are called
1006 * only from cosa_ioctl().
1008 static inline int cosa_reset(struct cosa_data *cosa)
1010 char idstring[COSA_MAX_ID_STRING];
1011 if (cosa->usage > 1)
1012 printk(KERN_INFO "cosa%d: WARNING: reset requested with cosa->usage > 1 (%d). Odd things may happen.\n",
1013 cosa->num, cosa->usage);
1014 cosa->firmware_status &= ~(COSA_FW_RESET|COSA_FW_START);
1015 if (cosa_reset_and_read_id(cosa, idstring) < 0) {
1016 printk(KERN_NOTICE "cosa%d: reset failed\n", cosa->num);
1019 printk(KERN_INFO "cosa%d: resetting device: %s\n", cosa->num,
1021 cosa->firmware_status |= COSA_FW_RESET;
1025 /* High-level function to download data into COSA memory. Calls download() */
1026 static inline int cosa_download(struct cosa_data *cosa, void __user *arg)
1028 struct cosa_download d;
1031 if (cosa->usage > 1)
1032 printk(KERN_INFO "%s: WARNING: download of microcode requested with cosa->usage > 1 (%d). Odd things may happen.\n",
1033 cosa->name, cosa->usage);
1034 if (!(cosa->firmware_status & COSA_FW_RESET)) {
1035 printk(KERN_NOTICE "%s: reset the card first (status %d).\n",
1036 cosa->name, cosa->firmware_status);
1040 if (copy_from_user(&d, arg, sizeof(d)))
1043 if (d.addr < 0 || d.addr > COSA_MAX_FIRMWARE_SIZE)
1045 if (d.len < 0 || d.len > COSA_MAX_FIRMWARE_SIZE)
1049 /* If something fails, force the user to reset the card */
1050 cosa->firmware_status &= ~(COSA_FW_RESET|COSA_FW_DOWNLOAD);
1052 i = download(cosa, d.code, d.len, d.addr);
1054 printk(KERN_NOTICE "cosa%d: microcode download failed: %d\n",
1058 printk(KERN_INFO "cosa%d: downloading microcode - 0x%04x bytes at 0x%04x\n",
1059 cosa->num, d.len, d.addr);
1060 cosa->firmware_status |= COSA_FW_RESET|COSA_FW_DOWNLOAD;
1064 /* High-level function to read COSA memory. Calls readmem() */
1065 static inline int cosa_readmem(struct cosa_data *cosa, void __user *arg)
1067 struct cosa_download d;
1070 if (cosa->usage > 1)
1071 printk(KERN_INFO "cosa%d: WARNING: readmem requested with "
1072 "cosa->usage > 1 (%d). Odd things may happen.\n",
1073 cosa->num, cosa->usage);
1074 if (!(cosa->firmware_status & COSA_FW_RESET)) {
1075 printk(KERN_NOTICE "%s: reset the card first (status %d).\n",
1076 cosa->name, cosa->firmware_status);
1080 if (copy_from_user(&d, arg, sizeof(d)))
1083 /* If something fails, force the user to reset the card */
1084 cosa->firmware_status &= ~COSA_FW_RESET;
1086 i = readmem(cosa, d.code, d.len, d.addr);
1088 printk(KERN_NOTICE "cosa%d: reading memory failed: %d\n",
1092 printk(KERN_INFO "cosa%d: reading card memory - 0x%04x bytes at 0x%04x\n",
1093 cosa->num, d.len, d.addr);
1094 cosa->firmware_status |= COSA_FW_RESET;
1098 /* High-level function to start microcode. Calls startmicrocode(). */
1099 static inline int cosa_start(struct cosa_data *cosa, int address)
1103 if (cosa->usage > 1)
1104 printk(KERN_INFO "cosa%d: WARNING: start microcode requested with cosa->usage > 1 (%d). Odd things may happen.\n",
1105 cosa->num, cosa->usage);
1107 if ((cosa->firmware_status & (COSA_FW_RESET|COSA_FW_DOWNLOAD))
1108 != (COSA_FW_RESET|COSA_FW_DOWNLOAD)) {
1109 printk(KERN_NOTICE "%s: download the microcode and/or reset the card first (status %d).\n",
1110 cosa->name, cosa->firmware_status);
1113 cosa->firmware_status &= ~COSA_FW_RESET;
1114 if ((i=startmicrocode(cosa, address)) < 0) {
1115 printk(KERN_NOTICE "cosa%d: start microcode at 0x%04x failed: %d\n",
1116 cosa->num, address, i);
1119 printk(KERN_INFO "cosa%d: starting microcode at 0x%04x\n",
1120 cosa->num, address);
1121 cosa->startaddr = address;
1122 cosa->firmware_status |= COSA_FW_START;
1126 /* Buffer of size at least COSA_MAX_ID_STRING is expected */
1127 static inline int cosa_getidstr(struct cosa_data *cosa, char __user *string)
1129 int l = strlen(cosa->id_string)+1;
1130 if (copy_to_user(string, cosa->id_string, l))
1135 /* Buffer of size at least COSA_MAX_ID_STRING is expected */
1136 static inline int cosa_gettype(struct cosa_data *cosa, char __user *string)
1138 int l = strlen(cosa->type)+1;
1139 if (copy_to_user(string, cosa->type, l))
1144 static int cosa_ioctl_common(struct cosa_data *cosa,
1145 struct channel_data *channel, unsigned int cmd, unsigned long arg)
1147 void __user *argp = (void __user *)arg;
1149 case COSAIORSET: /* Reset the device */
1150 if (!capable(CAP_NET_ADMIN))
1152 return cosa_reset(cosa);
1153 case COSAIOSTRT: /* Start the firmware */
1154 if (!capable(CAP_SYS_RAWIO))
1156 return cosa_start(cosa, arg);
1157 case COSAIODOWNLD: /* Download the firmware */
1158 if (!capable(CAP_SYS_RAWIO))
1161 return cosa_download(cosa, argp);
1163 if (!capable(CAP_SYS_RAWIO))
1165 return cosa_readmem(cosa, argp);
1167 return cosa_gettype(cosa, argp);
1169 return cosa_getidstr(cosa, argp);
1173 return cosa->nchannels;
1175 if (!capable(CAP_SYS_RAWIO))
1179 if (arg != COSA_BM_OFF && arg != COSA_BM_ON)
1181 cosa->busmaster = arg;
1184 return cosa->busmaster;
1186 return -ENOIOCTLCMD;
1189 static int cosa_net_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
1192 struct channel_data *chan = dev_to_chan(dev);
1193 rv = cosa_ioctl_common(chan->cosa, chan, cmd,
1194 (unsigned long)ifr->ifr_data);
1195 if (rv != -ENOIOCTLCMD)
1197 return hdlc_ioctl(dev, ifr, cmd);
1200 static int cosa_chardev_ioctl(struct inode *inode, struct file *file,
1201 unsigned int cmd, unsigned long arg)
1203 struct channel_data *channel = file->private_data;
1204 struct cosa_data *cosa = channel->cosa;
1205 return cosa_ioctl_common(cosa, channel, cmd, arg);
1209 /*---------- HW layer interface ---------- */
1212 * The higher layer can bind itself to the HW layer by setting the callbacks
1213 * in the channel_data structure and by using these routines.
1215 static void cosa_enable_rx(struct channel_data *chan)
1217 struct cosa_data *cosa = chan->cosa;
1219 if (!test_and_set_bit(chan->num, &cosa->rxbitmap))
1220 put_driver_status(cosa);
1223 static void cosa_disable_rx(struct channel_data *chan)
1225 struct cosa_data *cosa = chan->cosa;
1227 if (test_and_clear_bit(chan->num, &cosa->rxbitmap))
1228 put_driver_status(cosa);
1232 * FIXME: This routine probably should check for cosa_start_tx() called when
1233 * the previous transmit is still unfinished. In this case the non-zero
1234 * return value should indicate to the caller that the queuing(sp?) up
1235 * the transmit has failed.
1237 static int cosa_start_tx(struct channel_data *chan, char *buf, int len)
1239 struct cosa_data *cosa = chan->cosa;
1240 unsigned long flags;
1244 printk(KERN_INFO "cosa%dc%d: starting tx(0x%x)", chan->cosa->num,
1246 for (i=0; i<len; i++)
1247 printk(" %02x", buf[i]&0xff);
1250 spin_lock_irqsave(&cosa->lock, flags);
1254 chan->txsize = COSA_MTU;
1255 spin_unlock_irqrestore(&cosa->lock, flags);
1257 /* Tell the firmware we are ready */
1258 set_bit(chan->num, &cosa->txbitmap);
1259 put_driver_status(cosa);
1264 static void put_driver_status(struct cosa_data *cosa)
1266 unsigned long flags;
1269 spin_lock_irqsave(&cosa->lock, flags);
1271 status = (cosa->rxbitmap ? DRIVER_RX_READY : 0)
1272 | (cosa->txbitmap ? DRIVER_TX_READY : 0)
1273 | (cosa->txbitmap? ~(cosa->txbitmap<<DRIVER_TXMAP_SHIFT)
1274 &DRIVER_TXMAP_MASK : 0);
1276 if (cosa->rxbitmap|cosa->txbitmap) {
1277 if (!cosa->enabled) {
1278 cosa_putstatus(cosa, SR_RX_INT_ENA);
1280 debug_status_out(cosa, SR_RX_INT_ENA);
1284 } else if (cosa->enabled) {
1286 cosa_putstatus(cosa, 0);
1288 debug_status_out(cosa, 0);
1291 cosa_putdata8(cosa, status);
1293 debug_data_cmd(cosa, status);
1296 spin_unlock_irqrestore(&cosa->lock, flags);
1299 static void put_driver_status_nolock(struct cosa_data *cosa)
1303 status = (cosa->rxbitmap ? DRIVER_RX_READY : 0)
1304 | (cosa->txbitmap ? DRIVER_TX_READY : 0)
1305 | (cosa->txbitmap? ~(cosa->txbitmap<<DRIVER_TXMAP_SHIFT)
1306 &DRIVER_TXMAP_MASK : 0);
1308 if (cosa->rxbitmap|cosa->txbitmap) {
1309 cosa_putstatus(cosa, SR_RX_INT_ENA);
1311 debug_status_out(cosa, SR_RX_INT_ENA);
1315 cosa_putstatus(cosa, 0);
1317 debug_status_out(cosa, 0);
1321 cosa_putdata8(cosa, status);
1323 debug_data_cmd(cosa, status);
1328 * The "kickme" function: When the DMA times out, this is called to
1329 * clean up the driver status.
1330 * FIXME: Preliminary support, the interface is probably wrong.
1332 static void cosa_kick(struct cosa_data *cosa)
1334 unsigned long flags, flags1;
1335 char *s = "(probably) IRQ";
1337 if (test_bit(RXBIT, &cosa->rxtx))
1339 if (test_bit(TXBIT, &cosa->rxtx))
1342 printk(KERN_INFO "%s: %s timeout - restarting.\n", cosa->name, s);
1343 spin_lock_irqsave(&cosa->lock, flags);
1346 flags1 = claim_dma_lock();
1347 disable_dma(cosa->dma);
1348 clear_dma_ff(cosa->dma);
1349 release_dma_lock(flags1);
1351 /* FIXME: Anything else? */
1353 cosa_putstatus(cosa, 0);
1355 (void) cosa_getdata8(cosa);
1357 cosa_putdata8(cosa, 0);
1359 put_driver_status_nolock(cosa);
1360 spin_unlock_irqrestore(&cosa->lock, flags);
1364 * Check if the whole buffer is DMA-able. It means it is below the 16M of
1365 * physical memory and doesn't span the 64k boundary. For now it seems
1366 * SKB's never do this, but we'll check this anyway.
1368 static int cosa_dma_able(struct channel_data *chan, char *buf, int len)
1371 unsigned long b = (unsigned long)buf;
1372 if (b+len >= MAX_DMA_ADDRESS)
1374 if ((b^ (b+len)) & 0x10000) {
1376 printk(KERN_INFO "%s: packet spanning a 64k boundary\n",
1384 /* ---------- The SRP/COSA ROM monitor functions ---------- */
1387 * Downloading SRP microcode: say "w" to SRP monitor, it answers by "w=",
1388 * drivers need to say 4-digit hex number meaning start address of the microcode
1389 * separated by a single space. Monitor replies by saying " =". Now driver
1390 * has to write 4-digit hex number meaning the last byte address ended
1391 * by a single space. Monitor has to reply with a space. Now the download
1392 * begins. After the download monitor replies with "\r\n." (CR LF dot).
1394 static int download(struct cosa_data *cosa, const char __user *microcode, int length, int address)
1398 if (put_wait_data(cosa, 'w') == -1) return -1;
1399 if ((i=get_wait_data(cosa)) != 'w') { printk("dnld: 0x%04x\n",i); return -2;}
1400 if (get_wait_data(cosa) != '=') return -3;
1402 if (puthexnumber(cosa, address) < 0) return -4;
1403 if (put_wait_data(cosa, ' ') == -1) return -10;
1404 if (get_wait_data(cosa) != ' ') return -11;
1405 if (get_wait_data(cosa) != '=') return -12;
1407 if (puthexnumber(cosa, address+length-1) < 0) return -13;
1408 if (put_wait_data(cosa, ' ') == -1) return -18;
1409 if (get_wait_data(cosa) != ' ') return -19;
1413 #ifndef SRP_DOWNLOAD_AT_BOOT
1414 if (get_user(c, microcode))
1415 return -23; /* ??? */
1419 if (put_wait_data(cosa, c) == -1)
1424 if (get_wait_data(cosa) != '\r') return -21;
1425 if (get_wait_data(cosa) != '\n') return -22;
1426 if (get_wait_data(cosa) != '.') return -23;
1428 printk(KERN_DEBUG "cosa%d: download completed.\n", cosa->num);
1435 * Starting microcode is done via the "g" command of the SRP monitor.
1436 * The chat should be the following: "g" "g=" "<addr><CR>"
1437 * "<CR><CR><LF><CR><LF>".
1439 static int startmicrocode(struct cosa_data *cosa, int address)
1441 if (put_wait_data(cosa, 'g') == -1) return -1;
1442 if (get_wait_data(cosa) != 'g') return -2;
1443 if (get_wait_data(cosa) != '=') return -3;
1445 if (puthexnumber(cosa, address) < 0) return -4;
1446 if (put_wait_data(cosa, '\r') == -1) return -5;
1448 if (get_wait_data(cosa) != '\r') return -6;
1449 if (get_wait_data(cosa) != '\r') return -7;
1450 if (get_wait_data(cosa) != '\n') return -8;
1451 if (get_wait_data(cosa) != '\r') return -9;
1452 if (get_wait_data(cosa) != '\n') return -10;
1454 printk(KERN_DEBUG "cosa%d: microcode started\n", cosa->num);
1460 * Reading memory is done via the "r" command of the SRP monitor.
1461 * The chat is the following "r" "r=" "<addr> " " =" "<last_byte> " " "
1462 * Then driver can read the data and the conversation is finished
1463 * by SRP monitor sending "<CR><LF>." (dot at the end).
1465 * This routine is not needed during the normal operation and serves
1466 * for debugging purposes only.
1468 static int readmem(struct cosa_data *cosa, char __user *microcode, int length, int address)
1470 if (put_wait_data(cosa, 'r') == -1) return -1;
1471 if ((get_wait_data(cosa)) != 'r') return -2;
1472 if ((get_wait_data(cosa)) != '=') return -3;
1474 if (puthexnumber(cosa, address) < 0) return -4;
1475 if (put_wait_data(cosa, ' ') == -1) return -5;
1476 if (get_wait_data(cosa) != ' ') return -6;
1477 if (get_wait_data(cosa) != '=') return -7;
1479 if (puthexnumber(cosa, address+length-1) < 0) return -8;
1480 if (put_wait_data(cosa, ' ') == -1) return -9;
1481 if (get_wait_data(cosa) != ' ') return -10;
1486 if ((i=get_wait_data(cosa)) == -1) {
1487 printk (KERN_INFO "cosa: 0x%04x bytes remaining\n",
1493 if (put_user(c, microcode))
1494 return -23; /* ??? */
1501 if (get_wait_data(cosa) != '\r') return -21;
1502 if (get_wait_data(cosa) != '\n') return -22;
1503 if (get_wait_data(cosa) != '.') return -23;
1505 printk(KERN_DEBUG "cosa%d: readmem completed.\n", cosa->num);
1511 * This function resets the device and reads the initial prompt
1512 * of the device's ROM monitor.
1514 static int cosa_reset_and_read_id(struct cosa_data *cosa, char *idstring)
1516 int i=0, id=0, prev=0, curr=0;
1518 /* Reset the card ... */
1519 cosa_putstatus(cosa, 0);
1520 cosa_getdata8(cosa);
1521 cosa_putstatus(cosa, SR_RST);
1527 /* Disable all IRQs from the card */
1528 cosa_putstatus(cosa, 0);
1531 * Try to read the ID string. The card then prints out the
1532 * identification string ended by the "\n\x2e".
1534 * The following loop is indexed through i (instead of id)
1535 * to avoid looping forever when for any reason
1536 * the port returns '\r', '\n' or '\x2e' permanently.
1538 for (i=0; i<COSA_MAX_ID_STRING-1; i++, prev=curr) {
1539 if ((curr = get_wait_data(cosa)) == -1) {
1543 if (curr != '\r' && curr != '\n' && curr != 0x2e)
1544 idstring[id++] = curr;
1545 if (curr == 0x2e && prev == '\n')
1548 /* Perhaps we should fail when i==COSA_MAX_ID_STRING-1 ? */
1549 idstring[id] = '\0';
1554 /* ---------- Auxiliary routines for COSA/SRP monitor ---------- */
1557 * This routine gets the data byte from the card waiting for the SR_RX_RDY
1558 * bit to be set in a loop. It should be used in the exceptional cases
1559 * only (for example when resetting the card or downloading the firmware.
1561 static int get_wait_data(struct cosa_data *cosa)
1566 /* read data and return them */
1567 if (cosa_getstatus(cosa) & SR_RX_RDY) {
1569 r = cosa_getdata8(cosa);
1571 printk(KERN_INFO "cosa: get_wait_data returning after %d retries\n", 999-retries);
1575 /* sleep if not ready to read */
1576 schedule_timeout_interruptible(1);
1578 printk(KERN_INFO "cosa: timeout in get_wait_data (status 0x%x)\n",
1579 cosa_getstatus(cosa));
1584 * This routine puts the data byte to the card waiting for the SR_TX_RDY
1585 * bit to be set in a loop. It should be used in the exceptional cases
1586 * only (for example when resetting the card or downloading the firmware).
1588 static int put_wait_data(struct cosa_data *cosa, int data)
1592 /* read data and return them */
1593 if (cosa_getstatus(cosa) & SR_TX_RDY) {
1594 cosa_putdata8(cosa, data);
1596 printk(KERN_INFO "Putdata: %d retries\n", 999-retries);
1601 /* sleep if not ready to read */
1602 schedule_timeout_interruptible(1);
1605 printk(KERN_INFO "cosa%d: timeout in put_wait_data (status 0x%x)\n",
1606 cosa->num, cosa_getstatus(cosa));
1611 * The following routine puts the hexadecimal number into the SRP monitor
1612 * and verifies the proper echo of the sent bytes. Returns 0 on success,
1613 * negative number on failure (-1,-3,-5,-7) means that put_wait_data() failed,
1614 * (-2,-4,-6,-8) means that reading echo failed.
1616 static int puthexnumber(struct cosa_data *cosa, int number)
1621 /* Well, I should probably replace this by something faster. */
1622 sprintf(temp, "%04X", number);
1623 for (i=0; i<4; i++) {
1624 if (put_wait_data(cosa, temp[i]) == -1) {
1625 printk(KERN_NOTICE "cosa%d: puthexnumber failed to write byte %d\n",
1629 if (get_wait_data(cosa) != temp[i]) {
1630 printk(KERN_NOTICE "cosa%d: puthexhumber failed to read echo of byte %d\n",
1639 /* ---------- Interrupt routines ---------- */
1642 * There are three types of interrupt:
1643 * At the beginning of transmit - this handled is in tx_interrupt(),
1644 * at the beginning of receive - it is in rx_interrupt() and
1645 * at the end of transmit/receive - it is the eot_interrupt() function.
1646 * These functions are multiplexed by cosa_interrupt() according to the
1647 * COSA status byte. I have moved the rx/tx/eot interrupt handling into
1648 * separate functions to make it more readable. These functions are inline,
1649 * so there should be no overhead of function call.
1651 * In the COSA bus-master mode, we need to tell the card the address of a
1652 * buffer. Unfortunately, COSA may be too slow for us, so we must busy-wait.
1653 * It's time to use the bottom half :-(
1657 * Transmit interrupt routine - called when COSA is willing to obtain
1658 * data from the OS. The most tricky part of the routine is selection
1659 * of channel we (OS) want to send packet for. For SRP we should probably
1660 * use the round-robin approach. The newer COSA firmwares have a simple
1661 * flow-control - in the status word has bits 2 and 3 set to 1 means that the
1662 * channel 0 or 1 doesn't want to receive data.
1664 * It seems there is a bug in COSA firmware (need to trace it further):
1665 * When the driver status says that the kernel has no more data for transmit
1666 * (e.g. at the end of TX DMA) and then the kernel changes its mind
1667 * (e.g. new packet is queued to hard_start_xmit()), the card issues
1668 * the TX interrupt but does not mark the channel as ready-to-transmit.
1669 * The fix seems to be to push the packet to COSA despite its request.
1670 * We first try to obey the card's opinion, and then fall back to forced TX.
1672 static inline void tx_interrupt(struct cosa_data *cosa, int status)
1674 unsigned long flags, flags1;
1676 printk(KERN_INFO "cosa%d: SR_DOWN_REQUEST status=0x%04x\n",
1679 spin_lock_irqsave(&cosa->lock, flags);
1680 set_bit(TXBIT, &cosa->rxtx);
1681 if (!test_bit(IRQBIT, &cosa->rxtx)) {
1682 /* flow control, see the comment above */
1684 if (!cosa->txbitmap) {
1685 printk(KERN_WARNING "%s: No channel wants data "
1686 "in TX IRQ. Expect DMA timeout.",
1688 put_driver_status_nolock(cosa);
1689 clear_bit(TXBIT, &cosa->rxtx);
1690 spin_unlock_irqrestore(&cosa->lock, flags);
1696 if (cosa->txchan >= cosa->nchannels)
1698 if (!(cosa->txbitmap & (1<<cosa->txchan)))
1700 if (~status & (1 << (cosa->txchan+DRIVER_TXMAP_SHIFT)))
1702 /* in second pass, accept first ready-to-TX channel */
1703 if (i > cosa->nchannels) {
1704 /* Can be safely ignored */
1706 printk(KERN_DEBUG "%s: Forcing TX "
1707 "to not-ready channel %d\n",
1708 cosa->name, cosa->txchan);
1714 cosa->txsize = cosa->chan[cosa->txchan].txsize;
1715 if (cosa_dma_able(cosa->chan+cosa->txchan,
1716 cosa->chan[cosa->txchan].txbuf, cosa->txsize)) {
1717 cosa->txbuf = cosa->chan[cosa->txchan].txbuf;
1719 memcpy(cosa->bouncebuf, cosa->chan[cosa->txchan].txbuf,
1721 cosa->txbuf = cosa->bouncebuf;
1725 if (is_8bit(cosa)) {
1726 if (!test_bit(IRQBIT, &cosa->rxtx)) {
1727 cosa_putstatus(cosa, SR_TX_INT_ENA);
1728 cosa_putdata8(cosa, ((cosa->txchan << 5) & 0xe0)|
1729 ((cosa->txsize >> 8) & 0x1f));
1731 debug_status_out(cosa, SR_TX_INT_ENA);
1732 debug_data_out(cosa, ((cosa->txchan << 5) & 0xe0)|
1733 ((cosa->txsize >> 8) & 0x1f));
1734 debug_data_in(cosa, cosa_getdata8(cosa));
1736 cosa_getdata8(cosa);
1738 set_bit(IRQBIT, &cosa->rxtx);
1739 spin_unlock_irqrestore(&cosa->lock, flags);
1742 clear_bit(IRQBIT, &cosa->rxtx);
1743 cosa_putstatus(cosa, 0);
1744 cosa_putdata8(cosa, cosa->txsize&0xff);
1746 debug_status_out(cosa, 0);
1747 debug_data_out(cosa, cosa->txsize&0xff);
1751 cosa_putstatus(cosa, SR_TX_INT_ENA);
1752 cosa_putdata16(cosa, ((cosa->txchan<<13) & 0xe000)
1753 | (cosa->txsize & 0x1fff));
1755 debug_status_out(cosa, SR_TX_INT_ENA);
1756 debug_data_out(cosa, ((cosa->txchan<<13) & 0xe000)
1757 | (cosa->txsize & 0x1fff));
1758 debug_data_in(cosa, cosa_getdata8(cosa));
1759 debug_status_out(cosa, 0);
1761 cosa_getdata8(cosa);
1763 cosa_putstatus(cosa, 0);
1766 if (cosa->busmaster) {
1767 unsigned long addr = virt_to_bus(cosa->txbuf);
1769 printk(KERN_INFO "busmaster IRQ\n");
1770 while (!(cosa_getstatus(cosa)&SR_TX_RDY)) {
1773 if (count > 1000) break;
1775 printk(KERN_INFO "status %x\n", cosa_getstatus(cosa));
1776 printk(KERN_INFO "ready after %d loops\n", count);
1777 cosa_putdata16(cosa, (addr >> 16)&0xffff);
1780 while (!(cosa_getstatus(cosa)&SR_TX_RDY)) {
1782 if (count > 1000) break;
1785 printk(KERN_INFO "ready after %d loops\n", count);
1786 cosa_putdata16(cosa, addr &0xffff);
1787 flags1 = claim_dma_lock();
1788 set_dma_mode(cosa->dma, DMA_MODE_CASCADE);
1789 enable_dma(cosa->dma);
1790 release_dma_lock(flags1);
1793 flags1 = claim_dma_lock();
1794 disable_dma(cosa->dma);
1795 clear_dma_ff(cosa->dma);
1796 set_dma_mode(cosa->dma, DMA_MODE_WRITE);
1797 set_dma_addr(cosa->dma, virt_to_bus(cosa->txbuf));
1798 set_dma_count(cosa->dma, cosa->txsize);
1799 enable_dma(cosa->dma);
1800 release_dma_lock(flags1);
1802 cosa_putstatus(cosa, SR_TX_DMA_ENA|SR_USR_INT_ENA);
1804 debug_status_out(cosa, SR_TX_DMA_ENA|SR_USR_INT_ENA);
1806 spin_unlock_irqrestore(&cosa->lock, flags);
1809 static inline void rx_interrupt(struct cosa_data *cosa, int status)
1811 unsigned long flags;
1813 printk(KERN_INFO "cosa%d: SR_UP_REQUEST\n", cosa->num);
1816 spin_lock_irqsave(&cosa->lock, flags);
1817 set_bit(RXBIT, &cosa->rxtx);
1819 if (is_8bit(cosa)) {
1820 if (!test_bit(IRQBIT, &cosa->rxtx)) {
1821 set_bit(IRQBIT, &cosa->rxtx);
1822 put_driver_status_nolock(cosa);
1823 cosa->rxsize = cosa_getdata8(cosa) <<8;
1825 debug_data_in(cosa, cosa->rxsize >> 8);
1827 spin_unlock_irqrestore(&cosa->lock, flags);
1830 clear_bit(IRQBIT, &cosa->rxtx);
1831 cosa->rxsize |= cosa_getdata8(cosa) & 0xff;
1833 debug_data_in(cosa, cosa->rxsize & 0xff);
1836 printk(KERN_INFO "cosa%d: receive rxsize = (0x%04x).\n",
1837 cosa->num, cosa->rxsize);
1841 cosa->rxsize = cosa_getdata16(cosa);
1843 debug_data_in(cosa, cosa->rxsize);
1846 printk(KERN_INFO "cosa%d: receive rxsize = (0x%04x).\n",
1847 cosa->num, cosa->rxsize);
1850 if (((cosa->rxsize & 0xe000) >> 13) >= cosa->nchannels) {
1851 printk(KERN_WARNING "%s: rx for unknown channel (0x%04x)\n",
1852 cosa->name, cosa->rxsize);
1853 spin_unlock_irqrestore(&cosa->lock, flags);
1856 cosa->rxchan = cosa->chan + ((cosa->rxsize & 0xe000) >> 13);
1857 cosa->rxsize &= 0x1fff;
1858 spin_unlock_irqrestore(&cosa->lock, flags);
1861 if (cosa->rxchan->setup_rx)
1862 cosa->rxbuf = cosa->rxchan->setup_rx(cosa->rxchan, cosa->rxsize);
1865 reject: /* Reject the packet */
1866 printk(KERN_INFO "cosa%d: rejecting packet on channel %d\n",
1867 cosa->num, cosa->rxchan->num);
1868 cosa->rxbuf = cosa->bouncebuf;
1872 flags = claim_dma_lock();
1873 disable_dma(cosa->dma);
1874 clear_dma_ff(cosa->dma);
1875 set_dma_mode(cosa->dma, DMA_MODE_READ);
1876 if (cosa_dma_able(cosa->rxchan, cosa->rxbuf, cosa->rxsize & 0x1fff)) {
1877 set_dma_addr(cosa->dma, virt_to_bus(cosa->rxbuf));
1879 set_dma_addr(cosa->dma, virt_to_bus(cosa->bouncebuf));
1881 set_dma_count(cosa->dma, (cosa->rxsize&0x1fff));
1882 enable_dma(cosa->dma);
1883 release_dma_lock(flags);
1884 spin_lock_irqsave(&cosa->lock, flags);
1885 cosa_putstatus(cosa, SR_RX_DMA_ENA|SR_USR_INT_ENA);
1886 if (!is_8bit(cosa) && (status & SR_TX_RDY))
1887 cosa_putdata8(cosa, DRIVER_RX_READY);
1889 debug_status_out(cosa, SR_RX_DMA_ENA|SR_USR_INT_ENA);
1890 if (!is_8bit(cosa) && (status & SR_TX_RDY))
1891 debug_data_cmd(cosa, DRIVER_RX_READY);
1893 spin_unlock_irqrestore(&cosa->lock, flags);
1896 static inline void eot_interrupt(struct cosa_data *cosa, int status)
1898 unsigned long flags, flags1;
1899 spin_lock_irqsave(&cosa->lock, flags);
1900 flags1 = claim_dma_lock();
1901 disable_dma(cosa->dma);
1902 clear_dma_ff(cosa->dma);
1903 release_dma_lock(flags1);
1904 if (test_bit(TXBIT, &cosa->rxtx)) {
1905 struct channel_data *chan = cosa->chan+cosa->txchan;
1907 if (chan->tx_done(chan, cosa->txsize))
1908 clear_bit(chan->num, &cosa->txbitmap);
1909 } else if (test_bit(RXBIT, &cosa->rxtx)) {
1913 printk(KERN_INFO "cosa%dc%d: done rx(0x%x)", cosa->num,
1914 cosa->rxchan->num, cosa->rxsize);
1915 for (i=0; i<cosa->rxsize; i++)
1916 printk (" %02x", cosa->rxbuf[i]&0xff);
1920 /* Packet for unknown channel? */
1921 if (cosa->rxbuf == cosa->bouncebuf)
1923 if (!cosa_dma_able(cosa->rxchan, cosa->rxbuf, cosa->rxsize))
1924 memcpy(cosa->rxbuf, cosa->bouncebuf, cosa->rxsize);
1925 if (cosa->rxchan->rx_done)
1926 if (cosa->rxchan->rx_done(cosa->rxchan))
1927 clear_bit(cosa->rxchan->num, &cosa->rxbitmap);
1929 printk(KERN_NOTICE "cosa%d: unexpected EOT interrupt\n",
1933 * Clear the RXBIT, TXBIT and IRQBIT (the latest should be
1934 * cleared anyway). We should do it as soon as possible
1935 * so that we can tell the COSA we are done and to give it a time
1940 put_driver_status_nolock(cosa);
1941 spin_unlock_irqrestore(&cosa->lock, flags);
1944 static irqreturn_t cosa_interrupt(int irq, void *cosa_)
1948 struct cosa_data *cosa = cosa_;
1950 status = cosa_getstatus(cosa);
1952 printk(KERN_INFO "cosa%d: got IRQ, status 0x%02x\n", cosa->num,
1956 debug_status_in(cosa, status);
1958 switch (status & SR_CMD_FROM_SRP_MASK) {
1959 case SR_DOWN_REQUEST:
1960 tx_interrupt(cosa, status);
1963 rx_interrupt(cosa, status);
1965 case SR_END_OF_TRANSFER:
1966 eot_interrupt(cosa, status);
1969 /* We may be too fast for SRP. Try to wait a bit more. */
1970 if (count++ < 100) {
1974 printk(KERN_INFO "cosa%d: unknown status 0x%02x in IRQ after %d retries\n",
1975 cosa->num, status & 0xff, count);
1979 printk(KERN_INFO "%s: %d-times got unknown status in IRQ\n",
1982 printk(KERN_INFO "%s: returning from IRQ\n", cosa->name);
1988 /* ---------- I/O debugging routines ---------- */
1990 * These routines can be used to monitor COSA/SRP I/O and to printk()
1991 * the data being transferred on the data and status I/O port in a
1996 static void debug_status_in(struct cosa_data *cosa, int status)
1999 switch(status & SR_CMD_FROM_SRP_MASK) {
2003 case SR_DOWN_REQUEST:
2006 case SR_END_OF_TRANSFER:
2013 printk(KERN_INFO "%s: IO: status -> 0x%02x (%s%s%s%s)\n",
2016 status & SR_USR_RQ ? "USR_RQ|":"",
2017 status & SR_TX_RDY ? "TX_RDY|":"",
2018 status & SR_RX_RDY ? "RX_RDY|":"",
2022 static void debug_status_out(struct cosa_data *cosa, int status)
2024 printk(KERN_INFO "%s: IO: status <- 0x%02x (%s%s%s%s%s%s)\n",
2027 status & SR_RX_DMA_ENA ? "RXDMA|":"!rxdma|",
2028 status & SR_TX_DMA_ENA ? "TXDMA|":"!txdma|",
2029 status & SR_RST ? "RESET|":"",
2030 status & SR_USR_INT_ENA ? "USRINT|":"!usrint|",
2031 status & SR_TX_INT_ENA ? "TXINT|":"!txint|",
2032 status & SR_RX_INT_ENA ? "RXINT":"!rxint");
2035 static void debug_data_in(struct cosa_data *cosa, int data)
2037 printk(KERN_INFO "%s: IO: data -> 0x%04x\n", cosa->name, data);
2040 static void debug_data_out(struct cosa_data *cosa, int data)
2042 printk(KERN_INFO "%s: IO: data <- 0x%04x\n", cosa->name, data);
2045 static void debug_data_cmd(struct cosa_data *cosa, int data)
2047 printk(KERN_INFO "%s: IO: data <- 0x%04x (%s|%s)\n",
2049 data & SR_RDY_RCV ? "RX_RDY" : "!rx_rdy",
2050 data & SR_RDY_SND ? "TX_RDY" : "!tx_rdy");
2054 /* EOF -- this file has not been truncated */