cosa.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:58k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* $Id: cosa.c,v 1.31 2000/03/08 17:47:16 kas Exp $ */
  2. /*
  3.  *  Copyright (C) 1995-1997  Jan "Yenya" Kasprzak <kas@fi.muni.cz>
  4.  *
  5.  *  This program is free software; you can redistribute it and/or modify
  6.  *  it under the terms of the GNU General Public License as published by
  7.  *  the Free Software Foundation; either version 2 of the License, or
  8.  *  (at your option) any later version.
  9.  *
  10.  *  This program is distributed in the hope that it will be useful,
  11.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.  *  GNU General Public License for more details.
  14.  *
  15.  *  You should have received a copy of the GNU General Public License
  16.  *  along with this program; if not, write to the Free Software
  17.  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18.  */
  19. /*
  20.  * The driver for the SRP and COSA synchronous serial cards.
  21.  *
  22.  * HARDWARE INFO
  23.  *
  24.  * Both cards are developed at the Institute of Computer Science,
  25.  * Masaryk University (http://www.ics.muni.cz/). The hardware is
  26.  * developed by Jiri Novotny <novotny@ics.muni.cz>. More information
  27.  * and the photo of both cards is available at
  28.  * http://www.pavoucek.cz/cosa.html. The card documentation, firmwares
  29.  * and other goods can be downloaded from ftp://ftp.ics.muni.cz/pub/cosa/.
  30.  * For Linux-specific utilities, see below in the "Software info" section.
  31.  * If you want to order the card, contact Jiri Novotny.
  32.  *
  33.  * The SRP (serial port?, the Czech word "srp" means "sickle") card
  34.  * is a 2-port intelligent (with its own 8-bit CPU) synchronous serial card
  35.  * with V.24 interfaces up to 80kb/s each.
  36.  *
  37.  * The COSA (communication serial adapter?, the Czech word "kosa" means
  38.  * "scythe") is a next-generation sync/async board with two interfaces
  39.  * - currently any of V.24, X.21, V.35 and V.36 can be selected.
  40.  * It has a 16-bit SAB80166 CPU and can do up to 10 Mb/s per channel.
  41.  * The 8-channels version is in development.
  42.  *
  43.  * Both types have downloadable firmware and communicate via ISA DMA.
  44.  * COSA can be also a bus-mastering device.
  45.  *
  46.  * SOFTWARE INFO
  47.  *
  48.  * The homepage of the Linux driver is at http://www.fi.muni.cz/~kas/cosa/.
  49.  * The CVS tree of Linux driver can be viewed there, as well as the
  50.  * firmware binaries and user-space utilities for downloading the firmware
  51.  * into the card and setting up the card.
  52.  *
  53.  * The Linux driver (unlike the present *BSD drivers :-) can work even
  54.  * for the COSA and SRP in one computer and allows each channel to work
  55.  * in one of the three modes (character device, Cisco HDLC, Sync PPP).
  56.  *
  57.  * AUTHOR
  58.  *
  59.  * The Linux driver was written by Jan "Yenya" Kasprzak <kas@fi.muni.cz>.
  60.  *
  61.  * You can mail me bugfixes and even success reports. I am especially
  62.  * interested in the SMP and/or muliti-channel success/failure reports
  63.  * (I wonder if I did the locking properly :-).
  64.  *
  65.  * THE AUTHOR USED THE FOLLOWING SOURCES WHEN PROGRAMMING THE DRIVER
  66.  *
  67.  * The COSA/SRP NetBSD driver by Zdenek Salvet and Ivos Cernohlavek
  68.  * The skeleton.c by Donald Becker
  69.  * The SDL Riscom/N2 driver by Mike Natale
  70.  * The Comtrol Hostess SV11 driver by Alan Cox
  71.  * The Sync PPP/Cisco HDLC layer (syncppp.c) ported to Linux by Alan Cox
  72.  */
  73. /*
  74.  *     5/25/1999 : Marcelo Tosatti <marcelo@conectiva.com.br>
  75.  *             fixed a deadlock in cosa_sppp_open
  76.  */
  77. /* ---------- Headers, macros, data structures ---------- */
  78. #include <linux/config.h>
  79. #include <linux/module.h>
  80. #include <linux/kernel.h>
  81. #include <linux/slab.h>
  82. #include <linux/poll.h>
  83. #include <linux/fs.h>
  84. #include <linux/devfs_fs_kernel.h>
  85. #include <linux/sched.h>
  86. #include <linux/interrupt.h>
  87. #include <linux/delay.h>
  88. #include <linux/errno.h>
  89. #include <linux/ioport.h>
  90. #include <linux/netdevice.h>
  91. #include <linux/spinlock.h>
  92. #include <linux/smp_lock.h>
  93. #undef COSA_SLOW_IO /* for testing purposes only */
  94. #undef REALLY_SLOW_IO
  95. #include <asm/io.h>
  96. #include <asm/dma.h>
  97. #include <asm/byteorder.h>
  98. #include <net/syncppp.h>
  99. #include "cosa.h"
  100. /* Maximum length of the identification string. */
  101. #define COSA_MAX_ID_STRING 128
  102. /* Maximum length of the channel name */
  103. #define COSA_MAX_NAME (sizeof("cosaXXXcXXX")+1)
  104. /* Per-channel data structure */
  105. struct channel_data {
  106. void *if_ptr; /* General purpose pointer (used by SPPP) */
  107. int usage; /* Usage count; >0 for chrdev, -1 for netdev */
  108. int num; /* Number of the channel */
  109. struct cosa_data *cosa; /* Pointer to the per-card structure */
  110. int txsize; /* Size of transmitted data */
  111. char *txbuf; /* Transmit buffer */
  112. char name[COSA_MAX_NAME]; /* channel name */
  113. /* The HW layer interface */
  114. /* routine called from the RX interrupt */
  115. char *(*setup_rx)(struct channel_data *channel, int size);
  116. /* routine called when the RX is done (from the EOT interrupt) */
  117. int (*rx_done)(struct channel_data *channel);
  118. /* routine called when the TX is done (from the EOT interrupt) */
  119. int (*tx_done)(struct channel_data *channel, int size);
  120. /* Character device parts */
  121. struct semaphore rsem, wsem;
  122. char *rxdata;
  123. int rxsize;
  124. wait_queue_head_t txwaitq, rxwaitq;
  125. int tx_status, rx_status;
  126. /* SPPP/HDLC device parts */
  127. struct ppp_device pppdev;
  128. struct sk_buff *rx_skb, *tx_skb;
  129. struct net_device_stats stats;
  130. };
  131. /* cosa->firmware_status bits */
  132. #define COSA_FW_RESET (1<<0) /* Is the ROM monitor active? */
  133. #define COSA_FW_DOWNLOAD (1<<1) /* Is the microcode downloaded? */
  134. #define COSA_FW_START (1<<2) /* Is the microcode running? */
  135. struct cosa_data {
  136. int num; /* Card number */
  137. char name[COSA_MAX_NAME]; /* Card name - e.g "cosa0" */
  138. unsigned int datareg, statusreg; /* I/O ports */
  139. unsigned short irq, dma; /* IRQ and DMA number */
  140. unsigned short startaddr; /* Firmware start address */
  141. unsigned short busmaster; /* Use busmastering? */
  142. int nchannels; /* # of channels on this card */
  143. int driver_status; /* For communicating with firware */
  144. int firmware_status; /* Downloaded, reseted, etc. */
  145. long int rxbitmap, txbitmap; /* Bitmap of channels who are willing to send/receive data */
  146. long int rxtx; /* RX or TX in progress? */
  147. int enabled;
  148. int usage; /* usage count */
  149. int txchan, txsize, rxsize;
  150. struct channel_data *rxchan;
  151. char *bouncebuf;
  152. char *txbuf, *rxbuf;
  153. struct channel_data *chan;
  154. spinlock_t lock; /* For exclusive operations on this structure */
  155. char id_string[COSA_MAX_ID_STRING]; /* ROM monitor ID string */
  156. char *type; /* card type */
  157. };
  158. /*
  159.  * Define this if you want all the possible ports to be autoprobed.
  160.  * It is here but it probably is not a good idea to use this.
  161.  */
  162. /* #define COSA_ISA_AUTOPROBE 1 */
  163. /*
  164.  * Character device major number. 117 was allocated for us.
  165.  * The value of 0 means to allocate a first free one.
  166.  */
  167. static int cosa_major = 117;
  168. /*
  169.  * Encoding of the minor numbers:
  170.  * The lowest CARD_MINOR_BITS bits means the channel on the single card,
  171.  * the highest bits means the card number.
  172.  */
  173. #define CARD_MINOR_BITS 4 /* How many bits in minor number are reserved
  174.  * for the single card */
  175. /*
  176.  * The following depends on CARD_MINOR_BITS. Unfortunately, the "MODULE_STRING"
  177.  * macro doesn't like anything other than the raw number as an argument :-(
  178.  */
  179. #define MAX_CARDS 16
  180. /* #define MAX_CARDS (1 << (8-CARD_MINOR_BITS)) */
  181. #define DRIVER_RX_READY 0x0001
  182. #define DRIVER_TX_READY 0x0002
  183. #define DRIVER_TXMAP_SHIFT 2
  184. #define DRIVER_TXMAP_MASK 0x0c /* FIXME: 0xfc for 8-channel version */
  185. /*
  186.  * for cosa->rxtx - indicates whether either transmit or receive is
  187.  * in progress. These values are mean number of the bit.
  188.  */
  189. #define TXBIT 0
  190. #define RXBIT 1
  191. #define IRQBIT 2
  192. #define COSA_MTU 2000 /* FIXME: I don't know this exactly */
  193. #undef DEBUG_DATA //1 /* Dump the data read or written to the channel */
  194. #undef DEBUG_IRQS //1 /* Print the message when the IRQ is received */
  195. #undef DEBUG_IO   //1 /* Dump the I/O traffic */
  196. #define TX_TIMEOUT (5*HZ)
  197. /* Maybe the following should be allocated dynamically */
  198. static struct cosa_data cosa_cards[MAX_CARDS];
  199. static int nr_cards;
  200. #ifdef COSA_ISA_AUTOPROBE
  201. static int io[MAX_CARDS+1]  = { 0x220, 0x228, 0x210, 0x218, 0, };
  202. /* NOTE: DMA is not autoprobed!!! */
  203. static int dma[MAX_CARDS+1] = { 1, 7, 1, 7, 1, 7, 1, 7, 0, };
  204. #else
  205. int io[MAX_CARDS+1]  = { 0, };
  206. int dma[MAX_CARDS+1] = { 0, };
  207. #endif
  208. /* IRQ can be safely autoprobed */
  209. static int irq[MAX_CARDS+1] = { -1, -1, -1, -1, -1, -1, 0, };
  210. #ifdef MODULE
  211. MODULE_PARM(io, "1-" __MODULE_STRING(MAX_CARDS) "i");
  212. MODULE_PARM_DESC(io, "The I/O bases of the COSA or SRP cards");
  213. MODULE_PARM(irq, "1-" __MODULE_STRING(MAX_CARDS) "i");
  214. MODULE_PARM_DESC(irq, "The IRQ lines of the COSA or SRP cards");
  215. MODULE_PARM(dma, "1-" __MODULE_STRING(MAX_CARDS) "i");
  216. MODULE_PARM_DESC(dma, "The DMA channels of the COSA or SRP cards");
  217. MODULE_AUTHOR("Jan "Yenya" Kasprzak, <kas@fi.muni.cz>");
  218. MODULE_DESCRIPTION("Modular driver for the COSA or SRP synchronous card");
  219. MODULE_LICENSE("GPL");
  220. #endif
  221. /* I use this mainly for testing purposes */
  222. #ifdef COSA_SLOW_IO
  223. #define cosa_outb outb_p
  224. #define cosa_outw outw_p
  225. #define cosa_inb  inb_p
  226. #define cosa_inw  inw_p
  227. #else
  228. #define cosa_outb outb
  229. #define cosa_outw outw
  230. #define cosa_inb  inb
  231. #define cosa_inw  inw
  232. #endif
  233. #define is_8bit(cosa) (!(cosa->datareg & 0x08))
  234. #define cosa_getstatus(cosa) (cosa_inb(cosa->statusreg))
  235. #define cosa_putstatus(cosa, stat) (cosa_outb(stat, cosa->statusreg))
  236. #define cosa_getdata16(cosa) (cosa_inw(cosa->datareg))
  237. #define cosa_getdata8(cosa) (cosa_inb(cosa->datareg))
  238. #define cosa_putdata16(cosa, dt) (cosa_outw(dt, cosa->datareg))
  239. #define cosa_putdata8(cosa, dt) (cosa_outb(dt, cosa->datareg))
  240. /* Initialization stuff */
  241. static int cosa_probe(int ioaddr, int irq, int dma);
  242. /* HW interface */
  243. static void cosa_enable_rx(struct channel_data *chan);
  244. static void cosa_disable_rx(struct channel_data *chan);
  245. static int cosa_start_tx(struct channel_data *channel, char *buf, int size);
  246. static void cosa_kick(struct cosa_data *cosa);
  247. static int cosa_dma_able(struct channel_data *chan, char *buf, int data);
  248. /* SPPP/HDLC stuff */
  249. static void sppp_channel_init(struct channel_data *chan);
  250. static void sppp_channel_delete(struct channel_data *chan);
  251. static int cosa_sppp_open(struct net_device *d);
  252. static int cosa_sppp_close(struct net_device *d);
  253. static void cosa_sppp_timeout(struct net_device *d);
  254. static int cosa_sppp_tx(struct sk_buff *skb, struct net_device *d);
  255. static char *sppp_setup_rx(struct channel_data *channel, int size);
  256. static int sppp_rx_done(struct channel_data *channel);
  257. static int sppp_tx_done(struct channel_data *channel, int size);
  258. static int cosa_sppp_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd);
  259. static struct net_device_stats *cosa_net_stats(struct net_device *dev);
  260. /* Character device */
  261. static void chardev_channel_init(struct channel_data *chan);
  262. static char *chrdev_setup_rx(struct channel_data *channel, int size);
  263. static int chrdev_rx_done(struct channel_data *channel);
  264. static int chrdev_tx_done(struct channel_data *channel, int size);
  265. static ssize_t cosa_read(struct file *file,
  266. char *buf, size_t count, loff_t *ppos);
  267. static ssize_t cosa_write(struct file *file,
  268. const char *buf, size_t count, loff_t *ppos);
  269. static unsigned int cosa_poll(struct file *file, poll_table *poll);
  270. static int cosa_open(struct inode *inode, struct file *file);
  271. static int cosa_release(struct inode *inode, struct file *file);
  272. static int cosa_chardev_ioctl(struct inode *inode, struct file *file,
  273. unsigned int cmd, unsigned long arg);
  274. #ifdef COSA_FASYNC_WORKING
  275. static int cosa_fasync(struct inode *inode, struct file *file, int on);
  276. #endif
  277. static struct file_operations cosa_fops = {
  278. owner: THIS_MODULE,
  279. llseek: no_llseek,
  280. read: cosa_read,
  281. write: cosa_write,
  282. poll: cosa_poll,
  283. ioctl: cosa_chardev_ioctl,
  284. open: cosa_open,
  285. release: cosa_release,
  286. #ifdef COSA_FASYNC_WORKING
  287. fasync: cosa_fasync,
  288. #endif
  289. };
  290. /* Ioctls */
  291. static int cosa_start(struct cosa_data *cosa, int address);
  292. static int cosa_reset(struct cosa_data *cosa);
  293. static int cosa_download(struct cosa_data *cosa, struct cosa_download *d);
  294. static int cosa_readmem(struct cosa_data *cosa, struct cosa_download *d);
  295. /* COSA/SRP ROM monitor */
  296. static int download(struct cosa_data *cosa, char *data, int addr, int len);
  297. static int startmicrocode(struct cosa_data *cosa, int address);
  298. static int readmem(struct cosa_data *cosa, char *data, int addr, int len);
  299. static int cosa_reset_and_read_id(struct cosa_data *cosa, char *id);
  300. /* Auxilliary functions */
  301. static int get_wait_data(struct cosa_data *cosa);
  302. static int put_wait_data(struct cosa_data *cosa, int data);
  303. static int puthexnumber(struct cosa_data *cosa, int number);
  304. static void put_driver_status(struct cosa_data *cosa);
  305. static void put_driver_status_nolock(struct cosa_data *cosa);
  306. /* Interrupt handling */
  307. static void cosa_interrupt(int irq, void *cosa, struct pt_regs *regs);
  308. /* I/O ops debugging */
  309. #ifdef DEBUG_IO
  310. static void debug_data_in(struct cosa_data *cosa, int data);
  311. static void debug_data_out(struct cosa_data *cosa, int data);
  312. static void debug_data_cmd(struct cosa_data *cosa, int data);
  313. static void debug_status_in(struct cosa_data *cosa, int status);
  314. static void debug_status_out(struct cosa_data *cosa, int status);
  315. #endif
  316. /* ---------- Initialization stuff ---------- */
  317. static devfs_handle_t devfs_handle;
  318. #ifdef MODULE
  319. int init_module(void)
  320. #else
  321. static int __init cosa_init(void)
  322. #endif
  323. {
  324. int i;
  325. printk(KERN_INFO "cosa v1.08 (c) 1997-2000 Jan Kasprzak <kas@fi.muni.cz>n");
  326. #ifdef CONFIG_SMP
  327. printk(KERN_INFO "cosa: SMP found. Please mail any success/failure reports to the author.n");
  328. #endif
  329. if (cosa_major > 0) {
  330. if (devfs_register_chrdev(cosa_major, "cosa", &cosa_fops)) {
  331. printk(KERN_WARNING "cosa: unable to get major %dn",
  332. cosa_major);
  333. return -EIO;
  334. }
  335. } else {
  336. if (!(cosa_major=devfs_register_chrdev(0, "cosa", &cosa_fops))) {
  337. printk(KERN_WARNING "cosa: unable to register chardevn");
  338. return -EIO;
  339. }
  340. }
  341. for (i=0; i<MAX_CARDS; i++)
  342. cosa_cards[i].num = -1;
  343. for (i=0; io[i] != 0 && i < MAX_CARDS; i++)
  344. cosa_probe(io[i], irq[i], dma[i]);
  345. devfs_handle = devfs_mk_dir (NULL, "cosa", NULL);
  346. devfs_register_series (devfs_handle, "%u", nr_cards, DEVFS_FL_DEFAULT,
  347.        cosa_major, 0,
  348.        S_IFCHR | S_IRUSR | S_IWUSR,
  349.        &cosa_fops, NULL);
  350. if (!nr_cards) {
  351. printk(KERN_WARNING "cosa: no devices found.n");
  352. devfs_unregister_chrdev(cosa_major, "cosa");
  353. return -ENODEV;
  354. }
  355. return 0;
  356. }
  357. #ifdef MODULE
  358. void cleanup_module (void)
  359. {
  360. struct cosa_data *cosa;
  361. printk(KERN_INFO "Unloading the cosa modulen");
  362. devfs_unregister (devfs_handle);
  363. for (cosa=cosa_cards; nr_cards--; cosa++) {
  364. int i;
  365. /* Clean up the per-channel data */
  366. for (i=0; i<cosa->nchannels; i++) {
  367. /* Chardev driver has no alloc'd per-channel data */
  368. sppp_channel_delete(cosa->chan+i);
  369. }
  370. /* Clean up the per-card data */
  371. kfree(cosa->chan);
  372. kfree(cosa->bouncebuf);
  373. free_irq(cosa->irq, cosa);
  374. free_dma(cosa->dma);
  375. release_region(cosa->datareg,is_8bit(cosa)?2:4);
  376. }
  377. devfs_unregister_chrdev(cosa_major, "cosa");
  378. }
  379. #endif
  380. /*
  381.  * This function should register all the net devices needed for the
  382.  * single channel.
  383.  */
  384. static __inline__ void channel_init(struct channel_data *chan)
  385. {
  386. sprintf(chan->name, "cosa%dc%d", chan->cosa->num, chan->num);
  387. /* Initialize the chardev data structures */
  388. chardev_channel_init(chan);
  389. /* Register the sppp interface */
  390. sppp_channel_init(chan);
  391. }
  392. static int cosa_probe(int base, int irq, int dma)
  393. {
  394. struct cosa_data *cosa = cosa_cards+nr_cards;
  395. int i;
  396. memset(cosa, 0, sizeof(struct cosa_data));
  397. /* Checking validity of parameters: */
  398. /* IRQ should be 2-7 or 10-15; negative IRQ means autoprobe */
  399. if ((irq >= 0  && irq < 2) || irq > 15 || (irq < 10 && irq > 7)) {
  400. printk (KERN_INFO "cosa_probe: invalid IRQ %dn", irq);
  401. return -1;
  402. }
  403. /* I/O address should be between 0x100 and 0x3ff and should be
  404.  * multiple of 8. */
  405. if (base < 0x100 || base > 0x3ff || base & 0x7) {
  406. printk (KERN_INFO "cosa_probe: invalid I/O address 0x%xn",
  407. base);
  408. return -1;
  409. }
  410. /* DMA should be 0,1 or 3-7 */
  411. if (dma < 0 || dma == 4 || dma > 7) {
  412. printk (KERN_INFO "cosa_probe: invalid DMA %dn", dma);
  413. return -1;
  414. }
  415. /* and finally, on 16-bit COSA DMA should be 4-7 and 
  416.  * I/O base should not be multiple of 0x10 */
  417. if (((base & 0x8) && dma < 4) || (!(base & 0x8) && dma > 3)) {
  418. printk (KERN_INFO "cosa_probe: 8/16 bit base and DMA mismatch"
  419. " (base=0x%x, dma=%d)n", base, dma);
  420. return -1;
  421. }
  422. cosa->dma = dma;
  423. cosa->datareg = base;
  424. cosa->statusreg = is_8bit(cosa)?base+1:base+2;
  425. spin_lock_init(&cosa->lock);
  426. if (check_region(base, is_8bit(cosa)?2:4))
  427. return -1;
  428. if (cosa_reset_and_read_id(cosa, cosa->id_string) < 0) {
  429. printk(KERN_DEBUG "cosa: probe at 0x%x failed.n", base);
  430. return -1;
  431. }
  432. /* Test the validity of identification string */
  433. if (!strncmp(cosa->id_string, "SRP", 3))
  434. cosa->type = "srp";
  435. else if (!strncmp(cosa->id_string, "COSA", 4))
  436. cosa->type = is_8bit(cosa)? "cosa8": "cosa16";
  437. else {
  438. /* Print a warning only if we are not autoprobing */
  439. #ifndef COSA_ISA_AUTOPROBE
  440. printk(KERN_INFO "cosa: valid signature not found at 0x%x.n",
  441. base);
  442. #endif
  443. return -1;
  444. }
  445. /* Now do IRQ autoprobe */
  446. if (irq < 0) {
  447. unsigned long irqs;
  448. /* printk(KERN_INFO "IRQ autoproben"); */
  449. sti();
  450. irqs = probe_irq_on();
  451. /* 
  452.  * Enable interrupt on tx buffer empty (it sure is) 
  453.  * really sure ?
  454.  * FIXME: When this code is not used as module, we should
  455.  * probably call udelay() instead of the interruptible sleep.
  456.  */
  457. current->state = TASK_INTERRUPTIBLE;
  458. cosa_putstatus(cosa, SR_TX_INT_ENA);
  459. schedule_timeout(30);
  460. current->state = TASK_RUNNING;
  461. irq = probe_irq_off(irqs);
  462. /* Disable all IRQs from the card */
  463. cosa_putstatus(cosa, 0);
  464. /* Empty the received data register */
  465. cosa_getdata8(cosa);
  466. if (irq < 0) {
  467. printk (KERN_INFO "cosa IRQ autoprobe: multiple interrupts obtained (%d, board at 0x%x)n",
  468. irq, cosa->datareg);
  469. return -1;
  470. }
  471. if (irq == 0) {
  472. printk (KERN_INFO "cosa IRQ autoprobe: no interrupt obtained (board at 0x%x)n",
  473. cosa->datareg);
  474. /* return -1; */
  475. }
  476. }
  477. cosa->irq = irq;
  478. cosa->num = nr_cards;
  479. cosa->usage = 0;
  480. cosa->nchannels = 2; /* FIXME: how to determine this? */
  481. request_region(base, is_8bit(cosa)?2:4, cosa->type);
  482. if (request_irq(cosa->irq, cosa_interrupt, 0, cosa->type, cosa))
  483. goto bad1;
  484. if (request_dma(cosa->dma, cosa->type)) {
  485. free_irq(cosa->irq, cosa);
  486. bad1: release_region(cosa->datareg,is_8bit(cosa)?2:4);
  487. printk(KERN_NOTICE "cosa%d: allocating resources failedn",
  488. cosa->num);
  489. return -1;
  490. }
  491. cosa->bouncebuf = kmalloc(COSA_MTU, GFP_KERNEL|GFP_DMA);
  492. sprintf(cosa->name, "cosa%d", cosa->num);
  493. /* Initialize the per-channel data */
  494. cosa->chan = kmalloc(sizeof(struct channel_data)*cosa->nchannels,
  495. GFP_KERNEL);
  496. memset(cosa->chan, 0, sizeof(struct channel_data)*cosa->nchannels);
  497. for (i=0; i<cosa->nchannels; i++) {
  498. cosa->chan[i].cosa = cosa;
  499. cosa->chan[i].num = i;
  500. channel_init(cosa->chan+i);
  501. }
  502. printk (KERN_INFO "cosa%d: %s (%s at 0x%x irq %d dma %d), %d channelsn",
  503. cosa->num, cosa->id_string, cosa->type,
  504. cosa->datareg, cosa->irq, cosa->dma, cosa->nchannels);
  505. return nr_cards++;
  506. }
  507. /*---------- SPPP/HDLC netdevice ---------- */
  508. static void sppp_channel_init(struct channel_data *chan)
  509. {
  510. struct net_device *d;
  511. chan->if_ptr = &chan->pppdev;
  512. chan->pppdev.dev = kmalloc(sizeof(struct net_device), GFP_KERNEL);
  513. memset(chan->pppdev.dev, 0, sizeof(struct net_device));
  514. sppp_attach(&chan->pppdev);
  515. d=chan->pppdev.dev;
  516. strcpy(d->name, chan->name);
  517. d->base_addr = chan->cosa->datareg;
  518. d->irq = chan->cosa->irq;
  519. d->dma = chan->cosa->dma;
  520. d->priv = chan;
  521. d->init = NULL;
  522. d->open = cosa_sppp_open;
  523. d->stop = cosa_sppp_close;
  524. d->hard_start_xmit = cosa_sppp_tx;
  525. d->do_ioctl = cosa_sppp_ioctl;
  526. d->get_stats = cosa_net_stats;
  527. d->tx_timeout = cosa_sppp_timeout;
  528. d->watchdog_timeo = TX_TIMEOUT;
  529. if (register_netdev(d) == -1) {
  530. printk(KERN_WARNING "%s: register_netdev failed.n", d->name);
  531. sppp_detach(chan->pppdev.dev);
  532. return;
  533. }
  534. }
  535. static void sppp_channel_delete(struct channel_data *chan)
  536. {
  537. sppp_detach(chan->pppdev.dev);
  538. unregister_netdev(chan->pppdev.dev);
  539. }
  540. static int cosa_sppp_open(struct net_device *d)
  541. {
  542. struct channel_data *chan = d->priv;
  543. int err;
  544. unsigned long flags;
  545. if (!(chan->cosa->firmware_status & COSA_FW_START)) {
  546. printk(KERN_NOTICE "%s: start the firmware first (status %d)n",
  547. chan->cosa->name, chan->cosa->firmware_status);
  548. return -EPERM;
  549. }
  550. spin_lock_irqsave(&chan->cosa->lock, flags);
  551. if (chan->usage != 0) {
  552. printk(KERN_WARNING "%s: sppp_open called with usage count %dn",
  553. chan->name, chan->usage);
  554. spin_unlock_irqrestore(&chan->cosa->lock, flags);
  555. return -EBUSY;
  556. }
  557. chan->setup_rx = sppp_setup_rx;
  558. chan->tx_done = sppp_tx_done;
  559. chan->rx_done = sppp_rx_done;
  560. chan->usage=-1;
  561. chan->cosa->usage++;
  562. MOD_INC_USE_COUNT;
  563. spin_unlock_irqrestore(&chan->cosa->lock, flags);
  564. err = sppp_open(d);
  565. if (err) {
  566. spin_lock_irqsave(&chan->cosa->lock, flags);
  567. chan->usage=0;
  568. chan->cosa->usage--;
  569. MOD_DEC_USE_COUNT;
  570. spin_unlock_irqrestore(&chan->cosa->lock, flags);
  571. return err;
  572. }
  573. netif_start_queue(d);
  574. cosa_enable_rx(chan);
  575. return 0;
  576. }
  577. static int cosa_sppp_tx(struct sk_buff *skb, struct net_device *dev)
  578. {
  579. struct channel_data *chan = dev->priv;
  580. netif_stop_queue(dev);
  581. chan->tx_skb = skb;
  582. cosa_start_tx(chan, skb->data, skb->len);
  583. return 0;
  584. }
  585. static void cosa_sppp_timeout(struct net_device *dev)
  586. {
  587. struct channel_data *chan = dev->priv;
  588. if (test_bit(RXBIT, &chan->cosa->rxtx)) {
  589. chan->stats.rx_errors++;
  590. chan->stats.rx_missed_errors++;
  591. } else {
  592. chan->stats.tx_errors++;
  593. chan->stats.tx_aborted_errors++;
  594. }
  595. cosa_kick(chan->cosa);
  596. if (chan->tx_skb) {
  597. dev_kfree_skb(chan->tx_skb);
  598. chan->tx_skb = 0;
  599. }
  600. netif_wake_queue(dev);
  601. }
  602. static int cosa_sppp_close(struct net_device *d)
  603. {
  604. struct channel_data *chan = d->priv;
  605. unsigned long flags;
  606. netif_stop_queue(d);
  607. sppp_close(d);
  608. cosa_disable_rx(chan);
  609. spin_lock_irqsave(&chan->cosa->lock, flags);
  610. if (chan->rx_skb) {
  611. kfree_skb(chan->rx_skb);
  612. chan->rx_skb = 0;
  613. }
  614. if (chan->tx_skb) {
  615. kfree_skb(chan->tx_skb);
  616. chan->tx_skb = 0;
  617. }
  618. chan->usage=0;
  619. chan->cosa->usage--;
  620. MOD_DEC_USE_COUNT;
  621. spin_unlock_irqrestore(&chan->cosa->lock, flags);
  622. return 0;
  623. }
  624. static char *sppp_setup_rx(struct channel_data *chan, int size)
  625. {
  626. /*
  627.  * We can safely fall back to non-dma-able memory, because we have
  628.  * the cosa->bouncebuf pre-allocated.
  629.  */
  630. if (chan->rx_skb)
  631. kfree_skb(chan->rx_skb);
  632. chan->rx_skb = dev_alloc_skb(size);
  633. if (chan->rx_skb == NULL) {
  634. printk(KERN_NOTICE "%s: Memory squeeze, dropping packetn",
  635. chan->name);
  636. chan->stats.rx_dropped++;
  637. return NULL;
  638. }
  639. chan->pppdev.dev->trans_start = jiffies;
  640. return skb_put(chan->rx_skb, size);
  641. }
  642. static int sppp_rx_done(struct channel_data *chan)
  643. {
  644. if (!chan->rx_skb) {
  645. printk(KERN_WARNING "%s: rx_done with empty skb!n",
  646. chan->name);
  647. chan->stats.rx_errors++;
  648. chan->stats.rx_frame_errors++;
  649. return 0;
  650. }
  651. chan->rx_skb->protocol = htons(ETH_P_WAN_PPP);
  652. chan->rx_skb->dev = chan->pppdev.dev;
  653. chan->rx_skb->mac.raw = chan->rx_skb->data;
  654. chan->stats.rx_packets++;
  655. chan->stats.rx_bytes += chan->cosa->rxsize;
  656. netif_rx(chan->rx_skb);
  657. chan->rx_skb = 0;
  658. chan->pppdev.dev->last_rx = jiffies;
  659. return 0;
  660. }
  661. /* ARGSUSED */
  662. static int sppp_tx_done(struct channel_data *chan, int size)
  663. {
  664. if (!chan->tx_skb) {
  665. printk(KERN_WARNING "%s: tx_done with empty skb!n",
  666. chan->name);
  667. chan->stats.tx_errors++;
  668. chan->stats.tx_aborted_errors++;
  669. return 1;
  670. }
  671. dev_kfree_skb_irq(chan->tx_skb);
  672. chan->tx_skb = 0;
  673. chan->stats.tx_packets++;
  674. chan->stats.tx_bytes += size;
  675. netif_wake_queue(chan->pppdev.dev);
  676. return 1;
  677. }
  678. static struct net_device_stats *cosa_net_stats(struct net_device *dev)
  679. {
  680. struct channel_data *chan = dev->priv;
  681. return &chan->stats;
  682. }
  683. /*---------- Character device ---------- */
  684. static void chardev_channel_init(struct channel_data *chan)
  685. {
  686. init_MUTEX(&chan->rsem);
  687. init_MUTEX(&chan->wsem);
  688. }
  689. static ssize_t cosa_read(struct file *file,
  690. char *buf, size_t count, loff_t *ppos)
  691. {
  692. DECLARE_WAITQUEUE(wait, current);
  693. unsigned long flags;
  694. struct channel_data *chan = (struct channel_data *)file->private_data;
  695. struct cosa_data *cosa = chan->cosa;
  696. char *kbuf;
  697. if (!(cosa->firmware_status & COSA_FW_START)) {
  698. printk(KERN_NOTICE "%s: start the firmware first (status %d)n",
  699. cosa->name, cosa->firmware_status);
  700. return -EPERM;
  701. }
  702. if (down_interruptible(&chan->rsem))
  703. return -ERESTARTSYS;
  704. if ((chan->rxdata = kmalloc(COSA_MTU, GFP_DMA|GFP_KERNEL)) == NULL) {
  705. printk(KERN_INFO "%s: cosa_read() - OOMn", cosa->name);
  706. up(&chan->rsem);
  707. return -ENOMEM;
  708. }
  709. chan->rx_status = 0;
  710. cosa_enable_rx(chan);
  711. spin_lock_irqsave(&cosa->lock, flags);
  712. add_wait_queue(&chan->rxwaitq, &wait);
  713. while(!chan->rx_status) {
  714. current->state = TASK_INTERRUPTIBLE;
  715. spin_unlock_irqrestore(&cosa->lock, flags);
  716. schedule();
  717. spin_lock_irqsave(&cosa->lock, flags);
  718. if (signal_pending(current) && chan->rx_status == 0) {
  719. chan->rx_status = 1;
  720. remove_wait_queue(&chan->rxwaitq, &wait);
  721. current->state = TASK_RUNNING;
  722. spin_unlock_irqrestore(&cosa->lock, flags);
  723. up(&chan->rsem);
  724. return -ERESTARTSYS;
  725. }
  726. }
  727. remove_wait_queue(&chan->rxwaitq, &wait);
  728. current->state = TASK_RUNNING;
  729. kbuf = chan->rxdata;
  730. count = chan->rxsize;
  731. spin_unlock_irqrestore(&cosa->lock, flags);
  732. up(&chan->rsem);
  733. if (copy_to_user(buf, kbuf, count)) {
  734. kfree(kbuf);
  735. return -EFAULT;
  736. }
  737. kfree(kbuf);
  738. return count;
  739. }
  740. static char *chrdev_setup_rx(struct channel_data *chan, int size)
  741. {
  742. /* Expect size <= COSA_MTU */
  743. chan->rxsize = size;
  744. return chan->rxdata;
  745. }
  746. static int chrdev_rx_done(struct channel_data *chan)
  747. {
  748. if (chan->rx_status) { /* Reader has died */
  749. kfree(chan->rxdata);
  750. up(&chan->wsem);
  751. }
  752. chan->rx_status = 1;
  753. wake_up_interruptible(&chan->rxwaitq);
  754. return 1;
  755. }
  756. static ssize_t cosa_write(struct file *file,
  757. const char *buf, size_t count, loff_t *ppos)
  758. {
  759. DECLARE_WAITQUEUE(wait, current);
  760. struct channel_data *chan = (struct channel_data *)file->private_data;
  761. struct cosa_data *cosa = chan->cosa;
  762. unsigned long flags;
  763. char *kbuf;
  764. if (!(cosa->firmware_status & COSA_FW_START)) {
  765. printk(KERN_NOTICE "%s: start the firmware first (status %d)n",
  766. cosa->name, cosa->firmware_status);
  767. return -EPERM;
  768. }
  769. if (down_interruptible(&chan->wsem))
  770. return -ERESTARTSYS;
  771. if (count > COSA_MTU)
  772. count = COSA_MTU;
  773. /* Allocate the buffer */
  774. if ((kbuf = kmalloc(count, GFP_KERNEL|GFP_DMA)) == NULL) {
  775. printk(KERN_NOTICE "%s: cosa_write() OOM - dropping packetn",
  776. cosa->name);
  777. up(&chan->wsem);
  778. return -ENOMEM;
  779. }
  780. if (copy_from_user(kbuf, buf, count)) {
  781. up(&chan->wsem);
  782. kfree(kbuf);
  783. return -EFAULT;
  784. }
  785. chan->tx_status=0;
  786. cosa_start_tx(chan, kbuf, count);
  787. spin_lock_irqsave(&cosa->lock, flags);
  788. add_wait_queue(&chan->txwaitq, &wait);
  789. while(!chan->tx_status) {
  790. current->state = TASK_INTERRUPTIBLE;
  791. spin_unlock_irqrestore(&cosa->lock, flags);
  792. schedule();
  793. spin_lock_irqsave(&cosa->lock, flags);
  794. if (signal_pending(current) && chan->tx_status == 0) {
  795. chan->tx_status = 1;
  796. remove_wait_queue(&chan->txwaitq, &wait);
  797. current->state = TASK_RUNNING;
  798. chan->tx_status = 1;
  799. spin_unlock_irqrestore(&cosa->lock, flags);
  800. return -ERESTARTSYS;
  801. }
  802. }
  803. remove_wait_queue(&chan->txwaitq, &wait);
  804. current->state = TASK_RUNNING;
  805. up(&chan->wsem);
  806. spin_unlock_irqrestore(&cosa->lock, flags);
  807. kfree(kbuf);
  808. return count;
  809. }
  810. static int chrdev_tx_done(struct channel_data *chan, int size)
  811. {
  812. if (chan->tx_status) { /* Writer was interrupted */
  813. kfree(chan->txbuf);
  814. up(&chan->wsem);
  815. }
  816. chan->tx_status = 1;
  817. wake_up_interruptible(&chan->txwaitq);
  818. return 1;
  819. }
  820. static unsigned int cosa_poll(struct file *file, poll_table *poll)
  821. {
  822. printk(KERN_INFO "cosa_poll is heren");
  823. return 0;
  824. }
  825. static int cosa_open(struct inode *inode, struct file *file)
  826. {
  827. struct cosa_data *cosa;
  828. struct channel_data *chan;
  829. unsigned long flags;
  830. int n;
  831. if ((n=MINOR(file->f_dentry->d_inode->i_rdev)>>CARD_MINOR_BITS)
  832. >= nr_cards)
  833. return -ENODEV;
  834. cosa = cosa_cards+n;
  835. if ((n=MINOR(file->f_dentry->d_inode->i_rdev)
  836. & ((1<<CARD_MINOR_BITS)-1)) >= cosa->nchannels)
  837. return -ENODEV;
  838. chan = cosa->chan + n;
  839. file->private_data = chan;
  840. spin_lock_irqsave(&cosa->lock, flags);
  841. if (chan->usage < 0) { /* in netdev mode */
  842. spin_unlock_irqrestore(&cosa->lock, flags);
  843. return -EBUSY;
  844. }
  845. cosa->usage++;
  846. chan->usage++;
  847. chan->tx_done = chrdev_tx_done;
  848. chan->setup_rx = chrdev_setup_rx;
  849. chan->rx_done = chrdev_rx_done;
  850. spin_unlock_irqrestore(&cosa->lock, flags);
  851. return 0;
  852. }
  853. static int cosa_release(struct inode *inode, struct file *file)
  854. {
  855. struct channel_data *channel = (struct channel_data *)file->private_data;
  856. struct cosa_data *cosa;
  857. unsigned long flags;
  858. lock_kernel();
  859. cosa = channel->cosa;
  860. spin_lock_irqsave(&cosa->lock, flags);
  861. cosa->usage--;
  862. channel->usage--;
  863. spin_unlock_irqrestore(&cosa->lock, flags);
  864. unlock_kernel();
  865. return 0;
  866. }
  867. #ifdef COSA_FASYNC_WORKING
  868. static struct fasync_struct *fasync[256] = { NULL, };
  869. /* To be done ... */
  870. static int cosa_fasync(struct inode *inode, struct file *file, int on)
  871. {
  872.         int port = MINOR(inode->i_rdev);
  873.         int rv = fasync_helper(inode, file, on, &fasync[port]);
  874.         return rv < 0 ? rv : 0;
  875. }
  876. #endif
  877. /* ---------- Ioctls ---------- */
  878. /*
  879.  * Ioctl subroutines can safely be made inline, because they are called
  880.  * only from cosa_ioctl().
  881.  */
  882. static inline int cosa_reset(struct cosa_data *cosa)
  883. {
  884. char idstring[COSA_MAX_ID_STRING];
  885. if (cosa->usage > 1)
  886. printk(KERN_INFO "cosa%d: WARNING: reset requested with cosa->usage > 1 (%d). Odd things may happen.n",
  887. cosa->num, cosa->usage);
  888. cosa->firmware_status &= ~(COSA_FW_RESET|COSA_FW_START);
  889. if (cosa_reset_and_read_id(cosa, idstring) < 0) {
  890. printk(KERN_NOTICE "cosa%d: reset failedn", cosa->num);
  891. return -EIO;
  892. }
  893. printk(KERN_INFO "cosa%d: resetting device: %sn", cosa->num,
  894. idstring);
  895. cosa->firmware_status |= COSA_FW_RESET;
  896. return 0;
  897. }
  898. /* High-level function to download data into COSA memory. Calls download() */
  899. static inline int cosa_download(struct cosa_data *cosa, struct cosa_download *d)
  900. {
  901. int i;
  902. int addr, len;
  903. char *code;
  904. if (cosa->usage > 1)
  905. printk(KERN_INFO "%s: WARNING: download of microcode requested with cosa->usage > 1 (%d). Odd things may happen.n",
  906. cosa->name, cosa->usage);
  907. if (!(cosa->firmware_status & COSA_FW_RESET)) {
  908. printk(KERN_NOTICE "%s: reset the card first (status %d).n",
  909. cosa->name, cosa->firmware_status);
  910. return -EPERM;
  911. }
  912. if (get_user(addr, &(d->addr)) ||
  913.     __get_user(len, &(d->len)) ||
  914.     __get_user(code, &(d->code)))
  915. return -EFAULT;
  916. if (addr < 0 || addr > COSA_MAX_FIRMWARE_SIZE)
  917. return -EINVAL;
  918. if (len < 0 || len > COSA_MAX_FIRMWARE_SIZE)
  919. return -EINVAL;
  920. /* If something fails, force the user to reset the card */
  921. cosa->firmware_status &= ~(COSA_FW_RESET|COSA_FW_DOWNLOAD);
  922. if ((i=download(cosa, code, len, addr)) < 0) {
  923. printk(KERN_NOTICE "cosa%d: microcode download failed: %dn",
  924. cosa->num, i);
  925. return -EIO;
  926. }
  927. printk(KERN_INFO "cosa%d: downloading microcode - 0x%04x bytes at 0x%04xn",
  928. cosa->num, len, addr);
  929. cosa->firmware_status |= COSA_FW_RESET|COSA_FW_DOWNLOAD;
  930. return 0;
  931. }
  932. /* High-level function to read COSA memory. Calls readmem() */
  933. static inline int cosa_readmem(struct cosa_data *cosa, struct cosa_download *d)
  934. {
  935. int i;
  936. int addr, len;
  937. char *code;
  938. if (cosa->usage > 1)
  939. printk(KERN_INFO "cosa%d: WARNING: readmem requested with "
  940. "cosa->usage > 1 (%d). Odd things may happen.n",
  941. cosa->num, cosa->usage);
  942. if (!(cosa->firmware_status & COSA_FW_RESET)) {
  943. printk(KERN_NOTICE "%s: reset the card first (status %d).n",
  944. cosa->name, cosa->firmware_status);
  945. return -EPERM;
  946. }
  947. if (get_user(addr, &(d->addr)) ||
  948.     __get_user(len, &(d->len)) ||
  949.     __get_user(code, &(d->code)))
  950. return -EFAULT;
  951. /* If something fails, force the user to reset the card */
  952. cosa->firmware_status &= ~COSA_FW_RESET;
  953. if ((i=readmem(cosa, d->code, len, addr)) < 0) {
  954. printk(KERN_NOTICE "cosa%d: reading memory failed: %dn",
  955. cosa->num, i);
  956. return -EIO;
  957. }
  958. printk(KERN_INFO "cosa%d: reading card memory - 0x%04x bytes at 0x%04xn",
  959. cosa->num, len, addr);
  960. cosa->firmware_status |= COSA_FW_RESET;
  961. return 0;
  962. }
  963. /* High-level function to start microcode. Calls startmicrocode(). */
  964. static inline int cosa_start(struct cosa_data *cosa, int address)
  965. {
  966. int i;
  967. if (cosa->usage > 1)
  968. printk(KERN_INFO "cosa%d: WARNING: start microcode requested with cosa->usage > 1 (%d). Odd things may happen.n",
  969. cosa->num, cosa->usage);
  970. if ((cosa->firmware_status & (COSA_FW_RESET|COSA_FW_DOWNLOAD))
  971. != (COSA_FW_RESET|COSA_FW_DOWNLOAD)) {
  972. printk(KERN_NOTICE "%s: download the microcode and/or reset the card first (status %d).n",
  973. cosa->name, cosa->firmware_status);
  974. return -EPERM;
  975. }
  976. cosa->firmware_status &= ~COSA_FW_RESET;
  977. if ((i=startmicrocode(cosa, address)) < 0) {
  978. printk(KERN_NOTICE "cosa%d: start microcode at 0x%04x failed: %dn",
  979. cosa->num, address, i);
  980. return -EIO;
  981. }
  982. printk(KERN_INFO "cosa%d: starting microcode at 0x%04xn",
  983. cosa->num, address);
  984. cosa->startaddr = address;
  985. cosa->firmware_status |= COSA_FW_START;
  986. return 0;
  987. }
  988. /* Buffer of size at least COSA_MAX_ID_STRING is expected */
  989. static inline int cosa_getidstr(struct cosa_data *cosa, char *string)
  990. {
  991. int l = strlen(cosa->id_string)+1;
  992. if (copy_to_user(string, cosa->id_string, l))
  993. return -EFAULT;
  994. return l;
  995. }
  996. /* Buffer of size at least COSA_MAX_ID_STRING is expected */
  997. static inline int cosa_gettype(struct cosa_data *cosa, char *string)
  998. {
  999. int l = strlen(cosa->type)+1;
  1000. if (copy_to_user(string, cosa->type, l))
  1001. return -EFAULT;
  1002. return l;
  1003. }
  1004. static int cosa_ioctl_common(struct cosa_data *cosa,
  1005. struct channel_data *channel, unsigned int cmd, unsigned long arg)
  1006. {
  1007. switch(cmd) {
  1008. case COSAIORSET: /* Reset the device */
  1009. if (!capable(CAP_NET_ADMIN))
  1010. return -EACCES;
  1011. return cosa_reset(cosa);
  1012. case COSAIOSTRT: /* Start the firmware */
  1013. if (!capable(CAP_SYS_RAWIO))
  1014. return -EACCES;
  1015. return cosa_start(cosa, arg);
  1016. case COSAIODOWNLD: /* Download the firmware */
  1017. if (!capable(CAP_SYS_RAWIO))
  1018. return -EACCES;
  1019. return cosa_download(cosa, (struct cosa_download *)arg);
  1020. case COSAIORMEM:
  1021. if (!capable(CAP_SYS_RAWIO))
  1022. return -EACCES;
  1023. return cosa_readmem(cosa, (struct cosa_download *)arg);
  1024. case COSAIORTYPE:
  1025. return cosa_gettype(cosa, (char *)arg);
  1026. case COSAIORIDSTR:
  1027. return cosa_getidstr(cosa, (char *)arg);
  1028. /*
  1029.  * These two are _very_ugly_hack_(tm). Don't even look at this.
  1030.  * Implementing this saved me few reboots after some process segfaulted
  1031.  * inside this module.
  1032.  */
  1033. #ifdef MODULE
  1034. #if 0
  1035. case COSAIOMINC:
  1036. MOD_INC_USE_COUNT;
  1037. return 0;
  1038. case COSAIOMDEC:
  1039. MOD_DEC_USE_COUNT;
  1040. return 0;
  1041. #endif
  1042. #endif
  1043. case COSAIONRCARDS:
  1044. return nr_cards;
  1045. case COSAIONRCHANS:
  1046. return cosa->nchannels;
  1047. case COSAIOBMSET:
  1048. if (!capable(CAP_SYS_RAWIO))
  1049. return -EACCES;
  1050. if (is_8bit(cosa))
  1051. return -EINVAL;
  1052. if (arg != COSA_BM_OFF && arg != COSA_BM_ON)
  1053. return -EINVAL;
  1054. cosa->busmaster = arg;
  1055. return 0;
  1056. case COSAIOBMGET:
  1057. return cosa->busmaster;
  1058. }
  1059. return -ENOIOCTLCMD;
  1060. }
  1061. static int cosa_sppp_ioctl(struct net_device *dev, struct ifreq *ifr,
  1062. int cmd)
  1063. {
  1064. int rv;
  1065. struct channel_data *chan = (struct channel_data *)dev->priv;
  1066. rv = cosa_ioctl_common(chan->cosa, chan, cmd, (unsigned long)ifr->ifr_data);
  1067. if (rv == -ENOIOCTLCMD) {
  1068. return sppp_do_ioctl(dev, ifr, cmd);
  1069. }
  1070. return rv;
  1071. }
  1072. static int cosa_chardev_ioctl(struct inode *inode, struct file *file,
  1073. unsigned int cmd, unsigned long arg)
  1074. {
  1075. struct channel_data *channel = (struct channel_data *)file->private_data;
  1076. struct cosa_data *cosa = channel->cosa;
  1077. return cosa_ioctl_common(cosa, channel, cmd, arg);
  1078. }
  1079. /*---------- HW layer interface ---------- */
  1080. /*
  1081.  * The higher layer can bind itself to the HW layer by setting the callbacks
  1082.  * in the channel_data structure and by using these routines.
  1083.  */
  1084. static void cosa_enable_rx(struct channel_data *chan)
  1085. {
  1086. struct cosa_data *cosa = chan->cosa;
  1087. if (!test_and_set_bit(chan->num, &cosa->rxbitmap))
  1088. put_driver_status(cosa);
  1089. }
  1090. static void cosa_disable_rx(struct channel_data *chan)
  1091. {
  1092. struct cosa_data *cosa = chan->cosa;
  1093. if (test_and_clear_bit(chan->num, &cosa->rxbitmap))
  1094. put_driver_status(cosa);
  1095. }
  1096. /*
  1097.  * FIXME: This routine probably should check for cosa_start_tx() called when
  1098.  * the previous transmit is still unfinished. In this case the non-zero
  1099.  * return value should indicate to the caller that the queuing(sp?) up
  1100.  * the transmit has failed.
  1101.  */
  1102. static int cosa_start_tx(struct channel_data *chan, char *buf, int len)
  1103. {
  1104. struct cosa_data *cosa = chan->cosa;
  1105. unsigned long flags;
  1106. #ifdef DEBUG_DATA
  1107. int i;
  1108. printk(KERN_INFO "cosa%dc%d: starting tx(0x%x)", chan->cosa->num,
  1109. chan->num, len);
  1110. for (i=0; i<len; i++)
  1111. printk(" %02x", buf[i]&0xff);
  1112. printk("n");
  1113. #endif
  1114. spin_lock_irqsave(&cosa->lock, flags);
  1115. chan->txbuf = buf;
  1116. chan->txsize = len;
  1117. if (len > COSA_MTU)
  1118. chan->txsize = COSA_MTU;
  1119. spin_unlock_irqrestore(&cosa->lock, flags);
  1120. /* Tell the firmware we are ready */
  1121. set_bit(chan->num, &cosa->txbitmap);
  1122. put_driver_status(cosa);
  1123. return 0;
  1124. }
  1125. static void put_driver_status(struct cosa_data *cosa)
  1126. {
  1127. unsigned long flags;
  1128. int status;
  1129. spin_lock_irqsave(&cosa->lock, flags);
  1130. status = (cosa->rxbitmap ? DRIVER_RX_READY : 0)
  1131. | (cosa->txbitmap ? DRIVER_TX_READY : 0)
  1132. | (cosa->txbitmap? ~(cosa->txbitmap<<DRIVER_TXMAP_SHIFT)
  1133. &DRIVER_TXMAP_MASK : 0);
  1134. if (!cosa->rxtx) {
  1135. if (cosa->rxbitmap|cosa->txbitmap) {
  1136. if (!cosa->enabled) {
  1137. cosa_putstatus(cosa, SR_RX_INT_ENA);
  1138. #ifdef DEBUG_IO
  1139. debug_status_out(cosa, SR_RX_INT_ENA);
  1140. #endif
  1141. cosa->enabled = 1;
  1142. }
  1143. } else if (cosa->enabled) {
  1144. cosa->enabled = 0;
  1145. cosa_putstatus(cosa, 0);
  1146. #ifdef DEBUG_IO
  1147. debug_status_out(cosa, 0);
  1148. #endif
  1149. }
  1150. cosa_putdata8(cosa, status);
  1151. #ifdef DEBUG_IO
  1152. debug_data_cmd(cosa, status);
  1153. #endif
  1154. }
  1155. spin_unlock_irqrestore(&cosa->lock, flags);
  1156. }
  1157. static void put_driver_status_nolock(struct cosa_data *cosa)
  1158. {
  1159. int status;
  1160. status = (cosa->rxbitmap ? DRIVER_RX_READY : 0)
  1161. | (cosa->txbitmap ? DRIVER_TX_READY : 0)
  1162. | (cosa->txbitmap? ~(cosa->txbitmap<<DRIVER_TXMAP_SHIFT)
  1163. &DRIVER_TXMAP_MASK : 0);
  1164. if (cosa->rxbitmap|cosa->txbitmap) {
  1165. cosa_putstatus(cosa, SR_RX_INT_ENA);
  1166. #ifdef DEBUG_IO
  1167. debug_status_out(cosa, SR_RX_INT_ENA);
  1168. #endif
  1169. cosa->enabled = 1;
  1170. } else {
  1171. cosa_putstatus(cosa, 0);
  1172. #ifdef DEBUG_IO
  1173. debug_status_out(cosa, 0);
  1174. #endif
  1175. cosa->enabled = 0;
  1176. }
  1177. cosa_putdata8(cosa, status);
  1178. #ifdef DEBUG_IO
  1179. debug_data_cmd(cosa, status);
  1180. #endif
  1181. }
  1182. /*
  1183.  * The "kickme" function: When the DMA times out, this is called to
  1184.  * clean up the driver status.
  1185.  * FIXME: Preliminary support, the interface is probably wrong.
  1186.  */
  1187. static void cosa_kick(struct cosa_data *cosa)
  1188. {
  1189. unsigned long flags, flags1;
  1190. char *s = "(probably) IRQ";
  1191. if (test_bit(RXBIT, &cosa->rxtx))
  1192. s = "RX DMA";
  1193. if (test_bit(TXBIT, &cosa->rxtx))
  1194. s = "TX DMA";
  1195. printk(KERN_INFO "%s: %s timeout - restarting.n", cosa->name, s); 
  1196. spin_lock_irqsave(&cosa->lock, flags);
  1197. cosa->rxtx = 0;
  1198. flags1 = claim_dma_lock();
  1199. disable_dma(cosa->dma);
  1200. clear_dma_ff(cosa->dma);
  1201. release_dma_lock(flags1);
  1202. /* FIXME: Anything else? */
  1203. udelay(100);
  1204. cosa_putstatus(cosa, 0);
  1205. udelay(100);
  1206. (void) cosa_getdata8(cosa);
  1207. udelay(100);
  1208. cosa_putdata8(cosa, 0);
  1209. udelay(100);
  1210. put_driver_status_nolock(cosa);
  1211. spin_unlock_irqrestore(&cosa->lock, flags);
  1212. }
  1213. /*
  1214.  * Check if the whole buffer is DMA-able. It means it is below the 16M of
  1215.  * physical memory and doesn't span the 64k boundary. For now it seems
  1216.  * SKB's never do this, but we'll check this anyway.
  1217.  */
  1218. static int cosa_dma_able(struct channel_data *chan, char *buf, int len)
  1219. {
  1220. static int count;
  1221. unsigned long b = (unsigned long)buf;
  1222. if (b+len >= MAX_DMA_ADDRESS)
  1223. return 0;
  1224. if ((b^ (b+len)) & 0x10000) {
  1225. if (count++ < 5)
  1226. printk(KERN_INFO "%s: packet spanning a 64k boundaryn",
  1227. chan->name);
  1228. return 0;
  1229. }
  1230. return 1;
  1231. }
  1232. /* ---------- The SRP/COSA ROM monitor functions ---------- */
  1233. /*
  1234.  * Downloading SRP microcode: say "w" to SRP monitor, it answers by "w=",
  1235.  * drivers need to say 4-digit hex number meaning start address of the microcode
  1236.  * separated by a single space. Monitor replies by saying " =". Now driver
  1237.  * has to write 4-digit hex number meaning the last byte address ended
  1238.  * by a single space. Monitor has to reply with a space. Now the download
  1239.  * begins. After the download monitor replies with "rn." (CR LF dot).
  1240.  */
  1241. static int download(struct cosa_data *cosa, char *microcode, int length, int address)
  1242. {
  1243. int i;
  1244. if (put_wait_data(cosa, 'w') == -1) return -1;
  1245. if ((i=get_wait_data(cosa)) != 'w') { printk("dnld: 0x%04xn",i); return -2;}
  1246. if (get_wait_data(cosa) != '=') return -3;
  1247. if (puthexnumber(cosa, address) < 0) return -4;
  1248. if (put_wait_data(cosa, ' ') == -1) return -10;
  1249. if (get_wait_data(cosa) != ' ') return -11;
  1250. if (get_wait_data(cosa) != '=') return -12;
  1251. if (puthexnumber(cosa, address+length-1) < 0) return -13;
  1252. if (put_wait_data(cosa, ' ') == -1) return -18;
  1253. if (get_wait_data(cosa) != ' ') return -19;
  1254. while (length--) {
  1255. char c;
  1256. #ifndef SRP_DOWNLOAD_AT_BOOT
  1257. if (get_user(c, microcode))
  1258. return -23; /* ??? */
  1259. #else
  1260. c = *microcode;
  1261. #endif
  1262. if (put_wait_data(cosa, c) == -1)
  1263. return -20;
  1264. microcode++;
  1265. }
  1266. if (get_wait_data(cosa) != 'r') return -21;
  1267. if (get_wait_data(cosa) != 'n') return -22;
  1268. if (get_wait_data(cosa) != '.') return -23;
  1269. #if 0
  1270. printk(KERN_DEBUG "cosa%d: download completed.n", cosa->num);
  1271. #endif
  1272. return 0;
  1273. }
  1274. /*
  1275.  * Starting microcode is done via the "g" command of the SRP monitor.
  1276.  * The chat should be the following: "g" "g=" "<addr><CR>"
  1277.  * "<CR><CR><LF><CR><LF>".
  1278.  */
  1279. static int startmicrocode(struct cosa_data *cosa, int address)
  1280. {
  1281. if (put_wait_data(cosa, 'g') == -1) return -1;
  1282. if (get_wait_data(cosa) != 'g') return -2;
  1283. if (get_wait_data(cosa) != '=') return -3;
  1284. if (puthexnumber(cosa, address) < 0) return -4;
  1285. if (put_wait_data(cosa, 'r') == -1) return -5;
  1286. if (get_wait_data(cosa) != 'r') return -6;
  1287. if (get_wait_data(cosa) != 'r') return -7;
  1288. if (get_wait_data(cosa) != 'n') return -8;
  1289. if (get_wait_data(cosa) != 'r') return -9;
  1290. if (get_wait_data(cosa) != 'n') return -10;
  1291. #if 0
  1292. printk(KERN_DEBUG "cosa%d: microcode startedn", cosa->num);
  1293. #endif
  1294. return 0;
  1295. }
  1296. /*
  1297.  * Reading memory is done via the "r" command of the SRP monitor.
  1298.  * The chat is the following "r" "r=" "<addr> " " =" "<last_byte> " " "
  1299.  * Then driver can read the data and the conversation is finished
  1300.  * by SRP monitor sending "<CR><LF>." (dot at the end).
  1301.  *
  1302.  * This routine is not needed during the normal operation and serves
  1303.  * for debugging purposes only.
  1304.  */
  1305. static int readmem(struct cosa_data *cosa, char *microcode, int length, int address)
  1306. {
  1307. if (put_wait_data(cosa, 'r') == -1) return -1;
  1308. if ((get_wait_data(cosa)) != 'r') return -2;
  1309. if ((get_wait_data(cosa)) != '=') return -3;
  1310. if (puthexnumber(cosa, address) < 0) return -4;
  1311. if (put_wait_data(cosa, ' ') == -1) return -5;
  1312. if (get_wait_data(cosa) != ' ') return -6;
  1313. if (get_wait_data(cosa) != '=') return -7;
  1314. if (puthexnumber(cosa, address+length-1) < 0) return -8;
  1315. if (put_wait_data(cosa, ' ') == -1) return -9;
  1316. if (get_wait_data(cosa) != ' ') return -10;
  1317. while (length--) {
  1318. char c;
  1319. int i;
  1320. if ((i=get_wait_data(cosa)) == -1) {
  1321. printk (KERN_INFO "cosa: 0x%04x bytes remainingn",
  1322. length);
  1323. return -11;
  1324. }
  1325. c=i;
  1326. #if 1
  1327. if (put_user(c, microcode))
  1328. return -23; /* ??? */
  1329. #else
  1330. *microcode = c;
  1331. #endif
  1332. microcode++;
  1333. }
  1334. if (get_wait_data(cosa) != 'r') return -21;
  1335. if (get_wait_data(cosa) != 'n') return -22;
  1336. if (get_wait_data(cosa) != '.') return -23;
  1337. #if 0
  1338. printk(KERN_DEBUG "cosa%d: readmem completed.n", cosa->num);
  1339. #endif
  1340. return 0;
  1341. }
  1342. /*
  1343.  * This function resets the device and reads the initial prompt
  1344.  * of the device's ROM monitor.
  1345.  */
  1346. static int cosa_reset_and_read_id(struct cosa_data *cosa, char *idstring)
  1347. {
  1348. int i=0, id=0, prev=0, curr=0;
  1349. /* Reset the card ... */
  1350. cosa_putstatus(cosa, 0);
  1351. cosa_getdata8(cosa);
  1352. cosa_putstatus(cosa, SR_RST);
  1353. #ifdef MODULE
  1354. current->state = TASK_INTERRUPTIBLE;
  1355. schedule_timeout(HZ/2);
  1356. current->state = TASK_RUNNING;
  1357. #else
  1358. udelay(5*100000);
  1359. #endif
  1360. /* Disable all IRQs from the card */
  1361. cosa_putstatus(cosa, 0);
  1362. /*
  1363.  * Try to read the ID string. The card then prints out the
  1364.  * identification string ended by the "nx2e".
  1365.  *
  1366.  * The following loop is indexed through i (instead of id)
  1367.  * to avoid looping forever when for any reason
  1368.  * the port returns 'r', 'n' or 'x2e' permanently.
  1369.  */
  1370. for (i=0; i<COSA_MAX_ID_STRING-1; i++, prev=curr) {
  1371. if ((curr = get_wait_data(cosa)) == -1) {
  1372. return -1;
  1373. }
  1374. curr &= 0xff;
  1375. if (curr != 'r' && curr != 'n' && curr != 0x2e)
  1376. idstring[id++] = curr;
  1377. if (curr == 0x2e && prev == 'n')
  1378. break;
  1379. }
  1380. /* Perhaps we should fail when i==COSA_MAX_ID_STRING-1 ? */
  1381. idstring[id] = '';
  1382. return id;
  1383. }
  1384. /* ---------- Auxiliary routines for COSA/SRP monitor ---------- */
  1385. /*
  1386.  * This routine gets the data byte from the card waiting for the SR_RX_RDY
  1387.  * bit to be set in a loop. It should be used in the exceptional cases
  1388.  * only (for example when resetting the card or downloading the firmware.
  1389.  */
  1390. static int get_wait_data(struct cosa_data *cosa)
  1391. {
  1392. int retries = 1000;
  1393. while (--retries) {
  1394. /* read data and return them */
  1395. if (cosa_getstatus(cosa) & SR_RX_RDY) {
  1396. short r;
  1397. r = cosa_getdata8(cosa);
  1398. #if 0
  1399. printk(KERN_INFO "cosa: get_wait_data returning after %d retriesn", 999-retries);
  1400. #endif
  1401. return r;
  1402. }
  1403. /* sleep if not ready to read */
  1404. current->state = TASK_INTERRUPTIBLE;
  1405. schedule_timeout(1);
  1406. }
  1407. printk(KERN_INFO "cosa: timeout in get_wait_data (status 0x%x)n",
  1408. cosa_getstatus(cosa));
  1409. return -1;
  1410. }
  1411. /*
  1412.  * This routine puts the data byte to the card waiting for the SR_TX_RDY
  1413.  * bit to be set in a loop. It should be used in the exceptional cases
  1414.  * only (for example when resetting the card or downloading the firmware).
  1415.  */
  1416. static int put_wait_data(struct cosa_data *cosa, int data)
  1417. {
  1418. int retries = 1000;
  1419. while (--retries) {
  1420. /* read data and return them */
  1421. if (cosa_getstatus(cosa) & SR_TX_RDY) {
  1422. cosa_putdata8(cosa, data);
  1423. #if 0
  1424. printk(KERN_INFO "Putdata: %d retriesn", 999-retries);
  1425. #endif
  1426. return 0;
  1427. }
  1428. #if 0
  1429. /* sleep if not ready to read */
  1430. current->state = TASK_INTERRUPTIBLE;
  1431. schedule_timeout(1);
  1432. #endif
  1433. }
  1434. printk(KERN_INFO "cosa%d: timeout in put_wait_data (status 0x%x)n",
  1435. cosa->num, cosa_getstatus(cosa));
  1436. return -1;
  1437. }
  1438. /* 
  1439.  * The following routine puts the hexadecimal number into the SRP monitor
  1440.  * and verifies the proper echo of the sent bytes. Returns 0 on success,
  1441.  * negative number on failure (-1,-3,-5,-7) means that put_wait_data() failed,
  1442.  * (-2,-4,-6,-8) means that reading echo failed.
  1443.  */
  1444. static int puthexnumber(struct cosa_data *cosa, int number)
  1445. {
  1446. char temp[5];
  1447. int i;
  1448. /* Well, I should probably replace this by something faster. */
  1449. sprintf(temp, "%04X", number);
  1450. for (i=0; i<4; i++) {
  1451. if (put_wait_data(cosa, temp[i]) == -1) {
  1452. printk(KERN_NOTICE "cosa%d: puthexnumber failed to write byte %dn",
  1453. cosa->num, i);
  1454. return -1-2*i;
  1455. }
  1456. if (get_wait_data(cosa) != temp[i]) {
  1457. printk(KERN_NOTICE "cosa%d: puthexhumber failed to read echo of byte %dn",
  1458. cosa->num, i);
  1459. return -2-2*i;
  1460. }
  1461. }
  1462. return 0;
  1463. }
  1464. /* ---------- Interrupt routines ---------- */
  1465. /*
  1466.  * There are three types of interrupt:
  1467.  * At the beginning of transmit - this handled is in tx_interrupt(),
  1468.  * at the beginning of receive - it is in rx_interrupt() and
  1469.  * at the end of transmit/receive - it is the eot_interrupt() function.
  1470.  * These functions are multiplexed by cosa_interrupt() according to the
  1471.  * COSA status byte. I have moved the rx/tx/eot interrupt handling into
  1472.  * separate functions to make it more readable. These functions are inline,
  1473.  * so there should be no overhead of function call.
  1474.  * 
  1475.  * In the COSA bus-master mode, we need to tell the card the address of a
  1476.  * buffer. Unfortunately, COSA may be too slow for us, so we must busy-wait.
  1477.  * It's time to use the bottom half :-(
  1478.  */
  1479. /*
  1480.  * Transmit interrupt routine - called when COSA is willing to obtain
  1481.  * data from the OS. The most tricky part of the routine is selection
  1482.  * of channel we (OS) want to send packet for. For SRP we should probably
  1483.  * use the round-robin approach. The newer COSA firmwares have a simple
  1484.  * flow-control - in the status word has bits 2 and 3 set to 1 means that the
  1485.  * channel 0 or 1 doesn't want to receive data.
  1486.  *
  1487.  * It seems there is a bug in COSA firmware (need to trace it further):
  1488.  * When the driver status says that the kernel has no more data for transmit
  1489.  * (e.g. at the end of TX DMA) and then the kernel changes its mind
  1490.  * (e.g. new packet is queued to hard_start_xmit()), the card issues
  1491.  * the TX interrupt but does not mark the channel as ready-to-transmit.
  1492.  * The fix seems to be to push the packet to COSA despite its request.
  1493.  * We first try to obey the card's opinion, and then fall back to forced TX.
  1494.  */
  1495. static inline void tx_interrupt(struct cosa_data *cosa, int status)
  1496. {
  1497. unsigned long flags, flags1;
  1498. #ifdef DEBUG_IRQS
  1499. printk(KERN_INFO "cosa%d: SR_DOWN_REQUEST status=0x%04xn",
  1500. cosa->num, status);
  1501. #endif
  1502. spin_lock_irqsave(&cosa->lock, flags);
  1503. set_bit(TXBIT, &cosa->rxtx);
  1504. if (!test_bit(IRQBIT, &cosa->rxtx)) {
  1505. /* flow control, see the comment above */
  1506. int i=0;
  1507. if (!cosa->txbitmap) {
  1508. printk(KERN_WARNING "%s: No channel wants data "
  1509. "in TX IRQ. Expect DMA timeout.",
  1510. cosa->name);
  1511. put_driver_status_nolock(cosa);
  1512. clear_bit(TXBIT, &cosa->rxtx);
  1513. spin_unlock_irqrestore(&cosa->lock, flags);
  1514. return;
  1515. }
  1516. while(1) {
  1517. cosa->txchan++;
  1518. i++;
  1519. if (cosa->txchan >= cosa->nchannels)
  1520. cosa->txchan = 0;
  1521. if (!(cosa->txbitmap & (1<<cosa->txchan)))
  1522. continue;
  1523. if (~status & (1 << (cosa->txchan+DRIVER_TXMAP_SHIFT)))
  1524. break;
  1525. /* in second pass, accept first ready-to-TX channel */
  1526. if (i > cosa->nchannels) {
  1527. /* Can be safely ignored */
  1528. #ifdef DEBUG_IRQS
  1529. printk(KERN_DEBUG "%s: Forcing TX "
  1530. "to not-ready channel %dn",
  1531. cosa->name, cosa->txchan);
  1532. #endif
  1533. break;
  1534. }
  1535. }
  1536. cosa->txsize = cosa->chan[cosa->txchan].txsize;
  1537. if (cosa_dma_able(cosa->chan+cosa->txchan,
  1538. cosa->chan[cosa->txchan].txbuf, cosa->txsize)) {
  1539. cosa->txbuf = cosa->chan[cosa->txchan].txbuf;
  1540. } else {
  1541. memcpy(cosa->bouncebuf, cosa->chan[cosa->txchan].txbuf,
  1542. cosa->txsize);
  1543. cosa->txbuf = cosa->bouncebuf;
  1544. }
  1545. }
  1546. if (is_8bit(cosa)) {
  1547. if (!test_bit(IRQBIT, &cosa->rxtx)) {
  1548. cosa_putstatus(cosa, SR_TX_INT_ENA);
  1549. cosa_putdata8(cosa, ((cosa->txchan << 5) & 0xe0)|
  1550. ((cosa->txsize >> 8) & 0x1f));
  1551. #ifdef DEBUG_IO
  1552. debug_status_out(cosa, SR_TX_INT_ENA);
  1553. debug_data_out(cosa, ((cosa->txchan << 5) & 0xe0)|
  1554.                                 ((cosa->txsize >> 8) & 0x1f));
  1555. debug_data_in(cosa, cosa_getdata8(cosa));
  1556. #else
  1557. cosa_getdata8(cosa);
  1558. #endif
  1559. set_bit(IRQBIT, &cosa->rxtx);
  1560. spin_unlock_irqrestore(&cosa->lock, flags);
  1561. return;
  1562. } else {
  1563. clear_bit(IRQBIT, &cosa->rxtx);
  1564. cosa_putstatus(cosa, 0);
  1565. cosa_putdata8(cosa, cosa->txsize&0xff);
  1566. #ifdef DEBUG_IO
  1567. debug_status_out(cosa, 0);
  1568. debug_data_out(cosa, cosa->txsize&0xff);
  1569. #endif
  1570. }
  1571. } else {
  1572. cosa_putstatus(cosa, SR_TX_INT_ENA);
  1573. cosa_putdata16(cosa, ((cosa->txchan<<13) & 0xe000)
  1574. | (cosa->txsize & 0x1fff));
  1575. #ifdef DEBUG_IO
  1576. debug_status_out(cosa, SR_TX_INT_ENA);
  1577. debug_data_out(cosa, ((cosa->txchan<<13) & 0xe000)
  1578.                         | (cosa->txsize & 0x1fff));
  1579. debug_data_in(cosa, cosa_getdata8(cosa));
  1580. debug_status_out(cosa, 0);
  1581. #else
  1582. cosa_getdata8(cosa);
  1583. #endif
  1584. cosa_putstatus(cosa, 0);
  1585. }
  1586. if (cosa->busmaster) {
  1587. unsigned long addr = virt_to_bus(cosa->txbuf);
  1588. int count=0;
  1589. printk(KERN_INFO "busmaster IRQn");
  1590. while (!(cosa_getstatus(cosa)&SR_TX_RDY)) {
  1591. count++;
  1592. udelay(10);
  1593. if (count > 1000) break;
  1594. }
  1595. printk(KERN_INFO "status %xn", cosa_getstatus(cosa));
  1596. printk(KERN_INFO "ready after %d loopsn", count);
  1597. cosa_putdata16(cosa, (addr >> 16)&0xffff);
  1598. count = 0;
  1599. while (!(cosa_getstatus(cosa)&SR_TX_RDY)) {
  1600. count++;
  1601. if (count > 1000) break;
  1602. udelay(10);
  1603. }
  1604. printk(KERN_INFO "ready after %d loopsn", count);
  1605. cosa_putdata16(cosa, addr &0xffff);
  1606. flags1 = claim_dma_lock();
  1607. set_dma_mode(cosa->dma, DMA_MODE_CASCADE);
  1608. enable_dma(cosa->dma);
  1609. release_dma_lock(flags1);
  1610. } else {
  1611. /* start the DMA */
  1612. flags1 = claim_dma_lock();
  1613. disable_dma(cosa->dma);
  1614. clear_dma_ff(cosa->dma);
  1615. set_dma_mode(cosa->dma, DMA_MODE_WRITE);
  1616. set_dma_addr(cosa->dma, virt_to_bus(cosa->txbuf));
  1617. set_dma_count(cosa->dma, cosa->txsize);
  1618. enable_dma(cosa->dma);
  1619. release_dma_lock(flags1);
  1620. }
  1621. cosa_putstatus(cosa, SR_TX_DMA_ENA|SR_USR_INT_ENA);
  1622. #ifdef DEBUG_IO
  1623. debug_status_out(cosa, SR_TX_DMA_ENA|SR_USR_INT_ENA);
  1624. #endif
  1625. spin_unlock_irqrestore(&cosa->lock, flags);
  1626. }
  1627. static inline void rx_interrupt(struct cosa_data *cosa, int status)
  1628. {
  1629. unsigned long flags;
  1630. #ifdef DEBUG_IRQS
  1631. printk(KERN_INFO "cosa%d: SR_UP_REQUESTn", cosa->num);
  1632. #endif
  1633. spin_lock_irqsave(&cosa->lock, flags);
  1634. set_bit(RXBIT, &cosa->rxtx);
  1635. if (is_8bit(cosa)) {
  1636. if (!test_bit(IRQBIT, &cosa->rxtx)) {
  1637. set_bit(IRQBIT, &cosa->rxtx);
  1638. put_driver_status_nolock(cosa);
  1639. cosa->rxsize = cosa_getdata8(cosa) <<8;
  1640. #ifdef DEBUG_IO
  1641. debug_data_in(cosa, cosa->rxsize >> 8);
  1642. #endif
  1643. spin_unlock_irqrestore(&cosa->lock, flags);
  1644. return;
  1645. } else {
  1646. clear_bit(IRQBIT, &cosa->rxtx);
  1647. cosa->rxsize |= cosa_getdata8(cosa) & 0xff;
  1648. #ifdef DEBUG_IO
  1649. debug_data_in(cosa, cosa->rxsize & 0xff);
  1650. #endif
  1651. #if 0
  1652. printk(KERN_INFO "cosa%d: receive rxsize = (0x%04x).n",
  1653. cosa->num, cosa->rxsize);
  1654. #endif
  1655. }
  1656. } else {
  1657. cosa->rxsize = cosa_getdata16(cosa);
  1658. #ifdef DEBUG_IO
  1659. debug_data_in(cosa, cosa->rxsize);
  1660. #endif
  1661. #if 0
  1662. printk(KERN_INFO "cosa%d: receive rxsize = (0x%04x).n",
  1663. cosa->num, cosa->rxsize);
  1664. #endif
  1665. }
  1666. if (((cosa->rxsize & 0xe000) >> 13) >= cosa->nchannels) {
  1667. printk(KERN_WARNING "%s: rx for unknown channel (0x%04x)n",
  1668. cosa->name, cosa->rxsize);
  1669. spin_unlock_irqrestore(&cosa->lock, flags);
  1670. goto reject;
  1671. }
  1672. cosa->rxchan = cosa->chan + ((cosa->rxsize & 0xe000) >> 13);
  1673. cosa->rxsize &= 0x1fff;
  1674. spin_unlock_irqrestore(&cosa->lock, flags);
  1675. cosa->rxbuf = NULL;
  1676. if (cosa->rxchan->setup_rx)
  1677. cosa->rxbuf = cosa->rxchan->setup_rx(cosa->rxchan, cosa->rxsize);
  1678. if (!cosa->rxbuf) {
  1679. reject: /* Reject the packet */
  1680. printk(KERN_INFO "cosa%d: rejecting packet on channel %dn",
  1681. cosa->num, cosa->rxchan->num);
  1682. cosa->rxbuf = cosa->bouncebuf;
  1683. }
  1684. /* start the DMA */
  1685. flags = claim_dma_lock();
  1686. disable_dma(cosa->dma);
  1687. clear_dma_ff(cosa->dma);
  1688. set_dma_mode(cosa->dma, DMA_MODE_READ);
  1689. if (cosa_dma_able(cosa->rxchan, cosa->rxbuf, cosa->rxsize & 0x1fff)) {
  1690. set_dma_addr(cosa->dma, virt_to_bus(cosa->rxbuf));
  1691. } else {
  1692. set_dma_addr(cosa->dma, virt_to_bus(cosa->bouncebuf));
  1693. }
  1694. set_dma_count(cosa->dma, (cosa->rxsize&0x1fff));
  1695. enable_dma(cosa->dma);
  1696. release_dma_lock(flags);
  1697. spin_lock_irqsave(&cosa->lock, flags);
  1698. cosa_putstatus(cosa, SR_RX_DMA_ENA|SR_USR_INT_ENA);
  1699. if (!is_8bit(cosa) && (status & SR_TX_RDY))
  1700. cosa_putdata8(cosa, DRIVER_RX_READY);
  1701. #ifdef DEBUG_IO
  1702. debug_status_out(cosa, SR_RX_DMA_ENA|SR_USR_INT_ENA);
  1703. if (!is_8bit(cosa) && (status & SR_TX_RDY))
  1704. debug_data_cmd(cosa, DRIVER_RX_READY);
  1705. #endif
  1706. spin_unlock_irqrestore(&cosa->lock, flags);
  1707. }
  1708. static void inline eot_interrupt(struct cosa_data *cosa, int status)
  1709. {
  1710. unsigned long flags, flags1;
  1711. spin_lock_irqsave(&cosa->lock, flags);
  1712. flags1 = claim_dma_lock();
  1713. disable_dma(cosa->dma);
  1714. clear_dma_ff(cosa->dma);
  1715. release_dma_lock(flags1);
  1716. if (test_bit(TXBIT, &cosa->rxtx)) {
  1717. struct channel_data *chan = cosa->chan+cosa->txchan;
  1718. if (chan->tx_done)
  1719. if (chan->tx_done(chan, cosa->txsize))
  1720. clear_bit(chan->num, &cosa->txbitmap);
  1721. } else if (test_bit(RXBIT, &cosa->rxtx)) {
  1722. #ifdef DEBUG_DATA
  1723. {
  1724. int i;
  1725. printk(KERN_INFO "cosa%dc%d: done rx(0x%x)", cosa->num, 
  1726. cosa->rxchan->num, cosa->rxsize);
  1727. for (i=0; i<cosa->rxsize; i++)
  1728. printk (" %02x", cosa->rxbuf[i]&0xff);
  1729. printk("n");
  1730. }
  1731. #endif
  1732. /* Packet for unknown channel? */
  1733. if (cosa->rxbuf == cosa->bouncebuf)
  1734. goto out;
  1735. if (!cosa_dma_able(cosa->rxchan, cosa->rxbuf, cosa->rxsize))
  1736. memcpy(cosa->rxbuf, cosa->bouncebuf, cosa->rxsize);
  1737. if (cosa->rxchan->rx_done)
  1738. if (cosa->rxchan->rx_done(cosa->rxchan))
  1739. clear_bit(cosa->rxchan->num, &cosa->rxbitmap);
  1740. } else {
  1741. printk(KERN_NOTICE "cosa%d: unexpected EOT interruptn",
  1742. cosa->num);
  1743. }
  1744. /*
  1745.  * Clear the RXBIT, TXBIT and IRQBIT (the latest should be
  1746.  * cleared anyway). We should do it as soon as possible
  1747.  * so that we can tell the COSA we are done and to give it a time
  1748.  * for recovery.
  1749.  */
  1750. out:
  1751. cosa->rxtx = 0;
  1752. put_driver_status_nolock(cosa);
  1753. spin_unlock_irqrestore(&cosa->lock, flags);
  1754. }
  1755. static void cosa_interrupt(int irq, void *cosa_, struct pt_regs *regs)
  1756. {
  1757. unsigned status;
  1758. int count = 0;
  1759. struct cosa_data *cosa = cosa_;
  1760. again:
  1761. status = cosa_getstatus(cosa);
  1762. #ifdef DEBUG_IRQS
  1763. printk(KERN_INFO "cosa%d: got IRQ, status 0x%02xn", cosa->num,
  1764. status & 0xff);
  1765. #endif
  1766. #ifdef DEBUG_IO
  1767. debug_status_in(cosa, status);
  1768. #endif
  1769. switch (status & SR_CMD_FROM_SRP_MASK) {
  1770. case SR_DOWN_REQUEST:
  1771. tx_interrupt(cosa, status);
  1772. break;
  1773. case SR_UP_REQUEST:
  1774. rx_interrupt(cosa, status);
  1775. break;
  1776. case SR_END_OF_TRANSFER:
  1777. eot_interrupt(cosa, status);
  1778. break;
  1779. default:
  1780. /* We may be too fast for SRP. Try to wait a bit more. */
  1781. if (count++ < 100) {
  1782. udelay(100);
  1783. goto again;
  1784. }
  1785. printk(KERN_INFO "cosa%d: unknown status 0x%02x in IRQ after %d retriesn",
  1786. cosa->num, status & 0xff, count);
  1787. }
  1788. #ifdef DEBUG_IRQS
  1789. if (count)
  1790. printk(KERN_INFO "%s: %d-times got unknown status in IRQn",
  1791. cosa->name, count);
  1792. else
  1793. printk(KERN_INFO "%s: returning from IRQn", cosa->name);
  1794. #endif
  1795. }
  1796. /* ---------- I/O debugging routines ---------- */
  1797. /*
  1798.  * These routines can be used to monitor COSA/SRP I/O and to printk()
  1799.  * the data being transferred on the data and status I/O port in a
  1800.  * readable way.
  1801.  */
  1802. #ifdef DEBUG_IO
  1803. static void debug_status_in(struct cosa_data *cosa, int status)
  1804. {
  1805. char *s;
  1806. switch(status & SR_CMD_FROM_SRP_MASK) {
  1807. case SR_UP_REQUEST:
  1808. s = "RX_REQ";
  1809. break;
  1810. case SR_DOWN_REQUEST:
  1811. s = "TX_REQ";
  1812. break;
  1813. case SR_END_OF_TRANSFER:
  1814. s = "ET_REQ";
  1815. break;
  1816. default:
  1817. s = "NO_REQ";
  1818. break;
  1819. }
  1820. printk(KERN_INFO "%s: IO: status -> 0x%02x (%s%s%s%s)n",
  1821. cosa->name,
  1822. status,
  1823. status & SR_USR_RQ ? "USR_RQ|":"",
  1824. status & SR_TX_RDY ? "TX_RDY|":"",
  1825. status & SR_RX_RDY ? "RX_RDY|":"",
  1826. s);
  1827. }
  1828. static void debug_status_out(struct cosa_data *cosa, int status)
  1829. {
  1830. printk(KERN_INFO "%s: IO: status <- 0x%02x (%s%s%s%s%s%s)n",
  1831. cosa->name,
  1832. status,
  1833. status & SR_RX_DMA_ENA  ? "RXDMA|":"!rxdma|",
  1834. status & SR_TX_DMA_ENA  ? "TXDMA|":"!txdma|",
  1835. status & SR_RST         ? "RESET|":"",
  1836. status & SR_USR_INT_ENA ? "USRINT|":"!usrint|",
  1837. status & SR_TX_INT_ENA  ? "TXINT|":"!txint|",
  1838. status & SR_RX_INT_ENA  ? "RXINT":"!rxint");
  1839. }
  1840. static void debug_data_in(struct cosa_data *cosa, int data)
  1841. {
  1842. printk(KERN_INFO "%s: IO: data -> 0x%04xn", cosa->name, data);
  1843. }
  1844. static void debug_data_out(struct cosa_data *cosa, int data)
  1845. {
  1846. printk(KERN_INFO "%s: IO: data <- 0x%04xn", cosa->name, data);
  1847. }
  1848. static void debug_data_cmd(struct cosa_data *cosa, int data)
  1849. {
  1850. printk(KERN_INFO "%s: IO: data <- 0x%04x (%s|%s)n",
  1851. cosa->name, data,
  1852. data & SR_RDY_RCV ? "RX_RDY" : "!rx_rdy",
  1853. data & SR_RDY_SND ? "TX_RDY" : "!tx_rdy");
  1854. }
  1855. #endif
  1856. /* EOF -- this file has not been truncated */