blob: c2f8677771455a081f1dd472f05caf67d0631ecb [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Maciej W. Rozycki93995752006-12-06 20:38:59 -08002 * dz.c: Serial port driver for DECstations equipped
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * with the DZ chipset.
4 *
Ralf Baechlefd8c5972005-11-12 21:59:59 +00005 * Copyright (C) 1998 Olivier A. D. Lebaillif
6 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * Email: olivier.lebaillif@ifrsys.com
8 *
Maciej W. Rozycki87cff7f2008-02-07 00:15:09 -08009 * Copyright (C) 2004, 2006, 2007 Maciej W. Rozycki
Maciej W. Rozycki93995752006-12-06 20:38:59 -080010 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 * [31-AUG-98] triemer
12 * Changed IRQ to use Harald's dec internals interrupts.h
13 * removed base_addr code - moving address assignment to setup.c
14 * Changed name of dz_init to rs_init to be consistent with tc code
15 * [13-NOV-98] triemer fixed code to receive characters
Ralf Baechlefd8c5972005-11-12 21:59:59 +000016 * after patches by harald to irq code.
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 * [09-JAN-99] triemer minor fix for schedule - due to removal of timeout
18 * field from "current" - somewhere between 2.1.121 and 2.1.131
19 Qua Jun 27 15:02:26 BRT 2001
20 * [27-JUN-2001] Arnaldo Carvalho de Melo <acme@conectiva.com.br> - cleanups
Ralf Baechlefd8c5972005-11-12 21:59:59 +000021 *
22 * Parts (C) 1999 David Airlie, airlied@linux.ie
23 * [07-SEP-99] Bugfixes
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 *
25 * [06-Jan-2002] Russell King <rmk@arm.linux.org.uk>
26 * Converted to new serial core
27 */
28
29#undef DEBUG_DZ
30
Maciej W. Rozycki93995752006-12-06 20:38:59 -080031#if defined(CONFIG_SERIAL_DZ_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
32#define SUPPORT_SYSRQ
33#endif
34
Maciej W. Rozycki87cff7f2008-02-07 00:15:09 -080035#include <linux/bitops.h>
36#include <linux/compiler.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/console.h>
Maciej W. Rozycki87cff7f2008-02-07 00:15:09 -080038#include <linux/delay.h>
39#include <linux/errno.h>
40#include <linux/init.h>
41#include <linux/interrupt.h>
42#include <linux/kernel.h>
43#include <linux/major.h>
44#include <linux/module.h>
45#include <linux/serial.h>
46#include <linux/serial_core.h>
Maciej W. Rozycki93995752006-12-06 20:38:59 -080047#include <linux/sysrq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/tty.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50#include <asm/bootinfo.h>
Maciej W. Rozycki87cff7f2008-02-07 00:15:09 -080051#include <asm/system.h>
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include <asm/dec/interrupts.h>
54#include <asm/dec/kn01.h>
55#include <asm/dec/kn02.h>
56#include <asm/dec/machtype.h>
57#include <asm/dec/prom.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#include "dz.h"
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061static char *dz_name = "DECstation DZ serial driver version ";
Maciej W. Rozycki93995752006-12-06 20:38:59 -080062static char *dz_version = "1.03";
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64struct dz_port {
65 struct uart_port port;
66 unsigned int cflag;
67};
68
69static struct dz_port dz_ports[DZ_NB_PORT];
70
Linus Torvalds1da177e2005-04-16 15:20:36 -070071/*
72 * ------------------------------------------------------------
73 * dz_in () and dz_out ()
74 *
Ralf Baechlefd8c5972005-11-12 21:59:59 +000075 * These routines are used to access the registers of the DZ
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 * chip, hiding relocation differences between implementation.
77 * ------------------------------------------------------------
78 */
79
80static inline unsigned short dz_in(struct dz_port *dport, unsigned offset)
81{
82 volatile unsigned short *addr =
83 (volatile unsigned short *) (dport->port.membase + offset);
Maciej W. Rozycki93995752006-12-06 20:38:59 -080084
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 return *addr;
86}
87
88static inline void dz_out(struct dz_port *dport, unsigned offset,
89 unsigned short value)
90{
91 volatile unsigned short *addr =
92 (volatile unsigned short *) (dport->port.membase + offset);
Maciej W. Rozycki93995752006-12-06 20:38:59 -080093
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 *addr = value;
95}
96
97/*
98 * ------------------------------------------------------------
99 * rs_stop () and rs_start ()
100 *
Ralf Baechlefd8c5972005-11-12 21:59:59 +0000101 * These routines are called before setting or resetting
102 * tty->stopped. They enable or disable transmitter interrupts,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 * as necessary.
104 * ------------------------------------------------------------
105 */
106
Russell Kingb129a8c2005-08-31 10:12:14 +0100107static void dz_stop_tx(struct uart_port *uport)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108{
109 struct dz_port *dport = (struct dz_port *)uport;
110 unsigned short tmp, mask = 1 << dport->port.line;
111 unsigned long flags;
112
113 spin_lock_irqsave(&dport->port.lock, flags);
114 tmp = dz_in(dport, DZ_TCR); /* read the TX flag */
115 tmp &= ~mask; /* clear the TX flag */
116 dz_out(dport, DZ_TCR, tmp);
117 spin_unlock_irqrestore(&dport->port.lock, flags);
118}
119
Russell Kingb129a8c2005-08-31 10:12:14 +0100120static void dz_start_tx(struct uart_port *uport)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121{
122 struct dz_port *dport = (struct dz_port *)uport;
123 unsigned short tmp, mask = 1 << dport->port.line;
124 unsigned long flags;
125
126 spin_lock_irqsave(&dport->port.lock, flags);
127 tmp = dz_in(dport, DZ_TCR); /* read the TX flag */
128 tmp |= mask; /* set the TX flag */
129 dz_out(dport, DZ_TCR, tmp);
130 spin_unlock_irqrestore(&dport->port.lock, flags);
131}
132
133static void dz_stop_rx(struct uart_port *uport)
134{
135 struct dz_port *dport = (struct dz_port *)uport;
136 unsigned long flags;
137
138 spin_lock_irqsave(&dport->port.lock, flags);
139 dport->cflag &= ~DZ_CREAD;
Maciej W. Rozycki93995752006-12-06 20:38:59 -0800140 dz_out(dport, DZ_LPR, dport->cflag | dport->port.line);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 spin_unlock_irqrestore(&dport->port.lock, flags);
142}
143
144static void dz_enable_ms(struct uart_port *port)
145{
146 /* nothing to do */
147}
148
149/*
150 * ------------------------------------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 *
Maciej W. Rozycki93995752006-12-06 20:38:59 -0800152 * Here start the interrupt handling routines. All of the following
153 * subroutines are declared as inline and are folded into
154 * dz_interrupt. They were separated out for readability's sake.
155 *
156 * Note: dz_interrupt() is a "fast" interrupt, which means that it
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 * runs with interrupts turned off. People who may want to modify
Maciej W. Rozycki93995752006-12-06 20:38:59 -0800158 * dz_interrupt() should try to keep the interrupt handler as fast as
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 * possible. After you are done making modifications, it is not a bad
160 * idea to do:
Ralf Baechlefd8c5972005-11-12 21:59:59 +0000161 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 * make drivers/serial/dz.s
163 *
164 * and look at the resulting assemble code in dz.s.
165 *
166 * ------------------------------------------------------------
167 */
168
169/*
170 * ------------------------------------------------------------
171 * receive_char ()
172 *
173 * This routine deals with inputs from any lines.
174 * ------------------------------------------------------------
175 */
Maciej W. Rozyckide320192007-03-05 00:30:26 -0800176static inline void dz_receive_chars(struct dz_port *dport_in)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177{
Maciej W. Rozycki93995752006-12-06 20:38:59 -0800178 struct dz_port *dport;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 struct tty_struct *tty = NULL;
180 struct uart_icount *icount;
Maciej W. Rozycki93995752006-12-06 20:38:59 -0800181 int lines_rx[DZ_NB_PORT] = { [0 ... DZ_NB_PORT - 1] = 0 };
182 unsigned short status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 unsigned char ch, flag;
Maciej W. Rozycki93995752006-12-06 20:38:59 -0800184 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Maciej W. Rozycki93995752006-12-06 20:38:59 -0800186 while ((status = dz_in(dport_in, DZ_RBUF)) & DZ_DVAL) {
187 dport = &dz_ports[LINE(status)];
188 tty = dport->port.info->tty; /* point to the proper dev */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Maciej W. Rozycki93995752006-12-06 20:38:59 -0800190 ch = UCHAR(status); /* grab the char */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 icount = &dport->port.icount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 icount->rx++;
194
Maciej W. Rozycki93995752006-12-06 20:38:59 -0800195 flag = TTY_NORMAL;
196 if (status & DZ_FERR) { /* frame error */
197 /*
198 * There is no separate BREAK status bit, so
199 * treat framing errors as BREAKs for Magic SysRq
200 * and SAK; normally, otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 */
Maciej W. Rozycki93995752006-12-06 20:38:59 -0800202 if (uart_handle_break(&dport->port))
203 continue;
204 if (dport->port.flags & UPF_SAK)
205 flag = TTY_BREAK;
206 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 flag = TTY_FRAME;
Maciej W. Rozycki93995752006-12-06 20:38:59 -0800208 } else if (status & DZ_OERR) /* overrun error */
209 flag = TTY_OVERRUN;
210 else if (status & DZ_PERR) /* parity error */
211 flag = TTY_PARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Maciej W. Rozycki93995752006-12-06 20:38:59 -0800213 /* keep track of the statistics */
214 switch (flag) {
215 case TTY_FRAME:
216 icount->frame++;
217 break;
218 case TTY_PARITY:
219 icount->parity++;
220 break;
221 case TTY_OVERRUN:
222 icount->overrun++;
223 break;
224 case TTY_BREAK:
225 icount->brk++;
226 break;
227 default:
228 break;
229 }
230
Maciej W. Rozyckide320192007-03-05 00:30:26 -0800231 if (uart_handle_sysrq_char(&dport->port, ch))
Maciej W. Rozycki93995752006-12-06 20:38:59 -0800232 continue;
233
234 if ((status & dport->port.ignore_status_mask) == 0) {
235 uart_insert_char(&dport->port,
236 status, DZ_OERR, ch, flag);
237 lines_rx[LINE(status)] = 1;
238 }
239 }
240 for (i = 0; i < DZ_NB_PORT; i++)
241 if (lines_rx[i])
242 tty_flip_buffer_push(dz_ports[i].port.info->tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243}
244
245/*
246 * ------------------------------------------------------------
247 * transmit_char ()
248 *
249 * This routine deals with outputs to any lines.
250 * ------------------------------------------------------------
251 */
Maciej W. Rozycki93995752006-12-06 20:38:59 -0800252static inline void dz_transmit_chars(struct dz_port *dport_in)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253{
Maciej W. Rozycki93995752006-12-06 20:38:59 -0800254 struct dz_port *dport;
255 struct circ_buf *xmit;
256 unsigned short status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 unsigned char tmp;
258
Maciej W. Rozycki93995752006-12-06 20:38:59 -0800259 status = dz_in(dport_in, DZ_CSR);
260 dport = &dz_ports[LINE(status)];
261 xmit = &dport->port.info->xmit;
262
263 if (dport->port.x_char) { /* XON/XOFF chars */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 dz_out(dport, DZ_TDR, dport->port.x_char);
265 dport->port.icount.tx++;
266 dport->port.x_char = 0;
267 return;
268 }
Maciej W. Rozycki93995752006-12-06 20:38:59 -0800269 /* If nothing to do or stopped or hardware stopped. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 if (uart_circ_empty(xmit) || uart_tx_stopped(&dport->port)) {
Russell Kingb129a8c2005-08-31 10:12:14 +0100271 dz_stop_tx(&dport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 return;
273 }
274
275 /*
Maciej W. Rozycki93995752006-12-06 20:38:59 -0800276 * If something to do... (remember the dz has no output fifo,
277 * so we go one char at a time) :-<
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 */
279 tmp = xmit->buf[xmit->tail];
280 xmit->tail = (xmit->tail + 1) & (DZ_XMIT_SIZE - 1);
281 dz_out(dport, DZ_TDR, tmp);
282 dport->port.icount.tx++;
283
284 if (uart_circ_chars_pending(xmit) < DZ_WAKEUP_CHARS)
285 uart_write_wakeup(&dport->port);
286
Maciej W. Rozycki93995752006-12-06 20:38:59 -0800287 /* Are we are done. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 if (uart_circ_empty(xmit))
Russell Kingb129a8c2005-08-31 10:12:14 +0100289 dz_stop_tx(&dport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290}
291
292/*
293 * ------------------------------------------------------------
Maciej W. Rozycki93995752006-12-06 20:38:59 -0800294 * check_modem_status()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 *
Maciej W. Rozycki93995752006-12-06 20:38:59 -0800296 * DS 3100 & 5100: Only valid for the MODEM line, duh!
297 * DS 5000/200: Valid for the MODEM and PRINTER line.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 * ------------------------------------------------------------
299 */
300static inline void check_modem_status(struct dz_port *dport)
301{
Maciej W. Rozycki93995752006-12-06 20:38:59 -0800302 /*
303 * FIXME:
304 * 1. No status change interrupt; use a timer.
305 * 2. Handle the 3100/5000 as appropriate. --macro
306 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 unsigned short status;
308
Maciej W. Rozycki93995752006-12-06 20:38:59 -0800309 /* If not the modem line just return. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 if (dport->port.line != DZ_MODEM)
311 return;
312
313 status = dz_in(dport, DZ_MSR);
314
315 /* it's easy, since DSR2 is the only bit in the register */
316 if (status)
317 dport->port.icount.dsr++;
318}
319
320/*
321 * ------------------------------------------------------------
322 * dz_interrupt ()
323 *
324 * this is the main interrupt routine for the DZ chip.
325 * It deals with the multiple ports.
326 * ------------------------------------------------------------
327 */
David Howells7d12e782006-10-05 14:55:46 +0100328static irqreturn_t dz_interrupt(int irq, void *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329{
Jeff Garzik15aafa22008-02-06 01:36:20 -0800330 struct dz_port *dport = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 unsigned short status;
332
333 /* get the reason why we just got an irq */
Maciej W. Rozycki93995752006-12-06 20:38:59 -0800334 status = dz_in(dport, DZ_CSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Maciej W. Rozycki93995752006-12-06 20:38:59 -0800336 if ((status & (DZ_RDONE | DZ_RIE)) == (DZ_RDONE | DZ_RIE))
Maciej W. Rozyckide320192007-03-05 00:30:26 -0800337 dz_receive_chars(dport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Maciej W. Rozycki93995752006-12-06 20:38:59 -0800339 if ((status & (DZ_TRDY | DZ_TIE)) == (DZ_TRDY | DZ_TIE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 dz_transmit_chars(dport);
341
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 return IRQ_HANDLED;
343}
344
345/*
346 * -------------------------------------------------------------------
347 * Here ends the DZ interrupt routines.
348 * -------------------------------------------------------------------
349 */
350
351static unsigned int dz_get_mctrl(struct uart_port *uport)
352{
Maciej W. Rozycki93995752006-12-06 20:38:59 -0800353 /*
354 * FIXME: Handle the 3100/5000 as appropriate. --macro
355 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 struct dz_port *dport = (struct dz_port *)uport;
357 unsigned int mctrl = TIOCM_CAR | TIOCM_DSR | TIOCM_CTS;
358
359 if (dport->port.line == DZ_MODEM) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 if (dz_in(dport, DZ_MSR) & DZ_MODEM_DSR)
361 mctrl &= ~TIOCM_DSR;
362 }
363
364 return mctrl;
365}
366
367static void dz_set_mctrl(struct uart_port *uport, unsigned int mctrl)
368{
Maciej W. Rozycki93995752006-12-06 20:38:59 -0800369 /*
370 * FIXME: Handle the 3100/5000 as appropriate. --macro
371 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 struct dz_port *dport = (struct dz_port *)uport;
373 unsigned short tmp;
374
375 if (dport->port.line == DZ_MODEM) {
376 tmp = dz_in(dport, DZ_TCR);
377 if (mctrl & TIOCM_DTR)
378 tmp &= ~DZ_MODEM_DTR;
379 else
380 tmp |= DZ_MODEM_DTR;
381 dz_out(dport, DZ_TCR, tmp);
382 }
383}
384
385/*
386 * -------------------------------------------------------------------
387 * startup ()
388 *
389 * various initialization tasks
Ralf Baechlefd8c5972005-11-12 21:59:59 +0000390 * -------------------------------------------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 */
392static int dz_startup(struct uart_port *uport)
393{
394 struct dz_port *dport = (struct dz_port *)uport;
395 unsigned long flags;
396 unsigned short tmp;
397
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 spin_lock_irqsave(&dport->port.lock, flags);
399
400 /* enable the interrupt and the scanning */
401 tmp = dz_in(dport, DZ_CSR);
402 tmp |= DZ_RIE | DZ_TIE | DZ_MSE;
403 dz_out(dport, DZ_CSR, tmp);
404
405 spin_unlock_irqrestore(&dport->port.lock, flags);
406
407 return 0;
408}
409
Ralf Baechlefd8c5972005-11-12 21:59:59 +0000410/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 * -------------------------------------------------------------------
412 * shutdown ()
413 *
414 * This routine will shutdown a serial port; interrupts are disabled, and
415 * DTR is dropped if the hangup on close termio flag is on.
Ralf Baechlefd8c5972005-11-12 21:59:59 +0000416 * -------------------------------------------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 */
418static void dz_shutdown(struct uart_port *uport)
419{
Russell Kingb129a8c2005-08-31 10:12:14 +0100420 dz_stop_tx(uport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421}
422
423/*
Maciej W. Rozycki93995752006-12-06 20:38:59 -0800424 * -------------------------------------------------------------------
425 * dz_tx_empty() -- get the transmitter empty status
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 *
427 * Purpose: Let user call ioctl() to get info when the UART physically
428 * is emptied. On bus types like RS485, the transmitter must
429 * release the bus after transmitting. This must be done when
430 * the transmit shift register is empty, not be done when the
431 * transmit holding register is empty. This functionality
Ralf Baechlefd8c5972005-11-12 21:59:59 +0000432 * allows an RS485 driver to be written in user space.
Maciej W. Rozycki93995752006-12-06 20:38:59 -0800433 * -------------------------------------------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 */
435static unsigned int dz_tx_empty(struct uart_port *uport)
436{
437 struct dz_port *dport = (struct dz_port *)uport;
Maciej W. Rozycki93995752006-12-06 20:38:59 -0800438 unsigned short tmp, mask = 1 << dport->port.line;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
Maciej W. Rozycki93995752006-12-06 20:38:59 -0800440 tmp = dz_in(dport, DZ_TCR);
441 tmp &= mask;
442
443 return tmp ? 0 : TIOCSER_TEMT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444}
445
446static void dz_break_ctl(struct uart_port *uport, int break_state)
447{
Maciej W. Rozycki93995752006-12-06 20:38:59 -0800448 /*
449 * FIXME: Can't access BREAK bits in TDR easily;
450 * reuse the code for polled TX. --macro
451 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 struct dz_port *dport = (struct dz_port *)uport;
453 unsigned long flags;
Maciej W. Rozycki93995752006-12-06 20:38:59 -0800454 unsigned short tmp, mask = 1 << dport->port.line;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
456 spin_lock_irqsave(&uport->lock, flags);
457 tmp = dz_in(dport, DZ_TCR);
458 if (break_state)
459 tmp |= mask;
460 else
461 tmp &= ~mask;
462 dz_out(dport, DZ_TCR, tmp);
463 spin_unlock_irqrestore(&uport->lock, flags);
464}
465
Alan Cox606d0992006-12-08 02:38:45 -0800466static void dz_set_termios(struct uart_port *uport, struct ktermios *termios,
467 struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468{
469 struct dz_port *dport = (struct dz_port *)uport;
470 unsigned long flags;
471 unsigned int cflag, baud;
472
473 cflag = dport->port.line;
474
475 switch (termios->c_cflag & CSIZE) {
476 case CS5:
477 cflag |= DZ_CS5;
478 break;
479 case CS6:
480 cflag |= DZ_CS6;
481 break;
482 case CS7:
483 cflag |= DZ_CS7;
484 break;
485 case CS8:
486 default:
487 cflag |= DZ_CS8;
488 }
489
490 if (termios->c_cflag & CSTOPB)
491 cflag |= DZ_CSTOPB;
492 if (termios->c_cflag & PARENB)
493 cflag |= DZ_PARENB;
494 if (termios->c_cflag & PARODD)
495 cflag |= DZ_PARODD;
496
497 baud = uart_get_baud_rate(uport, termios, old_termios, 50, 9600);
498 switch (baud) {
499 case 50:
500 cflag |= DZ_B50;
501 break;
502 case 75:
503 cflag |= DZ_B75;
504 break;
505 case 110:
506 cflag |= DZ_B110;
507 break;
508 case 134:
509 cflag |= DZ_B134;
510 break;
511 case 150:
512 cflag |= DZ_B150;
513 break;
514 case 300:
515 cflag |= DZ_B300;
516 break;
517 case 600:
518 cflag |= DZ_B600;
519 break;
520 case 1200:
521 cflag |= DZ_B1200;
522 break;
523 case 1800:
524 cflag |= DZ_B1800;
525 break;
526 case 2000:
527 cflag |= DZ_B2000;
528 break;
529 case 2400:
530 cflag |= DZ_B2400;
531 break;
532 case 3600:
533 cflag |= DZ_B3600;
534 break;
535 case 4800:
536 cflag |= DZ_B4800;
537 break;
538 case 7200:
539 cflag |= DZ_B7200;
540 break;
541 case 9600:
542 default:
543 cflag |= DZ_B9600;
544 }
545
546 if (termios->c_cflag & CREAD)
547 cflag |= DZ_RXENAB;
548
549 spin_lock_irqsave(&dport->port.lock, flags);
550
Maciej W. Rozycki93995752006-12-06 20:38:59 -0800551 dz_out(dport, DZ_LPR, cflag | dport->port.line);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 dport->cflag = cflag;
553
554 /* setup accept flag */
555 dport->port.read_status_mask = DZ_OERR;
556 if (termios->c_iflag & INPCK)
557 dport->port.read_status_mask |= DZ_FERR | DZ_PERR;
558
559 /* characters to ignore */
560 uport->ignore_status_mask = 0;
561 if (termios->c_iflag & IGNPAR)
562 dport->port.ignore_status_mask |= DZ_FERR | DZ_PERR;
563
564 spin_unlock_irqrestore(&dport->port.lock, flags);
565}
566
567static const char *dz_type(struct uart_port *port)
568{
569 return "DZ";
570}
571
572static void dz_release_port(struct uart_port *port)
573{
574 /* nothing to do */
575}
576
577static int dz_request_port(struct uart_port *port)
578{
579 return 0;
580}
581
582static void dz_config_port(struct uart_port *port, int flags)
583{
584 if (flags & UART_CONFIG_TYPE)
585 port->type = PORT_DZ;
586}
587
588/*
589 * verify the new serial_struct (for TIOCSSERIAL).
590 */
591static int dz_verify_port(struct uart_port *port, struct serial_struct *ser)
592{
593 int ret = 0;
594 if (ser->type != PORT_UNKNOWN && ser->type != PORT_DZ)
595 ret = -EINVAL;
596 if (ser->irq != port->irq)
597 ret = -EINVAL;
598 return ret;
599}
600
601static struct uart_ops dz_ops = {
602 .tx_empty = dz_tx_empty,
603 .get_mctrl = dz_get_mctrl,
604 .set_mctrl = dz_set_mctrl,
605 .stop_tx = dz_stop_tx,
606 .start_tx = dz_start_tx,
607 .stop_rx = dz_stop_rx,
608 .enable_ms = dz_enable_ms,
609 .break_ctl = dz_break_ctl,
610 .startup = dz_startup,
611 .shutdown = dz_shutdown,
612 .set_termios = dz_set_termios,
613 .type = dz_type,
614 .release_port = dz_release_port,
615 .request_port = dz_request_port,
616 .config_port = dz_config_port,
617 .verify_port = dz_verify_port,
618};
619
620static void __init dz_init_ports(void)
621{
622 static int first = 1;
623 struct dz_port *dport;
624 unsigned long base;
625 int i;
626
627 if (!first)
628 return;
629 first = 0;
630
631 if (mips_machtype == MACH_DS23100 ||
632 mips_machtype == MACH_DS5100)
Ralf Baechle46677732005-11-12 22:00:27 +0000633 base = CKSEG1ADDR(KN01_SLOT_BASE + KN01_DZ11);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 else
Ralf Baechle46677732005-11-12 22:00:27 +0000635 base = CKSEG1ADDR(KN02_SLOT_BASE + KN02_DZ11);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
637 for (i = 0, dport = dz_ports; i < DZ_NB_PORT; i++, dport++) {
638 spin_lock_init(&dport->port.lock);
639 dport->port.membase = (char *) base;
Maciej W. Rozycki93995752006-12-06 20:38:59 -0800640 dport->port.iotype = UPIO_MEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 dport->port.irq = dec_interrupt[DEC_IRQ_DZ11];
642 dport->port.line = i;
643 dport->port.fifosize = 1;
644 dport->port.ops = &dz_ops;
645 dport->port.flags = UPF_BOOT_AUTOCONF;
646 }
647}
648
649static void dz_reset(struct dz_port *dport)
650{
651 dz_out(dport, DZ_CSR, DZ_CLR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 while (dz_in(dport, DZ_CSR) & DZ_CLR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 iob();
654
655 /* enable scanning */
656 dz_out(dport, DZ_CSR, DZ_MSE);
657}
658
659#ifdef CONFIG_SERIAL_DZ_CONSOLE
Maciej W. Rozycki93995752006-12-06 20:38:59 -0800660/*
661 * -------------------------------------------------------------------
662 * dz_console_putchar() -- transmit a character
663 *
664 * Polled transmission. This is tricky. We need to mask transmit
665 * interrupts so that they do not interfere, enable the transmitter
666 * for the line requested and then wait till the transmit scanner
667 * requests data for this line. But it may request data for another
668 * line first, in which case we have to disable its transmitter and
669 * repeat waiting till our line pops up. Only then the character may
670 * be transmitted. Finally, the state of the transmitter mask is
671 * restored. Welcome to the world of PDP-11!
672 * -------------------------------------------------------------------
673 */
Martin Michlmayrd608ab92006-06-26 18:18:11 +0200674static void dz_console_putchar(struct uart_port *uport, int ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675{
Russell Kingd3587882006-03-20 20:00:09 +0000676 struct dz_port *dport = (struct dz_port *)uport;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 unsigned long flags;
Maciej W. Rozycki93995752006-12-06 20:38:59 -0800678 unsigned short csr, tcr, trdy, mask;
679 int loops = 10000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
681 spin_lock_irqsave(&dport->port.lock, flags);
Maciej W. Rozycki93995752006-12-06 20:38:59 -0800682 csr = dz_in(dport, DZ_CSR);
683 dz_out(dport, DZ_CSR, csr & ~DZ_TIE);
684 tcr = dz_in(dport, DZ_TCR);
685 tcr |= 1 << dport->port.line;
686 mask = tcr;
687 dz_out(dport, DZ_TCR, mask);
688 iob();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 spin_unlock_irqrestore(&dport->port.lock, flags);
Maciej W. Rozycki93995752006-12-06 20:38:59 -0800690
Maciej W. Rozyckidbab8122008-02-07 00:15:07 -0800691 do {
Maciej W. Rozycki93995752006-12-06 20:38:59 -0800692 trdy = dz_in(dport, DZ_CSR);
693 if (!(trdy & DZ_TRDY))
694 continue;
695 trdy = (trdy & DZ_TLINE) >> 8;
696 if (trdy == dport->port.line)
697 break;
698 mask &= ~(1 << trdy);
699 dz_out(dport, DZ_TCR, mask);
700 iob();
701 udelay(2);
Maciej W. Rozyckidbab8122008-02-07 00:15:07 -0800702 } while (loops--);
Maciej W. Rozycki93995752006-12-06 20:38:59 -0800703
704 if (loops) /* Cannot send otherwise. */
705 dz_out(dport, DZ_TDR, ch);
706
707 dz_out(dport, DZ_TCR, tcr);
708 dz_out(dport, DZ_CSR, csr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709}
Russell Kingd3587882006-03-20 20:00:09 +0000710
Ralf Baechlefd8c5972005-11-12 21:59:59 +0000711/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 * -------------------------------------------------------------------
713 * dz_console_print ()
714 *
715 * dz_console_print is registered for printk.
716 * The console must be locked when we get here.
Ralf Baechlefd8c5972005-11-12 21:59:59 +0000717 * -------------------------------------------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 */
Maciej W. Rozycki93995752006-12-06 20:38:59 -0800719static void dz_console_print(struct console *co,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 const char *str,
721 unsigned int count)
722{
Maciej W. Rozycki93995752006-12-06 20:38:59 -0800723 struct dz_port *dport = &dz_ports[co->index];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724#ifdef DEBUG_DZ
725 prom_printf((char *) str);
726#endif
Russell Kingd3587882006-03-20 20:00:09 +0000727 uart_console_write(&dport->port, str, count, dz_console_putchar);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728}
729
730static int __init dz_console_setup(struct console *co, char *options)
731{
Maciej W. Rozycki93995752006-12-06 20:38:59 -0800732 struct dz_port *dport = &dz_ports[co->index];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 int baud = 9600;
734 int bits = 8;
735 int parity = 'n';
736 int flow = 'n';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
738 if (options)
739 uart_parse_options(options, &baud, &parity, &bits, &flow);
740
741 dz_reset(dport);
742
Maciej W. Rozycki93995752006-12-06 20:38:59 -0800743 return uart_set_options(&dport->port, co, baud, parity, bits, flow);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744}
745
Maciej W. Rozycki93995752006-12-06 20:38:59 -0800746static struct uart_driver dz_reg;
Maciej W. Rozycki6d83c062008-02-07 00:15:10 -0800747static struct console dz_console = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 .name = "ttyS",
749 .write = dz_console_print,
750 .device = uart_console_device,
751 .setup = dz_console_setup,
Maciej W. Rozycki93995752006-12-06 20:38:59 -0800752 .flags = CON_PRINTBUFFER,
753 .index = -1,
754 .data = &dz_reg,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755};
756
Maciej W. Rozycki93995752006-12-06 20:38:59 -0800757static int __init dz_serial_console_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758{
Maciej W. Rozycki93995752006-12-06 20:38:59 -0800759 if (!IOASIC) {
760 dz_init_ports();
Maciej W. Rozycki6d83c062008-02-07 00:15:10 -0800761 register_console(&dz_console);
Maciej W. Rozycki93995752006-12-06 20:38:59 -0800762 return 0;
763 } else
764 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765}
766
Maciej W. Rozycki93995752006-12-06 20:38:59 -0800767console_initcall(dz_serial_console_init);
768
Maciej W. Rozycki6d83c062008-02-07 00:15:10 -0800769#define SERIAL_DZ_CONSOLE &dz_console
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770#else
771#define SERIAL_DZ_CONSOLE NULL
772#endif /* CONFIG_SERIAL_DZ_CONSOLE */
773
774static struct uart_driver dz_reg = {
775 .owner = THIS_MODULE,
776 .driver_name = "serial",
Maciej W. Rozycki93995752006-12-06 20:38:59 -0800777 .dev_name = "ttyS",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 .major = TTY_MAJOR,
779 .minor = 64,
780 .nr = DZ_NB_PORT,
781 .cons = SERIAL_DZ_CONSOLE,
782};
783
Maciej W. Rozycki93995752006-12-06 20:38:59 -0800784static int __init dz_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 int ret, i;
787
Maciej W. Rozycki93995752006-12-06 20:38:59 -0800788 if (IOASIC)
789 return -ENXIO;
790
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 printk("%s%s\n", dz_name, dz_version);
792
793 dz_init_ports();
794
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795#ifndef CONFIG_SERIAL_DZ_CONSOLE
796 /* reset the chip */
797 dz_reset(&dz_ports[0]);
798#endif
799
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 ret = uart_register_driver(&dz_reg);
801 if (ret != 0)
Maciej W. Rozycki0ba137e2008-02-07 00:15:08 -0800802 goto out;
803
804 ret = request_irq(dz_ports[0].port.irq, dz_interrupt, IRQF_DISABLED,
805 "DZ", &dz_ports[0]);
806 if (ret != 0) {
807 printk(KERN_ERR "dz: Cannot get IRQ %d!\n",
808 dz_ports[0].port.irq);
809 goto out_unregister;
810 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
812 for (i = 0; i < DZ_NB_PORT; i++)
813 uart_add_one_port(&dz_reg, &dz_ports[i].port);
814
815 return ret;
Maciej W. Rozycki0ba137e2008-02-07 00:15:08 -0800816
817out_unregister:
818 uart_unregister_driver(&dz_reg);
819
820out:
821 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822}
823
Maciej W. Rozycki93995752006-12-06 20:38:59 -0800824module_init(dz_init);
825
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826MODULE_DESCRIPTION("DECstation DZ serial driver");
827MODULE_LICENSE("GPL");