Milton Miller | acad955 | 2005-07-07 17:56:24 -0700 | [diff] [blame] | 1 | /* |
| 2 | * vio driver interface to hvc_console.c |
| 3 | * |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 4 | * This code was moved here to allow the remaining code to be reused as a |
Milton Miller | acad955 | 2005-07-07 17:56:24 -0700 | [diff] [blame] | 5 | * generic polling mode with semi-reliable transport driver core to the |
| 6 | * console and tty subsystems. |
| 7 | * |
| 8 | * |
| 9 | * Copyright (C) 2001 Anton Blanchard <anton@au.ibm.com>, IBM |
| 10 | * Copyright (C) 2001 Paul Mackerras <paulus@au.ibm.com>, IBM |
| 11 | * Copyright (C) 2004 Benjamin Herrenschmidt <benh@kernel.crashing.org>, IBM Corp. |
| 12 | * Copyright (C) 2004 IBM Corporation |
| 13 | * |
| 14 | * Additional Author(s): |
| 15 | * Ryan S. Arnold <rsa@us.ibm.com> |
| 16 | * |
| 17 | * This program is free software; you can redistribute it and/or modify |
| 18 | * it under the terms of the GNU General Public License as published by |
| 19 | * the Free Software Foundation; either version 2 of the License, or |
| 20 | * (at your option) any later version. |
| 21 | * |
| 22 | * This program is distributed in the hope that it will be useful, |
| 23 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 24 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 25 | * GNU General Public License for more details. |
| 26 | * |
| 27 | * You should have received a copy of the GNU General Public License |
| 28 | * along with this program; if not, write to the Free Software |
| 29 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
Benjamin Herrenschmidt | 4d2bb3f | 2011-05-12 13:46:38 +1000 | [diff] [blame] | 30 | * |
| 31 | * TODO: |
| 32 | * |
| 33 | * - handle error in sending hvsi protocol packets |
| 34 | * - retry nego on subsequent sends ? |
Milton Miller | acad955 | 2005-07-07 17:56:24 -0700 | [diff] [blame] | 35 | */ |
| 36 | |
Benjamin Herrenschmidt | 4d2bb3f | 2011-05-12 13:46:38 +1000 | [diff] [blame] | 37 | #undef DEBUG |
| 38 | |
Milton Miller | acad955 | 2005-07-07 17:56:24 -0700 | [diff] [blame] | 39 | #include <linux/types.h> |
| 40 | #include <linux/init.h> |
Benjamin Herrenschmidt | 4d2bb3f | 2011-05-12 13:46:38 +1000 | [diff] [blame] | 41 | #include <linux/delay.h> |
| 42 | #include <linux/slab.h> |
| 43 | #include <linux/console.h> |
Paul Gortmaker | 578b9ce | 2011-05-27 16:14:23 -0400 | [diff] [blame] | 44 | #include <linux/module.h> |
Ryan S. Arnold | 45d607e | 2006-03-27 21:25:16 +0200 | [diff] [blame] | 45 | |
Milton Miller | acad955 | 2005-07-07 17:56:24 -0700 | [diff] [blame] | 46 | #include <asm/hvconsole.h> |
| 47 | #include <asm/vio.h> |
| 48 | #include <asm/prom.h> |
Stephen Rothwell | de0138d | 2006-09-25 13:30:51 +1000 | [diff] [blame] | 49 | #include <asm/firmware.h> |
Benjamin Herrenschmidt | 4d2bb3f | 2011-05-12 13:46:38 +1000 | [diff] [blame] | 50 | #include <asm/hvsi.h> |
| 51 | #include <asm/udbg.h> |
Milton Miller | acad955 | 2005-07-07 17:56:24 -0700 | [diff] [blame] | 52 | |
Ryan S. Arnold | 45d607e | 2006-03-27 21:25:16 +0200 | [diff] [blame] | 53 | #include "hvc_console.h" |
| 54 | |
Joe Perches | 5a71c61 | 2010-09-13 09:47:42 +0000 | [diff] [blame] | 55 | static const char hvc_driver_name[] = "hvc_console"; |
Milton Miller | acad955 | 2005-07-07 17:56:24 -0700 | [diff] [blame] | 56 | |
| 57 | static struct vio_device_id hvc_driver_table[] __devinitdata = { |
| 58 | {"serial", "hvterm1"}, |
Benjamin Herrenschmidt | 4d2bb3f | 2011-05-12 13:46:38 +1000 | [diff] [blame] | 59 | #ifndef HVC_OLD_HVSI |
| 60 | {"serial", "hvterm-protocol"}, |
| 61 | #endif |
Stephen Rothwell | fb120da | 2005-08-17 16:42:59 +1000 | [diff] [blame] | 62 | { "", "" } |
Milton Miller | acad955 | 2005-07-07 17:56:24 -0700 | [diff] [blame] | 63 | }; |
| 64 | MODULE_DEVICE_TABLE(vio, hvc_driver_table); |
| 65 | |
Benjamin Herrenschmidt | 4d2bb3f | 2011-05-12 13:46:38 +1000 | [diff] [blame] | 66 | typedef enum hv_protocol { |
| 67 | HV_PROTOCOL_RAW, |
| 68 | HV_PROTOCOL_HVSI |
| 69 | } hv_protocol_t; |
| 70 | |
Benjamin Herrenschmidt | 4d2bb3f | 2011-05-12 13:46:38 +1000 | [diff] [blame] | 71 | struct hvterm_priv { |
Benjamin Herrenschmidt | 17bdc6c | 2011-04-29 16:44:24 +1000 | [diff] [blame] | 72 | u32 termno; /* HV term number */ |
| 73 | hv_protocol_t proto; /* Raw data or HVSI packets */ |
| 74 | struct hvsi_priv hvsi; /* HVSI specific data */ |
Anton Blanchard | 19df9ab | 2011-07-12 19:19:57 +0000 | [diff] [blame] | 75 | spinlock_t buf_lock; |
| 76 | char buf[SIZE_VIO_GET_CHARS]; |
| 77 | int left; |
| 78 | int offset; |
Benjamin Herrenschmidt | 4d2bb3f | 2011-05-12 13:46:38 +1000 | [diff] [blame] | 79 | }; |
| 80 | static struct hvterm_priv *hvterm_privs[MAX_NR_HVC_CONSOLES]; |
Benjamin Herrenschmidt | 4d2bb3f | 2011-05-12 13:46:38 +1000 | [diff] [blame] | 81 | /* For early boot console */ |
| 82 | static struct hvterm_priv hvterm_priv0; |
| 83 | |
| 84 | static int hvterm_raw_get_chars(uint32_t vtermno, char *buf, int count) |
Milton Miller | 70b234a | 2005-07-07 17:56:26 -0700 | [diff] [blame] | 85 | { |
Benjamin Herrenschmidt | 4d2bb3f | 2011-05-12 13:46:38 +1000 | [diff] [blame] | 86 | struct hvterm_priv *pv = hvterm_privs[vtermno]; |
Anton Blanchard | 19df9ab | 2011-07-12 19:19:57 +0000 | [diff] [blame] | 87 | unsigned long i; |
| 88 | unsigned long flags; |
| 89 | int got; |
Benjamin Herrenschmidt | 4d2bb3f | 2011-05-12 13:46:38 +1000 | [diff] [blame] | 90 | |
| 91 | if (WARN_ON(!pv)) |
| 92 | return 0; |
Milton Miller | 70b234a | 2005-07-07 17:56:26 -0700 | [diff] [blame] | 93 | |
Anton Blanchard | 19df9ab | 2011-07-12 19:19:57 +0000 | [diff] [blame] | 94 | spin_lock_irqsave(&pv->buf_lock, flags); |
Ryan S. Arnold | 45d607e | 2006-03-27 21:25:16 +0200 | [diff] [blame] | 95 | |
Anton Blanchard | 19df9ab | 2011-07-12 19:19:57 +0000 | [diff] [blame] | 96 | if (pv->left == 0) { |
| 97 | pv->offset = 0; |
| 98 | pv->left = hvc_get_chars(pv->termno, pv->buf, count); |
Milton Miller | 70b234a | 2005-07-07 17:56:26 -0700 | [diff] [blame] | 99 | |
Anton Blanchard | 19df9ab | 2011-07-12 19:19:57 +0000 | [diff] [blame] | 100 | /* |
| 101 | * Work around a HV bug where it gives us a null |
| 102 | * after every \r. -- paulus |
| 103 | */ |
| 104 | for (i = 1; i < pv->left; ++i) { |
| 105 | if (pv->buf[i] == 0 && pv->buf[i-1] == '\r') { |
| 106 | --pv->left; |
| 107 | if (i < pv->left) { |
| 108 | memmove(&pv->buf[i], &pv->buf[i+1], |
| 109 | pv->left - i); |
| 110 | } |
| 111 | } |
Milton Miller | 70b234a | 2005-07-07 17:56:26 -0700 | [diff] [blame] | 112 | } |
| 113 | } |
Anton Blanchard | 19df9ab | 2011-07-12 19:19:57 +0000 | [diff] [blame] | 114 | |
| 115 | got = min(count, pv->left); |
| 116 | memcpy(buf, &pv->buf[pv->offset], got); |
| 117 | pv->offset += got; |
| 118 | pv->left -= got; |
| 119 | |
| 120 | spin_unlock_irqrestore(&pv->buf_lock, flags); |
| 121 | |
Milton Miller | 70b234a | 2005-07-07 17:56:26 -0700 | [diff] [blame] | 122 | return got; |
| 123 | } |
| 124 | |
Benjamin Herrenschmidt | 4d2bb3f | 2011-05-12 13:46:38 +1000 | [diff] [blame] | 125 | static int hvterm_raw_put_chars(uint32_t vtermno, const char *buf, int count) |
| 126 | { |
| 127 | struct hvterm_priv *pv = hvterm_privs[vtermno]; |
| 128 | |
| 129 | if (WARN_ON(!pv)) |
| 130 | return 0; |
| 131 | |
| 132 | return hvc_put_chars(pv->termno, buf, count); |
| 133 | } |
| 134 | |
| 135 | static const struct hv_ops hvterm_raw_ops = { |
| 136 | .get_chars = hvterm_raw_get_chars, |
| 137 | .put_chars = hvterm_raw_put_chars, |
Christian Borntraeger | 611e097 | 2008-06-20 15:24:08 +0200 | [diff] [blame] | 138 | .notifier_add = notifier_add_irq, |
| 139 | .notifier_del = notifier_del_irq, |
Hendrik Brueckner | fc362e2 | 2008-10-13 23:12:48 +0000 | [diff] [blame] | 140 | .notifier_hangup = notifier_hangup_irq, |
Milton Miller | 030ffad | 2005-07-07 17:56:25 -0700 | [diff] [blame] | 141 | }; |
| 142 | |
Benjamin Herrenschmidt | 4d2bb3f | 2011-05-12 13:46:38 +1000 | [diff] [blame] | 143 | static int hvterm_hvsi_get_chars(uint32_t vtermno, char *buf, int count) |
| 144 | { |
| 145 | struct hvterm_priv *pv = hvterm_privs[vtermno]; |
Benjamin Herrenschmidt | 4d2bb3f | 2011-05-12 13:46:38 +1000 | [diff] [blame] | 146 | |
| 147 | if (WARN_ON(!pv)) |
| 148 | return 0; |
| 149 | |
Benjamin Herrenschmidt | 87fa35d | 2011-07-01 13:10:21 +1000 | [diff] [blame] | 150 | return hvsilib_get_chars(&pv->hvsi, buf, count); |
Benjamin Herrenschmidt | 4d2bb3f | 2011-05-12 13:46:38 +1000 | [diff] [blame] | 151 | } |
| 152 | |
| 153 | static int hvterm_hvsi_put_chars(uint32_t vtermno, const char *buf, int count) |
| 154 | { |
| 155 | struct hvterm_priv *pv = hvterm_privs[vtermno]; |
Benjamin Herrenschmidt | 4d2bb3f | 2011-05-12 13:46:38 +1000 | [diff] [blame] | 156 | |
| 157 | if (WARN_ON(!pv)) |
| 158 | return 0; |
| 159 | |
Benjamin Herrenschmidt | 87fa35d | 2011-07-01 13:10:21 +1000 | [diff] [blame] | 160 | return hvsilib_put_chars(&pv->hvsi, buf, count); |
Benjamin Herrenschmidt | 4d2bb3f | 2011-05-12 13:46:38 +1000 | [diff] [blame] | 161 | } |
| 162 | |
| 163 | static int hvterm_hvsi_open(struct hvc_struct *hp, int data) |
| 164 | { |
| 165 | struct hvterm_priv *pv = hvterm_privs[hp->vtermno]; |
| 166 | int rc; |
| 167 | |
| 168 | pr_devel("HVSI@%x: open !\n", pv->termno); |
| 169 | |
| 170 | rc = notifier_add_irq(hp, data); |
| 171 | if (rc) |
| 172 | return rc; |
| 173 | |
Benjamin Herrenschmidt | 87fa35d | 2011-07-01 13:10:21 +1000 | [diff] [blame] | 174 | return hvsilib_open(&pv->hvsi, hp); |
Benjamin Herrenschmidt | 4d2bb3f | 2011-05-12 13:46:38 +1000 | [diff] [blame] | 175 | } |
| 176 | |
| 177 | static void hvterm_hvsi_close(struct hvc_struct *hp, int data) |
| 178 | { |
| 179 | struct hvterm_priv *pv = hvterm_privs[hp->vtermno]; |
| 180 | |
Benjamin Herrenschmidt | 17bdc6c | 2011-04-29 16:44:24 +1000 | [diff] [blame] | 181 | pr_devel("HVSI@%x: do close !\n", pv->termno); |
Benjamin Herrenschmidt | 4d2bb3f | 2011-05-12 13:46:38 +1000 | [diff] [blame] | 182 | |
Benjamin Herrenschmidt | 87fa35d | 2011-07-01 13:10:21 +1000 | [diff] [blame] | 183 | hvsilib_close(&pv->hvsi, hp); |
Benjamin Herrenschmidt | 4d2bb3f | 2011-05-12 13:46:38 +1000 | [diff] [blame] | 184 | |
| 185 | notifier_del_irq(hp, data); |
| 186 | } |
| 187 | |
| 188 | void hvterm_hvsi_hangup(struct hvc_struct *hp, int data) |
| 189 | { |
| 190 | struct hvterm_priv *pv = hvterm_privs[hp->vtermno]; |
| 191 | |
Benjamin Herrenschmidt | 17bdc6c | 2011-04-29 16:44:24 +1000 | [diff] [blame] | 192 | pr_devel("HVSI@%x: do hangup !\n", pv->termno); |
Benjamin Herrenschmidt | 4d2bb3f | 2011-05-12 13:46:38 +1000 | [diff] [blame] | 193 | |
Benjamin Herrenschmidt | 87fa35d | 2011-07-01 13:10:21 +1000 | [diff] [blame] | 194 | hvsilib_close(&pv->hvsi, hp); |
Benjamin Herrenschmidt | 4d2bb3f | 2011-05-12 13:46:38 +1000 | [diff] [blame] | 195 | |
| 196 | notifier_hangup_irq(hp, data); |
| 197 | } |
| 198 | |
| 199 | static int hvterm_hvsi_tiocmget(struct hvc_struct *hp) |
| 200 | { |
| 201 | struct hvterm_priv *pv = hvterm_privs[hp->vtermno]; |
| 202 | |
| 203 | if (!pv) |
| 204 | return -EINVAL; |
Benjamin Herrenschmidt | 17bdc6c | 2011-04-29 16:44:24 +1000 | [diff] [blame] | 205 | return pv->hvsi.mctrl; |
Benjamin Herrenschmidt | 4d2bb3f | 2011-05-12 13:46:38 +1000 | [diff] [blame] | 206 | } |
| 207 | |
| 208 | static int hvterm_hvsi_tiocmset(struct hvc_struct *hp, unsigned int set, |
| 209 | unsigned int clear) |
| 210 | { |
| 211 | struct hvterm_priv *pv = hvterm_privs[hp->vtermno]; |
| 212 | |
| 213 | pr_devel("HVSI@%x: Set modem control, set=%x,clr=%x\n", |
| 214 | pv->termno, set, clear); |
| 215 | |
| 216 | if (set & TIOCM_DTR) |
Benjamin Herrenschmidt | 87fa35d | 2011-07-01 13:10:21 +1000 | [diff] [blame] | 217 | hvsilib_write_mctrl(&pv->hvsi, 1); |
Benjamin Herrenschmidt | 4d2bb3f | 2011-05-12 13:46:38 +1000 | [diff] [blame] | 218 | else if (clear & TIOCM_DTR) |
Benjamin Herrenschmidt | 87fa35d | 2011-07-01 13:10:21 +1000 | [diff] [blame] | 219 | hvsilib_write_mctrl(&pv->hvsi, 0); |
Benjamin Herrenschmidt | 4d2bb3f | 2011-05-12 13:46:38 +1000 | [diff] [blame] | 220 | |
| 221 | return 0; |
| 222 | } |
| 223 | |
| 224 | static const struct hv_ops hvterm_hvsi_ops = { |
| 225 | .get_chars = hvterm_hvsi_get_chars, |
| 226 | .put_chars = hvterm_hvsi_put_chars, |
| 227 | .notifier_add = hvterm_hvsi_open, |
| 228 | .notifier_del = hvterm_hvsi_close, |
| 229 | .notifier_hangup = hvterm_hvsi_hangup, |
| 230 | .tiocmget = hvterm_hvsi_tiocmget, |
| 231 | .tiocmset = hvterm_hvsi_tiocmset, |
| 232 | }; |
| 233 | |
| 234 | static int __devinit hvc_vio_probe(struct vio_dev *vdev, |
| 235 | const struct vio_device_id *id) |
| 236 | { |
| 237 | const struct hv_ops *ops; |
Milton Miller | acad955 | 2005-07-07 17:56:24 -0700 | [diff] [blame] | 238 | struct hvc_struct *hp; |
Benjamin Herrenschmidt | 4d2bb3f | 2011-05-12 13:46:38 +1000 | [diff] [blame] | 239 | struct hvterm_priv *pv; |
| 240 | hv_protocol_t proto; |
| 241 | int i, termno = -1; |
Milton Miller | acad955 | 2005-07-07 17:56:24 -0700 | [diff] [blame] | 242 | |
| 243 | /* probed with invalid parameters. */ |
| 244 | if (!vdev || !id) |
| 245 | return -EPERM; |
| 246 | |
Benjamin Herrenschmidt | 4d2bb3f | 2011-05-12 13:46:38 +1000 | [diff] [blame] | 247 | if (of_device_is_compatible(vdev->dev.of_node, "hvterm1")) { |
| 248 | proto = HV_PROTOCOL_RAW; |
| 249 | ops = &hvterm_raw_ops; |
| 250 | } else if (of_device_is_compatible(vdev->dev.of_node, "hvterm-protocol")) { |
| 251 | proto = HV_PROTOCOL_HVSI; |
| 252 | ops = &hvterm_hvsi_ops; |
| 253 | } else { |
| 254 | pr_err("hvc_vio: Unkown protocol for %s\n", vdev->dev.of_node->full_name); |
| 255 | return -ENXIO; |
| 256 | } |
| 257 | |
| 258 | pr_devel("hvc_vio_probe() device %s, using %s protocol\n", |
| 259 | vdev->dev.of_node->full_name, |
| 260 | proto == HV_PROTOCOL_RAW ? "raw" : "hvsi"); |
| 261 | |
| 262 | /* Is it our boot one ? */ |
| 263 | if (hvterm_privs[0] == &hvterm_priv0 && |
| 264 | vdev->unit_address == hvterm_priv0.termno) { |
| 265 | pv = hvterm_privs[0]; |
| 266 | termno = 0; |
| 267 | pr_devel("->boot console, using termno 0\n"); |
| 268 | } |
| 269 | /* nope, allocate a new one */ |
| 270 | else { |
| 271 | for (i = 0; i < MAX_NR_HVC_CONSOLES && termno < 0; i++) |
| 272 | if (!hvterm_privs[i]) |
| 273 | termno = i; |
| 274 | pr_devel("->non-boot console, using termno %d\n", termno); |
| 275 | if (termno < 0) |
| 276 | return -ENODEV; |
| 277 | pv = kzalloc(sizeof(struct hvterm_priv), GFP_KERNEL); |
| 278 | if (!pv) |
| 279 | return -ENOMEM; |
| 280 | pv->termno = vdev->unit_address; |
| 281 | pv->proto = proto; |
Anton Blanchard | 19df9ab | 2011-07-12 19:19:57 +0000 | [diff] [blame] | 282 | spin_lock_init(&pv->buf_lock); |
Benjamin Herrenschmidt | 4d2bb3f | 2011-05-12 13:46:38 +1000 | [diff] [blame] | 283 | hvterm_privs[termno] = pv; |
Benjamin Herrenschmidt | 87fa35d | 2011-07-01 13:10:21 +1000 | [diff] [blame] | 284 | hvsilib_init(&pv->hvsi, hvc_get_chars, hvc_put_chars, |
| 285 | pv->termno, 0); |
Benjamin Herrenschmidt | 4d2bb3f | 2011-05-12 13:46:38 +1000 | [diff] [blame] | 286 | } |
| 287 | |
| 288 | hp = hvc_alloc(termno, vdev->irq, ops, MAX_VIO_PUT_CHARS); |
Milton Miller | acad955 | 2005-07-07 17:56:24 -0700 | [diff] [blame] | 289 | if (IS_ERR(hp)) |
| 290 | return PTR_ERR(hp); |
| 291 | dev_set_drvdata(&vdev->dev, hp); |
| 292 | |
| 293 | return 0; |
| 294 | } |
| 295 | |
| 296 | static int __devexit hvc_vio_remove(struct vio_dev *vdev) |
| 297 | { |
| 298 | struct hvc_struct *hp = dev_get_drvdata(&vdev->dev); |
Benjamin Herrenschmidt | 4d2bb3f | 2011-05-12 13:46:38 +1000 | [diff] [blame] | 299 | int rc, termno; |
Milton Miller | acad955 | 2005-07-07 17:56:24 -0700 | [diff] [blame] | 300 | |
Benjamin Herrenschmidt | 4d2bb3f | 2011-05-12 13:46:38 +1000 | [diff] [blame] | 301 | termno = hp->vtermno; |
| 302 | rc = hvc_remove(hp); |
| 303 | if (rc == 0) { |
| 304 | if (hvterm_privs[termno] != &hvterm_priv0) |
| 305 | kfree(hvterm_privs[termno]); |
| 306 | hvterm_privs[termno] = NULL; |
| 307 | } |
| 308 | return rc; |
Milton Miller | acad955 | 2005-07-07 17:56:24 -0700 | [diff] [blame] | 309 | } |
| 310 | |
| 311 | static struct vio_driver hvc_vio_driver = { |
Milton Miller | acad955 | 2005-07-07 17:56:24 -0700 | [diff] [blame] | 312 | .id_table = hvc_driver_table, |
| 313 | .probe = hvc_vio_probe, |
Mike Frysinger | e364ca9 | 2009-06-10 09:42:30 +0000 | [diff] [blame] | 314 | .remove = __devexit_p(hvc_vio_remove), |
Milton Miller | acad955 | 2005-07-07 17:56:24 -0700 | [diff] [blame] | 315 | .driver = { |
Stephen Rothwell | 6fdf539 | 2005-10-24 14:53:21 +1000 | [diff] [blame] | 316 | .name = hvc_driver_name, |
Milton Miller | acad955 | 2005-07-07 17:56:24 -0700 | [diff] [blame] | 317 | .owner = THIS_MODULE, |
| 318 | } |
| 319 | }; |
| 320 | |
Peter Huewe | 948c28f | 2009-08-20 11:14:06 +0000 | [diff] [blame] | 321 | static int __init hvc_vio_init(void) |
Milton Miller | acad955 | 2005-07-07 17:56:24 -0700 | [diff] [blame] | 322 | { |
| 323 | int rc; |
| 324 | |
Stephen Rothwell | de0138d | 2006-09-25 13:30:51 +1000 | [diff] [blame] | 325 | if (firmware_has_feature(FW_FEATURE_ISERIES)) |
| 326 | return -EIO; |
| 327 | |
Milton Miller | acad955 | 2005-07-07 17:56:24 -0700 | [diff] [blame] | 328 | /* Register as a vio device to receive callbacks */ |
| 329 | rc = vio_register_driver(&hvc_vio_driver); |
| 330 | |
| 331 | return rc; |
| 332 | } |
| 333 | module_init(hvc_vio_init); /* after drivers/char/hvc_console.c */ |
| 334 | |
Peter Huewe | 948c28f | 2009-08-20 11:14:06 +0000 | [diff] [blame] | 335 | static void __exit hvc_vio_exit(void) |
Milton Miller | acad955 | 2005-07-07 17:56:24 -0700 | [diff] [blame] | 336 | { |
| 337 | vio_unregister_driver(&hvc_vio_driver); |
| 338 | } |
| 339 | module_exit(hvc_vio_exit); |
| 340 | |
Benjamin Herrenschmidt | 4d2bb3f | 2011-05-12 13:46:38 +1000 | [diff] [blame] | 341 | static void udbg_hvc_putc(char c) |
Milton Miller | acad955 | 2005-07-07 17:56:24 -0700 | [diff] [blame] | 342 | { |
Benjamin Herrenschmidt | 4d2bb3f | 2011-05-12 13:46:38 +1000 | [diff] [blame] | 343 | int count = -1; |
Milton Miller | acad955 | 2005-07-07 17:56:24 -0700 | [diff] [blame] | 344 | |
Benjamin Herrenschmidt | 4d2bb3f | 2011-05-12 13:46:38 +1000 | [diff] [blame] | 345 | if (c == '\n') |
| 346 | udbg_hvc_putc('\r'); |
Milton Miller | acad955 | 2005-07-07 17:56:24 -0700 | [diff] [blame] | 347 | |
Benjamin Herrenschmidt | 4d2bb3f | 2011-05-12 13:46:38 +1000 | [diff] [blame] | 348 | do { |
| 349 | switch(hvterm_priv0.proto) { |
| 350 | case HV_PROTOCOL_RAW: |
| 351 | count = hvterm_raw_put_chars(0, &c, 1); |
| 352 | break; |
| 353 | case HV_PROTOCOL_HVSI: |
| 354 | count = hvterm_hvsi_put_chars(0, &c, 1); |
Milton Miller | acad955 | 2005-07-07 17:56:24 -0700 | [diff] [blame] | 355 | break; |
Nicolas Palix | dc42149 | 2008-12-02 03:38:55 +0000 | [diff] [blame] | 356 | } |
Benjamin Herrenschmidt | 4d2bb3f | 2011-05-12 13:46:38 +1000 | [diff] [blame] | 357 | } while(count == 0); |
| 358 | } |
Milton Miller | acad955 | 2005-07-07 17:56:24 -0700 | [diff] [blame] | 359 | |
Benjamin Herrenschmidt | 4d2bb3f | 2011-05-12 13:46:38 +1000 | [diff] [blame] | 360 | static int udbg_hvc_getc_poll(void) |
| 361 | { |
| 362 | int rc = 0; |
| 363 | char c; |
Milton Miller | acad955 | 2005-07-07 17:56:24 -0700 | [diff] [blame] | 364 | |
Benjamin Herrenschmidt | 4d2bb3f | 2011-05-12 13:46:38 +1000 | [diff] [blame] | 365 | switch(hvterm_priv0.proto) { |
| 366 | case HV_PROTOCOL_RAW: |
| 367 | rc = hvterm_raw_get_chars(0, &c, 1); |
| 368 | break; |
| 369 | case HV_PROTOCOL_HVSI: |
| 370 | rc = hvterm_hvsi_get_chars(0, &c, 1); |
| 371 | break; |
| 372 | } |
| 373 | if (!rc) |
| 374 | return -1; |
| 375 | return c; |
| 376 | } |
| 377 | |
| 378 | static int udbg_hvc_getc(void) |
| 379 | { |
| 380 | int ch; |
| 381 | for (;;) { |
| 382 | ch = udbg_hvc_getc_poll(); |
| 383 | if (ch == -1) { |
| 384 | /* This shouldn't be needed...but... */ |
| 385 | volatile unsigned long delay; |
| 386 | for (delay=0; delay < 2000000; delay++) |
| 387 | ; |
| 388 | } else { |
| 389 | return ch; |
Milton Miller | acad955 | 2005-07-07 17:56:24 -0700 | [diff] [blame] | 390 | } |
| 391 | } |
Milton Miller | acad955 | 2005-07-07 17:56:24 -0700 | [diff] [blame] | 392 | } |
Benjamin Herrenschmidt | 4d2bb3f | 2011-05-12 13:46:38 +1000 | [diff] [blame] | 393 | |
| 394 | void __init hvc_vio_init_early(void) |
| 395 | { |
| 396 | struct device_node *stdout_node; |
| 397 | const u32 *termno; |
| 398 | const char *name; |
| 399 | const struct hv_ops *ops; |
| 400 | |
| 401 | /* find the boot console from /chosen/stdout */ |
| 402 | if (!of_chosen) |
| 403 | return; |
| 404 | name = of_get_property(of_chosen, "linux,stdout-path", NULL); |
| 405 | if (name == NULL) |
| 406 | return; |
| 407 | stdout_node = of_find_node_by_path(name); |
| 408 | if (!stdout_node) |
| 409 | return; |
| 410 | name = of_get_property(stdout_node, "name", NULL); |
| 411 | if (!name) { |
| 412 | printk(KERN_WARNING "stdout node missing 'name' property!\n"); |
| 413 | goto out; |
| 414 | } |
| 415 | |
| 416 | /* Check if it's a virtual terminal */ |
| 417 | if (strncmp(name, "vty", 3) != 0) |
| 418 | goto out; |
| 419 | termno = of_get_property(stdout_node, "reg", NULL); |
| 420 | if (termno == NULL) |
| 421 | goto out; |
| 422 | hvterm_priv0.termno = *termno; |
Anton Blanchard | 19df9ab | 2011-07-12 19:19:57 +0000 | [diff] [blame] | 423 | spin_lock_init(&hvterm_priv0.buf_lock); |
Benjamin Herrenschmidt | 4d2bb3f | 2011-05-12 13:46:38 +1000 | [diff] [blame] | 424 | hvterm_privs[0] = &hvterm_priv0; |
| 425 | |
| 426 | /* Check the protocol */ |
| 427 | if (of_device_is_compatible(stdout_node, "hvterm1")) { |
| 428 | hvterm_priv0.proto = HV_PROTOCOL_RAW; |
| 429 | ops = &hvterm_raw_ops; |
| 430 | } |
| 431 | else if (of_device_is_compatible(stdout_node, "hvterm-protocol")) { |
| 432 | hvterm_priv0.proto = HV_PROTOCOL_HVSI; |
| 433 | ops = &hvterm_hvsi_ops; |
Benjamin Herrenschmidt | 87fa35d | 2011-07-01 13:10:21 +1000 | [diff] [blame] | 434 | hvsilib_init(&hvterm_priv0.hvsi, hvc_get_chars, hvc_put_chars, |
| 435 | hvterm_priv0.termno, 1); |
Benjamin Herrenschmidt | 4d2bb3f | 2011-05-12 13:46:38 +1000 | [diff] [blame] | 436 | /* HVSI, perform the handshake now */ |
Benjamin Herrenschmidt | 87fa35d | 2011-07-01 13:10:21 +1000 | [diff] [blame] | 437 | hvsilib_establish(&hvterm_priv0.hvsi); |
Benjamin Herrenschmidt | 4d2bb3f | 2011-05-12 13:46:38 +1000 | [diff] [blame] | 438 | } else |
| 439 | goto out; |
| 440 | udbg_putc = udbg_hvc_putc; |
| 441 | udbg_getc = udbg_hvc_getc; |
| 442 | udbg_getc_poll = udbg_hvc_getc_poll; |
| 443 | #ifdef HVC_OLD_HVSI |
| 444 | /* When using the old HVSI driver don't register the HVC |
| 445 | * backend for HVSI, only do udbg |
| 446 | */ |
| 447 | if (hvterm_priv0.proto == HV_PROTOCOL_HVSI) |
| 448 | goto out; |
| 449 | #endif |
| 450 | add_preferred_console("hvc", 0, NULL); |
| 451 | hvc_instantiate(0, 0, ops); |
| 452 | out: |
| 453 | of_node_put(stdout_node); |
| 454 | } |
| 455 | |
| 456 | /* call this from early_init() for a working debug console on |
| 457 | * vterm capable LPAR machines |
| 458 | */ |
| 459 | #ifdef CONFIG_PPC_EARLY_DEBUG_LPAR |
| 460 | void __init udbg_init_debug_lpar(void) |
| 461 | { |
| 462 | hvterm_privs[0] = &hvterm_priv0; |
| 463 | hvterm_priv0.termno = 0; |
| 464 | hvterm_priv0.proto = HV_PROTOCOL_RAW; |
Benjamin Herrenschmidt | f7723f0 | 2011-07-20 18:01:48 +1000 | [diff] [blame] | 465 | spin_lock_init(&hvterm_priv0.buf_lock); |
Benjamin Herrenschmidt | 4d2bb3f | 2011-05-12 13:46:38 +1000 | [diff] [blame] | 466 | udbg_putc = udbg_hvc_putc; |
| 467 | udbg_getc = udbg_hvc_getc; |
| 468 | udbg_getc_poll = udbg_hvc_getc_poll; |
| 469 | } |
| 470 | #endif /* CONFIG_PPC_EARLY_DEBUG_LPAR */ |
| 471 | |
| 472 | #ifdef CONFIG_PPC_EARLY_DEBUG_LPAR_HVSI |
| 473 | void __init udbg_init_debug_lpar_hvsi(void) |
| 474 | { |
| 475 | hvterm_privs[0] = &hvterm_priv0; |
| 476 | hvterm_priv0.termno = CONFIG_PPC_EARLY_DEBUG_HVSI_VTERMNO; |
| 477 | hvterm_priv0.proto = HV_PROTOCOL_HVSI; |
Benjamin Herrenschmidt | f7723f0 | 2011-07-20 18:01:48 +1000 | [diff] [blame] | 478 | spin_lock_init(&hvterm_priv0.buf_lock); |
Benjamin Herrenschmidt | 4d2bb3f | 2011-05-12 13:46:38 +1000 | [diff] [blame] | 479 | udbg_putc = udbg_hvc_putc; |
| 480 | udbg_getc = udbg_hvc_getc; |
| 481 | udbg_getc_poll = udbg_hvc_getc_poll; |
Benjamin Herrenschmidt | 87fa35d | 2011-07-01 13:10:21 +1000 | [diff] [blame] | 482 | hvsilib_init(&hvterm_priv0.hvsi, hvc_get_chars, hvc_put_chars, |
| 483 | hvterm_priv0.termno, 1); |
| 484 | hvsilib_establish(&hvterm_priv0.hvsi); |
Benjamin Herrenschmidt | 4d2bb3f | 2011-05-12 13:46:38 +1000 | [diff] [blame] | 485 | } |
| 486 | #endif /* CONFIG_PPC_EARLY_DEBUG_LPAR_HVSI */ |