linux/drivers/tty/hvc/hvc_opal.c
<<
>>
Prefs
   1/*
   2 * opal driver interface to hvc_console.c
   3 *
   4 * Copyright 2011 Benjamin Herrenschmidt <benh@kernel.crashing.org>, IBM Corp.
   5 *
   6 * This program is free software; you can redistribute it and/or modify
   7 * it under the terms of the GNU General Public License as published by
   8 * the Free Software Foundation; either version 2 of the License, or
   9 * (at your option) any later version.
  10 *
  11 * This program is distributed in the hope that it will be useful,
  12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14 * GNU General Public License for more details.
  15 *
  16 * You should have received a copy of the GNU General Public License
  17 * along with this program; if not, write to the Free Software
  18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
  19 *
  20 */
  21
  22#undef DEBUG
  23
  24#include <linux/types.h>
  25#include <linux/init.h>
  26#include <linux/delay.h>
  27#include <linux/slab.h>
  28#include <linux/console.h>
  29#include <linux/of.h>
  30#include <linux/of_platform.h>
  31#include <linux/export.h>
  32
  33#include <asm/hvconsole.h>
  34#include <asm/prom.h>
  35#include <asm/firmware.h>
  36#include <asm/hvsi.h>
  37#include <asm/udbg.h>
  38#include <asm/opal.h>
  39
  40#include "hvc_console.h"
  41
  42static const char hvc_opal_name[] = "hvc_opal";
  43
  44static struct of_device_id hvc_opal_match[] = {
  45        { .name = "serial", .compatible = "ibm,opal-console-raw" },
  46        { .name = "serial", .compatible = "ibm,opal-console-hvsi" },
  47        { },
  48};
  49
  50typedef enum hv_protocol {
  51        HV_PROTOCOL_RAW,
  52        HV_PROTOCOL_HVSI
  53} hv_protocol_t;
  54
  55struct hvc_opal_priv {
  56        hv_protocol_t           proto;  /* Raw data or HVSI packets */
  57        struct hvsi_priv        hvsi;   /* HVSI specific data */
  58};
  59static struct hvc_opal_priv *hvc_opal_privs[MAX_NR_HVC_CONSOLES];
  60
  61/* For early boot console */
  62static struct hvc_opal_priv hvc_opal_boot_priv;
  63static u32 hvc_opal_boot_termno;
  64static bool hvc_opal_event_registered;
  65
  66static const struct hv_ops hvc_opal_raw_ops = {
  67        .get_chars = opal_get_chars,
  68        .put_chars = opal_put_chars,
  69        .notifier_add = notifier_add_irq,
  70        .notifier_del = notifier_del_irq,
  71        .notifier_hangup = notifier_hangup_irq,
  72};
  73
  74static int hvc_opal_hvsi_get_chars(uint32_t vtermno, char *buf, int count)
  75{
  76        struct hvc_opal_priv *pv = hvc_opal_privs[vtermno];
  77
  78        if (WARN_ON(!pv))
  79                return -ENODEV;
  80
  81        return hvsilib_get_chars(&pv->hvsi, buf, count);
  82}
  83
  84static int hvc_opal_hvsi_put_chars(uint32_t vtermno, const char *buf, int count)
  85{
  86        struct hvc_opal_priv *pv = hvc_opal_privs[vtermno];
  87
  88        if (WARN_ON(!pv))
  89                return -ENODEV;
  90
  91        return hvsilib_put_chars(&pv->hvsi, buf, count);
  92}
  93
  94static int hvc_opal_hvsi_open(struct hvc_struct *hp, int data)
  95{
  96        struct hvc_opal_priv *pv = hvc_opal_privs[hp->vtermno];
  97        int rc;
  98
  99        pr_devel("HVSI@%x: do open !\n", hp->vtermno);
 100
 101        rc = notifier_add_irq(hp, data);
 102        if (rc)
 103                return rc;
 104
 105        return hvsilib_open(&pv->hvsi, hp);
 106}
 107
 108static void hvc_opal_hvsi_close(struct hvc_struct *hp, int data)
 109{
 110        struct hvc_opal_priv *pv = hvc_opal_privs[hp->vtermno];
 111
 112        pr_devel("HVSI@%x: do close !\n", hp->vtermno);
 113
 114        hvsilib_close(&pv->hvsi, hp);
 115
 116        notifier_del_irq(hp, data);
 117}
 118
 119void hvc_opal_hvsi_hangup(struct hvc_struct *hp, int data)
 120{
 121        struct hvc_opal_priv *pv = hvc_opal_privs[hp->vtermno];
 122
 123        pr_devel("HVSI@%x: do hangup !\n", hp->vtermno);
 124
 125        hvsilib_close(&pv->hvsi, hp);
 126
 127        notifier_hangup_irq(hp, data);
 128}
 129
 130static int hvc_opal_hvsi_tiocmget(struct hvc_struct *hp)
 131{
 132        struct hvc_opal_priv *pv = hvc_opal_privs[hp->vtermno];
 133
 134        if (!pv)
 135                return -EINVAL;
 136        return pv->hvsi.mctrl;
 137}
 138
 139static int hvc_opal_hvsi_tiocmset(struct hvc_struct *hp, unsigned int set,
 140                                unsigned int clear)
 141{
 142        struct hvc_opal_priv *pv = hvc_opal_privs[hp->vtermno];
 143
 144        pr_devel("HVSI@%x: Set modem control, set=%x,clr=%x\n",
 145                 hp->vtermno, set, clear);
 146
 147        if (set & TIOCM_DTR)
 148                hvsilib_write_mctrl(&pv->hvsi, 1);
 149        else if (clear & TIOCM_DTR)
 150                hvsilib_write_mctrl(&pv->hvsi, 0);
 151
 152        return 0;
 153}
 154
 155static const struct hv_ops hvc_opal_hvsi_ops = {
 156        .get_chars = hvc_opal_hvsi_get_chars,
 157        .put_chars = hvc_opal_hvsi_put_chars,
 158        .notifier_add = hvc_opal_hvsi_open,
 159        .notifier_del = hvc_opal_hvsi_close,
 160        .notifier_hangup = hvc_opal_hvsi_hangup,
 161        .tiocmget = hvc_opal_hvsi_tiocmget,
 162        .tiocmset = hvc_opal_hvsi_tiocmset,
 163};
 164
 165static int hvc_opal_console_event(struct notifier_block *nb,
 166                                  unsigned long events, void *change)
 167{
 168        if (events & OPAL_EVENT_CONSOLE_INPUT)
 169                hvc_kick();
 170        return 0;
 171}
 172
 173static struct notifier_block hvc_opal_console_nb = {
 174        .notifier_call  = hvc_opal_console_event,
 175};
 176
 177static int hvc_opal_probe(struct platform_device *dev)
 178{
 179        const struct hv_ops *ops;
 180        struct hvc_struct *hp;
 181        struct hvc_opal_priv *pv;
 182        hv_protocol_t proto;
 183        unsigned int termno, boot = 0;
 184        const __be32 *reg;
 185
 186
 187        if (of_device_is_compatible(dev->dev.of_node, "ibm,opal-console-raw")) {
 188                proto = HV_PROTOCOL_RAW;
 189                ops = &hvc_opal_raw_ops;
 190        } else if (of_device_is_compatible(dev->dev.of_node,
 191                                           "ibm,opal-console-hvsi")) {
 192                proto = HV_PROTOCOL_HVSI;
 193                ops = &hvc_opal_hvsi_ops;
 194        } else {
 195                pr_err("hvc_opal: Unknown protocol for %s\n",
 196                       dev->dev.of_node->full_name);
 197                return -ENXIO;
 198        }
 199
 200        reg = of_get_property(dev->dev.of_node, "reg", NULL);
 201        termno = reg ? be32_to_cpup(reg) : 0;
 202
 203        /* Is it our boot one ? */
 204        if (hvc_opal_privs[termno] == &hvc_opal_boot_priv) {
 205                pv = hvc_opal_privs[termno];
 206                boot = 1;
 207        } else if (hvc_opal_privs[termno] == NULL) {
 208                pv = kzalloc(sizeof(struct hvc_opal_priv), GFP_KERNEL);
 209                if (!pv)
 210                        return -ENOMEM;
 211                pv->proto = proto;
 212                hvc_opal_privs[termno] = pv;
 213                if (proto == HV_PROTOCOL_HVSI)
 214                        hvsilib_init(&pv->hvsi, opal_get_chars, opal_put_chars,
 215                                     termno, 0);
 216
 217                /* Instanciate now to establish a mapping index==vtermno */
 218                hvc_instantiate(termno, termno, ops);
 219        } else {
 220                pr_err("hvc_opal: Device %s has duplicate terminal number #%d\n",
 221                       dev->dev.of_node->full_name, termno);
 222                return -ENXIO;
 223        }
 224
 225        pr_info("hvc%d: %s protocol on %s%s\n", termno,
 226                proto == HV_PROTOCOL_RAW ? "raw" : "hvsi",
 227                dev->dev.of_node->full_name,
 228                boot ? " (boot console)" : "");
 229
 230        /* We don't do IRQ ... */
 231        hp = hvc_alloc(termno, 0, ops, MAX_VIO_PUT_CHARS);
 232        if (IS_ERR(hp))
 233                return PTR_ERR(hp);
 234        dev_set_drvdata(&dev->dev, hp);
 235
 236        /* ...  but we use OPAL event to kick the console */
 237        if (!hvc_opal_event_registered) {
 238                opal_notifier_register(&hvc_opal_console_nb);
 239                hvc_opal_event_registered = true;
 240        }
 241
 242        return 0;
 243}
 244
 245static int hvc_opal_remove(struct platform_device *dev)
 246{
 247        struct hvc_struct *hp = dev_get_drvdata(&dev->dev);
 248        int rc, termno;
 249
 250        termno = hp->vtermno;
 251        rc = hvc_remove(hp);
 252        if (rc == 0) {
 253                if (hvc_opal_privs[termno] != &hvc_opal_boot_priv)
 254                        kfree(hvc_opal_privs[termno]);
 255                hvc_opal_privs[termno] = NULL;
 256        }
 257        return rc;
 258}
 259
 260static struct platform_driver hvc_opal_driver = {
 261        .probe          = hvc_opal_probe,
 262        .remove         = hvc_opal_remove,
 263        .driver         = {
 264                .name   = hvc_opal_name,
 265                .owner  = THIS_MODULE,
 266                .of_match_table = hvc_opal_match,
 267        }
 268};
 269
 270static int __init hvc_opal_init(void)
 271{
 272        if (!firmware_has_feature(FW_FEATURE_OPAL))
 273                return -ENODEV;
 274
 275        /* Register as a vio device to receive callbacks */
 276        return platform_driver_register(&hvc_opal_driver);
 277}
 278module_init(hvc_opal_init);
 279
 280static void __exit hvc_opal_exit(void)
 281{
 282        platform_driver_unregister(&hvc_opal_driver);
 283}
 284module_exit(hvc_opal_exit);
 285
 286static void udbg_opal_putc(char c)
 287{
 288        unsigned int termno = hvc_opal_boot_termno;
 289        int count = -1;
 290
 291        if (c == '\n')
 292                udbg_opal_putc('\r');
 293
 294        do {
 295                switch(hvc_opal_boot_priv.proto) {
 296                case HV_PROTOCOL_RAW:
 297                        count = opal_put_chars(termno, &c, 1);
 298                        break;
 299                case HV_PROTOCOL_HVSI:
 300                        count = hvc_opal_hvsi_put_chars(termno, &c, 1);
 301                        break;
 302                }
 303        } while(count == 0 || count == -EAGAIN);
 304}
 305
 306static int udbg_opal_getc_poll(void)
 307{
 308        unsigned int termno = hvc_opal_boot_termno;
 309        int rc = 0;
 310        char c;
 311
 312        switch(hvc_opal_boot_priv.proto) {
 313        case HV_PROTOCOL_RAW:
 314                rc = opal_get_chars(termno, &c, 1);
 315                break;
 316        case HV_PROTOCOL_HVSI:
 317                rc = hvc_opal_hvsi_get_chars(termno, &c, 1);
 318                break;
 319        }
 320        if (!rc)
 321                return -1;
 322        return c;
 323}
 324
 325static int udbg_opal_getc(void)
 326{
 327        int ch;
 328        for (;;) {
 329                ch = udbg_opal_getc_poll();
 330                if (ch == -1) {
 331                        /* This shouldn't be needed...but... */
 332                        volatile unsigned long delay;
 333                        for (delay=0; delay < 2000000; delay++)
 334                                ;
 335                } else {
 336                        return ch;
 337                }
 338        }
 339}
 340
 341static void udbg_init_opal_common(void)
 342{
 343        udbg_putc = udbg_opal_putc;
 344        udbg_getc = udbg_opal_getc;
 345        udbg_getc_poll = udbg_opal_getc_poll;
 346        tb_ticks_per_usec = 0x200; /* Make udelay not suck */
 347}
 348
 349void __init hvc_opal_init_early(void)
 350{
 351        struct device_node *stdout_node = NULL;
 352        const __be32 *termno;
 353        const char *name = NULL;
 354        const struct hv_ops *ops;
 355        u32 index;
 356
 357        /* find the boot console from /chosen/stdout */
 358        if (of_chosen)
 359                name = of_get_property(of_chosen, "linux,stdout-path", NULL);
 360        if (name) {
 361                stdout_node = of_find_node_by_path(name);
 362                if (!stdout_node) {
 363                        pr_err("hvc_opal: Failed to locate default console!\n");
 364                        return;
 365                }
 366        } else {
 367                struct device_node *opal, *np;
 368
 369                /* Current OPAL takeover doesn't provide the stdout
 370                 * path, so we hard wire it
 371                 */
 372                opal = of_find_node_by_path("/ibm,opal/consoles");
 373                if (opal)
 374                        pr_devel("hvc_opal: Found consoles in new location\n");
 375                if (!opal) {
 376                        opal = of_find_node_by_path("/ibm,opal");
 377                        if (opal)
 378                                pr_devel("hvc_opal: "
 379                                         "Found consoles in old location\n");
 380                }
 381                if (!opal)
 382                        return;
 383                for_each_child_of_node(opal, np) {
 384                        if (!strcmp(np->name, "serial")) {
 385                                stdout_node = np;
 386                                break;
 387                        }
 388                }
 389                of_node_put(opal);
 390        }
 391        if (!stdout_node)
 392                return;
 393        termno = of_get_property(stdout_node, "reg", NULL);
 394        index = termno ? be32_to_cpup(termno) : 0;
 395        if (index >= MAX_NR_HVC_CONSOLES)
 396                return;
 397        hvc_opal_privs[index] = &hvc_opal_boot_priv;
 398
 399        /* Check the protocol */
 400        if (of_device_is_compatible(stdout_node, "ibm,opal-console-raw")) {
 401                hvc_opal_boot_priv.proto = HV_PROTOCOL_RAW;
 402                ops = &hvc_opal_raw_ops;
 403                pr_devel("hvc_opal: Found RAW console\n");
 404        }
 405        else if (of_device_is_compatible(stdout_node,"ibm,opal-console-hvsi")) {
 406                hvc_opal_boot_priv.proto = HV_PROTOCOL_HVSI;
 407                ops = &hvc_opal_hvsi_ops;
 408                hvsilib_init(&hvc_opal_boot_priv.hvsi, opal_get_chars,
 409                             opal_put_chars, index, 1);
 410                /* HVSI, perform the handshake now */
 411                hvsilib_establish(&hvc_opal_boot_priv.hvsi);
 412                pr_devel("hvc_opal: Found HVSI console\n");
 413        } else
 414                goto out;
 415        hvc_opal_boot_termno = index;
 416        udbg_init_opal_common();
 417        add_preferred_console("hvc", index, NULL);
 418        hvc_instantiate(index, index, ops);
 419out:
 420        of_node_put(stdout_node);
 421}
 422
 423#ifdef CONFIG_PPC_EARLY_DEBUG_OPAL_RAW
 424void __init udbg_init_debug_opal_raw(void)
 425{
 426        u32 index = CONFIG_PPC_EARLY_DEBUG_OPAL_VTERMNO;
 427        hvc_opal_privs[index] = &hvc_opal_boot_priv;
 428        hvc_opal_boot_priv.proto = HV_PROTOCOL_RAW;
 429        hvc_opal_boot_termno = index;
 430        udbg_init_opal_common();
 431}
 432#endif /* CONFIG_PPC_EARLY_DEBUG_OPAL_RAW */
 433
 434#ifdef CONFIG_PPC_EARLY_DEBUG_OPAL_HVSI
 435void __init udbg_init_debug_opal_hvsi(void)
 436{
 437        u32 index = CONFIG_PPC_EARLY_DEBUG_OPAL_VTERMNO;
 438        hvc_opal_privs[index] = &hvc_opal_boot_priv;
 439        hvc_opal_boot_termno = index;
 440        udbg_init_opal_common();
 441        hvsilib_init(&hvc_opal_boot_priv.hvsi, opal_get_chars, opal_put_chars,
 442                     index, 1);
 443        hvsilib_establish(&hvc_opal_boot_priv.hvsi);
 444}
 445#endif /* CONFIG_PPC_EARLY_DEBUG_OPAL_HVSI */
 446