Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2001 Anton Blanchard <anton@au.ibm.com>, IBM |
| 3 | * Copyright (C) 2001 Paul Mackerras <paulus@au.ibm.com>, IBM |
| 4 | * Copyright (C) 2004 Benjamin Herrenschmidt <benh@kernel.crashing.org>, IBM Corp. |
| 5 | * Copyright (C) 2004 IBM Corporation |
| 6 | * |
| 7 | * Additional Author(s): |
| 8 | * Ryan S. Arnold <rsa@us.ibm.com> |
| 9 | * |
| 10 | * This program is free software; you can redistribute it and/or modify |
| 11 | * it under the terms of the GNU General Public License as published by |
| 12 | * the Free Software Foundation; either version 2 of the License, or |
| 13 | * (at your option) any later version. |
| 14 | * |
| 15 | * This program is distributed in the hope that it will be useful, |
| 16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 18 | * GNU General Public License for more details. |
| 19 | * |
| 20 | * You should have received a copy of the GNU General Public License |
| 21 | * along with this program; if not, write to the Free Software |
| 22 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 23 | */ |
| 24 | |
| 25 | #include <linux/console.h> |
| 26 | #include <linux/cpumask.h> |
| 27 | #include <linux/init.h> |
| 28 | #include <linux/kbd_kern.h> |
| 29 | #include <linux/kernel.h> |
| 30 | #include <linux/kobject.h> |
| 31 | #include <linux/kthread.h> |
| 32 | #include <linux/list.h> |
| 33 | #include <linux/module.h> |
| 34 | #include <linux/major.h> |
| 35 | #include <linux/sysrq.h> |
| 36 | #include <linux/tty.h> |
| 37 | #include <linux/tty_flip.h> |
| 38 | #include <linux/sched.h> |
| 39 | #include <linux/spinlock.h> |
| 40 | #include <linux/delay.h> |
Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 41 | #include <linux/freezer.h> |
Ryan S. Arnold | 45d607e | 2006-03-27 21:25:16 +0200 | [diff] [blame] | 42 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | #include <asm/uaccess.h> |
Ryan S. Arnold | 45d607e | 2006-03-27 21:25:16 +0200 | [diff] [blame] | 44 | |
| 45 | #include "hvc_console.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | |
| 47 | #define HVC_MAJOR 229 |
| 48 | #define HVC_MINOR 0 |
| 49 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | /* |
| 51 | * Wait this long per iteration while trying to push buffered data to the |
| 52 | * hypervisor before allowing the tty to complete a close operation. |
| 53 | */ |
| 54 | #define HVC_CLOSE_WAIT (HZ/100) /* 1/10 of a second */ |
| 55 | |
| 56 | /* |
Ryan S. Arnold | 45d607e | 2006-03-27 21:25:16 +0200 | [diff] [blame] | 57 | * These sizes are most efficient for vio, because they are the |
| 58 | * native transfer size. We could make them selectable in the |
| 59 | * future to better deal with backends that want other buffer sizes. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | #define N_OUTBUF 16 |
| 62 | #define N_INBUF 16 |
| 63 | |
Ryan S. Arnold | 45d607e | 2006-03-27 21:25:16 +0200 | [diff] [blame] | 64 | #define __ALIGNED__ __attribute__((__aligned__(sizeof(long)))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | |
Milton Miller | 837dcfa | 2005-07-07 17:56:16 -0700 | [diff] [blame] | 66 | static struct tty_driver *hvc_driver; |
| 67 | static struct task_struct *hvc_task; |
| 68 | |
| 69 | /* Picks up late kicks after list walk but before schedule() */ |
| 70 | static int hvc_kicked; |
| 71 | |
| 72 | #ifdef CONFIG_MAGIC_SYSRQ |
| 73 | static int sysrq_pressed; |
| 74 | #endif |
| 75 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | struct hvc_struct { |
| 77 | spinlock_t lock; |
| 78 | int index; |
| 79 | struct tty_struct *tty; |
| 80 | unsigned int count; |
| 81 | int do_wakeup; |
Stephen Rothwell | 4e9e95a | 2006-07-13 18:53:32 +1000 | [diff] [blame] | 82 | char *outbuf; |
| 83 | int outbuf_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | int n_outbuf; |
| 85 | uint32_t vtermno; |
Milton Miller | 030ffad | 2005-07-07 17:56:25 -0700 | [diff] [blame] | 86 | struct hv_ops *ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | int irq_requested; |
| 88 | int irq; |
| 89 | struct list_head next; |
| 90 | struct kobject kobj; /* ref count & hvc_struct lifetime */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | }; |
| 92 | |
| 93 | /* dynamic list of hvc_struct instances */ |
| 94 | static struct list_head hvc_structs = LIST_HEAD_INIT(hvc_structs); |
| 95 | |
| 96 | /* |
| 97 | * Protect the list of hvc_struct instances from inserts and removals during |
| 98 | * list traversal. |
| 99 | */ |
| 100 | static DEFINE_SPINLOCK(hvc_structs_lock); |
| 101 | |
| 102 | /* |
Milton Miller | 6f24808 | 2005-07-07 17:56:17 -0700 | [diff] [blame] | 103 | * This value is used to assign a tty->index value to a hvc_struct based |
| 104 | * upon order of exposure via hvc_probe(), when we can not match it to |
will schmidt | c3ea692 | 2007-04-18 00:54:51 +1000 | [diff] [blame] | 105 | * a console candidate registered with hvc_instantiate(). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | */ |
Milton Miller | 6f24808 | 2005-07-07 17:56:17 -0700 | [diff] [blame] | 107 | static int last_hvc = -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | /* |
will schmidt | c3ea692 | 2007-04-18 00:54:51 +1000 | [diff] [blame] | 110 | * Do not call this function with either the hvc_structs_lock or the hvc_struct |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | * lock held. If successful, this function increments the kobject reference |
| 112 | * count against the target hvc_struct so it should be released when finished. |
| 113 | */ |
Adrian Bunk | 4fa156e | 2007-05-08 00:24:24 -0700 | [diff] [blame^] | 114 | static struct hvc_struct *hvc_get_by_index(int index) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | { |
| 116 | struct hvc_struct *hp; |
| 117 | unsigned long flags; |
| 118 | |
| 119 | spin_lock(&hvc_structs_lock); |
| 120 | |
| 121 | list_for_each_entry(hp, &hvc_structs, next) { |
| 122 | spin_lock_irqsave(&hp->lock, flags); |
| 123 | if (hp->index == index) { |
| 124 | kobject_get(&hp->kobj); |
| 125 | spin_unlock_irqrestore(&hp->lock, flags); |
| 126 | spin_unlock(&hvc_structs_lock); |
| 127 | return hp; |
| 128 | } |
| 129 | spin_unlock_irqrestore(&hp->lock, flags); |
| 130 | } |
| 131 | hp = NULL; |
| 132 | |
| 133 | spin_unlock(&hvc_structs_lock); |
| 134 | return hp; |
| 135 | } |
| 136 | |
Milton Miller | 837dcfa | 2005-07-07 17:56:16 -0700 | [diff] [blame] | 137 | |
| 138 | /* |
| 139 | * Initial console vtermnos for console API usage prior to full console |
| 140 | * initialization. Any vty adapter outside this range will not have usable |
| 141 | * console interfaces but can still be used as a tty device. This has to be |
| 142 | * static because kmalloc will not work during early console init. |
| 143 | */ |
Milton Miller | 030ffad | 2005-07-07 17:56:25 -0700 | [diff] [blame] | 144 | static struct hv_ops *cons_ops[MAX_NR_HVC_CONSOLES]; |
Milton Miller | 64e4da5 | 2005-07-07 17:56:22 -0700 | [diff] [blame] | 145 | static uint32_t vtermnos[MAX_NR_HVC_CONSOLES] = |
| 146 | {[0 ... MAX_NR_HVC_CONSOLES - 1] = -1}; |
Milton Miller | 837dcfa | 2005-07-07 17:56:16 -0700 | [diff] [blame] | 147 | |
| 148 | /* |
| 149 | * Console APIs, NOT TTY. These APIs are available immediately when |
| 150 | * hvc_console_setup() finds adapters. |
| 151 | */ |
| 152 | |
Adrian Bunk | 4fa156e | 2007-05-08 00:24:24 -0700 | [diff] [blame^] | 153 | static void hvc_console_print(struct console *co, const char *b, |
| 154 | unsigned count) |
Milton Miller | 837dcfa | 2005-07-07 17:56:16 -0700 | [diff] [blame] | 155 | { |
Ryan S. Arnold | 45d607e | 2006-03-27 21:25:16 +0200 | [diff] [blame] | 156 | char c[N_OUTBUF] __ALIGNED__; |
Milton Miller | 837dcfa | 2005-07-07 17:56:16 -0700 | [diff] [blame] | 157 | unsigned i = 0, n = 0; |
Milton Miller | 030ffad | 2005-07-07 17:56:25 -0700 | [diff] [blame] | 158 | int r, donecr = 0, index = co->index; |
Milton Miller | 837dcfa | 2005-07-07 17:56:16 -0700 | [diff] [blame] | 159 | |
| 160 | /* Console access attempt outside of acceptable console range. */ |
Milton Miller | 030ffad | 2005-07-07 17:56:25 -0700 | [diff] [blame] | 161 | if (index >= MAX_NR_HVC_CONSOLES) |
Milton Miller | 837dcfa | 2005-07-07 17:56:16 -0700 | [diff] [blame] | 162 | return; |
| 163 | |
will schmidt | c3ea692 | 2007-04-18 00:54:51 +1000 | [diff] [blame] | 164 | /* This console adapter was removed so it is not usable. */ |
Milton Miller | 030ffad | 2005-07-07 17:56:25 -0700 | [diff] [blame] | 165 | if (vtermnos[index] < 0) |
Milton Miller | 837dcfa | 2005-07-07 17:56:16 -0700 | [diff] [blame] | 166 | return; |
| 167 | |
| 168 | while (count > 0 || i > 0) { |
| 169 | if (count > 0 && i < sizeof(c)) { |
| 170 | if (b[n] == '\n' && !donecr) { |
| 171 | c[i++] = '\r'; |
| 172 | donecr = 1; |
| 173 | } else { |
| 174 | c[i++] = b[n++]; |
| 175 | donecr = 0; |
| 176 | --count; |
| 177 | } |
| 178 | } else { |
Milton Miller | 030ffad | 2005-07-07 17:56:25 -0700 | [diff] [blame] | 179 | r = cons_ops[index]->put_chars(vtermnos[index], c, i); |
Milton Miller | 837dcfa | 2005-07-07 17:56:16 -0700 | [diff] [blame] | 180 | if (r < 0) { |
| 181 | /* throw away chars on error */ |
| 182 | i = 0; |
| 183 | } else if (r > 0) { |
| 184 | i -= r; |
| 185 | if (i > 0) |
| 186 | memmove(c, c+r, i); |
| 187 | } |
| 188 | } |
| 189 | } |
| 190 | } |
| 191 | |
| 192 | static struct tty_driver *hvc_console_device(struct console *c, int *index) |
| 193 | { |
Milton Miller | 7805b1b | 2005-07-07 17:56:23 -0700 | [diff] [blame] | 194 | if (vtermnos[c->index] == -1) |
| 195 | return NULL; |
| 196 | |
Milton Miller | 837dcfa | 2005-07-07 17:56:16 -0700 | [diff] [blame] | 197 | *index = c->index; |
| 198 | return hvc_driver; |
| 199 | } |
| 200 | |
| 201 | static int __init hvc_console_setup(struct console *co, char *options) |
| 202 | { |
Milton Miller | 7805b1b | 2005-07-07 17:56:23 -0700 | [diff] [blame] | 203 | if (co->index < 0 || co->index >= MAX_NR_HVC_CONSOLES) |
| 204 | return -ENODEV; |
| 205 | |
| 206 | if (vtermnos[co->index] == -1) |
| 207 | return -ENODEV; |
| 208 | |
Milton Miller | 837dcfa | 2005-07-07 17:56:16 -0700 | [diff] [blame] | 209 | return 0; |
| 210 | } |
| 211 | |
Adrian Bunk | 4fa156e | 2007-05-08 00:24:24 -0700 | [diff] [blame^] | 212 | static struct console hvc_con_driver = { |
Milton Miller | 837dcfa | 2005-07-07 17:56:16 -0700 | [diff] [blame] | 213 | .name = "hvc", |
| 214 | .write = hvc_console_print, |
| 215 | .device = hvc_console_device, |
| 216 | .setup = hvc_console_setup, |
| 217 | .flags = CON_PRINTBUFFER, |
| 218 | .index = -1, |
| 219 | }; |
| 220 | |
Milton Miller | d5ee257 | 2005-07-07 17:56:24 -0700 | [diff] [blame] | 221 | /* |
will schmidt | c3ea692 | 2007-04-18 00:54:51 +1000 | [diff] [blame] | 222 | * Early console initialization. Precedes driver initialization. |
Milton Miller | d5ee257 | 2005-07-07 17:56:24 -0700 | [diff] [blame] | 223 | * |
| 224 | * (1) we are first, and the user specified another driver |
| 225 | * -- index will remain -1 |
| 226 | * (2) we are first and the user specified no driver |
| 227 | * -- index will be set to 0, then we will fail setup. |
| 228 | * (3) we are first and the user specified our driver |
| 229 | * -- index will be set to user specified driver, and we will fail |
| 230 | * (4) we are after driver, and this initcall will register us |
| 231 | * -- if the user didn't specify a driver then the console will match |
| 232 | * |
| 233 | * Note that for cases 2 and 3, we will match later when the io driver |
| 234 | * calls hvc_instantiate() and call register again. |
| 235 | */ |
Milton Miller | 837dcfa | 2005-07-07 17:56:16 -0700 | [diff] [blame] | 236 | static int __init hvc_console_init(void) |
| 237 | { |
Milton Miller | 837dcfa | 2005-07-07 17:56:16 -0700 | [diff] [blame] | 238 | register_console(&hvc_con_driver); |
| 239 | return 0; |
| 240 | } |
| 241 | console_initcall(hvc_console_init); |
| 242 | |
| 243 | /* |
Milton Miller | 6f24808 | 2005-07-07 17:56:17 -0700 | [diff] [blame] | 244 | * hvc_instantiate() is an early console discovery method which locates |
| 245 | * consoles * prior to the vio subsystem discovering them. Hotplugged |
| 246 | * vty adapters do NOT get an hvc_instantiate() callback since they |
| 247 | * appear after early console init. |
Milton Miller | 837dcfa | 2005-07-07 17:56:16 -0700 | [diff] [blame] | 248 | */ |
Milton Miller | 030ffad | 2005-07-07 17:56:25 -0700 | [diff] [blame] | 249 | int hvc_instantiate(uint32_t vtermno, int index, struct hv_ops *ops) |
Milton Miller | 837dcfa | 2005-07-07 17:56:16 -0700 | [diff] [blame] | 250 | { |
Milton Miller | 7805b1b | 2005-07-07 17:56:23 -0700 | [diff] [blame] | 251 | struct hvc_struct *hp; |
| 252 | |
Milton Miller | 837dcfa | 2005-07-07 17:56:16 -0700 | [diff] [blame] | 253 | if (index < 0 || index >= MAX_NR_HVC_CONSOLES) |
| 254 | return -1; |
| 255 | |
| 256 | if (vtermnos[index] != -1) |
| 257 | return -1; |
| 258 | |
will schmidt | c3ea692 | 2007-04-18 00:54:51 +1000 | [diff] [blame] | 259 | /* make sure no no tty has been registered in this index */ |
Milton Miller | 7805b1b | 2005-07-07 17:56:23 -0700 | [diff] [blame] | 260 | hp = hvc_get_by_index(index); |
| 261 | if (hp) { |
| 262 | kobject_put(&hp->kobj); |
| 263 | return -1; |
| 264 | } |
| 265 | |
Milton Miller | 837dcfa | 2005-07-07 17:56:16 -0700 | [diff] [blame] | 266 | vtermnos[index] = vtermno; |
Milton Miller | 030ffad | 2005-07-07 17:56:25 -0700 | [diff] [blame] | 267 | cons_ops[index] = ops; |
Milton Miller | 6f24808 | 2005-07-07 17:56:17 -0700 | [diff] [blame] | 268 | |
will schmidt | c3ea692 | 2007-04-18 00:54:51 +1000 | [diff] [blame] | 269 | /* reserve all indices up to and including this index */ |
Milton Miller | 6f24808 | 2005-07-07 17:56:17 -0700 | [diff] [blame] | 270 | if (last_hvc < index) |
| 271 | last_hvc = index; |
| 272 | |
Milton Miller | d5ee257 | 2005-07-07 17:56:24 -0700 | [diff] [blame] | 273 | /* if this index is what the user requested, then register |
| 274 | * now (setup won't fail at this point). It's ok to just |
| 275 | * call register again if previously .setup failed. |
| 276 | */ |
| 277 | if (index == hvc_con_driver.index) |
| 278 | register_console(&hvc_con_driver); |
| 279 | |
Milton Miller | 837dcfa | 2005-07-07 17:56:16 -0700 | [diff] [blame] | 280 | return 0; |
| 281 | } |
| 282 | |
| 283 | /* Wake the sleeping khvcd */ |
| 284 | static void hvc_kick(void) |
| 285 | { |
| 286 | hvc_kicked = 1; |
| 287 | wake_up_process(hvc_task); |
| 288 | } |
| 289 | |
Milton Miller | 8b67f8c | 2005-07-07 17:56:18 -0700 | [diff] [blame] | 290 | static int hvc_poll(struct hvc_struct *hp); |
| 291 | |
Milton Miller | 837dcfa | 2005-07-07 17:56:16 -0700 | [diff] [blame] | 292 | /* |
| 293 | * NOTE: This API isn't used if the console adapter doesn't support interrupts. |
| 294 | * In this case the console is poll driven. |
| 295 | */ |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 296 | static irqreturn_t hvc_handle_interrupt(int irq, void *dev_instance) |
Milton Miller | 837dcfa | 2005-07-07 17:56:16 -0700 | [diff] [blame] | 297 | { |
Milton Miller | 8b67f8c | 2005-07-07 17:56:18 -0700 | [diff] [blame] | 298 | /* if hvc_poll request a repoll, then kick the hvcd thread */ |
| 299 | if (hvc_poll(dev_instance)) |
| 300 | hvc_kick(); |
Milton Miller | 837dcfa | 2005-07-07 17:56:16 -0700 | [diff] [blame] | 301 | return IRQ_HANDLED; |
| 302 | } |
| 303 | |
| 304 | static void hvc_unthrottle(struct tty_struct *tty) |
| 305 | { |
| 306 | hvc_kick(); |
| 307 | } |
| 308 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | /* |
| 310 | * The TTY interface won't be used until after the vio layer has exposed the vty |
| 311 | * adapter to the kernel. |
| 312 | */ |
| 313 | static int hvc_open(struct tty_struct *tty, struct file * filp) |
| 314 | { |
| 315 | struct hvc_struct *hp; |
| 316 | unsigned long flags; |
Rusty Russell | 8cd0ae0 | 2007-02-23 14:12:02 +1100 | [diff] [blame] | 317 | int irq = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | int rc = 0; |
| 319 | struct kobject *kobjp; |
| 320 | |
| 321 | /* Auto increments kobject reference if found. */ |
Olof Johansson | 87fd772 | 2006-09-07 15:18:08 -0500 | [diff] [blame] | 322 | if (!(hp = hvc_get_by_index(tty->index))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | |
| 325 | spin_lock_irqsave(&hp->lock, flags); |
| 326 | /* Check and then increment for fast path open. */ |
| 327 | if (hp->count++ > 0) { |
| 328 | spin_unlock_irqrestore(&hp->lock, flags); |
| 329 | hvc_kick(); |
| 330 | return 0; |
| 331 | } /* else count == 0 */ |
| 332 | |
| 333 | tty->driver_data = hp; |
Michal Ostrowski | fb5c594 | 2006-02-18 09:29:59 -0500 | [diff] [blame] | 334 | tty->low_latency = 1; /* Makes flushes to ldisc synchronous. */ |
| 335 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | hp->tty = tty; |
| 337 | /* Save for request_irq outside of spin_lock. */ |
| 338 | irq = hp->irq; |
Rusty Russell | 8cd0ae0 | 2007-02-23 14:12:02 +1100 | [diff] [blame] | 339 | if (irq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | hp->irq_requested = 1; |
| 341 | |
| 342 | kobjp = &hp->kobj; |
| 343 | |
| 344 | spin_unlock_irqrestore(&hp->lock, flags); |
| 345 | /* check error, fallback to non-irq */ |
Rusty Russell | 8cd0ae0 | 2007-02-23 14:12:02 +1100 | [diff] [blame] | 346 | if (irq) |
Thomas Gleixner | 0f2ed4c | 2006-07-01 19:29:33 -0700 | [diff] [blame] | 347 | rc = request_irq(irq, hvc_handle_interrupt, IRQF_DISABLED, "hvc_console", hp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | |
| 349 | /* |
| 350 | * If the request_irq() fails and we return an error. The tty layer |
| 351 | * will call hvc_close() after a failed open but we don't want to clean |
| 352 | * up there so we'll clean up here and clear out the previously set |
| 353 | * tty fields and return the kobject reference. |
| 354 | */ |
| 355 | if (rc) { |
| 356 | spin_lock_irqsave(&hp->lock, flags); |
| 357 | hp->tty = NULL; |
| 358 | hp->irq_requested = 0; |
| 359 | spin_unlock_irqrestore(&hp->lock, flags); |
| 360 | tty->driver_data = NULL; |
| 361 | kobject_put(kobjp); |
| 362 | printk(KERN_ERR "hvc_open: request_irq failed with rc %d.\n", rc); |
| 363 | } |
| 364 | /* Force wakeup of the polling thread */ |
| 365 | hvc_kick(); |
| 366 | |
| 367 | return rc; |
| 368 | } |
| 369 | |
| 370 | static void hvc_close(struct tty_struct *tty, struct file * filp) |
| 371 | { |
| 372 | struct hvc_struct *hp; |
| 373 | struct kobject *kobjp; |
Rusty Russell | 8cd0ae0 | 2007-02-23 14:12:02 +1100 | [diff] [blame] | 374 | int irq = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | unsigned long flags; |
| 376 | |
| 377 | if (tty_hung_up_p(filp)) |
| 378 | return; |
| 379 | |
| 380 | /* |
| 381 | * No driver_data means that this close was issued after a failed |
| 382 | * hvc_open by the tty layer's release_dev() function and we can just |
| 383 | * exit cleanly because the kobject reference wasn't made. |
| 384 | */ |
| 385 | if (!tty->driver_data) |
| 386 | return; |
| 387 | |
| 388 | hp = tty->driver_data; |
| 389 | spin_lock_irqsave(&hp->lock, flags); |
| 390 | |
| 391 | kobjp = &hp->kobj; |
| 392 | if (--hp->count == 0) { |
| 393 | if (hp->irq_requested) |
| 394 | irq = hp->irq; |
| 395 | hp->irq_requested = 0; |
| 396 | |
| 397 | /* We are done with the tty pointer now. */ |
| 398 | hp->tty = NULL; |
| 399 | spin_unlock_irqrestore(&hp->lock, flags); |
| 400 | |
| 401 | /* |
| 402 | * Chain calls chars_in_buffer() and returns immediately if |
| 403 | * there is no buffered data otherwise sleeps on a wait queue |
| 404 | * waking periodically to check chars_in_buffer(). |
| 405 | */ |
| 406 | tty_wait_until_sent(tty, HVC_CLOSE_WAIT); |
| 407 | |
Rusty Russell | 8cd0ae0 | 2007-02-23 14:12:02 +1100 | [diff] [blame] | 408 | if (irq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | free_irq(irq, hp); |
| 410 | |
| 411 | } else { |
| 412 | if (hp->count < 0) |
| 413 | printk(KERN_ERR "hvc_close %X: oops, count is %d\n", |
| 414 | hp->vtermno, hp->count); |
| 415 | spin_unlock_irqrestore(&hp->lock, flags); |
| 416 | } |
| 417 | |
| 418 | kobject_put(kobjp); |
| 419 | } |
| 420 | |
| 421 | static void hvc_hangup(struct tty_struct *tty) |
| 422 | { |
| 423 | struct hvc_struct *hp = tty->driver_data; |
| 424 | unsigned long flags; |
Rusty Russell | 8cd0ae0 | 2007-02-23 14:12:02 +1100 | [diff] [blame] | 425 | int irq = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | int temp_open_count; |
| 427 | struct kobject *kobjp; |
| 428 | |
| 429 | if (!hp) |
| 430 | return; |
| 431 | |
| 432 | spin_lock_irqsave(&hp->lock, flags); |
| 433 | |
| 434 | /* |
| 435 | * The N_TTY line discipline has problems such that in a close vs |
| 436 | * open->hangup case this can be called after the final close so prevent |
| 437 | * that from happening for now. |
| 438 | */ |
| 439 | if (hp->count <= 0) { |
| 440 | spin_unlock_irqrestore(&hp->lock, flags); |
| 441 | return; |
| 442 | } |
| 443 | |
| 444 | kobjp = &hp->kobj; |
| 445 | temp_open_count = hp->count; |
| 446 | hp->count = 0; |
| 447 | hp->n_outbuf = 0; |
| 448 | hp->tty = NULL; |
| 449 | if (hp->irq_requested) |
| 450 | /* Saved for use outside of spin_lock. */ |
| 451 | irq = hp->irq; |
| 452 | hp->irq_requested = 0; |
| 453 | spin_unlock_irqrestore(&hp->lock, flags); |
Rusty Russell | 8cd0ae0 | 2007-02-23 14:12:02 +1100 | [diff] [blame] | 454 | if (irq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 455 | free_irq(irq, hp); |
| 456 | while(temp_open_count) { |
| 457 | --temp_open_count; |
| 458 | kobject_put(kobjp); |
| 459 | } |
| 460 | } |
| 461 | |
| 462 | /* |
| 463 | * Push buffered characters whether they were just recently buffered or waiting |
| 464 | * on a blocked hypervisor. Call this function with hp->lock held. |
| 465 | */ |
| 466 | static void hvc_push(struct hvc_struct *hp) |
| 467 | { |
| 468 | int n; |
| 469 | |
Milton Miller | 030ffad | 2005-07-07 17:56:25 -0700 | [diff] [blame] | 470 | n = hp->ops->put_chars(hp->vtermno, hp->outbuf, hp->n_outbuf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | if (n <= 0) { |
Ryan S. Arnold | 45d607e | 2006-03-27 21:25:16 +0200 | [diff] [blame] | 472 | if (n == 0) { |
| 473 | hp->do_wakeup = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | return; |
Ryan S. Arnold | 45d607e | 2006-03-27 21:25:16 +0200 | [diff] [blame] | 475 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | /* throw away output on error; this happens when |
| 477 | there is no session connected to the vterm. */ |
| 478 | hp->n_outbuf = 0; |
| 479 | } else |
| 480 | hp->n_outbuf -= n; |
| 481 | if (hp->n_outbuf > 0) |
| 482 | memmove(hp->outbuf, hp->outbuf + n, hp->n_outbuf); |
| 483 | else |
| 484 | hp->do_wakeup = 1; |
| 485 | } |
| 486 | |
Ryan S. Arnold | 45d607e | 2006-03-27 21:25:16 +0200 | [diff] [blame] | 487 | static int hvc_write(struct tty_struct *tty, const unsigned char *buf, int count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 488 | { |
Ryan S. Arnold | 45d607e | 2006-03-27 21:25:16 +0200 | [diff] [blame] | 489 | struct hvc_struct *hp = tty->driver_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 490 | unsigned long flags; |
| 491 | int rsize, written = 0; |
| 492 | |
Ryan S. Arnold | 45d607e | 2006-03-27 21:25:16 +0200 | [diff] [blame] | 493 | /* This write was probably executed during a tty close. */ |
| 494 | if (!hp) |
| 495 | return -EPIPE; |
| 496 | |
| 497 | if (hp->count <= 0) |
| 498 | return -EIO; |
| 499 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | spin_lock_irqsave(&hp->lock, flags); |
| 501 | |
| 502 | /* Push pending writes */ |
| 503 | if (hp->n_outbuf > 0) |
| 504 | hvc_push(hp); |
| 505 | |
Stephen Rothwell | 4e9e95a | 2006-07-13 18:53:32 +1000 | [diff] [blame] | 506 | while (count > 0 && (rsize = hp->outbuf_size - hp->n_outbuf) > 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 507 | if (rsize > count) |
| 508 | rsize = count; |
| 509 | memcpy(hp->outbuf + hp->n_outbuf, buf, rsize); |
| 510 | count -= rsize; |
| 511 | buf += rsize; |
| 512 | hp->n_outbuf += rsize; |
| 513 | written += rsize; |
| 514 | hvc_push(hp); |
| 515 | } |
| 516 | spin_unlock_irqrestore(&hp->lock, flags); |
| 517 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 518 | /* |
| 519 | * Racy, but harmless, kick thread if there is still pending data. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | */ |
| 521 | if (hp->n_outbuf) |
| 522 | hvc_kick(); |
| 523 | |
| 524 | return written; |
| 525 | } |
| 526 | |
| 527 | /* |
| 528 | * This is actually a contract between the driver and the tty layer outlining |
will schmidt | c3ea692 | 2007-04-18 00:54:51 +1000 | [diff] [blame] | 529 | * how much write room the driver can guarantee will be sent OR BUFFERED. This |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | * driver MUST honor the return value. |
| 531 | */ |
| 532 | static int hvc_write_room(struct tty_struct *tty) |
| 533 | { |
| 534 | struct hvc_struct *hp = tty->driver_data; |
| 535 | |
| 536 | if (!hp) |
| 537 | return -1; |
| 538 | |
Stephen Rothwell | 4e9e95a | 2006-07-13 18:53:32 +1000 | [diff] [blame] | 539 | return hp->outbuf_size - hp->n_outbuf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | } |
| 541 | |
| 542 | static int hvc_chars_in_buffer(struct tty_struct *tty) |
| 543 | { |
| 544 | struct hvc_struct *hp = tty->driver_data; |
| 545 | |
| 546 | if (!hp) |
| 547 | return -1; |
| 548 | return hp->n_outbuf; |
| 549 | } |
| 550 | |
Will Schmidt | b791072 | 2007-04-18 00:44:46 +1000 | [diff] [blame] | 551 | /* |
| 552 | * timeout will vary between the MIN and MAX values defined here. By default |
| 553 | * and during console activity we will use a default MIN_TIMEOUT of 10. When |
| 554 | * the console is idle, we increase the timeout value on each pass through |
| 555 | * msleep until we reach the max. This may be noticeable as a brief (average |
| 556 | * one second) delay on the console before the console responds to input when |
| 557 | * there has been no input for some time. |
| 558 | */ |
| 559 | #define MIN_TIMEOUT (10) |
| 560 | #define MAX_TIMEOUT (2000) |
| 561 | static u32 timeout = MIN_TIMEOUT; |
| 562 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 | #define HVC_POLL_READ 0x00000001 |
| 564 | #define HVC_POLL_WRITE 0x00000002 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | |
| 566 | static int hvc_poll(struct hvc_struct *hp) |
| 567 | { |
| 568 | struct tty_struct *tty; |
| 569 | int i, n, poll_mask = 0; |
| 570 | char buf[N_INBUF] __ALIGNED__; |
| 571 | unsigned long flags; |
| 572 | int read_total = 0; |
| 573 | |
| 574 | spin_lock_irqsave(&hp->lock, flags); |
| 575 | |
| 576 | /* Push pending writes */ |
| 577 | if (hp->n_outbuf > 0) |
| 578 | hvc_push(hp); |
Michael Ellerman | b537446 | 2006-06-07 17:10:03 +1000 | [diff] [blame] | 579 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 580 | /* Reschedule us if still some write pending */ |
| 581 | if (hp->n_outbuf > 0) |
| 582 | poll_mask |= HVC_POLL_WRITE; |
| 583 | |
| 584 | /* No tty attached, just skip */ |
| 585 | tty = hp->tty; |
| 586 | if (tty == NULL) |
| 587 | goto bail; |
| 588 | |
| 589 | /* Now check if we can get data (are we throttled ?) */ |
| 590 | if (test_bit(TTY_THROTTLED, &tty->flags)) |
| 591 | goto throttled; |
| 592 | |
| 593 | /* If we aren't interrupt driven and aren't throttled, we always |
| 594 | * request a reschedule |
| 595 | */ |
Rusty Russell | 8cd0ae0 | 2007-02-23 14:12:02 +1100 | [diff] [blame] | 596 | if (hp->irq == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | poll_mask |= HVC_POLL_READ; |
| 598 | |
| 599 | /* Read data if any */ |
| 600 | for (;;) { |
Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 601 | int count = tty_buffer_request_room(tty, N_INBUF); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | |
| 603 | /* If flip is full, just reschedule a later read */ |
| 604 | if (count == 0) { |
| 605 | poll_mask |= HVC_POLL_READ; |
| 606 | break; |
| 607 | } |
| 608 | |
Milton Miller | 030ffad | 2005-07-07 17:56:25 -0700 | [diff] [blame] | 609 | n = hp->ops->get_chars(hp->vtermno, buf, count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 610 | if (n <= 0) { |
| 611 | /* Hangup the tty when disconnected from host */ |
| 612 | if (n == -EPIPE) { |
| 613 | spin_unlock_irqrestore(&hp->lock, flags); |
| 614 | tty_hangup(tty); |
| 615 | spin_lock_irqsave(&hp->lock, flags); |
Ryan S. Arnold | 45d607e | 2006-03-27 21:25:16 +0200 | [diff] [blame] | 616 | } else if ( n == -EAGAIN ) { |
| 617 | /* |
| 618 | * Some back-ends can only ensure a certain min |
| 619 | * num of bytes read, which may be > 'count'. |
| 620 | * Let the tty clear the flip buff to make room. |
| 621 | */ |
| 622 | poll_mask |= HVC_POLL_READ; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 623 | } |
| 624 | break; |
| 625 | } |
| 626 | for (i = 0; i < n; ++i) { |
| 627 | #ifdef CONFIG_MAGIC_SYSRQ |
Milton Miller | 2b9e0ba | 2005-07-07 17:56:19 -0700 | [diff] [blame] | 628 | if (hp->index == hvc_con_driver.index) { |
| 629 | /* Handle the SysRq Hack */ |
| 630 | /* XXX should support a sequence */ |
| 631 | if (buf[i] == '\x0f') { /* ^O */ |
| 632 | sysrq_pressed = 1; |
| 633 | continue; |
| 634 | } else if (sysrq_pressed) { |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 635 | handle_sysrq(buf[i], tty); |
Milton Miller | 2b9e0ba | 2005-07-07 17:56:19 -0700 | [diff] [blame] | 636 | sysrq_pressed = 0; |
| 637 | continue; |
| 638 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 639 | } |
| 640 | #endif /* CONFIG_MAGIC_SYSRQ */ |
| 641 | tty_insert_flip_char(tty, buf[i], 0); |
| 642 | } |
| 643 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 644 | read_total += n; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 645 | } |
| 646 | throttled: |
| 647 | /* Wakeup write queue if necessary */ |
| 648 | if (hp->do_wakeup) { |
| 649 | hp->do_wakeup = 0; |
| 650 | tty_wakeup(tty); |
| 651 | } |
| 652 | bail: |
| 653 | spin_unlock_irqrestore(&hp->lock, flags); |
| 654 | |
Will Schmidt | b791072 | 2007-04-18 00:44:46 +1000 | [diff] [blame] | 655 | if (read_total) { |
| 656 | /* Activity is occurring, so reset the polling backoff value to |
| 657 | a minimum for performance. */ |
| 658 | timeout = MIN_TIMEOUT; |
| 659 | |
Michal Ostrowski | fb5c594 | 2006-02-18 09:29:59 -0500 | [diff] [blame] | 660 | tty_flip_buffer_push(tty); |
Will Schmidt | b791072 | 2007-04-18 00:44:46 +1000 | [diff] [blame] | 661 | } |
| 662 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 663 | return poll_mask; |
| 664 | } |
| 665 | |
| 666 | #if defined(CONFIG_XMON) && defined(CONFIG_SMP) |
| 667 | extern cpumask_t cpus_in_xmon; |
| 668 | #else |
| 669 | static const cpumask_t cpus_in_xmon = CPU_MASK_NONE; |
| 670 | #endif |
| 671 | |
| 672 | /* |
| 673 | * This kthread is either polling or interrupt driven. This is determined by |
| 674 | * calling hvc_poll() who determines whether a console adapter support |
| 675 | * interrupts. |
| 676 | */ |
| 677 | int khvcd(void *unused) |
| 678 | { |
| 679 | int poll_mask; |
| 680 | struct hvc_struct *hp; |
| 681 | |
| 682 | __set_current_state(TASK_RUNNING); |
| 683 | do { |
| 684 | poll_mask = 0; |
| 685 | hvc_kicked = 0; |
Andrew Morton | b64074e | 2006-09-16 12:15:38 -0700 | [diff] [blame] | 686 | try_to_freeze(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 687 | wmb(); |
| 688 | if (cpus_empty(cpus_in_xmon)) { |
| 689 | spin_lock(&hvc_structs_lock); |
| 690 | list_for_each_entry(hp, &hvc_structs, next) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 691 | poll_mask |= hvc_poll(hp); |
| 692 | } |
| 693 | spin_unlock(&hvc_structs_lock); |
| 694 | } else |
| 695 | poll_mask |= HVC_POLL_READ; |
| 696 | if (hvc_kicked) |
| 697 | continue; |
Michael Ellerman | b537446 | 2006-06-07 17:10:03 +1000 | [diff] [blame] | 698 | if (poll_mask & HVC_POLL_WRITE) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 699 | yield(); |
| 700 | continue; |
| 701 | } |
| 702 | set_current_state(TASK_INTERRUPTIBLE); |
| 703 | if (!hvc_kicked) { |
| 704 | if (poll_mask == 0) |
| 705 | schedule(); |
Will Schmidt | b791072 | 2007-04-18 00:44:46 +1000 | [diff] [blame] | 706 | else { |
| 707 | if (timeout < MAX_TIMEOUT) |
| 708 | timeout += (timeout >> 6) + 1; |
| 709 | |
| 710 | msleep_interruptible(timeout); |
| 711 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 712 | } |
| 713 | __set_current_state(TASK_RUNNING); |
| 714 | } while (!kthread_should_stop()); |
| 715 | |
| 716 | return 0; |
| 717 | } |
| 718 | |
Jeff Dike | b68e31d | 2006-10-02 02:17:18 -0700 | [diff] [blame] | 719 | static const struct tty_operations hvc_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 720 | .open = hvc_open, |
| 721 | .close = hvc_close, |
| 722 | .write = hvc_write, |
| 723 | .hangup = hvc_hangup, |
| 724 | .unthrottle = hvc_unthrottle, |
| 725 | .write_room = hvc_write_room, |
| 726 | .chars_in_buffer = hvc_chars_in_buffer, |
| 727 | }; |
| 728 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 729 | /* callback when the kboject ref count reaches zero. */ |
| 730 | static void destroy_hvc_struct(struct kobject *kobj) |
| 731 | { |
| 732 | struct hvc_struct *hp = container_of(kobj, struct hvc_struct, kobj); |
| 733 | unsigned long flags; |
| 734 | |
| 735 | spin_lock(&hvc_structs_lock); |
| 736 | |
| 737 | spin_lock_irqsave(&hp->lock, flags); |
| 738 | list_del(&(hp->next)); |
| 739 | spin_unlock_irqrestore(&hp->lock, flags); |
| 740 | |
| 741 | spin_unlock(&hvc_structs_lock); |
| 742 | |
| 743 | kfree(hp); |
| 744 | } |
| 745 | |
| 746 | static struct kobj_type hvc_kobj_type = { |
| 747 | .release = destroy_hvc_struct, |
| 748 | }; |
| 749 | |
Milton Miller | 030ffad | 2005-07-07 17:56:25 -0700 | [diff] [blame] | 750 | struct hvc_struct __devinit *hvc_alloc(uint32_t vtermno, int irq, |
Stephen Rothwell | 4e9e95a | 2006-07-13 18:53:32 +1000 | [diff] [blame] | 751 | struct hv_ops *ops, int outbuf_size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 752 | { |
| 753 | struct hvc_struct *hp; |
Milton Miller | 6f24808 | 2005-07-07 17:56:17 -0700 | [diff] [blame] | 754 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 755 | |
Stephen Rothwell | 4e9e95a | 2006-07-13 18:53:32 +1000 | [diff] [blame] | 756 | hp = kmalloc(ALIGN(sizeof(*hp), sizeof(long)) + outbuf_size, |
| 757 | GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 758 | if (!hp) |
Milton Miller | acad955 | 2005-07-07 17:56:24 -0700 | [diff] [blame] | 759 | return ERR_PTR(-ENOMEM); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 760 | |
| 761 | memset(hp, 0x00, sizeof(*hp)); |
Milton Miller | acad955 | 2005-07-07 17:56:24 -0700 | [diff] [blame] | 762 | |
| 763 | hp->vtermno = vtermno; |
| 764 | hp->irq = irq; |
Milton Miller | 030ffad | 2005-07-07 17:56:25 -0700 | [diff] [blame] | 765 | hp->ops = ops; |
Stephen Rothwell | 4e9e95a | 2006-07-13 18:53:32 +1000 | [diff] [blame] | 766 | hp->outbuf_size = outbuf_size; |
| 767 | hp->outbuf = &((char *)hp)[ALIGN(sizeof(*hp), sizeof(long))]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 768 | |
| 769 | kobject_init(&hp->kobj); |
| 770 | hp->kobj.ktype = &hvc_kobj_type; |
| 771 | |
| 772 | spin_lock_init(&hp->lock); |
| 773 | spin_lock(&hvc_structs_lock); |
Milton Miller | 6f24808 | 2005-07-07 17:56:17 -0700 | [diff] [blame] | 774 | |
| 775 | /* |
| 776 | * find index to use: |
| 777 | * see if this vterm id matches one registered for console. |
| 778 | */ |
| 779 | for (i=0; i < MAX_NR_HVC_CONSOLES; i++) |
Ryan S. Arnold | 45d607e | 2006-03-27 21:25:16 +0200 | [diff] [blame] | 780 | if (vtermnos[i] == hp->vtermno && |
| 781 | cons_ops[i] == hp->ops) |
Milton Miller | 6f24808 | 2005-07-07 17:56:17 -0700 | [diff] [blame] | 782 | break; |
| 783 | |
| 784 | /* no matching slot, just use a counter */ |
| 785 | if (i >= MAX_NR_HVC_CONSOLES) |
| 786 | i = ++last_hvc; |
| 787 | |
| 788 | hp->index = i; |
| 789 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 790 | list_add_tail(&(hp->next), &hvc_structs); |
| 791 | spin_unlock(&hvc_structs_lock); |
| 792 | |
Milton Miller | acad955 | 2005-07-07 17:56:24 -0700 | [diff] [blame] | 793 | return hp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 794 | } |
| 795 | |
Milton Miller | acad955 | 2005-07-07 17:56:24 -0700 | [diff] [blame] | 796 | int __devexit hvc_remove(struct hvc_struct *hp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 798 | unsigned long flags; |
| 799 | struct kobject *kobjp; |
| 800 | struct tty_struct *tty; |
| 801 | |
| 802 | spin_lock_irqsave(&hp->lock, flags); |
| 803 | tty = hp->tty; |
| 804 | kobjp = &hp->kobj; |
| 805 | |
| 806 | if (hp->index < MAX_NR_HVC_CONSOLES) |
| 807 | vtermnos[hp->index] = -1; |
| 808 | |
| 809 | /* Don't whack hp->irq because tty_hangup() will need to free the irq. */ |
| 810 | |
| 811 | spin_unlock_irqrestore(&hp->lock, flags); |
| 812 | |
| 813 | /* |
| 814 | * We 'put' the instance that was grabbed when the kobject instance |
will schmidt | c3ea692 | 2007-04-18 00:54:51 +1000 | [diff] [blame] | 815 | * was initialized using kobject_init(). Let the last holder of this |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 816 | * kobject cause it to be removed, which will probably be the tty_hangup |
| 817 | * below. |
| 818 | */ |
| 819 | kobject_put(kobjp); |
| 820 | |
| 821 | /* |
| 822 | * This function call will auto chain call hvc_hangup. The tty should |
| 823 | * always be valid at this time unless a simultaneous tty close already |
| 824 | * cleaned up the hvc_struct. |
| 825 | */ |
| 826 | if (tty) |
| 827 | tty_hangup(tty); |
| 828 | return 0; |
| 829 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 830 | |
| 831 | /* Driver initialization. Follow console initialization. This is where the TTY |
| 832 | * interfaces start to become available. */ |
Adrian Bunk | 4fa156e | 2007-05-08 00:24:24 -0700 | [diff] [blame^] | 833 | static int __init hvc_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 834 | { |
Michael Neuling | 55aab8c | 2006-03-25 17:30:00 +1100 | [diff] [blame] | 835 | struct tty_driver *drv; |
| 836 | |
Milton Miller | 5f6d9c0 | 2005-07-07 17:56:21 -0700 | [diff] [blame] | 837 | /* We need more than hvc_count adapters due to hotplug additions. */ |
Michael Neuling | 55aab8c | 2006-03-25 17:30:00 +1100 | [diff] [blame] | 838 | drv = alloc_tty_driver(HVC_ALLOC_TTY_ADAPTERS); |
| 839 | if (!drv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 840 | return -ENOMEM; |
| 841 | |
Michael Neuling | 55aab8c | 2006-03-25 17:30:00 +1100 | [diff] [blame] | 842 | drv->owner = THIS_MODULE; |
Michael Neuling | 55aab8c | 2006-03-25 17:30:00 +1100 | [diff] [blame] | 843 | drv->driver_name = "hvc"; |
| 844 | drv->name = "hvc"; |
| 845 | drv->major = HVC_MAJOR; |
| 846 | drv->minor_start = HVC_MINOR; |
| 847 | drv->type = TTY_DRIVER_TYPE_SYSTEM; |
| 848 | drv->init_termios = tty_std_termios; |
| 849 | drv->flags = TTY_DRIVER_REAL_RAW; |
| 850 | tty_set_operations(drv, &hvc_ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 851 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 852 | /* Always start the kthread because there can be hotplug vty adapters |
| 853 | * added later. */ |
| 854 | hvc_task = kthread_run(khvcd, NULL, "khvcd"); |
| 855 | if (IS_ERR(hvc_task)) { |
| 856 | panic("Couldn't create kthread for console.\n"); |
Michael Neuling | 55aab8c | 2006-03-25 17:30:00 +1100 | [diff] [blame] | 857 | put_tty_driver(drv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 858 | return -EIO; |
| 859 | } |
| 860 | |
Michael Neuling | 55aab8c | 2006-03-25 17:30:00 +1100 | [diff] [blame] | 861 | if (tty_register_driver(drv)) |
Anton Blanchard | ef4cbee | 2005-09-14 14:19:18 -0700 | [diff] [blame] | 862 | panic("Couldn't register hvc console driver\n"); |
| 863 | |
Michael Neuling | 55aab8c | 2006-03-25 17:30:00 +1100 | [diff] [blame] | 864 | mb(); |
| 865 | hvc_driver = drv; |
Milton Miller | acad955 | 2005-07-07 17:56:24 -0700 | [diff] [blame] | 866 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 867 | } |
Milton Miller | 837dcfa | 2005-07-07 17:56:16 -0700 | [diff] [blame] | 868 | module_init(hvc_init); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 869 | |
will schmidt | c3ea692 | 2007-04-18 00:54:51 +1000 | [diff] [blame] | 870 | /* This isn't particularly necessary due to this being a console driver |
Milton Miller | 320da0d | 2005-07-07 17:56:20 -0700 | [diff] [blame] | 871 | * but it is nice to be thorough. |
| 872 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 873 | static void __exit hvc_exit(void) |
| 874 | { |
| 875 | kthread_stop(hvc_task); |
| 876 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 877 | tty_unregister_driver(hvc_driver); |
| 878 | /* return tty_struct instances allocated in hvc_init(). */ |
| 879 | put_tty_driver(hvc_driver); |
Milton Miller | 320da0d | 2005-07-07 17:56:20 -0700 | [diff] [blame] | 880 | unregister_console(&hvc_con_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 881 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 882 | module_exit(hvc_exit); |