Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * drivers/serial/sh-sci.c |
| 3 | * |
| 4 | * SuperH on-chip serial module support. (SCI with no FIFO / with FIFO) |
| 5 | * |
Paul Mundt | 7ff731a | 2008-10-01 15:46:58 +0900 | [diff] [blame] | 6 | * Copyright (C) 2002 - 2008 Paul Mundt |
Markus Brunner | 3ea6bc3 | 2007-08-20 08:59:33 +0900 | [diff] [blame] | 7 | * Modified to support SH7720 SCIF. Markus Brunner, Mark Jonas (Jul 2007). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | * |
| 9 | * based off of the old drivers/char/sh-sci.c by: |
| 10 | * |
| 11 | * Copyright (C) 1999, 2000 Niibe Yutaka |
| 12 | * Copyright (C) 2000 Sugioka Toshinobu |
| 13 | * Modified to support multiple serial ports. Stuart Menefy (May 2000). |
| 14 | * Modified to support SecureEdge. David McCullough (2002) |
| 15 | * Modified to support SH7300 SCIF. Takashi Kusuda (Jun 2003). |
Magnus Damm | d89ddd1 | 2007-07-25 11:42:56 +0900 | [diff] [blame] | 16 | * Removed SH7300 support (Jul 2007). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | * |
| 18 | * This file is subject to the terms and conditions of the GNU General Public |
| 19 | * License. See the file "COPYING" in the main directory of this archive |
| 20 | * for more details. |
| 21 | */ |
Paul Mundt | 0b3d4ef | 2007-03-14 13:22:37 +0900 | [diff] [blame] | 22 | #if defined(CONFIG_SERIAL_SH_SCI_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ) |
| 23 | #define SUPPORT_SYSRQ |
| 24 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | |
| 26 | #undef DEBUG |
| 27 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include <linux/module.h> |
| 29 | #include <linux/errno.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #include <linux/timer.h> |
| 31 | #include <linux/interrupt.h> |
| 32 | #include <linux/tty.h> |
| 33 | #include <linux/tty_flip.h> |
| 34 | #include <linux/serial.h> |
| 35 | #include <linux/major.h> |
| 36 | #include <linux/string.h> |
| 37 | #include <linux/sysrq.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | #include <linux/ioport.h> |
| 39 | #include <linux/mm.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | #include <linux/init.h> |
| 41 | #include <linux/delay.h> |
| 42 | #include <linux/console.h> |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 43 | #include <linux/platform_device.h> |
Paul Mundt | 96de1a8 | 2008-02-26 14:52:45 +0900 | [diff] [blame] | 44 | #include <linux/serial_sci.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | #include <linux/notifier.h> |
| 46 | #include <linux/cpufreq.h> |
Paul Mundt | 85f094e | 2008-04-25 16:04:20 +0900 | [diff] [blame] | 47 | #include <linux/clk.h> |
Paul Mundt | fa5da2f | 2007-03-08 17:27:37 +0900 | [diff] [blame] | 48 | #include <linux/ctype.h> |
Paul Mundt | 7ff731a | 2008-10-01 15:46:58 +0900 | [diff] [blame] | 49 | #include <linux/err.h> |
Paul Mundt | 85f094e | 2008-04-25 16:04:20 +0900 | [diff] [blame] | 50 | |
| 51 | #ifdef CONFIG_SUPERH |
Paul Mundt | b7a76e4 | 2006-02-01 03:06:06 -0800 | [diff] [blame] | 52 | #include <asm/clock.h> |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 53 | #include <asm/sh_bios.h> |
| 54 | #include <asm/kgdb.h> |
Paul Mundt | b7a76e4 | 2006-02-01 03:06:06 -0800 | [diff] [blame] | 55 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | #include "sh-sci.h" |
| 58 | |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 59 | struct sci_port { |
| 60 | struct uart_port port; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 62 | /* Port type */ |
| 63 | unsigned int type; |
| 64 | |
| 65 | /* Port IRQs: ERI, RXI, TXI, BRI (optional) */ |
Paul Mundt | 32351a2 | 2007-03-12 14:38:59 +0900 | [diff] [blame] | 66 | unsigned int irqs[SCIx_NR_IRQS]; |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 67 | |
| 68 | /* Port pin configuration */ |
| 69 | void (*init_pins)(struct uart_port *port, |
| 70 | unsigned int cflag); |
| 71 | |
| 72 | /* Port enable callback */ |
| 73 | void (*enable)(struct uart_port *port); |
| 74 | |
| 75 | /* Port disable callback */ |
| 76 | void (*disable)(struct uart_port *port); |
| 77 | |
| 78 | /* Break timer */ |
| 79 | struct timer_list break_timer; |
| 80 | int break_flag; |
dmitry pervushin | 1534a3b | 2007-04-24 13:41:12 +0900 | [diff] [blame] | 81 | |
Paul Mundt | a2159b5 | 2008-10-02 19:09:13 +0900 | [diff] [blame] | 82 | #ifdef CONFIG_HAVE_CLK |
dmitry pervushin | 1534a3b | 2007-04-24 13:41:12 +0900 | [diff] [blame] | 83 | /* Port clock */ |
| 84 | struct clk *clk; |
Paul Mundt | 005a336 | 2007-04-26 11:45:32 +0900 | [diff] [blame] | 85 | #endif |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 86 | }; |
| 87 | |
| 88 | #ifdef CONFIG_SH_KGDB |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | static struct sci_port *kgdb_sci_port; |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 90 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | |
| 92 | #ifdef CONFIG_SERIAL_SH_SCI_CONSOLE |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 93 | static struct sci_port *serial_console_port; |
| 94 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | |
| 96 | /* Function prototypes */ |
Russell King | b129a8c | 2005-08-31 10:12:14 +0100 | [diff] [blame] | 97 | static void sci_stop_tx(struct uart_port *port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 99 | #define SCI_NPORTS CONFIG_SERIAL_SH_SCI_NR_UARTS |
| 100 | |
| 101 | static struct sci_port sci_ports[SCI_NPORTS]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | static struct uart_driver sci_uart_driver; |
| 103 | |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 104 | #if defined(CONFIG_SERIAL_SH_SCI_CONSOLE) && \ |
| 105 | defined(CONFIG_SH_STANDARD_BIOS) || defined(CONFIG_SH_KGDB) |
| 106 | static inline void handle_error(struct uart_port *port) |
| 107 | { |
| 108 | /* Clear error flags */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | sci_out(port, SCxSR, SCxSR_ERROR_CLEAR(port)); |
| 110 | } |
| 111 | |
| 112 | static int get_char(struct uart_port *port) |
| 113 | { |
| 114 | unsigned long flags; |
| 115 | unsigned short status; |
| 116 | int c; |
| 117 | |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 118 | spin_lock_irqsave(&port->lock, flags); |
| 119 | do { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | status = sci_in(port, SCxSR); |
| 121 | if (status & SCxSR_ERRORS(port)) { |
| 122 | handle_error(port); |
| 123 | continue; |
| 124 | } |
| 125 | } while (!(status & SCxSR_RDxF(port))); |
| 126 | c = sci_in(port, SCxRDR); |
| 127 | sci_in(port, SCxSR); /* Dummy read */ |
| 128 | sci_out(port, SCxSR, SCxSR_RDxF_CLEAR(port)); |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 129 | spin_unlock_irqrestore(&port->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | |
| 131 | return c; |
| 132 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | #endif /* CONFIG_SH_STANDARD_BIOS || CONFIG_SH_KGDB */ |
| 134 | |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 135 | #if defined(CONFIG_SERIAL_SH_SCI_CONSOLE) || defined(CONFIG_SH_KGDB) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | static void put_char(struct uart_port *port, char c) |
| 137 | { |
| 138 | unsigned long flags; |
| 139 | unsigned short status; |
| 140 | |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 141 | spin_lock_irqsave(&port->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | |
| 143 | do { |
| 144 | status = sci_in(port, SCxSR); |
| 145 | } while (!(status & SCxSR_TDxE(port))); |
| 146 | |
| 147 | sci_out(port, SCxTDR, c); |
| 148 | sci_in(port, SCxSR); /* Dummy read */ |
| 149 | sci_out(port, SCxSR, SCxSR_TDxE_CLEAR(port)); |
| 150 | |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 151 | spin_unlock_irqrestore(&port->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | } |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 153 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 155 | #ifdef CONFIG_SERIAL_SH_SCI_CONSOLE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | static void put_string(struct sci_port *sci_port, const char *buffer, int count) |
| 157 | { |
| 158 | struct uart_port *port = &sci_port->port; |
| 159 | const unsigned char *p = buffer; |
| 160 | int i; |
| 161 | |
| 162 | #if defined(CONFIG_SH_STANDARD_BIOS) || defined(CONFIG_SH_KGDB) |
| 163 | int checksum; |
| 164 | int usegdb=0; |
| 165 | |
| 166 | #ifdef CONFIG_SH_STANDARD_BIOS |
Paul Mundt | b7a76e4 | 2006-02-01 03:06:06 -0800 | [diff] [blame] | 167 | /* This call only does a trap the first time it is |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | * called, and so is safe to do here unconditionally |
| 169 | */ |
| 170 | usegdb |= sh_bios_in_gdb_mode(); |
| 171 | #endif |
| 172 | #ifdef CONFIG_SH_KGDB |
Paul Mundt | fa5da2f | 2007-03-08 17:27:37 +0900 | [diff] [blame] | 173 | usegdb |= (kgdb_in_gdb_mode && (sci_port == kgdb_sci_port)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | #endif |
| 175 | |
| 176 | if (usegdb) { |
| 177 | /* $<packet info>#<checksum>. */ |
| 178 | do { |
| 179 | unsigned char c; |
| 180 | put_char(port, '$'); |
| 181 | put_char(port, 'O'); /* 'O'utput to console */ |
| 182 | checksum = 'O'; |
| 183 | |
| 184 | for (i=0; i<count; i++) { /* Don't use run length encoding */ |
| 185 | int h, l; |
| 186 | |
| 187 | c = *p++; |
Harvey Harrison | bfd3c7a | 2008-05-12 12:05:43 -0700 | [diff] [blame] | 188 | h = hex_asc_hi(c); |
| 189 | l = hex_asc_lo(c); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | put_char(port, h); |
| 191 | put_char(port, l); |
| 192 | checksum += h + l; |
| 193 | } |
| 194 | put_char(port, '#'); |
Harvey Harrison | bfd3c7a | 2008-05-12 12:05:43 -0700 | [diff] [blame] | 195 | put_char(port, hex_asc_hi(checksum)); |
| 196 | put_char(port, hex_asc_lo(checksum)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | } while (get_char(port) != '+'); |
| 198 | } else |
| 199 | #endif /* CONFIG_SH_STANDARD_BIOS || CONFIG_SH_KGDB */ |
| 200 | for (i=0; i<count; i++) { |
| 201 | if (*p == 10) |
| 202 | put_char(port, '\r'); |
| 203 | put_char(port, *p++); |
| 204 | } |
| 205 | } |
| 206 | #endif /* CONFIG_SERIAL_SH_SCI_CONSOLE */ |
| 207 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | #ifdef CONFIG_SH_KGDB |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 209 | static int kgdb_sci_getchar(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | { |
| 211 | int c; |
| 212 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | /* Keep trying to read a character, this could be neater */ |
Paul Mundt | fa5da2f | 2007-03-08 17:27:37 +0900 | [diff] [blame] | 214 | while ((c = get_char(&kgdb_sci_port->port)) < 0) |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 215 | cpu_relax(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | |
| 217 | return c; |
| 218 | } |
| 219 | |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 220 | static inline void kgdb_sci_putchar(int c) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | { |
Paul Mundt | fa5da2f | 2007-03-08 17:27:37 +0900 | [diff] [blame] | 222 | put_char(&kgdb_sci_port->port, c); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | #endif /* CONFIG_SH_KGDB */ |
| 225 | |
| 226 | #if defined(__H8300S__) |
| 227 | enum { sci_disable, sci_enable }; |
| 228 | |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 229 | static void h8300_sci_config(struct uart_port* port, unsigned int ctrl) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | { |
| 231 | volatile unsigned char *mstpcrl=(volatile unsigned char *)MSTPCRL; |
| 232 | int ch = (port->mapbase - SMR0) >> 3; |
| 233 | unsigned char mask = 1 << (ch+1); |
| 234 | |
| 235 | if (ctrl == sci_disable) { |
| 236 | *mstpcrl |= mask; |
| 237 | } else { |
| 238 | *mstpcrl &= ~mask; |
| 239 | } |
| 240 | } |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 241 | |
| 242 | static inline void h8300_sci_enable(struct uart_port *port) |
| 243 | { |
| 244 | h8300_sci_config(port, sci_enable); |
| 245 | } |
| 246 | |
| 247 | static inline void h8300_sci_disable(struct uart_port *port) |
| 248 | { |
| 249 | h8300_sci_config(port, sci_disable); |
| 250 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | #endif |
| 252 | |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 253 | #if defined(SCI_ONLY) || defined(SCI_AND_SCIF) && \ |
| 254 | defined(__H8300H__) || defined(__H8300S__) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | static void sci_init_pins_sci(struct uart_port* port, unsigned int cflag) |
| 256 | { |
| 257 | int ch = (port->mapbase - SMR0) >> 3; |
| 258 | |
| 259 | /* set DDR regs */ |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 260 | H8300_GPIO_DDR(h8300_sci_pins[ch].port, |
| 261 | h8300_sci_pins[ch].rx, |
| 262 | H8300_GPIO_INPUT); |
| 263 | H8300_GPIO_DDR(h8300_sci_pins[ch].port, |
| 264 | h8300_sci_pins[ch].tx, |
| 265 | H8300_GPIO_OUTPUT); |
| 266 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | /* tx mark output*/ |
| 268 | H8300_SCI_DR(ch) |= h8300_sci_pins[ch].tx; |
| 269 | } |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 270 | #else |
| 271 | #define sci_init_pins_sci NULL |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | #endif |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 273 | |
| 274 | #if defined(CONFIG_CPU_SUBTYPE_SH7707) || defined(CONFIG_CPU_SUBTYPE_SH7709) |
| 275 | static void sci_init_pins_irda(struct uart_port *port, unsigned int cflag) |
| 276 | { |
| 277 | unsigned int fcr_val = 0; |
| 278 | |
| 279 | if (cflag & CRTSCTS) |
| 280 | fcr_val |= SCFCR_MCE; |
| 281 | |
| 282 | sci_out(port, SCFCR, fcr_val); |
| 283 | } |
| 284 | #else |
| 285 | #define sci_init_pins_irda NULL |
| 286 | #endif |
| 287 | |
| 288 | #ifdef SCI_ONLY |
| 289 | #define sci_init_pins_scif NULL |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | #endif |
| 291 | |
| 292 | #if defined(SCIF_ONLY) || defined(SCI_AND_SCIF) |
Magnus Damm | d89ddd1 | 2007-07-25 11:42:56 +0900 | [diff] [blame] | 293 | #if defined(CONFIG_CPU_SUBTYPE_SH7710) || defined(CONFIG_CPU_SUBTYPE_SH7712) |
Nobuhiro Iwamatsu | 9465a54 | 2007-03-27 18:13:51 +0900 | [diff] [blame] | 294 | static void sci_init_pins_scif(struct uart_port* port, unsigned int cflag) |
| 295 | { |
| 296 | unsigned int fcr_val = 0; |
| 297 | |
| 298 | set_sh771x_scif_pfc(port); |
| 299 | if (cflag & CRTSCTS) { |
| 300 | fcr_val |= SCFCR_MCE; |
| 301 | } |
| 302 | sci_out(port, SCFCR, fcr_val); |
| 303 | } |
Yoshihiro Shimoda | 31a49c4 | 2007-12-26 11:45:06 +0900 | [diff] [blame] | 304 | #elif defined(CONFIG_CPU_SUBTYPE_SH7720) || defined(CONFIG_CPU_SUBTYPE_SH7721) |
Markus Brunner | 3ea6bc3 | 2007-08-20 08:59:33 +0900 | [diff] [blame] | 305 | static void sci_init_pins_scif(struct uart_port *port, unsigned int cflag) |
| 306 | { |
| 307 | unsigned int fcr_val = 0; |
| 308 | unsigned short data; |
| 309 | |
| 310 | if (cflag & CRTSCTS) { |
| 311 | /* enable RTS/CTS */ |
| 312 | if (port->mapbase == 0xa4430000) { /* SCIF0 */ |
| 313 | /* Clear PTCR bit 9-2; enable all scif pins but sck */ |
| 314 | data = ctrl_inw(PORT_PTCR); |
| 315 | ctrl_outw((data & 0xfc03), PORT_PTCR); |
| 316 | } else if (port->mapbase == 0xa4438000) { /* SCIF1 */ |
| 317 | /* Clear PVCR bit 9-2 */ |
| 318 | data = ctrl_inw(PORT_PVCR); |
| 319 | ctrl_outw((data & 0xfc03), PORT_PVCR); |
| 320 | } |
| 321 | fcr_val |= SCFCR_MCE; |
| 322 | } else { |
| 323 | if (port->mapbase == 0xa4430000) { /* SCIF0 */ |
| 324 | /* Clear PTCR bit 5-2; enable only tx and rx */ |
| 325 | data = ctrl_inw(PORT_PTCR); |
| 326 | ctrl_outw((data & 0xffc3), PORT_PTCR); |
| 327 | } else if (port->mapbase == 0xa4438000) { /* SCIF1 */ |
| 328 | /* Clear PVCR bit 5-2 */ |
| 329 | data = ctrl_inw(PORT_PVCR); |
| 330 | ctrl_outw((data & 0xffc3), PORT_PVCR); |
| 331 | } |
| 332 | } |
| 333 | sci_out(port, SCFCR, fcr_val); |
| 334 | } |
Paul Mundt | b7a76e4 | 2006-02-01 03:06:06 -0800 | [diff] [blame] | 335 | #elif defined(CONFIG_CPU_SH3) |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 336 | /* For SH7705, SH7706, SH7707, SH7709, SH7709A, SH7729 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | static void sci_init_pins_scif(struct uart_port *port, unsigned int cflag) |
| 338 | { |
| 339 | unsigned int fcr_val = 0; |
Paul Mundt | b7a76e4 | 2006-02-01 03:06:06 -0800 | [diff] [blame] | 340 | unsigned short data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | |
Paul Mundt | b7a76e4 | 2006-02-01 03:06:06 -0800 | [diff] [blame] | 342 | /* We need to set SCPCR to enable RTS/CTS */ |
| 343 | data = ctrl_inw(SCPCR); |
| 344 | /* Clear out SCP7MD1,0, SCP6MD1,0, SCP4MD1,0*/ |
| 345 | ctrl_outw(data & 0x0fcf, SCPCR); |
| 346 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | if (cflag & CRTSCTS) |
| 348 | fcr_val |= SCFCR_MCE; |
| 349 | else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | /* We need to set SCPCR to enable RTS/CTS */ |
| 351 | data = ctrl_inw(SCPCR); |
| 352 | /* Clear out SCP7MD1,0, SCP4MD1,0, |
| 353 | Set SCP6MD1,0 = {01} (output) */ |
Paul Mundt | b7a76e4 | 2006-02-01 03:06:06 -0800 | [diff] [blame] | 354 | ctrl_outw((data & 0x0fcf) | 0x1000, SCPCR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | |
| 356 | data = ctrl_inb(SCPDR); |
| 357 | /* Set /RTS2 (bit6) = 0 */ |
Paul Mundt | b7a76e4 | 2006-02-01 03:06:06 -0800 | [diff] [blame] | 358 | ctrl_outb(data & 0xbf, SCPDR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | } |
Paul Mundt | b7a76e4 | 2006-02-01 03:06:06 -0800 | [diff] [blame] | 360 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | sci_out(port, SCFCR, fcr_val); |
| 362 | } |
Paul Mundt | 41504c3 | 2006-12-11 20:28:03 +0900 | [diff] [blame] | 363 | #elif defined(CONFIG_CPU_SUBTYPE_SH7722) |
| 364 | static void sci_init_pins_scif(struct uart_port *port, unsigned int cflag) |
| 365 | { |
| 366 | unsigned int fcr_val = 0; |
Magnus Damm | 346b746 | 2008-04-23 21:25:29 +0900 | [diff] [blame] | 367 | unsigned short data; |
Paul Mundt | 41504c3 | 2006-12-11 20:28:03 +0900 | [diff] [blame] | 368 | |
Magnus Damm | 346b746 | 2008-04-23 21:25:29 +0900 | [diff] [blame] | 369 | if (port->mapbase == 0xffe00000) { |
| 370 | data = ctrl_inw(PSCR); |
| 371 | data &= ~0x03cf; |
| 372 | if (cflag & CRTSCTS) |
| 373 | fcr_val |= SCFCR_MCE; |
| 374 | else |
| 375 | data |= 0x0340; |
Paul Mundt | 41504c3 | 2006-12-11 20:28:03 +0900 | [diff] [blame] | 376 | |
Magnus Damm | 346b746 | 2008-04-23 21:25:29 +0900 | [diff] [blame] | 377 | ctrl_outw(data, PSCR); |
Paul Mundt | 41504c3 | 2006-12-11 20:28:03 +0900 | [diff] [blame] | 378 | } |
Magnus Damm | 346b746 | 2008-04-23 21:25:29 +0900 | [diff] [blame] | 379 | /* SCIF1 and SCIF2 should be setup by board code */ |
Paul Mundt | 41504c3 | 2006-12-11 20:28:03 +0900 | [diff] [blame] | 380 | |
| 381 | sci_out(port, SCFCR, fcr_val); |
| 382 | } |
Paul Mundt | 178dd0c | 2008-04-09 17:56:18 +0900 | [diff] [blame] | 383 | #elif defined(CONFIG_CPU_SUBTYPE_SH7723) |
| 384 | static void sci_init_pins_scif(struct uart_port *port, unsigned int cflag) |
| 385 | { |
| 386 | /* Nothing to do here.. */ |
| 387 | sci_out(port, SCFCR, 0); |
| 388 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | #else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | /* For SH7750 */ |
| 391 | static void sci_init_pins_scif(struct uart_port *port, unsigned int cflag) |
| 392 | { |
| 393 | unsigned int fcr_val = 0; |
| 394 | |
| 395 | if (cflag & CRTSCTS) { |
| 396 | fcr_val |= SCFCR_MCE; |
| 397 | } else { |
Magnus Damm | 9109a30 | 2008-02-08 17:31:24 +0900 | [diff] [blame] | 398 | #if defined(CONFIG_CPU_SUBTYPE_SH7343) || defined(CONFIG_CPU_SUBTYPE_SH7366) |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 399 | /* Nothing */ |
Yoshihiro Shimoda | 7d740a0 | 2008-01-07 14:40:07 +0900 | [diff] [blame] | 400 | #elif defined(CONFIG_CPU_SUBTYPE_SH7763) || \ |
| 401 | defined(CONFIG_CPU_SUBTYPE_SH7780) || \ |
Paul Mundt | 2b1bd1a | 2007-06-20 18:27:10 +0900 | [diff] [blame] | 402 | defined(CONFIG_CPU_SUBTYPE_SH7785) || \ |
| 403 | defined(CONFIG_CPU_SUBTYPE_SHX3) |
Paul Mundt | b7a76e4 | 2006-02-01 03:06:06 -0800 | [diff] [blame] | 404 | ctrl_outw(0x0080, SCSPTR0); /* Set RTS = 1 */ |
| 405 | #else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | ctrl_outw(0x0080, SCSPTR2); /* Set RTS = 1 */ |
Paul Mundt | b7a76e4 | 2006-02-01 03:06:06 -0800 | [diff] [blame] | 407 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | } |
| 409 | sci_out(port, SCFCR, fcr_val); |
| 410 | } |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 411 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | |
Paul Mundt | 32351a2 | 2007-03-12 14:38:59 +0900 | [diff] [blame] | 413 | #if defined(CONFIG_CPU_SUBTYPE_SH7760) || \ |
| 414 | defined(CONFIG_CPU_SUBTYPE_SH7780) || \ |
| 415 | defined(CONFIG_CPU_SUBTYPE_SH7785) |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 416 | static inline int scif_txroom(struct uart_port *port) |
| 417 | { |
Yutaro Ebihara | cae167d | 2008-03-11 13:58:50 +0900 | [diff] [blame] | 418 | return SCIF_TXROOM_MAX - (sci_in(port, SCTFDR) & 0xff); |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 419 | } |
| 420 | |
| 421 | static inline int scif_rxroom(struct uart_port *port) |
| 422 | { |
Yutaro Ebihara | cae167d | 2008-03-11 13:58:50 +0900 | [diff] [blame] | 423 | return sci_in(port, SCRFDR) & 0xff; |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 424 | } |
Nobuhiro Iwamatsu | c63847a | 2008-06-06 17:04:08 +0900 | [diff] [blame] | 425 | #elif defined(CONFIG_CPU_SUBTYPE_SH7763) |
| 426 | static inline int scif_txroom(struct uart_port *port) |
| 427 | { |
| 428 | if((port->mapbase == 0xffe00000) || (port->mapbase == 0xffe08000)) /* SCIF0/1*/ |
| 429 | return SCIF_TXROOM_MAX - (sci_in(port, SCTFDR) & 0xff); |
| 430 | else /* SCIF2 */ |
| 431 | return SCIF2_TXROOM_MAX - (sci_in(port, SCFDR) >> 8); |
| 432 | } |
| 433 | |
| 434 | static inline int scif_rxroom(struct uart_port *port) |
| 435 | { |
| 436 | if((port->mapbase == 0xffe00000) || (port->mapbase == 0xffe08000)) /* SCIF0/1*/ |
| 437 | return sci_in(port, SCRFDR) & 0xff; |
| 438 | else /* SCIF2 */ |
| 439 | return sci_in(port, SCFDR) & SCIF2_RFDC_MASK; |
| 440 | } |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 441 | #else |
| 442 | static inline int scif_txroom(struct uart_port *port) |
| 443 | { |
| 444 | return SCIF_TXROOM_MAX - (sci_in(port, SCFDR) >> 8); |
| 445 | } |
| 446 | |
| 447 | static inline int scif_rxroom(struct uart_port *port) |
| 448 | { |
| 449 | return sci_in(port, SCFDR) & SCIF_RFDC_MASK; |
| 450 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 451 | #endif |
| 452 | #endif /* SCIF_ONLY || SCI_AND_SCIF */ |
| 453 | |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 454 | static inline int sci_txroom(struct uart_port *port) |
| 455 | { |
| 456 | return ((sci_in(port, SCxSR) & SCI_TDRE) != 0); |
| 457 | } |
| 458 | |
| 459 | static inline int sci_rxroom(struct uart_port *port) |
| 460 | { |
| 461 | return ((sci_in(port, SCxSR) & SCxSR_RDxF(port)) != 0); |
| 462 | } |
| 463 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | /* ********************************************************************** * |
| 465 | * the interrupt related routines * |
| 466 | * ********************************************************************** */ |
| 467 | |
| 468 | static void sci_transmit_chars(struct uart_port *port) |
| 469 | { |
| 470 | struct circ_buf *xmit = &port->info->xmit; |
| 471 | unsigned int stopped = uart_tx_stopped(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | unsigned short status; |
| 473 | unsigned short ctrl; |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 474 | int count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 475 | |
| 476 | status = sci_in(port, SCxSR); |
| 477 | if (!(status & SCxSR_TDxE(port))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | ctrl = sci_in(port, SCSCR); |
| 479 | if (uart_circ_empty(xmit)) { |
| 480 | ctrl &= ~SCI_CTRL_FLAGS_TIE; |
| 481 | } else { |
| 482 | ctrl |= SCI_CTRL_FLAGS_TIE; |
| 483 | } |
| 484 | sci_out(port, SCSCR, ctrl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 485 | return; |
| 486 | } |
| 487 | |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 488 | #ifndef SCI_ONLY |
| 489 | if (port->type == PORT_SCIF) |
| 490 | count = scif_txroom(port); |
| 491 | else |
Paul Mundt | b7a76e4 | 2006-02-01 03:06:06 -0800 | [diff] [blame] | 492 | #endif |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 493 | count = sci_txroom(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | |
| 495 | do { |
| 496 | unsigned char c; |
| 497 | |
| 498 | if (port->x_char) { |
| 499 | c = port->x_char; |
| 500 | port->x_char = 0; |
| 501 | } else if (!uart_circ_empty(xmit) && !stopped) { |
| 502 | c = xmit->buf[xmit->tail]; |
| 503 | xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1); |
| 504 | } else { |
| 505 | break; |
| 506 | } |
| 507 | |
| 508 | sci_out(port, SCxTDR, c); |
| 509 | |
| 510 | port->icount.tx++; |
| 511 | } while (--count > 0); |
| 512 | |
| 513 | sci_out(port, SCxSR, SCxSR_TDxE_CLEAR(port)); |
| 514 | |
| 515 | if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS) |
| 516 | uart_write_wakeup(port); |
| 517 | if (uart_circ_empty(xmit)) { |
Russell King | b129a8c | 2005-08-31 10:12:14 +0100 | [diff] [blame] | 518 | sci_stop_tx(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 519 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | ctrl = sci_in(port, SCSCR); |
| 521 | |
| 522 | #if !defined(SCI_ONLY) |
| 523 | if (port->type == PORT_SCIF) { |
| 524 | sci_in(port, SCxSR); /* Dummy read */ |
| 525 | sci_out(port, SCxSR, SCxSR_TDxE_CLEAR(port)); |
| 526 | } |
| 527 | #endif |
| 528 | |
| 529 | ctrl |= SCI_CTRL_FLAGS_TIE; |
| 530 | sci_out(port, SCSCR, ctrl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 531 | } |
| 532 | } |
| 533 | |
| 534 | /* On SH3, SCIF may read end-of-break as a space->mark char */ |
| 535 | #define STEPFN(c) ({int __c=(c); (((__c-1)|(__c)) == -1); }) |
| 536 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 537 | static inline void sci_receive_chars(struct uart_port *port) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | { |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 539 | struct sci_port *sci_port = (struct sci_port *)port; |
Takashi Iwai | a88487c | 2008-07-16 21:54:42 +0100 | [diff] [blame] | 540 | struct tty_struct *tty = port->info->port.tty; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | int i, count, copied = 0; |
| 542 | unsigned short status; |
Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 543 | unsigned char flag; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 544 | |
| 545 | status = sci_in(port, SCxSR); |
| 546 | if (!(status & SCxSR_RDxF(port))) |
| 547 | return; |
| 548 | |
| 549 | while (1) { |
| 550 | #if !defined(SCI_ONLY) |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 551 | if (port->type == PORT_SCIF) |
| 552 | count = scif_rxroom(port); |
| 553 | else |
Paul Mundt | b7a76e4 | 2006-02-01 03:06:06 -0800 | [diff] [blame] | 554 | #endif |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 555 | count = sci_rxroom(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | |
| 557 | /* Don't copy more bytes than there is room for in the buffer */ |
Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 558 | count = tty_buffer_request_room(tty, count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 559 | |
| 560 | /* If for any reason we can't copy more data, we're done! */ |
| 561 | if (count == 0) |
| 562 | break; |
| 563 | |
| 564 | if (port->type == PORT_SCI) { |
| 565 | char c = sci_in(port, SCxRDR); |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 566 | if (uart_handle_sysrq_char(port, c) || sci_port->break_flag) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | count = 0; |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 568 | else { |
| 569 | tty_insert_flip_char(tty, c, TTY_NORMAL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | } |
| 571 | } else { |
| 572 | for (i=0; i<count; i++) { |
| 573 | char c = sci_in(port, SCxRDR); |
| 574 | status = sci_in(port, SCxSR); |
| 575 | #if defined(CONFIG_CPU_SH3) |
| 576 | /* Skip "chars" during break */ |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 577 | if (sci_port->break_flag) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 578 | if ((c == 0) && |
| 579 | (status & SCxSR_FER(port))) { |
| 580 | count--; i--; |
| 581 | continue; |
| 582 | } |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 583 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 584 | /* Nonzero => end-of-break */ |
| 585 | pr_debug("scif: debounce<%02x>\n", c); |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 586 | sci_port->break_flag = 0; |
| 587 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 588 | if (STEPFN(c)) { |
| 589 | count--; i--; |
| 590 | continue; |
| 591 | } |
| 592 | } |
| 593 | #endif /* CONFIG_CPU_SH3 */ |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 594 | if (uart_handle_sysrq_char(port, c)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 595 | count--; i--; |
| 596 | continue; |
| 597 | } |
| 598 | |
| 599 | /* Store data and status */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 600 | if (status&SCxSR_FER(port)) { |
Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 601 | flag = TTY_FRAME; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | pr_debug("sci: frame error\n"); |
| 603 | } else if (status&SCxSR_PER(port)) { |
Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 604 | flag = TTY_PARITY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 605 | pr_debug("sci: parity error\n"); |
Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 606 | } else |
| 607 | flag = TTY_NORMAL; |
| 608 | tty_insert_flip_char(tty, c, flag); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 609 | } |
| 610 | } |
| 611 | |
| 612 | sci_in(port, SCxSR); /* dummy read */ |
| 613 | sci_out(port, SCxSR, SCxSR_RDxF_CLEAR(port)); |
| 614 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 615 | copied += count; |
| 616 | port->icount.rx += count; |
| 617 | } |
| 618 | |
| 619 | if (copied) { |
| 620 | /* Tell the rest of the system the news. New characters! */ |
| 621 | tty_flip_buffer_push(tty); |
| 622 | } else { |
| 623 | sci_in(port, SCxSR); /* dummy read */ |
| 624 | sci_out(port, SCxSR, SCxSR_RDxF_CLEAR(port)); |
| 625 | } |
| 626 | } |
| 627 | |
| 628 | #define SCI_BREAK_JIFFIES (HZ/20) |
| 629 | /* The sci generates interrupts during the break, |
| 630 | * 1 per millisecond or so during the break period, for 9600 baud. |
| 631 | * So dont bother disabling interrupts. |
| 632 | * But dont want more than 1 break event. |
| 633 | * Use a kernel timer to periodically poll the rx line until |
| 634 | * the break is finished. |
| 635 | */ |
| 636 | static void sci_schedule_break_timer(struct sci_port *port) |
| 637 | { |
| 638 | port->break_timer.expires = jiffies + SCI_BREAK_JIFFIES; |
| 639 | add_timer(&port->break_timer); |
| 640 | } |
| 641 | /* Ensure that two consecutive samples find the break over. */ |
| 642 | static void sci_break_timer(unsigned long data) |
| 643 | { |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 644 | struct sci_port *port = (struct sci_port *)data; |
| 645 | |
| 646 | if (sci_rxd_in(&port->port) == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 647 | port->break_flag = 1; |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 648 | sci_schedule_break_timer(port); |
| 649 | } else if (port->break_flag == 1) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | /* break is over. */ |
| 651 | port->break_flag = 2; |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 652 | sci_schedule_break_timer(port); |
| 653 | } else |
| 654 | port->break_flag = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 655 | } |
| 656 | |
| 657 | static inline int sci_handle_errors(struct uart_port *port) |
| 658 | { |
| 659 | int copied = 0; |
| 660 | unsigned short status = sci_in(port, SCxSR); |
Takashi Iwai | a88487c | 2008-07-16 21:54:42 +0100 | [diff] [blame] | 661 | struct tty_struct *tty = port->info->port.tty; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 662 | |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 663 | if (status & SCxSR_ORER(port)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 664 | /* overrun error */ |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 665 | if (tty_insert_flip_char(tty, 0, TTY_OVERRUN)) |
Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 666 | copied++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 667 | pr_debug("sci: overrun error\n"); |
| 668 | } |
| 669 | |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 670 | if (status & SCxSR_FER(port)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 671 | if (sci_rxd_in(port) == 0) { |
| 672 | /* Notify of BREAK */ |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 673 | struct sci_port *sci_port = (struct sci_port *)port; |
| 674 | |
| 675 | if (!sci_port->break_flag) { |
| 676 | sci_port->break_flag = 1; |
| 677 | sci_schedule_break_timer(sci_port); |
| 678 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 679 | /* Do sysrq handling. */ |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 680 | if (uart_handle_break(port)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 681 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 682 | pr_debug("sci: BREAK detected\n"); |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 683 | if (tty_insert_flip_char(tty, 0, TTY_BREAK)) |
Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 684 | copied++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 685 | } |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 686 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 687 | /* frame error */ |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 688 | if (tty_insert_flip_char(tty, 0, TTY_FRAME)) |
Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 689 | copied++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 690 | pr_debug("sci: frame error\n"); |
| 691 | } |
| 692 | } |
| 693 | |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 694 | if (status & SCxSR_PER(port)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 695 | /* parity error */ |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 696 | if (tty_insert_flip_char(tty, 0, TTY_PARITY)) |
| 697 | copied++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 698 | pr_debug("sci: parity error\n"); |
| 699 | } |
| 700 | |
Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 701 | if (copied) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 702 | tty_flip_buffer_push(tty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | |
| 704 | return copied; |
| 705 | } |
| 706 | |
| 707 | static inline int sci_handle_breaks(struct uart_port *port) |
| 708 | { |
| 709 | int copied = 0; |
| 710 | unsigned short status = sci_in(port, SCxSR); |
Takashi Iwai | a88487c | 2008-07-16 21:54:42 +0100 | [diff] [blame] | 711 | struct tty_struct *tty = port->info->port.tty; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 712 | struct sci_port *s = &sci_ports[port->line]; |
| 713 | |
Paul Mundt | 0b3d4ef | 2007-03-14 13:22:37 +0900 | [diff] [blame] | 714 | if (uart_handle_break(port)) |
| 715 | return 0; |
| 716 | |
Paul Mundt | b7a76e4 | 2006-02-01 03:06:06 -0800 | [diff] [blame] | 717 | if (!s->break_flag && status & SCxSR_BRK(port)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 718 | #if defined(CONFIG_CPU_SH3) |
| 719 | /* Debounce break */ |
| 720 | s->break_flag = 1; |
| 721 | #endif |
| 722 | /* Notify of BREAK */ |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 723 | if (tty_insert_flip_char(tty, 0, TTY_BREAK)) |
Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 724 | copied++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 725 | pr_debug("sci: BREAK detected\n"); |
| 726 | } |
| 727 | |
| 728 | #if defined(SCIF_ORER) |
| 729 | /* XXX: Handle SCIF overrun error */ |
| 730 | if (port->type == PORT_SCIF && (sci_in(port, SCLSR) & SCIF_ORER) != 0) { |
| 731 | sci_out(port, SCLSR, 0); |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 732 | if (tty_insert_flip_char(tty, 0, TTY_OVERRUN)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | copied++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 734 | pr_debug("sci: overrun error\n"); |
| 735 | } |
| 736 | } |
| 737 | #endif |
| 738 | |
Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 739 | if (copied) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 740 | tty_flip_buffer_push(tty); |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 741 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 742 | return copied; |
| 743 | } |
| 744 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 745 | static irqreturn_t sci_rx_interrupt(int irq, void *port) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 746 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 747 | /* I think sci_receive_chars has to be called irrespective |
| 748 | * of whether the I_IXOFF is set, otherwise, how is the interrupt |
| 749 | * to be disabled? |
| 750 | */ |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 751 | sci_receive_chars(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 752 | |
| 753 | return IRQ_HANDLED; |
| 754 | } |
| 755 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 756 | static irqreturn_t sci_tx_interrupt(int irq, void *ptr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 757 | { |
| 758 | struct uart_port *port = ptr; |
| 759 | |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 760 | spin_lock_irq(&port->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 761 | sci_transmit_chars(port); |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 762 | spin_unlock_irq(&port->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 763 | |
| 764 | return IRQ_HANDLED; |
| 765 | } |
| 766 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 767 | static irqreturn_t sci_er_interrupt(int irq, void *ptr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 768 | { |
| 769 | struct uart_port *port = ptr; |
| 770 | |
| 771 | /* Handle errors */ |
| 772 | if (port->type == PORT_SCI) { |
| 773 | if (sci_handle_errors(port)) { |
| 774 | /* discard character in rx buffer */ |
| 775 | sci_in(port, SCxSR); |
| 776 | sci_out(port, SCxSR, SCxSR_RDxF_CLEAR(port)); |
| 777 | } |
| 778 | } else { |
| 779 | #if defined(SCIF_ORER) |
| 780 | if((sci_in(port, SCLSR) & SCIF_ORER) != 0) { |
Takashi Iwai | a88487c | 2008-07-16 21:54:42 +0100 | [diff] [blame] | 781 | struct tty_struct *tty = port->info->port.tty; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 782 | |
| 783 | sci_out(port, SCLSR, 0); |
Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 784 | tty_insert_flip_char(tty, 0, TTY_OVERRUN); |
| 785 | tty_flip_buffer_push(tty); |
| 786 | pr_debug("scif: overrun error\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 787 | } |
| 788 | #endif |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 789 | sci_rx_interrupt(irq, ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 790 | } |
| 791 | |
| 792 | sci_out(port, SCxSR, SCxSR_ERROR_CLEAR(port)); |
| 793 | |
| 794 | /* Kick the transmission */ |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 795 | sci_tx_interrupt(irq, ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 796 | |
| 797 | return IRQ_HANDLED; |
| 798 | } |
| 799 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 800 | static irqreturn_t sci_br_interrupt(int irq, void *ptr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 801 | { |
| 802 | struct uart_port *port = ptr; |
| 803 | |
| 804 | /* Handle BREAKs */ |
| 805 | sci_handle_breaks(port); |
| 806 | sci_out(port, SCxSR, SCxSR_BREAK_CLEAR(port)); |
| 807 | |
| 808 | return IRQ_HANDLED; |
| 809 | } |
| 810 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 811 | static irqreturn_t sci_mpxed_interrupt(int irq, void *ptr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 812 | { |
| 813 | unsigned short ssr_status, scr_status; |
| 814 | struct uart_port *port = ptr; |
| 815 | |
| 816 | ssr_status = sci_in(port,SCxSR); |
| 817 | scr_status = sci_in(port,SCSCR); |
| 818 | |
| 819 | /* Tx Interrupt */ |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 820 | if ((ssr_status & 0x0020) && (scr_status & 0x0080)) |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 821 | sci_tx_interrupt(irq, ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 822 | /* Rx Interrupt */ |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 823 | if ((ssr_status & 0x0002) && (scr_status & 0x0040)) |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 824 | sci_rx_interrupt(irq, ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 825 | /* Error Interrupt */ |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 826 | if ((ssr_status & 0x0080) && (scr_status & 0x0400)) |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 827 | sci_er_interrupt(irq, ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 828 | /* Break Interrupt */ |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 829 | if ((ssr_status & 0x0010) && (scr_status & 0x0200)) |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 830 | sci_br_interrupt(irq, ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 831 | |
| 832 | return IRQ_HANDLED; |
| 833 | } |
| 834 | |
Paul Mundt | a2159b5 | 2008-10-02 19:09:13 +0900 | [diff] [blame] | 835 | #if defined(CONFIG_CPU_FREQ) && defined(CONFIG_HAVE_CLK) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 836 | /* |
| 837 | * Here we define a transistion notifier so that we can update all of our |
| 838 | * ports' baud rate when the peripheral clock changes. |
| 839 | */ |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 840 | static int sci_notifier(struct notifier_block *self, |
| 841 | unsigned long phase, void *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 842 | { |
| 843 | struct cpufreq_freqs *freqs = p; |
| 844 | int i; |
| 845 | |
| 846 | if ((phase == CPUFREQ_POSTCHANGE) || |
| 847 | (phase == CPUFREQ_RESUMECHANGE)){ |
| 848 | for (i = 0; i < SCI_NPORTS; i++) { |
| 849 | struct uart_port *port = &sci_ports[i].port; |
Paul Mundt | b7a76e4 | 2006-02-01 03:06:06 -0800 | [diff] [blame] | 850 | struct clk *clk; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 851 | |
| 852 | /* |
| 853 | * Update the uartclk per-port if frequency has |
| 854 | * changed, since it will no longer necessarily be |
| 855 | * consistent with the old frequency. |
| 856 | * |
| 857 | * Really we want to be able to do something like |
| 858 | * uart_change_speed() or something along those lines |
| 859 | * here to implicitly reset the per-port baud rate.. |
| 860 | * |
| 861 | * Clean this up later.. |
| 862 | */ |
Paul Mundt | 1d11856 | 2006-12-01 13:15:14 +0900 | [diff] [blame] | 863 | clk = clk_get(NULL, "module_clk"); |
Paul Mundt | a2159b5 | 2008-10-02 19:09:13 +0900 | [diff] [blame] | 864 | port->uartclk = clk_get_rate(clk); |
Paul Mundt | b7a76e4 | 2006-02-01 03:06:06 -0800 | [diff] [blame] | 865 | clk_put(clk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 866 | } |
| 867 | |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 868 | printk(KERN_INFO "%s: got a postchange notification " |
| 869 | "for cpu %d (old %d, new %d)\n", |
Harvey Harrison | 71cc2c2 | 2008-04-30 00:55:10 -0700 | [diff] [blame] | 870 | __func__, freqs->cpu, freqs->old, freqs->new); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 871 | } |
| 872 | |
| 873 | return NOTIFY_OK; |
| 874 | } |
| 875 | |
| 876 | static struct notifier_block sci_nb = { &sci_notifier, NULL, 0 }; |
Paul Mundt | a2159b5 | 2008-10-02 19:09:13 +0900 | [diff] [blame] | 877 | #endif /* CONFIG_CPU_FREQ && CONFIG_HAVE_CLK */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 878 | |
| 879 | static int sci_request_irq(struct sci_port *port) |
| 880 | { |
| 881 | int i; |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 882 | irqreturn_t (*handlers[4])(int irq, void *ptr) = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 883 | sci_er_interrupt, sci_rx_interrupt, sci_tx_interrupt, |
| 884 | sci_br_interrupt, |
| 885 | }; |
| 886 | const char *desc[] = { "SCI Receive Error", "SCI Receive Data Full", |
| 887 | "SCI Transmit Data Empty", "SCI Break" }; |
| 888 | |
| 889 | if (port->irqs[0] == port->irqs[1]) { |
| 890 | if (!port->irqs[0]) { |
| 891 | printk(KERN_ERR "sci: Cannot allocate irq.(IRQ=0)\n"); |
| 892 | return -ENODEV; |
| 893 | } |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 894 | |
| 895 | if (request_irq(port->irqs[0], sci_mpxed_interrupt, |
Paul Mundt | 35f3c51 | 2006-10-06 15:31:16 +0900 | [diff] [blame] | 896 | IRQF_DISABLED, "sci", port)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 897 | printk(KERN_ERR "sci: Cannot allocate irq.\n"); |
| 898 | return -ENODEV; |
| 899 | } |
| 900 | } else { |
| 901 | for (i = 0; i < ARRAY_SIZE(handlers); i++) { |
| 902 | if (!port->irqs[i]) |
| 903 | continue; |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 904 | if (request_irq(port->irqs[i], handlers[i], |
Paul Mundt | 35f3c51 | 2006-10-06 15:31:16 +0900 | [diff] [blame] | 905 | IRQF_DISABLED, desc[i], port)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 906 | printk(KERN_ERR "sci: Cannot allocate irq.\n"); |
| 907 | return -ENODEV; |
| 908 | } |
| 909 | } |
| 910 | } |
| 911 | |
| 912 | return 0; |
| 913 | } |
| 914 | |
| 915 | static void sci_free_irq(struct sci_port *port) |
| 916 | { |
| 917 | int i; |
| 918 | |
| 919 | if (port->irqs[0] == port->irqs[1]) { |
| 920 | if (!port->irqs[0]) |
| 921 | printk("sci: sci_free_irq error\n"); |
| 922 | else |
| 923 | free_irq(port->irqs[0], port); |
| 924 | } else { |
| 925 | for (i = 0; i < ARRAY_SIZE(port->irqs); i++) { |
| 926 | if (!port->irqs[i]) |
| 927 | continue; |
| 928 | |
| 929 | free_irq(port->irqs[i], port); |
| 930 | } |
| 931 | } |
| 932 | } |
| 933 | |
| 934 | static unsigned int sci_tx_empty(struct uart_port *port) |
| 935 | { |
| 936 | /* Can't detect */ |
| 937 | return TIOCSER_TEMT; |
| 938 | } |
| 939 | |
| 940 | static void sci_set_mctrl(struct uart_port *port, unsigned int mctrl) |
| 941 | { |
| 942 | /* This routine is used for seting signals of: DTR, DCD, CTS/RTS */ |
| 943 | /* We use SCIF's hardware for CTS/RTS, so don't need any for that. */ |
| 944 | /* If you have signals for DTR and DCD, please implement here. */ |
| 945 | } |
| 946 | |
| 947 | static unsigned int sci_get_mctrl(struct uart_port *port) |
| 948 | { |
| 949 | /* This routine is used for geting signals of: DTR, DCD, DSR, RI, |
| 950 | and CTS/RTS */ |
| 951 | |
| 952 | return TIOCM_DTR | TIOCM_RTS | TIOCM_DSR; |
| 953 | } |
| 954 | |
Russell King | b129a8c | 2005-08-31 10:12:14 +0100 | [diff] [blame] | 955 | static void sci_start_tx(struct uart_port *port) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 956 | { |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 957 | unsigned short ctrl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 958 | |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 959 | /* Set TIE (Transmit Interrupt Enable) bit in SCSCR */ |
| 960 | ctrl = sci_in(port, SCSCR); |
| 961 | ctrl |= SCI_CTRL_FLAGS_TIE; |
| 962 | sci_out(port, SCSCR, ctrl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 963 | } |
| 964 | |
Russell King | b129a8c | 2005-08-31 10:12:14 +0100 | [diff] [blame] | 965 | static void sci_stop_tx(struct uart_port *port) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 966 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 967 | unsigned short ctrl; |
| 968 | |
| 969 | /* Clear TIE (Transmit Interrupt Enable) bit in SCSCR */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 970 | ctrl = sci_in(port, SCSCR); |
| 971 | ctrl &= ~SCI_CTRL_FLAGS_TIE; |
| 972 | sci_out(port, SCSCR, ctrl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 973 | } |
| 974 | |
| 975 | static void sci_start_rx(struct uart_port *port, unsigned int tty_start) |
| 976 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 977 | unsigned short ctrl; |
| 978 | |
| 979 | /* Set RIE (Receive Interrupt Enable) bit in SCSCR */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 980 | ctrl = sci_in(port, SCSCR); |
| 981 | ctrl |= SCI_CTRL_FLAGS_RIE | SCI_CTRL_FLAGS_REIE; |
| 982 | sci_out(port, SCSCR, ctrl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 983 | } |
| 984 | |
| 985 | static void sci_stop_rx(struct uart_port *port) |
| 986 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 987 | unsigned short ctrl; |
| 988 | |
| 989 | /* Clear RIE (Receive Interrupt Enable) bit in SCSCR */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 990 | ctrl = sci_in(port, SCSCR); |
| 991 | ctrl &= ~(SCI_CTRL_FLAGS_RIE | SCI_CTRL_FLAGS_REIE); |
| 992 | sci_out(port, SCSCR, ctrl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 993 | } |
| 994 | |
| 995 | static void sci_enable_ms(struct uart_port *port) |
| 996 | { |
| 997 | /* Nothing here yet .. */ |
| 998 | } |
| 999 | |
| 1000 | static void sci_break_ctl(struct uart_port *port, int break_state) |
| 1001 | { |
| 1002 | /* Nothing here yet .. */ |
| 1003 | } |
| 1004 | |
| 1005 | static int sci_startup(struct uart_port *port) |
| 1006 | { |
| 1007 | struct sci_port *s = &sci_ports[port->line]; |
| 1008 | |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 1009 | if (s->enable) |
| 1010 | s->enable(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1011 | |
Paul Mundt | a2159b5 | 2008-10-02 19:09:13 +0900 | [diff] [blame] | 1012 | #ifdef CONFIG_HAVE_CLK |
dmitry pervushin | 1534a3b | 2007-04-24 13:41:12 +0900 | [diff] [blame] | 1013 | s->clk = clk_get(NULL, "module_clk"); |
Paul Mundt | 005a336 | 2007-04-26 11:45:32 +0900 | [diff] [blame] | 1014 | #endif |
dmitry pervushin | 1534a3b | 2007-04-24 13:41:12 +0900 | [diff] [blame] | 1015 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1016 | sci_request_irq(s); |
Yoshinori Sato | d656901 | 2005-10-14 15:59:12 -0700 | [diff] [blame] | 1017 | sci_start_tx(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1018 | sci_start_rx(port, 1); |
| 1019 | |
| 1020 | return 0; |
| 1021 | } |
| 1022 | |
| 1023 | static void sci_shutdown(struct uart_port *port) |
| 1024 | { |
| 1025 | struct sci_port *s = &sci_ports[port->line]; |
| 1026 | |
| 1027 | sci_stop_rx(port); |
Russell King | b129a8c | 2005-08-31 10:12:14 +0100 | [diff] [blame] | 1028 | sci_stop_tx(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1029 | sci_free_irq(s); |
| 1030 | |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 1031 | if (s->disable) |
| 1032 | s->disable(port); |
dmitry pervushin | 1534a3b | 2007-04-24 13:41:12 +0900 | [diff] [blame] | 1033 | |
Paul Mundt | a2159b5 | 2008-10-02 19:09:13 +0900 | [diff] [blame] | 1034 | #ifdef CONFIG_HAVE_CLK |
dmitry pervushin | 1534a3b | 2007-04-24 13:41:12 +0900 | [diff] [blame] | 1035 | clk_put(s->clk); |
| 1036 | s->clk = NULL; |
Paul Mundt | 005a336 | 2007-04-26 11:45:32 +0900 | [diff] [blame] | 1037 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1038 | } |
| 1039 | |
Alan Cox | 606d099 | 2006-12-08 02:38:45 -0800 | [diff] [blame] | 1040 | static void sci_set_termios(struct uart_port *port, struct ktermios *termios, |
| 1041 | struct ktermios *old) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1042 | { |
| 1043 | struct sci_port *s = &sci_ports[port->line]; |
| 1044 | unsigned int status, baud, smr_val; |
Paul Mundt | a2159b5 | 2008-10-02 19:09:13 +0900 | [diff] [blame] | 1045 | int t = -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1046 | |
| 1047 | baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk/16); |
Paul Mundt | a2159b5 | 2008-10-02 19:09:13 +0900 | [diff] [blame] | 1048 | if (likely(baud)) |
| 1049 | t = SCBRR_VALUE(baud, port->uartclk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1050 | |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 1051 | do { |
| 1052 | status = sci_in(port, SCxSR); |
| 1053 | } while (!(status & SCxSR_TEND(port))); |
| 1054 | |
| 1055 | sci_out(port, SCSCR, 0x00); /* TE=0, RE=0, CKE1=0 */ |
| 1056 | |
| 1057 | #if !defined(SCI_ONLY) |
| 1058 | if (port->type == PORT_SCIF) |
| 1059 | sci_out(port, SCFCR, SCFCR_RFRST | SCFCR_TFRST); |
| 1060 | #endif |
| 1061 | |
| 1062 | smr_val = sci_in(port, SCSMR) & 3; |
| 1063 | if ((termios->c_cflag & CSIZE) == CS7) |
| 1064 | smr_val |= 0x40; |
| 1065 | if (termios->c_cflag & PARENB) |
| 1066 | smr_val |= 0x20; |
| 1067 | if (termios->c_cflag & PARODD) |
| 1068 | smr_val |= 0x30; |
| 1069 | if (termios->c_cflag & CSTOPB) |
| 1070 | smr_val |= 0x08; |
| 1071 | |
| 1072 | uart_update_timeout(port, termios->c_cflag, baud); |
| 1073 | |
| 1074 | sci_out(port, SCSMR, smr_val); |
| 1075 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1076 | if (t > 0) { |
| 1077 | if(t >= 256) { |
| 1078 | sci_out(port, SCSMR, (sci_in(port, SCSMR) & ~3) | 1); |
| 1079 | t >>= 2; |
| 1080 | } else { |
| 1081 | sci_out(port, SCSMR, sci_in(port, SCSMR) & ~3); |
| 1082 | } |
| 1083 | sci_out(port, SCBRR, t); |
| 1084 | udelay((1000000+(baud-1)) / baud); /* Wait one bit interval */ |
| 1085 | } |
| 1086 | |
Paul Mundt | b7a76e4 | 2006-02-01 03:06:06 -0800 | [diff] [blame] | 1087 | if (likely(s->init_pins)) |
| 1088 | s->init_pins(port, termios->c_cflag); |
| 1089 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1090 | sci_out(port, SCSCR, SCSCR_INIT(port)); |
| 1091 | |
| 1092 | if ((termios->c_cflag & CREAD) != 0) |
| 1093 | sci_start_rx(port,0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1094 | } |
| 1095 | |
| 1096 | static const char *sci_type(struct uart_port *port) |
| 1097 | { |
| 1098 | switch (port->type) { |
| 1099 | case PORT_SCI: return "sci"; |
| 1100 | case PORT_SCIF: return "scif"; |
| 1101 | case PORT_IRDA: return "irda"; |
| 1102 | } |
| 1103 | |
Paul Mundt | fa43972 | 2008-09-04 18:53:58 +0900 | [diff] [blame] | 1104 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1105 | } |
| 1106 | |
| 1107 | static void sci_release_port(struct uart_port *port) |
| 1108 | { |
| 1109 | /* Nothing here yet .. */ |
| 1110 | } |
| 1111 | |
| 1112 | static int sci_request_port(struct uart_port *port) |
| 1113 | { |
| 1114 | /* Nothing here yet .. */ |
| 1115 | return 0; |
| 1116 | } |
| 1117 | |
| 1118 | static void sci_config_port(struct uart_port *port, int flags) |
| 1119 | { |
| 1120 | struct sci_port *s = &sci_ports[port->line]; |
| 1121 | |
| 1122 | port->type = s->type; |
| 1123 | |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 1124 | switch (port->type) { |
| 1125 | case PORT_SCI: |
| 1126 | s->init_pins = sci_init_pins_sci; |
| 1127 | break; |
| 1128 | case PORT_SCIF: |
| 1129 | s->init_pins = sci_init_pins_scif; |
| 1130 | break; |
| 1131 | case PORT_IRDA: |
| 1132 | s->init_pins = sci_init_pins_irda; |
| 1133 | break; |
| 1134 | } |
| 1135 | |
Paul Mundt | 7ff731a | 2008-10-01 15:46:58 +0900 | [diff] [blame] | 1136 | if (port->flags & UPF_IOREMAP && !port->membase) { |
| 1137 | #if defined(CONFIG_SUPERH64) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1138 | port->mapbase = onchip_remap(SCIF_ADDR_SH5, 1024, "SCIF"); |
Paul Mundt | 7ff731a | 2008-10-01 15:46:58 +0900 | [diff] [blame] | 1139 | port->membase = (void __iomem *)port->mapbase; |
| 1140 | #else |
| 1141 | port->membase = ioremap_nocache(port->mapbase, 0x40); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1142 | #endif |
Paul Mundt | 7ff731a | 2008-10-01 15:46:58 +0900 | [diff] [blame] | 1143 | |
| 1144 | printk(KERN_ERR "sci: can't remap port#%d\n", port->line); |
| 1145 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1146 | } |
| 1147 | |
| 1148 | static int sci_verify_port(struct uart_port *port, struct serial_struct *ser) |
| 1149 | { |
| 1150 | struct sci_port *s = &sci_ports[port->line]; |
| 1151 | |
Yinghai Lu | a62c413 | 2008-08-19 20:49:55 -0700 | [diff] [blame] | 1152 | if (ser->irq != s->irqs[SCIx_TXI_IRQ] || ser->irq > nr_irqs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1153 | return -EINVAL; |
| 1154 | if (ser->baud_base < 2400) |
| 1155 | /* No paper tape reader for Mitch.. */ |
| 1156 | return -EINVAL; |
| 1157 | |
| 1158 | return 0; |
| 1159 | } |
| 1160 | |
| 1161 | static struct uart_ops sci_uart_ops = { |
| 1162 | .tx_empty = sci_tx_empty, |
| 1163 | .set_mctrl = sci_set_mctrl, |
| 1164 | .get_mctrl = sci_get_mctrl, |
| 1165 | .start_tx = sci_start_tx, |
| 1166 | .stop_tx = sci_stop_tx, |
| 1167 | .stop_rx = sci_stop_rx, |
| 1168 | .enable_ms = sci_enable_ms, |
| 1169 | .break_ctl = sci_break_ctl, |
| 1170 | .startup = sci_startup, |
| 1171 | .shutdown = sci_shutdown, |
| 1172 | .set_termios = sci_set_termios, |
| 1173 | .type = sci_type, |
| 1174 | .release_port = sci_release_port, |
| 1175 | .request_port = sci_request_port, |
| 1176 | .config_port = sci_config_port, |
| 1177 | .verify_port = sci_verify_port, |
| 1178 | }; |
| 1179 | |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 1180 | static void __init sci_init_ports(void) |
| 1181 | { |
| 1182 | static int first = 1; |
| 1183 | int i; |
| 1184 | |
| 1185 | if (!first) |
| 1186 | return; |
| 1187 | |
| 1188 | first = 0; |
| 1189 | |
| 1190 | for (i = 0; i < SCI_NPORTS; i++) { |
| 1191 | sci_ports[i].port.ops = &sci_uart_ops; |
| 1192 | sci_ports[i].port.iotype = UPIO_MEM; |
| 1193 | sci_ports[i].port.line = i; |
| 1194 | sci_ports[i].port.fifosize = 1; |
| 1195 | |
| 1196 | #if defined(__H8300H__) || defined(__H8300S__) |
| 1197 | #ifdef __H8300S__ |
| 1198 | sci_ports[i].enable = h8300_sci_enable; |
| 1199 | sci_ports[i].disable = h8300_sci_disable; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1200 | #endif |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 1201 | sci_ports[i].port.uartclk = CONFIG_CPU_CLOCK; |
Paul Mundt | a2159b5 | 2008-10-02 19:09:13 +0900 | [diff] [blame] | 1202 | #elif defined(CONFIG_HAVE_CLK) |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 1203 | /* |
| 1204 | * XXX: We should use a proper SCI/SCIF clock |
| 1205 | */ |
| 1206 | { |
Paul Mundt | 1d11856 | 2006-12-01 13:15:14 +0900 | [diff] [blame] | 1207 | struct clk *clk = clk_get(NULL, "module_clk"); |
Paul Mundt | a2159b5 | 2008-10-02 19:09:13 +0900 | [diff] [blame] | 1208 | sci_ports[i].port.uartclk = clk_get_rate(clk); |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 1209 | clk_put(clk); |
| 1210 | } |
Paul Mundt | a2159b5 | 2008-10-02 19:09:13 +0900 | [diff] [blame] | 1211 | #else |
| 1212 | #error "Need a valid uartclk" |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 1213 | #endif |
| 1214 | |
| 1215 | sci_ports[i].break_timer.data = (unsigned long)&sci_ports[i]; |
| 1216 | sci_ports[i].break_timer.function = sci_break_timer; |
| 1217 | |
| 1218 | init_timer(&sci_ports[i].break_timer); |
| 1219 | } |
| 1220 | } |
| 1221 | |
| 1222 | int __init early_sci_setup(struct uart_port *port) |
| 1223 | { |
| 1224 | if (unlikely(port->line > SCI_NPORTS)) |
| 1225 | return -ENODEV; |
| 1226 | |
| 1227 | sci_init_ports(); |
| 1228 | |
| 1229 | sci_ports[port->line].port.membase = port->membase; |
| 1230 | sci_ports[port->line].port.mapbase = port->mapbase; |
| 1231 | sci_ports[port->line].port.type = port->type; |
| 1232 | |
| 1233 | return 0; |
| 1234 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1235 | |
| 1236 | #ifdef CONFIG_SERIAL_SH_SCI_CONSOLE |
| 1237 | /* |
| 1238 | * Print a string to the serial port trying not to disturb |
| 1239 | * any possible real use of the port... |
| 1240 | */ |
| 1241 | static void serial_console_write(struct console *co, const char *s, |
| 1242 | unsigned count) |
| 1243 | { |
| 1244 | put_string(serial_console_port, s, count); |
| 1245 | } |
| 1246 | |
| 1247 | static int __init serial_console_setup(struct console *co, char *options) |
| 1248 | { |
| 1249 | struct uart_port *port; |
| 1250 | int baud = 115200; |
| 1251 | int bits = 8; |
| 1252 | int parity = 'n'; |
| 1253 | int flow = 'n'; |
| 1254 | int ret; |
| 1255 | |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 1256 | /* |
| 1257 | * Check whether an invalid uart number has been specified, and |
| 1258 | * if so, search for the first available port that does have |
| 1259 | * console support. |
| 1260 | */ |
| 1261 | if (co->index >= SCI_NPORTS) |
| 1262 | co->index = 0; |
| 1263 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1264 | serial_console_port = &sci_ports[co->index]; |
| 1265 | port = &serial_console_port->port; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1266 | |
| 1267 | /* |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 1268 | * Also need to check port->type, we don't actually have any |
| 1269 | * UPIO_PORT ports, but uart_report_port() handily misreports |
| 1270 | * it anyways if we don't have a port available by the time this is |
| 1271 | * called. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1272 | */ |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 1273 | if (!port->type) |
| 1274 | return -ENODEV; |
| 1275 | if (!port->membase || !port->mapbase) |
| 1276 | return -ENODEV; |
Paul Mundt | b7a76e4 | 2006-02-01 03:06:06 -0800 | [diff] [blame] | 1277 | |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 1278 | port->type = serial_console_port->type; |
| 1279 | |
Paul Mundt | a2159b5 | 2008-10-02 19:09:13 +0900 | [diff] [blame] | 1280 | #ifdef CONFIG_HAVE_CLK |
Paul Mundt | 005a336 | 2007-04-26 11:45:32 +0900 | [diff] [blame] | 1281 | if (!serial_console_port->clk) |
| 1282 | serial_console_port->clk = clk_get(NULL, "module_clk"); |
| 1283 | #endif |
| 1284 | |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 1285 | if (port->flags & UPF_IOREMAP) |
| 1286 | sci_config_port(port, 0); |
| 1287 | |
| 1288 | if (serial_console_port->enable) |
| 1289 | serial_console_port->enable(port); |
| 1290 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1291 | if (options) |
| 1292 | uart_parse_options(options, &baud, &parity, &bits, &flow); |
| 1293 | |
| 1294 | ret = uart_set_options(port, co, baud, parity, bits, flow); |
| 1295 | #if defined(__H8300H__) || defined(__H8300S__) |
| 1296 | /* disable rx interrupt */ |
| 1297 | if (ret == 0) |
| 1298 | sci_stop_rx(port); |
| 1299 | #endif |
| 1300 | return ret; |
| 1301 | } |
| 1302 | |
| 1303 | static struct console serial_console = { |
| 1304 | .name = "ttySC", |
| 1305 | .device = uart_console_device, |
| 1306 | .write = serial_console_write, |
| 1307 | .setup = serial_console_setup, |
Paul Mundt | fa5da2f | 2007-03-08 17:27:37 +0900 | [diff] [blame] | 1308 | .flags = CON_PRINTBUFFER, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1309 | .index = -1, |
| 1310 | .data = &sci_uart_driver, |
| 1311 | }; |
| 1312 | |
| 1313 | static int __init sci_console_init(void) |
| 1314 | { |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 1315 | sci_init_ports(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1316 | register_console(&serial_console); |
| 1317 | return 0; |
| 1318 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1319 | console_initcall(sci_console_init); |
| 1320 | #endif /* CONFIG_SERIAL_SH_SCI_CONSOLE */ |
| 1321 | |
Paul Mundt | 68362e0 | 2007-09-11 15:27:29 +0900 | [diff] [blame] | 1322 | #ifdef CONFIG_SH_KGDB_CONSOLE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1323 | /* |
| 1324 | * FIXME: Most of this can go away.. at the moment, we rely on |
| 1325 | * arch/sh/kernel/setup.c to do the command line parsing for kgdb, though |
| 1326 | * most of that can easily be done here instead. |
| 1327 | * |
| 1328 | * For the time being, just accept the values that were parsed earlier.. |
| 1329 | */ |
| 1330 | static void __init kgdb_console_get_options(struct uart_port *port, int *baud, |
| 1331 | int *parity, int *bits) |
| 1332 | { |
| 1333 | *baud = kgdb_baud; |
| 1334 | *parity = tolower(kgdb_parity); |
| 1335 | *bits = kgdb_bits - '0'; |
| 1336 | } |
| 1337 | |
| 1338 | /* |
| 1339 | * The naming here is somewhat misleading, since kgdb_console_setup() takes |
| 1340 | * care of the early-on initialization for kgdb, regardless of whether we |
| 1341 | * actually use kgdb as a console or not. |
| 1342 | * |
| 1343 | * On the plus side, this lets us kill off the old kgdb_sci_setup() nonsense. |
| 1344 | */ |
| 1345 | int __init kgdb_console_setup(struct console *co, char *options) |
| 1346 | { |
| 1347 | struct uart_port *port = &sci_ports[kgdb_portnum].port; |
| 1348 | int baud = 38400; |
| 1349 | int bits = 8; |
| 1350 | int parity = 'n'; |
| 1351 | int flow = 'n'; |
| 1352 | |
Paul Mundt | b7a76e4 | 2006-02-01 03:06:06 -0800 | [diff] [blame] | 1353 | if (co->index != kgdb_portnum) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1354 | co->index = kgdb_portnum; |
| 1355 | |
Paul Mundt | fa5da2f | 2007-03-08 17:27:37 +0900 | [diff] [blame] | 1356 | kgdb_sci_port = &sci_ports[co->index]; |
| 1357 | port = &kgdb_sci_port->port; |
| 1358 | |
| 1359 | /* |
| 1360 | * Also need to check port->type, we don't actually have any |
| 1361 | * UPIO_PORT ports, but uart_report_port() handily misreports |
| 1362 | * it anyways if we don't have a port available by the time this is |
| 1363 | * called. |
| 1364 | */ |
| 1365 | if (!port->type) |
| 1366 | return -ENODEV; |
| 1367 | if (!port->membase || !port->mapbase) |
| 1368 | return -ENODEV; |
| 1369 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1370 | if (options) |
| 1371 | uart_parse_options(options, &baud, &parity, &bits, &flow); |
| 1372 | else |
| 1373 | kgdb_console_get_options(port, &baud, &parity, &bits); |
| 1374 | |
| 1375 | kgdb_getchar = kgdb_sci_getchar; |
| 1376 | kgdb_putchar = kgdb_sci_putchar; |
| 1377 | |
| 1378 | return uart_set_options(port, co, baud, parity, bits, flow); |
| 1379 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1380 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1381 | static struct console kgdb_console = { |
Paul Mundt | fa5da2f | 2007-03-08 17:27:37 +0900 | [diff] [blame] | 1382 | .name = "ttySC", |
| 1383 | .device = uart_console_device, |
| 1384 | .write = kgdb_console_write, |
| 1385 | .setup = kgdb_console_setup, |
| 1386 | .flags = CON_PRINTBUFFER, |
| 1387 | .index = -1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1388 | .data = &sci_uart_driver, |
| 1389 | }; |
| 1390 | |
| 1391 | /* Register the KGDB console so we get messages (d'oh!) */ |
| 1392 | static int __init kgdb_console_init(void) |
| 1393 | { |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 1394 | sci_init_ports(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1395 | register_console(&kgdb_console); |
| 1396 | return 0; |
| 1397 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1398 | console_initcall(kgdb_console_init); |
| 1399 | #endif /* CONFIG_SH_KGDB_CONSOLE */ |
| 1400 | |
| 1401 | #if defined(CONFIG_SH_KGDB_CONSOLE) |
| 1402 | #define SCI_CONSOLE &kgdb_console |
| 1403 | #elif defined(CONFIG_SERIAL_SH_SCI_CONSOLE) |
| 1404 | #define SCI_CONSOLE &serial_console |
| 1405 | #else |
Paul Mundt | b7a76e4 | 2006-02-01 03:06:06 -0800 | [diff] [blame] | 1406 | #define SCI_CONSOLE 0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1407 | #endif |
| 1408 | |
| 1409 | static char banner[] __initdata = |
| 1410 | KERN_INFO "SuperH SCI(F) driver initialized\n"; |
| 1411 | |
| 1412 | static struct uart_driver sci_uart_driver = { |
| 1413 | .owner = THIS_MODULE, |
| 1414 | .driver_name = "sci", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1415 | .dev_name = "ttySC", |
| 1416 | .major = SCI_MAJOR, |
| 1417 | .minor = SCI_MINOR_START, |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 1418 | .nr = SCI_NPORTS, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1419 | .cons = SCI_CONSOLE, |
| 1420 | }; |
| 1421 | |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 1422 | /* |
| 1423 | * Register a set of serial devices attached to a platform device. The |
| 1424 | * list is terminated with a zero flags entry, which means we expect |
| 1425 | * all entries to have at least UPF_BOOT_AUTOCONF set. Platforms that need |
| 1426 | * remapping (such as sh64) should also set UPF_IOREMAP. |
| 1427 | */ |
| 1428 | static int __devinit sci_probe(struct platform_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1429 | { |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 1430 | struct plat_sci_port *p = dev->dev.platform_data; |
Paul Mundt | 7ff731a | 2008-10-01 15:46:58 +0900 | [diff] [blame] | 1431 | int i, ret = -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1432 | |
Paul Mundt | 32351a2 | 2007-03-12 14:38:59 +0900 | [diff] [blame] | 1433 | for (i = 0; p && p->flags != 0; p++, i++) { |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 1434 | struct sci_port *sciport = &sci_ports[i]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1435 | |
Paul Mundt | 32351a2 | 2007-03-12 14:38:59 +0900 | [diff] [blame] | 1436 | /* Sanity check */ |
| 1437 | if (unlikely(i == SCI_NPORTS)) { |
| 1438 | dev_notice(&dev->dev, "Attempting to register port " |
| 1439 | "%d when only %d are available.\n", |
| 1440 | i+1, SCI_NPORTS); |
| 1441 | dev_notice(&dev->dev, "Consider bumping " |
| 1442 | "CONFIG_SERIAL_SH_SCI_NR_UARTS!\n"); |
| 1443 | break; |
| 1444 | } |
| 1445 | |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 1446 | sciport->port.mapbase = p->mapbase; |
Paul Mundt | b7a76e4 | 2006-02-01 03:06:06 -0800 | [diff] [blame] | 1447 | |
Paul Mundt | 7ff731a | 2008-10-01 15:46:58 +0900 | [diff] [blame] | 1448 | if (p->mapbase && !p->membase) { |
| 1449 | if (p->flags & UPF_IOREMAP) { |
| 1450 | p->membase = ioremap_nocache(p->mapbase, 0x40); |
| 1451 | if (IS_ERR(p->membase)) { |
| 1452 | ret = PTR_ERR(p->membase); |
| 1453 | goto err_unreg; |
| 1454 | } |
| 1455 | } else { |
| 1456 | /* |
| 1457 | * For the simple (and majority of) cases |
| 1458 | * where we don't need to do any remapping, |
| 1459 | * just cast the cookie directly. |
| 1460 | */ |
| 1461 | p->membase = (void __iomem *)p->mapbase; |
| 1462 | } |
| 1463 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1464 | |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 1465 | sciport->port.membase = p->membase; |
| 1466 | |
| 1467 | sciport->port.irq = p->irqs[SCIx_TXI_IRQ]; |
| 1468 | sciport->port.flags = p->flags; |
| 1469 | sciport->port.dev = &dev->dev; |
| 1470 | |
| 1471 | sciport->type = sciport->port.type = p->type; |
| 1472 | |
| 1473 | memcpy(&sciport->irqs, &p->irqs, sizeof(p->irqs)); |
| 1474 | |
| 1475 | uart_add_one_port(&sci_uart_driver, &sciport->port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1476 | } |
| 1477 | |
Paul Mundt | fa5da2f | 2007-03-08 17:27:37 +0900 | [diff] [blame] | 1478 | #if defined(CONFIG_SH_KGDB) && !defined(CONFIG_SH_KGDB_CONSOLE) |
| 1479 | kgdb_sci_port = &sci_ports[kgdb_portnum]; |
| 1480 | kgdb_getchar = kgdb_sci_getchar; |
| 1481 | kgdb_putchar = kgdb_sci_putchar; |
| 1482 | #endif |
| 1483 | |
Paul Mundt | a2159b5 | 2008-10-02 19:09:13 +0900 | [diff] [blame] | 1484 | #if defined(CONFIG_CPU_FREQ) && defined(CONFIG_HAVE_CLK) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1485 | cpufreq_register_notifier(&sci_nb, CPUFREQ_TRANSITION_NOTIFIER); |
Paul Mundt | e289fd9 | 2007-08-08 18:09:13 +0900 | [diff] [blame] | 1486 | dev_info(&dev->dev, "CPU frequency notifier registered\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1487 | #endif |
| 1488 | |
| 1489 | #ifdef CONFIG_SH_STANDARD_BIOS |
| 1490 | sh_bios_gdb_detach(); |
| 1491 | #endif |
| 1492 | |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 1493 | return 0; |
Paul Mundt | 7ff731a | 2008-10-01 15:46:58 +0900 | [diff] [blame] | 1494 | |
| 1495 | err_unreg: |
| 1496 | for (i = i - 1; i >= 0; i--) |
| 1497 | uart_remove_one_port(&sci_uart_driver, &sci_ports[i].port); |
| 1498 | |
| 1499 | return ret; |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 1500 | } |
| 1501 | |
| 1502 | static int __devexit sci_remove(struct platform_device *dev) |
| 1503 | { |
| 1504 | int i; |
| 1505 | |
| 1506 | for (i = 0; i < SCI_NPORTS; i++) |
| 1507 | uart_remove_one_port(&sci_uart_driver, &sci_ports[i].port); |
| 1508 | |
| 1509 | return 0; |
| 1510 | } |
| 1511 | |
| 1512 | static int sci_suspend(struct platform_device *dev, pm_message_t state) |
| 1513 | { |
| 1514 | int i; |
| 1515 | |
| 1516 | for (i = 0; i < SCI_NPORTS; i++) { |
| 1517 | struct sci_port *p = &sci_ports[i]; |
| 1518 | |
| 1519 | if (p->type != PORT_UNKNOWN && p->port.dev == &dev->dev) |
| 1520 | uart_suspend_port(&sci_uart_driver, &p->port); |
| 1521 | } |
| 1522 | |
| 1523 | return 0; |
| 1524 | } |
| 1525 | |
| 1526 | static int sci_resume(struct platform_device *dev) |
| 1527 | { |
| 1528 | int i; |
| 1529 | |
| 1530 | for (i = 0; i < SCI_NPORTS; i++) { |
| 1531 | struct sci_port *p = &sci_ports[i]; |
| 1532 | |
| 1533 | if (p->type != PORT_UNKNOWN && p->port.dev == &dev->dev) |
| 1534 | uart_resume_port(&sci_uart_driver, &p->port); |
| 1535 | } |
| 1536 | |
| 1537 | return 0; |
| 1538 | } |
| 1539 | |
| 1540 | static struct platform_driver sci_driver = { |
| 1541 | .probe = sci_probe, |
| 1542 | .remove = __devexit_p(sci_remove), |
| 1543 | .suspend = sci_suspend, |
| 1544 | .resume = sci_resume, |
| 1545 | .driver = { |
| 1546 | .name = "sh-sci", |
| 1547 | .owner = THIS_MODULE, |
| 1548 | }, |
| 1549 | }; |
| 1550 | |
| 1551 | static int __init sci_init(void) |
| 1552 | { |
| 1553 | int ret; |
| 1554 | |
| 1555 | printk(banner); |
| 1556 | |
| 1557 | sci_init_ports(); |
| 1558 | |
| 1559 | ret = uart_register_driver(&sci_uart_driver); |
| 1560 | if (likely(ret == 0)) { |
| 1561 | ret = platform_driver_register(&sci_driver); |
| 1562 | if (unlikely(ret)) |
| 1563 | uart_unregister_driver(&sci_uart_driver); |
| 1564 | } |
| 1565 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1566 | return ret; |
| 1567 | } |
| 1568 | |
| 1569 | static void __exit sci_exit(void) |
| 1570 | { |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 1571 | platform_driver_unregister(&sci_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1572 | uart_unregister_driver(&sci_uart_driver); |
| 1573 | } |
| 1574 | |
| 1575 | module_init(sci_init); |
| 1576 | module_exit(sci_exit); |
| 1577 | |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 1578 | MODULE_LICENSE("GPL"); |
Kay Sievers | e169c13 | 2008-04-15 14:34:35 -0700 | [diff] [blame] | 1579 | MODULE_ALIAS("platform:sh-sci"); |