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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* Derived from Applicom driver ac.c for SCO Unix                            */
  2. /* Ported by David Woodhouse, Axiom (Cambridge) Ltd.                         */
  3. /* dwmw2@redhat.com  30/8/98                                                 */
  4. /* $Id: ac.c,v 1.30 2000/03/22 16:03:57 dwmw2 Exp $      */
  5. /* This module is for Linux 2.1 and 2.2 series kernels.                      */
  6. /*****************************************************************************/
  7. /* J PAGET 18/02/94 passage V2.4.2 ioctl avec code 2 reset to les interrupt  */
  8. /* ceci pour reseter correctement apres une sortie sauvage                   */
  9. /* J PAGET 02/05/94 passage V2.4.3 dans le traitement de d'interruption,     */
  10. /* LoopCount n'etait pas initialise a 0.                                     */
  11. /* F LAFORSE 04/07/95 version V2.6.0 lecture bidon apres acces a une carte   */
  12. /*           pour liberer le bus                                             */
  13. /* J.PAGET 19/11/95 version V2.6.1 Nombre, addresse,irq n'est plus configure */
  14. /* et passe en argument a acinit, mais est scrute sur le bus pour s'adapter  */
  15. /* au nombre de cartes presentes sur le bus. IOCL code 6 affichait V2.4.3    */
  16. /* F.LAFORSE 28/11/95 creation de fichiers acXX.o avec les differentes       */
  17. /* adresses de base des cartes, IOCTL 6 plus complet                         */
  18. /* J.PAGET le 19/08/96 copie de la version V2.6 en V2.8.0 sans modification  */
  19. /* de code autre que le texte V2.6.1 en V2.8.0                               */
  20. /*****************************************************************************/
  21. #include <linux/kernel.h>
  22. #include <linux/module.h>
  23. #include <linux/slab.h>
  24. #include <asm/errno.h>
  25. #include <asm/io.h>
  26. #include <asm/uaccess.h>
  27. #include <linux/miscdevice.h>
  28. #include <linux/pci.h>
  29. #include <linux/wait.h>
  30. #include <linux/init.h>
  31. #include <linux/compatmac.h>
  32. #include "applicom.h"
  33. #if LINUX_VERSION_CODE < 0x20300 
  34. /* These probably want adding to <linux/compatmac.h> */
  35. #define init_waitqueue_head(x) do { *(x) = NULL; } while (0);
  36. #define PCI_BASE_ADDRESS(dev) (dev->base_address[0])
  37. #define DECLARE_WAIT_QUEUE_HEAD(x) struct wait_queue *x
  38. #define __setup(x,y) /* */
  39. #else
  40. #define PCI_BASE_ADDRESS(dev) (dev->resource[0].start)
  41. #endif
  42. /* NOTE: We use for loops with {write,read}b() instead of 
  43.    memcpy_{from,to}io throughout this driver. This is because
  44.    the board doesn't correctly handle word accesses - only
  45.    bytes. 
  46. */
  47. #undef DEBUG
  48. #define MAX_BOARD 8 /* maximum of pc board possible */
  49. #define MAX_ISA_BOARD 4
  50. #define LEN_RAM_IO 0x800
  51. #define AC_MINOR 157
  52. #ifndef PCI_VENDOR_ID_APPLICOM
  53. #define PCI_VENDOR_ID_APPLICOM                0x1389
  54. #define PCI_DEVICE_ID_APPLICOM_PCIGENERIC     0x0001
  55. #define PCI_DEVICE_ID_APPLICOM_PCI2000IBS_CAN 0x0002
  56. #define PCI_DEVICE_ID_APPLICOM_PCI2000PFB     0x0003
  57. #endif
  58. #define MAX_PCI_DEVICE_NUM 3
  59. static char *applicom_pci_devnames[] = {
  60. "PCI board",
  61. "PCI2000IBS / PCI2000CAN",
  62. "PCI2000PFB"
  63. };
  64. static struct pci_device_id applicom_pci_tbl[] = {
  65. { PCI_VENDOR_ID_APPLICOM, PCI_DEVICE_ID_APPLICOM_PCIGENERIC,
  66.   PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 },
  67. { PCI_VENDOR_ID_APPLICOM, PCI_DEVICE_ID_APPLICOM_PCI2000IBS_CAN,
  68.   PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 },
  69. { PCI_VENDOR_ID_APPLICOM, PCI_DEVICE_ID_APPLICOM_PCI2000PFB,
  70.   PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 },
  71. { 0 }
  72. };
  73. MODULE_DEVICE_TABLE(pci, applicom_pci_tbl);
  74. MODULE_AUTHOR("David Woodhouse & Applicom International");
  75. MODULE_DESCRIPTION("Driver for Applicom Profibus card");
  76. MODULE_LICENSE("GPL");
  77. MODULE_PARM(irq, "i");
  78. MODULE_PARM_DESC(irq, "IRQ of the Applicom board");
  79. MODULE_PARM(mem, "i");
  80. MODULE_PARM_DESC(mem, "Shared Memory Address of Applicom board");
  81. MODULE_SUPPORTED_DEVICE("ac");
  82. static struct applicom_board {
  83. unsigned long PhysIO;
  84. unsigned long RamIO;
  85. wait_queue_head_t FlagSleepSend;
  86. long irq;
  87. spinlock_t mutex;
  88. } apbs[MAX_BOARD];
  89. static unsigned int irq = 0; /* interrupt number IRQ       */
  90. static unsigned long mem = 0; /* physical segment of board  */
  91. static unsigned int numboards; /* number of installed boards */
  92. static volatile unsigned char Dummy;
  93. static DECLARE_WAIT_QUEUE_HEAD(FlagSleepRec);
  94. static unsigned int WriteErrorCount; /* number of write error      */
  95. static unsigned int ReadErrorCount; /* number of read error       */
  96. static unsigned int DeviceErrorCount; /* number of device error     */
  97. static ssize_t ac_read (struct file *, char *, size_t, loff_t *);
  98. static ssize_t ac_write (struct file *, const char *, size_t, loff_t *);
  99. static int ac_ioctl(struct inode *, struct file *, unsigned int,
  100.     unsigned long);
  101. static void ac_interrupt(int, void *, struct pt_regs *);
  102. static struct file_operations ac_fops = {
  103. owner:THIS_MODULE,
  104. llseek:no_llseek,
  105. read:ac_read,
  106. write:ac_write,
  107. ioctl:ac_ioctl,
  108. };
  109. static struct miscdevice ac_miscdev = {
  110. AC_MINOR,
  111. "ac",
  112. &ac_fops
  113. };
  114. static int dummy; /* dev_id for request_irq() */
  115. static int ac_register_board(unsigned long physloc, unsigned long loc, 
  116.       unsigned char boardno)
  117. {
  118. volatile unsigned char byte_reset_it;
  119. if((readb(loc + CONF_END_TEST)     != 0x00) ||
  120.    (readb(loc + CONF_END_TEST + 1) != 0x55) ||
  121.    (readb(loc + CONF_END_TEST + 2) != 0xAA) ||
  122.    (readb(loc + CONF_END_TEST + 3) != 0xFF))
  123. return 0;
  124. if (!boardno)
  125. boardno = readb(loc + NUMCARD_OWNER_TO_PC);
  126. if (!boardno && boardno > MAX_BOARD) {
  127. printk(KERN_WARNING "Board #%d (at 0x%lx) is out of range (1 <= x <= %d).n",
  128.        boardno, physloc, MAX_BOARD);
  129. return 0;
  130. }
  131. if (apbs[boardno - 1].RamIO) {
  132. printk(KERN_WARNING "Board #%d (at 0x%lx) conflicts with previous board #%d (at 0x%lx)n", 
  133.        boardno, physloc, boardno, apbs[boardno-1].PhysIO);
  134. return 0;
  135. }
  136. boardno--;
  137. apbs[boardno].PhysIO = physloc;
  138. apbs[boardno].RamIO = loc;
  139. init_waitqueue_head(&apbs[boardno].FlagSleepSend);
  140. spin_lock_init(&apbs[boardno].mutex);
  141. byte_reset_it = readb(loc + RAM_IT_TO_PC);
  142. numboards++;
  143. return boardno + 1;
  144. }
  145. #ifdef MODULE
  146. #define applicom_init init_module
  147. void cleanup_module(void)
  148. {
  149. int i;
  150. misc_deregister(&ac_miscdev);
  151. for (i = 0; i < MAX_BOARD; i++) {
  152. if (!apbs[i].RamIO)
  153. continue;
  154. iounmap((void *) apbs[i].RamIO);
  155. if (apbs[i].irq)
  156. free_irq(apbs[i].irq, &dummy);
  157. }
  158. }
  159. #endif /* MODULE */
  160. int __init applicom_init(void)
  161. {
  162. int i, numisa = 0;
  163. struct pci_dev *dev = NULL;
  164. void *RamIO;
  165. int boardno;
  166. printk(KERN_INFO "Applicom driver: $Id: ac.c,v 1.30 2000/03/22 16:03:57 dwmw2 Exp $n");
  167. /* No mem and irq given - check for a PCI card */
  168. while ( (dev = pci_find_class(PCI_CLASS_OTHERS << 16, dev))) {
  169. if (dev->vendor != PCI_VENDOR_ID_APPLICOM)
  170. continue;
  171. if (dev->device  > MAX_PCI_DEVICE_NUM || dev->device == 0)
  172. continue;
  173. if (pci_enable_device(dev))
  174. return -EIO;
  175. RamIO = ioremap(PCI_BASE_ADDRESS(dev), LEN_RAM_IO);
  176. if (!RamIO) {
  177. printk(KERN_INFO "ac.o: Failed to ioremap PCI memory space at 0x%lxn", PCI_BASE_ADDRESS(dev));
  178. return -EIO;
  179. }
  180. printk(KERN_INFO "Applicom %s found at mem 0x%lx, irq %dn",
  181.        applicom_pci_devnames[dev->device-1], PCI_BASE_ADDRESS(dev), 
  182.        dev->irq);
  183. if (!(boardno = ac_register_board(PCI_BASE_ADDRESS(dev),
  184.   (unsigned long)RamIO,0))) {
  185. printk(KERN_INFO "ac.o: PCI Applicom device doesn't have correct signature.n");
  186. iounmap(RamIO);
  187. continue;
  188. }
  189. if (request_irq(dev->irq, &ac_interrupt, SA_SHIRQ, "Applicom PCI", &dummy)) {
  190. printk(KERN_INFO "Could not allocate IRQ %d for PCI Applicom device.n", dev->irq);
  191. iounmap(RamIO);
  192. apbs[boardno - 1].RamIO = 0;
  193. continue;
  194. }
  195. /* Enable interrupts. */
  196. writeb(0x40, apbs[boardno - 1].RamIO + RAM_IT_FROM_PC);
  197. apbs[boardno - 1].irq = dev->irq;
  198. }
  199. /* Finished with PCI cards. If none registered, 
  200.  * and there was no mem/irq specified, exit */
  201. if (!mem || !irq) {
  202. if (numboards)
  203. goto fin;
  204. else {
  205. printk(KERN_INFO "ac.o: No PCI boards found.n");
  206. printk(KERN_INFO "ac.o: For an ISA board you must supply memory and irq parameters.n");
  207. return -ENXIO;
  208. }
  209. }
  210. /* Now try the specified ISA cards */
  211. #warning "LEAK"
  212. RamIO = ioremap(mem, LEN_RAM_IO * MAX_ISA_BOARD);
  213. if (!RamIO) 
  214. printk(KERN_INFO "ac.o: Failed to ioremap ISA memory space at 0x%lxn", mem);
  215. for (i = 0; i < MAX_ISA_BOARD; i++) {
  216. RamIO = ioremap(mem + (LEN_RAM_IO * i), LEN_RAM_IO);
  217. if (!RamIO) {
  218. printk(KERN_INFO "ac.o: Failed to ioremap the ISA card's memory space (slot #%d)n", i + 1);
  219. continue;
  220. }
  221. if (!(boardno = ac_register_board((unsigned long)mem+ (LEN_RAM_IO*i),
  222.   (unsigned long)RamIO,i+1))) {
  223. iounmap(RamIO);
  224. continue;
  225. }
  226. printk(KERN_NOTICE "Applicom ISA card found at mem 0x%lx, irq %dn", mem + (LEN_RAM_IO*i), irq);
  227. if (!numisa) {
  228. if (request_irq(irq, &ac_interrupt, SA_SHIRQ, "Applicom ISA", &dummy)) {
  229. printk(KERN_WARNING "Could not allocate IRQ %d for ISA Applicom device.n", irq);
  230. iounmap((void *) RamIO);
  231. apbs[boardno - 1].RamIO = 0;
  232. }
  233. apbs[boardno - 1].irq = irq;
  234. }
  235. else
  236. apbs[boardno - 1].irq = 0;
  237. numisa++;
  238. }
  239. if (!numisa)
  240. printk(KERN_WARNING"ac.o: No valid ISA Applicom boards found at mem 0x%lxn",mem);
  241.  fin:
  242. init_waitqueue_head(&FlagSleepRec);
  243. WriteErrorCount = 0;
  244. ReadErrorCount = 0;
  245. DeviceErrorCount = 0;
  246. if (numboards) {
  247. misc_register(&ac_miscdev);
  248. for (i = 0; i < MAX_BOARD; i++) {
  249. int serial;
  250. char boardname[(SERIAL_NUMBER - TYPE_CARD) + 1];
  251. if (!apbs[i].RamIO)
  252. continue;
  253. for (serial = 0; serial < SERIAL_NUMBER - TYPE_CARD; serial++)
  254. boardname[serial] = readb(apbs[i].RamIO + TYPE_CARD + serial);
  255. boardname[serial] = 0;
  256. printk(KERN_INFO "Applicom board %d: %s, PROM V%d.%d",
  257.        i+1, boardname,
  258.        (int)(readb(apbs[i].RamIO + VERS) >> 4),
  259.        (int)(readb(apbs[i].RamIO + VERS) & 0xF));
  260. serial = (readb(apbs[i].RamIO + SERIAL_NUMBER) << 16) + 
  261. (readb(apbs[i].RamIO + SERIAL_NUMBER + 1) << 8) + 
  262. (readb(apbs[i].RamIO + SERIAL_NUMBER + 2) );
  263. if (serial != 0)
  264. printk(" S/N %dn", serial);
  265. else
  266. printk("n");
  267. }
  268. return 0;
  269. }
  270. else
  271. return -ENXIO;
  272. }
  273. #ifndef MODULE
  274. __initcall(applicom_init);
  275. #endif
  276. static ssize_t ac_write(struct file *file, const char *buf, size_t count, loff_t * ppos)
  277. {
  278. unsigned int NumCard; /* Board number 1 -> 8           */
  279. unsigned int IndexCard; /* Index board number 0 -> 7     */
  280. unsigned char TicCard; /* Board TIC to send             */
  281. unsigned long flags; /* Current priority              */
  282. struct st_ram_io st_loc;
  283. struct mailbox tmpmailbox;
  284. #ifdef DEBUG
  285. int c;
  286. #endif
  287. DECLARE_WAITQUEUE(wait, current);
  288. if (count != sizeof(struct st_ram_io) + sizeof(struct mailbox)) {
  289. static int warncount = 5;
  290. if (warncount) {
  291. printk(KERN_INFO "Hmmm. write() of Applicom card, length %d != expected %dn",
  292.        count, sizeof(struct st_ram_io) + sizeof(struct mailbox));
  293. warncount--;
  294. }
  295. return -EINVAL;
  296. }
  297. if(copy_from_user(&st_loc, buf, sizeof(struct st_ram_io))) 
  298. return -EFAULT;
  299. if(copy_from_user(&tmpmailbox, &buf[sizeof(struct st_ram_io)],
  300.   sizeof(struct mailbox))) 
  301. return -EFAULT;
  302. NumCard = st_loc.num_card; /* board number to send          */
  303. TicCard = st_loc.tic_des_from_pc; /* tic number to send            */
  304. IndexCard = NumCard - 1;
  305. if((NumCard < 1) || (NumCard > MAX_BOARD) || !apbs[IndexCard].RamIO)
  306. return -EINVAL;
  307. #ifdef DEBUG
  308. printk("Write to applicom card #%d. struct st_ram_io follows:",
  309.        IndexCard+1);
  310. for (c = 0; c < sizeof(struct st_ram_io);) {
  311. printk("n%5.5X: %2.2X", c, ((unsigned char *) &st_loc)[c]);
  312. for (c++; c % 8 && c < sizeof(struct st_ram_io); c++) {
  313. printk(" %2.2X", ((unsigned char *) &st_loc)[c]);
  314. }
  315. }
  316. printk("nstruct mailbox follows:");
  317. for (c = 0; c < sizeof(struct mailbox);) {
  318. printk("n%5.5X: %2.2X", c, ((unsigned char *) &tmpmailbox)[c]);
  319. for (c++; c % 8 && c < sizeof(struct mailbox); c++) {
  320. printk(" %2.2X", ((unsigned char *) &tmpmailbox)[c]);
  321. }
  322. }
  323. printk("n");
  324. #endif
  325. spin_lock_irqsave(&apbs[IndexCard].mutex, flags);
  326. /* Test octet ready correct */
  327. if(readb(apbs[IndexCard].RamIO + DATA_FROM_PC_READY) > 2) { 
  328. Dummy = readb(apbs[IndexCard].RamIO + VERS);
  329. spin_unlock_irqrestore(&apbs[IndexCard].mutex, flags);
  330. printk(KERN_WARNING "APPLICOM driver write error board %d, DataFromPcReady = %dn",
  331.        IndexCard,(int)readb(apbs[IndexCard].RamIO + DATA_FROM_PC_READY));
  332. DeviceErrorCount++;
  333. return -EIO;
  334. }
  335. /* Place ourselves on the wait queue */
  336. set_current_state(TASK_INTERRUPTIBLE);
  337. add_wait_queue(&apbs[IndexCard].FlagSleepSend, &wait);
  338. /* Check whether the card is ready for us */
  339. while (readb(apbs[IndexCard].RamIO + DATA_FROM_PC_READY) != 0) {
  340. Dummy = readb(apbs[IndexCard].RamIO + VERS);
  341. /* It's busy. Sleep. */
  342. spin_unlock_irqrestore(&apbs[IndexCard].mutex, flags);
  343. schedule();
  344. if (signal_pending(current)) {
  345. remove_wait_queue(&apbs[IndexCard].FlagSleepSend,
  346.   &wait);
  347. return -EINTR;
  348. }
  349. spin_lock_irqsave(&apbs[IndexCard].mutex, flags);
  350. set_current_state(TASK_INTERRUPTIBLE);
  351. }
  352. /* We may not have actually slept */
  353. set_current_state(TASK_RUNNING);
  354. remove_wait_queue(&apbs[IndexCard].FlagSleepSend, &wait);
  355. writeb(1, apbs[IndexCard].RamIO + DATA_FROM_PC_READY);
  356. /* Which is best - lock down the pages with rawio and then
  357.    copy directly, or use bounce buffers? For now we do the latter 
  358.    because it works with 2.2 still */
  359. {
  360. unsigned char *from = (unsigned char *) &tmpmailbox;
  361. unsigned long to = (unsigned long) apbs[IndexCard].RamIO + RAM_FROM_PC;
  362. int c;
  363. for (c = 0; c < sizeof(struct mailbox); c++)
  364. writeb(*(from++), to++);
  365. }
  366. writeb(0x20, apbs[IndexCard].RamIO + TIC_OWNER_FROM_PC);
  367. writeb(0xff, apbs[IndexCard].RamIO + NUMCARD_OWNER_FROM_PC);
  368. writeb(TicCard, apbs[IndexCard].RamIO + TIC_DES_FROM_PC);
  369. writeb(NumCard, apbs[IndexCard].RamIO + NUMCARD_DES_FROM_PC);
  370. writeb(2, apbs[IndexCard].RamIO + DATA_FROM_PC_READY);
  371. writeb(1, apbs[IndexCard].RamIO + RAM_IT_FROM_PC);
  372. Dummy = readb(apbs[IndexCard].RamIO + VERS);
  373. spin_unlock_irqrestore(&apbs[IndexCard].mutex, flags);
  374. return 0;
  375. }
  376. static int do_ac_read(int IndexCard, char *buf)
  377. {
  378. struct st_ram_io st_loc;
  379. struct mailbox tmpmailbox; /* bounce buffer - can't copy to user space with cli() */
  380. unsigned long from = (unsigned long)apbs[IndexCard].RamIO + RAM_TO_PC;
  381. unsigned char *to = (unsigned char *)&tmpmailbox;
  382. #ifdef DEBUG
  383. int c;
  384. #endif
  385. st_loc.tic_owner_to_pc = readb(apbs[IndexCard].RamIO + TIC_OWNER_TO_PC);
  386. st_loc.numcard_owner_to_pc = readb(apbs[IndexCard].RamIO + NUMCARD_OWNER_TO_PC);
  387. {
  388. int c;
  389. for (c = 0; c < sizeof(struct mailbox); c++)
  390. *(to++) = readb(from++);
  391. }
  392. writeb(1, apbs[IndexCard].RamIO + ACK_FROM_PC_READY);
  393. writeb(1, apbs[IndexCard].RamIO + TYP_ACK_FROM_PC);
  394. writeb(IndexCard+1, apbs[IndexCard].RamIO + NUMCARD_ACK_FROM_PC);
  395. writeb(readb(apbs[IndexCard].RamIO + TIC_OWNER_TO_PC), 
  396.        apbs[IndexCard].RamIO + TIC_ACK_FROM_PC);
  397. writeb(2, apbs[IndexCard].RamIO + ACK_FROM_PC_READY);
  398. writeb(0, apbs[IndexCard].RamIO + DATA_TO_PC_READY);
  399. writeb(2, apbs[IndexCard].RamIO + RAM_IT_FROM_PC);
  400. Dummy = readb(apbs[IndexCard].RamIO + VERS);
  401. #ifdef DEBUG
  402. printk("Read from applicom card #%d. struct st_ram_io follows:", NumCard);
  403. for (c = 0; c < sizeof(struct st_ram_io);) {
  404. printk("n%5.5X: %2.2X", c, ((unsigned char *) &st_loc)[c]);
  405. for (c++; c % 8 && c < sizeof(struct st_ram_io); c++) {
  406. printk(" %2.2X", ((unsigned char *) &st_loc)[c]);
  407. }
  408. }
  409. printk("nstruct mailbox follows:");
  410. for (c = 0; c < sizeof(struct mailbox);) {
  411. printk("n%5.5X: %2.2X", c, ((unsigned char *) &tmpmailbox)[c]);
  412. for (c++; c % 8 && c < sizeof(struct mailbox); c++) {
  413. printk(" %2.2X", ((unsigned char *) &tmpmailbox)[c]);
  414. }
  415. }
  416. printk("n");
  417. #endif
  418. #warning "Je suis stupide. DW. - copy*user in cli"
  419. if (copy_to_user(buf, &st_loc, sizeof(struct st_ram_io)))
  420. return -EFAULT;
  421. if (copy_to_user(&buf[sizeof(struct st_ram_io)], &tmpmailbox, sizeof(struct mailbox)))
  422. return -EFAULT;
  423. return (sizeof(struct st_ram_io) + sizeof(struct mailbox));
  424. }
  425. static ssize_t ac_read (struct file *filp, char *buf, size_t count, loff_t *ptr)
  426. {
  427. unsigned long flags;
  428. unsigned int i;
  429. unsigned char tmp;
  430. int ret = 0;
  431. DECLARE_WAITQUEUE(wait, current);
  432. #ifdef DEBUG
  433. int loopcount=0;
  434. #endif
  435. /* No need to ratelimit this. Only root can trigger it anyway */
  436. if (count != sizeof(struct st_ram_io) + sizeof(struct mailbox)) {
  437. printk( KERN_WARNING "Hmmm. read() of Applicom card, length %d != expected %dn",
  438. count,sizeof(struct st_ram_io) + sizeof(struct mailbox));
  439. return -EINVAL;
  440. }
  441. while(1) {
  442. /* Stick ourself on the wait queue */
  443. set_current_state(TASK_INTERRUPTIBLE);
  444. add_wait_queue(&FlagSleepRec, &wait);
  445. /* Scan each board, looking for one which has a packet for us */
  446. for (i=0; i < MAX_BOARD; i++) {
  447. if (!apbs[i].RamIO)
  448. continue;
  449. spin_lock_irqsave(&apbs[i].mutex, flags);
  450. tmp = readb(apbs[i].RamIO + DATA_TO_PC_READY);
  451. if (tmp == 2) {
  452. /* Got a packet for us */
  453. ret = do_ac_read(i, buf);
  454. spin_unlock_irqrestore(&apbs[i].mutex, flags);
  455. set_current_state(TASK_RUNNING);
  456. remove_wait_queue(&FlagSleepRec, &wait);
  457. return tmp;
  458. }
  459. if (tmp > 2) {
  460. /* Got an error */
  461. Dummy = readb(apbs[i].RamIO + VERS);
  462. spin_unlock_irqrestore(&apbs[i].mutex, flags);
  463. set_current_state(TASK_RUNNING);
  464. remove_wait_queue(&FlagSleepRec, &wait);
  465. printk(KERN_WARNING "APPLICOM driver read error board %d, DataToPcReady = %dn",
  466.        i,(int)readb(apbs[i].RamIO + DATA_TO_PC_READY));
  467. DeviceErrorCount++;
  468. return -EIO;
  469. }
  470. /* Nothing for us. Try the next board */
  471. Dummy = readb(apbs[i].RamIO + VERS);
  472. spin_unlock_irqrestore(&apbs[i].mutex, flags);
  473. } /* per board */
  474. /* OK - No boards had data for us. Sleep now */
  475. schedule();
  476. remove_wait_queue(&FlagSleepRec, &wait);
  477. if (signal_pending(current))
  478. return -EINTR;
  479. #ifdef DEBUG
  480. if (loopcount++ > 2) {
  481. printk("Looping in ac_read. loopcount %dn", loopcount);
  482. }
  483. #endif
  484. }
  485. static void ac_interrupt(int vec, void *dev_instance, struct pt_regs *regs)
  486. {
  487. unsigned int i;
  488. unsigned int FlagInt;
  489. unsigned int LoopCount;
  490. //    printk("Applicom interrupt on IRQ %d occurredn", vec);
  491. LoopCount = 0;
  492. do {
  493. FlagInt = 0;
  494. for (i = 0; i < MAX_BOARD; i++) {
  495. /* Skip if this board doesn't exist */
  496. if (!apbs[i].RamIO)
  497. continue;
  498. spin_lock(&apbs[i].mutex);
  499. /* Skip if this board doesn't want attention */
  500. if(readb(apbs[i].RamIO + RAM_IT_TO_PC) == 0) {
  501. spin_unlock(&apbs[i].mutex);
  502. continue;
  503. }
  504. FlagInt = 1;
  505. writeb(0, apbs[i].RamIO + RAM_IT_TO_PC);
  506. if (readb(apbs[i].RamIO + DATA_TO_PC_READY) > 2) {
  507. printk(KERN_WARNING "APPLICOM driver interrupt err board %d, DataToPcReady = %dn",
  508.        i+1,(int)readb(apbs[i].RamIO + DATA_TO_PC_READY));
  509. DeviceErrorCount++;
  510. }
  511. if((readb(apbs[i].RamIO + DATA_FROM_PC_READY) > 2) && 
  512.    (readb(apbs[i].RamIO + DATA_FROM_PC_READY) != 6)) {
  513. printk(KERN_WARNING "APPLICOM driver interrupt err board %d, DataFromPcReady = %dn",
  514.        i+1,(int)readb(apbs[i].RamIO + DATA_FROM_PC_READY));
  515. DeviceErrorCount++;
  516. }
  517. if (readb(apbs[i].RamIO + DATA_TO_PC_READY) == 2) { /* mailbox sent by the card ?   */
  518. if (waitqueue_active(&FlagSleepRec)) {
  519. wake_up_interruptible(&FlagSleepRec);
  520. }
  521. }
  522. if (readb(apbs[i].RamIO + DATA_FROM_PC_READY) == 0) { /* ram i/o free for write by pc ? */
  523. if (waitqueue_active(&apbs[i].FlagSleepSend)) { /* process sleep during read ?    */
  524. wake_up_interruptible(&apbs[i].FlagSleepSend);
  525. }
  526. }
  527. Dummy = readb(apbs[i].RamIO + VERS);
  528. if(readb(apbs[i].RamIO + RAM_IT_TO_PC)) {
  529. /* There's another int waiting on this card */
  530. spin_unlock(&apbs[i].mutex);
  531. i--;
  532. } else {
  533. spin_unlock(&apbs[i].mutex);
  534. }
  535. }
  536. if (FlagInt)
  537. LoopCount = 0;
  538. else
  539. LoopCount++;
  540. } while(LoopCount < 2);
  541. }
  542. static int ac_ioctl(struct inode *inode, struct file *file, unsigned int cmd, unsigned long arg)
  543.      
  544. { /* @ ADG ou ATO selon le cas */
  545. int i;
  546. unsigned char IndexCard;
  547. unsigned long pmem;
  548. int ret = 0;
  549. volatile unsigned char byte_reset_it;
  550. struct st_ram_io *adgl;
  551. /* In general, the device is only openable by root anyway, so we're not
  552.    particularly concerned that bogus ioctls can flood the console. */
  553. adgl = kmalloc(sizeof(struct st_ram_io), GFP_KERNEL);
  554. if (!adgl)
  555. return -ENOMEM;
  556. if (copy_from_user(adgl, (void *)arg,sizeof(struct st_ram_io))) {
  557. kfree(adgl);
  558. return -EFAULT;
  559. }
  560. IndexCard = adgl->num_card-1;
  561.  
  562. if(cmd != 0 && cmd != 6 &&
  563.    ((IndexCard >= MAX_BOARD) || !apbs[IndexCard].RamIO)) {
  564. static int warncount = 10;
  565. if (warncount) {
  566. printk( KERN_WARNING "APPLICOM driver IOCTL, bad board number %dn",(int)IndexCard+1);
  567. warncount--;
  568. }
  569. kfree(adgl);
  570. return -EINVAL;
  571. }
  572. switch (cmd) {
  573. case 0:
  574. pmem = apbs[IndexCard].RamIO;
  575. for (i = 0; i < sizeof(struct st_ram_io); i++)
  576. ((unsigned char *)adgl)[i]=readb(pmem++);
  577. if (copy_to_user((void *)arg, adgl, sizeof(struct st_ram_io)))
  578. ret = -EFAULT;
  579. break;
  580. case 1:
  581. pmem = apbs[IndexCard].RamIO + CONF_END_TEST;
  582. for (i = 0; i < 4; i++)
  583. adgl->conf_end_test[i] = readb(pmem++);
  584. for (i = 0; i < 2; i++)
  585. adgl->error_code[i] = readb(pmem++);
  586. for (i = 0; i < 4; i++)
  587. adgl->parameter_error[i] = readb(pmem++);
  588. pmem = apbs[IndexCard].RamIO + VERS;
  589. adgl->vers = readb(pmem);
  590. pmem = apbs[IndexCard].RamIO + TYPE_CARD;
  591. for (i = 0; i < 20; i++)
  592. adgl->reserv1[i] = readb(pmem++);
  593. *(int *)&adgl->reserv1[20] =  
  594. (readb(apbs[IndexCard].RamIO + SERIAL_NUMBER) << 16) + 
  595. (readb(apbs[IndexCard].RamIO + SERIAL_NUMBER + 1) << 8) + 
  596. (readb(apbs[IndexCard].RamIO + SERIAL_NUMBER + 2) );
  597. if (copy_to_user((void *)arg, adgl, sizeof(struct st_ram_io)))
  598. ret = -EFAULT;
  599. break;
  600. case 2:
  601. pmem = apbs[IndexCard].RamIO + CONF_END_TEST;
  602. for (i = 0; i < 10; i++)
  603. writeb(0xff, pmem++);
  604. writeb(adgl->data_from_pc_ready, 
  605.        apbs[IndexCard].RamIO + DATA_FROM_PC_READY);
  606. writeb(1, apbs[IndexCard].RamIO + RAM_IT_FROM_PC);
  607. for (i = 0; i < MAX_BOARD; i++) {
  608. if (apbs[i].RamIO) {
  609. byte_reset_it = readb(apbs[i].RamIO + RAM_IT_TO_PC);
  610. }
  611. }
  612. break;
  613. case 3:
  614. pmem = apbs[IndexCard].RamIO + TIC_DES_FROM_PC;
  615. writeb(adgl->tic_des_from_pc, pmem);
  616. break;
  617. case 4:
  618. pmem = apbs[IndexCard].RamIO + TIC_OWNER_TO_PC;
  619. adgl->tic_owner_to_pc     = readb(pmem++);
  620. adgl->numcard_owner_to_pc = readb(pmem);
  621. if (copy_to_user((void *)arg, adgl,sizeof(struct st_ram_io)))
  622. ret = -EFAULT;
  623. break;
  624. case 5:
  625. writeb(adgl->num_card, apbs[IndexCard].RamIO + NUMCARD_OWNER_TO_PC);
  626. writeb(adgl->num_card, apbs[IndexCard].RamIO + NUMCARD_DES_FROM_PC);
  627. writeb(adgl->num_card, apbs[IndexCard].RamIO + NUMCARD_ACK_FROM_PC);
  628. writeb(4, apbs[IndexCard].RamIO + DATA_FROM_PC_READY);
  629. writeb(1, apbs[IndexCard].RamIO + RAM_IT_FROM_PC);
  630. break;
  631. case 6:
  632. printk(KERN_INFO "APPLICOM driver release .... V2.8.0 ($Revision: 1.30 $)n");
  633. printk(KERN_INFO "Number of installed boards . %dn", (int) numboards);
  634. printk(KERN_INFO "Segment of board ........... %Xn", (int) mem);
  635. printk(KERN_INFO "Interrupt IRQ number ....... %dn", (int) irq);
  636. for (i = 0; i < MAX_BOARD; i++) {
  637. int serial;
  638. char boardname[(SERIAL_NUMBER - TYPE_CARD) + 1];
  639. if (!apbs[i].RamIO)
  640. continue;
  641. for (serial = 0; serial < SERIAL_NUMBER - TYPE_CARD; serial++)
  642. boardname[serial] = readb(apbs[i].RamIO + TYPE_CARD + serial);
  643. boardname[serial] = 0;
  644. printk(KERN_INFO "Prom version board %d ....... V%d.%d %s",
  645.        i+1,
  646.        (int)(readb(apbs[IndexCard].RamIO + VERS) >> 4),
  647.        (int)(readb(apbs[IndexCard].RamIO + VERS) & 0xF),
  648.        boardname);
  649. serial = (readb(apbs[i].RamIO + SERIAL_NUMBER) << 16) + 
  650. (readb(apbs[i].RamIO + SERIAL_NUMBER + 1) << 8) + 
  651. (readb(apbs[i].RamIO + SERIAL_NUMBER + 2) );
  652. if (serial != 0)
  653. printk(" S/N %dn", serial);
  654. else
  655. printk("n");
  656. }
  657. if (DeviceErrorCount != 0)
  658. printk(KERN_INFO "DeviceErrorCount ........... %dn", DeviceErrorCount);
  659. if (ReadErrorCount != 0)
  660. printk(KERN_INFO "ReadErrorCount ............. %dn", ReadErrorCount);
  661. if (WriteErrorCount != 0)
  662. printk(KERN_INFO "WriteErrorCount ............ %dn", WriteErrorCount);
  663. if (waitqueue_active(&FlagSleepRec))
  664. printk(KERN_INFO "Process in read pendingn");
  665. for (i = 0; i < MAX_BOARD; i++) {
  666. if (apbs[i].RamIO && waitqueue_active(&apbs[i].FlagSleepSend))
  667. printk(KERN_INFO "Process in write pending board %dn",i+1);
  668. }
  669. break;
  670. default:
  671. printk(KERN_INFO "APPLICOM driver ioctl, unknown function code %dn",cmd) ;
  672. ret = -EINVAL;
  673. break;
  674. }
  675. Dummy = readb(apbs[IndexCard].RamIO + VERS);
  676. kfree(adgl);
  677. return 0;
  678. }
  679. #ifndef MODULE
  680. static int __init applicom_setup(char *str)
  681. {
  682. int ints[4];
  683. (void) get_options(str, 4, ints);
  684. if (ints[0] > 2) {
  685. printk(KERN_WARNING "Too many arguments to 'applicom=', expected mem,irq only.n");
  686. }
  687. if (ints[0] < 2) {
  688. printk(KERN_INFO"applicom numargs: %dn", ints[0]);
  689. return 0;
  690. }
  691. mem = ints[1];
  692. irq = ints[2];
  693. return 1;
  694. }
  695. __setup("applicom=", applicom_setup);
  696. #endif /* MODULE */