| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
| Maciej W. Rozycki | 9399575 | 2006-12-06 20:38:59 -0800 | [diff] [blame] | 2 | * dz.c: Serial port driver for DECstations equipped | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | *       with the DZ chipset. | 
|  | 4 | * | 
| Ralf Baechle | fd8c597 | 2005-11-12 21:59:59 +0000 | [diff] [blame] | 5 | * Copyright (C) 1998 Olivier A. D. Lebaillif | 
|  | 6 | * | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * Email: olivier.lebaillif@ifrsys.com | 
|  | 8 | * | 
| Maciej W. Rozycki | 87cff7f | 2008-02-07 00:15:09 -0800 | [diff] [blame] | 9 | * Copyright (C) 2004, 2006, 2007  Maciej W. Rozycki | 
| Maciej W. Rozycki | 9399575 | 2006-12-06 20:38:59 -0800 | [diff] [blame] | 10 | * | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | * [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 Baechle | fd8c597 | 2005-11-12 21:59:59 +0000 | [diff] [blame] | 16 | *    after patches by harald to irq code. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | * [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 Baechle | fd8c597 | 2005-11-12 21:59:59 +0000 | [diff] [blame] | 21 | * | 
|  | 22 | * Parts (C) 1999 David Airlie, airlied@linux.ie | 
|  | 23 | * [07-SEP-99] Bugfixes | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | * | 
|  | 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. Rozycki | 9399575 | 2006-12-06 20:38:59 -0800 | [diff] [blame] | 31 | #if defined(CONFIG_SERIAL_DZ_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ) | 
|  | 32 | #define SUPPORT_SYSRQ | 
|  | 33 | #endif | 
|  | 34 |  | 
| Maciej W. Rozycki | 87cff7f | 2008-02-07 00:15:09 -0800 | [diff] [blame] | 35 | #include <linux/bitops.h> | 
|  | 36 | #include <linux/compiler.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | #include <linux/console.h> | 
| Maciej W. Rozycki | 87cff7f | 2008-02-07 00:15:09 -0800 | [diff] [blame] | 38 | #include <linux/delay.h> | 
|  | 39 | #include <linux/errno.h> | 
|  | 40 | #include <linux/init.h> | 
|  | 41 | #include <linux/interrupt.h> | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 42 | #include <linux/ioport.h> | 
| Maciej W. Rozycki | 87cff7f | 2008-02-07 00:15:09 -0800 | [diff] [blame] | 43 | #include <linux/kernel.h> | 
|  | 44 | #include <linux/major.h> | 
|  | 45 | #include <linux/module.h> | 
|  | 46 | #include <linux/serial.h> | 
|  | 47 | #include <linux/serial_core.h> | 
| Maciej W. Rozycki | 9399575 | 2006-12-06 20:38:59 -0800 | [diff] [blame] | 48 | #include <linux/sysrq.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | #include <linux/tty.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 |  | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 51 | #include <asm/atomic.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | #include <asm/bootinfo.h> | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 53 | #include <asm/io.h> | 
| Maciej W. Rozycki | 87cff7f | 2008-02-07 00:15:09 -0800 | [diff] [blame] | 54 | #include <asm/system.h> | 
|  | 55 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | #include <asm/dec/interrupts.h> | 
|  | 57 | #include <asm/dec/kn01.h> | 
|  | 58 | #include <asm/dec/kn02.h> | 
|  | 59 | #include <asm/dec/machtype.h> | 
|  | 60 | #include <asm/dec/prom.h> | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 61 | #include <asm/dec/system.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | #include "dz.h" | 
|  | 64 |  | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 65 |  | 
|  | 66 | MODULE_DESCRIPTION("DECstation DZ serial driver"); | 
|  | 67 | MODULE_LICENSE("GPL"); | 
|  | 68 |  | 
|  | 69 |  | 
|  | 70 | static char dz_name[] __initdata = "DECstation DZ serial driver version "; | 
|  | 71 | static char dz_version[] __initdata = "1.04"; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 |  | 
|  | 73 | struct dz_port { | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 74 | struct dz_mux		*mux; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | struct uart_port	port; | 
|  | 76 | unsigned int		cflag; | 
|  | 77 | }; | 
|  | 78 |  | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 79 | struct dz_mux { | 
|  | 80 | struct dz_port		dport[DZ_NB_PORT]; | 
|  | 81 | atomic_t		map_guard; | 
|  | 82 | atomic_t		irq_guard; | 
|  | 83 | int			initialised; | 
|  | 84 | }; | 
|  | 85 |  | 
|  | 86 | static struct dz_mux dz_mux; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 |  | 
| Maciej W. Rozycki | f5519ca | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 88 | static inline struct dz_port *to_dport(struct uart_port *uport) | 
|  | 89 | { | 
|  | 90 | return container_of(uport, struct dz_port, port); | 
|  | 91 | } | 
|  | 92 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | /* | 
|  | 94 | * ------------------------------------------------------------ | 
|  | 95 | * dz_in () and dz_out () | 
|  | 96 | * | 
| Ralf Baechle | fd8c597 | 2005-11-12 21:59:59 +0000 | [diff] [blame] | 97 | * These routines are used to access the registers of the DZ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | * chip, hiding relocation differences between implementation. | 
|  | 99 | * ------------------------------------------------------------ | 
|  | 100 | */ | 
|  | 101 |  | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 102 | static u16 dz_in(struct dz_port *dport, unsigned offset) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | { | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 104 | void __iomem *addr = dport->port.membase + offset; | 
| Maciej W. Rozycki | 9399575 | 2006-12-06 20:38:59 -0800 | [diff] [blame] | 105 |  | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 106 | return readw(addr); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | } | 
|  | 108 |  | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 109 | static void dz_out(struct dz_port *dport, unsigned offset, u16 value) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | { | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 111 | void __iomem *addr = dport->port.membase + offset; | 
| Maciej W. Rozycki | 9399575 | 2006-12-06 20:38:59 -0800 | [diff] [blame] | 112 |  | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 113 | writew(value, addr); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | } | 
|  | 115 |  | 
|  | 116 | /* | 
|  | 117 | * ------------------------------------------------------------ | 
|  | 118 | * rs_stop () and rs_start () | 
|  | 119 | * | 
| Ralf Baechle | fd8c597 | 2005-11-12 21:59:59 +0000 | [diff] [blame] | 120 | * These routines are called before setting or resetting | 
|  | 121 | * tty->stopped. They enable or disable transmitter interrupts, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | * as necessary. | 
|  | 123 | * ------------------------------------------------------------ | 
|  | 124 | */ | 
|  | 125 |  | 
| Russell King | b129a8c | 2005-08-31 10:12:14 +0100 | [diff] [blame] | 126 | static void dz_stop_tx(struct uart_port *uport) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | { | 
| Maciej W. Rozycki | f5519ca | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 128 | struct dz_port *dport = to_dport(uport); | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 129 | u16 tmp, mask = 1 << dport->port.line; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | tmp = dz_in(dport, DZ_TCR);	/* read the TX flag */ | 
|  | 132 | tmp &= ~mask;			/* clear the TX flag */ | 
|  | 133 | dz_out(dport, DZ_TCR, tmp); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | } | 
|  | 135 |  | 
| Russell King | b129a8c | 2005-08-31 10:12:14 +0100 | [diff] [blame] | 136 | static void dz_start_tx(struct uart_port *uport) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | { | 
| Maciej W. Rozycki | f5519ca | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 138 | struct dz_port *dport = to_dport(uport); | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 139 | u16 tmp, mask = 1 << dport->port.line; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | tmp = dz_in(dport, DZ_TCR);	/* read the TX flag */ | 
|  | 142 | tmp |= mask;			/* set the TX flag */ | 
|  | 143 | dz_out(dport, DZ_TCR, tmp); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | } | 
|  | 145 |  | 
|  | 146 | static void dz_stop_rx(struct uart_port *uport) | 
|  | 147 | { | 
| Maciej W. Rozycki | f5519ca | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 148 | struct dz_port *dport = to_dport(uport); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 |  | 
| Maciej W. Rozycki | ff11d07 | 2008-02-07 00:15:14 -0800 | [diff] [blame] | 150 | dport->cflag &= ~DZ_RXENAB; | 
|  | 151 | dz_out(dport, DZ_LPR, dport->cflag); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | } | 
|  | 153 |  | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 154 | static void dz_enable_ms(struct uart_port *uport) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | { | 
|  | 156 | /* nothing to do */ | 
|  | 157 | } | 
|  | 158 |  | 
|  | 159 | /* | 
|  | 160 | * ------------------------------------------------------------ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | * | 
| Maciej W. Rozycki | 9399575 | 2006-12-06 20:38:59 -0800 | [diff] [blame] | 162 | * Here start the interrupt handling routines.  All of the following | 
|  | 163 | * subroutines are declared as inline and are folded into | 
|  | 164 | * dz_interrupt.  They were separated out for readability's sake. | 
|  | 165 | * | 
|  | 166 | * Note: dz_interrupt() is a "fast" interrupt, which means that it | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | * runs with interrupts turned off.  People who may want to modify | 
| Maciej W. Rozycki | 9399575 | 2006-12-06 20:38:59 -0800 | [diff] [blame] | 168 | * dz_interrupt() should try to keep the interrupt handler as fast as | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | * possible.  After you are done making modifications, it is not a bad | 
|  | 170 | * idea to do: | 
| Ralf Baechle | fd8c597 | 2005-11-12 21:59:59 +0000 | [diff] [blame] | 171 | * | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | *	make drivers/serial/dz.s | 
|  | 173 | * | 
|  | 174 | * and look at the resulting assemble code in dz.s. | 
|  | 175 | * | 
|  | 176 | * ------------------------------------------------------------ | 
|  | 177 | */ | 
|  | 178 |  | 
|  | 179 | /* | 
|  | 180 | * ------------------------------------------------------------ | 
|  | 181 | * receive_char () | 
|  | 182 | * | 
|  | 183 | * This routine deals with inputs from any lines. | 
|  | 184 | * ------------------------------------------------------------ | 
|  | 185 | */ | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 186 | static inline void dz_receive_chars(struct dz_mux *mux) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | { | 
| Maciej W. Rozycki | 54c0f37 | 2008-02-07 00:15:12 -0800 | [diff] [blame] | 188 | struct uart_port *uport; | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 189 | struct dz_port *dport = &mux->dport[0]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | struct tty_struct *tty = NULL; | 
|  | 191 | struct uart_icount *icount; | 
| Maciej W. Rozycki | 9399575 | 2006-12-06 20:38:59 -0800 | [diff] [blame] | 192 | int lines_rx[DZ_NB_PORT] = { [0 ... DZ_NB_PORT - 1] = 0 }; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | unsigned char ch, flag; | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 194 | u16 status; | 
| Maciej W. Rozycki | 9399575 | 2006-12-06 20:38:59 -0800 | [diff] [blame] | 195 | int i; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 |  | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 197 | while ((status = dz_in(dport, DZ_RBUF)) & DZ_DVAL) { | 
|  | 198 | dport = &mux->dport[LINE(status)]; | 
| Maciej W. Rozycki | 54c0f37 | 2008-02-07 00:15:12 -0800 | [diff] [blame] | 199 | uport = &dport->port; | 
|  | 200 | tty = uport->info->tty;		/* point to the proper dev */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 |  | 
| Maciej W. Rozycki | 9399575 | 2006-12-06 20:38:59 -0800 | [diff] [blame] | 202 | ch = UCHAR(status);		/* grab the char */ | 
| Maciej W. Rozycki | 54c0f37 | 2008-02-07 00:15:12 -0800 | [diff] [blame] | 203 | flag = TTY_NORMAL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 |  | 
| Maciej W. Rozycki | 54c0f37 | 2008-02-07 00:15:12 -0800 | [diff] [blame] | 205 | icount = &uport->icount; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | icount->rx++; | 
|  | 207 |  | 
| Maciej W. Rozycki | 54c0f37 | 2008-02-07 00:15:12 -0800 | [diff] [blame] | 208 | if (unlikely(status & (DZ_OERR | DZ_FERR | DZ_PERR))) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 |  | 
| Maciej W. Rozycki | 54c0f37 | 2008-02-07 00:15:12 -0800 | [diff] [blame] | 210 | /* | 
|  | 211 | * There is no separate BREAK status bit, so treat | 
|  | 212 | * null characters with framing errors as BREAKs; | 
|  | 213 | * normally, otherwise.  For this move the Framing | 
|  | 214 | * Error bit to a simulated BREAK bit. | 
|  | 215 | */ | 
|  | 216 | if (!ch) { | 
|  | 217 | status |= (status & DZ_FERR) >> | 
|  | 218 | (ffs(DZ_FERR) - ffs(DZ_BREAK)); | 
|  | 219 | status &= ~DZ_FERR; | 
|  | 220 | } | 
|  | 221 |  | 
|  | 222 | /* Handle SysRq/SAK & keep track of the statistics. */ | 
|  | 223 | if (status & DZ_BREAK) { | 
|  | 224 | icount->brk++; | 
|  | 225 | if (uart_handle_break(uport)) | 
|  | 226 | continue; | 
|  | 227 | } else if (status & DZ_FERR) | 
|  | 228 | icount->frame++; | 
|  | 229 | else if (status & DZ_PERR) | 
|  | 230 | icount->parity++; | 
|  | 231 | if (status & DZ_OERR) | 
|  | 232 | icount->overrun++; | 
|  | 233 |  | 
|  | 234 | status &= uport->read_status_mask; | 
|  | 235 | if (status & DZ_BREAK) | 
|  | 236 | flag = TTY_BREAK; | 
|  | 237 | else if (status & DZ_FERR) | 
|  | 238 | flag = TTY_FRAME; | 
|  | 239 | else if (status & DZ_PERR) | 
|  | 240 | flag = TTY_PARITY; | 
|  | 241 |  | 
| Maciej W. Rozycki | 9399575 | 2006-12-06 20:38:59 -0800 | [diff] [blame] | 242 | } | 
|  | 243 |  | 
| Maciej W. Rozycki | 54c0f37 | 2008-02-07 00:15:12 -0800 | [diff] [blame] | 244 | if (uart_handle_sysrq_char(uport, ch)) | 
| Maciej W. Rozycki | 9399575 | 2006-12-06 20:38:59 -0800 | [diff] [blame] | 245 | continue; | 
|  | 246 |  | 
| Maciej W. Rozycki | 54c0f37 | 2008-02-07 00:15:12 -0800 | [diff] [blame] | 247 | uart_insert_char(uport, status, DZ_OERR, ch, flag); | 
|  | 248 | lines_rx[LINE(status)] = 1; | 
| Maciej W. Rozycki | 9399575 | 2006-12-06 20:38:59 -0800 | [diff] [blame] | 249 | } | 
|  | 250 | for (i = 0; i < DZ_NB_PORT; i++) | 
|  | 251 | if (lines_rx[i]) | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 252 | tty_flip_buffer_push(mux->dport[i].port.info->tty); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | } | 
|  | 254 |  | 
|  | 255 | /* | 
|  | 256 | * ------------------------------------------------------------ | 
|  | 257 | * transmit_char () | 
|  | 258 | * | 
|  | 259 | * This routine deals with outputs to any lines. | 
|  | 260 | * ------------------------------------------------------------ | 
|  | 261 | */ | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 262 | static inline void dz_transmit_chars(struct dz_mux *mux) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | { | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 264 | struct dz_port *dport = &mux->dport[0]; | 
| Maciej W. Rozycki | 9399575 | 2006-12-06 20:38:59 -0800 | [diff] [blame] | 265 | struct circ_buf *xmit; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | unsigned char tmp; | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 267 | u16 status; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 |  | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 269 | status = dz_in(dport, DZ_CSR); | 
|  | 270 | dport = &mux->dport[LINE(status)]; | 
| Maciej W. Rozycki | 9399575 | 2006-12-06 20:38:59 -0800 | [diff] [blame] | 271 | xmit = &dport->port.info->xmit; | 
|  | 272 |  | 
|  | 273 | if (dport->port.x_char) {		/* XON/XOFF chars */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | dz_out(dport, DZ_TDR, dport->port.x_char); | 
|  | 275 | dport->port.icount.tx++; | 
|  | 276 | dport->port.x_char = 0; | 
|  | 277 | return; | 
|  | 278 | } | 
| Maciej W. Rozycki | 9399575 | 2006-12-06 20:38:59 -0800 | [diff] [blame] | 279 | /* If nothing to do or stopped or hardware stopped. */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | if (uart_circ_empty(xmit) || uart_tx_stopped(&dport->port)) { | 
| Maciej W. Rozycki | 43d46ab | 2008-02-07 00:15:11 -0800 | [diff] [blame] | 281 | spin_lock(&dport->port.lock); | 
| Russell King | b129a8c | 2005-08-31 10:12:14 +0100 | [diff] [blame] | 282 | dz_stop_tx(&dport->port); | 
| Maciej W. Rozycki | 43d46ab | 2008-02-07 00:15:11 -0800 | [diff] [blame] | 283 | spin_unlock(&dport->port.lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | return; | 
|  | 285 | } | 
|  | 286 |  | 
|  | 287 | /* | 
| Maciej W. Rozycki | 9399575 | 2006-12-06 20:38:59 -0800 | [diff] [blame] | 288 | * If something to do... (remember the dz has no output fifo, | 
|  | 289 | * so we go one char at a time) :-< | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | */ | 
|  | 291 | tmp = xmit->buf[xmit->tail]; | 
|  | 292 | xmit->tail = (xmit->tail + 1) & (DZ_XMIT_SIZE - 1); | 
|  | 293 | dz_out(dport, DZ_TDR, tmp); | 
|  | 294 | dport->port.icount.tx++; | 
|  | 295 |  | 
|  | 296 | if (uart_circ_chars_pending(xmit) < DZ_WAKEUP_CHARS) | 
|  | 297 | uart_write_wakeup(&dport->port); | 
|  | 298 |  | 
| Maciej W. Rozycki | 9399575 | 2006-12-06 20:38:59 -0800 | [diff] [blame] | 299 | /* Are we are done. */ | 
| Maciej W. Rozycki | 43d46ab | 2008-02-07 00:15:11 -0800 | [diff] [blame] | 300 | if (uart_circ_empty(xmit)) { | 
|  | 301 | spin_lock(&dport->port.lock); | 
| Russell King | b129a8c | 2005-08-31 10:12:14 +0100 | [diff] [blame] | 302 | dz_stop_tx(&dport->port); | 
| Maciej W. Rozycki | 43d46ab | 2008-02-07 00:15:11 -0800 | [diff] [blame] | 303 | spin_unlock(&dport->port.lock); | 
|  | 304 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 305 | } | 
|  | 306 |  | 
|  | 307 | /* | 
|  | 308 | * ------------------------------------------------------------ | 
| Maciej W. Rozycki | 9399575 | 2006-12-06 20:38:59 -0800 | [diff] [blame] | 309 | * check_modem_status() | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | * | 
| Maciej W. Rozycki | 9399575 | 2006-12-06 20:38:59 -0800 | [diff] [blame] | 311 | * DS 3100 & 5100: Only valid for the MODEM line, duh! | 
|  | 312 | * DS 5000/200: Valid for the MODEM and PRINTER line. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | * ------------------------------------------------------------ | 
|  | 314 | */ | 
|  | 315 | static inline void check_modem_status(struct dz_port *dport) | 
|  | 316 | { | 
| Maciej W. Rozycki | 9399575 | 2006-12-06 20:38:59 -0800 | [diff] [blame] | 317 | /* | 
|  | 318 | * FIXME: | 
|  | 319 | * 1. No status change interrupt; use a timer. | 
|  | 320 | * 2. Handle the 3100/5000 as appropriate. --macro | 
|  | 321 | */ | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 322 | u16 status; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 |  | 
| Maciej W. Rozycki | 9399575 | 2006-12-06 20:38:59 -0800 | [diff] [blame] | 324 | /* If not the modem line just return.  */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | if (dport->port.line != DZ_MODEM) | 
|  | 326 | return; | 
|  | 327 |  | 
|  | 328 | status = dz_in(dport, DZ_MSR); | 
|  | 329 |  | 
|  | 330 | /* it's easy, since DSR2 is the only bit in the register */ | 
|  | 331 | if (status) | 
|  | 332 | dport->port.icount.dsr++; | 
|  | 333 | } | 
|  | 334 |  | 
|  | 335 | /* | 
|  | 336 | * ------------------------------------------------------------ | 
|  | 337 | * dz_interrupt () | 
|  | 338 | * | 
|  | 339 | * this is the main interrupt routine for the DZ chip. | 
|  | 340 | * It deals with the multiple ports. | 
|  | 341 | * ------------------------------------------------------------ | 
|  | 342 | */ | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 343 | static irqreturn_t dz_interrupt(int irq, void *dev_id) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | { | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 345 | struct dz_mux *mux = dev_id; | 
|  | 346 | struct dz_port *dport = &mux->dport[0]; | 
|  | 347 | u16 status; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 |  | 
|  | 349 | /* get the reason why we just got an irq */ | 
| Maciej W. Rozycki | 9399575 | 2006-12-06 20:38:59 -0800 | [diff] [blame] | 350 | status = dz_in(dport, DZ_CSR); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 |  | 
| Maciej W. Rozycki | 9399575 | 2006-12-06 20:38:59 -0800 | [diff] [blame] | 352 | if ((status & (DZ_RDONE | DZ_RIE)) == (DZ_RDONE | DZ_RIE)) | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 353 | dz_receive_chars(mux); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 |  | 
| Maciej W. Rozycki | 9399575 | 2006-12-06 20:38:59 -0800 | [diff] [blame] | 355 | if ((status & (DZ_TRDY | DZ_TIE)) == (DZ_TRDY | DZ_TIE)) | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 356 | dz_transmit_chars(mux); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | return IRQ_HANDLED; | 
|  | 359 | } | 
|  | 360 |  | 
|  | 361 | /* | 
|  | 362 | * ------------------------------------------------------------------- | 
|  | 363 | * Here ends the DZ interrupt routines. | 
|  | 364 | * ------------------------------------------------------------------- | 
|  | 365 | */ | 
|  | 366 |  | 
|  | 367 | static unsigned int dz_get_mctrl(struct uart_port *uport) | 
|  | 368 | { | 
| Maciej W. Rozycki | 9399575 | 2006-12-06 20:38:59 -0800 | [diff] [blame] | 369 | /* | 
|  | 370 | * FIXME: Handle the 3100/5000 as appropriate. --macro | 
|  | 371 | */ | 
| Maciej W. Rozycki | f5519ca | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 372 | struct dz_port *dport = to_dport(uport); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | unsigned int mctrl = TIOCM_CAR | TIOCM_DSR | TIOCM_CTS; | 
|  | 374 |  | 
|  | 375 | if (dport->port.line == DZ_MODEM) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | if (dz_in(dport, DZ_MSR) & DZ_MODEM_DSR) | 
|  | 377 | mctrl &= ~TIOCM_DSR; | 
|  | 378 | } | 
|  | 379 |  | 
|  | 380 | return mctrl; | 
|  | 381 | } | 
|  | 382 |  | 
|  | 383 | static void dz_set_mctrl(struct uart_port *uport, unsigned int mctrl) | 
|  | 384 | { | 
| Maciej W. Rozycki | 9399575 | 2006-12-06 20:38:59 -0800 | [diff] [blame] | 385 | /* | 
|  | 386 | * FIXME: Handle the 3100/5000 as appropriate. --macro | 
|  | 387 | */ | 
| Maciej W. Rozycki | f5519ca | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 388 | struct dz_port *dport = to_dport(uport); | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 389 | u16 tmp; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 |  | 
|  | 391 | if (dport->port.line == DZ_MODEM) { | 
|  | 392 | tmp = dz_in(dport, DZ_TCR); | 
|  | 393 | if (mctrl & TIOCM_DTR) | 
|  | 394 | tmp &= ~DZ_MODEM_DTR; | 
|  | 395 | else | 
|  | 396 | tmp |= DZ_MODEM_DTR; | 
|  | 397 | dz_out(dport, DZ_TCR, tmp); | 
|  | 398 | } | 
|  | 399 | } | 
|  | 400 |  | 
|  | 401 | /* | 
|  | 402 | * ------------------------------------------------------------------- | 
|  | 403 | * startup () | 
|  | 404 | * | 
|  | 405 | * various initialization tasks | 
| Ralf Baechle | fd8c597 | 2005-11-12 21:59:59 +0000 | [diff] [blame] | 406 | * ------------------------------------------------------------------- | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | */ | 
|  | 408 | static int dz_startup(struct uart_port *uport) | 
|  | 409 | { | 
| Maciej W. Rozycki | f5519ca | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 410 | struct dz_port *dport = to_dport(uport); | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 411 | struct dz_mux *mux = dport->mux; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | unsigned long flags; | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 413 | int irq_guard; | 
|  | 414 | int ret; | 
|  | 415 | u16 tmp; | 
|  | 416 |  | 
|  | 417 | irq_guard = atomic_add_return(1, &mux->irq_guard); | 
|  | 418 | if (irq_guard != 1) | 
|  | 419 | return 0; | 
|  | 420 |  | 
|  | 421 | ret = request_irq(dport->port.irq, dz_interrupt, | 
|  | 422 | IRQF_SHARED, "dz", mux); | 
|  | 423 | if (ret) { | 
|  | 424 | atomic_add(-1, &mux->irq_guard); | 
|  | 425 | printk(KERN_ERR "dz: Cannot get IRQ %d!\n", dport->port.irq); | 
|  | 426 | return ret; | 
|  | 427 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 429 | spin_lock_irqsave(&dport->port.lock, flags); | 
|  | 430 |  | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 431 | /* Enable interrupts.  */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | tmp = dz_in(dport, DZ_CSR); | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 433 | tmp |= DZ_RIE | DZ_TIE; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | dz_out(dport, DZ_CSR, tmp); | 
|  | 435 |  | 
|  | 436 | spin_unlock_irqrestore(&dport->port.lock, flags); | 
|  | 437 |  | 
|  | 438 | return 0; | 
|  | 439 | } | 
|  | 440 |  | 
| Ralf Baechle | fd8c597 | 2005-11-12 21:59:59 +0000 | [diff] [blame] | 441 | /* | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | * ------------------------------------------------------------------- | 
|  | 443 | * shutdown () | 
|  | 444 | * | 
|  | 445 | * This routine will shutdown a serial port; interrupts are disabled, and | 
|  | 446 | * DTR is dropped if the hangup on close termio flag is on. | 
| Ralf Baechle | fd8c597 | 2005-11-12 21:59:59 +0000 | [diff] [blame] | 447 | * ------------------------------------------------------------------- | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 448 | */ | 
|  | 449 | static void dz_shutdown(struct uart_port *uport) | 
|  | 450 | { | 
| Maciej W. Rozycki | f5519ca | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 451 | struct dz_port *dport = to_dport(uport); | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 452 | struct dz_mux *mux = dport->mux; | 
| Maciej W. Rozycki | 43d46ab | 2008-02-07 00:15:11 -0800 | [diff] [blame] | 453 | unsigned long flags; | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 454 | int irq_guard; | 
|  | 455 | u16 tmp; | 
| Maciej W. Rozycki | 43d46ab | 2008-02-07 00:15:11 -0800 | [diff] [blame] | 456 |  | 
|  | 457 | spin_lock_irqsave(&dport->port.lock, flags); | 
|  | 458 | dz_stop_tx(&dport->port); | 
|  | 459 | spin_unlock_irqrestore(&dport->port.lock, flags); | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 460 |  | 
|  | 461 | irq_guard = atomic_add_return(-1, &mux->irq_guard); | 
|  | 462 | if (!irq_guard) { | 
|  | 463 | /* Disable interrupts.  */ | 
|  | 464 | tmp = dz_in(dport, DZ_CSR); | 
|  | 465 | tmp &= ~(DZ_RIE | DZ_TIE); | 
|  | 466 | dz_out(dport, DZ_CSR, tmp); | 
|  | 467 |  | 
|  | 468 | free_irq(dport->port.irq, mux); | 
|  | 469 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | } | 
|  | 471 |  | 
|  | 472 | /* | 
| Maciej W. Rozycki | 9399575 | 2006-12-06 20:38:59 -0800 | [diff] [blame] | 473 | * ------------------------------------------------------------------- | 
|  | 474 | * dz_tx_empty() -- get the transmitter empty status | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 475 | * | 
|  | 476 | * Purpose: Let user call ioctl() to get info when the UART physically | 
|  | 477 | *          is emptied.  On bus types like RS485, the transmitter must | 
|  | 478 | *          release the bus after transmitting. This must be done when | 
|  | 479 | *          the transmit shift register is empty, not be done when the | 
|  | 480 | *          transmit holding register is empty.  This functionality | 
| Ralf Baechle | fd8c597 | 2005-11-12 21:59:59 +0000 | [diff] [blame] | 481 | *          allows an RS485 driver to be written in user space. | 
| Maciej W. Rozycki | 9399575 | 2006-12-06 20:38:59 -0800 | [diff] [blame] | 482 | * ------------------------------------------------------------------- | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | */ | 
|  | 484 | static unsigned int dz_tx_empty(struct uart_port *uport) | 
|  | 485 | { | 
| Maciej W. Rozycki | f5519ca | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 486 | struct dz_port *dport = to_dport(uport); | 
| Maciej W. Rozycki | 9399575 | 2006-12-06 20:38:59 -0800 | [diff] [blame] | 487 | unsigned short tmp, mask = 1 << dport->port.line; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 488 |  | 
| Maciej W. Rozycki | 9399575 | 2006-12-06 20:38:59 -0800 | [diff] [blame] | 489 | tmp = dz_in(dport, DZ_TCR); | 
|  | 490 | tmp &= mask; | 
|  | 491 |  | 
|  | 492 | return tmp ? 0 : TIOCSER_TEMT; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 493 | } | 
|  | 494 |  | 
|  | 495 | static void dz_break_ctl(struct uart_port *uport, int break_state) | 
|  | 496 | { | 
| Maciej W. Rozycki | 9399575 | 2006-12-06 20:38:59 -0800 | [diff] [blame] | 497 | /* | 
|  | 498 | * FIXME: Can't access BREAK bits in TDR easily; | 
|  | 499 | * reuse the code for polled TX. --macro | 
|  | 500 | */ | 
| Maciej W. Rozycki | f5519ca | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 501 | struct dz_port *dport = to_dport(uport); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | unsigned long flags; | 
| Maciej W. Rozycki | 9399575 | 2006-12-06 20:38:59 -0800 | [diff] [blame] | 503 | unsigned short tmp, mask = 1 << dport->port.line; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 504 |  | 
|  | 505 | spin_lock_irqsave(&uport->lock, flags); | 
|  | 506 | tmp = dz_in(dport, DZ_TCR); | 
|  | 507 | if (break_state) | 
|  | 508 | tmp |= mask; | 
|  | 509 | else | 
|  | 510 | tmp &= ~mask; | 
|  | 511 | dz_out(dport, DZ_TCR, tmp); | 
|  | 512 | spin_unlock_irqrestore(&uport->lock, flags); | 
|  | 513 | } | 
|  | 514 |  | 
| Maciej W. Rozycki | ff11d07 | 2008-02-07 00:15:14 -0800 | [diff] [blame] | 515 | static int dz_encode_baud_rate(unsigned int baud) | 
|  | 516 | { | 
|  | 517 | switch (baud) { | 
|  | 518 | case 50: | 
|  | 519 | return DZ_B50; | 
|  | 520 | case 75: | 
|  | 521 | return DZ_B75; | 
|  | 522 | case 110: | 
|  | 523 | return DZ_B110; | 
|  | 524 | case 134: | 
|  | 525 | return DZ_B134; | 
|  | 526 | case 150: | 
|  | 527 | return DZ_B150; | 
|  | 528 | case 300: | 
|  | 529 | return DZ_B300; | 
|  | 530 | case 600: | 
|  | 531 | return DZ_B600; | 
|  | 532 | case 1200: | 
|  | 533 | return DZ_B1200; | 
|  | 534 | case 1800: | 
|  | 535 | return DZ_B1800; | 
|  | 536 | case 2000: | 
|  | 537 | return DZ_B2000; | 
|  | 538 | case 2400: | 
|  | 539 | return DZ_B2400; | 
|  | 540 | case 3600: | 
|  | 541 | return DZ_B3600; | 
|  | 542 | case 4800: | 
|  | 543 | return DZ_B4800; | 
|  | 544 | case 7200: | 
|  | 545 | return DZ_B7200; | 
|  | 546 | case 9600: | 
|  | 547 | return DZ_B9600; | 
|  | 548 | default: | 
|  | 549 | return -1; | 
|  | 550 | } | 
|  | 551 | } | 
|  | 552 |  | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 553 |  | 
|  | 554 | static void dz_reset(struct dz_port *dport) | 
|  | 555 | { | 
|  | 556 | struct dz_mux *mux = dport->mux; | 
|  | 557 |  | 
|  | 558 | if (mux->initialised) | 
|  | 559 | return; | 
|  | 560 |  | 
|  | 561 | dz_out(dport, DZ_CSR, DZ_CLR); | 
|  | 562 | while (dz_in(dport, DZ_CSR) & DZ_CLR); | 
|  | 563 | iob(); | 
|  | 564 |  | 
|  | 565 | /* Enable scanning.  */ | 
|  | 566 | dz_out(dport, DZ_CSR, DZ_MSE); | 
|  | 567 |  | 
|  | 568 | mux->initialised = 1; | 
|  | 569 | } | 
|  | 570 |  | 
| Alan Cox | 606d099 | 2006-12-08 02:38:45 -0800 | [diff] [blame] | 571 | static void dz_set_termios(struct uart_port *uport, struct ktermios *termios, | 
|  | 572 | struct ktermios *old_termios) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | { | 
| Maciej W. Rozycki | f5519ca | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 574 | struct dz_port *dport = to_dport(uport); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 575 | unsigned long flags; | 
|  | 576 | unsigned int cflag, baud; | 
| Maciej W. Rozycki | ff11d07 | 2008-02-07 00:15:14 -0800 | [diff] [blame] | 577 | int bflag; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 578 |  | 
|  | 579 | cflag = dport->port.line; | 
|  | 580 |  | 
|  | 581 | switch (termios->c_cflag & CSIZE) { | 
|  | 582 | case CS5: | 
|  | 583 | cflag |= DZ_CS5; | 
|  | 584 | break; | 
|  | 585 | case CS6: | 
|  | 586 | cflag |= DZ_CS6; | 
|  | 587 | break; | 
|  | 588 | case CS7: | 
|  | 589 | cflag |= DZ_CS7; | 
|  | 590 | break; | 
|  | 591 | case CS8: | 
|  | 592 | default: | 
|  | 593 | cflag |= DZ_CS8; | 
|  | 594 | } | 
|  | 595 |  | 
|  | 596 | if (termios->c_cflag & CSTOPB) | 
|  | 597 | cflag |= DZ_CSTOPB; | 
|  | 598 | if (termios->c_cflag & PARENB) | 
|  | 599 | cflag |= DZ_PARENB; | 
|  | 600 | if (termios->c_cflag & PARODD) | 
|  | 601 | cflag |= DZ_PARODD; | 
|  | 602 |  | 
|  | 603 | baud = uart_get_baud_rate(uport, termios, old_termios, 50, 9600); | 
| Maciej W. Rozycki | ff11d07 | 2008-02-07 00:15:14 -0800 | [diff] [blame] | 604 | bflag = dz_encode_baud_rate(baud); | 
|  | 605 | if (bflag < 0)	{			/* Try to keep unchanged.  */ | 
|  | 606 | baud = uart_get_baud_rate(uport, old_termios, NULL, 50, 9600); | 
|  | 607 | bflag = dz_encode_baud_rate(baud); | 
|  | 608 | if (bflag < 0)	{		/* Resort to 9600.  */ | 
|  | 609 | baud = 9600; | 
|  | 610 | bflag = DZ_B9600; | 
|  | 611 | } | 
|  | 612 | tty_termios_encode_baud_rate(termios, baud, baud); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 613 | } | 
| Maciej W. Rozycki | ff11d07 | 2008-02-07 00:15:14 -0800 | [diff] [blame] | 614 | cflag |= bflag; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 615 |  | 
|  | 616 | if (termios->c_cflag & CREAD) | 
|  | 617 | cflag |= DZ_RXENAB; | 
|  | 618 |  | 
|  | 619 | spin_lock_irqsave(&dport->port.lock, flags); | 
|  | 620 |  | 
| Maciej W. Rozycki | ff11d07 | 2008-02-07 00:15:14 -0800 | [diff] [blame] | 621 | uart_update_timeout(uport, termios->c_cflag, baud); | 
|  | 622 |  | 
|  | 623 | dz_out(dport, DZ_LPR, cflag); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | dport->cflag = cflag; | 
|  | 625 |  | 
|  | 626 | /* setup accept flag */ | 
|  | 627 | dport->port.read_status_mask = DZ_OERR; | 
|  | 628 | if (termios->c_iflag & INPCK) | 
|  | 629 | dport->port.read_status_mask |= DZ_FERR | DZ_PERR; | 
| Maciej W. Rozycki | 54c0f37 | 2008-02-07 00:15:12 -0800 | [diff] [blame] | 630 | if (termios->c_iflag & (BRKINT | PARMRK)) | 
|  | 631 | dport->port.read_status_mask |= DZ_BREAK; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 632 |  | 
|  | 633 | /* characters to ignore */ | 
|  | 634 | uport->ignore_status_mask = 0; | 
| Maciej W. Rozycki | 54c0f37 | 2008-02-07 00:15:12 -0800 | [diff] [blame] | 635 | if ((termios->c_iflag & (IGNPAR | IGNBRK)) == (IGNPAR | IGNBRK)) | 
|  | 636 | dport->port.ignore_status_mask |= DZ_OERR; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 637 | if (termios->c_iflag & IGNPAR) | 
|  | 638 | dport->port.ignore_status_mask |= DZ_FERR | DZ_PERR; | 
| Maciej W. Rozycki | 54c0f37 | 2008-02-07 00:15:12 -0800 | [diff] [blame] | 639 | if (termios->c_iflag & IGNBRK) | 
|  | 640 | dport->port.ignore_status_mask |= DZ_BREAK; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 641 |  | 
|  | 642 | spin_unlock_irqrestore(&dport->port.lock, flags); | 
|  | 643 | } | 
|  | 644 |  | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 645 | static const char *dz_type(struct uart_port *uport) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 646 | { | 
|  | 647 | return "DZ"; | 
|  | 648 | } | 
|  | 649 |  | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 650 | static void dz_release_port(struct uart_port *uport) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 651 | { | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 652 | struct dz_mux *mux = to_dport(uport)->mux; | 
|  | 653 | int map_guard; | 
|  | 654 |  | 
|  | 655 | iounmap(uport->membase); | 
|  | 656 | uport->membase = NULL; | 
|  | 657 |  | 
|  | 658 | map_guard = atomic_add_return(-1, &mux->map_guard); | 
|  | 659 | if (!map_guard) | 
|  | 660 | release_mem_region(uport->mapbase, dec_kn_slot_size); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 661 | } | 
|  | 662 |  | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 663 | static int dz_map_port(struct uart_port *uport) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 664 | { | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 665 | if (!uport->membase) | 
|  | 666 | uport->membase = ioremap_nocache(uport->mapbase, | 
|  | 667 | dec_kn_slot_size); | 
|  | 668 | if (!uport->membase) { | 
|  | 669 | printk(KERN_ERR "dz: Cannot map MMIO\n"); | 
|  | 670 | return -ENOMEM; | 
|  | 671 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 672 | return 0; | 
|  | 673 | } | 
|  | 674 |  | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 675 | static int dz_request_port(struct uart_port *uport) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 676 | { | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 677 | struct dz_mux *mux = to_dport(uport)->mux; | 
|  | 678 | int map_guard; | 
|  | 679 | int ret; | 
|  | 680 |  | 
|  | 681 | map_guard = atomic_add_return(1, &mux->map_guard); | 
|  | 682 | if (map_guard == 1) { | 
|  | 683 | if (!request_mem_region(uport->mapbase, dec_kn_slot_size, | 
|  | 684 | "dz")) { | 
|  | 685 | atomic_add(-1, &mux->map_guard); | 
|  | 686 | printk(KERN_ERR | 
|  | 687 | "dz: Unable to reserve MMIO resource\n"); | 
|  | 688 | return -EBUSY; | 
|  | 689 | } | 
|  | 690 | } | 
|  | 691 | ret = dz_map_port(uport); | 
|  | 692 | if (ret) { | 
|  | 693 | map_guard = atomic_add_return(-1, &mux->map_guard); | 
|  | 694 | if (!map_guard) | 
|  | 695 | release_mem_region(uport->mapbase, dec_kn_slot_size); | 
|  | 696 | return ret; | 
|  | 697 | } | 
|  | 698 | return 0; | 
|  | 699 | } | 
|  | 700 |  | 
|  | 701 | static void dz_config_port(struct uart_port *uport, int flags) | 
|  | 702 | { | 
|  | 703 | struct dz_port *dport = to_dport(uport); | 
|  | 704 |  | 
|  | 705 | if (flags & UART_CONFIG_TYPE) { | 
|  | 706 | if (dz_request_port(uport)) | 
|  | 707 | return; | 
|  | 708 |  | 
|  | 709 | uport->type = PORT_DZ; | 
|  | 710 |  | 
|  | 711 | dz_reset(dport); | 
|  | 712 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 713 | } | 
|  | 714 |  | 
|  | 715 | /* | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 716 | * Verify the new serial_struct (for TIOCSSERIAL). | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 717 | */ | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 718 | static int dz_verify_port(struct uart_port *uport, struct serial_struct *ser) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 719 | { | 
|  | 720 | int ret = 0; | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 721 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 722 | if (ser->type != PORT_UNKNOWN && ser->type != PORT_DZ) | 
|  | 723 | ret = -EINVAL; | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 724 | if (ser->irq != uport->irq) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 725 | ret = -EINVAL; | 
|  | 726 | return ret; | 
|  | 727 | } | 
|  | 728 |  | 
|  | 729 | static struct uart_ops dz_ops = { | 
|  | 730 | .tx_empty	= dz_tx_empty, | 
|  | 731 | .get_mctrl	= dz_get_mctrl, | 
|  | 732 | .set_mctrl	= dz_set_mctrl, | 
|  | 733 | .stop_tx	= dz_stop_tx, | 
|  | 734 | .start_tx	= dz_start_tx, | 
|  | 735 | .stop_rx	= dz_stop_rx, | 
|  | 736 | .enable_ms	= dz_enable_ms, | 
|  | 737 | .break_ctl	= dz_break_ctl, | 
|  | 738 | .startup	= dz_startup, | 
|  | 739 | .shutdown	= dz_shutdown, | 
|  | 740 | .set_termios	= dz_set_termios, | 
|  | 741 | .type		= dz_type, | 
|  | 742 | .release_port	= dz_release_port, | 
|  | 743 | .request_port	= dz_request_port, | 
|  | 744 | .config_port	= dz_config_port, | 
|  | 745 | .verify_port	= dz_verify_port, | 
|  | 746 | }; | 
|  | 747 |  | 
|  | 748 | static void __init dz_init_ports(void) | 
|  | 749 | { | 
|  | 750 | static int first = 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 751 | unsigned long base; | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 752 | int line; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 753 |  | 
|  | 754 | if (!first) | 
|  | 755 | return; | 
|  | 756 | first = 0; | 
|  | 757 |  | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 758 | if (mips_machtype == MACH_DS23100 || mips_machtype == MACH_DS5100) | 
|  | 759 | base = dec_kn_slot_base + KN01_DZ11; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 760 | else | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 761 | base = dec_kn_slot_base + KN02_DZ11; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 762 |  | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 763 | for (line = 0; line < DZ_NB_PORT; line++) { | 
|  | 764 | struct dz_port *dport = &dz_mux.dport[line]; | 
|  | 765 | struct uart_port *uport = &dport->port; | 
|  | 766 |  | 
|  | 767 | dport->mux	= &dz_mux; | 
|  | 768 |  | 
|  | 769 | uport->irq	= dec_interrupt[DEC_IRQ_DZ11]; | 
|  | 770 | uport->fifosize	= 1; | 
|  | 771 | uport->iotype	= UPIO_MEM; | 
|  | 772 | uport->flags	= UPF_BOOT_AUTOCONF; | 
|  | 773 | uport->ops	= &dz_ops; | 
|  | 774 | uport->line	= line; | 
|  | 775 | uport->mapbase	= base; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 776 | } | 
|  | 777 | } | 
|  | 778 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 779 | #ifdef CONFIG_SERIAL_DZ_CONSOLE | 
| Maciej W. Rozycki | 9399575 | 2006-12-06 20:38:59 -0800 | [diff] [blame] | 780 | /* | 
|  | 781 | * ------------------------------------------------------------------- | 
|  | 782 | * dz_console_putchar() -- transmit a character | 
|  | 783 | * | 
|  | 784 | * Polled transmission.  This is tricky.  We need to mask transmit | 
|  | 785 | * interrupts so that they do not interfere, enable the transmitter | 
|  | 786 | * for the line requested and then wait till the transmit scanner | 
|  | 787 | * requests data for this line.  But it may request data for another | 
|  | 788 | * line first, in which case we have to disable its transmitter and | 
|  | 789 | * repeat waiting till our line pops up.  Only then the character may | 
|  | 790 | * be transmitted.  Finally, the state of the transmitter mask is | 
|  | 791 | * restored.  Welcome to the world of PDP-11! | 
|  | 792 | * ------------------------------------------------------------------- | 
|  | 793 | */ | 
| Martin Michlmayr | d608ab9 | 2006-06-26 18:18:11 +0200 | [diff] [blame] | 794 | static void dz_console_putchar(struct uart_port *uport, int ch) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 795 | { | 
| Maciej W. Rozycki | f5519ca | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 796 | struct dz_port *dport = to_dport(uport); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 | unsigned long flags; | 
| Maciej W. Rozycki | 9399575 | 2006-12-06 20:38:59 -0800 | [diff] [blame] | 798 | unsigned short csr, tcr, trdy, mask; | 
|  | 799 | int loops = 10000; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 800 |  | 
|  | 801 | spin_lock_irqsave(&dport->port.lock, flags); | 
| Maciej W. Rozycki | 9399575 | 2006-12-06 20:38:59 -0800 | [diff] [blame] | 802 | csr = dz_in(dport, DZ_CSR); | 
|  | 803 | dz_out(dport, DZ_CSR, csr & ~DZ_TIE); | 
|  | 804 | tcr = dz_in(dport, DZ_TCR); | 
|  | 805 | tcr |= 1 << dport->port.line; | 
|  | 806 | mask = tcr; | 
|  | 807 | dz_out(dport, DZ_TCR, mask); | 
|  | 808 | iob(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 809 | spin_unlock_irqrestore(&dport->port.lock, flags); | 
| Maciej W. Rozycki | 9399575 | 2006-12-06 20:38:59 -0800 | [diff] [blame] | 810 |  | 
| Maciej W. Rozycki | dbab812 | 2008-02-07 00:15:07 -0800 | [diff] [blame] | 811 | do { | 
| Maciej W. Rozycki | 9399575 | 2006-12-06 20:38:59 -0800 | [diff] [blame] | 812 | trdy = dz_in(dport, DZ_CSR); | 
|  | 813 | if (!(trdy & DZ_TRDY)) | 
|  | 814 | continue; | 
|  | 815 | trdy = (trdy & DZ_TLINE) >> 8; | 
|  | 816 | if (trdy == dport->port.line) | 
|  | 817 | break; | 
|  | 818 | mask &= ~(1 << trdy); | 
|  | 819 | dz_out(dport, DZ_TCR, mask); | 
|  | 820 | iob(); | 
|  | 821 | udelay(2); | 
| Maciej W. Rozycki | dbab812 | 2008-02-07 00:15:07 -0800 | [diff] [blame] | 822 | } while (loops--); | 
| Maciej W. Rozycki | 9399575 | 2006-12-06 20:38:59 -0800 | [diff] [blame] | 823 |  | 
|  | 824 | if (loops)				/* Cannot send otherwise. */ | 
|  | 825 | dz_out(dport, DZ_TDR, ch); | 
|  | 826 |  | 
|  | 827 | dz_out(dport, DZ_TCR, tcr); | 
|  | 828 | dz_out(dport, DZ_CSR, csr); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 829 | } | 
| Russell King | d358788 | 2006-03-20 20:00:09 +0000 | [diff] [blame] | 830 |  | 
| Ralf Baechle | fd8c597 | 2005-11-12 21:59:59 +0000 | [diff] [blame] | 831 | /* | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 832 | * ------------------------------------------------------------------- | 
|  | 833 | * dz_console_print () | 
|  | 834 | * | 
|  | 835 | * dz_console_print is registered for printk. | 
|  | 836 | * The console must be locked when we get here. | 
| Ralf Baechle | fd8c597 | 2005-11-12 21:59:59 +0000 | [diff] [blame] | 837 | * ------------------------------------------------------------------- | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 838 | */ | 
| Maciej W. Rozycki | 9399575 | 2006-12-06 20:38:59 -0800 | [diff] [blame] | 839 | static void dz_console_print(struct console *co, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 840 | const char *str, | 
|  | 841 | unsigned int count) | 
|  | 842 | { | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 843 | struct dz_port *dport = &dz_mux.dport[co->index]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 844 | #ifdef DEBUG_DZ | 
|  | 845 | prom_printf((char *) str); | 
|  | 846 | #endif | 
| Russell King | d358788 | 2006-03-20 20:00:09 +0000 | [diff] [blame] | 847 | uart_console_write(&dport->port, str, count, dz_console_putchar); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 848 | } | 
|  | 849 |  | 
|  | 850 | static int __init dz_console_setup(struct console *co, char *options) | 
|  | 851 | { | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 852 | struct dz_port *dport = &dz_mux.dport[co->index]; | 
|  | 853 | struct uart_port *uport = &dport->port; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 854 | int baud = 9600; | 
|  | 855 | int bits = 8; | 
|  | 856 | int parity = 'n'; | 
|  | 857 | int flow = 'n'; | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 858 | int ret; | 
|  | 859 |  | 
|  | 860 | ret = dz_map_port(uport); | 
|  | 861 | if (ret) | 
|  | 862 | return ret; | 
|  | 863 |  | 
|  | 864 | dz_reset(dport); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 865 |  | 
|  | 866 | if (options) | 
|  | 867 | uart_parse_options(options, &baud, &parity, &bits, &flow); | 
|  | 868 |  | 
| Maciej W. Rozycki | 9399575 | 2006-12-06 20:38:59 -0800 | [diff] [blame] | 869 | return uart_set_options(&dport->port, co, baud, parity, bits, flow); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 870 | } | 
|  | 871 |  | 
| Maciej W. Rozycki | 9399575 | 2006-12-06 20:38:59 -0800 | [diff] [blame] | 872 | static struct uart_driver dz_reg; | 
| Maciej W. Rozycki | 6d83c06 | 2008-02-07 00:15:10 -0800 | [diff] [blame] | 873 | static struct console dz_console = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 874 | .name	= "ttyS", | 
|  | 875 | .write	= dz_console_print, | 
|  | 876 | .device	= uart_console_device, | 
|  | 877 | .setup	= dz_console_setup, | 
| Maciej W. Rozycki | 9399575 | 2006-12-06 20:38:59 -0800 | [diff] [blame] | 878 | .flags	= CON_PRINTBUFFER, | 
|  | 879 | .index	= -1, | 
|  | 880 | .data	= &dz_reg, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 881 | }; | 
|  | 882 |  | 
| Maciej W. Rozycki | 9399575 | 2006-12-06 20:38:59 -0800 | [diff] [blame] | 883 | static int __init dz_serial_console_init(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 884 | { | 
| Maciej W. Rozycki | 9399575 | 2006-12-06 20:38:59 -0800 | [diff] [blame] | 885 | if (!IOASIC) { | 
|  | 886 | dz_init_ports(); | 
| Maciej W. Rozycki | 6d83c06 | 2008-02-07 00:15:10 -0800 | [diff] [blame] | 887 | register_console(&dz_console); | 
| Maciej W. Rozycki | 9399575 | 2006-12-06 20:38:59 -0800 | [diff] [blame] | 888 | return 0; | 
|  | 889 | } else | 
|  | 890 | return -ENXIO; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 891 | } | 
|  | 892 |  | 
| Maciej W. Rozycki | 9399575 | 2006-12-06 20:38:59 -0800 | [diff] [blame] | 893 | console_initcall(dz_serial_console_init); | 
|  | 894 |  | 
| Maciej W. Rozycki | 6d83c06 | 2008-02-07 00:15:10 -0800 | [diff] [blame] | 895 | #define SERIAL_DZ_CONSOLE	&dz_console | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 896 | #else | 
|  | 897 | #define SERIAL_DZ_CONSOLE	NULL | 
|  | 898 | #endif /* CONFIG_SERIAL_DZ_CONSOLE */ | 
|  | 899 |  | 
|  | 900 | static struct uart_driver dz_reg = { | 
|  | 901 | .owner			= THIS_MODULE, | 
|  | 902 | .driver_name		= "serial", | 
| Maciej W. Rozycki | 9399575 | 2006-12-06 20:38:59 -0800 | [diff] [blame] | 903 | .dev_name		= "ttyS", | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 904 | .major			= TTY_MAJOR, | 
|  | 905 | .minor			= 64, | 
|  | 906 | .nr			= DZ_NB_PORT, | 
|  | 907 | .cons			= SERIAL_DZ_CONSOLE, | 
|  | 908 | }; | 
|  | 909 |  | 
| Maciej W. Rozycki | 9399575 | 2006-12-06 20:38:59 -0800 | [diff] [blame] | 910 | static int __init dz_init(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 911 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 912 | int ret, i; | 
|  | 913 |  | 
| Maciej W. Rozycki | 9399575 | 2006-12-06 20:38:59 -0800 | [diff] [blame] | 914 | if (IOASIC) | 
|  | 915 | return -ENXIO; | 
|  | 916 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 917 | printk("%s%s\n", dz_name, dz_version); | 
|  | 918 |  | 
|  | 919 | dz_init_ports(); | 
|  | 920 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 921 | ret = uart_register_driver(&dz_reg); | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 922 | if (ret) | 
|  | 923 | return ret; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 924 |  | 
|  | 925 | for (i = 0; i < DZ_NB_PORT; i++) | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 926 | uart_add_one_port(&dz_reg, &dz_mux.dport[i].port); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 927 |  | 
| Maciej W. Rozycki | e6ee512 | 2008-02-07 00:15:15 -0800 | [diff] [blame] | 928 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 929 | } | 
|  | 930 |  | 
| Maciej W. Rozycki | 9399575 | 2006-12-06 20:38:59 -0800 | [diff] [blame] | 931 | module_init(dz_init); |