1 // SPDX-License-Identifier: GPL-2.0-only
2 /* Derived from Applicom driver ac.c for SCO Unix */
3 /* Ported by David Woodhouse, Axiom (Cambridge) Ltd. */
4 /* dwmw2@infradead.org 30/8/98 */
5 /* $Id: ac.c,v 1.30 2000/03/22 16:03:57 dwmw2 Exp $ */
6 /* This module is for Linux 2.1 and 2.2 series kernels. */
7 /*****************************************************************************/
8 /* J PAGET 18/02/94 passage V2.4.2 ioctl avec code 2 reset to les interrupt */
9 /* ceci pour reseter correctement apres une sortie sauvage */
10 /* J PAGET 02/05/94 passage V2.4.3 dans le traitement de d'interruption, */
11 /* LoopCount n'etait pas initialise a 0. */
12 /* F LAFORSE 04/07/95 version V2.6.0 lecture bidon apres acces a une carte */
13 /* pour liberer le bus */
14 /* J.PAGET 19/11/95 version V2.6.1 Nombre, addresse,irq n'est plus configure */
15 /* et passe en argument a acinit, mais est scrute sur le bus pour s'adapter */
16 /* au nombre de cartes presentes sur le bus. IOCL code 6 affichait V2.4.3 */
17 /* F.LAFORSE 28/11/95 creation de fichiers acXX.o avec les differentes */
18 /* addresses de base des cartes, IOCTL 6 plus complet */
19 /* J.PAGET le 19/08/96 copie de la version V2.6 en V2.8.0 sans modification */
20 /* de code autre que le texte V2.6.1 en V2.8.0 */
21 /*****************************************************************************/
24 #include <linux/kernel.h>
25 #include <linux/module.h>
26 #include <linux/interrupt.h>
27 #include <linux/sched/signal.h>
28 #include <linux/slab.h>
29 #include <linux/errno.h>
30 #include <linux/mutex.h>
31 #include <linux/miscdevice.h>
32 #include <linux/pci.h>
33 #include <linux/wait.h>
34 #include <linux/init.h>
36 #include <linux/nospec.h>
39 #include <linux/uaccess.h>
44 /* NOTE: We use for loops with {write,read}b() instead of
45 memcpy_{from,to}io throughout this driver. This is because
46 the board doesn't correctly handle word accesses - only
53 #define MAX_BOARD 8 /* maximum of pc board possible */
54 #define MAX_ISA_BOARD 4
55 #define LEN_RAM_IO 0x800
58 #ifndef PCI_VENDOR_ID_APPLICOM
59 #define PCI_VENDOR_ID_APPLICOM 0x1389
60 #define PCI_DEVICE_ID_APPLICOM_PCIGENERIC 0x0001
61 #define PCI_DEVICE_ID_APPLICOM_PCI2000IBS_CAN 0x0002
62 #define PCI_DEVICE_ID_APPLICOM_PCI2000PFB 0x0003
65 static DEFINE_MUTEX(ac_mutex
);
66 static char *applicom_pci_devnames
[] = {
68 "PCI2000IBS / PCI2000CAN",
72 static const struct pci_device_id applicom_pci_tbl
[] = {
73 { PCI_VDEVICE(APPLICOM
, PCI_DEVICE_ID_APPLICOM_PCIGENERIC
) },
74 { PCI_VDEVICE(APPLICOM
, PCI_DEVICE_ID_APPLICOM_PCI2000IBS_CAN
) },
75 { PCI_VDEVICE(APPLICOM
, PCI_DEVICE_ID_APPLICOM_PCI2000PFB
) },
78 MODULE_DEVICE_TABLE(pci
, applicom_pci_tbl
);
80 MODULE_AUTHOR("David Woodhouse & Applicom International");
81 MODULE_DESCRIPTION("Driver for Applicom Profibus card");
82 MODULE_LICENSE("GPL");
83 MODULE_ALIAS_MISCDEV(AC_MINOR
);
85 MODULE_SUPPORTED_DEVICE("ac");
88 static struct applicom_board
{
91 wait_queue_head_t FlagSleepSend
;
96 static unsigned int irq
= 0; /* interrupt number IRQ */
97 static unsigned long mem
= 0; /* physical segment of board */
99 module_param_hw(irq
, uint
, irq
, 0);
100 MODULE_PARM_DESC(irq
, "IRQ of the Applicom board");
101 module_param_hw(mem
, ulong
, iomem
, 0);
102 MODULE_PARM_DESC(mem
, "Shared Memory Address of Applicom board");
104 static unsigned int numboards
; /* number of installed boards */
105 static volatile unsigned char Dummy
;
106 static DECLARE_WAIT_QUEUE_HEAD(FlagSleepRec
);
107 static unsigned int WriteErrorCount
; /* number of write error */
108 static unsigned int ReadErrorCount
; /* number of read error */
109 static unsigned int DeviceErrorCount
; /* number of device error */
111 static ssize_t
ac_read (struct file
*, char __user
*, size_t, loff_t
*);
112 static ssize_t
ac_write (struct file
*, const char __user
*, size_t, loff_t
*);
113 static long ac_ioctl(struct file
*, unsigned int, unsigned long);
114 static irqreturn_t
ac_interrupt(int, void *);
116 static const struct file_operations ac_fops
= {
117 .owner
= THIS_MODULE
,
121 .unlocked_ioctl
= ac_ioctl
,
124 static struct miscdevice ac_miscdev
= {
130 static int dummy
; /* dev_id for request_irq() */
132 static int ac_register_board(unsigned long physloc
, void __iomem
*loc
,
133 unsigned char boardno
)
135 volatile unsigned char byte_reset_it
;
137 if((readb(loc
+ CONF_END_TEST
) != 0x00) ||
138 (readb(loc
+ CONF_END_TEST
+ 1) != 0x55) ||
139 (readb(loc
+ CONF_END_TEST
+ 2) != 0xAA) ||
140 (readb(loc
+ CONF_END_TEST
+ 3) != 0xFF))
144 boardno
= readb(loc
+ NUMCARD_OWNER_TO_PC
);
146 if (!boardno
|| boardno
> MAX_BOARD
) {
147 printk(KERN_WARNING
"Board #%d (at 0x%lx) is out of range (1 <= x <= %d).\n",
148 boardno
, physloc
, MAX_BOARD
);
152 if (apbs
[boardno
- 1].RamIO
) {
153 printk(KERN_WARNING
"Board #%d (at 0x%lx) conflicts with previous board #%d (at 0x%lx)\n",
154 boardno
, physloc
, boardno
, apbs
[boardno
-1].PhysIO
);
160 apbs
[boardno
].PhysIO
= physloc
;
161 apbs
[boardno
].RamIO
= loc
;
162 init_waitqueue_head(&apbs
[boardno
].FlagSleepSend
);
163 spin_lock_init(&apbs
[boardno
].mutex
);
164 byte_reset_it
= readb(loc
+ RAM_IT_TO_PC
);
170 static void __exit
applicom_exit(void)
174 misc_deregister(&ac_miscdev
);
176 for (i
= 0; i
< MAX_BOARD
; i
++) {
182 free_irq(apbs
[i
].irq
, &dummy
);
184 iounmap(apbs
[i
].RamIO
);
188 static int __init
applicom_init(void)
191 struct pci_dev
*dev
= NULL
;
195 printk(KERN_INFO
"Applicom driver: $Id: ac.c,v 1.30 2000/03/22 16:03:57 dwmw2 Exp $\n");
197 /* No mem and irq given - check for a PCI card */
199 while ( (dev
= pci_get_class(PCI_CLASS_OTHERS
<< 16, dev
))) {
201 if (!pci_match_id(applicom_pci_tbl
, dev
))
204 if (pci_enable_device(dev
))
207 RamIO
= ioremap_nocache(pci_resource_start(dev
, 0), LEN_RAM_IO
);
210 printk(KERN_INFO
"ac.o: Failed to ioremap PCI memory "
212 (unsigned long long)pci_resource_start(dev
, 0));
213 pci_disable_device(dev
);
217 printk(KERN_INFO
"Applicom %s found at mem 0x%llx, irq %d\n",
218 applicom_pci_devnames
[dev
->device
-1],
219 (unsigned long long)pci_resource_start(dev
, 0),
222 boardno
= ac_register_board(pci_resource_start(dev
, 0),
225 printk(KERN_INFO
"ac.o: PCI Applicom device doesn't have correct signature.\n");
227 pci_disable_device(dev
);
231 if (request_irq(dev
->irq
, &ac_interrupt
, IRQF_SHARED
, "Applicom PCI", &dummy
)) {
232 printk(KERN_INFO
"Could not allocate IRQ %d for PCI Applicom device.\n", dev
->irq
);
234 pci_disable_device(dev
);
235 apbs
[boardno
- 1].RamIO
= NULL
;
239 /* Enable interrupts. */
241 writeb(0x40, apbs
[boardno
- 1].RamIO
+ RAM_IT_FROM_PC
);
243 apbs
[boardno
- 1].irq
= dev
->irq
;
246 /* Finished with PCI cards. If none registered,
247 * and there was no mem/irq specified, exit */
253 printk(KERN_INFO
"ac.o: No PCI boards found.\n");
254 printk(KERN_INFO
"ac.o: For an ISA board you must supply memory and irq parameters.\n");
259 /* Now try the specified ISA cards */
261 for (i
= 0; i
< MAX_ISA_BOARD
; i
++) {
262 RamIO
= ioremap_nocache(mem
+ (LEN_RAM_IO
* i
), LEN_RAM_IO
);
265 printk(KERN_INFO
"ac.o: Failed to ioremap the ISA card's memory space (slot #%d)\n", i
+ 1);
269 if (!(boardno
= ac_register_board((unsigned long)mem
+ (LEN_RAM_IO
*i
),
275 printk(KERN_NOTICE
"Applicom ISA card found at mem 0x%lx, irq %d\n", mem
+ (LEN_RAM_IO
*i
), irq
);
278 if (request_irq(irq
, &ac_interrupt
, IRQF_SHARED
, "Applicom ISA", &dummy
)) {
279 printk(KERN_WARNING
"Could not allocate IRQ %d for ISA Applicom device.\n", irq
);
281 apbs
[boardno
- 1].RamIO
= NULL
;
284 apbs
[boardno
- 1].irq
= irq
;
287 apbs
[boardno
- 1].irq
= 0;
293 printk(KERN_WARNING
"ac.o: No valid ISA Applicom boards found "
294 "at mem 0x%lx\n", mem
);
297 init_waitqueue_head(&FlagSleepRec
);
301 DeviceErrorCount
= 0;
304 ret
= misc_register(&ac_miscdev
);
306 printk(KERN_WARNING
"ac.o: Unable to register misc device\n");
309 for (i
= 0; i
< MAX_BOARD
; i
++) {
311 char boardname
[(SERIAL_NUMBER
- TYPE_CARD
) + 1];
316 for (serial
= 0; serial
< SERIAL_NUMBER
- TYPE_CARD
; serial
++)
317 boardname
[serial
] = readb(apbs
[i
].RamIO
+ TYPE_CARD
+ serial
);
319 boardname
[serial
] = 0;
322 printk(KERN_INFO
"Applicom board %d: %s, PROM V%d.%d",
324 (int)(readb(apbs
[i
].RamIO
+ VERS
) >> 4),
325 (int)(readb(apbs
[i
].RamIO
+ VERS
) & 0xF));
327 serial
= (readb(apbs
[i
].RamIO
+ SERIAL_NUMBER
) << 16) +
328 (readb(apbs
[i
].RamIO
+ SERIAL_NUMBER
+ 1) << 8) +
329 (readb(apbs
[i
].RamIO
+ SERIAL_NUMBER
+ 2) );
332 printk(" S/N %d\n", serial
);
343 for (i
= 0; i
< MAX_BOARD
; i
++) {
347 free_irq(apbs
[i
].irq
, &dummy
);
348 iounmap(apbs
[i
].RamIO
);
353 module_init(applicom_init
);
354 module_exit(applicom_exit
);
357 static ssize_t
ac_write(struct file
*file
, const char __user
*buf
, size_t count
, loff_t
* ppos
)
359 unsigned int NumCard
; /* Board number 1 -> 8 */
360 unsigned int IndexCard
; /* Index board number 0 -> 7 */
361 unsigned char TicCard
; /* Board TIC to send */
362 unsigned long flags
; /* Current priority */
363 struct st_ram_io st_loc
;
364 struct mailbox tmpmailbox
;
368 DECLARE_WAITQUEUE(wait
, current
);
370 if (count
!= sizeof(struct st_ram_io
) + sizeof(struct mailbox
)) {
371 static int warncount
= 5;
373 printk(KERN_INFO
"Hmmm. write() of Applicom card, length %zd != expected %zd\n",
374 count
, sizeof(struct st_ram_io
) + sizeof(struct mailbox
));
380 if(copy_from_user(&st_loc
, buf
, sizeof(struct st_ram_io
)))
383 if(copy_from_user(&tmpmailbox
, &buf
[sizeof(struct st_ram_io
)],
384 sizeof(struct mailbox
)))
387 NumCard
= st_loc
.num_card
; /* board number to send */
388 TicCard
= st_loc
.tic_des_from_pc
; /* tic number to send */
389 IndexCard
= NumCard
- 1;
391 if (IndexCard
>= MAX_BOARD
)
393 IndexCard
= array_index_nospec(IndexCard
, MAX_BOARD
);
395 if (!apbs
[IndexCard
].RamIO
)
399 printk("Write to applicom card #%d. struct st_ram_io follows:",
402 for (c
= 0; c
< sizeof(struct st_ram_io
);) {
404 printk("\n%5.5X: %2.2X", c
, ((unsigned char *) &st_loc
)[c
]);
406 for (c
++; c
% 8 && c
< sizeof(struct st_ram_io
); c
++) {
407 printk(" %2.2X", ((unsigned char *) &st_loc
)[c
]);
411 printk("\nstruct mailbox follows:");
413 for (c
= 0; c
< sizeof(struct mailbox
);) {
414 printk("\n%5.5X: %2.2X", c
, ((unsigned char *) &tmpmailbox
)[c
]);
416 for (c
++; c
% 8 && c
< sizeof(struct mailbox
); c
++) {
417 printk(" %2.2X", ((unsigned char *) &tmpmailbox
)[c
]);
424 spin_lock_irqsave(&apbs
[IndexCard
].mutex
, flags
);
426 /* Test octet ready correct */
427 if(readb(apbs
[IndexCard
].RamIO
+ DATA_FROM_PC_READY
) > 2) {
428 Dummy
= readb(apbs
[IndexCard
].RamIO
+ VERS
);
429 spin_unlock_irqrestore(&apbs
[IndexCard
].mutex
, flags
);
430 printk(KERN_WARNING
"APPLICOM driver write error board %d, DataFromPcReady = %d\n",
431 IndexCard
,(int)readb(apbs
[IndexCard
].RamIO
+ DATA_FROM_PC_READY
));
436 /* Place ourselves on the wait queue */
437 set_current_state(TASK_INTERRUPTIBLE
);
438 add_wait_queue(&apbs
[IndexCard
].FlagSleepSend
, &wait
);
440 /* Check whether the card is ready for us */
441 while (readb(apbs
[IndexCard
].RamIO
+ DATA_FROM_PC_READY
) != 0) {
442 Dummy
= readb(apbs
[IndexCard
].RamIO
+ VERS
);
443 /* It's busy. Sleep. */
445 spin_unlock_irqrestore(&apbs
[IndexCard
].mutex
, flags
);
447 if (signal_pending(current
)) {
448 remove_wait_queue(&apbs
[IndexCard
].FlagSleepSend
,
452 spin_lock_irqsave(&apbs
[IndexCard
].mutex
, flags
);
453 set_current_state(TASK_INTERRUPTIBLE
);
456 /* We may not have actually slept */
457 set_current_state(TASK_RUNNING
);
458 remove_wait_queue(&apbs
[IndexCard
].FlagSleepSend
, &wait
);
460 writeb(1, apbs
[IndexCard
].RamIO
+ DATA_FROM_PC_READY
);
462 /* Which is best - lock down the pages with rawio and then
463 copy directly, or use bounce buffers? For now we do the latter
464 because it works with 2.2 still */
466 unsigned char *from
= (unsigned char *) &tmpmailbox
;
467 void __iomem
*to
= apbs
[IndexCard
].RamIO
+ RAM_FROM_PC
;
470 for (c
= 0; c
< sizeof(struct mailbox
); c
++)
471 writeb(*(from
++), to
++);
474 writeb(0x20, apbs
[IndexCard
].RamIO
+ TIC_OWNER_FROM_PC
);
475 writeb(0xff, apbs
[IndexCard
].RamIO
+ NUMCARD_OWNER_FROM_PC
);
476 writeb(TicCard
, apbs
[IndexCard
].RamIO
+ TIC_DES_FROM_PC
);
477 writeb(NumCard
, apbs
[IndexCard
].RamIO
+ NUMCARD_DES_FROM_PC
);
478 writeb(2, apbs
[IndexCard
].RamIO
+ DATA_FROM_PC_READY
);
479 writeb(1, apbs
[IndexCard
].RamIO
+ RAM_IT_FROM_PC
);
480 Dummy
= readb(apbs
[IndexCard
].RamIO
+ VERS
);
481 spin_unlock_irqrestore(&apbs
[IndexCard
].mutex
, flags
);
485 static int do_ac_read(int IndexCard
, char __user
*buf
,
486 struct st_ram_io
*st_loc
, struct mailbox
*mailbox
)
488 void __iomem
*from
= apbs
[IndexCard
].RamIO
+ RAM_TO_PC
;
489 unsigned char *to
= (unsigned char *)mailbox
;
494 st_loc
->tic_owner_to_pc
= readb(apbs
[IndexCard
].RamIO
+ TIC_OWNER_TO_PC
);
495 st_loc
->numcard_owner_to_pc
= readb(apbs
[IndexCard
].RamIO
+ NUMCARD_OWNER_TO_PC
);
501 for (c
= 0; c
< sizeof(struct mailbox
); c
++)
502 *(to
++) = readb(from
++);
504 writeb(1, apbs
[IndexCard
].RamIO
+ ACK_FROM_PC_READY
);
505 writeb(1, apbs
[IndexCard
].RamIO
+ TYP_ACK_FROM_PC
);
506 writeb(IndexCard
+1, apbs
[IndexCard
].RamIO
+ NUMCARD_ACK_FROM_PC
);
507 writeb(readb(apbs
[IndexCard
].RamIO
+ TIC_OWNER_TO_PC
),
508 apbs
[IndexCard
].RamIO
+ TIC_ACK_FROM_PC
);
509 writeb(2, apbs
[IndexCard
].RamIO
+ ACK_FROM_PC_READY
);
510 writeb(0, apbs
[IndexCard
].RamIO
+ DATA_TO_PC_READY
);
511 writeb(2, apbs
[IndexCard
].RamIO
+ RAM_IT_FROM_PC
);
512 Dummy
= readb(apbs
[IndexCard
].RamIO
+ VERS
);
515 printk("Read from applicom card #%d. struct st_ram_io follows:", NumCard
);
517 for (c
= 0; c
< sizeof(struct st_ram_io
);) {
518 printk("\n%5.5X: %2.2X", c
, ((unsigned char *)st_loc
)[c
]);
520 for (c
++; c
% 8 && c
< sizeof(struct st_ram_io
); c
++) {
521 printk(" %2.2X", ((unsigned char *)st_loc
)[c
]);
525 printk("\nstruct mailbox follows:");
527 for (c
= 0; c
< sizeof(struct mailbox
);) {
528 printk("\n%5.5X: %2.2X", c
, ((unsigned char *)mailbox
)[c
]);
530 for (c
++; c
% 8 && c
< sizeof(struct mailbox
); c
++) {
531 printk(" %2.2X", ((unsigned char *)mailbox
)[c
]);
536 return (sizeof(struct st_ram_io
) + sizeof(struct mailbox
));
539 static ssize_t
ac_read (struct file
*filp
, char __user
*buf
, size_t count
, loff_t
*ptr
)
545 DECLARE_WAITQUEUE(wait
, current
);
549 /* No need to ratelimit this. Only root can trigger it anyway */
550 if (count
!= sizeof(struct st_ram_io
) + sizeof(struct mailbox
)) {
551 printk( KERN_WARNING
"Hmmm. read() of Applicom card, length %zd != expected %zd\n",
552 count
,sizeof(struct st_ram_io
) + sizeof(struct mailbox
));
557 /* Stick ourself on the wait queue */
558 set_current_state(TASK_INTERRUPTIBLE
);
559 add_wait_queue(&FlagSleepRec
, &wait
);
561 /* Scan each board, looking for one which has a packet for us */
562 for (i
=0; i
< MAX_BOARD
; i
++) {
565 spin_lock_irqsave(&apbs
[i
].mutex
, flags
);
567 tmp
= readb(apbs
[i
].RamIO
+ DATA_TO_PC_READY
);
570 struct st_ram_io st_loc
;
571 struct mailbox mailbox
;
573 /* Got a packet for us */
574 memset(&st_loc
, 0, sizeof(st_loc
));
575 ret
= do_ac_read(i
, buf
, &st_loc
, &mailbox
);
576 spin_unlock_irqrestore(&apbs
[i
].mutex
, flags
);
577 set_current_state(TASK_RUNNING
);
578 remove_wait_queue(&FlagSleepRec
, &wait
);
580 if (copy_to_user(buf
, &st_loc
, sizeof(st_loc
)))
582 if (copy_to_user(buf
+ sizeof(st_loc
), &mailbox
, sizeof(mailbox
)))
589 Dummy
= readb(apbs
[i
].RamIO
+ VERS
);
591 spin_unlock_irqrestore(&apbs
[i
].mutex
, flags
);
592 set_current_state(TASK_RUNNING
);
593 remove_wait_queue(&FlagSleepRec
, &wait
);
595 printk(KERN_WARNING
"APPLICOM driver read error board %d, DataToPcReady = %d\n",
596 i
,(int)readb(apbs
[i
].RamIO
+ DATA_TO_PC_READY
));
601 /* Nothing for us. Try the next board */
602 Dummy
= readb(apbs
[i
].RamIO
+ VERS
);
603 spin_unlock_irqrestore(&apbs
[i
].mutex
, flags
);
607 /* OK - No boards had data for us. Sleep now */
610 remove_wait_queue(&FlagSleepRec
, &wait
);
612 if (signal_pending(current
))
616 if (loopcount
++ > 2) {
617 printk(KERN_DEBUG
"Looping in ac_read. loopcount %d\n", loopcount
);
623 static irqreturn_t
ac_interrupt(int vec
, void *dev_instance
)
626 unsigned int FlagInt
;
627 unsigned int LoopCount
;
630 // printk("Applicom interrupt on IRQ %d occurred\n", vec);
636 for (i
= 0; i
< MAX_BOARD
; i
++) {
638 /* Skip if this board doesn't exist */
642 spin_lock(&apbs
[i
].mutex
);
644 /* Skip if this board doesn't want attention */
645 if(readb(apbs
[i
].RamIO
+ RAM_IT_TO_PC
) == 0) {
646 spin_unlock(&apbs
[i
].mutex
);
652 writeb(0, apbs
[i
].RamIO
+ RAM_IT_TO_PC
);
654 if (readb(apbs
[i
].RamIO
+ DATA_TO_PC_READY
) > 2) {
655 printk(KERN_WARNING
"APPLICOM driver interrupt err board %d, DataToPcReady = %d\n",
656 i
+1,(int)readb(apbs
[i
].RamIO
+ DATA_TO_PC_READY
));
660 if((readb(apbs
[i
].RamIO
+ DATA_FROM_PC_READY
) > 2) &&
661 (readb(apbs
[i
].RamIO
+ DATA_FROM_PC_READY
) != 6)) {
663 printk(KERN_WARNING
"APPLICOM driver interrupt err board %d, DataFromPcReady = %d\n",
664 i
+1,(int)readb(apbs
[i
].RamIO
+ DATA_FROM_PC_READY
));
668 if (readb(apbs
[i
].RamIO
+ DATA_TO_PC_READY
) == 2) { /* mailbox sent by the card ? */
669 if (waitqueue_active(&FlagSleepRec
)) {
670 wake_up_interruptible(&FlagSleepRec
);
674 if (readb(apbs
[i
].RamIO
+ DATA_FROM_PC_READY
) == 0) { /* ram i/o free for write by pc ? */
675 if (waitqueue_active(&apbs
[i
].FlagSleepSend
)) { /* process sleep during read ? */
676 wake_up_interruptible(&apbs
[i
].FlagSleepSend
);
679 Dummy
= readb(apbs
[i
].RamIO
+ VERS
);
681 if(readb(apbs
[i
].RamIO
+ RAM_IT_TO_PC
)) {
682 /* There's another int waiting on this card */
683 spin_unlock(&apbs
[i
].mutex
);
686 spin_unlock(&apbs
[i
].mutex
);
693 } while(LoopCount
< 2);
694 return IRQ_RETVAL(handled
);
699 static long ac_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
701 { /* @ ADG ou ATO selon le cas */
703 unsigned char IndexCard
;
706 static int warncount
= 10;
707 volatile unsigned char byte_reset_it
;
708 struct st_ram_io
*adgl
;
709 void __user
*argp
= (void __user
*)arg
;
711 /* In general, the device is only openable by root anyway, so we're not
712 particularly concerned that bogus ioctls can flood the console. */
714 adgl
= memdup_user(argp
, sizeof(struct st_ram_io
));
716 return PTR_ERR(adgl
);
718 mutex_lock(&ac_mutex
);
719 IndexCard
= adgl
->num_card
-1;
721 if (cmd
!= 6 && IndexCard
>= MAX_BOARD
)
723 IndexCard
= array_index_nospec(IndexCard
, MAX_BOARD
);
725 if (cmd
!= 6 && !apbs
[IndexCard
].RamIO
)
731 pmem
= apbs
[IndexCard
].RamIO
;
732 for (i
= 0; i
< sizeof(struct st_ram_io
); i
++)
733 ((unsigned char *)adgl
)[i
]=readb(pmem
++);
734 if (copy_to_user(argp
, adgl
, sizeof(struct st_ram_io
)))
738 pmem
= apbs
[IndexCard
].RamIO
+ CONF_END_TEST
;
739 for (i
= 0; i
< 4; i
++)
740 adgl
->conf_end_test
[i
] = readb(pmem
++);
741 for (i
= 0; i
< 2; i
++)
742 adgl
->error_code
[i
] = readb(pmem
++);
743 for (i
= 0; i
< 4; i
++)
744 adgl
->parameter_error
[i
] = readb(pmem
++);
745 pmem
= apbs
[IndexCard
].RamIO
+ VERS
;
746 adgl
->vers
= readb(pmem
);
747 pmem
= apbs
[IndexCard
].RamIO
+ TYPE_CARD
;
748 for (i
= 0; i
< 20; i
++)
749 adgl
->reserv1
[i
] = readb(pmem
++);
750 *(int *)&adgl
->reserv1
[20] =
751 (readb(apbs
[IndexCard
].RamIO
+ SERIAL_NUMBER
) << 16) +
752 (readb(apbs
[IndexCard
].RamIO
+ SERIAL_NUMBER
+ 1) << 8) +
753 (readb(apbs
[IndexCard
].RamIO
+ SERIAL_NUMBER
+ 2) );
755 if (copy_to_user(argp
, adgl
, sizeof(struct st_ram_io
)))
759 pmem
= apbs
[IndexCard
].RamIO
+ CONF_END_TEST
;
760 for (i
= 0; i
< 10; i
++)
761 writeb(0xff, pmem
++);
762 writeb(adgl
->data_from_pc_ready
,
763 apbs
[IndexCard
].RamIO
+ DATA_FROM_PC_READY
);
765 writeb(1, apbs
[IndexCard
].RamIO
+ RAM_IT_FROM_PC
);
767 for (i
= 0; i
< MAX_BOARD
; i
++) {
769 byte_reset_it
= readb(apbs
[i
].RamIO
+ RAM_IT_TO_PC
);
774 pmem
= apbs
[IndexCard
].RamIO
+ TIC_DES_FROM_PC
;
775 writeb(adgl
->tic_des_from_pc
, pmem
);
778 pmem
= apbs
[IndexCard
].RamIO
+ TIC_OWNER_TO_PC
;
779 adgl
->tic_owner_to_pc
= readb(pmem
++);
780 adgl
->numcard_owner_to_pc
= readb(pmem
);
781 if (copy_to_user(argp
, adgl
,sizeof(struct st_ram_io
)))
785 writeb(adgl
->num_card
, apbs
[IndexCard
].RamIO
+ NUMCARD_OWNER_TO_PC
);
786 writeb(adgl
->num_card
, apbs
[IndexCard
].RamIO
+ NUMCARD_DES_FROM_PC
);
787 writeb(adgl
->num_card
, apbs
[IndexCard
].RamIO
+ NUMCARD_ACK_FROM_PC
);
788 writeb(4, apbs
[IndexCard
].RamIO
+ DATA_FROM_PC_READY
);
789 writeb(1, apbs
[IndexCard
].RamIO
+ RAM_IT_FROM_PC
);
792 printk(KERN_INFO
"APPLICOM driver release .... V2.8.0 ($Revision: 1.30 $)\n");
793 printk(KERN_INFO
"Number of installed boards . %d\n", (int) numboards
);
794 printk(KERN_INFO
"Segment of board ........... %X\n", (int) mem
);
795 printk(KERN_INFO
"Interrupt IRQ number ....... %d\n", (int) irq
);
796 for (i
= 0; i
< MAX_BOARD
; i
++) {
798 char boardname
[(SERIAL_NUMBER
- TYPE_CARD
) + 1];
803 for (serial
= 0; serial
< SERIAL_NUMBER
- TYPE_CARD
; serial
++)
804 boardname
[serial
] = readb(apbs
[i
].RamIO
+ TYPE_CARD
+ serial
);
805 boardname
[serial
] = 0;
807 printk(KERN_INFO
"Prom version board %d ....... V%d.%d %s",
809 (int)(readb(apbs
[i
].RamIO
+ VERS
) >> 4),
810 (int)(readb(apbs
[i
].RamIO
+ VERS
) & 0xF),
814 serial
= (readb(apbs
[i
].RamIO
+ SERIAL_NUMBER
) << 16) +
815 (readb(apbs
[i
].RamIO
+ SERIAL_NUMBER
+ 1) << 8) +
816 (readb(apbs
[i
].RamIO
+ SERIAL_NUMBER
+ 2) );
819 printk(" S/N %d\n", serial
);
823 if (DeviceErrorCount
!= 0)
824 printk(KERN_INFO
"DeviceErrorCount ........... %d\n", DeviceErrorCount
);
825 if (ReadErrorCount
!= 0)
826 printk(KERN_INFO
"ReadErrorCount ............. %d\n", ReadErrorCount
);
827 if (WriteErrorCount
!= 0)
828 printk(KERN_INFO
"WriteErrorCount ............ %d\n", WriteErrorCount
);
829 if (waitqueue_active(&FlagSleepRec
))
830 printk(KERN_INFO
"Process in read pending\n");
831 for (i
= 0; i
< MAX_BOARD
; i
++) {
832 if (apbs
[i
].RamIO
&& waitqueue_active(&apbs
[i
].FlagSleepSend
))
833 printk(KERN_INFO
"Process in write pending board %d\n",i
+1);
840 Dummy
= readb(apbs
[IndexCard
].RamIO
+ VERS
);
842 mutex_unlock(&ac_mutex
);
847 pr_warn("APPLICOM driver IOCTL, bad board number %d\n",
852 mutex_unlock(&ac_mutex
);