1 /* $Id: aurora.c,v 1.19 2002/01/08 16:00:16 davem Exp $
2 * linux/drivers/sbus/char/aurora.c -- Aurora multiport driver
4 * Copyright (c) 1999 by Oliver Aldulea (oli at bv dot ro)
6 * This code is based on the RISCom/8 multiport serial driver written
7 * by Dmitry Gorodchanin (pgmdsg@ibi.com), based on the Linux serial
8 * driver, written by Linus Torvalds, Theodore T'so and others.
9 * The Aurora multiport programming info was obtained mainly from the
10 * Cirrus Logic CD180 documentation (available on the web), and by
11 * doing heavy tests on the board. Many thanks to Eddie C. Dost for the
12 * help on the sbus interface.
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
30 * This is the first public release.
32 * Most of the information you need is in the aurora.h file. Please
33 * read that file before reading this one.
35 * Several parts of the code do not have comments yet.
37 * n.b. The board can support 115.2 bit rates, but only on a few
38 * ports. The total badwidth of one chip (ports 0-7 or 8-15) is equal
39 * to OSC_FREQ div 16. In case of my board, each chip can take 6
40 * channels of 115.2 kbaud. This information is not well-tested.
42 * Fixed to use tty_get_baud_rate().
43 * Theodore Ts'o <tytso@mit.edu>, 2001-Oct-12
46 #include <linux/module.h>
48 #include <linux/errno.h>
49 #include <linux/sched.h>
50 #ifdef AURORA_INT_DEBUG
51 #include <linux/timer.h>
53 #include <linux/interrupt.h>
54 #include <linux/tty.h>
55 #include <linux/tty_flip.h>
56 #include <linux/major.h>
57 #include <linux/string.h>
58 #include <linux/fcntl.h>
60 #include <linux/kernel.h>
61 #include <linux/init.h>
62 #include <linux/delay.h>
63 #include <linux/bitops.h>
67 #include <asm/oplib.h>
68 #include <asm/system.h>
69 #include <asm/kdebug.h>
71 #include <asm/uaccess.h>
76 unsigned char irqs
[4] = {
80 #ifdef AURORA_INT_DEBUG
84 static struct tty_driver
*aurora_driver
;
85 static struct Aurora_board aurora_board
[AURORA_NBOARD
] = {
89 static struct Aurora_port aurora_port
[AURORA_TNPORTS
] = {
93 /* no longer used. static struct Aurora_board * IRQ_to_board[16] = { NULL, } ;*/
94 static unsigned char * tmp_buf
= NULL
;
95 static DECLARE_MUTEX(tmp_buf_sem
);
97 DECLARE_TASK_QUEUE(tq_aurora
);
99 static inline int aurora_paranoia_check(struct Aurora_port
const * port
,
100 char *name
, const char *routine
)
102 #ifdef AURORA_PARANOIA_CHECK
103 static const char *badmagic
=
104 KERN_DEBUG
"aurora: Warning: bad aurora port magic number for device %s in %s\n";
105 static const char *badinfo
=
106 KERN_DEBUG
"aurora: Warning: null aurora port for device %s in %s\n";
109 printk(badinfo
, name
, routine
);
112 if (port
->magic
!= AURORA_MAGIC
) {
113 printk(badmagic
, name
, routine
);
122 * Service functions for aurora driver.
126 /* Get board number from pointer */
127 static inline int board_No (struct Aurora_board
const * bp
)
129 return bp
- aurora_board
;
132 /* Get port number from pointer */
133 static inline int port_No (struct Aurora_port
const * port
)
135 return AURORA_PORT(port
- aurora_port
);
138 /* Get pointer to board from pointer to port */
139 static inline struct Aurora_board
* port_Board(struct Aurora_port
const * port
)
141 return &aurora_board
[AURORA_BOARD(port
- aurora_port
)];
144 /* Wait for Channel Command Register ready */
145 static inline void aurora_wait_CCR(struct aurora_reg128
* r
)
150 printk("aurora_wait_CCR\n");
152 /* FIXME: need something more descriptive than 100000 :) */
153 for (delay
= 100000; delay
; delay
--)
154 if (!sbus_readb(&r
->r
[CD180_CCR
]))
156 printk(KERN_DEBUG
"aurora: Timeout waiting for CCR.\n");
160 * aurora probe functions.
163 /* Must be called with enabled interrupts */
164 static inline void aurora_long_delay(unsigned long delay
)
169 printk("aurora_long_delay: start\n");
171 for (i
= jiffies
+ delay
; time_before(jiffies
, i
); ) ;
173 printk("aurora_long_delay: end\n");
177 /* Reset and setup CD180 chip */
178 static int aurora_init_CD180(struct Aurora_board
* bp
, int chip
)
184 printk("aurora_init_CD180: start %d:%d\n",
187 save_flags(flags
); cli();
188 sbus_writeb(0, &bp
->r
[chip
]->r
[CD180_CAR
]);
189 sbus_writeb(0, &bp
->r
[chip
]->r
[CD180_GSVR
]);
191 /* Wait for CCR ready */
192 aurora_wait_CCR(bp
->r
[chip
]);
194 /* Reset CD180 chip */
195 sbus_writeb(CCR_HARDRESET
, &bp
->r
[chip
]->r
[CD180_CCR
]);
200 (sbus_readb(&bp
->r
[chip
]->r
[CD180_GSVR
])!=0xff))udelay(100);
202 printk(KERN_ERR
"aurora%d: Chip %d failed init.\n",
204 restore_flags(flags
);
208 sbus_writeb((board_No(bp
)<<5)|((chip
+1)<<3),
209 &bp
->r
[chip
]->r
[CD180_GSVR
]); /* Set ID for this chip */
210 sbus_writeb(0x80|bp
->ACK_MINT
,
211 &bp
->r
[chip
]->r
[CD180_MSMR
]); /* Prio for modem intr */
212 sbus_writeb(0x80|bp
->ACK_TINT
,
213 &bp
->r
[chip
]->r
[CD180_TSMR
]); /* Prio for transmitter intr */
214 sbus_writeb(0x80|bp
->ACK_RINT
,
215 &bp
->r
[chip
]->r
[CD180_RSMR
]); /* Prio for receiver intr */
216 /* Setting up prescaler. We need 4 tick per 1 ms */
217 sbus_writeb((bp
->oscfreq
/(1000000/AURORA_TPS
)) >> 8,
218 &bp
->r
[chip
]->r
[CD180_PPRH
]);
219 sbus_writeb((bp
->oscfreq
/(1000000/AURORA_TPS
)) & 0xff,
220 &bp
->r
[chip
]->r
[CD180_PPRL
]);
222 sbus_writeb(SRCR_AUTOPRI
|SRCR_GLOBPRI
,
223 &bp
->r
[chip
]->r
[CD180_SRCR
]);
225 id
= sbus_readb(&bp
->r
[chip
]->r
[CD180_GFRCR
]);
226 printk(KERN_INFO
"aurora%d: Chip %d id %02x: ",
227 board_No(bp
), chip
,id
);
228 if(sbus_readb(&bp
->r
[chip
]->r
[CD180_SRCR
]) & 128) {
230 case 0x82:printk("CL-CD1864 rev A\n");break;
231 case 0x83:printk("CL-CD1865 rev A\n");break;
232 case 0x84:printk("CL-CD1865 rev B\n");break;
233 case 0x85:printk("CL-CD1865 rev C\n");break;
234 default:printk("Unknown.\n");
238 case 0x81:printk("CL-CD180 rev B\n");break;
239 case 0x82:printk("CL-CD180 rev C\n");break;
240 default:printk("Unknown.\n");
243 restore_flags(flags
);
245 printk("aurora_init_CD180: end\n");
250 static int valid_irq(unsigned char irq
)
253 for(i
=0;i
<TYPE_1_IRQS
;i
++)
254 if (type_1_irq
[i
]==irq
) return 1;
258 static irqreturn_t
aurora_interrupt(int irq
, void * dev_id
, struct pt_regs
* regs
);
260 /* Main probing routine, also sets irq. */
261 static int aurora_probe(void)
263 struct sbus_bus
*sbus
;
264 struct sbus_dev
*sdev
;
268 struct Aurora_board
*bp
;
270 for_each_sbus(sbus
) {
271 for_each_sbusdev(sdev
, sbus
) {
272 /* printk("Try: %x %s\n",sdev,sdev->prom_name);*/
273 if (!strcmp(sdev
->prom_name
, "sio16")) {
275 printk(KERN_INFO
"aurora: sio16 at %p\n",sdev
);
277 if((sdev
->reg_addrs
[0].reg_size
!=1) &&
278 (sdev
->reg_addrs
[1].reg_size
!=128) &&
279 (sdev
->reg_addrs
[2].reg_size
!=128) &&
280 (sdev
->reg_addrs
[3].reg_size
!=4)) {
281 printk(KERN_ERR
"aurora%d: registers' sizes "
282 "do not match.\n", bn
);
285 bp
= &aurora_board
[bn
];
286 bp
->r0
= (struct aurora_reg1
*)
287 sbus_ioremap(&sdev
->resource
[0], 0,
288 sdev
->reg_addrs
[0].reg_size
,
290 if (bp
->r0
== NULL
) {
291 printk(KERN_ERR
"aurora%d: can't map "
292 "reg_addrs[0]\n", bn
);
296 printk("Map reg 0: %p\n", bp
->r0
);
298 bp
->r
[0] = (struct aurora_reg128
*)
299 sbus_ioremap(&sdev
->resource
[1], 0,
300 sdev
->reg_addrs
[1].reg_size
,
302 if (bp
->r
[0] == NULL
) {
303 printk(KERN_ERR
"aurora%d: can't map "
304 "reg_addrs[1]\n", bn
);
308 printk("Map reg 1: %p\n", bp
->r
[0]);
310 bp
->r
[1] = (struct aurora_reg128
*)
311 sbus_ioremap(&sdev
->resource
[2], 0,
312 sdev
->reg_addrs
[2].reg_size
,
314 if (bp
->r
[1] == NULL
) {
315 printk(KERN_ERR
"aurora%d: can't map "
316 "reg_addrs[2]\n", bn
);
320 printk("Map reg 2: %p\n", bp
->r
[1]);
322 bp
->r3
= (struct aurora_reg4
*)
323 sbus_ioremap(&sdev
->resource
[3], 0,
324 sdev
->reg_addrs
[3].reg_size
,
326 if (bp
->r3
== NULL
) {
327 printk(KERN_ERR
"aurora%d: can't map "
328 "reg_addrs[3]\n", bn
);
332 printk("Map reg 3: %p\n", bp
->r3
);
334 /* Variables setup */
337 grrr
=prom_getint(sdev
->prom_node
,"intr");
338 printk("intr pri %d\n", grrr
);
340 if ((bp
->irq
=irqs
[bn
]) && valid_irq(bp
->irq
) &&
341 !request_irq(bp
->irq
|0x30, aurora_interrupt
, SA_SHIRQ
, "sio16", bp
)) {
342 free_irq(bp
->irq
|0x30, bp
);
344 if ((bp
->irq
=prom_getint(sdev
->prom_node
, "bintr")) && valid_irq(bp
->irq
) &&
345 !request_irq(bp
->irq
|0x30, aurora_interrupt
, SA_SHIRQ
, "sio16", bp
)) {
346 free_irq(bp
->irq
|0x30, bp
);
348 if ((bp
->irq
=prom_getint(sdev
->prom_node
, "intr")) && valid_irq(bp
->irq
) &&
349 !request_irq(bp
->irq
|0x30, aurora_interrupt
, SA_SHIRQ
, "sio16", bp
)) {
350 free_irq(bp
->irq
|0x30, bp
);
352 for(grrr
=0;grrr
<TYPE_1_IRQS
;grrr
++) {
353 if ((bp
->irq
=type_1_irq
[grrr
])&&!request_irq(bp
->irq
|0x30, aurora_interrupt
, SA_SHIRQ
, "sio16", bp
)) {
354 free_irq(bp
->irq
|0x30, bp
);
357 printk(KERN_ERR
"aurora%d: Could not get an irq for this board !!!\n",bn
);
361 if(bp
->flags
==0xff)break;
362 printk(KERN_INFO
"aurora%d: irq %d\n",bn
,bp
->irq
&0x0f);
364 grrr
=prom_getproperty(sdev
->prom_node
,"dtr_rts",buf
,sizeof(buf
));
365 if(!strcmp(buf
,"swapped")){
366 printk(KERN_INFO
"aurora%d: Swapped DTR and RTS\n",bn
);
369 bp
->MSVDTR
=CD180_MSVRTS
;
370 bp
->MSVRTS
=CD180_MSVDTR
;
371 bp
->flags
|=AURORA_BOARD_DTR_FLOW_OK
;
373 #ifdef AURORA_FORCE_DTR_FLOW
374 printk(KERN_INFO
"aurora%d: Forcing swapped DTR-RTS\n",bn
);
377 bp
->MSVDTR
=CD180_MSVRTS
;
378 bp
->MSVRTS
=CD180_MSVDTR
;
379 bp
->flags
|=AURORA_BOARD_DTR_FLOW_OK
;
381 printk(KERN_INFO
"aurora%d: Normal DTR and RTS\n",bn
);
384 bp
->MSVDTR
=CD180_MSVDTR
;
385 bp
->MSVRTS
=CD180_MSVRTS
;
388 bp
->oscfreq
=prom_getint(sdev
->prom_node
,"clk")*100;
389 printk(KERN_INFO
"aurora%d: Oscillator: %d Hz\n",bn
,bp
->oscfreq
);
390 grrr
=prom_getproperty(sdev
->prom_node
,"chip",buf
,sizeof(buf
));
391 printk(KERN_INFO
"aurora%d: Chips: %s\n",bn
,buf
);
392 grrr
=prom_getproperty(sdev
->prom_node
,"manu",buf
,sizeof(buf
));
393 printk(KERN_INFO
"aurora%d: Manufacturer: %s\n",bn
,buf
);
394 grrr
=prom_getproperty(sdev
->prom_node
,"model",buf
,sizeof(buf
));
395 printk(KERN_INFO
"aurora%d: Model: %s\n",bn
,buf
);
396 grrr
=prom_getproperty(sdev
->prom_node
,"rev",buf
,sizeof(buf
));
397 printk(KERN_INFO
"aurora%d: Revision: %s\n",bn
,buf
);
398 grrr
=prom_getproperty(sdev
->prom_node
,"mode",buf
,sizeof(buf
));
399 printk(KERN_INFO
"aurora%d: Mode: %s\n",bn
,buf
);
403 bp
->flags
= AURORA_BOARD_PRESENT
;
415 static void aurora_release_io_range(struct Aurora_board
*bp
)
417 sbus_iounmap((unsigned long)bp
->r0
, 1);
418 sbus_iounmap((unsigned long)bp
->r
[0], 128);
419 sbus_iounmap((unsigned long)bp
->r
[1], 128);
420 sbus_iounmap((unsigned long)bp
->r3
, 4);
423 static inline void aurora_mark_event(struct Aurora_port
* port
, int event
)
426 printk("aurora_mark_event: start\n");
428 set_bit(event
, &port
->event
);
429 queue_task(&port
->tqueue
, &tq_aurora
);
432 printk("aurora_mark_event: end\n");
436 static __inline__
struct Aurora_port
* aurora_get_port(struct Aurora_board
const * bp
,
438 unsigned char const *what
)
440 unsigned char channel
;
441 struct Aurora_port
* port
;
443 channel
= ((chip
<< 3) |
444 ((sbus_readb(&bp
->r
[chip
]->r
[CD180_GSCR
]) & GSCR_CHAN
) >> GSCR_CHAN_OFF
));
445 port
= &aurora_port
[board_No(bp
) * AURORA_NPORT
* AURORA_NCD180
+ channel
];
446 if (port
->flags
& ASYNC_INITIALIZED
)
449 printk(KERN_DEBUG
"aurora%d: %s interrupt from invalid port %d\n",
450 board_No(bp
), what
, channel
);
454 static void aurora_receive_exc(struct Aurora_board
const * bp
, int chip
)
456 struct Aurora_port
*port
;
457 struct tty_struct
*tty
;
458 unsigned char status
;
461 if (!(port
= aurora_get_port(bp
, chip
, "Receive_x")))
465 if (tty
->flip
.count
>= TTY_FLIPBUF_SIZE
) {
466 #ifdef AURORA_INTNORM
467 printk("aurora%d: port %d: Working around flip buffer overflow.\n",
468 board_No(bp
), port_No(port
));
473 #ifdef AURORA_REPORT_OVERRUN
474 status
= sbus_readb(&bp
->r
[chip
]->r
[CD180_RCSR
]);
475 if (status
& RCSR_OE
) {
478 printk("aurora%d: port %d: Overrun. Total %ld overruns.\n",
479 board_No(bp
), port_No(port
), port
->overrun
);
482 status
&= port
->mark_mask
;
484 status
= sbus_readb(&bp
->r
[chip
]->r
[CD180_RCSR
]) & port
->mark_mask
;
486 ch
= sbus_readb(&bp
->r
[chip
]->r
[CD180_RDR
]);
490 if (status
& RCSR_TOUT
) {
491 /* printk("aurora%d: port %d: Receiver timeout. Hardware problems ?\n",
492 board_No(bp), port_No(port));*/
495 } else if (status
& RCSR_BREAK
) {
496 printk(KERN_DEBUG
"aurora%d: port %d: Handling break...\n",
497 board_No(bp
), port_No(port
));
498 *tty
->flip
.flag_buf_ptr
++ = TTY_BREAK
;
499 if (port
->flags
& ASYNC_SAK
)
502 } else if (status
& RCSR_PE
)
503 *tty
->flip
.flag_buf_ptr
++ = TTY_PARITY
;
505 else if (status
& RCSR_FE
)
506 *tty
->flip
.flag_buf_ptr
++ = TTY_FRAME
;
508 else if (status
& RCSR_OE
)
509 *tty
->flip
.flag_buf_ptr
++ = TTY_OVERRUN
;
512 *tty
->flip
.flag_buf_ptr
++ = 0;
514 *tty
->flip
.char_buf_ptr
++ = ch
;
516 queue_task(&tty
->flip
.tqueue
, &tq_timer
);
519 static void aurora_receive(struct Aurora_board
const * bp
, int chip
)
521 struct Aurora_port
*port
;
522 struct tty_struct
*tty
;
523 unsigned char count
,cnt
;
525 if (!(port
= aurora_get_port(bp
, chip
, "Receive")))
530 count
= sbus_readb(&bp
->r
[chip
]->r
[CD180_RDCR
]);
532 #ifdef AURORA_REPORT_FIFO
533 port
->hits
[count
> 8 ? 9 : count
]++;
537 if (tty
->flip
.count
>= TTY_FLIPBUF_SIZE
) {
538 #ifdef AURORA_INTNORM
539 printk("aurora%d: port %d: Working around flip buffer overflow.\n",
540 board_No(bp
), port_No(port
));
544 cnt
= sbus_readb(&bp
->r
[chip
]->r
[CD180_RDR
]);
545 *tty
->flip
.char_buf_ptr
++ = cnt
;
546 *tty
->flip
.flag_buf_ptr
++ = 0;
549 queue_task(&tty
->flip
.tqueue
, &tq_timer
);
552 static void aurora_transmit(struct Aurora_board
const * bp
, int chip
)
554 struct Aurora_port
*port
;
555 struct tty_struct
*tty
;
558 if (!(port
= aurora_get_port(bp
, chip
, "Transmit")))
563 if (port
->SRER
& SRER_TXEMPTY
) {
565 sbus_writeb(port_No(port
) & 7,
566 &bp
->r
[chip
]->r
[CD180_CAR
]);
568 port
->SRER
&= ~SRER_TXEMPTY
;
569 sbus_writeb(port
->SRER
, &bp
->r
[chip
]->r
[CD180_SRER
]);
573 if ((port
->xmit_cnt
<= 0 && !port
->break_length
)
574 || tty
->stopped
|| tty
->hw_stopped
) {
575 sbus_writeb(port_No(port
) & 7,
576 &bp
->r
[chip
]->r
[CD180_CAR
]);
578 port
->SRER
&= ~SRER_TXRDY
;
579 sbus_writeb(port
->SRER
,
580 &bp
->r
[chip
]->r
[CD180_SRER
]);
584 if (port
->break_length
) {
585 if (port
->break_length
> 0) {
586 if (port
->COR2
& COR2_ETC
) {
587 sbus_writeb(CD180_C_ESC
,
588 &bp
->r
[chip
]->r
[CD180_TDR
]);
589 sbus_writeb(CD180_C_SBRK
,
590 &bp
->r
[chip
]->r
[CD180_TDR
]);
591 port
->COR2
&= ~COR2_ETC
;
593 count
= min(port
->break_length
, 0xff);
594 sbus_writeb(CD180_C_ESC
,
595 &bp
->r
[chip
]->r
[CD180_TDR
]);
596 sbus_writeb(CD180_C_DELAY
,
597 &bp
->r
[chip
]->r
[CD180_TDR
]);
599 &bp
->r
[chip
]->r
[CD180_TDR
]);
600 if (!(port
->break_length
-= count
))
601 port
->break_length
--;
603 sbus_writeb(CD180_C_ESC
,
604 &bp
->r
[chip
]->r
[CD180_TDR
]);
605 sbus_writeb(CD180_C_EBRK
,
606 &bp
->r
[chip
]->r
[CD180_TDR
]);
607 sbus_writeb(port
->COR2
,
608 &bp
->r
[chip
]->r
[CD180_COR2
]);
609 aurora_wait_CCR(bp
->r
[chip
]);
610 sbus_writeb(CCR_CORCHG2
,
611 &bp
->r
[chip
]->r
[CD180_CCR
]);
612 port
->break_length
= 0;
619 u8 byte
= port
->xmit_buf
[port
->xmit_tail
++];
621 sbus_writeb(byte
, &bp
->r
[chip
]->r
[CD180_TDR
]);
622 port
->xmit_tail
= port
->xmit_tail
& (SERIAL_XMIT_SIZE
-1);
623 if (--port
->xmit_cnt
<= 0)
625 } while (--count
> 0);
627 if (port
->xmit_cnt
<= 0) {
628 sbus_writeb(port_No(port
) & 7,
629 &bp
->r
[chip
]->r
[CD180_CAR
]);
631 port
->SRER
&= ~SRER_TXRDY
;
632 sbus_writeb(port
->SRER
,
633 &bp
->r
[chip
]->r
[CD180_SRER
]);
635 if (port
->xmit_cnt
<= port
->wakeup_chars
)
636 aurora_mark_event(port
, RS_EVENT_WRITE_WAKEUP
);
639 static void aurora_check_modem(struct Aurora_board
const * bp
, int chip
)
641 struct Aurora_port
*port
;
642 struct tty_struct
*tty
;
645 if (!(port
= aurora_get_port(bp
, chip
, "Modem")))
650 mcr
= sbus_readb(&bp
->r
[chip
]->r
[CD180_MCR
]);
651 if (mcr
& MCR_CDCHG
) {
652 if (sbus_readb(&bp
->r
[chip
]->r
[CD180_MSVR
]) & MSVR_CD
)
653 wake_up_interruptible(&port
->open_wait
);
655 schedule_task(&port
->tqueue_hangup
);
658 /* We don't have such things yet. My aurora board has DTR and RTS swapped, but that doesn't count in this driver. Let's hope
659 * Aurora didn't made any boards with CTS or DSR broken...
661 /* #ifdef AURORA_BRAIN_DAMAGED_CTS
662 if (mcr & MCR_CTSCHG) {
663 if (aurora_in(bp, CD180_MSVR) & MSVR_CTS) {
665 port->SRER |= SRER_TXRDY;
666 if (port->xmit_cnt <= port->wakeup_chars)
667 aurora_mark_event(port, RS_EVENT_WRITE_WAKEUP);
670 port->SRER &= ~SRER_TXRDY;
672 sbus_writeb(port->SRER, &bp->r[chip]->r[CD180_SRER]);
674 if (mcr & MCR_DSRCHG) {
675 if (aurora_in(bp, CD180_MSVR) & MSVR_DSR) {
677 port->SRER |= SRER_TXRDY;
678 if (port->xmit_cnt <= port->wakeup_chars)
679 aurora_mark_event(port, RS_EVENT_WRITE_WAKEUP);
682 port->SRER &= ~SRER_TXRDY;
684 sbus_writeb(port->SRER, &bp->r[chip]->r[CD180_SRER]);
686 #endif AURORA_BRAIN_DAMAGED_CTS */
688 /* Clear change bits */
689 sbus_writeb(0, &bp
->r
[chip
]->r
[CD180_MCR
]);
692 /* The main interrupt processing routine */
693 static irqreturn_t
aurora_interrupt(int irq
, void * dev_id
, struct pt_regs
* regs
)
695 unsigned char status
;
696 unsigned char ack
,chip
/*,chip_id*/;
697 struct Aurora_board
* bp
= (struct Aurora_board
*) dev_id
;
698 unsigned long loop
= 0;
700 #ifdef AURORA_INT_DEBUG
701 printk("IRQ%d %d\n",irq
,++irqhit
);
702 #ifdef AURORA_FLOODPRO
703 if (irqhit
>=AURORA_FLOODPRO
)
704 sbus_writeb(8, &bp
->r0
->r
);
708 /* old bp = IRQ_to_board[irq&0x0f];*/
710 if (!bp
|| !(bp
->flags
& AURORA_BOARD_ACTIVE
))
713 /* The while() below takes care of this.
714 status = sbus_readb(&bp->r[0]->r[CD180_SRSR]);
715 #ifdef AURORA_INT_DEBUG
716 printk("mumu: %02x\n", status);
718 if (!(status&SRSR_ANYINT))
719 return IRQ_NONE; * Nobody has anything to say, so exit *
721 while ((loop
++ < 48) &&
722 (status
= sbus_readb(&bp
->r
[0]->r
[CD180_SRSR
]) & SRSR_ANYINT
)){
723 #ifdef AURORA_INT_DEBUG
724 printk("SRSR: %02x\n", status
);
726 if (status
& SRSR_REXT
) {
727 ack
= sbus_readb(&bp
->r3
->r
[bp
->ACK_RINT
]);
728 #ifdef AURORA_INT_DEBUG
729 printk("R-ACK %02x\n", ack
);
731 if ((ack
>> 5) == board_No(bp
)) {
732 if ((chip
=((ack
>>3)&3)-1) < AURORA_NCD180
) {
733 if ((ack
&GSVR_ITMASK
)==GSVR_IT_RGD
) {
734 aurora_receive(bp
,chip
);
736 &bp
->r
[chip
]->r
[CD180_EOSRR
]);
737 } else if ((ack
& GSVR_ITMASK
) == GSVR_IT_REXC
) {
738 aurora_receive_exc(bp
,chip
);
740 &bp
->r
[chip
]->r
[CD180_EOSRR
]);
744 } else if (status
& SRSR_TEXT
) {
745 ack
= sbus_readb(&bp
->r3
->r
[bp
->ACK_TINT
]);
746 #ifdef AURORA_INT_DEBUG
747 printk("T-ACK %02x\n", ack
);
749 if ((ack
>> 5) == board_No(bp
)) {
750 if ((chip
=((ack
>>3)&3)-1) < AURORA_NCD180
) {
751 if ((ack
&GSVR_ITMASK
)==GSVR_IT_TX
) {
752 aurora_transmit(bp
,chip
);
754 &bp
->r
[chip
]->r
[CD180_EOSRR
]);
758 } else if (status
& SRSR_MEXT
) {
759 ack
= sbus_readb(&bp
->r3
->r
[bp
->ACK_MINT
]);
760 #ifdef AURORA_INT_DEBUG
761 printk("M-ACK %02x\n", ack
);
763 if ((ack
>> 5) == board_No(bp
)) {
764 if ((chip
= ((ack
>>3)&3)-1) < AURORA_NCD180
) {
765 if ((ack
&GSVR_ITMASK
)==GSVR_IT_MDM
) {
766 aurora_check_modem(bp
,chip
);
768 &bp
->r
[chip
]->r
[CD180_EOSRR
]);
774 /* I guess this faster code can be used with CD1865, using AUROPRI and GLOBPRI. */
776 while ((loop
++ < 48)&&(status
=bp
->r
[0]->r
[CD180_SRSR
]&SRSR_ANYINT
)){
777 #ifdef AURORA_INT_DEBUG
778 printk("SRSR: %02x\n",status
);
780 ack
= sbus_readb(&bp
->r3
->r
[0]);
781 #ifdef AURORA_INT_DEBUG
782 printk("ACK: %02x\n",ack
);
784 if ((ack
>>5)==board_No(bp
)) {
785 if ((chip
=((ack
>>3)&3)-1) < AURORA_NCD180
) {
787 if (ack
==GSVR_IT_RGD
) {
788 aurora_receive(bp
,chip
);
790 &bp
->r
[chip
]->r
[CD180_EOSRR
]);
791 } else if (ack
==GSVR_IT_REXC
) {
792 aurora_receive_exc(bp
,chip
);
794 &bp
->r
[chip
]->r
[CD180_EOSRR
]);
795 } else if (ack
==GSVR_IT_TX
) {
796 aurora_transmit(bp
,chip
);
798 &bp
->r
[chip
]->r
[CD180_EOSRR
]);
799 } else if (ack
==GSVR_IT_MDM
) {
800 aurora_check_modem(bp
,chip
);
802 &bp
->r
[chip
]->r
[CD180_EOSRR
]);
809 /* This is the old handling routine, used in riscom8 for only one CD180. I keep it here for reference. */
811 for(chip
=0;chip
<AURORA_NCD180
;chip
++){
812 chip_id
=(board_No(bp
)<<5)|((chip
+1)<<3);
814 while ((loop
++ < 1) &&
815 ((status
= sbus_readb(&bp
->r
[chip
]->r
[CD180_SRSR
])) &
816 (SRSR_TEXT
| SRSR_MEXT
| SRSR_REXT
))) {
818 if (status
& SRSR_REXT
) {
819 ack
= sbus_readb(&bp
->r3
->r
[bp
->ACK_RINT
]);
820 if (ack
== (chip_id
| GSVR_IT_RGD
)) {
824 aurora_receive(bp
,chip
);
825 } else if (ack
== (chip_id
| GSVR_IT_REXC
)) {
829 aurora_receive_exc(bp
,chip
);
831 #ifdef AURORA_INTNORM
832 printk("aurora%d-%d: Bad receive ack 0x%02x.\n",
833 board_No(bp
), chip
, ack
);
836 } else if (status
& SRSR_TEXT
) {
837 ack
= sbus_readb(&bp
->r3
->r
[bp
->ACK_TINT
]);
838 if (ack
== (chip_id
| GSVR_IT_TX
)){
842 aurora_transmit(bp
,chip
);
844 #ifdef AURORA_INTNORM
845 printk("aurora%d-%d: Bad transmit ack 0x%02x.\n",
846 board_No(bp
), chip
, ack
);
849 } else if (status
& SRSR_MEXT
) {
850 ack
= sbus_readb(&bp
->r3
->r
[bp
->ACK_MINT
]);
851 if (ack
== (chip_id
| GSVR_IT_MDM
)){
855 aurora_check_modem(bp
,chip
);
857 #ifdef AURORA_INTNORM
858 printk("aurora%d-%d: Bad modem ack 0x%02x.\n",
859 board_No(bp
), chip
, ack
);
863 sbus_writeb(0, &bp
->r
[chip
]->r
[CD180_EOSRR
]);
871 #ifdef AURORA_INT_DEBUG
872 static void aurora_timer (unsigned long ignored
);
874 static DEFINE_TIMER(aurora_poll_timer
, aurora_timer
, 0, 0);
877 aurora_timer (unsigned long ignored
)
882 save_flags(flags
); cli();
884 printk("SRSR: %02x,%02x - ",
885 sbus_readb(&aurora_board
[0].r
[0]->r
[CD180_SRSR
]),
886 sbus_readb(&aurora_board
[0].r
[1]->r
[CD180_SRSR
]));
887 for (i
= 0; i
< 4; i
++) {
890 sbus_readb(&aurora_board
[0].r3
->r
[i
]));
894 aurora_poll_timer
.expires
= jiffies
+ 300;
895 add_timer (&aurora_poll_timer
);
897 restore_flags(flags
);
902 * Routines for open & close processing.
905 /* Called with disabled interrupts */
906 static int aurora_setup_board(struct Aurora_board
* bp
)
912 for (i
= 0; i
< AURORA_ALLIRQ
; i
++) {
913 error
= request_irq(allirq
[i
]|0x30, aurora_interrupt
, SA_SHIRQ
,
916 printk(KERN_ERR
"IRQ%d request error %d\n",
920 error
= request_irq(bp
->irq
|0x30, aurora_interrupt
, SA_SHIRQ
,
923 printk(KERN_ERR
"IRQ request error %d\n", error
);
928 sbus_writeb(0, &bp
->r0
->r
);
930 if (bp
->flags
& AURORA_BOARD_TYPE_2
) {
933 sbus_writeb((AURORA_CFG_ENABLE_IO
| AURORA_CFG_ENABLE_IRQ
|
934 (((bp
->irq
)&0x0f)>>2)),
939 if (aurora_init_CD180(bp
,0))error
=1;error
=0;
940 if (aurora_init_CD180(bp
,1))error
++;
941 if (error
== AURORA_NCD180
) {
942 printk(KERN_ERR
"Both chips failed initialisation.\n");
946 #ifdef AURORA_INT_DEBUG
947 aurora_poll_timer
.expires
= jiffies
+ 1;
948 add_timer(&aurora_poll_timer
);
951 printk("aurora_setup_board: end\n");
956 /* Called with disabled interrupts */
957 static void aurora_shutdown_board(struct Aurora_board
*bp
)
962 printk("aurora_shutdown_board: start\n");
965 #ifdef AURORA_INT_DEBUG
966 del_timer(&aurora_poll_timer
);
970 for(i
=0;i
<AURORA_ALLIRQ
;i
++){
971 free_irq(allirq
[i
]|0x30, bp
);
972 /* IRQ_to_board[allirq[i]&0xf] = NULL;*/
975 free_irq(bp
->irq
|0x30, bp
);
976 /* IRQ_to_board[bp->irq&0xf] = NULL;*/
980 sbus_writeb(i
& 7, &bp
->r
[i
>>3]->r
[CD180_CAR
]);
982 sbus_writeb(0, &bp
->r
[i
>>3]->r
[CD180_MSVR
]);
986 sbus_writeb(0, &bp
->r0
->r
);
989 printk("aurora_shutdown_board: end\n");
993 /* Setting up port characteristics.
994 * Must be called with disabled interrupts
996 static void aurora_change_speed(struct Aurora_board
*bp
, struct Aurora_port
*port
)
998 struct tty_struct
*tty
;
1001 unsigned char cor1
= 0, cor3
= 0;
1002 unsigned char mcor1
= 0, mcor2
= 0,chip
;
1005 printk("aurora_change_speed: start\n");
1007 if (!(tty
= port
->tty
) || !tty
->termios
)
1010 chip
= AURORA_CD180(port_No(port
));
1014 port
->MSVR
= MSVR_RTS
|MSVR_DTR
;
1016 baud
= tty_get_baud_rate(tty
);
1018 /* Select port on the board */
1019 sbus_writeb(port_No(port
) & 7,
1020 &bp
->r
[chip
]->r
[CD180_CAR
]);
1024 /* Drop DTR & exit */
1025 port
->MSVR
&= ~(bp
->DTR
|bp
->RTS
);
1026 sbus_writeb(port
->MSVR
,
1027 &bp
->r
[chip
]->r
[CD180_MSVR
]);
1031 port
->MSVR
|= bp
->DTR
;
1032 sbus_writeb(port
->MSVR
,
1033 &bp
->r
[chip
]->r
[CD180_MSVR
]);
1036 /* Now we must calculate some speed dependent things. */
1038 /* Set baud rate for port. */
1039 tmp
= (((bp
->oscfreq
+ baud
/2) / baud
+
1040 CD180_TPC
/2) / CD180_TPC
);
1042 /* tmp = (bp->oscfreq/7)/baud;
1043 if((tmp%10)>4)tmp=tmp/10+1;else tmp=tmp/10;*/
1044 /* printk("Prescaler period: %d\n",tmp);*/
1046 sbus_writeb((tmp
>> 8) & 0xff,
1047 &bp
->r
[chip
]->r
[CD180_RBPRH
]);
1048 sbus_writeb((tmp
>> 8) & 0xff,
1049 &bp
->r
[chip
]->r
[CD180_TBPRH
]);
1050 sbus_writeb(tmp
& 0xff, &bp
->r
[chip
]->r
[CD180_RBPRL
]);
1051 sbus_writeb(tmp
& 0xff, &bp
->r
[chip
]->r
[CD180_TBPRL
]);
1053 baud
= (baud
+ 5) / 10; /* Estimated CPS */
1055 /* Two timer ticks seems enough to wakeup something like SLIP driver */
1056 tmp
= ((baud
+ HZ
/2) / HZ
) * 2 - CD180_NFIFO
;
1057 port
->wakeup_chars
= (tmp
< 0) ? 0 : ((tmp
>= SERIAL_XMIT_SIZE
) ?
1058 SERIAL_XMIT_SIZE
- 1 : tmp
);
1060 /* Receiver timeout will be transmission time for 1.5 chars */
1061 tmp
= (AURORA_TPS
+ AURORA_TPS
/2 + baud
/2) / baud
;
1062 tmp
= (tmp
> 0xff) ? 0xff : tmp
;
1063 sbus_writeb(tmp
, &bp
->r
[chip
]->r
[CD180_RTPR
]);
1065 switch (C_CSIZE(tty
)) {
1083 cor1
|= COR1_IGNORE
;
1084 if (C_PARENB(tty
)) {
1085 cor1
|= COR1_NORMPAR
;
1089 cor1
&= ~COR1_IGNORE
;
1091 /* Set marking of some errors */
1092 port
->mark_mask
= RCSR_OE
| RCSR_TOUT
;
1094 port
->mark_mask
|= RCSR_FE
| RCSR_PE
;
1095 if (I_BRKINT(tty
) || I_PARMRK(tty
))
1096 port
->mark_mask
|= RCSR_BREAK
;
1098 port
->mark_mask
&= ~(RCSR_FE
| RCSR_PE
);
1099 if (I_IGNBRK(tty
)) {
1100 port
->mark_mask
&= ~RCSR_BREAK
;
1102 /* Real raw mode. Ignore all */
1103 port
->mark_mask
&= ~RCSR_OE
;
1105 /* Enable Hardware Flow Control */
1106 if (C_CRTSCTS(tty
)) {
1107 /*#ifdef AURORA_BRAIN_DAMAGED_CTS
1108 port->SRER |= SRER_DSR | SRER_CTS;
1109 mcor1 |= MCOR1_DSRZD | MCOR1_CTSZD;
1110 mcor2 |= MCOR2_DSROD | MCOR2_CTSOD;
1111 tty->hw_stopped = !(aurora_in(bp, CD180_MSVR) & (MSVR_CTS|MSVR_DSR));
1113 port
->COR2
|= COR2_CTSAE
;
1115 if (bp
->flags
&AURORA_BOARD_DTR_FLOW_OK
) {
1116 mcor1
|= AURORA_RXTH
;
1119 /* Enable Software Flow Control. FIXME: I'm not sure about this */
1120 /* Some people reported that it works, but I still doubt */
1122 port
->COR2
|= COR2_TXIBE
;
1123 cor3
|= (COR3_FCT
| COR3_SCDE
);
1125 port
->COR2
|= COR2_IXM
;
1126 sbus_writeb(START_CHAR(tty
),
1127 &bp
->r
[chip
]->r
[CD180_SCHR1
]);
1128 sbus_writeb(STOP_CHAR(tty
),
1129 &bp
->r
[chip
]->r
[CD180_SCHR2
]);
1130 sbus_writeb(START_CHAR(tty
),
1131 &bp
->r
[chip
]->r
[CD180_SCHR3
]);
1132 sbus_writeb(STOP_CHAR(tty
),
1133 &bp
->r
[chip
]->r
[CD180_SCHR4
]);
1135 if (!C_CLOCAL(tty
)) {
1136 /* Enable CD check */
1137 port
->SRER
|= SRER_CD
;
1138 mcor1
|= MCOR1_CDZD
;
1139 mcor2
|= MCOR2_CDOD
;
1143 /* Enable receiver */
1144 port
->SRER
|= SRER_RXD
;
1146 /* Set input FIFO size (1-8 bytes) */
1147 cor3
|= AURORA_RXFIFO
;
1148 /* Setting up CD180 channel registers */
1149 sbus_writeb(cor1
, &bp
->r
[chip
]->r
[CD180_COR1
]);
1150 sbus_writeb(port
->COR2
, &bp
->r
[chip
]->r
[CD180_COR2
]);
1151 sbus_writeb(cor3
, &bp
->r
[chip
]->r
[CD180_COR3
]);
1152 /* Make CD180 know about registers change */
1153 aurora_wait_CCR(bp
->r
[chip
]);
1154 sbus_writeb(CCR_CORCHG1
| CCR_CORCHG2
| CCR_CORCHG3
,
1155 &bp
->r
[chip
]->r
[CD180_CCR
]);
1156 /* Setting up modem option registers */
1157 sbus_writeb(mcor1
, &bp
->r
[chip
]->r
[CD180_MCOR1
]);
1158 sbus_writeb(mcor2
, &bp
->r
[chip
]->r
[CD180_MCOR2
]);
1159 /* Enable CD180 transmitter & receiver */
1160 aurora_wait_CCR(bp
->r
[chip
]);
1161 sbus_writeb(CCR_TXEN
| CCR_RXEN
, &bp
->r
[chip
]->r
[CD180_CCR
]);
1162 /* Enable interrupts */
1163 sbus_writeb(port
->SRER
, &bp
->r
[chip
]->r
[CD180_SRER
]);
1164 /* And finally set RTS on */
1165 sbus_writeb(port
->MSVR
, &bp
->r
[chip
]->r
[CD180_MSVR
]);
1167 printk("aurora_change_speed: end\n");
1171 /* Must be called with interrupts enabled */
1172 static int aurora_setup_port(struct Aurora_board
*bp
, struct Aurora_port
*port
)
1174 unsigned long flags
;
1177 printk("aurora_setup_port: start %d\n",port_No(port
));
1179 if (port
->flags
& ASYNC_INITIALIZED
)
1182 if (!port
->xmit_buf
) {
1183 /* We may sleep in get_zeroed_page() */
1186 if (!(tmp
= get_zeroed_page(GFP_KERNEL
)))
1189 if (port
->xmit_buf
) {
1191 return -ERESTARTSYS
;
1193 port
->xmit_buf
= (unsigned char *) tmp
;
1196 save_flags(flags
); cli();
1199 clear_bit(TTY_IO_ERROR
, &port
->tty
->flags
);
1202 if ((port
->count
== 1) && ((++bp
->count
) == 1))
1203 bp
->flags
|= AURORA_BOARD_ACTIVE
;
1206 port
->xmit_cnt
= port
->xmit_head
= port
->xmit_tail
= 0;
1207 aurora_change_speed(bp
, port
);
1208 port
->flags
|= ASYNC_INITIALIZED
;
1210 restore_flags(flags
);
1212 printk("aurora_setup_port: end\n");
1217 /* Must be called with interrupts disabled */
1218 static void aurora_shutdown_port(struct Aurora_board
*bp
, struct Aurora_port
*port
)
1220 struct tty_struct
*tty
;
1224 printk("aurora_shutdown_port: start\n");
1226 if (!(port
->flags
& ASYNC_INITIALIZED
))
1229 chip
= AURORA_CD180(port_No(port
));
1231 #ifdef AURORA_REPORT_OVERRUN
1232 printk("aurora%d: port %d: Total %ld overruns were detected.\n",
1233 board_No(bp
), port_No(port
), port
->overrun
);
1235 #ifdef AURORA_REPORT_FIFO
1239 printk("aurora%d: port %d: FIFO hits [ ",
1240 board_No(bp
), port_No(port
));
1241 for (i
= 0; i
< 10; i
++) {
1242 printk("%ld ", port
->hits
[i
]);
1247 if (port
->xmit_buf
) {
1248 free_page((unsigned long) port
->xmit_buf
);
1249 port
->xmit_buf
= NULL
;
1252 if (!(tty
= port
->tty
) || C_HUPCL(tty
)) {
1254 port
->MSVR
&= ~(bp
->DTR
|bp
->RTS
);
1255 sbus_writeb(port
->MSVR
,
1256 &bp
->r
[chip
]->r
[CD180_MSVR
]);
1260 sbus_writeb(port_No(port
) & 7,
1261 &bp
->r
[chip
]->r
[CD180_CAR
]);
1265 aurora_wait_CCR(bp
->r
[chip
]);
1266 sbus_writeb(CCR_SOFTRESET
, &bp
->r
[chip
]->r
[CD180_CCR
]);
1268 /* Disable all interrupts from this port */
1270 sbus_writeb(port
->SRER
, &bp
->r
[chip
]->r
[CD180_SRER
]);
1273 set_bit(TTY_IO_ERROR
, &tty
->flags
);
1274 port
->flags
&= ~ASYNC_INITIALIZED
;
1277 if (--bp
->count
< 0) {
1278 printk(KERN_DEBUG
"aurora%d: aurora_shutdown_port: "
1279 "bad board count: %d\n",
1280 board_No(bp
), bp
->count
);
1285 bp
->flags
&= ~AURORA_BOARD_ACTIVE
;
1289 printk("aurora_shutdown_port: end\n");
1294 static int block_til_ready(struct tty_struct
*tty
, struct file
* filp
,
1295 struct Aurora_port
*port
)
1297 DECLARE_WAITQUEUE(wait
, current
);
1298 struct Aurora_board
*bp
= port_Board(port
);
1305 printk("block_til_ready: start\n");
1307 chip
= AURORA_CD180(port_No(port
));
1309 /* If the device is in the middle of being closed, then block
1310 * until it's done, and then try again.
1312 if (tty_hung_up_p(filp
) || port
->flags
& ASYNC_CLOSING
) {
1313 interruptible_sleep_on(&port
->close_wait
);
1314 if (port
->flags
& ASYNC_HUP_NOTIFY
)
1317 return -ERESTARTSYS
;
1320 /* If non-blocking mode is set, or the port is not enabled,
1321 * then make the check up front and then exit.
1323 if ((filp
->f_flags
& O_NONBLOCK
) ||
1324 (tty
->flags
& (1 << TTY_IO_ERROR
))) {
1325 port
->flags
|= ASYNC_NORMAL_ACTIVE
;
1332 /* Block waiting for the carrier detect and the line to become
1333 * free (i.e., not in use by the callout). While we are in
1334 * this loop, info->count is dropped by one, so that
1335 * rs_close() knows when to free things. We restore it upon
1336 * exit, either normal or abnormal.
1339 add_wait_queue(&port
->open_wait
, &wait
);
1341 if (!tty_hung_up_p(filp
))
1344 port
->blocked_open
++;
1347 sbus_writeb(port_No(port
) & 7,
1348 &bp
->r
[chip
]->r
[CD180_CAR
]);
1350 CD
= sbus_readb(&bp
->r
[chip
]->r
[CD180_MSVR
]) & MSVR_CD
;
1353 /* auto drops DTR */
1354 sbus_writeb(port
->MSVR
, &bp
->r
[chip
]->r
[CD180_MSVR
]);
1356 set_current_state(TASK_INTERRUPTIBLE
);
1357 if (tty_hung_up_p(filp
) ||
1358 !(port
->flags
& ASYNC_INITIALIZED
)) {
1359 if (port
->flags
& ASYNC_HUP_NOTIFY
)
1362 retval
= -ERESTARTSYS
;
1365 if (!(port
->flags
& ASYNC_CLOSING
) &&
1368 if (signal_pending(current
)) {
1369 retval
= -ERESTARTSYS
;
1374 current
->state
= TASK_RUNNING
;
1375 remove_wait_queue(&port
->open_wait
, &wait
);
1376 if (!tty_hung_up_p(filp
))
1378 port
->blocked_open
--;
1382 port
->flags
|= ASYNC_NORMAL_ACTIVE
;
1384 printk("block_til_ready: end\n");
1389 static int aurora_open(struct tty_struct
* tty
, struct file
* filp
)
1393 struct Aurora_port
* port
;
1394 struct Aurora_board
* bp
;
1395 unsigned long flags
;
1398 printk("aurora_open: start\n");
1401 board
= AURORA_BOARD(tty
->index
);
1402 if (board
> AURORA_NBOARD
||
1403 !(aurora_board
[board
].flags
& AURORA_BOARD_PRESENT
)) {
1405 printk("aurora_open: error board %d present %d\n",
1406 board
, aurora_board
[board
].flags
& AURORA_BOARD_PRESENT
);
1411 bp
= &aurora_board
[board
];
1412 port
= aurora_port
+ board
* AURORA_NPORT
* AURORA_NCD180
+ AURORA_PORT(tty
->index
);
1413 if ((aurora_paranoia_check(port
, tty
->name
, "aurora_open")) {
1415 printk("aurora_open: error paranoia check\n");
1421 tty
->driver_data
= port
;
1424 if ((error
= aurora_setup_port(bp
, port
))) {
1426 printk("aurora_open: error aurora_setup_port ret %d\n",error
);
1431 if ((error
= block_til_ready(tty
, filp
, port
))) {
1433 printk("aurora_open: error block_til_ready ret %d\n",error
);
1439 printk("aurora_open: end\n");
1444 static void aurora_close(struct tty_struct
* tty
, struct file
* filp
)
1446 struct Aurora_port
*port
= (struct Aurora_port
*) tty
->driver_data
;
1447 struct Aurora_board
*bp
;
1448 unsigned long flags
;
1449 unsigned long timeout
;
1453 printk("aurora_close: start\n");
1456 if (!port
|| (aurora_paranoia_check(port
, tty
->name
, "close"))
1459 chip
= AURORA_CD180(port_No(port
));
1461 save_flags(flags
); cli();
1462 if (tty_hung_up_p(filp
)) {
1463 restore_flags(flags
);
1467 bp
= port_Board(port
);
1468 if ((tty
->count
== 1) && (port
->count
!= 1)) {
1469 printk(KERN_DEBUG
"aurora%d: aurora_close: bad port count; "
1470 "tty->count is 1, port count is %d\n",
1471 board_No(bp
), port
->count
);
1474 if (--port
->count
< 0) {
1475 printk(KERN_DEBUG
"aurora%d: aurora_close: bad port "
1476 "count for tty%d: %d\n",
1477 board_No(bp
), port_No(port
), port
->count
);
1481 restore_flags(flags
);
1484 port
->flags
|= ASYNC_CLOSING
;
1486 /* Now we wait for the transmit buffer to clear; and we notify
1487 * the line discipline to only process XON/XOFF characters.
1490 if (port
->closing_wait
!= ASYNC_CLOSING_WAIT_NONE
){
1492 printk("aurora_close: waiting to flush...\n");
1494 tty_wait_until_sent(tty
, port
->closing_wait
);
1497 /* At this point we stop accepting input. To do this, we
1498 * disable the receive line status interrupts, and tell the
1499 * interrupt driver to stop checking the data ready bit in the
1500 * line status register.
1502 port
->SRER
&= ~SRER_RXD
;
1503 if (port
->flags
& ASYNC_INITIALIZED
) {
1504 port
->SRER
&= ~SRER_TXRDY
;
1505 port
->SRER
|= SRER_TXEMPTY
;
1506 sbus_writeb(port_No(port
) & 7,
1507 &bp
->r
[chip
]->r
[CD180_CAR
]);
1509 sbus_writeb(port
->SRER
, &bp
->r
[chip
]->r
[CD180_SRER
]);
1511 * Before we drop DTR, make sure the UART transmitter
1512 * has completely drained; this is especially
1513 * important if there is a transmit FIFO!
1515 timeout
= jiffies
+HZ
;
1516 while(port
->SRER
& SRER_TXEMPTY
) {
1517 msleep_interruptible(jiffies_to_msecs(port
->timeout
));
1518 if (time_after(jiffies
, timeout
))
1523 printk("aurora_close: shutdown_port\n");
1525 aurora_shutdown_port(bp
, port
);
1526 if (tty
->driver
->flush_buffer
)
1527 tty
->driver
->flush_buffer(tty
);
1528 tty_ldisc_flush(tty
);
1532 if (port
->blocked_open
) {
1533 if (port
->close_delay
) {
1534 msleep_interruptible(jiffies_to_msecs(port
->close_delay
));
1536 wake_up_interruptible(&port
->open_wait
);
1538 port
->flags
&= ~(ASYNC_NORMAL_ACTIVE
|ASYNC_CLOSING
);
1539 wake_up_interruptible(&port
->close_wait
);
1540 restore_flags(flags
);
1542 printk("aurora_close: end\n");
1546 static int aurora_write(struct tty_struct
* tty
,
1547 const unsigned char *buf
, int count
)
1549 struct Aurora_port
*port
= (struct Aurora_port
*) tty
->driver_data
;
1550 struct Aurora_board
*bp
;
1552 unsigned long flags
;
1556 printk("aurora_write: start %d\n",count
);
1558 if ((aurora_paranoia_check(port
, tty
->name
, "aurora_write"))
1561 chip
= AURORA_CD180(port_No(port
));
1563 bp
= port_Board(port
);
1565 if (!tty
|| !port
->xmit_buf
|| !tmp_buf
)
1571 c
= min(count
, min(SERIAL_XMIT_SIZE
- port
->xmit_cnt
- 1,
1572 SERIAL_XMIT_SIZE
- port
->xmit_head
));
1574 restore_flags(flags
);
1577 memcpy(port
->xmit_buf
+ port
->xmit_head
, buf
, c
);
1578 port
->xmit_head
= (port
->xmit_head
+ c
) & (SERIAL_XMIT_SIZE
-1);
1579 port
->xmit_cnt
+= c
;
1580 restore_flags(flags
);
1588 if (port
->xmit_cnt
&& !tty
->stopped
&& !tty
->hw_stopped
&&
1589 !(port
->SRER
& SRER_TXRDY
)) {
1590 port
->SRER
|= SRER_TXRDY
;
1591 sbus_writeb(port_No(port
) & 7,
1592 &bp
->r
[chip
]->r
[CD180_CAR
]);
1594 sbus_writeb(port
->SRER
, &bp
->r
[chip
]->r
[CD180_SRER
]);
1596 restore_flags(flags
);
1598 printk("aurora_write: end %d\n",total
);
1603 static void aurora_put_char(struct tty_struct
* tty
, unsigned char ch
)
1605 struct Aurora_port
*port
= (struct Aurora_port
*) tty
->driver_data
;
1606 unsigned long flags
;
1609 printk("aurora_put_char: start %c\n",ch
);
1611 if ((aurora_paranoia_check(port
, tty
->name
, "aurora_put_char"))
1614 if (!tty
|| !port
->xmit_buf
)
1617 save_flags(flags
); cli();
1619 if (port
->xmit_cnt
>= SERIAL_XMIT_SIZE
- 1) {
1620 restore_flags(flags
);
1624 port
->xmit_buf
[port
->xmit_head
++] = ch
;
1625 port
->xmit_head
&= SERIAL_XMIT_SIZE
- 1;
1627 restore_flags(flags
);
1629 printk("aurora_put_char: end\n");
1633 static void aurora_flush_chars(struct tty_struct
* tty
)
1635 struct Aurora_port
*port
= (struct Aurora_port
*) tty
->driver_data
;
1636 unsigned long flags
;
1639 /*#ifdef AURORA_DEBUG
1640 printk("aurora_flush_chars: start\n");
1642 if ((aurora_paranoia_check(port
, tty
->name
, "aurora_flush_chars"))
1645 chip
= AURORA_CD180(port_No(port
));
1647 if (port
->xmit_cnt
<= 0 || tty
->stopped
|| tty
->hw_stopped
||
1651 save_flags(flags
); cli();
1652 port
->SRER
|= SRER_TXRDY
;
1653 sbus_writeb(port_No(port
) & 7,
1654 &port_Board(port
)->r
[chip
]->r
[CD180_CAR
]);
1656 sbus_writeb(port
->SRER
,
1657 &port_Board(port
)->r
[chip
]->r
[CD180_SRER
]);
1658 restore_flags(flags
);
1659 /*#ifdef AURORA_DEBUG
1660 printk("aurora_flush_chars: end\n");
1664 static int aurora_write_room(struct tty_struct
* tty
)
1666 struct Aurora_port
*port
= (struct Aurora_port
*) tty
->driver_data
;
1670 printk("aurora_write_room: start\n");
1672 if ((aurora_paranoia_check(port
, tty
->name
, "aurora_write_room"))
1675 ret
= SERIAL_XMIT_SIZE
- port
->xmit_cnt
- 1;
1679 printk("aurora_write_room: end\n");
1684 static int aurora_chars_in_buffer(struct tty_struct
*tty
)
1686 struct Aurora_port
*port
= (struct Aurora_port
*) tty
->driver_data
;
1688 if ((aurora_paranoia_check(port
, tty
->name
, "aurora_chars_in_buffer"))
1691 return port
->xmit_cnt
;
1694 static void aurora_flush_buffer(struct tty_struct
*tty
)
1696 struct Aurora_port
*port
= (struct Aurora_port
*) tty
->driver_data
;
1697 unsigned long flags
;
1700 printk("aurora_flush_buffer: start\n");
1702 if ((aurora_paranoia_check(port
, tty
->name
, "aurora_flush_buffer"))
1705 save_flags(flags
); cli();
1706 port
->xmit_cnt
= port
->xmit_head
= port
->xmit_tail
= 0;
1707 restore_flags(flags
);
1711 printk("aurora_flush_buffer: end\n");
1715 static int aurora_tiocmget(struct tty_struct
*tty
, struct file
*file
)
1717 struct Aurora_port
*port
= (struct Aurora_port
*) tty
->driver_data
;
1718 struct Aurora_board
* bp
;
1719 unsigned char status
,chip
;
1720 unsigned int result
;
1721 unsigned long flags
;
1724 printk("aurora_get_modem_info: start\n");
1726 if ((aurora_paranoia_check(port
, tty
->name
, __FUNCTION__
))
1729 chip
= AURORA_CD180(port_No(port
));
1731 bp
= port_Board(port
);
1733 save_flags(flags
); cli();
1735 sbus_writeb(port_No(port
) & 7, &bp
->r
[chip
]->r
[CD180_CAR
]);
1738 status
= sbus_readb(&bp
->r
[chip
]->r
[CD180_MSVR
]);
1739 result
= 0/*bp->r[chip]->r[AURORA_RI] & (1u << port_No(port)) ? 0 : TIOCM_RNG*/;
1741 restore_flags(flags
);
1743 result
|= ((status
& bp
->RTS
) ? TIOCM_RTS
: 0)
1744 | ((status
& bp
->DTR
) ? TIOCM_DTR
: 0)
1745 | ((status
& MSVR_CD
) ? TIOCM_CAR
: 0)
1746 | ((status
& MSVR_DSR
) ? TIOCM_DSR
: 0)
1747 | ((status
& MSVR_CTS
) ? TIOCM_CTS
: 0);
1750 printk("aurora_get_modem_info: end\n");
1755 static int aurora_tiocmset(struct tty_struct
*tty
, struct file
*file
,
1756 unsigned int set
, unsigned int clear
)
1758 struct Aurora_port
*port
= (struct Aurora_port
*) tty
->driver_data
;
1760 unsigned long flags
;
1761 struct Aurora_board
*bp
= port_Board(port
);
1765 printk("aurora_set_modem_info: start\n");
1767 if ((aurora_paranoia_check(port
, tty
->name
, __FUNCTION__
))
1770 chip
= AURORA_CD180(port_No(port
));
1772 save_flags(flags
); cli();
1773 if (set
& TIOCM_RTS
)
1774 port
->MSVR
|= bp
->RTS
;
1775 if (set
& TIOCM_DTR
)
1776 port
->MSVR
|= bp
->DTR
;
1777 if (clear
& TIOCM_RTS
)
1778 port
->MSVR
&= ~bp
->RTS
;
1779 if (clear
& TIOCM_DTR
)
1780 port
->MSVR
&= ~bp
->DTR
;
1782 sbus_writeb(port_No(port
) & 7, &bp
->r
[chip
]->r
[CD180_CAR
]);
1785 sbus_writeb(port
->MSVR
, &bp
->r
[chip
]->r
[CD180_MSVR
]);
1787 restore_flags(flags
);
1789 printk("aurora_set_modem_info: end\n");
1794 static void aurora_send_break(struct Aurora_port
* port
, unsigned long length
)
1796 struct Aurora_board
*bp
= port_Board(port
);
1797 unsigned long flags
;
1801 printk("aurora_send_break: start\n");
1803 chip
= AURORA_CD180(port_No(port
));
1805 save_flags(flags
); cli();
1807 port
->break_length
= AURORA_TPS
/ HZ
* length
;
1808 port
->COR2
|= COR2_ETC
;
1809 port
->SRER
|= SRER_TXRDY
;
1810 sbus_writeb(port_No(port
) & 7, &bp
->r
[chip
]->r
[CD180_CAR
]);
1813 sbus_writeb(port
->COR2
, &bp
->r
[chip
]->r
[CD180_COR2
]);
1814 sbus_writeb(port
->SRER
, &bp
->r
[chip
]->r
[CD180_SRER
]);
1815 aurora_wait_CCR(bp
->r
[chip
]);
1817 sbus_writeb(CCR_CORCHG2
, &bp
->r
[chip
]->r
[CD180_CCR
]);
1818 aurora_wait_CCR(bp
->r
[chip
]);
1820 restore_flags(flags
);
1822 printk("aurora_send_break: end\n");
1826 static int aurora_set_serial_info(struct Aurora_port
* port
,
1827 struct serial_struct
* newinfo
)
1829 struct serial_struct tmp
;
1830 struct Aurora_board
*bp
= port_Board(port
);
1832 unsigned long flags
;
1835 printk("aurora_set_serial_info: start\n");
1837 if (copy_from_user(&tmp
, newinfo
, sizeof(tmp
)))
1840 if ((tmp
.irq
!= bp
->irq
) ||
1841 (tmp
.port
!= bp
->base
) ||
1842 (tmp
.type
!= PORT_CIRRUS
) ||
1843 (tmp
.baud_base
!= (bp
->oscfreq
+ CD180_TPC
/2) / CD180_TPC
) ||
1844 (tmp
.custom_divisor
!= 0) ||
1845 (tmp
.xmit_fifo_size
!= CD180_NFIFO
) ||
1846 (tmp
.flags
& ~AURORA_LEGAL_FLAGS
))
1850 change_speed
= ((port
->flags
& ASYNC_SPD_MASK
) !=
1851 (tmp
.flags
& ASYNC_SPD_MASK
));
1853 if (!capable(CAP_SYS_ADMIN
)) {
1854 if ((tmp
.close_delay
!= port
->close_delay
) ||
1855 (tmp
.closing_wait
!= port
->closing_wait
) ||
1856 ((tmp
.flags
& ~ASYNC_USR_MASK
) !=
1857 (port
->flags
& ~ASYNC_USR_MASK
)))
1859 port
->flags
= ((port
->flags
& ~ASYNC_USR_MASK
) |
1860 (tmp
.flags
& ASYNC_USR_MASK
));
1862 port
->flags
= ((port
->flags
& ~ASYNC_FLAGS
) |
1863 (tmp
.flags
& ASYNC_FLAGS
));
1864 port
->close_delay
= tmp
.close_delay
;
1865 port
->closing_wait
= tmp
.closing_wait
;
1868 save_flags(flags
); cli();
1869 aurora_change_speed(bp
, port
);
1870 restore_flags(flags
);
1873 printk("aurora_set_serial_info: end\n");
1878 extern int aurora_get_serial_info(struct Aurora_port
* port
,
1879 struct serial_struct
* retinfo
)
1881 struct serial_struct tmp
;
1882 struct Aurora_board
*bp
= port_Board(port
);
1885 printk("aurora_get_serial_info: start\n");
1887 if (!access_ok(VERIFY_WRITE
, (void *) retinfo
, sizeof(tmp
)))
1890 memset(&tmp
, 0, sizeof(tmp
));
1891 tmp
.type
= PORT_CIRRUS
;
1892 tmp
.line
= port
- aurora_port
;
1895 tmp
.flags
= port
->flags
;
1896 tmp
.baud_base
= (bp
->oscfreq
+ CD180_TPC
/2) / CD180_TPC
;
1897 tmp
.close_delay
= port
->close_delay
* HZ
/100;
1898 tmp
.closing_wait
= port
->closing_wait
* HZ
/100;
1899 tmp
.xmit_fifo_size
= CD180_NFIFO
;
1900 copy_to_user(retinfo
, &tmp
, sizeof(tmp
));
1902 printk("aurora_get_serial_info: end\n");
1907 static int aurora_ioctl(struct tty_struct
* tty
, struct file
* filp
,
1908 unsigned int cmd
, unsigned long arg
)
1911 struct Aurora_port
*port
= (struct Aurora_port
*) tty
->driver_data
;
1915 printk("aurora_ioctl: start\n");
1917 if ((aurora_paranoia_check(port
, tty
->name
, "aurora_ioctl"))
1921 case TCSBRK
: /* SVID version: non-zero arg --> no break */
1922 retval
= tty_check_change(tty
);
1925 tty_wait_until_sent(tty
, 0);
1927 aurora_send_break(port
, HZ
/4); /* 1/4 second */
1929 case TCSBRKP
: /* support for POSIX tcsendbreak() */
1930 retval
= tty_check_change(tty
);
1933 tty_wait_until_sent(tty
, 0);
1934 aurora_send_break(port
, arg
? arg
*(HZ
/10) : HZ
/4);
1937 return put_user(C_CLOCAL(tty
) ? 1 : 0, (unsigned long *)arg
);
1939 if (get_user(arg
,(unsigned long *)arg
))
1941 tty
->termios
->c_cflag
=
1942 ((tty
->termios
->c_cflag
& ~CLOCAL
) |
1943 (arg
? CLOCAL
: 0));
1946 return aurora_get_serial_info(port
, (struct serial_struct
*) arg
);
1948 return aurora_set_serial_info(port
, (struct serial_struct
*) arg
);
1950 return -ENOIOCTLCMD
;
1953 printk("aurora_ioctl: end\n");
1958 static void aurora_throttle(struct tty_struct
* tty
)
1960 struct Aurora_port
*port
= (struct Aurora_port
*) tty
->driver_data
;
1961 struct Aurora_board
*bp
;
1962 unsigned long flags
;
1966 printk("aurora_throttle: start\n");
1968 if ((aurora_paranoia_check(port
, tty
->name
, "aurora_throttle"))
1971 bp
= port_Board(port
);
1972 chip
= AURORA_CD180(port_No(port
));
1974 save_flags(flags
); cli();
1975 port
->MSVR
&= ~bp
->RTS
;
1976 sbus_writeb(port_No(port
) & 7, &bp
->r
[chip
]->r
[CD180_CAR
]);
1979 aurora_wait_CCR(bp
->r
[chip
]);
1980 sbus_writeb(CCR_SSCH2
, &bp
->r
[chip
]->r
[CD180_CCR
]);
1981 aurora_wait_CCR(bp
->r
[chip
]);
1983 sbus_writeb(port
->MSVR
, &bp
->r
[chip
]->r
[CD180_MSVR
]);
1984 restore_flags(flags
);
1986 printk("aurora_throttle: end\n");
1990 static void aurora_unthrottle(struct tty_struct
* tty
)
1992 struct Aurora_port
*port
= (struct Aurora_port
*) tty
->driver_data
;
1993 struct Aurora_board
*bp
;
1994 unsigned long flags
;
1998 printk("aurora_unthrottle: start\n");
2000 if ((aurora_paranoia_check(port
, tty
->name
, "aurora_unthrottle"))
2003 bp
= port_Board(port
);
2005 chip
= AURORA_CD180(port_No(port
));
2007 save_flags(flags
); cli();
2008 port
->MSVR
|= bp
->RTS
;
2009 sbus_writeb(port_No(port
) & 7,
2010 &bp
->r
[chip
]->r
[CD180_CAR
]);
2013 aurora_wait_CCR(bp
->r
[chip
]);
2014 sbus_writeb(CCR_SSCH1
,
2015 &bp
->r
[chip
]->r
[CD180_CCR
]);
2016 aurora_wait_CCR(bp
->r
[chip
]);
2018 sbus_writeb(port
->MSVR
, &bp
->r
[chip
]->r
[CD180_MSVR
]);
2019 restore_flags(flags
);
2021 printk("aurora_unthrottle: end\n");
2025 static void aurora_stop(struct tty_struct
* tty
)
2027 struct Aurora_port
*port
= (struct Aurora_port
*) tty
->driver_data
;
2028 struct Aurora_board
*bp
;
2029 unsigned long flags
;
2033 printk("aurora_stop: start\n");
2035 if ((aurora_paranoia_check(port
, tty
->name
, "aurora_stop"))
2038 bp
= port_Board(port
);
2040 chip
= AURORA_CD180(port_No(port
));
2042 save_flags(flags
); cli();
2043 port
->SRER
&= ~SRER_TXRDY
;
2044 sbus_writeb(port_No(port
) & 7,
2045 &bp
->r
[chip
]->r
[CD180_CAR
]);
2047 sbus_writeb(port
->SRER
,
2048 &bp
->r
[chip
]->r
[CD180_SRER
]);
2049 restore_flags(flags
);
2051 printk("aurora_stop: end\n");
2055 static void aurora_start(struct tty_struct
* tty
)
2057 struct Aurora_port
*port
= (struct Aurora_port
*) tty
->driver_data
;
2058 struct Aurora_board
*bp
;
2059 unsigned long flags
;
2063 printk("aurora_start: start\n");
2065 if ((aurora_paranoia_check(port
, tty
->name
, "aurora_start"))
2068 bp
= port_Board(port
);
2070 chip
= AURORA_CD180(port_No(port
));
2072 save_flags(flags
); cli();
2073 if (port
->xmit_cnt
&& port
->xmit_buf
&& !(port
->SRER
& SRER_TXRDY
)) {
2074 port
->SRER
|= SRER_TXRDY
;
2075 sbus_writeb(port_No(port
) & 7,
2076 &bp
->r
[chip
]->r
[CD180_CAR
]);
2078 sbus_writeb(port
->SRER
,
2079 &bp
->r
[chip
]->r
[CD180_SRER
]);
2081 restore_flags(flags
);
2083 printk("aurora_start: end\n");
2088 * This routine is called from the scheduler tqueue when the interrupt
2089 * routine has signalled that a hangup has occurred. The path of
2090 * hangup processing is:
2092 * serial interrupt routine -> (scheduler tqueue) ->
2093 * do_aurora_hangup() -> tty->hangup() -> aurora_hangup()
2096 static void do_aurora_hangup(void *private_
)
2098 struct Aurora_port
*port
= (struct Aurora_port
*) private_
;
2099 struct tty_struct
*tty
;
2102 printk("do_aurora_hangup: start\n");
2106 tty_hangup(tty
); /* FIXME: module removal race - AKPM */
2108 printk("do_aurora_hangup: end\n");
2113 static void aurora_hangup(struct tty_struct
* tty
)
2115 struct Aurora_port
*port
= (struct Aurora_port
*) tty
->driver_data
;
2116 struct Aurora_board
*bp
;
2119 printk("aurora_hangup: start\n");
2121 if ((aurora_paranoia_check(port
, tty
->name
, "aurora_hangup"))
2124 bp
= port_Board(port
);
2126 aurora_shutdown_port(bp
, port
);
2129 port
->flags
&= ~ASYNC_NORMAL_ACTIVE
;
2131 wake_up_interruptible(&port
->open_wait
);
2133 printk("aurora_hangup: end\n");
2137 static void aurora_set_termios(struct tty_struct
* tty
, struct termios
* old_termios
)
2139 struct Aurora_port
*port
= (struct Aurora_port
*) tty
->driver_data
;
2140 unsigned long flags
;
2143 printk("aurora_set_termios: start\n");
2145 if ((aurora_paranoia_check(port
, tty
->name
, "aurora_set_termios"))
2148 if (tty
->termios
->c_cflag
== old_termios
->c_cflag
&&
2149 tty
->termios
->c_iflag
== old_termios
->c_iflag
)
2152 save_flags(flags
); cli();
2153 aurora_change_speed(port_Board(port
), port
);
2154 restore_flags(flags
);
2156 if ((old_termios
->c_cflag
& CRTSCTS
) &&
2157 !(tty
->termios
->c_cflag
& CRTSCTS
)) {
2158 tty
->hw_stopped
= 0;
2162 printk("aurora_set_termios: end\n");
2166 static void do_aurora_bh(void)
2168 run_task_queue(&tq_aurora
);
2171 static void do_softint(void *private_
)
2173 struct Aurora_port
*port
= (struct Aurora_port
*) private_
;
2174 struct tty_struct
*tty
;
2177 printk("do_softint: start\n");
2183 if (test_and_clear_bit(RS_EVENT_WRITE_WAKEUP
, &port
->event
)) {
2187 printk("do_softint: end\n");
2191 static struct tty_operations aurora_ops
= {
2192 .open
= aurora_open
,
2193 .close
= aurora_close
,
2194 .write
= aurora_write
,
2195 .put_char
= aurora_put_char
,
2196 .flush_chars
= aurora_flush_chars
,
2197 .write_room
= aurora_write_room
,
2198 .chars_in_buffer
= aurora_chars_in_buffer
,
2199 .flush_buffer
= aurora_flush_buffer
,
2200 .ioctl
= aurora_ioctl
,
2201 .throttle
= aurora_throttle
,
2202 .unthrottle
= aurora_unthrottle
,
2203 .set_termios
= aurora_set_termios
,
2204 .stop
= aurora_stop
,
2205 .start
= aurora_start
,
2206 .hangup
= aurora_hangup
,
2207 .tiocmget
= aurora_tiocmget
,
2208 .tiocmset
= aurora_tiocmset
,
2211 static int aurora_init_drivers(void)
2217 printk("aurora_init_drivers: start\n");
2219 tmp_buf
= (unsigned char *) get_zeroed_page(GFP_KERNEL
);
2220 if (tmp_buf
== NULL
) {
2221 printk(KERN_ERR
"aurora: Couldn't get free page.\n");
2224 init_bh(AURORA_BH
, do_aurora_bh
);
2225 aurora_driver
= alloc_tty_driver(AURORA_INPORTS
);
2226 if (!aurora_driver
) {
2227 printk(KERN_ERR
"aurora: Couldn't allocate tty driver.\n");
2228 free_page((unsigned long) tmp_buf
);
2231 aurora_driver
->owner
= THIS_MODULE
;
2232 aurora_driver
->name
= "ttyA";
2233 aurora_driver
->major
= AURORA_MAJOR
;
2234 aurora_driver
->type
= TTY_DRIVER_TYPE_SERIAL
;
2235 aurora_driver
->subtype
= SERIAL_TYPE_NORMAL
;
2236 aurora_driver
->init_termios
= tty_std_termios
;
2237 aurora_driver
->init_termios
.c_cflag
=
2238 B9600
| CS8
| CREAD
| HUPCL
| CLOCAL
;
2239 aurora_driver
->flags
= TTY_DRIVER_REAL_RAW
;
2240 tty_set_operations(aurora_driver
, &aurora_ops
);
2241 error
= tty_register_driver(aurora_driver
);
2243 put_tty_driver(aurora_driver
);
2244 free_page((unsigned long) tmp_buf
);
2245 printk(KERN_ERR
"aurora: Couldn't register aurora driver, error = %d\n",
2250 memset(aurora_port
, 0, sizeof(aurora_port
));
2251 for (i
= 0; i
< AURORA_TNPORTS
; i
++) {
2252 aurora_port
[i
].magic
= AURORA_MAGIC
;
2253 aurora_port
[i
].tqueue
.routine
= do_softint
;
2254 aurora_port
[i
].tqueue
.data
= &aurora_port
[i
];
2255 aurora_port
[i
].tqueue_hangup
.routine
= do_aurora_hangup
;
2256 aurora_port
[i
].tqueue_hangup
.data
= &aurora_port
[i
];
2257 aurora_port
[i
].close_delay
= 50 * HZ
/100;
2258 aurora_port
[i
].closing_wait
= 3000 * HZ
/100;
2259 init_waitqueue_head(&aurora_port
[i
].open_wait
);
2260 init_waitqueue_head(&aurora_port
[i
].close_wait
);
2263 printk("aurora_init_drivers: end\n");
2268 static void aurora_release_drivers(void)
2271 printk("aurora_release_drivers: start\n");
2273 free_page((unsigned long)tmp_buf
);
2274 tty_unregister_driver(aurora_driver
);
2275 put_tty_driver(aurora_driver
);
2277 printk("aurora_release_drivers: end\n");
2282 * Called at boot time.
2284 * You can specify IO base for up to RC_NBOARD cards,
2285 * using line "riscom8=0xiobase1,0xiobase2,.." at LILO prompt.
2286 * Note that there will be no probing at default
2287 * addresses in this case.
2290 void __init
aurora_setup(char *str
, int *ints
)
2294 for(i
=0;(i
<ints
[0])&&(i
<4);i
++) {
2295 if (ints
[i
+1]) irqs
[i
]=ints
[i
+1];
2299 static int __init
aurora_real_init(void)
2304 printk(KERN_INFO
"aurora: Driver starting.\n");
2305 if(aurora_init_drivers())
2307 found
= aurora_probe();
2309 aurora_release_drivers();
2310 printk(KERN_INFO
"aurora: No Aurora Multiport boards detected.\n");
2313 printk(KERN_INFO
"aurora: %d boards found.\n", found
);
2315 for (i
= 0; i
< found
; i
++) {
2316 int ret
= aurora_setup_board(&aurora_board
[i
]);
2320 printk(KERN_ERR
"aurora_init: error aurora_setup_board ret %d\n",
2333 module_param(irq
, int, 0);
2334 module_param(irq1
, int, 0);
2335 module_param(irq2
, int, 0);
2336 module_param(irq3
, int, 0);
2338 static int __init
aurora_init(void)
2340 if (irq
) irqs
[0]=irq
;
2341 if (irq1
) irqs
[1]=irq1
;
2342 if (irq2
) irqs
[2]=irq2
;
2343 if (irq3
) irqs
[3]=irq3
;
2344 return aurora_real_init();
2347 static void __exit
aurora_cleanup(void)
2352 printk("cleanup_module: aurora_release_drivers\n");
2355 aurora_release_drivers();
2356 for (i
= 0; i
< AURORA_NBOARD
; i
++)
2357 if (aurora_board
[i
].flags
& AURORA_BOARD_PRESENT
) {
2358 aurora_shutdown_board(&aurora_board
[i
]);
2359 aurora_release_io_range(&aurora_board
[i
]);
2363 module_init(aurora_init
);
2364 module_exit(aurora_cleanup
);
2365 MODULE_LICENSE("GPL");