Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Simulated Serial Driver (fake serial) |
| 3 | * |
| 4 | * This driver is mostly used for bringup purposes and will go away. |
| 5 | * It has a strong dependency on the system console. All outputs |
| 6 | * are rerouted to the same facility as the one used by printk which, in our |
| 7 | * case means sys_sim.c console (goes via the simulator). The code hereafter |
| 8 | * is completely leveraged from the serial.c driver. |
| 9 | * |
| 10 | * Copyright (C) 1999-2000, 2002-2003 Hewlett-Packard Co |
| 11 | * Stephane Eranian <eranian@hpl.hp.com> |
| 12 | * David Mosberger-Tang <davidm@hpl.hp.com> |
| 13 | * |
| 14 | * 02/04/00 D. Mosberger Merged in serial.c bug fixes in rs_close(). |
| 15 | * 02/25/00 D. Mosberger Synced up with 2.3.99pre-5 version of serial.c. |
| 16 | * 07/30/02 D. Mosberger Replace sti()/cli() with explicit spinlocks & local irq masking |
| 17 | */ |
| 18 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <linux/init.h> |
| 20 | #include <linux/errno.h> |
| 21 | #include <linux/sched.h> |
| 22 | #include <linux/tty.h> |
| 23 | #include <linux/tty_flip.h> |
| 24 | #include <linux/major.h> |
| 25 | #include <linux/fcntl.h> |
| 26 | #include <linux/mm.h> |
Alexey Dobriyan | bf54215 | 2009-03-31 15:19:23 -0700 | [diff] [blame] | 27 | #include <linux/seq_file.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include <linux/slab.h> |
Randy Dunlap | a941564 | 2006-01-11 12:17:48 -0800 | [diff] [blame] | 29 | #include <linux/capability.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #include <linux/console.h> |
| 31 | #include <linux/module.h> |
| 32 | #include <linux/serial.h> |
| 33 | #include <linux/serialP.h> |
David Mosberger-Tang | 819c67e | 2005-06-09 22:40:00 -0700 | [diff] [blame] | 34 | #include <linux/sysrq.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | |
| 36 | #include <asm/irq.h> |
Jiri Slaby | 035cfe5 | 2012-03-08 21:01:17 +0100 | [diff] [blame^] | 37 | #include <asm/hpsim.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | #include <asm/hw_irq.h> |
| 39 | #include <asm/uaccess.h> |
| 40 | |
Jiri Slaby | 035cfe5 | 2012-03-08 21:01:17 +0100 | [diff] [blame^] | 41 | #include "hpsim_ssc.h" |
| 42 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | #undef SIMSERIAL_DEBUG /* define this to get some debug information */ |
| 44 | |
| 45 | #define KEYBOARD_INTR 3 /* must match with simulator! */ |
| 46 | |
| 47 | #define NR_PORTS 1 /* only one port for now */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | |
Thomas Gleixner | 121a422 | 2006-07-01 19:29:17 -0700 | [diff] [blame] | 49 | #define IRQ_T(info) ((info->flags & ASYNC_SHARE_IRQ) ? IRQF_SHARED : IRQF_DISABLED) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | static char *serial_name = "SimSerial driver"; |
| 52 | static char *serial_version = "0.6"; |
| 53 | |
| 54 | /* |
| 55 | * This has been extracted from asm/serial.h. We need one eventually but |
| 56 | * I don't know exactly what we're going to put in it so just fake one |
| 57 | * for now. |
| 58 | */ |
| 59 | #define BASE_BAUD ( 1843200 / 16 ) |
| 60 | |
| 61 | #define STD_COM_FLAGS (ASYNC_BOOT_AUTOCONF | ASYNC_SKIP_TEST) |
| 62 | |
| 63 | /* |
| 64 | * Most of the values here are meaningless to this particular driver. |
| 65 | * However some values must be preserved for the code (leveraged from serial.c |
| 66 | * to work correctly). |
| 67 | * port must not be 0 |
| 68 | * type must not be UNKNOWN |
| 69 | * So I picked arbitrary (guess from where?) values instead |
| 70 | */ |
| 71 | static struct serial_state rs_table[NR_PORTS]={ |
| 72 | /* UART CLK PORT IRQ FLAGS */ |
Jiri Slaby | 9c8efec | 2012-03-05 14:52:12 +0100 | [diff] [blame] | 73 | { BASE_BAUD, 0x3F8, 0, STD_COM_FLAGS, PORT_16550 } /* ttyS0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | }; |
| 75 | |
| 76 | /* |
| 77 | * Just for the fun of it ! |
| 78 | */ |
| 79 | static struct serial_uart_config uart_config[] = { |
| 80 | { "unknown", 1, 0 }, |
| 81 | { "8250", 1, 0 }, |
| 82 | { "16450", 1, 0 }, |
| 83 | { "16550", 1, 0 }, |
| 84 | { "16550A", 16, UART_CLEAR_FIFO | UART_USE_FIFO }, |
| 85 | { "cirrus", 1, 0 }, |
| 86 | { "ST16650", 1, UART_CLEAR_FIFO | UART_STARTECH }, |
| 87 | { "ST16650V2", 32, UART_CLEAR_FIFO | UART_USE_FIFO | |
| 88 | UART_STARTECH }, |
| 89 | { "TI16750", 64, UART_CLEAR_FIFO | UART_USE_FIFO}, |
Al Viro | cfa7fd7 | 2006-10-10 22:46:17 +0100 | [diff] [blame] | 90 | { NULL, 0} |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | }; |
| 92 | |
| 93 | struct tty_driver *hp_simserial_driver; |
| 94 | |
| 95 | static struct async_struct *IRQ_ports[NR_IRQS]; |
| 96 | |
| 97 | static struct console *console; |
| 98 | |
| 99 | static unsigned char *tmp_buf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | |
| 101 | extern struct console *console_drivers; /* from kernel/printk.c */ |
| 102 | |
| 103 | /* |
| 104 | * ------------------------------------------------------------ |
| 105 | * rs_stop() and rs_start() |
| 106 | * |
| 107 | * This routines are called before setting or resetting tty->stopped. |
| 108 | * They enable or disable transmitter interrupts, as necessary. |
| 109 | * ------------------------------------------------------------ |
| 110 | */ |
| 111 | static void rs_stop(struct tty_struct *tty) |
| 112 | { |
| 113 | #ifdef SIMSERIAL_DEBUG |
| 114 | printk("rs_stop: tty->stopped=%d tty->hw_stopped=%d tty->flow_stopped=%d\n", |
| 115 | tty->stopped, tty->hw_stopped, tty->flow_stopped); |
| 116 | #endif |
| 117 | |
| 118 | } |
| 119 | |
| 120 | static void rs_start(struct tty_struct *tty) |
| 121 | { |
viro@ZenIV.linux.org.uk | e72225d | 2005-09-07 23:23:50 +0100 | [diff] [blame] | 122 | #ifdef SIMSERIAL_DEBUG |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | printk("rs_start: tty->stopped=%d tty->hw_stopped=%d tty->flow_stopped=%d\n", |
| 124 | tty->stopped, tty->hw_stopped, tty->flow_stopped); |
| 125 | #endif |
| 126 | } |
| 127 | |
Al Viro | 5dcded1 | 2006-10-08 14:59:19 +0100 | [diff] [blame] | 128 | static void receive_chars(struct tty_struct *tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | { |
| 130 | unsigned char ch; |
| 131 | static unsigned char seen_esc = 0; |
| 132 | |
| 133 | while ( (ch = ia64_ssc(0, 0, 0, 0, SSC_GETCHAR)) ) { |
| 134 | if ( ch == 27 && seen_esc == 0 ) { |
| 135 | seen_esc = 1; |
| 136 | continue; |
| 137 | } else { |
| 138 | if ( seen_esc==1 && ch == 'O' ) { |
| 139 | seen_esc = 2; |
| 140 | continue; |
| 141 | } else if ( seen_esc == 2 ) { |
David Mosberger-Tang | 819c67e | 2005-06-09 22:40:00 -0700 | [diff] [blame] | 142 | if ( ch == 'P' ) /* F1 */ |
| 143 | show_state(); |
| 144 | #ifdef CONFIG_MAGIC_SYSRQ |
| 145 | if ( ch == 'S' ) { /* F4 */ |
| 146 | do |
| 147 | ch = ia64_ssc(0, 0, 0, 0, |
| 148 | SSC_GETCHAR); |
| 149 | while (!ch); |
Dmitry Torokhov | f335397 | 2010-08-17 21:15:47 -0700 | [diff] [blame] | 150 | handle_sysrq(ch); |
David Mosberger-Tang | 819c67e | 2005-06-09 22:40:00 -0700 | [diff] [blame] | 151 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | seen_esc = 0; |
| 154 | continue; |
| 155 | } |
| 156 | } |
| 157 | seen_esc = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | |
Andreas Schwab | d50f5c5 | 2006-01-13 23:46:38 +0100 | [diff] [blame] | 159 | if (tty_insert_flip_char(tty, ch, TTY_NORMAL) == 0) |
| 160 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | } |
| 162 | tty_flip_buffer_push(tty); |
| 163 | } |
| 164 | |
| 165 | /* |
| 166 | * This is the serial driver's interrupt routine for a single port |
| 167 | */ |
Al Viro | 5dcded1 | 2006-10-08 14:59:19 +0100 | [diff] [blame] | 168 | static irqreturn_t rs_interrupt_single(int irq, void *dev_id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | { |
| 170 | struct async_struct * info; |
| 171 | |
| 172 | /* |
| 173 | * I don't know exactly why they don't use the dev_id opaque data |
| 174 | * pointer instead of this extra lookup table |
| 175 | */ |
| 176 | info = IRQ_ports[irq]; |
| 177 | if (!info || !info->tty) { |
| 178 | printk(KERN_INFO "simrs_interrupt_single: info|tty=0 info=%p problem\n", info); |
| 179 | return IRQ_NONE; |
| 180 | } |
| 181 | /* |
| 182 | * pretty simple in our case, because we only get interrupts |
| 183 | * on inbound traffic |
| 184 | */ |
Al Viro | 5dcded1 | 2006-10-08 14:59:19 +0100 | [diff] [blame] | 185 | receive_chars(info->tty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | return IRQ_HANDLED; |
| 187 | } |
| 188 | |
| 189 | /* |
| 190 | * ------------------------------------------------------------------- |
| 191 | * Here ends the serial interrupt routines. |
| 192 | * ------------------------------------------------------------------- |
| 193 | */ |
| 194 | |
Alan Cox | f34d7a5 | 2008-04-30 00:54:13 -0700 | [diff] [blame] | 195 | static int rs_put_char(struct tty_struct *tty, unsigned char ch) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | { |
| 197 | struct async_struct *info = (struct async_struct *)tty->driver_data; |
| 198 | unsigned long flags; |
| 199 | |
Alan Cox | f34d7a5 | 2008-04-30 00:54:13 -0700 | [diff] [blame] | 200 | if (!tty || !info->xmit.buf) |
| 201 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | |
| 203 | local_irq_save(flags); |
| 204 | if (CIRC_SPACE(info->xmit.head, info->xmit.tail, SERIAL_XMIT_SIZE) == 0) { |
| 205 | local_irq_restore(flags); |
Alan Cox | f34d7a5 | 2008-04-30 00:54:13 -0700 | [diff] [blame] | 206 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | } |
| 208 | info->xmit.buf[info->xmit.head] = ch; |
| 209 | info->xmit.head = (info->xmit.head + 1) & (SERIAL_XMIT_SIZE-1); |
| 210 | local_irq_restore(flags); |
Alan Cox | f34d7a5 | 2008-04-30 00:54:13 -0700 | [diff] [blame] | 211 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | } |
| 213 | |
Adrian Bunk | 41c28ff | 2006-03-23 03:00:56 -0800 | [diff] [blame] | 214 | static void transmit_chars(struct async_struct *info, int *intr_done) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | { |
| 216 | int count; |
| 217 | unsigned long flags; |
| 218 | |
| 219 | |
| 220 | local_irq_save(flags); |
| 221 | |
| 222 | if (info->x_char) { |
| 223 | char c = info->x_char; |
| 224 | |
| 225 | console->write(console, &c, 1); |
| 226 | |
| 227 | info->state->icount.tx++; |
| 228 | info->x_char = 0; |
| 229 | |
| 230 | goto out; |
| 231 | } |
| 232 | |
| 233 | if (info->xmit.head == info->xmit.tail || info->tty->stopped || info->tty->hw_stopped) { |
| 234 | #ifdef SIMSERIAL_DEBUG |
| 235 | printk("transmit_chars: head=%d, tail=%d, stopped=%d\n", |
| 236 | info->xmit.head, info->xmit.tail, info->tty->stopped); |
| 237 | #endif |
| 238 | goto out; |
| 239 | } |
| 240 | /* |
| 241 | * We removed the loop and try to do it in to chunks. We need |
| 242 | * 2 operations maximum because it's a ring buffer. |
| 243 | * |
| 244 | * First from current to tail if possible. |
| 245 | * Then from the beginning of the buffer until necessary |
| 246 | */ |
| 247 | |
| 248 | count = min(CIRC_CNT(info->xmit.head, info->xmit.tail, SERIAL_XMIT_SIZE), |
| 249 | SERIAL_XMIT_SIZE - info->xmit.tail); |
| 250 | console->write(console, info->xmit.buf+info->xmit.tail, count); |
| 251 | |
| 252 | info->xmit.tail = (info->xmit.tail+count) & (SERIAL_XMIT_SIZE-1); |
| 253 | |
| 254 | /* |
| 255 | * We have more at the beginning of the buffer |
| 256 | */ |
| 257 | count = CIRC_CNT(info->xmit.head, info->xmit.tail, SERIAL_XMIT_SIZE); |
| 258 | if (count) { |
| 259 | console->write(console, info->xmit.buf, count); |
| 260 | info->xmit.tail += count; |
| 261 | } |
| 262 | out: |
| 263 | local_irq_restore(flags); |
| 264 | } |
| 265 | |
| 266 | static void rs_flush_chars(struct tty_struct *tty) |
| 267 | { |
| 268 | struct async_struct *info = (struct async_struct *)tty->driver_data; |
| 269 | |
| 270 | if (info->xmit.head == info->xmit.tail || tty->stopped || tty->hw_stopped || |
| 271 | !info->xmit.buf) |
| 272 | return; |
| 273 | |
| 274 | transmit_chars(info, NULL); |
| 275 | } |
| 276 | |
| 277 | |
| 278 | static int rs_write(struct tty_struct * tty, |
| 279 | const unsigned char *buf, int count) |
| 280 | { |
| 281 | int c, ret = 0; |
| 282 | struct async_struct *info = (struct async_struct *)tty->driver_data; |
| 283 | unsigned long flags; |
| 284 | |
| 285 | if (!tty || !info->xmit.buf || !tmp_buf) return 0; |
| 286 | |
| 287 | local_irq_save(flags); |
| 288 | while (1) { |
| 289 | c = CIRC_SPACE_TO_END(info->xmit.head, info->xmit.tail, SERIAL_XMIT_SIZE); |
| 290 | if (count < c) |
| 291 | c = count; |
| 292 | if (c <= 0) { |
| 293 | break; |
| 294 | } |
| 295 | memcpy(info->xmit.buf + info->xmit.head, buf, c); |
| 296 | info->xmit.head = ((info->xmit.head + c) & |
| 297 | (SERIAL_XMIT_SIZE-1)); |
| 298 | buf += c; |
| 299 | count -= c; |
| 300 | ret += c; |
| 301 | } |
| 302 | local_irq_restore(flags); |
| 303 | /* |
| 304 | * Hey, we transmit directly from here in our case |
| 305 | */ |
| 306 | if (CIRC_CNT(info->xmit.head, info->xmit.tail, SERIAL_XMIT_SIZE) |
| 307 | && !tty->stopped && !tty->hw_stopped) { |
| 308 | transmit_chars(info, NULL); |
| 309 | } |
| 310 | return ret; |
| 311 | } |
| 312 | |
| 313 | static int rs_write_room(struct tty_struct *tty) |
| 314 | { |
| 315 | struct async_struct *info = (struct async_struct *)tty->driver_data; |
| 316 | |
| 317 | return CIRC_SPACE(info->xmit.head, info->xmit.tail, SERIAL_XMIT_SIZE); |
| 318 | } |
| 319 | |
| 320 | static int rs_chars_in_buffer(struct tty_struct *tty) |
| 321 | { |
| 322 | struct async_struct *info = (struct async_struct *)tty->driver_data; |
| 323 | |
| 324 | return CIRC_CNT(info->xmit.head, info->xmit.tail, SERIAL_XMIT_SIZE); |
| 325 | } |
| 326 | |
| 327 | static void rs_flush_buffer(struct tty_struct *tty) |
| 328 | { |
| 329 | struct async_struct *info = (struct async_struct *)tty->driver_data; |
| 330 | unsigned long flags; |
| 331 | |
| 332 | local_irq_save(flags); |
| 333 | info->xmit.head = info->xmit.tail = 0; |
| 334 | local_irq_restore(flags); |
| 335 | |
Alan Cox | 15648f1 | 2008-07-16 21:52:25 +0100 | [diff] [blame] | 336 | tty_wakeup(tty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | } |
| 338 | |
| 339 | /* |
| 340 | * This function is used to send a high-priority XON/XOFF character to |
| 341 | * the device |
| 342 | */ |
| 343 | static void rs_send_xchar(struct tty_struct *tty, char ch) |
| 344 | { |
| 345 | struct async_struct *info = (struct async_struct *)tty->driver_data; |
| 346 | |
| 347 | info->x_char = ch; |
| 348 | if (ch) { |
| 349 | /* |
| 350 | * I guess we could call console->write() directly but |
| 351 | * let's do that for now. |
| 352 | */ |
| 353 | transmit_chars(info, NULL); |
| 354 | } |
| 355 | } |
| 356 | |
| 357 | /* |
| 358 | * ------------------------------------------------------------ |
| 359 | * rs_throttle() |
| 360 | * |
| 361 | * This routine is called by the upper-layer tty layer to signal that |
| 362 | * incoming characters should be throttled. |
| 363 | * ------------------------------------------------------------ |
| 364 | */ |
| 365 | static void rs_throttle(struct tty_struct * tty) |
| 366 | { |
| 367 | if (I_IXOFF(tty)) rs_send_xchar(tty, STOP_CHAR(tty)); |
| 368 | |
| 369 | printk(KERN_INFO "simrs_throttle called\n"); |
| 370 | } |
| 371 | |
| 372 | static void rs_unthrottle(struct tty_struct * tty) |
| 373 | { |
| 374 | struct async_struct *info = (struct async_struct *)tty->driver_data; |
| 375 | |
| 376 | if (I_IXOFF(tty)) { |
| 377 | if (info->x_char) |
| 378 | info->x_char = 0; |
| 379 | else |
| 380 | rs_send_xchar(tty, START_CHAR(tty)); |
| 381 | } |
| 382 | printk(KERN_INFO "simrs_unthrottle called\n"); |
| 383 | } |
| 384 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | |
Luck, Tony | 10e82f6 | 2011-02-22 11:47:04 -0800 | [diff] [blame] | 386 | static int rs_ioctl(struct tty_struct *tty, unsigned int cmd, unsigned long arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | { |
| 388 | if ((cmd != TIOCGSERIAL) && (cmd != TIOCSSERIAL) && |
| 389 | (cmd != TIOCSERCONFIG) && (cmd != TIOCSERGSTRUCT) && |
Alan Cox | 0587102 | 2010-09-16 18:21:52 +0100 | [diff] [blame] | 390 | (cmd != TIOCMIWAIT)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | if (tty->flags & (1 << TTY_IO_ERROR)) |
| 392 | return -EIO; |
| 393 | } |
| 394 | |
| 395 | switch (cmd) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | case TIOCGSERIAL: |
| 397 | printk(KERN_INFO "simrs_ioctl TIOCGSERIAL called\n"); |
| 398 | return 0; |
| 399 | case TIOCSSERIAL: |
| 400 | printk(KERN_INFO "simrs_ioctl TIOCSSERIAL called\n"); |
| 401 | return 0; |
| 402 | case TIOCSERCONFIG: |
| 403 | printk(KERN_INFO "rs_ioctl: TIOCSERCONFIG called\n"); |
| 404 | return -EINVAL; |
| 405 | |
| 406 | case TIOCSERGETLSR: /* Get line status register */ |
| 407 | printk(KERN_INFO "rs_ioctl: TIOCSERGETLSR called\n"); |
| 408 | return -EINVAL; |
| 409 | |
| 410 | case TIOCSERGSTRUCT: |
| 411 | printk(KERN_INFO "rs_ioctl: TIOCSERGSTRUCT called\n"); |
| 412 | #if 0 |
| 413 | if (copy_to_user((struct async_struct *) arg, |
| 414 | info, sizeof(struct async_struct))) |
| 415 | return -EFAULT; |
| 416 | #endif |
| 417 | return 0; |
| 418 | |
| 419 | /* |
| 420 | * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change |
| 421 | * - mask passed in arg for lines of interest |
| 422 | * (use |'ed TIOCM_RNG/DSR/CD/CTS for masking) |
| 423 | * Caller should use TIOCGICOUNT to see which one it was |
| 424 | */ |
| 425 | case TIOCMIWAIT: |
| 426 | printk(KERN_INFO "rs_ioctl: TIOCMIWAIT: called\n"); |
| 427 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | case TIOCSERGWILD: |
| 429 | case TIOCSERSWILD: |
| 430 | /* "setserial -W" is called in Debian boot */ |
| 431 | printk (KERN_INFO "TIOCSER?WILD ioctl obsolete, ignored.\n"); |
| 432 | return 0; |
| 433 | |
| 434 | default: |
| 435 | return -ENOIOCTLCMD; |
| 436 | } |
| 437 | return 0; |
| 438 | } |
| 439 | |
| 440 | #define RELEVANT_IFLAG(iflag) (iflag & (IGNBRK|BRKINT|IGNPAR|PARMRK|INPCK)) |
| 441 | |
Tony Luck | f889a26 | 2006-12-12 10:47:36 -0800 | [diff] [blame] | 442 | static void rs_set_termios(struct tty_struct *tty, struct ktermios *old_termios) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 444 | /* Handle turning off CRTSCTS */ |
| 445 | if ((old_termios->c_cflag & CRTSCTS) && |
| 446 | !(tty->termios->c_cflag & CRTSCTS)) { |
| 447 | tty->hw_stopped = 0; |
| 448 | rs_start(tty); |
| 449 | } |
| 450 | } |
| 451 | /* |
| 452 | * This routine will shutdown a serial port; interrupts are disabled, and |
| 453 | * DTR is dropped if the hangup on close termio flag is on. |
| 454 | */ |
| 455 | static void shutdown(struct async_struct * info) |
| 456 | { |
| 457 | unsigned long flags; |
| 458 | struct serial_state *state; |
| 459 | int retval; |
| 460 | |
| 461 | if (!(info->flags & ASYNC_INITIALIZED)) return; |
| 462 | |
| 463 | state = info->state; |
| 464 | |
| 465 | #ifdef SIMSERIAL_DEBUG |
| 466 | printk("Shutting down serial port %d (irq %d)....", info->line, |
| 467 | state->irq); |
| 468 | #endif |
| 469 | |
| 470 | local_irq_save(flags); |
| 471 | { |
| 472 | /* |
| 473 | * First unlink the serial port from the IRQ chain... |
| 474 | */ |
| 475 | if (info->next_port) |
| 476 | info->next_port->prev_port = info->prev_port; |
| 477 | if (info->prev_port) |
| 478 | info->prev_port->next_port = info->next_port; |
| 479 | else |
| 480 | IRQ_ports[state->irq] = info->next_port; |
| 481 | |
| 482 | /* |
| 483 | * Free the IRQ, if necessary |
| 484 | */ |
| 485 | if (state->irq && (!IRQ_ports[state->irq] || |
| 486 | !IRQ_ports[state->irq]->next_port)) { |
| 487 | if (IRQ_ports[state->irq]) { |
| 488 | free_irq(state->irq, NULL); |
| 489 | retval = request_irq(state->irq, rs_interrupt_single, |
| 490 | IRQ_T(info), "serial", NULL); |
| 491 | |
| 492 | if (retval) |
| 493 | printk(KERN_ERR "serial shutdown: request_irq: error %d" |
| 494 | " Couldn't reacquire IRQ.\n", retval); |
| 495 | } else |
| 496 | free_irq(state->irq, NULL); |
| 497 | } |
| 498 | |
| 499 | if (info->xmit.buf) { |
| 500 | free_page((unsigned long) info->xmit.buf); |
Al Viro | cfa7fd7 | 2006-10-10 22:46:17 +0100 | [diff] [blame] | 501 | info->xmit.buf = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | } |
| 503 | |
| 504 | if (info->tty) set_bit(TTY_IO_ERROR, &info->tty->flags); |
| 505 | |
| 506 | info->flags &= ~ASYNC_INITIALIZED; |
| 507 | } |
| 508 | local_irq_restore(flags); |
| 509 | } |
| 510 | |
| 511 | /* |
| 512 | * ------------------------------------------------------------ |
| 513 | * rs_close() |
| 514 | * |
| 515 | * This routine is called when the serial port gets closed. First, we |
| 516 | * wait for the last remaining data to be sent. Then, we unlink its |
| 517 | * async structure from the interrupt chain if necessary, and we free |
| 518 | * that IRQ if nothing is left in the chain. |
| 519 | * ------------------------------------------------------------ |
| 520 | */ |
| 521 | static void rs_close(struct tty_struct *tty, struct file * filp) |
| 522 | { |
| 523 | struct async_struct * info = (struct async_struct *)tty->driver_data; |
| 524 | struct serial_state *state; |
| 525 | unsigned long flags; |
| 526 | |
| 527 | if (!info ) return; |
| 528 | |
| 529 | state = info->state; |
| 530 | |
| 531 | local_irq_save(flags); |
| 532 | if (tty_hung_up_p(filp)) { |
| 533 | #ifdef SIMSERIAL_DEBUG |
| 534 | printk("rs_close: hung_up\n"); |
| 535 | #endif |
| 536 | local_irq_restore(flags); |
| 537 | return; |
| 538 | } |
| 539 | #ifdef SIMSERIAL_DEBUG |
| 540 | printk("rs_close ttys%d, count = %d\n", info->line, state->count); |
| 541 | #endif |
| 542 | if ((tty->count == 1) && (state->count != 1)) { |
| 543 | /* |
| 544 | * Uh, oh. tty->count is 1, which means that the tty |
| 545 | * structure will be freed. state->count should always |
| 546 | * be one in these conditions. If it's greater than |
| 547 | * one, we've got real problems, since it means the |
| 548 | * serial port won't be shutdown. |
| 549 | */ |
| 550 | printk(KERN_ERR "rs_close: bad serial port count; tty->count is 1, " |
| 551 | "state->count is %d\n", state->count); |
| 552 | state->count = 1; |
| 553 | } |
| 554 | if (--state->count < 0) { |
| 555 | printk(KERN_ERR "rs_close: bad serial port count for ttys%d: %d\n", |
| 556 | info->line, state->count); |
| 557 | state->count = 0; |
| 558 | } |
| 559 | if (state->count) { |
| 560 | local_irq_restore(flags); |
| 561 | return; |
| 562 | } |
| 563 | info->flags |= ASYNC_CLOSING; |
| 564 | local_irq_restore(flags); |
| 565 | |
| 566 | /* |
| 567 | * Now we wait for the transmit buffer to clear; and we notify |
| 568 | * the line discipline to only process XON/XOFF characters. |
| 569 | */ |
| 570 | shutdown(info); |
Alan Cox | 15648f1 | 2008-07-16 21:52:25 +0100 | [diff] [blame] | 571 | rs_flush_buffer(tty); |
| 572 | tty_ldisc_flush(tty); |
Al Viro | cfa7fd7 | 2006-10-10 22:46:17 +0100 | [diff] [blame] | 573 | info->tty = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 574 | if (info->blocked_open) { |
Nishanth Aravamudan | 9e173c0 | 2005-11-07 01:01:11 -0800 | [diff] [blame] | 575 | if (info->close_delay) |
| 576 | schedule_timeout_interruptible(info->close_delay); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 577 | wake_up_interruptible(&info->open_wait); |
| 578 | } |
| 579 | info->flags &= ~(ASYNC_NORMAL_ACTIVE|ASYNC_CLOSING); |
| 580 | wake_up_interruptible(&info->close_wait); |
| 581 | } |
| 582 | |
| 583 | /* |
| 584 | * rs_wait_until_sent() --- wait until the transmitter is empty |
| 585 | */ |
| 586 | static void rs_wait_until_sent(struct tty_struct *tty, int timeout) |
| 587 | { |
| 588 | } |
| 589 | |
| 590 | |
| 591 | /* |
| 592 | * rs_hangup() --- called by tty_hangup() when a hangup is signaled. |
| 593 | */ |
| 594 | static void rs_hangup(struct tty_struct *tty) |
| 595 | { |
| 596 | struct async_struct * info = (struct async_struct *)tty->driver_data; |
| 597 | struct serial_state *state = info->state; |
| 598 | |
| 599 | #ifdef SIMSERIAL_DEBUG |
| 600 | printk("rs_hangup: called\n"); |
| 601 | #endif |
| 602 | |
| 603 | state = info->state; |
| 604 | |
| 605 | rs_flush_buffer(tty); |
| 606 | if (info->flags & ASYNC_CLOSING) |
| 607 | return; |
| 608 | shutdown(info); |
| 609 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 610 | state->count = 0; |
| 611 | info->flags &= ~ASYNC_NORMAL_ACTIVE; |
Al Viro | cfa7fd7 | 2006-10-10 22:46:17 +0100 | [diff] [blame] | 612 | info->tty = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 613 | wake_up_interruptible(&info->open_wait); |
| 614 | } |
| 615 | |
| 616 | |
| 617 | static int get_async_struct(int line, struct async_struct **ret_info) |
| 618 | { |
| 619 | struct async_struct *info; |
| 620 | struct serial_state *sstate; |
| 621 | |
| 622 | sstate = rs_table + line; |
| 623 | sstate->count++; |
| 624 | if (sstate->info) { |
| 625 | *ret_info = sstate->info; |
| 626 | return 0; |
| 627 | } |
Yan Burman | 52fd910 | 2006-12-04 14:58:35 -0800 | [diff] [blame] | 628 | info = kzalloc(sizeof(struct async_struct), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 629 | if (!info) { |
| 630 | sstate->count--; |
| 631 | return -ENOMEM; |
| 632 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 633 | init_waitqueue_head(&info->open_wait); |
| 634 | init_waitqueue_head(&info->close_wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 635 | info->port = sstate->port; |
| 636 | info->flags = sstate->flags; |
| 637 | info->xmit_fifo_size = sstate->xmit_fifo_size; |
| 638 | info->line = line; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 639 | info->state = sstate; |
| 640 | if (sstate->info) { |
| 641 | kfree(info); |
| 642 | *ret_info = sstate->info; |
| 643 | return 0; |
| 644 | } |
| 645 | *ret_info = sstate->info = info; |
| 646 | return 0; |
| 647 | } |
| 648 | |
| 649 | static int |
| 650 | startup(struct async_struct *info) |
| 651 | { |
| 652 | unsigned long flags; |
| 653 | int retval=0; |
David Howells | 40220c1 | 2006-10-09 12:19:47 +0100 | [diff] [blame] | 654 | irq_handler_t handler; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 655 | struct serial_state *state= info->state; |
| 656 | unsigned long page; |
| 657 | |
| 658 | page = get_zeroed_page(GFP_KERNEL); |
| 659 | if (!page) |
| 660 | return -ENOMEM; |
| 661 | |
| 662 | local_irq_save(flags); |
| 663 | |
| 664 | if (info->flags & ASYNC_INITIALIZED) { |
| 665 | free_page(page); |
| 666 | goto errout; |
| 667 | } |
| 668 | |
| 669 | if (!state->port || !state->type) { |
| 670 | if (info->tty) set_bit(TTY_IO_ERROR, &info->tty->flags); |
| 671 | free_page(page); |
| 672 | goto errout; |
| 673 | } |
| 674 | if (info->xmit.buf) |
| 675 | free_page(page); |
| 676 | else |
| 677 | info->xmit.buf = (unsigned char *) page; |
| 678 | |
| 679 | #ifdef SIMSERIAL_DEBUG |
| 680 | printk("startup: ttys%d (irq %d)...", info->line, state->irq); |
| 681 | #endif |
| 682 | |
| 683 | /* |
| 684 | * Allocate the IRQ if necessary |
| 685 | */ |
| 686 | if (state->irq && (!IRQ_ports[state->irq] || |
| 687 | !IRQ_ports[state->irq]->next_port)) { |
| 688 | if (IRQ_ports[state->irq]) { |
| 689 | retval = -EBUSY; |
| 690 | goto errout; |
| 691 | } else |
| 692 | handler = rs_interrupt_single; |
| 693 | |
| 694 | retval = request_irq(state->irq, handler, IRQ_T(info), "simserial", NULL); |
| 695 | if (retval) { |
| 696 | if (capable(CAP_SYS_ADMIN)) { |
| 697 | if (info->tty) |
| 698 | set_bit(TTY_IO_ERROR, |
| 699 | &info->tty->flags); |
| 700 | retval = 0; |
| 701 | } |
| 702 | goto errout; |
| 703 | } |
| 704 | } |
| 705 | |
| 706 | /* |
| 707 | * Insert serial port into IRQ chain. |
| 708 | */ |
Al Viro | cfa7fd7 | 2006-10-10 22:46:17 +0100 | [diff] [blame] | 709 | info->prev_port = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 710 | info->next_port = IRQ_ports[state->irq]; |
| 711 | if (info->next_port) |
| 712 | info->next_port->prev_port = info; |
| 713 | IRQ_ports[state->irq] = info; |
| 714 | |
| 715 | if (info->tty) clear_bit(TTY_IO_ERROR, &info->tty->flags); |
| 716 | |
| 717 | info->xmit.head = info->xmit.tail = 0; |
| 718 | |
| 719 | #if 0 |
| 720 | /* |
| 721 | * Set up serial timers... |
| 722 | */ |
| 723 | timer_table[RS_TIMER].expires = jiffies + 2*HZ/100; |
| 724 | timer_active |= 1 << RS_TIMER; |
| 725 | #endif |
| 726 | |
| 727 | /* |
| 728 | * Set up the tty->alt_speed kludge |
| 729 | */ |
| 730 | if (info->tty) { |
| 731 | if ((info->flags & ASYNC_SPD_MASK) == ASYNC_SPD_HI) |
| 732 | info->tty->alt_speed = 57600; |
| 733 | if ((info->flags & ASYNC_SPD_MASK) == ASYNC_SPD_VHI) |
| 734 | info->tty->alt_speed = 115200; |
| 735 | if ((info->flags & ASYNC_SPD_MASK) == ASYNC_SPD_SHI) |
| 736 | info->tty->alt_speed = 230400; |
| 737 | if ((info->flags & ASYNC_SPD_MASK) == ASYNC_SPD_WARP) |
| 738 | info->tty->alt_speed = 460800; |
| 739 | } |
| 740 | |
| 741 | info->flags |= ASYNC_INITIALIZED; |
| 742 | local_irq_restore(flags); |
| 743 | return 0; |
| 744 | |
| 745 | errout: |
| 746 | local_irq_restore(flags); |
| 747 | return retval; |
| 748 | } |
| 749 | |
| 750 | |
| 751 | /* |
| 752 | * This routine is called whenever a serial port is opened. It |
| 753 | * enables interrupts for a serial port, linking in its async structure into |
| 754 | * the IRQ chain. It also performs the serial-specific |
| 755 | * initialization for the tty structure. |
| 756 | */ |
| 757 | static int rs_open(struct tty_struct *tty, struct file * filp) |
| 758 | { |
| 759 | struct async_struct *info; |
Jiri Slaby | 410235f | 2012-03-05 14:52:01 +0100 | [diff] [blame] | 760 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 761 | unsigned long page; |
| 762 | |
Jiri Slaby | 410235f | 2012-03-05 14:52:01 +0100 | [diff] [blame] | 763 | retval = get_async_struct(tty->index, &info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 764 | if (retval) |
| 765 | return retval; |
| 766 | tty->driver_data = info; |
| 767 | info->tty = tty; |
| 768 | |
| 769 | #ifdef SIMSERIAL_DEBUG |
| 770 | printk("rs_open %s, count = %d\n", tty->name, info->state->count); |
| 771 | #endif |
| 772 | info->tty->low_latency = (info->flags & ASYNC_LOW_LATENCY) ? 1 : 0; |
| 773 | |
| 774 | if (!tmp_buf) { |
| 775 | page = get_zeroed_page(GFP_KERNEL); |
| 776 | if (!page) |
| 777 | return -ENOMEM; |
| 778 | if (tmp_buf) |
| 779 | free_page(page); |
| 780 | else |
| 781 | tmp_buf = (unsigned char *) page; |
| 782 | } |
| 783 | |
| 784 | /* |
| 785 | * If the port is the middle of closing, bail out now |
| 786 | */ |
| 787 | if (tty_hung_up_p(filp) || |
| 788 | (info->flags & ASYNC_CLOSING)) { |
| 789 | if (info->flags & ASYNC_CLOSING) |
| 790 | interruptible_sleep_on(&info->close_wait); |
| 791 | #ifdef SERIAL_DO_RESTART |
| 792 | return ((info->flags & ASYNC_HUP_NOTIFY) ? |
| 793 | -EAGAIN : -ERESTARTSYS); |
| 794 | #else |
| 795 | return -EAGAIN; |
| 796 | #endif |
| 797 | } |
| 798 | |
| 799 | /* |
| 800 | * Start up serial port |
| 801 | */ |
| 802 | retval = startup(info); |
| 803 | if (retval) { |
| 804 | return retval; |
| 805 | } |
| 806 | |
| 807 | /* |
| 808 | * figure out which console to use (should be one already) |
| 809 | */ |
| 810 | console = console_drivers; |
| 811 | while (console) { |
| 812 | if ((console->flags & CON_ENABLED) && console->write) break; |
| 813 | console = console->next; |
| 814 | } |
| 815 | |
| 816 | #ifdef SIMSERIAL_DEBUG |
| 817 | printk("rs_open ttys%d successful\n", info->line); |
| 818 | #endif |
| 819 | return 0; |
| 820 | } |
| 821 | |
| 822 | /* |
| 823 | * /proc fs routines.... |
| 824 | */ |
| 825 | |
Alexey Dobriyan | bf54215 | 2009-03-31 15:19:23 -0700 | [diff] [blame] | 826 | static inline void line_info(struct seq_file *m, struct serial_state *state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 827 | { |
Alexey Dobriyan | bf54215 | 2009-03-31 15:19:23 -0700 | [diff] [blame] | 828 | seq_printf(m, "%d: uart:%s port:%lX irq:%d\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 829 | state->line, uart_config[state->type].name, |
| 830 | state->port, state->irq); |
| 831 | } |
| 832 | |
Alexey Dobriyan | bf54215 | 2009-03-31 15:19:23 -0700 | [diff] [blame] | 833 | static int rs_proc_show(struct seq_file *m, void *v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 834 | { |
Alexey Dobriyan | bf54215 | 2009-03-31 15:19:23 -0700 | [diff] [blame] | 835 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 836 | |
Alexey Dobriyan | bf54215 | 2009-03-31 15:19:23 -0700 | [diff] [blame] | 837 | seq_printf(m, "simserinfo:1.0 driver:%s\n", serial_version); |
| 838 | for (i = 0; i < NR_PORTS; i++) |
| 839 | line_info(m, &rs_table[i]); |
| 840 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 841 | } |
| 842 | |
Alexey Dobriyan | bf54215 | 2009-03-31 15:19:23 -0700 | [diff] [blame] | 843 | static int rs_proc_open(struct inode *inode, struct file *file) |
| 844 | { |
| 845 | return single_open(file, rs_proc_show, NULL); |
| 846 | } |
| 847 | |
| 848 | static const struct file_operations rs_proc_fops = { |
| 849 | .owner = THIS_MODULE, |
| 850 | .open = rs_proc_open, |
| 851 | .read = seq_read, |
| 852 | .llseek = seq_lseek, |
| 853 | .release = single_release, |
| 854 | }; |
| 855 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 856 | /* |
| 857 | * --------------------------------------------------------------------- |
| 858 | * rs_init() and friends |
| 859 | * |
| 860 | * rs_init() is called at boot-time to initialize the serial driver. |
| 861 | * --------------------------------------------------------------------- |
| 862 | */ |
| 863 | |
| 864 | /* |
| 865 | * This routine prints out the appropriate serial driver version |
| 866 | * number, and identifies which options were configured into this |
| 867 | * driver. |
| 868 | */ |
| 869 | static inline void show_serial_version(void) |
| 870 | { |
| 871 | printk(KERN_INFO "%s version %s with", serial_name, serial_version); |
| 872 | printk(KERN_INFO " no serial options enabled\n"); |
| 873 | } |
| 874 | |
Jeff Dike | b68e31d | 2006-10-02 02:17:18 -0700 | [diff] [blame] | 875 | static const struct tty_operations hp_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 876 | .open = rs_open, |
| 877 | .close = rs_close, |
| 878 | .write = rs_write, |
| 879 | .put_char = rs_put_char, |
| 880 | .flush_chars = rs_flush_chars, |
| 881 | .write_room = rs_write_room, |
| 882 | .chars_in_buffer = rs_chars_in_buffer, |
| 883 | .flush_buffer = rs_flush_buffer, |
| 884 | .ioctl = rs_ioctl, |
| 885 | .throttle = rs_throttle, |
| 886 | .unthrottle = rs_unthrottle, |
| 887 | .send_xchar = rs_send_xchar, |
| 888 | .set_termios = rs_set_termios, |
| 889 | .stop = rs_stop, |
| 890 | .start = rs_start, |
| 891 | .hangup = rs_hangup, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 892 | .wait_until_sent = rs_wait_until_sent, |
Alexey Dobriyan | bf54215 | 2009-03-31 15:19:23 -0700 | [diff] [blame] | 893 | .proc_fops = &rs_proc_fops, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 894 | }; |
| 895 | |
| 896 | /* |
| 897 | * The serial driver boot-time initialization code! |
| 898 | */ |
| 899 | static int __init |
| 900 | simrs_init (void) |
| 901 | { |
Kenji Kaneshige | 3b5cc09 | 2005-07-10 21:49:00 -0700 | [diff] [blame] | 902 | int i, rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 903 | struct serial_state *state; |
| 904 | |
| 905 | if (!ia64_platform_is("hpsim")) |
| 906 | return -ENODEV; |
| 907 | |
Jiri Slaby | 410235f | 2012-03-05 14:52:01 +0100 | [diff] [blame] | 908 | hp_simserial_driver = alloc_tty_driver(NR_PORTS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 909 | if (!hp_simserial_driver) |
| 910 | return -ENOMEM; |
| 911 | |
| 912 | show_serial_version(); |
| 913 | |
| 914 | /* Initialize the tty_driver structure */ |
| 915 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 916 | hp_simserial_driver->driver_name = "simserial"; |
| 917 | hp_simserial_driver->name = "ttyS"; |
| 918 | hp_simserial_driver->major = TTY_MAJOR; |
| 919 | hp_simserial_driver->minor_start = 64; |
| 920 | hp_simserial_driver->type = TTY_DRIVER_TYPE_SERIAL; |
| 921 | hp_simserial_driver->subtype = SERIAL_TYPE_NORMAL; |
| 922 | hp_simserial_driver->init_termios = tty_std_termios; |
| 923 | hp_simserial_driver->init_termios.c_cflag = |
| 924 | B9600 | CS8 | CREAD | HUPCL | CLOCAL; |
| 925 | hp_simserial_driver->flags = TTY_DRIVER_REAL_RAW; |
| 926 | tty_set_operations(hp_simserial_driver, &hp_ops); |
| 927 | |
| 928 | /* |
| 929 | * Let's have a little bit of fun ! |
| 930 | */ |
| 931 | for (i = 0, state = rs_table; i < NR_PORTS; i++,state++) { |
| 932 | |
| 933 | if (state->type == PORT_UNKNOWN) continue; |
| 934 | |
| 935 | if (!state->irq) { |
Kenji Kaneshige | 3b5cc09 | 2005-07-10 21:49:00 -0700 | [diff] [blame] | 936 | if ((rc = assign_irq_vector(AUTO_ASSIGN)) < 0) |
| 937 | panic("%s: out of interrupt vectors!\n", |
Harvey Harrison | d4ed808 | 2008-03-04 15:15:00 -0800 | [diff] [blame] | 938 | __func__); |
Kenji Kaneshige | 3b5cc09 | 2005-07-10 21:49:00 -0700 | [diff] [blame] | 939 | state->irq = rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 940 | ia64_ssc_connect_irq(KEYBOARD_INTR, state->irq); |
| 941 | } |
| 942 | |
| 943 | printk(KERN_INFO "ttyS%d at 0x%04lx (irq = %d) is a %s\n", |
| 944 | state->line, |
| 945 | state->port, state->irq, |
| 946 | uart_config[state->type].name); |
| 947 | } |
| 948 | |
| 949 | if (tty_register_driver(hp_simserial_driver)) |
| 950 | panic("Couldn't register simserial driver\n"); |
| 951 | |
| 952 | return 0; |
| 953 | } |
| 954 | |
| 955 | #ifndef MODULE |
| 956 | __initcall(simrs_init); |
| 957 | #endif |