2 * linux/drivers/char/riscom.c -- RISCom/8 multiport serial driver.
4 * Copyright (C) 1994-1996 Dmitry Gorodchanin (pgmdsg@ibi.com)
6 * This code is loosely based on the Linux serial driver, written by
7 * Linus Torvalds, Theodore T'so and others. The RISCom/8 card
8 * programming info was obtained from various drivers for other OSes
9 * (FreeBSD, ISC, etc), but no source code from those drivers were
10 * directly included in this driver.
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
30 * Arnaldo Carvalho de Melo <acme@conectiva.com.br> - 27-Jun-2001
31 * - get rid of check_region and several cleanups
34 #include <linux/module.h>
37 #include <linux/kernel.h>
38 #include <linux/sched.h>
39 #include <linux/ioport.h>
40 #include <linux/interrupt.h>
41 #include <linux/errno.h>
42 #include <linux/tty.h>
44 #include <linux/serial.h>
45 #include <linux/fcntl.h>
46 #include <linux/major.h>
47 #include <linux/init.h>
48 #include <linux/delay.h>
49 #include <linux/tty_flip.h>
50 #include <linux/smp_lock.h>
51 #include <linux/spinlock.h>
52 #include <linux/device.h>
54 #include <linux/uaccess.h>
57 #include "riscom8_reg.h"
59 /* Am I paranoid or not ? ;-) */
60 #define RISCOM_PARANOIA_CHECK
63 * Crazy InteliCom/8 boards sometimes have swapped CTS & DSR signals.
64 * You can slightly speed up things by #undefing the following option,
65 * if you are REALLY sure that your board is correct one.
68 #define RISCOM_BRAIN_DAMAGED_CTS
71 * The following defines are mostly for testing purposes. But if you need
72 * some nice reporting in your syslog, you can define them also.
75 #undef RC_REPORT_OVERRUN
78 #define RISCOM_LEGAL_FLAGS \
79 (ASYNC_HUP_NOTIFY | ASYNC_SAK | ASYNC_SPLIT_TERMIOS | \
80 ASYNC_SPD_HI | ASYNC_SPEED_VHI | ASYNC_SESSION_LOCKOUT | \
81 ASYNC_PGRP_LOCKOUT | ASYNC_CALLOUT_NOHUP)
83 static struct tty_driver
*riscom_driver
;
85 static DEFINE_SPINLOCK(riscom_lock
);
87 static struct riscom_board rc_board
[RC_NBOARD
] = {
102 static struct riscom_port rc_port
[RC_NBOARD
* RC_NPORT
];
104 /* RISCom/8 I/O ports addresses (without address translation) */
105 static unsigned short rc_ioport
[] = {
107 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x09, 0x0a, 0x0b, 0x0c,
109 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x09, 0x0a, 0x0b, 0x0c, 0x10,
110 0x11, 0x12, 0x18, 0x28, 0x31, 0x32, 0x39, 0x3a, 0x40, 0x41, 0x61, 0x62,
111 0x63, 0x64, 0x6b, 0x70, 0x71, 0x78, 0x7a, 0x7b, 0x7f, 0x100, 0x101
114 #define RC_NIOPORT ARRAY_SIZE(rc_ioport)
117 static int rc_paranoia_check(struct riscom_port
const *port
,
118 char *name
, const char *routine
)
120 #ifdef RISCOM_PARANOIA_CHECK
121 static const char badmagic
[] = KERN_INFO
122 "rc: Warning: bad riscom port magic number for device %s in %s\n";
123 static const char badinfo
[] = KERN_INFO
124 "rc: Warning: null riscom port for device %s in %s\n";
127 printk(badinfo
, name
, routine
);
130 if (port
->magic
!= RISCOM8_MAGIC
) {
131 printk(badmagic
, name
, routine
);
140 * Service functions for RISCom/8 driver.
144 /* Get board number from pointer */
145 static inline int board_No(struct riscom_board
const *bp
)
147 return bp
- rc_board
;
150 /* Get port number from pointer */
151 static inline int port_No(struct riscom_port
const *port
)
153 return RC_PORT(port
- rc_port
);
156 /* Get pointer to board from pointer to port */
157 static inline struct riscom_board
*port_Board(struct riscom_port
const *port
)
159 return &rc_board
[RC_BOARD(port
- rc_port
)];
162 /* Input Byte from CL CD180 register */
163 static inline unsigned char rc_in(struct riscom_board
const *bp
,
166 return inb(bp
->base
+ RC_TO_ISA(reg
));
169 /* Output Byte to CL CD180 register */
170 static inline void rc_out(struct riscom_board
const *bp
, unsigned short reg
,
173 outb(val
, bp
->base
+ RC_TO_ISA(reg
));
176 /* Wait for Channel Command Register ready */
177 static void rc_wait_CCR(struct riscom_board
const *bp
)
181 /* FIXME: need something more descriptive then 100000 :) */
182 for (delay
= 100000; delay
; delay
--)
183 if (!rc_in(bp
, CD180_CCR
))
186 printk(KERN_INFO
"rc%d: Timeout waiting for CCR.\n", board_No(bp
));
190 * RISCom/8 probe functions.
193 static int rc_request_io_range(struct riscom_board
* const bp
)
197 for (i
= 0; i
< RC_NIOPORT
; i
++)
198 if (!request_region(RC_TO_ISA(rc_ioport
[i
]) + bp
->base
, 1,
204 printk(KERN_INFO
"rc%d: Skipping probe at 0x%03x. IO address in use.\n",
205 board_No(bp
), bp
->base
);
207 release_region(RC_TO_ISA(rc_ioport
[i
]) + bp
->base
, 1);
211 static void rc_release_io_range(struct riscom_board
* const bp
)
215 for (i
= 0; i
< RC_NIOPORT
; i
++)
216 release_region(RC_TO_ISA(rc_ioport
[i
]) + bp
->base
, 1);
219 /* Reset and setup CD180 chip */
220 static void __init
rc_init_CD180(struct riscom_board
const *bp
)
224 spin_lock_irqsave(&riscom_lock
, flags
);
226 rc_out(bp
, RC_CTOUT
, 0); /* Clear timeout */
227 rc_wait_CCR(bp
); /* Wait for CCR ready */
228 rc_out(bp
, CD180_CCR
, CCR_HARDRESET
); /* Reset CD180 chip */
229 spin_unlock_irqrestore(&riscom_lock
, flags
);
230 msleep(50); /* Delay 0.05 sec */
231 spin_lock_irqsave(&riscom_lock
, flags
);
232 rc_out(bp
, CD180_GIVR
, RC_ID
); /* Set ID for this chip */
233 rc_out(bp
, CD180_GICR
, 0); /* Clear all bits */
234 rc_out(bp
, CD180_PILR1
, RC_ACK_MINT
); /* Prio for modem intr */
235 rc_out(bp
, CD180_PILR2
, RC_ACK_TINT
); /* Prio for tx intr */
236 rc_out(bp
, CD180_PILR3
, RC_ACK_RINT
); /* Prio for rx intr */
238 /* Setting up prescaler. We need 4 ticks per 1 ms */
239 rc_out(bp
, CD180_PPRH
, (RC_OSCFREQ
/(1000000/RISCOM_TPS
)) >> 8);
240 rc_out(bp
, CD180_PPRL
, (RC_OSCFREQ
/(1000000/RISCOM_TPS
)) & 0xff);
242 spin_unlock_irqrestore(&riscom_lock
, flags
);
245 /* Main probing routine, also sets irq. */
246 static int __init
rc_probe(struct riscom_board
*bp
)
248 unsigned char val1
, val2
;
254 if (rc_request_io_range(bp
))
257 /* Are the I/O ports here ? */
258 rc_out(bp
, CD180_PPRL
, 0x5a);
260 val1
= rc_in(bp
, CD180_PPRL
);
261 rc_out(bp
, CD180_PPRL
, 0xa5);
263 val2
= rc_in(bp
, CD180_PPRL
);
265 if ((val1
!= 0x5a) || (val2
!= 0xa5)) {
266 printk(KERN_ERR
"rc%d: RISCom/8 Board at 0x%03x not found.\n",
267 board_No(bp
), bp
->base
);
271 /* It's time to find IRQ for this board */
272 for (retries
= 0; retries
< 5 && irqs
<= 0; retries
++) {
273 irqs
= probe_irq_on();
274 rc_init_CD180(bp
); /* Reset CD180 chip */
275 rc_out(bp
, CD180_CAR
, 2); /* Select port 2 */
277 rc_out(bp
, CD180_CCR
, CCR_TXEN
); /* Enable transmitter */
278 rc_out(bp
, CD180_IER
, IER_TXRDY
);/* Enable tx empty intr */
280 irqs
= probe_irq_off(irqs
);
281 val1
= rc_in(bp
, RC_BSR
); /* Get Board Status reg */
282 val2
= rc_in(bp
, RC_ACK_TINT
); /* ACK interrupt */
283 rc_init_CD180(bp
); /* Reset CD180 again */
285 if ((val1
& RC_BSR_TINT
) || (val2
!= (RC_ID
| GIVR_IT_TX
))) {
286 printk(KERN_ERR
"rc%d: RISCom/8 Board at 0x%03x not "
287 "found.\n", board_No(bp
), bp
->base
);
293 printk(KERN_ERR
"rc%d: Can't find IRQ for RISCom/8 board "
294 "at 0x%03x.\n", board_No(bp
), bp
->base
);
298 bp
->flags
|= RC_BOARD_PRESENT
;
300 printk(KERN_INFO
"rc%d: RISCom/8 Rev. %c board detected at "
303 (rc_in(bp
, CD180_GFRCR
) & 0x0f) + 'A', /* Board revision */
308 rc_release_io_range(bp
);
314 * Interrupt processing routines.
318 static struct riscom_port
*rc_get_port(struct riscom_board
const *bp
,
319 unsigned char const *what
)
321 unsigned char channel
;
322 struct riscom_port
*port
;
324 channel
= rc_in(bp
, CD180_GICR
) >> GICR_CHAN_OFF
;
325 if (channel
< CD180_NCH
) {
326 port
= &rc_port
[board_No(bp
) * RC_NPORT
+ channel
];
327 if (port
->port
.flags
& ASYNC_INITIALIZED
)
330 printk(KERN_ERR
"rc%d: %s interrupt from invalid port %d\n",
331 board_No(bp
), what
, channel
);
335 static void rc_receive_exc(struct riscom_board
const *bp
)
337 struct riscom_port
*port
;
338 struct tty_struct
*tty
;
339 unsigned char status
;
340 unsigned char ch
, flag
;
342 port
= rc_get_port(bp
, "Receive");
346 tty
= tty_port_tty_get(&port
->port
);
348 #ifdef RC_REPORT_OVERRUN
349 status
= rc_in(bp
, CD180_RCSR
);
350 if (status
& RCSR_OE
)
352 status
&= port
->mark_mask
;
354 status
= rc_in(bp
, CD180_RCSR
) & port
->mark_mask
;
356 ch
= rc_in(bp
, CD180_RDR
);
359 if (status
& RCSR_TOUT
) {
360 printk(KERN_WARNING
"rc%d: port %d: Receiver timeout. "
361 "Hardware problems ?\n",
362 board_No(bp
), port_No(port
));
365 } else if (status
& RCSR_BREAK
) {
366 printk(KERN_INFO
"rc%d: port %d: Handling break...\n",
367 board_No(bp
), port_No(port
));
369 if (tty
&& (port
->port
.flags
& ASYNC_SAK
))
372 } else if (status
& RCSR_PE
)
375 else if (status
& RCSR_FE
)
378 else if (status
& RCSR_OE
)
384 tty_insert_flip_char(tty
, ch
, flag
);
385 tty_flip_buffer_push(tty
);
391 static void rc_receive(struct riscom_board
const *bp
)
393 struct riscom_port
*port
;
394 struct tty_struct
*tty
;
397 port
= rc_get_port(bp
, "Receive");
401 tty
= tty_port_tty_get(&port
->port
);
403 count
= rc_in(bp
, CD180_RDCR
);
405 #ifdef RC_REPORT_FIFO
406 port
->hits
[count
> 8 ? 9 : count
]++;
410 u8 ch
= rc_in(bp
, CD180_RDR
);
412 tty_insert_flip_char(tty
, ch
, TTY_NORMAL
);
415 tty_flip_buffer_push(tty
);
420 static void rc_transmit(struct riscom_board
const *bp
)
422 struct riscom_port
*port
;
423 struct tty_struct
*tty
;
426 port
= rc_get_port(bp
, "Transmit");
430 tty
= tty_port_tty_get(&port
->port
);
432 if (port
->IER
& IER_TXEMPTY
) {
434 rc_out(bp
, CD180_CAR
, port_No(port
));
435 port
->IER
&= ~IER_TXEMPTY
;
436 rc_out(bp
, CD180_IER
, port
->IER
);
440 if ((port
->xmit_cnt
<= 0 && !port
->break_length
)
441 || (tty
&& (tty
->stopped
|| tty
->hw_stopped
))) {
442 rc_out(bp
, CD180_CAR
, port_No(port
));
443 port
->IER
&= ~IER_TXRDY
;
444 rc_out(bp
, CD180_IER
, port
->IER
);
448 if (port
->break_length
) {
449 if (port
->break_length
> 0) {
450 if (port
->COR2
& COR2_ETC
) {
451 rc_out(bp
, CD180_TDR
, CD180_C_ESC
);
452 rc_out(bp
, CD180_TDR
, CD180_C_SBRK
);
453 port
->COR2
&= ~COR2_ETC
;
455 count
= min_t(int, port
->break_length
, 0xff);
456 rc_out(bp
, CD180_TDR
, CD180_C_ESC
);
457 rc_out(bp
, CD180_TDR
, CD180_C_DELAY
);
458 rc_out(bp
, CD180_TDR
, count
);
459 port
->break_length
-= count
;
460 if (port
->break_length
== 0)
461 port
->break_length
--;
463 rc_out(bp
, CD180_TDR
, CD180_C_ESC
);
464 rc_out(bp
, CD180_TDR
, CD180_C_EBRK
);
465 rc_out(bp
, CD180_COR2
, port
->COR2
);
467 rc_out(bp
, CD180_CCR
, CCR_CORCHG2
);
468 port
->break_length
= 0;
475 rc_out(bp
, CD180_TDR
, port
->port
.xmit_buf
[port
->xmit_tail
++]);
476 port
->xmit_tail
= port
->xmit_tail
& (SERIAL_XMIT_SIZE
-1);
477 if (--port
->xmit_cnt
<= 0)
479 } while (--count
> 0);
481 if (port
->xmit_cnt
<= 0) {
482 rc_out(bp
, CD180_CAR
, port_No(port
));
483 port
->IER
&= ~IER_TXRDY
;
484 rc_out(bp
, CD180_IER
, port
->IER
);
486 if (tty
&& port
->xmit_cnt
<= port
->wakeup_chars
)
492 static void rc_check_modem(struct riscom_board
const *bp
)
494 struct riscom_port
*port
;
495 struct tty_struct
*tty
;
498 port
= rc_get_port(bp
, "Modem");
502 tty
= tty_port_tty_get(&port
->port
);
504 mcr
= rc_in(bp
, CD180_MCR
);
505 if (mcr
& MCR_CDCHG
) {
506 if (rc_in(bp
, CD180_MSVR
) & MSVR_CD
)
507 wake_up_interruptible(&port
->port
.open_wait
);
512 #ifdef RISCOM_BRAIN_DAMAGED_CTS
513 if (mcr
& MCR_CTSCHG
) {
514 if (rc_in(bp
, CD180_MSVR
) & MSVR_CTS
) {
515 port
->IER
|= IER_TXRDY
;
518 if (port
->xmit_cnt
<= port
->wakeup_chars
)
524 port
->IER
&= ~IER_TXRDY
;
526 rc_out(bp
, CD180_IER
, port
->IER
);
528 if (mcr
& MCR_DSRCHG
) {
529 if (rc_in(bp
, CD180_MSVR
) & MSVR_DSR
) {
530 port
->IER
|= IER_TXRDY
;
533 if (port
->xmit_cnt
<= port
->wakeup_chars
)
539 port
->IER
&= ~IER_TXRDY
;
541 rc_out(bp
, CD180_IER
, port
->IER
);
543 #endif /* RISCOM_BRAIN_DAMAGED_CTS */
545 /* Clear change bits */
546 rc_out(bp
, CD180_MCR
, 0);
550 /* The main interrupt processing routine */
551 static irqreturn_t
rc_interrupt(int dummy
, void *dev_id
)
553 unsigned char status
;
555 struct riscom_board
*bp
= dev_id
;
556 unsigned long loop
= 0;
559 if (!(bp
->flags
& RC_BOARD_ACTIVE
))
562 while ((++loop
< 16) && ((status
= ~(rc_in(bp
, RC_BSR
))) &
563 (RC_BSR_TOUT
| RC_BSR_TINT
|
564 RC_BSR_MINT
| RC_BSR_RINT
))) {
566 if (status
& RC_BSR_TOUT
)
567 printk(KERN_WARNING
"rc%d: Got timeout. Hardware "
568 "error?\n", board_No(bp
));
569 else if (status
& RC_BSR_RINT
) {
570 ack
= rc_in(bp
, RC_ACK_RINT
);
571 if (ack
== (RC_ID
| GIVR_IT_RCV
))
573 else if (ack
== (RC_ID
| GIVR_IT_REXC
))
576 printk(KERN_WARNING
"rc%d: Bad receive ack "
579 } else if (status
& RC_BSR_TINT
) {
580 ack
= rc_in(bp
, RC_ACK_TINT
);
581 if (ack
== (RC_ID
| GIVR_IT_TX
))
584 printk(KERN_WARNING
"rc%d: Bad transmit ack "
587 } else /* if (status & RC_BSR_MINT) */ {
588 ack
= rc_in(bp
, RC_ACK_MINT
);
589 if (ack
== (RC_ID
| GIVR_IT_MODEM
))
592 printk(KERN_WARNING
"rc%d: Bad modem ack "
596 rc_out(bp
, CD180_EOIR
, 0); /* Mark end of interrupt */
597 rc_out(bp
, RC_CTOUT
, 0); /* Clear timeout flag */
599 return IRQ_RETVAL(handled
);
603 * Routines for open & close processing.
606 /* Called with disabled interrupts */
607 static int rc_setup_board(struct riscom_board
*bp
)
611 if (bp
->flags
& RC_BOARD_ACTIVE
)
614 error
= request_irq(bp
->irq
, rc_interrupt
, IRQF_DISABLED
,
619 rc_out(bp
, RC_CTOUT
, 0); /* Just in case */
621 rc_out(bp
, RC_DTR
, bp
->DTR
); /* Drop DTR on all ports */
623 bp
->flags
|= RC_BOARD_ACTIVE
;
628 /* Called with disabled interrupts */
629 static void rc_shutdown_board(struct riscom_board
*bp
)
631 if (!(bp
->flags
& RC_BOARD_ACTIVE
))
634 bp
->flags
&= ~RC_BOARD_ACTIVE
;
636 free_irq(bp
->irq
, NULL
);
639 rc_out(bp
, RC_DTR
, bp
->DTR
); /* Drop DTR on all ports */
644 * Setting up port characteristics.
645 * Must be called with disabled interrupts
647 static void rc_change_speed(struct tty_struct
*tty
, struct riscom_board
*bp
,
648 struct riscom_port
*port
)
652 unsigned char cor1
= 0, cor3
= 0;
653 unsigned char mcor1
= 0, mcor2
= 0;
657 port
->MSVR
= MSVR_RTS
;
659 baud
= tty_get_baud_rate(tty
);
661 /* Select port on the board */
662 rc_out(bp
, CD180_CAR
, port_No(port
));
665 /* Drop DTR & exit */
666 bp
->DTR
|= (1u << port_No(port
));
667 rc_out(bp
, RC_DTR
, bp
->DTR
);
671 bp
->DTR
&= ~(1u << port_No(port
));
672 rc_out(bp
, RC_DTR
, bp
->DTR
);
676 * Now we must calculate some speed depended things
679 /* Set baud rate for port */
680 tmp
= (((RC_OSCFREQ
+ baud
/2) / baud
+
681 CD180_TPC
/2) / CD180_TPC
);
683 rc_out(bp
, CD180_RBPRH
, (tmp
>> 8) & 0xff);
684 rc_out(bp
, CD180_TBPRH
, (tmp
>> 8) & 0xff);
685 rc_out(bp
, CD180_RBPRL
, tmp
& 0xff);
686 rc_out(bp
, CD180_TBPRL
, tmp
& 0xff);
688 baud
= (baud
+ 5) / 10; /* Estimated CPS */
690 /* Two timer ticks seems enough to wakeup something like SLIP driver */
691 tmp
= ((baud
+ HZ
/2) / HZ
) * 2 - CD180_NFIFO
;
692 port
->wakeup_chars
= (tmp
< 0) ? 0 : ((tmp
>= SERIAL_XMIT_SIZE
) ?
693 SERIAL_XMIT_SIZE
- 1 : tmp
);
695 /* Receiver timeout will be transmission time for 1.5 chars */
696 tmp
= (RISCOM_TPS
+ RISCOM_TPS
/2 + baud
/2) / baud
;
697 tmp
= (tmp
> 0xff) ? 0xff : tmp
;
698 rc_out(bp
, CD180_RTPR
, tmp
);
700 switch (C_CSIZE(tty
)) {
719 cor1
|= COR1_NORMPAR
;
723 cor1
&= ~COR1_IGNORE
;
725 /* Set marking of some errors */
726 port
->mark_mask
= RCSR_OE
| RCSR_TOUT
;
728 port
->mark_mask
|= RCSR_FE
| RCSR_PE
;
729 if (I_BRKINT(tty
) || I_PARMRK(tty
))
730 port
->mark_mask
|= RCSR_BREAK
;
732 port
->mark_mask
&= ~(RCSR_FE
| RCSR_PE
);
734 port
->mark_mask
&= ~RCSR_BREAK
;
736 /* Real raw mode. Ignore all */
737 port
->mark_mask
&= ~RCSR_OE
;
739 /* Enable Hardware Flow Control */
740 if (C_CRTSCTS(tty
)) {
741 #ifdef RISCOM_BRAIN_DAMAGED_CTS
742 port
->IER
|= IER_DSR
| IER_CTS
;
743 mcor1
|= MCOR1_DSRZD
| MCOR1_CTSZD
;
744 mcor2
|= MCOR2_DSROD
| MCOR2_CTSOD
;
745 tty
->hw_stopped
= !(rc_in(bp
, CD180_MSVR
) &
746 (MSVR_CTS
|MSVR_DSR
));
748 port
->COR2
|= COR2_CTSAE
;
751 /* Enable Software Flow Control. FIXME: I'm not sure about this */
752 /* Some people reported that it works, but I still doubt */
754 port
->COR2
|= COR2_TXIBE
;
755 cor3
|= (COR3_FCT
| COR3_SCDE
);
757 port
->COR2
|= COR2_IXM
;
758 rc_out(bp
, CD180_SCHR1
, START_CHAR(tty
));
759 rc_out(bp
, CD180_SCHR2
, STOP_CHAR(tty
));
760 rc_out(bp
, CD180_SCHR3
, START_CHAR(tty
));
761 rc_out(bp
, CD180_SCHR4
, STOP_CHAR(tty
));
763 if (!C_CLOCAL(tty
)) {
764 /* Enable CD check */
771 /* Enable receiver */
772 port
->IER
|= IER_RXD
;
774 /* Set input FIFO size (1-8 bytes) */
775 cor3
|= RISCOM_RXFIFO
;
776 /* Setting up CD180 channel registers */
777 rc_out(bp
, CD180_COR1
, cor1
);
778 rc_out(bp
, CD180_COR2
, port
->COR2
);
779 rc_out(bp
, CD180_COR3
, cor3
);
780 /* Make CD180 know about registers change */
782 rc_out(bp
, CD180_CCR
, CCR_CORCHG1
| CCR_CORCHG2
| CCR_CORCHG3
);
783 /* Setting up modem option registers */
784 rc_out(bp
, CD180_MCOR1
, mcor1
);
785 rc_out(bp
, CD180_MCOR2
, mcor2
);
786 /* Enable CD180 transmitter & receiver */
788 rc_out(bp
, CD180_CCR
, CCR_TXEN
| CCR_RXEN
);
789 /* Enable interrupts */
790 rc_out(bp
, CD180_IER
, port
->IER
);
791 /* And finally set RTS on */
792 rc_out(bp
, CD180_MSVR
, port
->MSVR
);
795 /* Must be called with interrupts enabled */
796 static int rc_activate_port(struct tty_port
*port
, struct tty_struct
*tty
)
798 struct riscom_port
*rp
= container_of(port
, struct riscom_port
, port
);
799 struct riscom_board
*bp
= port_Board(rp
);
802 if (tty_port_alloc_xmit_buf(port
) < 0)
805 spin_lock_irqsave(&riscom_lock
, flags
);
807 clear_bit(TTY_IO_ERROR
, &tty
->flags
);
809 rp
->xmit_cnt
= rp
->xmit_head
= rp
->xmit_tail
= 0;
810 rc_change_speed(tty
, bp
, rp
);
811 spin_unlock_irqrestore(&riscom_lock
, flags
);
815 /* Must be called with interrupts disabled */
816 static void rc_shutdown_port(struct tty_struct
*tty
,
817 struct riscom_board
*bp
, struct riscom_port
*port
)
819 #ifdef RC_REPORT_OVERRUN
820 printk(KERN_INFO
"rc%d: port %d: Total %ld overruns were detected.\n",
821 board_No(bp
), port_No(port
), port
->overrun
);
823 #ifdef RC_REPORT_FIFO
827 printk(KERN_INFO
"rc%d: port %d: FIFO hits [ ",
828 board_No(bp
), port_No(port
));
829 for (i
= 0; i
< 10; i
++)
830 printk("%ld ", port
->hits
[i
]);
834 tty_port_free_xmit_buf(&port
->port
);
837 rc_out(bp
, CD180_CAR
, port_No(port
));
840 rc_out(bp
, CD180_CCR
, CCR_SOFTRESET
);
841 /* Disable all interrupts from this port */
843 rc_out(bp
, CD180_IER
, port
->IER
);
845 set_bit(TTY_IO_ERROR
, &tty
->flags
);
847 if (--bp
->count
< 0) {
848 printk(KERN_INFO
"rc%d: rc_shutdown_port: "
849 "bad board count: %d\n",
850 board_No(bp
), bp
->count
);
854 * If this is the last opened port on the board
855 * shutdown whole board
858 rc_shutdown_board(bp
);
861 static int carrier_raised(struct tty_port
*port
)
863 struct riscom_port
*p
= container_of(port
, struct riscom_port
, port
);
864 struct riscom_board
*bp
= port_Board(p
);
868 spin_lock_irqsave(&riscom_lock
, flags
);
869 rc_out(bp
, CD180_CAR
, port_No(p
));
870 CD
= rc_in(bp
, CD180_MSVR
) & MSVR_CD
;
871 rc_out(bp
, CD180_MSVR
, MSVR_RTS
);
872 bp
->DTR
&= ~(1u << port_No(p
));
873 rc_out(bp
, RC_DTR
, bp
->DTR
);
874 spin_unlock_irqrestore(&riscom_lock
, flags
);
878 static void dtr_rts(struct tty_port
*port
, int onoff
)
880 struct riscom_port
*p
= container_of(port
, struct riscom_port
, port
);
881 struct riscom_board
*bp
= port_Board(p
);
884 spin_lock_irqsave(&riscom_lock
, flags
);
885 bp
->DTR
&= ~(1u << port_No(p
));
887 bp
->DTR
|= (1u << port_No(p
));
888 rc_out(bp
, RC_DTR
, bp
->DTR
);
889 spin_unlock_irqrestore(&riscom_lock
, flags
);
892 static int rc_open(struct tty_struct
*tty
, struct file
*filp
)
896 struct riscom_port
*port
;
897 struct riscom_board
*bp
;
899 board
= RC_BOARD(tty
->index
);
900 if (board
>= RC_NBOARD
|| !(rc_board
[board
].flags
& RC_BOARD_PRESENT
))
903 bp
= &rc_board
[board
];
904 port
= rc_port
+ board
* RC_NPORT
+ RC_PORT(tty
->index
);
905 if (rc_paranoia_check(port
, tty
->name
, "rc_open"))
908 error
= rc_setup_board(bp
);
912 return tty_port_open(&port
->port
, tty
, filp
);
915 static void rc_flush_buffer(struct tty_struct
*tty
)
917 struct riscom_port
*port
= tty
->driver_data
;
920 if (rc_paranoia_check(port
, tty
->name
, "rc_flush_buffer"))
923 spin_lock_irqsave(&riscom_lock
, flags
);
924 port
->xmit_cnt
= port
->xmit_head
= port
->xmit_tail
= 0;
925 spin_unlock_irqrestore(&riscom_lock
, flags
);
930 static void rc_close_port(struct tty_port
*port
)
933 struct riscom_port
*rp
= container_of(port
, struct riscom_port
, port
);
934 struct riscom_board
*bp
= port_Board(rp
);
935 unsigned long timeout
;
938 * At this point we stop accepting input. To do this, we
939 * disable the receive line status interrupts, and tell the
940 * interrupt driver to stop checking the data ready bit in the
941 * line status register.
944 spin_lock_irqsave(&riscom_lock
, flags
);
947 rp
->IER
&= ~IER_TXRDY
;
948 rp
->IER
|= IER_TXEMPTY
;
949 rc_out(bp
, CD180_CAR
, port_No(rp
));
950 rc_out(bp
, CD180_IER
, rp
->IER
);
952 * Before we drop DTR, make sure the UART transmitter
953 * has completely drained; this is especially
954 * important if there is a transmit FIFO!
956 timeout
= jiffies
+ HZ
;
957 while (rp
->IER
& IER_TXEMPTY
) {
958 spin_unlock_irqrestore(&riscom_lock
, flags
);
959 msleep_interruptible(jiffies_to_msecs(rp
->timeout
));
960 spin_lock_irqsave(&riscom_lock
, flags
);
961 if (time_after(jiffies
, timeout
))
964 rc_shutdown_port(port
->tty
, bp
, rp
);
965 spin_unlock_irqrestore(&riscom_lock
, flags
);
968 static void rc_close(struct tty_struct
*tty
, struct file
*filp
)
970 struct riscom_port
*port
= tty
->driver_data
;
972 if (!port
|| rc_paranoia_check(port
, tty
->name
, "close"))
974 tty_port_close(&port
->port
, tty
, filp
);
977 static int rc_write(struct tty_struct
*tty
,
978 const unsigned char *buf
, int count
)
980 struct riscom_port
*port
= tty
->driver_data
;
981 struct riscom_board
*bp
;
985 if (rc_paranoia_check(port
, tty
->name
, "rc_write"))
988 bp
= port_Board(port
);
991 spin_lock_irqsave(&riscom_lock
, flags
);
993 c
= min_t(int, count
, min(SERIAL_XMIT_SIZE
- port
->xmit_cnt
- 1,
994 SERIAL_XMIT_SIZE
- port
->xmit_head
));
996 break; /* lock continues to be held */
998 memcpy(port
->port
.xmit_buf
+ port
->xmit_head
, buf
, c
);
999 port
->xmit_head
= (port
->xmit_head
+ c
) & (SERIAL_XMIT_SIZE
-1);
1000 port
->xmit_cnt
+= c
;
1002 spin_unlock_irqrestore(&riscom_lock
, flags
);
1009 if (port
->xmit_cnt
&& !tty
->stopped
&& !tty
->hw_stopped
&&
1010 !(port
->IER
& IER_TXRDY
)) {
1011 port
->IER
|= IER_TXRDY
;
1012 rc_out(bp
, CD180_CAR
, port_No(port
));
1013 rc_out(bp
, CD180_IER
, port
->IER
);
1016 spin_unlock_irqrestore(&riscom_lock
, flags
);
1021 static int rc_put_char(struct tty_struct
*tty
, unsigned char ch
)
1023 struct riscom_port
*port
= tty
->driver_data
;
1024 unsigned long flags
;
1027 if (rc_paranoia_check(port
, tty
->name
, "rc_put_char"))
1030 spin_lock_irqsave(&riscom_lock
, flags
);
1032 if (port
->xmit_cnt
>= SERIAL_XMIT_SIZE
- 1)
1035 port
->port
.xmit_buf
[port
->xmit_head
++] = ch
;
1036 port
->xmit_head
&= SERIAL_XMIT_SIZE
- 1;
1041 spin_unlock_irqrestore(&riscom_lock
, flags
);
1045 static void rc_flush_chars(struct tty_struct
*tty
)
1047 struct riscom_port
*port
= tty
->driver_data
;
1048 unsigned long flags
;
1050 if (rc_paranoia_check(port
, tty
->name
, "rc_flush_chars"))
1053 if (port
->xmit_cnt
<= 0 || tty
->stopped
|| tty
->hw_stopped
)
1056 spin_lock_irqsave(&riscom_lock
, flags
);
1058 port
->IER
|= IER_TXRDY
;
1059 rc_out(port_Board(port
), CD180_CAR
, port_No(port
));
1060 rc_out(port_Board(port
), CD180_IER
, port
->IER
);
1062 spin_unlock_irqrestore(&riscom_lock
, flags
);
1065 static int rc_write_room(struct tty_struct
*tty
)
1067 struct riscom_port
*port
= tty
->driver_data
;
1070 if (rc_paranoia_check(port
, tty
->name
, "rc_write_room"))
1073 ret
= SERIAL_XMIT_SIZE
- port
->xmit_cnt
- 1;
1079 static int rc_chars_in_buffer(struct tty_struct
*tty
)
1081 struct riscom_port
*port
= tty
->driver_data
;
1083 if (rc_paranoia_check(port
, tty
->name
, "rc_chars_in_buffer"))
1086 return port
->xmit_cnt
;
1089 static int rc_tiocmget(struct tty_struct
*tty
, struct file
*file
)
1091 struct riscom_port
*port
= tty
->driver_data
;
1092 struct riscom_board
*bp
;
1093 unsigned char status
;
1094 unsigned int result
;
1095 unsigned long flags
;
1097 if (rc_paranoia_check(port
, tty
->name
, __func__
))
1100 bp
= port_Board(port
);
1102 spin_lock_irqsave(&riscom_lock
, flags
);
1104 rc_out(bp
, CD180_CAR
, port_No(port
));
1105 status
= rc_in(bp
, CD180_MSVR
);
1106 result
= rc_in(bp
, RC_RI
) & (1u << port_No(port
)) ? 0 : TIOCM_RNG
;
1108 spin_unlock_irqrestore(&riscom_lock
, flags
);
1110 result
|= ((status
& MSVR_RTS
) ? TIOCM_RTS
: 0)
1111 | ((status
& MSVR_DTR
) ? TIOCM_DTR
: 0)
1112 | ((status
& MSVR_CD
) ? TIOCM_CAR
: 0)
1113 | ((status
& MSVR_DSR
) ? TIOCM_DSR
: 0)
1114 | ((status
& MSVR_CTS
) ? TIOCM_CTS
: 0);
1118 static int rc_tiocmset(struct tty_struct
*tty
, struct file
*file
,
1119 unsigned int set
, unsigned int clear
)
1121 struct riscom_port
*port
= tty
->driver_data
;
1122 unsigned long flags
;
1123 struct riscom_board
*bp
;
1125 if (rc_paranoia_check(port
, tty
->name
, __func__
))
1128 bp
= port_Board(port
);
1130 spin_lock_irqsave(&riscom_lock
, flags
);
1132 if (set
& TIOCM_RTS
)
1133 port
->MSVR
|= MSVR_RTS
;
1134 if (set
& TIOCM_DTR
)
1135 bp
->DTR
&= ~(1u << port_No(port
));
1137 if (clear
& TIOCM_RTS
)
1138 port
->MSVR
&= ~MSVR_RTS
;
1139 if (clear
& TIOCM_DTR
)
1140 bp
->DTR
|= (1u << port_No(port
));
1142 rc_out(bp
, CD180_CAR
, port_No(port
));
1143 rc_out(bp
, CD180_MSVR
, port
->MSVR
);
1144 rc_out(bp
, RC_DTR
, bp
->DTR
);
1146 spin_unlock_irqrestore(&riscom_lock
, flags
);
1151 static int rc_send_break(struct tty_struct
*tty
, int length
)
1153 struct riscom_port
*port
= tty
->driver_data
;
1154 struct riscom_board
*bp
= port_Board(port
);
1155 unsigned long flags
;
1157 if (length
== 0 || length
== -1)
1160 spin_lock_irqsave(&riscom_lock
, flags
);
1162 port
->break_length
= RISCOM_TPS
/ HZ
* length
;
1163 port
->COR2
|= COR2_ETC
;
1164 port
->IER
|= IER_TXRDY
;
1165 rc_out(bp
, CD180_CAR
, port_No(port
));
1166 rc_out(bp
, CD180_COR2
, port
->COR2
);
1167 rc_out(bp
, CD180_IER
, port
->IER
);
1169 rc_out(bp
, CD180_CCR
, CCR_CORCHG2
);
1172 spin_unlock_irqrestore(&riscom_lock
, flags
);
1176 static int rc_set_serial_info(struct tty_struct
*tty
, struct riscom_port
*port
,
1177 struct serial_struct __user
*newinfo
)
1179 struct serial_struct tmp
;
1180 struct riscom_board
*bp
= port_Board(port
);
1183 if (copy_from_user(&tmp
, newinfo
, sizeof(tmp
)))
1186 change_speed
= ((port
->port
.flags
& ASYNC_SPD_MASK
) !=
1187 (tmp
.flags
& ASYNC_SPD_MASK
));
1189 if (!capable(CAP_SYS_ADMIN
)) {
1190 if ((tmp
.close_delay
!= port
->port
.close_delay
) ||
1191 (tmp
.closing_wait
!= port
->port
.closing_wait
) ||
1192 ((tmp
.flags
& ~ASYNC_USR_MASK
) !=
1193 (port
->port
.flags
& ~ASYNC_USR_MASK
)))
1195 port
->port
.flags
= ((port
->port
.flags
& ~ASYNC_USR_MASK
) |
1196 (tmp
.flags
& ASYNC_USR_MASK
));
1198 port
->port
.flags
= ((port
->port
.flags
& ~ASYNC_FLAGS
) |
1199 (tmp
.flags
& ASYNC_FLAGS
));
1200 port
->port
.close_delay
= tmp
.close_delay
;
1201 port
->port
.closing_wait
= tmp
.closing_wait
;
1204 unsigned long flags
;
1206 spin_lock_irqsave(&riscom_lock
, flags
);
1207 rc_change_speed(tty
, bp
, port
);
1208 spin_unlock_irqrestore(&riscom_lock
, flags
);
1213 static int rc_get_serial_info(struct riscom_port
*port
,
1214 struct serial_struct __user
*retinfo
)
1216 struct serial_struct tmp
;
1217 struct riscom_board
*bp
= port_Board(port
);
1219 memset(&tmp
, 0, sizeof(tmp
));
1220 tmp
.type
= PORT_CIRRUS
;
1221 tmp
.line
= port
- rc_port
;
1222 tmp
.port
= bp
->base
;
1224 tmp
.flags
= port
->port
.flags
;
1225 tmp
.baud_base
= (RC_OSCFREQ
+ CD180_TPC
/2) / CD180_TPC
;
1226 tmp
.close_delay
= port
->port
.close_delay
* HZ
/100;
1227 tmp
.closing_wait
= port
->port
.closing_wait
* HZ
/100;
1228 tmp
.xmit_fifo_size
= CD180_NFIFO
;
1229 return copy_to_user(retinfo
, &tmp
, sizeof(tmp
)) ? -EFAULT
: 0;
1232 static int rc_ioctl(struct tty_struct
*tty
, struct file
*filp
,
1233 unsigned int cmd
, unsigned long arg
)
1235 struct riscom_port
*port
= tty
->driver_data
;
1236 void __user
*argp
= (void __user
*)arg
;
1239 if (rc_paranoia_check(port
, tty
->name
, "rc_ioctl"))
1245 retval
= rc_get_serial_info(port
, argp
);
1250 retval
= rc_set_serial_info(tty
, port
, argp
);
1254 retval
= -ENOIOCTLCMD
;
1259 static void rc_throttle(struct tty_struct
*tty
)
1261 struct riscom_port
*port
= tty
->driver_data
;
1262 struct riscom_board
*bp
;
1263 unsigned long flags
;
1265 if (rc_paranoia_check(port
, tty
->name
, "rc_throttle"))
1267 bp
= port_Board(port
);
1269 spin_lock_irqsave(&riscom_lock
, flags
);
1270 port
->MSVR
&= ~MSVR_RTS
;
1271 rc_out(bp
, CD180_CAR
, port_No(port
));
1274 rc_out(bp
, CD180_CCR
, CCR_SSCH2
);
1277 rc_out(bp
, CD180_MSVR
, port
->MSVR
);
1278 spin_unlock_irqrestore(&riscom_lock
, flags
);
1281 static void rc_unthrottle(struct tty_struct
*tty
)
1283 struct riscom_port
*port
= tty
->driver_data
;
1284 struct riscom_board
*bp
;
1285 unsigned long flags
;
1287 if (rc_paranoia_check(port
, tty
->name
, "rc_unthrottle"))
1289 bp
= port_Board(port
);
1291 spin_lock_irqsave(&riscom_lock
, flags
);
1292 port
->MSVR
|= MSVR_RTS
;
1293 rc_out(bp
, CD180_CAR
, port_No(port
));
1296 rc_out(bp
, CD180_CCR
, CCR_SSCH1
);
1299 rc_out(bp
, CD180_MSVR
, port
->MSVR
);
1300 spin_unlock_irqrestore(&riscom_lock
, flags
);
1303 static void rc_stop(struct tty_struct
*tty
)
1305 struct riscom_port
*port
= tty
->driver_data
;
1306 struct riscom_board
*bp
;
1307 unsigned long flags
;
1309 if (rc_paranoia_check(port
, tty
->name
, "rc_stop"))
1312 bp
= port_Board(port
);
1314 spin_lock_irqsave(&riscom_lock
, flags
);
1315 port
->IER
&= ~IER_TXRDY
;
1316 rc_out(bp
, CD180_CAR
, port_No(port
));
1317 rc_out(bp
, CD180_IER
, port
->IER
);
1318 spin_unlock_irqrestore(&riscom_lock
, flags
);
1321 static void rc_start(struct tty_struct
*tty
)
1323 struct riscom_port
*port
= tty
->driver_data
;
1324 struct riscom_board
*bp
;
1325 unsigned long flags
;
1327 if (rc_paranoia_check(port
, tty
->name
, "rc_start"))
1330 bp
= port_Board(port
);
1332 spin_lock_irqsave(&riscom_lock
, flags
);
1334 if (port
->xmit_cnt
&& port
->port
.xmit_buf
&& !(port
->IER
& IER_TXRDY
)) {
1335 port
->IER
|= IER_TXRDY
;
1336 rc_out(bp
, CD180_CAR
, port_No(port
));
1337 rc_out(bp
, CD180_IER
, port
->IER
);
1339 spin_unlock_irqrestore(&riscom_lock
, flags
);
1342 static void rc_hangup(struct tty_struct
*tty
)
1344 struct riscom_port
*port
= tty
->driver_data
;
1346 if (rc_paranoia_check(port
, tty
->name
, "rc_hangup"))
1349 tty_port_hangup(&port
->port
);
1352 static void rc_set_termios(struct tty_struct
*tty
,
1353 struct ktermios
*old_termios
)
1355 struct riscom_port
*port
= tty
->driver_data
;
1356 unsigned long flags
;
1358 if (rc_paranoia_check(port
, tty
->name
, "rc_set_termios"))
1361 spin_lock_irqsave(&riscom_lock
, flags
);
1362 rc_change_speed(tty
, port_Board(port
), port
);
1363 spin_unlock_irqrestore(&riscom_lock
, flags
);
1365 if ((old_termios
->c_cflag
& CRTSCTS
) &&
1366 !(tty
->termios
->c_cflag
& CRTSCTS
)) {
1367 tty
->hw_stopped
= 0;
1372 static const struct tty_operations riscom_ops
= {
1376 .put_char
= rc_put_char
,
1377 .flush_chars
= rc_flush_chars
,
1378 .write_room
= rc_write_room
,
1379 .chars_in_buffer
= rc_chars_in_buffer
,
1380 .flush_buffer
= rc_flush_buffer
,
1382 .throttle
= rc_throttle
,
1383 .unthrottle
= rc_unthrottle
,
1384 .set_termios
= rc_set_termios
,
1387 .hangup
= rc_hangup
,
1388 .tiocmget
= rc_tiocmget
,
1389 .tiocmset
= rc_tiocmset
,
1390 .break_ctl
= rc_send_break
,
1393 static const struct tty_port_operations riscom_port_ops
= {
1394 .carrier_raised
= carrier_raised
,
1396 .shutdown
= rc_close_port
,
1397 .activate
= rc_activate_port
,
1401 static int __init
rc_init_drivers(void)
1406 riscom_driver
= alloc_tty_driver(RC_NBOARD
* RC_NPORT
);
1410 riscom_driver
->owner
= THIS_MODULE
;
1411 riscom_driver
->name
= "ttyL";
1412 riscom_driver
->major
= RISCOM8_NORMAL_MAJOR
;
1413 riscom_driver
->type
= TTY_DRIVER_TYPE_SERIAL
;
1414 riscom_driver
->subtype
= SERIAL_TYPE_NORMAL
;
1415 riscom_driver
->init_termios
= tty_std_termios
;
1416 riscom_driver
->init_termios
.c_cflag
=
1417 B9600
| CS8
| CREAD
| HUPCL
| CLOCAL
;
1418 riscom_driver
->init_termios
.c_ispeed
= 9600;
1419 riscom_driver
->init_termios
.c_ospeed
= 9600;
1420 riscom_driver
->flags
= TTY_DRIVER_REAL_RAW
| TTY_DRIVER_HARDWARE_BREAK
;
1421 tty_set_operations(riscom_driver
, &riscom_ops
);
1422 error
= tty_register_driver(riscom_driver
);
1424 put_tty_driver(riscom_driver
);
1425 printk(KERN_ERR
"rc: Couldn't register RISCom/8 driver, "
1426 "error = %d\n", error
);
1429 memset(rc_port
, 0, sizeof(rc_port
));
1430 for (i
= 0; i
< RC_NPORT
* RC_NBOARD
; i
++) {
1431 tty_port_init(&rc_port
[i
].port
);
1432 rc_port
[i
].port
.ops
= &riscom_port_ops
;
1433 rc_port
[i
].magic
= RISCOM8_MAGIC
;
1438 static void rc_release_drivers(void)
1440 tty_unregister_driver(riscom_driver
);
1441 put_tty_driver(riscom_driver
);
1446 * Called at boot time.
1448 * You can specify IO base for up to RC_NBOARD cards,
1449 * using line "riscom8=0xiobase1,0xiobase2,.." at LILO prompt.
1450 * Note that there will be no probing at default
1451 * addresses in this case.
1454 static int __init
riscom8_setup(char *str
)
1456 int ints
[RC_NBOARD
];
1459 str
= get_options(str
, ARRAY_SIZE(ints
), ints
);
1461 for (i
= 0; i
< RC_NBOARD
; i
++) {
1463 rc_board
[i
].base
= ints
[i
+1];
1465 rc_board
[i
].base
= 0;
1470 __setup("riscom8=", riscom8_setup
);
1473 static char banner
[] __initdata
=
1474 KERN_INFO
"rc: SDL RISCom/8 card driver v1.1, (c) D.Gorodchanin "
1476 static char no_boards_msg
[] __initdata
=
1477 KERN_INFO
"rc: No RISCom/8 boards detected.\n";
1480 * This routine must be called by kernel at boot time
1482 static int __init
riscom8_init(void)
1489 if (rc_init_drivers())
1492 for (i
= 0; i
< RC_NBOARD
; i
++)
1493 if (rc_board
[i
].base
&& !rc_probe(&rc_board
[i
]))
1496 rc_release_drivers();
1497 printk(no_boards_msg
);
1508 module_param(iobase
, int, 0);
1509 module_param(iobase1
, int, 0);
1510 module_param(iobase2
, int, 0);
1511 module_param(iobase3
, int, 0);
1513 MODULE_LICENSE("GPL");
1514 MODULE_ALIAS_CHARDEV_MAJOR(RISCOM8_NORMAL_MAJOR
);
1518 * You can setup up to 4 boards (current value of RC_NBOARD)
1519 * by specifying "iobase=0xXXX iobase1=0xXXX ..." as insmod parameter.
1522 static int __init
riscom8_init_module(void)
1527 if (iobase
|| iobase1
|| iobase2
|| iobase3
) {
1528 for (i
= 0; i
< RC_NBOARD
; i
++)
1529 rc_board
[i
].base
= 0;
1533 rc_board
[0].base
= iobase
;
1535 rc_board
[1].base
= iobase1
;
1537 rc_board
[2].base
= iobase2
;
1539 rc_board
[3].base
= iobase3
;
1542 return riscom8_init();
1545 static void __exit
riscom8_exit_module(void)
1549 rc_release_drivers();
1550 for (i
= 0; i
< RC_NBOARD
; i
++)
1551 if (rc_board
[i
].flags
& RC_BOARD_PRESENT
)
1552 rc_release_io_range(&rc_board
[i
]);
1556 module_init(riscom8_init_module
);
1557 module_exit(riscom8_exit_module
);