]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/serial/serial_txx9.c
intel-iommu: Fix array overflow
[mirror_ubuntu-artful-kernel.git] / drivers / serial / serial_txx9.c
CommitLineData
1da177e4
LT
1/*
2 * drivers/serial/serial_txx9.c
3 *
4 * Derived from many drivers using generic_serial interface,
5 * especially serial_tx3912.c by Steven J. Hill and r39xx_serial.c
6 * (was in Linux/VR tree) by Jim Pick.
7 *
8 * Copyright (C) 1999 Harald Koerfgen
9 * Copyright (C) 2000 Jim Pick <jim@jimpick.com>
10 * Copyright (C) 2001 Steven J. Hill (sjhill@realitydiluted.com)
11 * Copyright (C) 2000-2002 Toshiba Corporation
12 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License version 2 as
15 * published by the Free Software Foundation.
16 *
17 * Serial driver for TX3927/TX4927/TX4925/TX4938 internal SIO controller
1da177e4 18 */
1da177e4
LT
19
20#if defined(CONFIG_SERIAL_TXX9_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
21#define SUPPORT_SYSRQ
22#endif
23
24#include <linux/module.h>
25#include <linux/ioport.h>
26#include <linux/init.h>
27#include <linux/console.h>
1da177e4 28#include <linux/delay.h>
0970769a 29#include <linux/platform_device.h>
1da177e4 30#include <linux/pci.h>
1da177e4
LT
31#include <linux/serial_core.h>
32#include <linux/serial.h>
33
34#include <asm/io.h>
1da177e4 35
37a6c7d0 36static char *serial_version = "1.11";
1da177e4
LT
37static char *serial_name = "TX39/49 Serial driver";
38
39#define PASS_LIMIT 256
40
41#if !defined(CONFIG_SERIAL_TXX9_STDSERIAL)
42/* "ttyS" is used for standard serial driver */
43#define TXX9_TTY_NAME "ttyTX"
07bafde3
AN
44#define TXX9_TTY_MINOR_START 196
45#define TXX9_TTY_MAJOR 204
1da177e4
LT
46#else
47/* acts like standard serial driver */
48#define TXX9_TTY_NAME "ttyS"
1da177e4 49#define TXX9_TTY_MINOR_START 64
1da177e4 50#define TXX9_TTY_MAJOR TTY_MAJOR
07bafde3 51#endif
1da177e4
LT
52
53/* flag aliases */
54#define UPF_TXX9_HAVE_CTS_LINE UPF_BUGGY_UART
55#define UPF_TXX9_USE_SCLK UPF_MAGIC_MULTIPLIER
56
57#ifdef CONFIG_PCI
58/* support for Toshiba TC86C001 SIO */
59#define ENABLE_SERIAL_TXX9_PCI
60#endif
61
62/*
63 * Number of serial ports
64 */
138c5d25 65#define UART_NR CONFIG_SERIAL_TXX9_NR_UARTS
1da177e4
LT
66
67struct uart_txx9_port {
68 struct uart_port port;
0970769a 69 /* No additional info for now */
1da177e4
LT
70};
71
72#define TXX9_REGION_SIZE 0x24
73
74/* TXX9 Serial Registers */
75#define TXX9_SILCR 0x00
76#define TXX9_SIDICR 0x04
77#define TXX9_SIDISR 0x08
78#define TXX9_SICISR 0x0c
79#define TXX9_SIFCR 0x10
80#define TXX9_SIFLCR 0x14
81#define TXX9_SIBGR 0x18
82#define TXX9_SITFIFO 0x1c
83#define TXX9_SIRFIFO 0x20
84
85/* SILCR : Line Control */
86#define TXX9_SILCR_SCS_MASK 0x00000060
87#define TXX9_SILCR_SCS_IMCLK 0x00000000
88#define TXX9_SILCR_SCS_IMCLK_BG 0x00000020
89#define TXX9_SILCR_SCS_SCLK 0x00000040
90#define TXX9_SILCR_SCS_SCLK_BG 0x00000060
91#define TXX9_SILCR_UEPS 0x00000010
92#define TXX9_SILCR_UPEN 0x00000008
93#define TXX9_SILCR_USBL_MASK 0x00000004
94#define TXX9_SILCR_USBL_1BIT 0x00000000
95#define TXX9_SILCR_USBL_2BIT 0x00000004
96#define TXX9_SILCR_UMODE_MASK 0x00000003
97#define TXX9_SILCR_UMODE_8BIT 0x00000000
98#define TXX9_SILCR_UMODE_7BIT 0x00000001
99
100/* SIDICR : DMA/Int. Control */
101#define TXX9_SIDICR_TDE 0x00008000
102#define TXX9_SIDICR_RDE 0x00004000
103#define TXX9_SIDICR_TIE 0x00002000
104#define TXX9_SIDICR_RIE 0x00001000
105#define TXX9_SIDICR_SPIE 0x00000800
106#define TXX9_SIDICR_CTSAC 0x00000600
107#define TXX9_SIDICR_STIE_MASK 0x0000003f
108#define TXX9_SIDICR_STIE_OERS 0x00000020
109#define TXX9_SIDICR_STIE_CTSS 0x00000010
110#define TXX9_SIDICR_STIE_RBRKD 0x00000008
111#define TXX9_SIDICR_STIE_TRDY 0x00000004
112#define TXX9_SIDICR_STIE_TXALS 0x00000002
113#define TXX9_SIDICR_STIE_UBRKD 0x00000001
114
115/* SIDISR : DMA/Int. Status */
116#define TXX9_SIDISR_UBRK 0x00008000
117#define TXX9_SIDISR_UVALID 0x00004000
118#define TXX9_SIDISR_UFER 0x00002000
119#define TXX9_SIDISR_UPER 0x00001000
120#define TXX9_SIDISR_UOER 0x00000800
121#define TXX9_SIDISR_ERI 0x00000400
122#define TXX9_SIDISR_TOUT 0x00000200
123#define TXX9_SIDISR_TDIS 0x00000100
124#define TXX9_SIDISR_RDIS 0x00000080
125#define TXX9_SIDISR_STIS 0x00000040
126#define TXX9_SIDISR_RFDN_MASK 0x0000001f
127
128/* SICISR : Change Int. Status */
129#define TXX9_SICISR_OERS 0x00000020
130#define TXX9_SICISR_CTSS 0x00000010
131#define TXX9_SICISR_RBRKD 0x00000008
132#define TXX9_SICISR_TRDY 0x00000004
133#define TXX9_SICISR_TXALS 0x00000002
134#define TXX9_SICISR_UBRKD 0x00000001
135
136/* SIFCR : FIFO Control */
137#define TXX9_SIFCR_SWRST 0x00008000
138#define TXX9_SIFCR_RDIL_MASK 0x00000180
139#define TXX9_SIFCR_RDIL_1 0x00000000
140#define TXX9_SIFCR_RDIL_4 0x00000080
141#define TXX9_SIFCR_RDIL_8 0x00000100
142#define TXX9_SIFCR_RDIL_12 0x00000180
143#define TXX9_SIFCR_RDIL_MAX 0x00000180
144#define TXX9_SIFCR_TDIL_MASK 0x00000018
145#define TXX9_SIFCR_TDIL_MASK 0x00000018
146#define TXX9_SIFCR_TDIL_1 0x00000000
147#define TXX9_SIFCR_TDIL_4 0x00000001
148#define TXX9_SIFCR_TDIL_8 0x00000010
149#define TXX9_SIFCR_TDIL_MAX 0x00000010
150#define TXX9_SIFCR_TFRST 0x00000004
151#define TXX9_SIFCR_RFRST 0x00000002
152#define TXX9_SIFCR_FRSTE 0x00000001
153#define TXX9_SIO_TX_FIFO 8
154#define TXX9_SIO_RX_FIFO 16
155
156/* SIFLCR : Flow Control */
157#define TXX9_SIFLCR_RCS 0x00001000
158#define TXX9_SIFLCR_TES 0x00000800
159#define TXX9_SIFLCR_RTSSC 0x00000200
160#define TXX9_SIFLCR_RSDE 0x00000100
161#define TXX9_SIFLCR_TSDE 0x00000080
162#define TXX9_SIFLCR_RTSTL_MASK 0x0000001e
163#define TXX9_SIFLCR_RTSTL_MAX 0x0000001e
164#define TXX9_SIFLCR_TBRK 0x00000001
165
166/* SIBGR : Baudrate Control */
167#define TXX9_SIBGR_BCLK_MASK 0x00000300
168#define TXX9_SIBGR_BCLK_T0 0x00000000
169#define TXX9_SIBGR_BCLK_T2 0x00000100
170#define TXX9_SIBGR_BCLK_T4 0x00000200
171#define TXX9_SIBGR_BCLK_T6 0x00000300
172#define TXX9_SIBGR_BRD_MASK 0x000000ff
173
174static inline unsigned int sio_in(struct uart_txx9_port *up, int offset)
175{
176 switch (up->port.iotype) {
177 default:
83485f82 178 return __raw_readl(up->port.membase + offset);
1da177e4
LT
179 case UPIO_PORT:
180 return inl(up->port.iobase + offset);
181 }
182}
183
184static inline void
185sio_out(struct uart_txx9_port *up, int offset, int value)
186{
187 switch (up->port.iotype) {
188 default:
83485f82 189 __raw_writel(value, up->port.membase + offset);
1da177e4
LT
190 break;
191 case UPIO_PORT:
192 outl(value, up->port.iobase + offset);
193 break;
194 }
195}
196
197static inline void
198sio_mask(struct uart_txx9_port *up, int offset, unsigned int value)
199{
200 sio_out(up, offset, sio_in(up, offset) & ~value);
201}
202static inline void
203sio_set(struct uart_txx9_port *up, int offset, unsigned int value)
204{
205 sio_out(up, offset, sio_in(up, offset) | value);
206}
207
208static inline void
209sio_quot_set(struct uart_txx9_port *up, int quot)
210{
211 quot >>= 1;
212 if (quot < 256)
213 sio_out(up, TXX9_SIBGR, quot | TXX9_SIBGR_BCLK_T0);
214 else if (quot < (256 << 2))
215 sio_out(up, TXX9_SIBGR, (quot >> 2) | TXX9_SIBGR_BCLK_T2);
216 else if (quot < (256 << 4))
217 sio_out(up, TXX9_SIBGR, (quot >> 4) | TXX9_SIBGR_BCLK_T4);
218 else if (quot < (256 << 6))
219 sio_out(up, TXX9_SIBGR, (quot >> 6) | TXX9_SIBGR_BCLK_T6);
220 else
221 sio_out(up, TXX9_SIBGR, 0xff | TXX9_SIBGR_BCLK_T6);
222}
223
b129a8cc 224static void serial_txx9_stop_tx(struct uart_port *port)
1da177e4
LT
225{
226 struct uart_txx9_port *up = (struct uart_txx9_port *)port;
1da177e4 227 sio_mask(up, TXX9_SIDICR, TXX9_SIDICR_TIE);
1da177e4
LT
228}
229
b129a8cc 230static void serial_txx9_start_tx(struct uart_port *port)
1da177e4
LT
231{
232 struct uart_txx9_port *up = (struct uart_txx9_port *)port;
1da177e4 233 sio_set(up, TXX9_SIDICR, TXX9_SIDICR_TIE);
1da177e4
LT
234}
235
236static void serial_txx9_stop_rx(struct uart_port *port)
237{
238 struct uart_txx9_port *up = (struct uart_txx9_port *)port;
1da177e4 239 up->port.read_status_mask &= ~TXX9_SIDISR_RDIS;
1da177e4
LT
240}
241
242static void serial_txx9_enable_ms(struct uart_port *port)
243{
244 /* TXX9-SIO can not control DTR... */
245}
246
0970769a
AN
247static void serial_txx9_initialize(struct uart_port *port)
248{
249 struct uart_txx9_port *up = (struct uart_txx9_port *)port;
250 unsigned int tmout = 10000;
251
252 sio_out(up, TXX9_SIFCR, TXX9_SIFCR_SWRST);
253 /* TX4925 BUG WORKAROUND. Accessing SIOC register
254 * immediately after soft reset causes bus error. */
255 mmiowb();
256 udelay(1);
257 while ((sio_in(up, TXX9_SIFCR) & TXX9_SIFCR_SWRST) && --tmout)
258 udelay(1);
259 /* TX Int by FIFO Empty, RX Int by Receiving 1 char. */
260 sio_set(up, TXX9_SIFCR,
261 TXX9_SIFCR_TDIL_MAX | TXX9_SIFCR_RDIL_1);
262 /* initial settings */
263 sio_out(up, TXX9_SILCR,
264 TXX9_SILCR_UMODE_8BIT | TXX9_SILCR_USBL_1BIT |
265 ((up->port.flags & UPF_TXX9_USE_SCLK) ?
266 TXX9_SILCR_SCS_SCLK_BG : TXX9_SILCR_SCS_IMCLK_BG));
267 sio_quot_set(up, uart_get_divisor(port, 9600));
268 sio_out(up, TXX9_SIFLCR, TXX9_SIFLCR_RTSTL_MAX /* 15 */);
269 sio_out(up, TXX9_SIDICR, 0);
270}
271
1da177e4 272static inline void
7d12e780 273receive_chars(struct uart_txx9_port *up, unsigned int *status)
1da177e4
LT
274{
275 struct tty_struct *tty = up->port.info->tty;
276 unsigned char ch;
277 unsigned int disr = *status;
278 int max_count = 256;
279 char flag;
83485f82 280 unsigned int next_ignore_status_mask;
1da177e4
LT
281
282 do {
1da177e4
LT
283 ch = sio_in(up, TXX9_SIRFIFO);
284 flag = TTY_NORMAL;
285 up->port.icount.rx++;
286
83485f82
AN
287 /* mask out RFDN_MASK bit added by previous overrun */
288 next_ignore_status_mask =
289 up->port.ignore_status_mask & ~TXX9_SIDISR_RFDN_MASK;
1da177e4
LT
290 if (unlikely(disr & (TXX9_SIDISR_UBRK | TXX9_SIDISR_UPER |
291 TXX9_SIDISR_UFER | TXX9_SIDISR_UOER))) {
292 /*
293 * For statistics only
294 */
295 if (disr & TXX9_SIDISR_UBRK) {
296 disr &= ~(TXX9_SIDISR_UFER | TXX9_SIDISR_UPER);
297 up->port.icount.brk++;
298 /*
299 * We do the SysRQ and SAK checking
300 * here because otherwise the break
301 * may get masked by ignore_status_mask
302 * or read_status_mask.
303 */
304 if (uart_handle_break(&up->port))
305 goto ignore_char;
306 } else if (disr & TXX9_SIDISR_UPER)
307 up->port.icount.parity++;
308 else if (disr & TXX9_SIDISR_UFER)
309 up->port.icount.frame++;
83485f82 310 if (disr & TXX9_SIDISR_UOER) {
1da177e4 311 up->port.icount.overrun++;
83485f82
AN
312 /*
313 * The receiver read buffer still hold
314 * a char which caused overrun.
315 * Ignore next char by adding RFDN_MASK
316 * to ignore_status_mask temporarily.
317 */
318 next_ignore_status_mask |=
319 TXX9_SIDISR_RFDN_MASK;
320 }
1da177e4
LT
321
322 /*
323 * Mask off conditions which should be ingored.
324 */
325 disr &= up->port.read_status_mask;
326
327 if (disr & TXX9_SIDISR_UBRK) {
328 flag = TTY_BREAK;
329 } else if (disr & TXX9_SIDISR_UPER)
330 flag = TTY_PARITY;
331 else if (disr & TXX9_SIDISR_UFER)
332 flag = TTY_FRAME;
333 }
7d12e780 334 if (uart_handle_sysrq_char(&up->port, ch))
1da177e4 335 goto ignore_char;
05ab3014
RK
336
337 uart_insert_char(&up->port, disr, TXX9_SIDISR_UOER, ch, flag);
338
1da177e4 339 ignore_char:
83485f82 340 up->port.ignore_status_mask = next_ignore_status_mask;
1da177e4
LT
341 disr = sio_in(up, TXX9_SIDISR);
342 } while (!(disr & TXX9_SIDISR_UVALID) && (max_count-- > 0));
f5ee56cc 343 spin_unlock(&up->port.lock);
1da177e4 344 tty_flip_buffer_push(tty);
f5ee56cc 345 spin_lock(&up->port.lock);
1da177e4
LT
346 *status = disr;
347}
348
349static inline void transmit_chars(struct uart_txx9_port *up)
350{
351 struct circ_buf *xmit = &up->port.info->xmit;
352 int count;
353
354 if (up->port.x_char) {
355 sio_out(up, TXX9_SITFIFO, up->port.x_char);
356 up->port.icount.tx++;
357 up->port.x_char = 0;
358 return;
359 }
360 if (uart_circ_empty(xmit) || uart_tx_stopped(&up->port)) {
b129a8cc 361 serial_txx9_stop_tx(&up->port);
1da177e4
LT
362 return;
363 }
364
365 count = TXX9_SIO_TX_FIFO;
366 do {
367 sio_out(up, TXX9_SITFIFO, xmit->buf[xmit->tail]);
368 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
369 up->port.icount.tx++;
370 if (uart_circ_empty(xmit))
371 break;
372 } while (--count > 0);
373
374 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
375 uart_write_wakeup(&up->port);
376
377 if (uart_circ_empty(xmit))
b129a8cc 378 serial_txx9_stop_tx(&up->port);
1da177e4
LT
379}
380
7d12e780 381static irqreturn_t serial_txx9_interrupt(int irq, void *dev_id)
1da177e4
LT
382{
383 int pass_counter = 0;
384 struct uart_txx9_port *up = dev_id;
385 unsigned int status;
386
387 while (1) {
388 spin_lock(&up->port.lock);
389 status = sio_in(up, TXX9_SIDISR);
390 if (!(sio_in(up, TXX9_SIDICR) & TXX9_SIDICR_TIE))
391 status &= ~TXX9_SIDISR_TDIS;
392 if (!(status & (TXX9_SIDISR_TDIS | TXX9_SIDISR_RDIS |
393 TXX9_SIDISR_TOUT))) {
394 spin_unlock(&up->port.lock);
395 break;
396 }
397
398 if (status & TXX9_SIDISR_RDIS)
7d12e780 399 receive_chars(up, &status);
1da177e4
LT
400 if (status & TXX9_SIDISR_TDIS)
401 transmit_chars(up);
402 /* Clear TX/RX Int. Status */
403 sio_mask(up, TXX9_SIDISR,
404 TXX9_SIDISR_TDIS | TXX9_SIDISR_RDIS |
405 TXX9_SIDISR_TOUT);
406 spin_unlock(&up->port.lock);
407
408 if (pass_counter++ > PASS_LIMIT)
409 break;
410 }
411
412 return pass_counter ? IRQ_HANDLED : IRQ_NONE;
413}
414
415static unsigned int serial_txx9_tx_empty(struct uart_port *port)
416{
417 struct uart_txx9_port *up = (struct uart_txx9_port *)port;
418 unsigned long flags;
419 unsigned int ret;
420
421 spin_lock_irqsave(&up->port.lock, flags);
422 ret = (sio_in(up, TXX9_SICISR) & TXX9_SICISR_TXALS) ? TIOCSER_TEMT : 0;
423 spin_unlock_irqrestore(&up->port.lock, flags);
424
425 return ret;
426}
427
428static unsigned int serial_txx9_get_mctrl(struct uart_port *port)
429{
430 struct uart_txx9_port *up = (struct uart_txx9_port *)port;
1da177e4
LT
431 unsigned int ret;
432
99999961
AN
433 /* no modem control lines */
434 ret = TIOCM_CAR | TIOCM_DSR;
435 ret |= (sio_in(up, TXX9_SIFLCR) & TXX9_SIFLCR_RTSSC) ? 0 : TIOCM_RTS;
436 ret |= (sio_in(up, TXX9_SICISR) & TXX9_SICISR_CTSS) ? 0 : TIOCM_CTS;
1da177e4
LT
437
438 return ret;
439}
440
441static void serial_txx9_set_mctrl(struct uart_port *port, unsigned int mctrl)
442{
443 struct uart_txx9_port *up = (struct uart_txx9_port *)port;
1da177e4 444
1da177e4
LT
445 if (mctrl & TIOCM_RTS)
446 sio_mask(up, TXX9_SIFLCR, TXX9_SIFLCR_RTSSC);
447 else
448 sio_set(up, TXX9_SIFLCR, TXX9_SIFLCR_RTSSC);
1da177e4
LT
449}
450
451static void serial_txx9_break_ctl(struct uart_port *port, int break_state)
452{
453 struct uart_txx9_port *up = (struct uart_txx9_port *)port;
454 unsigned long flags;
455
456 spin_lock_irqsave(&up->port.lock, flags);
457 if (break_state == -1)
458 sio_set(up, TXX9_SIFLCR, TXX9_SIFLCR_TBRK);
459 else
460 sio_mask(up, TXX9_SIFLCR, TXX9_SIFLCR_TBRK);
461 spin_unlock_irqrestore(&up->port.lock, flags);
462}
463
464static int serial_txx9_startup(struct uart_port *port)
465{
466 struct uart_txx9_port *up = (struct uart_txx9_port *)port;
467 unsigned long flags;
468 int retval;
469
470 /*
471 * Clear the FIFO buffers and disable them.
7f927fcc 472 * (they will be reenabled in set_termios())
1da177e4
LT
473 */
474 sio_set(up, TXX9_SIFCR,
475 TXX9_SIFCR_TFRST | TXX9_SIFCR_RFRST | TXX9_SIFCR_FRSTE);
476 /* clear reset */
477 sio_mask(up, TXX9_SIFCR,
478 TXX9_SIFCR_TFRST | TXX9_SIFCR_RFRST | TXX9_SIFCR_FRSTE);
479 sio_out(up, TXX9_SIDICR, 0);
480
481 /*
482 * Clear the interrupt registers.
483 */
484 sio_out(up, TXX9_SIDISR, 0);
485
486 retval = request_irq(up->port.irq, serial_txx9_interrupt,
40663cc7 487 IRQF_SHARED, "serial_txx9", up);
1da177e4
LT
488 if (retval)
489 return retval;
490
491 /*
492 * Now, initialize the UART
493 */
494 spin_lock_irqsave(&up->port.lock, flags);
495 serial_txx9_set_mctrl(&up->port, up->port.mctrl);
496 spin_unlock_irqrestore(&up->port.lock, flags);
497
498 /* Enable RX/TX */
499 sio_mask(up, TXX9_SIFLCR, TXX9_SIFLCR_RSDE | TXX9_SIFLCR_TSDE);
500
501 /*
502 * Finally, enable interrupts.
503 */
504 sio_set(up, TXX9_SIDICR, TXX9_SIDICR_RIE);
505
506 return 0;
507}
508
509static void serial_txx9_shutdown(struct uart_port *port)
510{
511 struct uart_txx9_port *up = (struct uart_txx9_port *)port;
512 unsigned long flags;
513
514 /*
515 * Disable interrupts from this port
516 */
517 sio_out(up, TXX9_SIDICR, 0); /* disable all intrs */
518
519 spin_lock_irqsave(&up->port.lock, flags);
520 serial_txx9_set_mctrl(&up->port, up->port.mctrl);
521 spin_unlock_irqrestore(&up->port.lock, flags);
522
523 /*
524 * Disable break condition
525 */
526 sio_mask(up, TXX9_SIFLCR, TXX9_SIFLCR_TBRK);
527
528#ifdef CONFIG_SERIAL_TXX9_CONSOLE
529 if (up->port.cons && up->port.line == up->port.cons->index) {
530 free_irq(up->port.irq, up);
531 return;
532 }
533#endif
534 /* reset FIFOs */
535 sio_set(up, TXX9_SIFCR,
536 TXX9_SIFCR_TFRST | TXX9_SIFCR_RFRST | TXX9_SIFCR_FRSTE);
537 /* clear reset */
538 sio_mask(up, TXX9_SIFCR,
539 TXX9_SIFCR_TFRST | TXX9_SIFCR_RFRST | TXX9_SIFCR_FRSTE);
540
541 /* Disable RX/TX */
542 sio_set(up, TXX9_SIFLCR, TXX9_SIFLCR_RSDE | TXX9_SIFLCR_TSDE);
543
544 free_irq(up->port.irq, up);
545}
546
547static void
606d099c
AC
548serial_txx9_set_termios(struct uart_port *port, struct ktermios *termios,
549 struct ktermios *old)
1da177e4
LT
550{
551 struct uart_txx9_port *up = (struct uart_txx9_port *)port;
552 unsigned int cval, fcr = 0;
553 unsigned long flags;
554 unsigned int baud, quot;
555
99999961
AN
556 /*
557 * We don't support modem control lines.
558 */
559 termios->c_cflag &= ~(HUPCL | CMSPAR);
560 termios->c_cflag |= CLOCAL;
561
1da177e4
LT
562 cval = sio_in(up, TXX9_SILCR);
563 /* byte size and parity */
564 cval &= ~TXX9_SILCR_UMODE_MASK;
565 switch (termios->c_cflag & CSIZE) {
566 case CS7:
567 cval |= TXX9_SILCR_UMODE_7BIT;
568 break;
569 default:
570 case CS5: /* not supported */
571 case CS6: /* not supported */
572 case CS8:
573 cval |= TXX9_SILCR_UMODE_8BIT;
574 break;
575 }
576
577 cval &= ~TXX9_SILCR_USBL_MASK;
578 if (termios->c_cflag & CSTOPB)
579 cval |= TXX9_SILCR_USBL_2BIT;
580 else
581 cval |= TXX9_SILCR_USBL_1BIT;
582 cval &= ~(TXX9_SILCR_UPEN | TXX9_SILCR_UEPS);
583 if (termios->c_cflag & PARENB)
584 cval |= TXX9_SILCR_UPEN;
585 if (!(termios->c_cflag & PARODD))
586 cval |= TXX9_SILCR_UEPS;
587
588 /*
589 * Ask the core to calculate the divisor for us.
590 */
591 baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk/16/2);
592 quot = uart_get_divisor(port, baud);
593
594 /* Set up FIFOs */
595 /* TX Int by FIFO Empty, RX Int by Receiving 1 char. */
596 fcr = TXX9_SIFCR_TDIL_MAX | TXX9_SIFCR_RDIL_1;
597
598 /*
599 * Ok, we're now changing the port state. Do it with
600 * interrupts disabled.
601 */
602 spin_lock_irqsave(&up->port.lock, flags);
603
604 /*
605 * Update the per-port timeout.
606 */
607 uart_update_timeout(port, termios->c_cflag, baud);
608
609 up->port.read_status_mask = TXX9_SIDISR_UOER |
610 TXX9_SIDISR_TDIS | TXX9_SIDISR_RDIS;
611 if (termios->c_iflag & INPCK)
612 up->port.read_status_mask |= TXX9_SIDISR_UFER | TXX9_SIDISR_UPER;
613 if (termios->c_iflag & (BRKINT | PARMRK))
614 up->port.read_status_mask |= TXX9_SIDISR_UBRK;
615
616 /*
617 * Characteres to ignore
618 */
619 up->port.ignore_status_mask = 0;
620 if (termios->c_iflag & IGNPAR)
621 up->port.ignore_status_mask |= TXX9_SIDISR_UPER | TXX9_SIDISR_UFER;
622 if (termios->c_iflag & IGNBRK) {
623 up->port.ignore_status_mask |= TXX9_SIDISR_UBRK;
624 /*
625 * If we're ignoring parity and break indicators,
626 * ignore overruns too (for real raw support).
627 */
628 if (termios->c_iflag & IGNPAR)
629 up->port.ignore_status_mask |= TXX9_SIDISR_UOER;
630 }
631
632 /*
633 * ignore all characters if CREAD is not set
634 */
635 if ((termios->c_cflag & CREAD) == 0)
636 up->port.ignore_status_mask |= TXX9_SIDISR_RDIS;
637
638 /* CTS flow control flag */
639 if ((termios->c_cflag & CRTSCTS) &&
640 (up->port.flags & UPF_TXX9_HAVE_CTS_LINE)) {
641 sio_set(up, TXX9_SIFLCR,
642 TXX9_SIFLCR_RCS | TXX9_SIFLCR_TES);
643 } else {
644 sio_mask(up, TXX9_SIFLCR,
645 TXX9_SIFLCR_RCS | TXX9_SIFLCR_TES);
646 }
647
648 sio_out(up, TXX9_SILCR, cval);
649 sio_quot_set(up, quot);
650 sio_out(up, TXX9_SIFCR, fcr);
651
652 serial_txx9_set_mctrl(&up->port, up->port.mctrl);
653 spin_unlock_irqrestore(&up->port.lock, flags);
654}
655
656static void
657serial_txx9_pm(struct uart_port *port, unsigned int state,
658 unsigned int oldstate)
659{
0970769a
AN
660 if (state == 0)
661 serial_txx9_initialize(port);
1da177e4
LT
662}
663
664static int serial_txx9_request_resource(struct uart_txx9_port *up)
665{
666 unsigned int size = TXX9_REGION_SIZE;
667 int ret = 0;
668
669 switch (up->port.iotype) {
670 default:
671 if (!up->port.mapbase)
672 break;
673
674 if (!request_mem_region(up->port.mapbase, size, "serial_txx9")) {
675 ret = -EBUSY;
676 break;
677 }
678
679 if (up->port.flags & UPF_IOREMAP) {
680 up->port.membase = ioremap(up->port.mapbase, size);
681 if (!up->port.membase) {
682 release_mem_region(up->port.mapbase, size);
683 ret = -ENOMEM;
684 }
685 }
686 break;
687
688 case UPIO_PORT:
689 if (!request_region(up->port.iobase, size, "serial_txx9"))
690 ret = -EBUSY;
691 break;
692 }
693 return ret;
694}
695
696static void serial_txx9_release_resource(struct uart_txx9_port *up)
697{
698 unsigned int size = TXX9_REGION_SIZE;
699
700 switch (up->port.iotype) {
701 default:
702 if (!up->port.mapbase)
703 break;
704
705 if (up->port.flags & UPF_IOREMAP) {
706 iounmap(up->port.membase);
707 up->port.membase = NULL;
708 }
709
710 release_mem_region(up->port.mapbase, size);
711 break;
712
713 case UPIO_PORT:
714 release_region(up->port.iobase, size);
715 break;
716 }
717}
718
719static void serial_txx9_release_port(struct uart_port *port)
720{
721 struct uart_txx9_port *up = (struct uart_txx9_port *)port;
722 serial_txx9_release_resource(up);
723}
724
725static int serial_txx9_request_port(struct uart_port *port)
726{
727 struct uart_txx9_port *up = (struct uart_txx9_port *)port;
728 return serial_txx9_request_resource(up);
729}
730
731static void serial_txx9_config_port(struct uart_port *port, int uflags)
732{
733 struct uart_txx9_port *up = (struct uart_txx9_port *)port;
1da177e4
LT
734 int ret;
735
736 /*
737 * Find the region that we can probe for. This in turn
738 * tells us whether we can probe for the type of port.
739 */
740 ret = serial_txx9_request_resource(up);
741 if (ret < 0)
742 return;
743 port->type = PORT_TXX9;
744 up->port.fifosize = TXX9_SIO_TX_FIFO;
745
746#ifdef CONFIG_SERIAL_TXX9_CONSOLE
747 if (up->port.line == up->port.cons->index)
748 return;
749#endif
0970769a 750 serial_txx9_initialize(port);
1da177e4
LT
751}
752
1da177e4
LT
753static const char *
754serial_txx9_type(struct uart_port *port)
755{
756 return "txx9";
757}
758
759static struct uart_ops serial_txx9_pops = {
760 .tx_empty = serial_txx9_tx_empty,
761 .set_mctrl = serial_txx9_set_mctrl,
762 .get_mctrl = serial_txx9_get_mctrl,
763 .stop_tx = serial_txx9_stop_tx,
764 .start_tx = serial_txx9_start_tx,
765 .stop_rx = serial_txx9_stop_rx,
766 .enable_ms = serial_txx9_enable_ms,
767 .break_ctl = serial_txx9_break_ctl,
768 .startup = serial_txx9_startup,
769 .shutdown = serial_txx9_shutdown,
770 .set_termios = serial_txx9_set_termios,
771 .pm = serial_txx9_pm,
772 .type = serial_txx9_type,
773 .release_port = serial_txx9_release_port,
774 .request_port = serial_txx9_request_port,
775 .config_port = serial_txx9_config_port,
1da177e4
LT
776};
777
778static struct uart_txx9_port serial_txx9_ports[UART_NR];
779
0970769a
AN
780static void __init serial_txx9_register_ports(struct uart_driver *drv,
781 struct device *dev)
1da177e4
LT
782{
783 int i;
784
785 for (i = 0; i < UART_NR; i++) {
786 struct uart_txx9_port *up = &serial_txx9_ports[i];
787
788 up->port.line = i;
789 up->port.ops = &serial_txx9_pops;
0970769a 790 up->port.dev = dev;
83485f82
AN
791 if (up->port.iobase || up->port.mapbase)
792 uart_add_one_port(drv, &up->port);
1da177e4
LT
793 }
794}
795
796#ifdef CONFIG_SERIAL_TXX9_CONSOLE
797
798/*
799 * Wait for transmitter & holding register to empty
800 */
801static inline void wait_for_xmitr(struct uart_txx9_port *up)
802{
803 unsigned int tmout = 10000;
804
805 /* Wait up to 10ms for the character(s) to be sent. */
806 while (--tmout &&
807 !(sio_in(up, TXX9_SICISR) & TXX9_SICISR_TXALS))
808 udelay(1);
809
810 /* Wait up to 1s for flow control if necessary */
811 if (up->port.flags & UPF_CONS_FLOW) {
812 tmout = 1000000;
813 while (--tmout &&
814 (sio_in(up, TXX9_SICISR) & TXX9_SICISR_CTSS))
815 udelay(1);
816 }
817}
818
d358788f
RK
819static void serial_txx9_console_putchar(struct uart_port *port, int ch)
820{
821 struct uart_txx9_port *up = (struct uart_txx9_port *)port;
822
823 wait_for_xmitr(up);
824 sio_out(up, TXX9_SITFIFO, ch);
825}
826
1da177e4
LT
827/*
828 * Print a string to the serial port trying not to disturb
829 * any possible real use of the port...
830 *
831 * The console_lock must be held when we get here.
832 */
833static void
834serial_txx9_console_write(struct console *co, const char *s, unsigned int count)
835{
836 struct uart_txx9_port *up = &serial_txx9_ports[co->index];
837 unsigned int ier, flcr;
1da177e4
LT
838
839 /*
840 * First save the UER then disable the interrupts
841 */
842 ier = sio_in(up, TXX9_SIDICR);
843 sio_out(up, TXX9_SIDICR, 0);
844 /*
845 * Disable flow-control if enabled (and unnecessary)
846 */
847 flcr = sio_in(up, TXX9_SIFLCR);
848 if (!(up->port.flags & UPF_CONS_FLOW) && (flcr & TXX9_SIFLCR_TES))
849 sio_out(up, TXX9_SIFLCR, flcr & ~TXX9_SIFLCR_TES);
850
d358788f 851 uart_console_write(&up->port, s, count, serial_txx9_console_putchar);
1da177e4
LT
852
853 /*
854 * Finally, wait for transmitter to become empty
855 * and restore the IER
856 */
857 wait_for_xmitr(up);
858 sio_out(up, TXX9_SIFLCR, flcr);
859 sio_out(up, TXX9_SIDICR, ier);
860}
861
0970769a 862static int __init serial_txx9_console_setup(struct console *co, char *options)
1da177e4
LT
863{
864 struct uart_port *port;
865 struct uart_txx9_port *up;
866 int baud = 9600;
867 int bits = 8;
868 int parity = 'n';
869 int flow = 'n';
870
871 /*
872 * Check whether an invalid uart number has been specified, and
873 * if so, search for the first available port that does have
874 * console support.
875 */
876 if (co->index >= UART_NR)
877 co->index = 0;
878 up = &serial_txx9_ports[co->index];
879 port = &up->port;
880 if (!port->ops)
881 return -ENODEV;
882
0970769a 883 serial_txx9_initialize(&up->port);
1da177e4
LT
884
885 if (options)
886 uart_parse_options(options, &baud, &parity, &bits, &flow);
887
888 return uart_set_options(port, co, baud, parity, bits, flow);
889}
890
891static struct uart_driver serial_txx9_reg;
892static struct console serial_txx9_console = {
893 .name = TXX9_TTY_NAME,
894 .write = serial_txx9_console_write,
895 .device = uart_console_device,
896 .setup = serial_txx9_console_setup,
897 .flags = CON_PRINTBUFFER,
898 .index = -1,
899 .data = &serial_txx9_reg,
900};
901
902static int __init serial_txx9_console_init(void)
903{
904 register_console(&serial_txx9_console);
905 return 0;
906}
907console_initcall(serial_txx9_console_init);
908
1da177e4
LT
909#define SERIAL_TXX9_CONSOLE &serial_txx9_console
910#else
911#define SERIAL_TXX9_CONSOLE NULL
912#endif
913
914static struct uart_driver serial_txx9_reg = {
915 .owner = THIS_MODULE,
916 .driver_name = "serial_txx9",
1da177e4
LT
917 .dev_name = TXX9_TTY_NAME,
918 .major = TXX9_TTY_MAJOR,
919 .minor = TXX9_TTY_MINOR_START,
920 .nr = UART_NR,
921 .cons = SERIAL_TXX9_CONSOLE,
922};
923
924int __init early_serial_txx9_setup(struct uart_port *port)
925{
926 if (port->line >= ARRAY_SIZE(serial_txx9_ports))
927 return -ENODEV;
928
929 serial_txx9_ports[port->line].port = *port;
930 serial_txx9_ports[port->line].port.ops = &serial_txx9_pops;
37a6c7d0
AN
931 serial_txx9_ports[port->line].port.flags |=
932 UPF_BOOT_AUTOCONF | UPF_FIXED_PORT;
1da177e4
LT
933 return 0;
934}
935
f392ecfa 936static DEFINE_MUTEX(serial_txx9_mutex);
f5ee56cc
RB
937
938/**
939 * serial_txx9_register_port - register a serial port
940 * @port: serial port template
941 *
942 * Configure the serial port specified by the request.
943 *
944 * The port is then probed and if necessary the IRQ is autodetected
945 * If this fails an error is returned.
946 *
947 * On success the port is ready to use and the line number is returned.
948 */
949static int __devinit serial_txx9_register_port(struct uart_port *port)
950{
951 int i;
952 struct uart_txx9_port *uart;
953 int ret = -ENOSPC;
954
f392ecfa 955 mutex_lock(&serial_txx9_mutex);
f5ee56cc
RB
956 for (i = 0; i < UART_NR; i++) {
957 uart = &serial_txx9_ports[i];
0970769a
AN
958 if (uart_match_port(&uart->port, port)) {
959 uart_remove_one_port(&serial_txx9_reg, &uart->port);
f5ee56cc 960 break;
0970769a
AN
961 }
962 }
963 if (i == UART_NR) {
964 /* Find unused port */
965 for (i = 0; i < UART_NR; i++) {
966 uart = &serial_txx9_ports[i];
967 if (!(uart->port.iobase || uart->port.mapbase))
968 break;
969 }
f5ee56cc
RB
970 }
971 if (i < UART_NR) {
f5ee56cc
RB
972 uart->port.iobase = port->iobase;
973 uart->port.membase = port->membase;
974 uart->port.irq = port->irq;
975 uart->port.uartclk = port->uartclk;
976 uart->port.iotype = port->iotype;
37a6c7d0
AN
977 uart->port.flags = port->flags
978 | UPF_BOOT_AUTOCONF | UPF_FIXED_PORT;
f5ee56cc
RB
979 uart->port.mapbase = port->mapbase;
980 if (port->dev)
981 uart->port.dev = port->dev;
982 ret = uart_add_one_port(&serial_txx9_reg, &uart->port);
983 if (ret == 0)
984 ret = uart->port.line;
985 }
f392ecfa 986 mutex_unlock(&serial_txx9_mutex);
f5ee56cc
RB
987 return ret;
988}
989
990/**
991 * serial_txx9_unregister_port - remove a txx9 serial port at runtime
992 * @line: serial line number
993 *
994 * Remove one serial port. This may not be called from interrupt
995 * context. We hand the port back to the our control.
996 */
997static void __devexit serial_txx9_unregister_port(int line)
998{
999 struct uart_txx9_port *uart = &serial_txx9_ports[line];
1000
f392ecfa 1001 mutex_lock(&serial_txx9_mutex);
f5ee56cc
RB
1002 uart_remove_one_port(&serial_txx9_reg, &uart->port);
1003 uart->port.flags = 0;
1004 uart->port.type = PORT_UNKNOWN;
1005 uart->port.iobase = 0;
1006 uart->port.mapbase = 0;
83485f82 1007 uart->port.membase = NULL;
f5ee56cc 1008 uart->port.dev = NULL;
f392ecfa 1009 mutex_unlock(&serial_txx9_mutex);
f5ee56cc
RB
1010}
1011
0970769a
AN
1012/*
1013 * Register a set of serial devices attached to a platform device.
1014 */
1015static int __devinit serial_txx9_probe(struct platform_device *dev)
1016{
1017 struct uart_port *p = dev->dev.platform_data;
1018 struct uart_port port;
1019 int ret, i;
1020
1021 memset(&port, 0, sizeof(struct uart_port));
1022 for (i = 0; p && p->uartclk != 0; p++, i++) {
1023 port.iobase = p->iobase;
1024 port.membase = p->membase;
1025 port.irq = p->irq;
1026 port.uartclk = p->uartclk;
1027 port.iotype = p->iotype;
1028 port.flags = p->flags;
1029 port.mapbase = p->mapbase;
1030 port.dev = &dev->dev;
1031 ret = serial_txx9_register_port(&port);
1032 if (ret < 0) {
1033 dev_err(&dev->dev, "unable to register port at index %d "
ddb437b7
AN
1034 "(IO%x MEM%llx IRQ%d): %d\n", i,
1035 p->iobase, (unsigned long long)p->mapbase,
1036 p->irq, ret);
0970769a
AN
1037 }
1038 }
1039 return 0;
1040}
1041
1042/*
1043 * Remove serial ports registered against a platform device.
1044 */
1045static int __devexit serial_txx9_remove(struct platform_device *dev)
1046{
1047 int i;
1048
1049 for (i = 0; i < UART_NR; i++) {
1050 struct uart_txx9_port *up = &serial_txx9_ports[i];
1051
1052 if (up->port.dev == &dev->dev)
1053 serial_txx9_unregister_port(i);
1054 }
1055 return 0;
1056}
1057
1058#ifdef CONFIG_PM
1059static int serial_txx9_suspend(struct platform_device *dev, pm_message_t state)
1060{
1061 int i;
1062
1063 for (i = 0; i < UART_NR; i++) {
1064 struct uart_txx9_port *up = &serial_txx9_ports[i];
1065
1066 if (up->port.type != PORT_UNKNOWN && up->port.dev == &dev->dev)
1067 uart_suspend_port(&serial_txx9_reg, &up->port);
1068 }
1069
1070 return 0;
1071}
1072
1073static int serial_txx9_resume(struct platform_device *dev)
1074{
1075 int i;
1076
1077 for (i = 0; i < UART_NR; i++) {
1078 struct uart_txx9_port *up = &serial_txx9_ports[i];
1079
1080 if (up->port.type != PORT_UNKNOWN && up->port.dev == &dev->dev)
1081 uart_resume_port(&serial_txx9_reg, &up->port);
1082 }
1083
1084 return 0;
1085}
1086#endif
1087
1088static struct platform_driver serial_txx9_plat_driver = {
1089 .probe = serial_txx9_probe,
1090 .remove = __devexit_p(serial_txx9_remove),
1091#ifdef CONFIG_PM
1092 .suspend = serial_txx9_suspend,
1093 .resume = serial_txx9_resume,
1094#endif
1095 .driver = {
1096 .name = "serial_txx9",
1097 .owner = THIS_MODULE,
1098 },
1099};
1100
1101#ifdef ENABLE_SERIAL_TXX9_PCI
1da177e4
LT
1102/*
1103 * Probe one serial board. Unfortunately, there is no rhyme nor reason
1104 * to the arrangement of serial ports on a PCI card.
1105 */
1106static int __devinit
1107pciserial_txx9_init_one(struct pci_dev *dev, const struct pci_device_id *ent)
1108{
1109 struct uart_port port;
1110 int line;
1111 int rc;
1112
1113 rc = pci_enable_device(dev);
1114 if (rc)
1115 return rc;
1116
1117 memset(&port, 0, sizeof(port));
1118 port.ops = &serial_txx9_pops;
1da177e4
LT
1119 port.flags |= UPF_TXX9_HAVE_CTS_LINE;
1120 port.uartclk = 66670000;
1121 port.irq = dev->irq;
1122 port.iotype = UPIO_PORT;
1123 port.iobase = pci_resource_start(dev, 1);
f5ee56cc
RB
1124 port.dev = &dev->dev;
1125 line = serial_txx9_register_port(&port);
1da177e4
LT
1126 if (line < 0) {
1127 printk(KERN_WARNING "Couldn't register serial port %s: %d\n", pci_name(dev), line);
0970769a
AN
1128 pci_disable_device(dev);
1129 return line;
1da177e4 1130 }
0970769a 1131 pci_set_drvdata(dev, &serial_txx9_ports[line]);
1da177e4
LT
1132
1133 return 0;
1134}
1135
1136static void __devexit pciserial_txx9_remove_one(struct pci_dev *dev)
1137{
0970769a 1138 struct uart_txx9_port *up = pci_get_drvdata(dev);
1da177e4
LT
1139
1140 pci_set_drvdata(dev, NULL);
1141
0970769a
AN
1142 if (up) {
1143 serial_txx9_unregister_port(up->port.line);
1da177e4
LT
1144 pci_disable_device(dev);
1145 }
1146}
1147
138c5d25 1148#ifdef CONFIG_PM
0370affe 1149static int pciserial_txx9_suspend_one(struct pci_dev *dev, pm_message_t state)
1da177e4 1150{
0970769a 1151 struct uart_txx9_port *up = pci_get_drvdata(dev);
1da177e4 1152
0970769a
AN
1153 if (up)
1154 uart_suspend_port(&serial_txx9_reg, &up->port);
f5ee56cc
RB
1155 pci_save_state(dev);
1156 pci_set_power_state(dev, pci_choose_state(dev, state));
1da177e4
LT
1157 return 0;
1158}
1159
1160static int pciserial_txx9_resume_one(struct pci_dev *dev)
1161{
0970769a 1162 struct uart_txx9_port *up = pci_get_drvdata(dev);
1da177e4 1163
f5ee56cc
RB
1164 pci_set_power_state(dev, PCI_D0);
1165 pci_restore_state(dev);
0970769a
AN
1166 if (up)
1167 uart_resume_port(&serial_txx9_reg, &up->port);
1da177e4
LT
1168 return 0;
1169}
138c5d25 1170#endif
1da177e4 1171
138c5d25
AN
1172static const struct pci_device_id serial_txx9_pci_tbl[] = {
1173 { PCI_DEVICE(PCI_VENDOR_ID_TOSHIBA_2, PCI_DEVICE_ID_TOSHIBA_TC86C001_MISC) },
1da177e4
LT
1174 { 0, }
1175};
1176
1177static struct pci_driver serial_txx9_pci_driver = {
1178 .name = "serial_txx9",
1179 .probe = pciserial_txx9_init_one,
1180 .remove = __devexit_p(pciserial_txx9_remove_one),
138c5d25 1181#ifdef CONFIG_PM
1da177e4
LT
1182 .suspend = pciserial_txx9_suspend_one,
1183 .resume = pciserial_txx9_resume_one,
138c5d25 1184#endif
1da177e4
LT
1185 .id_table = serial_txx9_pci_tbl,
1186};
1187
1188MODULE_DEVICE_TABLE(pci, serial_txx9_pci_tbl);
1189#endif /* ENABLE_SERIAL_TXX9_PCI */
1190
0970769a
AN
1191static struct platform_device *serial_txx9_plat_devs;
1192
1da177e4
LT
1193static int __init serial_txx9_init(void)
1194{
1195 int ret;
1196
1197 printk(KERN_INFO "%s version %s\n", serial_name, serial_version);
1198
1199 ret = uart_register_driver(&serial_txx9_reg);
0970769a
AN
1200 if (ret)
1201 goto out;
1202
1203 serial_txx9_plat_devs = platform_device_alloc("serial_txx9", -1);
1204 if (!serial_txx9_plat_devs) {
1205 ret = -ENOMEM;
1206 goto unreg_uart_drv;
1207 }
1208
1209 ret = platform_device_add(serial_txx9_plat_devs);
1210 if (ret)
1211 goto put_dev;
1212
1213 serial_txx9_register_ports(&serial_txx9_reg,
1214 &serial_txx9_plat_devs->dev);
1215
1216 ret = platform_driver_register(&serial_txx9_plat_driver);
1217 if (ret)
1218 goto del_dev;
1da177e4
LT
1219
1220#ifdef ENABLE_SERIAL_TXX9_PCI
0970769a 1221 ret = pci_register_driver(&serial_txx9_pci_driver);
1da177e4 1222#endif
0970769a
AN
1223 if (ret == 0)
1224 goto out;
1225
1226 del_dev:
1227 platform_device_del(serial_txx9_plat_devs);
1228 put_dev:
1229 platform_device_put(serial_txx9_plat_devs);
1230 unreg_uart_drv:
1231 uart_unregister_driver(&serial_txx9_reg);
1232 out:
1da177e4
LT
1233 return ret;
1234}
1235
1236static void __exit serial_txx9_exit(void)
1237{
1238 int i;
1239
1240#ifdef ENABLE_SERIAL_TXX9_PCI
1241 pci_unregister_driver(&serial_txx9_pci_driver);
1242#endif
0970769a
AN
1243 platform_driver_unregister(&serial_txx9_plat_driver);
1244 platform_device_unregister(serial_txx9_plat_devs);
83485f82
AN
1245 for (i = 0; i < UART_NR; i++) {
1246 struct uart_txx9_port *up = &serial_txx9_ports[i];
1247 if (up->port.iobase || up->port.mapbase)
1248 uart_remove_one_port(&serial_txx9_reg, &up->port);
1249 }
1da177e4
LT
1250
1251 uart_unregister_driver(&serial_txx9_reg);
1252}
1253
1254module_init(serial_txx9_init);
1255module_exit(serial_txx9_exit);
1256
1257MODULE_LICENSE("GPL");
1258MODULE_DESCRIPTION("TX39/49 serial driver");
1259
1260MODULE_ALIAS_CHARDEV_MAJOR(TXX9_TTY_MAJOR);