1 /* Derived from Applicom driver ac.c for SCO Unix */
2 /* Ported by David Woodhouse, Axiom (Cambridge) Ltd. */
3 /* dwmw2@infradead.org 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 /* addresses 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 /*****************************************************************************/
23 #include <linux/kernel.h>
24 #include <linux/module.h>
25 #include <linux/interrupt.h>
26 #include <linux/sched.h>
27 #include <linux/slab.h>
28 #include <linux/errno.h>
29 #include <linux/mutex.h>
30 #include <linux/miscdevice.h>
31 #include <linux/pci.h>
32 #include <linux/wait.h>
33 #include <linux/init.h>
35 #include <linux/nospec.h>
38 #include <asm/uaccess.h>
43 /* NOTE: We use for loops with {write,read}b() instead of
44 memcpy_{from,to}io throughout this driver. This is because
45 the board doesn't correctly handle word accesses - only
52 #define MAX_BOARD 8 /* maximum of pc board possible */
53 #define MAX_ISA_BOARD 4
54 #define LEN_RAM_IO 0x800
57 #ifndef PCI_VENDOR_ID_APPLICOM
58 #define PCI_VENDOR_ID_APPLICOM 0x1389
59 #define PCI_DEVICE_ID_APPLICOM_PCIGENERIC 0x0001
60 #define PCI_DEVICE_ID_APPLICOM_PCI2000IBS_CAN 0x0002
61 #define PCI_DEVICE_ID_APPLICOM_PCI2000PFB 0x0003
64 static DEFINE_MUTEX(ac_mutex
);
65 static char *applicom_pci_devnames
[] = {
67 "PCI2000IBS / PCI2000CAN",
71 static struct pci_device_id applicom_pci_tbl
[] = {
72 { PCI_VDEVICE(APPLICOM
, PCI_DEVICE_ID_APPLICOM_PCIGENERIC
) },
73 { PCI_VDEVICE(APPLICOM
, PCI_DEVICE_ID_APPLICOM_PCI2000IBS_CAN
) },
74 { PCI_VDEVICE(APPLICOM
, PCI_DEVICE_ID_APPLICOM_PCI2000PFB
) },
77 MODULE_DEVICE_TABLE(pci
, applicom_pci_tbl
);
79 MODULE_AUTHOR("David Woodhouse & Applicom International");
80 MODULE_DESCRIPTION("Driver for Applicom Profibus card");
81 MODULE_LICENSE("GPL");
82 MODULE_ALIAS_MISCDEV(AC_MINOR
);
84 MODULE_SUPPORTED_DEVICE("ac");
87 static struct applicom_board
{
90 wait_queue_head_t FlagSleepSend
;
95 static unsigned int irq
= 0; /* interrupt number IRQ */
96 static unsigned long mem
= 0; /* physical segment of board */
98 module_param(irq
, uint
, 0);
99 MODULE_PARM_DESC(irq
, "IRQ of the Applicom board");
100 module_param(mem
, ulong
, 0);
101 MODULE_PARM_DESC(mem
, "Shared Memory Address of Applicom board");
103 static unsigned int numboards
; /* number of installed boards */
104 static volatile unsigned char Dummy
;
105 static DECLARE_WAIT_QUEUE_HEAD(FlagSleepRec
);
106 static unsigned int WriteErrorCount
; /* number of write error */
107 static unsigned int ReadErrorCount
; /* number of read error */
108 static unsigned int DeviceErrorCount
; /* number of device error */
110 static ssize_t
ac_read (struct file
*, char __user
*, size_t, loff_t
*);
111 static ssize_t
ac_write (struct file
*, const char __user
*, size_t, loff_t
*);
112 static long ac_ioctl(struct file
*, unsigned int, unsigned long);
113 static irqreturn_t
ac_interrupt(int, void *);
115 static const struct file_operations ac_fops
= {
116 .owner
= THIS_MODULE
,
120 .unlocked_ioctl
= ac_ioctl
,
123 static struct miscdevice ac_miscdev
= {
129 static int dummy
; /* dev_id for request_irq() */
131 static int ac_register_board(unsigned long physloc
, void __iomem
*loc
,
132 unsigned char boardno
)
134 volatile unsigned char byte_reset_it
;
136 if((readb(loc
+ CONF_END_TEST
) != 0x00) ||
137 (readb(loc
+ CONF_END_TEST
+ 1) != 0x55) ||
138 (readb(loc
+ CONF_END_TEST
+ 2) != 0xAA) ||
139 (readb(loc
+ CONF_END_TEST
+ 3) != 0xFF))
143 boardno
= readb(loc
+ NUMCARD_OWNER_TO_PC
);
145 if (!boardno
|| boardno
> MAX_BOARD
) {
146 printk(KERN_WARNING
"Board #%d (at 0x%lx) is out of range (1 <= x <= %d).\n",
147 boardno
, physloc
, MAX_BOARD
);
151 if (apbs
[boardno
- 1].RamIO
) {
152 printk(KERN_WARNING
"Board #%d (at 0x%lx) conflicts with previous board #%d (at 0x%lx)\n",
153 boardno
, physloc
, boardno
, apbs
[boardno
-1].PhysIO
);
159 apbs
[boardno
].PhysIO
= physloc
;
160 apbs
[boardno
].RamIO
= loc
;
161 init_waitqueue_head(&apbs
[boardno
].FlagSleepSend
);
162 spin_lock_init(&apbs
[boardno
].mutex
);
163 byte_reset_it
= readb(loc
+ RAM_IT_TO_PC
);
169 static void __exit
applicom_exit(void)
173 misc_deregister(&ac_miscdev
);
175 for (i
= 0; i
< MAX_BOARD
; i
++) {
181 free_irq(apbs
[i
].irq
, &dummy
);
183 iounmap(apbs
[i
].RamIO
);
187 static int __init
applicom_init(void)
190 struct pci_dev
*dev
= NULL
;
194 printk(KERN_INFO
"Applicom driver: $Id: ac.c,v 1.30 2000/03/22 16:03:57 dwmw2 Exp $\n");
196 /* No mem and irq given - check for a PCI card */
198 while ( (dev
= pci_get_class(PCI_CLASS_OTHERS
<< 16, dev
))) {
200 if (!pci_match_id(applicom_pci_tbl
, dev
))
203 if (pci_enable_device(dev
))
206 RamIO
= ioremap_nocache(pci_resource_start(dev
, 0), LEN_RAM_IO
);
209 printk(KERN_INFO
"ac.o: Failed to ioremap PCI memory "
211 (unsigned long long)pci_resource_start(dev
, 0));
212 pci_disable_device(dev
);
216 printk(KERN_INFO
"Applicom %s found at mem 0x%llx, irq %d\n",
217 applicom_pci_devnames
[dev
->device
-1],
218 (unsigned long long)pci_resource_start(dev
, 0),
221 boardno
= ac_register_board(pci_resource_start(dev
, 0),
224 printk(KERN_INFO
"ac.o: PCI Applicom device doesn't have correct signature.\n");
226 pci_disable_device(dev
);
230 if (request_irq(dev
->irq
, &ac_interrupt
, IRQF_SHARED
, "Applicom PCI", &dummy
)) {
231 printk(KERN_INFO
"Could not allocate IRQ %d for PCI Applicom device.\n", dev
->irq
);
233 pci_disable_device(dev
);
234 apbs
[boardno
- 1].RamIO
= NULL
;
238 /* Enable interrupts. */
240 writeb(0x40, apbs
[boardno
- 1].RamIO
+ RAM_IT_FROM_PC
);
242 apbs
[boardno
- 1].irq
= dev
->irq
;
245 /* Finished with PCI cards. If none registered,
246 * and there was no mem/irq specified, exit */
252 printk(KERN_INFO
"ac.o: No PCI boards found.\n");
253 printk(KERN_INFO
"ac.o: For an ISA board you must supply memory and irq parameters.\n");
258 /* Now try the specified ISA cards */
260 for (i
= 0; i
< MAX_ISA_BOARD
; i
++) {
261 RamIO
= ioremap_nocache(mem
+ (LEN_RAM_IO
* i
), LEN_RAM_IO
);
264 printk(KERN_INFO
"ac.o: Failed to ioremap the ISA card's memory space (slot #%d)\n", i
+ 1);
268 if (!(boardno
= ac_register_board((unsigned long)mem
+ (LEN_RAM_IO
*i
),
274 printk(KERN_NOTICE
"Applicom ISA card found at mem 0x%lx, irq %d\n", mem
+ (LEN_RAM_IO
*i
), irq
);
277 if (request_irq(irq
, &ac_interrupt
, IRQF_SHARED
, "Applicom ISA", &dummy
)) {
278 printk(KERN_WARNING
"Could not allocate IRQ %d for ISA Applicom device.\n", irq
);
280 apbs
[boardno
- 1].RamIO
= NULL
;
283 apbs
[boardno
- 1].irq
= irq
;
286 apbs
[boardno
- 1].irq
= 0;
292 printk(KERN_WARNING
"ac.o: No valid ISA Applicom boards found "
293 "at mem 0x%lx\n", mem
);
296 init_waitqueue_head(&FlagSleepRec
);
300 DeviceErrorCount
= 0;
303 ret
= misc_register(&ac_miscdev
);
305 printk(KERN_WARNING
"ac.o: Unable to register misc device\n");
308 for (i
= 0; i
< MAX_BOARD
; i
++) {
310 char boardname
[(SERIAL_NUMBER
- TYPE_CARD
) + 1];
315 for (serial
= 0; serial
< SERIAL_NUMBER
- TYPE_CARD
; serial
++)
316 boardname
[serial
] = readb(apbs
[i
].RamIO
+ TYPE_CARD
+ serial
);
318 boardname
[serial
] = 0;
321 printk(KERN_INFO
"Applicom board %d: %s, PROM V%d.%d",
323 (int)(readb(apbs
[i
].RamIO
+ VERS
) >> 4),
324 (int)(readb(apbs
[i
].RamIO
+ VERS
) & 0xF));
326 serial
= (readb(apbs
[i
].RamIO
+ SERIAL_NUMBER
) << 16) +
327 (readb(apbs
[i
].RamIO
+ SERIAL_NUMBER
+ 1) << 8) +
328 (readb(apbs
[i
].RamIO
+ SERIAL_NUMBER
+ 2) );
331 printk(" S/N %d\n", serial
);
342 for (i
= 0; i
< MAX_BOARD
; i
++) {
346 free_irq(apbs
[i
].irq
, &dummy
);
347 iounmap(apbs
[i
].RamIO
);
352 module_init(applicom_init
);
353 module_exit(applicom_exit
);
356 static ssize_t
ac_write(struct file
*file
, const char __user
*buf
, size_t count
, loff_t
* ppos
)
358 unsigned int NumCard
; /* Board number 1 -> 8 */
359 unsigned int IndexCard
; /* Index board number 0 -> 7 */
360 unsigned char TicCard
; /* Board TIC to send */
361 unsigned long flags
; /* Current priority */
362 struct st_ram_io st_loc
;
363 struct mailbox tmpmailbox
;
367 DECLARE_WAITQUEUE(wait
, current
);
369 if (count
!= sizeof(struct st_ram_io
) + sizeof(struct mailbox
)) {
370 static int warncount
= 5;
372 printk(KERN_INFO
"Hmmm. write() of Applicom card, length %zd != expected %zd\n",
373 count
, sizeof(struct st_ram_io
) + sizeof(struct mailbox
));
379 if(copy_from_user(&st_loc
, buf
, sizeof(struct st_ram_io
)))
382 if(copy_from_user(&tmpmailbox
, &buf
[sizeof(struct st_ram_io
)],
383 sizeof(struct mailbox
)))
386 NumCard
= st_loc
.num_card
; /* board number to send */
387 TicCard
= st_loc
.tic_des_from_pc
; /* tic number to send */
388 IndexCard
= NumCard
- 1;
390 if (IndexCard
>= MAX_BOARD
)
392 IndexCard
= array_index_nospec(IndexCard
, MAX_BOARD
);
394 if (!apbs
[IndexCard
].RamIO
)
398 printk("Write to applicom card #%d. struct st_ram_io follows:",
401 for (c
= 0; c
< sizeof(struct st_ram_io
);) {
403 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
]);
410 printk("\nstruct mailbox follows:");
412 for (c
= 0; c
< sizeof(struct mailbox
);) {
413 printk("\n%5.5X: %2.2X", c
, ((unsigned char *) &tmpmailbox
)[c
]);
415 for (c
++; c
% 8 && c
< sizeof(struct mailbox
); c
++) {
416 printk(" %2.2X", ((unsigned char *) &tmpmailbox
)[c
]);
423 spin_lock_irqsave(&apbs
[IndexCard
].mutex
, flags
);
425 /* Test octet ready correct */
426 if(readb(apbs
[IndexCard
].RamIO
+ DATA_FROM_PC_READY
) > 2) {
427 Dummy
= readb(apbs
[IndexCard
].RamIO
+ VERS
);
428 spin_unlock_irqrestore(&apbs
[IndexCard
].mutex
, flags
);
429 printk(KERN_WARNING
"APPLICOM driver write error board %d, DataFromPcReady = %d\n",
430 IndexCard
,(int)readb(apbs
[IndexCard
].RamIO
+ DATA_FROM_PC_READY
));
435 /* Place ourselves on the wait queue */
436 set_current_state(TASK_INTERRUPTIBLE
);
437 add_wait_queue(&apbs
[IndexCard
].FlagSleepSend
, &wait
);
439 /* Check whether the card is ready for us */
440 while (readb(apbs
[IndexCard
].RamIO
+ DATA_FROM_PC_READY
) != 0) {
441 Dummy
= readb(apbs
[IndexCard
].RamIO
+ VERS
);
442 /* It's busy. Sleep. */
444 spin_unlock_irqrestore(&apbs
[IndexCard
].mutex
, flags
);
446 if (signal_pending(current
)) {
447 remove_wait_queue(&apbs
[IndexCard
].FlagSleepSend
,
451 spin_lock_irqsave(&apbs
[IndexCard
].mutex
, flags
);
452 set_current_state(TASK_INTERRUPTIBLE
);
455 /* We may not have actually slept */
456 set_current_state(TASK_RUNNING
);
457 remove_wait_queue(&apbs
[IndexCard
].FlagSleepSend
, &wait
);
459 writeb(1, apbs
[IndexCard
].RamIO
+ DATA_FROM_PC_READY
);
461 /* Which is best - lock down the pages with rawio and then
462 copy directly, or use bounce buffers? For now we do the latter
463 because it works with 2.2 still */
465 unsigned char *from
= (unsigned char *) &tmpmailbox
;
466 void __iomem
*to
= apbs
[IndexCard
].RamIO
+ RAM_FROM_PC
;
469 for (c
= 0; c
< sizeof(struct mailbox
); c
++)
470 writeb(*(from
++), to
++);
473 writeb(0x20, apbs
[IndexCard
].RamIO
+ TIC_OWNER_FROM_PC
);
474 writeb(0xff, apbs
[IndexCard
].RamIO
+ NUMCARD_OWNER_FROM_PC
);
475 writeb(TicCard
, apbs
[IndexCard
].RamIO
+ TIC_DES_FROM_PC
);
476 writeb(NumCard
, apbs
[IndexCard
].RamIO
+ NUMCARD_DES_FROM_PC
);
477 writeb(2, apbs
[IndexCard
].RamIO
+ DATA_FROM_PC_READY
);
478 writeb(1, apbs
[IndexCard
].RamIO
+ RAM_IT_FROM_PC
);
479 Dummy
= readb(apbs
[IndexCard
].RamIO
+ VERS
);
480 spin_unlock_irqrestore(&apbs
[IndexCard
].mutex
, flags
);
484 static int do_ac_read(int IndexCard
, char __user
*buf
,
485 struct st_ram_io
*st_loc
, struct mailbox
*mailbox
)
487 void __iomem
*from
= apbs
[IndexCard
].RamIO
+ RAM_TO_PC
;
488 unsigned char *to
= (unsigned char *)mailbox
;
493 st_loc
->tic_owner_to_pc
= readb(apbs
[IndexCard
].RamIO
+ TIC_OWNER_TO_PC
);
494 st_loc
->numcard_owner_to_pc
= readb(apbs
[IndexCard
].RamIO
+ NUMCARD_OWNER_TO_PC
);
500 for (c
= 0; c
< sizeof(struct mailbox
); c
++)
501 *(to
++) = readb(from
++);
503 writeb(1, apbs
[IndexCard
].RamIO
+ ACK_FROM_PC_READY
);
504 writeb(1, apbs
[IndexCard
].RamIO
+ TYP_ACK_FROM_PC
);
505 writeb(IndexCard
+1, apbs
[IndexCard
].RamIO
+ NUMCARD_ACK_FROM_PC
);
506 writeb(readb(apbs
[IndexCard
].RamIO
+ TIC_OWNER_TO_PC
),
507 apbs
[IndexCard
].RamIO
+ TIC_ACK_FROM_PC
);
508 writeb(2, apbs
[IndexCard
].RamIO
+ ACK_FROM_PC_READY
);
509 writeb(0, apbs
[IndexCard
].RamIO
+ DATA_TO_PC_READY
);
510 writeb(2, apbs
[IndexCard
].RamIO
+ RAM_IT_FROM_PC
);
511 Dummy
= readb(apbs
[IndexCard
].RamIO
+ VERS
);
514 printk("Read from applicom card #%d. struct st_ram_io follows:", NumCard
);
516 for (c
= 0; c
< sizeof(struct st_ram_io
);) {
517 printk("\n%5.5X: %2.2X", c
, ((unsigned char *)st_loc
)[c
]);
519 for (c
++; c
% 8 && c
< sizeof(struct st_ram_io
); c
++) {
520 printk(" %2.2X", ((unsigned char *)st_loc
)[c
]);
524 printk("\nstruct mailbox follows:");
526 for (c
= 0; c
< sizeof(struct mailbox
);) {
527 printk("\n%5.5X: %2.2X", c
, ((unsigned char *)mailbox
)[c
]);
529 for (c
++; c
% 8 && c
< sizeof(struct mailbox
); c
++) {
530 printk(" %2.2X", ((unsigned char *)mailbox
)[c
]);
535 return (sizeof(struct st_ram_io
) + sizeof(struct mailbox
));
538 static ssize_t
ac_read (struct file
*filp
, char __user
*buf
, size_t count
, loff_t
*ptr
)
544 DECLARE_WAITQUEUE(wait
, current
);
548 /* No need to ratelimit this. Only root can trigger it anyway */
549 if (count
!= sizeof(struct st_ram_io
) + sizeof(struct mailbox
)) {
550 printk( KERN_WARNING
"Hmmm. read() of Applicom card, length %zd != expected %zd\n",
551 count
,sizeof(struct st_ram_io
) + sizeof(struct mailbox
));
556 /* Stick ourself on the wait queue */
557 set_current_state(TASK_INTERRUPTIBLE
);
558 add_wait_queue(&FlagSleepRec
, &wait
);
560 /* Scan each board, looking for one which has a packet for us */
561 for (i
=0; i
< MAX_BOARD
; i
++) {
564 spin_lock_irqsave(&apbs
[i
].mutex
, flags
);
566 tmp
= readb(apbs
[i
].RamIO
+ DATA_TO_PC_READY
);
569 struct st_ram_io st_loc
;
570 struct mailbox mailbox
;
572 /* Got a packet for us */
573 memset(&st_loc
, 0, sizeof(st_loc
));
574 ret
= do_ac_read(i
, buf
, &st_loc
, &mailbox
);
575 spin_unlock_irqrestore(&apbs
[i
].mutex
, flags
);
576 set_current_state(TASK_RUNNING
);
577 remove_wait_queue(&FlagSleepRec
, &wait
);
579 if (copy_to_user(buf
, &st_loc
, sizeof(st_loc
)))
581 if (copy_to_user(buf
+ sizeof(st_loc
), &mailbox
, sizeof(mailbox
)))
588 Dummy
= readb(apbs
[i
].RamIO
+ VERS
);
590 spin_unlock_irqrestore(&apbs
[i
].mutex
, flags
);
591 set_current_state(TASK_RUNNING
);
592 remove_wait_queue(&FlagSleepRec
, &wait
);
594 printk(KERN_WARNING
"APPLICOM driver read error board %d, DataToPcReady = %d\n",
595 i
,(int)readb(apbs
[i
].RamIO
+ DATA_TO_PC_READY
));
600 /* Nothing for us. Try the next board */
601 Dummy
= readb(apbs
[i
].RamIO
+ VERS
);
602 spin_unlock_irqrestore(&apbs
[i
].mutex
, flags
);
606 /* OK - No boards had data for us. Sleep now */
609 remove_wait_queue(&FlagSleepRec
, &wait
);
611 if (signal_pending(current
))
615 if (loopcount
++ > 2) {
616 printk(KERN_DEBUG
"Looping in ac_read. loopcount %d\n", loopcount
);
622 static irqreturn_t
ac_interrupt(int vec
, void *dev_instance
)
625 unsigned int FlagInt
;
626 unsigned int LoopCount
;
629 // printk("Applicom interrupt on IRQ %d occurred\n", vec);
635 for (i
= 0; i
< MAX_BOARD
; i
++) {
637 /* Skip if this board doesn't exist */
641 spin_lock(&apbs
[i
].mutex
);
643 /* Skip if this board doesn't want attention */
644 if(readb(apbs
[i
].RamIO
+ RAM_IT_TO_PC
) == 0) {
645 spin_unlock(&apbs
[i
].mutex
);
651 writeb(0, apbs
[i
].RamIO
+ RAM_IT_TO_PC
);
653 if (readb(apbs
[i
].RamIO
+ DATA_TO_PC_READY
) > 2) {
654 printk(KERN_WARNING
"APPLICOM driver interrupt err board %d, DataToPcReady = %d\n",
655 i
+1,(int)readb(apbs
[i
].RamIO
+ DATA_TO_PC_READY
));
659 if((readb(apbs
[i
].RamIO
+ DATA_FROM_PC_READY
) > 2) &&
660 (readb(apbs
[i
].RamIO
+ DATA_FROM_PC_READY
) != 6)) {
662 printk(KERN_WARNING
"APPLICOM driver interrupt err board %d, DataFromPcReady = %d\n",
663 i
+1,(int)readb(apbs
[i
].RamIO
+ DATA_FROM_PC_READY
));
667 if (readb(apbs
[i
].RamIO
+ DATA_TO_PC_READY
) == 2) { /* mailbox sent by the card ? */
668 if (waitqueue_active(&FlagSleepRec
)) {
669 wake_up_interruptible(&FlagSleepRec
);
673 if (readb(apbs
[i
].RamIO
+ DATA_FROM_PC_READY
) == 0) { /* ram i/o free for write by pc ? */
674 if (waitqueue_active(&apbs
[i
].FlagSleepSend
)) { /* process sleep during read ? */
675 wake_up_interruptible(&apbs
[i
].FlagSleepSend
);
678 Dummy
= readb(apbs
[i
].RamIO
+ VERS
);
680 if(readb(apbs
[i
].RamIO
+ RAM_IT_TO_PC
)) {
681 /* There's another int waiting on this card */
682 spin_unlock(&apbs
[i
].mutex
);
685 spin_unlock(&apbs
[i
].mutex
);
692 } while(LoopCount
< 2);
693 return IRQ_RETVAL(handled
);
698 static long ac_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
700 { /* @ ADG ou ATO selon le cas */
702 unsigned char IndexCard
;
705 static int warncount
= 10;
706 volatile unsigned char byte_reset_it
;
707 struct st_ram_io
*adgl
;
708 void __user
*argp
= (void __user
*)arg
;
710 /* In general, the device is only openable by root anyway, so we're not
711 particularly concerned that bogus ioctls can flood the console. */
713 adgl
= memdup_user(argp
, sizeof(struct st_ram_io
));
715 return PTR_ERR(adgl
);
717 mutex_lock(&ac_mutex
);
718 IndexCard
= adgl
->num_card
-1;
720 if (cmd
!= 6 && IndexCard
>= MAX_BOARD
)
722 IndexCard
= array_index_nospec(IndexCard
, MAX_BOARD
);
724 if (cmd
!= 6 && !apbs
[IndexCard
].RamIO
)
730 pmem
= apbs
[IndexCard
].RamIO
;
731 for (i
= 0; i
< sizeof(struct st_ram_io
); i
++)
732 ((unsigned char *)adgl
)[i
]=readb(pmem
++);
733 if (copy_to_user(argp
, adgl
, sizeof(struct st_ram_io
)))
737 pmem
= apbs
[IndexCard
].RamIO
+ CONF_END_TEST
;
738 for (i
= 0; i
< 4; i
++)
739 adgl
->conf_end_test
[i
] = readb(pmem
++);
740 for (i
= 0; i
< 2; i
++)
741 adgl
->error_code
[i
] = readb(pmem
++);
742 for (i
= 0; i
< 4; i
++)
743 adgl
->parameter_error
[i
] = readb(pmem
++);
744 pmem
= apbs
[IndexCard
].RamIO
+ VERS
;
745 adgl
->vers
= readb(pmem
);
746 pmem
= apbs
[IndexCard
].RamIO
+ TYPE_CARD
;
747 for (i
= 0; i
< 20; i
++)
748 adgl
->reserv1
[i
] = readb(pmem
++);
749 *(int *)&adgl
->reserv1
[20] =
750 (readb(apbs
[IndexCard
].RamIO
+ SERIAL_NUMBER
) << 16) +
751 (readb(apbs
[IndexCard
].RamIO
+ SERIAL_NUMBER
+ 1) << 8) +
752 (readb(apbs
[IndexCard
].RamIO
+ SERIAL_NUMBER
+ 2) );
754 if (copy_to_user(argp
, adgl
, sizeof(struct st_ram_io
)))
758 pmem
= apbs
[IndexCard
].RamIO
+ CONF_END_TEST
;
759 for (i
= 0; i
< 10; i
++)
760 writeb(0xff, pmem
++);
761 writeb(adgl
->data_from_pc_ready
,
762 apbs
[IndexCard
].RamIO
+ DATA_FROM_PC_READY
);
764 writeb(1, apbs
[IndexCard
].RamIO
+ RAM_IT_FROM_PC
);
766 for (i
= 0; i
< MAX_BOARD
; i
++) {
768 byte_reset_it
= readb(apbs
[i
].RamIO
+ RAM_IT_TO_PC
);
773 pmem
= apbs
[IndexCard
].RamIO
+ TIC_DES_FROM_PC
;
774 writeb(adgl
->tic_des_from_pc
, pmem
);
777 pmem
= apbs
[IndexCard
].RamIO
+ TIC_OWNER_TO_PC
;
778 adgl
->tic_owner_to_pc
= readb(pmem
++);
779 adgl
->numcard_owner_to_pc
= readb(pmem
);
780 if (copy_to_user(argp
, adgl
,sizeof(struct st_ram_io
)))
784 writeb(adgl
->num_card
, apbs
[IndexCard
].RamIO
+ NUMCARD_OWNER_TO_PC
);
785 writeb(adgl
->num_card
, apbs
[IndexCard
].RamIO
+ NUMCARD_DES_FROM_PC
);
786 writeb(adgl
->num_card
, apbs
[IndexCard
].RamIO
+ NUMCARD_ACK_FROM_PC
);
787 writeb(4, apbs
[IndexCard
].RamIO
+ DATA_FROM_PC_READY
);
788 writeb(1, apbs
[IndexCard
].RamIO
+ RAM_IT_FROM_PC
);
791 printk(KERN_INFO
"APPLICOM driver release .... V2.8.0 ($Revision: 1.30 $)\n");
792 printk(KERN_INFO
"Number of installed boards . %d\n", (int) numboards
);
793 printk(KERN_INFO
"Segment of board ........... %X\n", (int) mem
);
794 printk(KERN_INFO
"Interrupt IRQ number ....... %d\n", (int) irq
);
795 for (i
= 0; i
< MAX_BOARD
; i
++) {
797 char boardname
[(SERIAL_NUMBER
- TYPE_CARD
) + 1];
802 for (serial
= 0; serial
< SERIAL_NUMBER
- TYPE_CARD
; serial
++)
803 boardname
[serial
] = readb(apbs
[i
].RamIO
+ TYPE_CARD
+ serial
);
804 boardname
[serial
] = 0;
806 printk(KERN_INFO
"Prom version board %d ....... V%d.%d %s",
808 (int)(readb(apbs
[i
].RamIO
+ VERS
) >> 4),
809 (int)(readb(apbs
[i
].RamIO
+ VERS
) & 0xF),
813 serial
= (readb(apbs
[i
].RamIO
+ SERIAL_NUMBER
) << 16) +
814 (readb(apbs
[i
].RamIO
+ SERIAL_NUMBER
+ 1) << 8) +
815 (readb(apbs
[i
].RamIO
+ SERIAL_NUMBER
+ 2) );
818 printk(" S/N %d\n", serial
);
822 if (DeviceErrorCount
!= 0)
823 printk(KERN_INFO
"DeviceErrorCount ........... %d\n", DeviceErrorCount
);
824 if (ReadErrorCount
!= 0)
825 printk(KERN_INFO
"ReadErrorCount ............. %d\n", ReadErrorCount
);
826 if (WriteErrorCount
!= 0)
827 printk(KERN_INFO
"WriteErrorCount ............ %d\n", WriteErrorCount
);
828 if (waitqueue_active(&FlagSleepRec
))
829 printk(KERN_INFO
"Process in read pending\n");
830 for (i
= 0; i
< MAX_BOARD
; i
++) {
831 if (apbs
[i
].RamIO
&& waitqueue_active(&apbs
[i
].FlagSleepSend
))
832 printk(KERN_INFO
"Process in write pending board %d\n",i
+1);
839 Dummy
= readb(apbs
[IndexCard
].RamIO
+ VERS
);
841 mutex_unlock(&ac_mutex
);
846 pr_warn("APPLICOM driver IOCTL, bad board number %d\n",
851 mutex_unlock(&ac_mutex
);