linux/drivers/input/serio/serio.c
<<
>>
Prefs
   1/*
   2 *  The Serio abstraction module
   3 *
   4 *  Copyright (c) 1999-2004 Vojtech Pavlik
   5 *  Copyright (c) 2004 Dmitry Torokhov
   6 *  Copyright (c) 2003 Daniele Bellucci
   7 */
   8
   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 * Should you need to contact me, the author, you can do so either by
  25 * e-mail - mail your message to <vojtech@ucw.cz>, or by paper mail:
  26 * Vojtech Pavlik, Simunkova 1594, Prague 8, 182 00 Czech Republic
  27 */
  28
  29#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
  30
  31#include <linux/stddef.h>
  32#include <linux/module.h>
  33#include <linux/serio.h>
  34#include <linux/errno.h>
  35#include <linux/sched.h>
  36#include <linux/slab.h>
  37#include <linux/workqueue.h>
  38#include <linux/mutex.h>
  39
  40MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
  41MODULE_DESCRIPTION("Serio abstraction core");
  42MODULE_LICENSE("GPL");
  43
  44/*
  45 * serio_mutex protects entire serio subsystem and is taken every time
  46 * serio port or driver registered or unregistered.
  47 */
  48static DEFINE_MUTEX(serio_mutex);
  49
  50static LIST_HEAD(serio_list);
  51
  52static struct bus_type serio_bus;
  53
  54static void serio_add_port(struct serio *serio);
  55static int serio_reconnect_port(struct serio *serio);
  56static void serio_disconnect_port(struct serio *serio);
  57static void serio_reconnect_subtree(struct serio *serio);
  58static void serio_attach_driver(struct serio_driver *drv);
  59
  60static int serio_connect_driver(struct serio *serio, struct serio_driver *drv)
  61{
  62        int retval;
  63
  64        mutex_lock(&serio->drv_mutex);
  65        retval = drv->connect(serio, drv);
  66        mutex_unlock(&serio->drv_mutex);
  67
  68        return retval;
  69}
  70
  71static int serio_reconnect_driver(struct serio *serio)
  72{
  73        int retval = -1;
  74
  75        mutex_lock(&serio->drv_mutex);
  76        if (serio->drv && serio->drv->reconnect)
  77                retval = serio->drv->reconnect(serio);
  78        mutex_unlock(&serio->drv_mutex);
  79
  80        return retval;
  81}
  82
  83static void serio_disconnect_driver(struct serio *serio)
  84{
  85        mutex_lock(&serio->drv_mutex);
  86        if (serio->drv)
  87                serio->drv->disconnect(serio);
  88        mutex_unlock(&serio->drv_mutex);
  89}
  90
  91static int serio_match_port(const struct serio_device_id *ids, struct serio *serio)
  92{
  93        while (ids->type || ids->proto) {
  94                if ((ids->type == SERIO_ANY || ids->type == serio->id.type) &&
  95                    (ids->proto == SERIO_ANY || ids->proto == serio->id.proto) &&
  96                    (ids->extra == SERIO_ANY || ids->extra == serio->id.extra) &&
  97                    (ids->id == SERIO_ANY || ids->id == serio->id.id))
  98                        return 1;
  99                ids++;
 100        }
 101        return 0;
 102}
 103
 104/*
 105 * Basic serio -> driver core mappings
 106 */
 107
 108static int serio_bind_driver(struct serio *serio, struct serio_driver *drv)
 109{
 110        int error;
 111
 112        if (serio_match_port(drv->id_table, serio)) {
 113
 114                serio->dev.driver = &drv->driver;
 115                if (serio_connect_driver(serio, drv)) {
 116                        serio->dev.driver = NULL;
 117                        return -ENODEV;
 118                }
 119
 120                error = device_bind_driver(&serio->dev);
 121                if (error) {
 122                        dev_warn(&serio->dev,
 123                                 "device_bind_driver() failed for %s (%s) and %s, error: %d\n",
 124                                 serio->phys, serio->name,
 125                                 drv->description, error);
 126                        serio_disconnect_driver(serio);
 127                        serio->dev.driver = NULL;
 128                        return error;
 129                }
 130        }
 131        return 0;
 132}
 133
 134static void serio_find_driver(struct serio *serio)
 135{
 136        int error;
 137
 138        error = device_attach(&serio->dev);
 139        if (error < 0 && error != -EPROBE_DEFER)
 140                dev_warn(&serio->dev,
 141                         "device_attach() failed for %s (%s), error: %d\n",
 142                         serio->phys, serio->name, error);
 143}
 144
 145
 146/*
 147 * Serio event processing.
 148 */
 149
 150enum serio_event_type {
 151        SERIO_RESCAN_PORT,
 152        SERIO_RECONNECT_PORT,
 153        SERIO_RECONNECT_SUBTREE,
 154        SERIO_REGISTER_PORT,
 155        SERIO_ATTACH_DRIVER,
 156};
 157
 158struct serio_event {
 159        enum serio_event_type type;
 160        void *object;
 161        struct module *owner;
 162        struct list_head node;
 163};
 164
 165static DEFINE_SPINLOCK(serio_event_lock);       /* protects serio_event_list */
 166static LIST_HEAD(serio_event_list);
 167
 168static struct serio_event *serio_get_event(void)
 169{
 170        struct serio_event *event = NULL;
 171        unsigned long flags;
 172
 173        spin_lock_irqsave(&serio_event_lock, flags);
 174
 175        if (!list_empty(&serio_event_list)) {
 176                event = list_first_entry(&serio_event_list,
 177                                         struct serio_event, node);
 178                list_del_init(&event->node);
 179        }
 180
 181        spin_unlock_irqrestore(&serio_event_lock, flags);
 182        return event;
 183}
 184
 185static void serio_free_event(struct serio_event *event)
 186{
 187        module_put(event->owner);
 188        kfree(event);
 189}
 190
 191static void serio_remove_duplicate_events(void *object,
 192                                          enum serio_event_type type)
 193{
 194        struct serio_event *e, *next;
 195        unsigned long flags;
 196
 197        spin_lock_irqsave(&serio_event_lock, flags);
 198
 199        list_for_each_entry_safe(e, next, &serio_event_list, node) {
 200                if (object == e->object) {
 201                        /*
 202                         * If this event is of different type we should not
 203                         * look further - we only suppress duplicate events
 204                         * that were sent back-to-back.
 205                         */
 206                        if (type != e->type)
 207                                break;
 208
 209                        list_del_init(&e->node);
 210                        serio_free_event(e);
 211                }
 212        }
 213
 214        spin_unlock_irqrestore(&serio_event_lock, flags);
 215}
 216
 217static void serio_handle_event(struct work_struct *work)
 218{
 219        struct serio_event *event;
 220
 221        mutex_lock(&serio_mutex);
 222
 223        while ((event = serio_get_event())) {
 224
 225                switch (event->type) {
 226
 227                case SERIO_REGISTER_PORT:
 228                        serio_add_port(event->object);
 229                        break;
 230
 231                case SERIO_RECONNECT_PORT:
 232                        serio_reconnect_port(event->object);
 233                        break;
 234
 235                case SERIO_RESCAN_PORT:
 236                        serio_disconnect_port(event->object);
 237                        serio_find_driver(event->object);
 238                        break;
 239
 240                case SERIO_RECONNECT_SUBTREE:
 241                        serio_reconnect_subtree(event->object);
 242                        break;
 243
 244                case SERIO_ATTACH_DRIVER:
 245                        serio_attach_driver(event->object);
 246                        break;
 247                }
 248
 249                serio_remove_duplicate_events(event->object, event->type);
 250                serio_free_event(event);
 251        }
 252
 253        mutex_unlock(&serio_mutex);
 254}
 255
 256static DECLARE_WORK(serio_event_work, serio_handle_event);
 257
 258static int serio_queue_event(void *object, struct module *owner,
 259                             enum serio_event_type event_type)
 260{
 261        unsigned long flags;
 262        struct serio_event *event;
 263        int retval = 0;
 264
 265        spin_lock_irqsave(&serio_event_lock, flags);
 266
 267        /*
 268         * Scan event list for the other events for the same serio port,
 269         * starting with the most recent one. If event is the same we
 270         * do not need add new one. If event is of different type we
 271         * need to add this event and should not look further because
 272         * we need to preseve sequence of distinct events.
 273         */
 274        list_for_each_entry_reverse(event, &serio_event_list, node) {
 275                if (event->object == object) {
 276                        if (event->type == event_type)
 277                                goto out;
 278                        break;
 279                }
 280        }
 281
 282        event = kmalloc(sizeof(struct serio_event), GFP_ATOMIC);
 283        if (!event) {
 284                pr_err("Not enough memory to queue event %d\n", event_type);
 285                retval = -ENOMEM;
 286                goto out;
 287        }
 288
 289        if (!try_module_get(owner)) {
 290                pr_warning("Can't get module reference, dropping event %d\n",
 291                           event_type);
 292                kfree(event);
 293                retval = -EINVAL;
 294                goto out;
 295        }
 296
 297        event->type = event_type;
 298        event->object = object;
 299        event->owner = owner;
 300
 301        list_add_tail(&event->node, &serio_event_list);
 302        queue_work(system_long_wq, &serio_event_work);
 303
 304out:
 305        spin_unlock_irqrestore(&serio_event_lock, flags);
 306        return retval;
 307}
 308
 309/*
 310 * Remove all events that have been submitted for a given
 311 * object, be it serio port or driver.
 312 */
 313static void serio_remove_pending_events(void *object)
 314{
 315        struct serio_event *event, *next;
 316        unsigned long flags;
 317
 318        spin_lock_irqsave(&serio_event_lock, flags);
 319
 320        list_for_each_entry_safe(event, next, &serio_event_list, node) {
 321                if (event->object == object) {
 322                        list_del_init(&event->node);
 323                        serio_free_event(event);
 324                }
 325        }
 326
 327        spin_unlock_irqrestore(&serio_event_lock, flags);
 328}
 329
 330/*
 331 * Locate child serio port (if any) that has not been fully registered yet.
 332 *
 333 * Children are registered by driver's connect() handler so there can't be a
 334 * grandchild pending registration together with a child.
 335 */
 336static struct serio *serio_get_pending_child(struct serio *parent)
 337{
 338        struct serio_event *event;
 339        struct serio *serio, *child = NULL;
 340        unsigned long flags;
 341
 342        spin_lock_irqsave(&serio_event_lock, flags);
 343
 344        list_for_each_entry(event, &serio_event_list, node) {
 345                if (event->type == SERIO_REGISTER_PORT) {
 346                        serio = event->object;
 347                        if (serio->parent == parent) {
 348                                child = serio;
 349                                break;
 350                        }
 351                }
 352        }
 353
 354        spin_unlock_irqrestore(&serio_event_lock, flags);
 355        return child;
 356}
 357
 358/*
 359 * Serio port operations
 360 */
 361
 362static ssize_t serio_show_description(struct device *dev, struct device_attribute *attr, char *buf)
 363{
 364        struct serio *serio = to_serio_port(dev);
 365        return sprintf(buf, "%s\n", serio->name);
 366}
 367
 368static ssize_t serio_show_modalias(struct device *dev, struct device_attribute *attr, char *buf)
 369{
 370        struct serio *serio = to_serio_port(dev);
 371
 372        return sprintf(buf, "serio:ty%02Xpr%02Xid%02Xex%02X\n",
 373                        serio->id.type, serio->id.proto, serio->id.id, serio->id.extra);
 374}
 375
 376static ssize_t serio_show_id_type(struct device *dev, struct device_attribute *attr, char *buf)
 377{
 378        struct serio *serio = to_serio_port(dev);
 379        return sprintf(buf, "%02x\n", serio->id.type);
 380}
 381
 382static ssize_t serio_show_id_proto(struct device *dev, struct device_attribute *attr, char *buf)
 383{
 384        struct serio *serio = to_serio_port(dev);
 385        return sprintf(buf, "%02x\n", serio->id.proto);
 386}
 387
 388static ssize_t serio_show_id_id(struct device *dev, struct device_attribute *attr, char *buf)
 389{
 390        struct serio *serio = to_serio_port(dev);
 391        return sprintf(buf, "%02x\n", serio->id.id);
 392}
 393
 394static ssize_t serio_show_id_extra(struct device *dev, struct device_attribute *attr, char *buf)
 395{
 396        struct serio *serio = to_serio_port(dev);
 397        return sprintf(buf, "%02x\n", serio->id.extra);
 398}
 399
 400static DEVICE_ATTR(type, S_IRUGO, serio_show_id_type, NULL);
 401static DEVICE_ATTR(proto, S_IRUGO, serio_show_id_proto, NULL);
 402static DEVICE_ATTR(id, S_IRUGO, serio_show_id_id, NULL);
 403static DEVICE_ATTR(extra, S_IRUGO, serio_show_id_extra, NULL);
 404
 405static struct attribute *serio_device_id_attrs[] = {
 406        &dev_attr_type.attr,
 407        &dev_attr_proto.attr,
 408        &dev_attr_id.attr,
 409        &dev_attr_extra.attr,
 410        NULL
 411};
 412
 413static struct attribute_group serio_id_attr_group = {
 414        .name   = "id",
 415        .attrs  = serio_device_id_attrs,
 416};
 417
 418static const struct attribute_group *serio_device_attr_groups[] = {
 419        &serio_id_attr_group,
 420        NULL
 421};
 422
 423static ssize_t serio_rebind_driver(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
 424{
 425        struct serio *serio = to_serio_port(dev);
 426        struct device_driver *drv;
 427        int error;
 428
 429        error = mutex_lock_interruptible(&serio_mutex);
 430        if (error)
 431                return error;
 432
 433        if (!strncmp(buf, "none", count)) {
 434                serio_disconnect_port(serio);
 435        } else if (!strncmp(buf, "reconnect", count)) {
 436                serio_reconnect_subtree(serio);
 437        } else if (!strncmp(buf, "rescan", count)) {
 438                serio_disconnect_port(serio);
 439                serio_find_driver(serio);
 440                serio_remove_duplicate_events(serio, SERIO_RESCAN_PORT);
 441        } else if ((drv = driver_find(buf, &serio_bus)) != NULL) {
 442                serio_disconnect_port(serio);
 443                error = serio_bind_driver(serio, to_serio_driver(drv));
 444                serio_remove_duplicate_events(serio, SERIO_RESCAN_PORT);
 445        } else {
 446                error = -EINVAL;
 447        }
 448
 449        mutex_unlock(&serio_mutex);
 450
 451        return error ? error : count;
 452}
 453
 454static ssize_t serio_show_bind_mode(struct device *dev, struct device_attribute *attr, char *buf)
 455{
 456        struct serio *serio = to_serio_port(dev);
 457        return sprintf(buf, "%s\n", serio->manual_bind ? "manual" : "auto");
 458}
 459
 460static ssize_t serio_set_bind_mode(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
 461{
 462        struct serio *serio = to_serio_port(dev);
 463        int retval;
 464
 465        retval = count;
 466        if (!strncmp(buf, "manual", count)) {
 467                serio->manual_bind = true;
 468        } else if (!strncmp(buf, "auto", count)) {
 469                serio->manual_bind = false;
 470        } else {
 471                retval = -EINVAL;
 472        }
 473
 474        return retval;
 475}
 476
 477static ssize_t firmware_id_show(struct device *dev, struct device_attribute *attr, char *buf)
 478{
 479        struct serio *serio = to_serio_port(dev);
 480
 481        return sprintf(buf, "%s\n", serio->firmware_id);
 482}
 483
 484static struct device_attribute serio_device_attrs[] = {
 485        __ATTR(description, S_IRUGO, serio_show_description, NULL),
 486        __ATTR(modalias, S_IRUGO, serio_show_modalias, NULL),
 487        __ATTR(drvctl, S_IWUSR, NULL, serio_rebind_driver),
 488        __ATTR(bind_mode, S_IWUSR | S_IRUGO, serio_show_bind_mode, serio_set_bind_mode),
 489        __ATTR(firmware_id, S_IRUGO, firmware_id_show, NULL),
 490        __ATTR_NULL
 491};
 492
 493
 494static void serio_release_port(struct device *dev)
 495{
 496        struct serio *serio = to_serio_port(dev);
 497
 498        kfree(serio);
 499        module_put(THIS_MODULE);
 500}
 501
 502/*
 503 * Prepare serio port for registration.
 504 */
 505static void serio_init_port(struct serio *serio)
 506{
 507        static atomic_t serio_no = ATOMIC_INIT(0);
 508
 509        __module_get(THIS_MODULE);
 510
 511        INIT_LIST_HEAD(&serio->node);
 512        INIT_LIST_HEAD(&serio->child_node);
 513        INIT_LIST_HEAD(&serio->children);
 514        spin_lock_init(&serio->lock);
 515        mutex_init(&serio->drv_mutex);
 516        device_initialize(&serio->dev);
 517        dev_set_name(&serio->dev, "serio%ld",
 518                        (long)atomic_inc_return(&serio_no) - 1);
 519        serio->dev.bus = &serio_bus;
 520        serio->dev.release = serio_release_port;
 521        serio->dev.groups = serio_device_attr_groups;
 522        if (serio->parent) {
 523                serio->dev.parent = &serio->parent->dev;
 524                serio->depth = serio->parent->depth + 1;
 525        } else
 526                serio->depth = 0;
 527        lockdep_set_subclass(&serio->lock, serio->depth);
 528}
 529
 530/*
 531 * Complete serio port registration.
 532 * Driver core will attempt to find appropriate driver for the port.
 533 */
 534static void serio_add_port(struct serio *serio)
 535{
 536        struct serio *parent = serio->parent;
 537        int error;
 538
 539        if (parent) {
 540                serio_pause_rx(parent);
 541                list_add_tail(&serio->child_node, &parent->children);
 542                serio_continue_rx(parent);
 543        }
 544
 545        list_add_tail(&serio->node, &serio_list);
 546
 547        if (serio->start)
 548                serio->start(serio);
 549
 550        error = device_add(&serio->dev);
 551        if (error)
 552                dev_err(&serio->dev,
 553                        "device_add() failed for %s (%s), error: %d\n",
 554                        serio->phys, serio->name, error);
 555}
 556
 557/*
 558 * serio_destroy_port() completes unregistration process and removes
 559 * port from the system
 560 */
 561static void serio_destroy_port(struct serio *serio)
 562{
 563        struct serio *child;
 564
 565        while ((child = serio_get_pending_child(serio)) != NULL) {
 566                serio_remove_pending_events(child);
 567                put_device(&child->dev);
 568        }
 569
 570        if (serio->stop)
 571                serio->stop(serio);
 572
 573        if (serio->parent) {
 574                serio_pause_rx(serio->parent);
 575                list_del_init(&serio->child_node);
 576                serio_continue_rx(serio->parent);
 577                serio->parent = NULL;
 578        }
 579
 580        if (device_is_registered(&serio->dev))
 581                device_del(&serio->dev);
 582
 583        list_del_init(&serio->node);
 584        serio_remove_pending_events(serio);
 585        put_device(&serio->dev);
 586}
 587
 588/*
 589 * Reconnect serio port (re-initialize attached device).
 590 * If reconnect fails (old device is no longer attached or
 591 * there was no device to begin with) we do full rescan in
 592 * hope of finding a driver for the port.
 593 */
 594static int serio_reconnect_port(struct serio *serio)
 595{
 596        int error = serio_reconnect_driver(serio);
 597
 598        if (error) {
 599                serio_disconnect_port(serio);
 600                serio_find_driver(serio);
 601        }
 602
 603        return error;
 604}
 605
 606/*
 607 * Reconnect serio port and all its children (re-initialize attached
 608 * devices).
 609 */
 610static void serio_reconnect_subtree(struct serio *root)
 611{
 612        struct serio *s = root;
 613        int error;
 614
 615        do {
 616                error = serio_reconnect_port(s);
 617                if (!error) {
 618                        /*
 619                         * Reconnect was successful, move on to do the
 620                         * first child.
 621                         */
 622                        if (!list_empty(&s->children)) {
 623                                s = list_first_entry(&s->children,
 624                                                     struct serio, child_node);
 625                                continue;
 626                        }
 627                }
 628
 629                /*
 630                 * Either it was a leaf node or reconnect failed and it
 631                 * became a leaf node. Continue reconnecting starting with
 632                 * the next sibling of the parent node.
 633                 */
 634                while (s != root) {
 635                        struct serio *parent = s->parent;
 636
 637                        if (!list_is_last(&s->child_node, &parent->children)) {
 638                                s = list_entry(s->child_node.next,
 639                                               struct serio, child_node);
 640                                break;
 641                        }
 642
 643                        s = parent;
 644                }
 645        } while (s != root);
 646}
 647
 648/*
 649 * serio_disconnect_port() unbinds a port from its driver. As a side effect
 650 * all children ports are unbound and destroyed.
 651 */
 652static void serio_disconnect_port(struct serio *serio)
 653{
 654        struct serio *s = serio;
 655
 656        /*
 657         * Children ports should be disconnected and destroyed
 658         * first; we travel the tree in depth-first order.
 659         */
 660        while (!list_empty(&serio->children)) {
 661
 662                /* Locate a leaf */
 663                while (!list_empty(&s->children))
 664                        s = list_first_entry(&s->children,
 665                                             struct serio, child_node);
 666
 667                /*
 668                 * Prune this leaf node unless it is the one we
 669                 * started with.
 670                 */
 671                if (s != serio) {
 672                        struct serio *parent = s->parent;
 673
 674                        device_release_driver(&s->dev);
 675                        serio_destroy_port(s);
 676
 677                        s = parent;
 678                }
 679        }
 680
 681        /*
 682         * OK, no children left, now disconnect this port.
 683         */
 684        device_release_driver(&serio->dev);
 685}
 686
 687void serio_rescan(struct serio *serio)
 688{
 689        serio_queue_event(serio, NULL, SERIO_RESCAN_PORT);
 690}
 691EXPORT_SYMBOL(serio_rescan);
 692
 693void serio_reconnect(struct serio *serio)
 694{
 695        serio_queue_event(serio, NULL, SERIO_RECONNECT_SUBTREE);
 696}
 697EXPORT_SYMBOL(serio_reconnect);
 698
 699/*
 700 * Submits register request to kseriod for subsequent execution.
 701 * Note that port registration is always asynchronous.
 702 */
 703void __serio_register_port(struct serio *serio, struct module *owner)
 704{
 705        serio_init_port(serio);
 706        serio_queue_event(serio, owner, SERIO_REGISTER_PORT);
 707}
 708EXPORT_SYMBOL(__serio_register_port);
 709
 710/*
 711 * Synchronously unregisters serio port.
 712 */
 713void serio_unregister_port(struct serio *serio)
 714{
 715        mutex_lock(&serio_mutex);
 716        serio_disconnect_port(serio);
 717        serio_destroy_port(serio);
 718        mutex_unlock(&serio_mutex);
 719}
 720EXPORT_SYMBOL(serio_unregister_port);
 721
 722/*
 723 * Safely unregisters children ports if they are present.
 724 */
 725void serio_unregister_child_port(struct serio *serio)
 726{
 727        struct serio *s, *next;
 728
 729        mutex_lock(&serio_mutex);
 730        list_for_each_entry_safe(s, next, &serio->children, child_node) {
 731                serio_disconnect_port(s);
 732                serio_destroy_port(s);
 733        }
 734        mutex_unlock(&serio_mutex);
 735}
 736EXPORT_SYMBOL(serio_unregister_child_port);
 737
 738
 739/*
 740 * Serio driver operations
 741 */
 742
 743static ssize_t serio_driver_show_description(struct device_driver *drv, char *buf)
 744{
 745        struct serio_driver *driver = to_serio_driver(drv);
 746        return sprintf(buf, "%s\n", driver->description ? driver->description : "(none)");
 747}
 748
 749static ssize_t serio_driver_show_bind_mode(struct device_driver *drv, char *buf)
 750{
 751        struct serio_driver *serio_drv = to_serio_driver(drv);
 752        return sprintf(buf, "%s\n", serio_drv->manual_bind ? "manual" : "auto");
 753}
 754
 755static ssize_t serio_driver_set_bind_mode(struct device_driver *drv, const char *buf, size_t count)
 756{
 757        struct serio_driver *serio_drv = to_serio_driver(drv);
 758        int retval;
 759
 760        retval = count;
 761        if (!strncmp(buf, "manual", count)) {
 762                serio_drv->manual_bind = true;
 763        } else if (!strncmp(buf, "auto", count)) {
 764                serio_drv->manual_bind = false;
 765        } else {
 766                retval = -EINVAL;
 767        }
 768
 769        return retval;
 770}
 771
 772
 773static struct driver_attribute serio_driver_attrs[] = {
 774        __ATTR(description, S_IRUGO, serio_driver_show_description, NULL),
 775        __ATTR(bind_mode, S_IWUSR | S_IRUGO,
 776                serio_driver_show_bind_mode, serio_driver_set_bind_mode),
 777        __ATTR_NULL
 778};
 779
 780static int serio_driver_probe(struct device *dev)
 781{
 782        struct serio *serio = to_serio_port(dev);
 783        struct serio_driver *drv = to_serio_driver(dev->driver);
 784
 785        return serio_connect_driver(serio, drv);
 786}
 787
 788static int serio_driver_remove(struct device *dev)
 789{
 790        struct serio *serio = to_serio_port(dev);
 791
 792        serio_disconnect_driver(serio);
 793        return 0;
 794}
 795
 796static void serio_cleanup(struct serio *serio)
 797{
 798        mutex_lock(&serio->drv_mutex);
 799        if (serio->drv && serio->drv->cleanup)
 800                serio->drv->cleanup(serio);
 801        mutex_unlock(&serio->drv_mutex);
 802}
 803
 804static void serio_shutdown(struct device *dev)
 805{
 806        struct serio *serio = to_serio_port(dev);
 807
 808        serio_cleanup(serio);
 809}
 810
 811static void serio_attach_driver(struct serio_driver *drv)
 812{
 813        int error;
 814
 815        error = driver_attach(&drv->driver);
 816        if (error)
 817                pr_warning("driver_attach() failed for %s with error %d\n",
 818                           drv->driver.name, error);
 819}
 820
 821int __serio_register_driver(struct serio_driver *drv, struct module *owner, const char *mod_name)
 822{
 823        bool manual_bind = drv->manual_bind;
 824        int error;
 825
 826        drv->driver.bus = &serio_bus;
 827        drv->driver.owner = owner;
 828        drv->driver.mod_name = mod_name;
 829
 830        /*
 831         * Temporarily disable automatic binding because probing
 832         * takes long time and we are better off doing it in kseriod
 833         */
 834        drv->manual_bind = true;
 835
 836        error = driver_register(&drv->driver);
 837        if (error) {
 838                pr_err("driver_register() failed for %s, error: %d\n",
 839                        drv->driver.name, error);
 840                return error;
 841        }
 842
 843        /*
 844         * Restore original bind mode and let kseriod bind the
 845         * driver to free ports
 846         */
 847        if (!manual_bind) {
 848                drv->manual_bind = false;
 849                error = serio_queue_event(drv, NULL, SERIO_ATTACH_DRIVER);
 850                if (error) {
 851                        driver_unregister(&drv->driver);
 852                        return error;
 853                }
 854        }
 855
 856        return 0;
 857}
 858EXPORT_SYMBOL(__serio_register_driver);
 859
 860void serio_unregister_driver(struct serio_driver *drv)
 861{
 862        struct serio *serio;
 863
 864        mutex_lock(&serio_mutex);
 865
 866        drv->manual_bind = true;        /* so serio_find_driver ignores it */
 867        serio_remove_pending_events(drv);
 868
 869start_over:
 870        list_for_each_entry(serio, &serio_list, node) {
 871                if (serio->drv == drv) {
 872                        serio_disconnect_port(serio);
 873                        serio_find_driver(serio);
 874                        /* we could've deleted some ports, restart */
 875                        goto start_over;
 876                }
 877        }
 878
 879        driver_unregister(&drv->driver);
 880        mutex_unlock(&serio_mutex);
 881}
 882EXPORT_SYMBOL(serio_unregister_driver);
 883
 884static void serio_set_drv(struct serio *serio, struct serio_driver *drv)
 885{
 886        serio_pause_rx(serio);
 887        serio->drv = drv;
 888        serio_continue_rx(serio);
 889}
 890
 891static int serio_bus_match(struct device *dev, struct device_driver *drv)
 892{
 893        struct serio *serio = to_serio_port(dev);
 894        struct serio_driver *serio_drv = to_serio_driver(drv);
 895
 896        if (serio->manual_bind || serio_drv->manual_bind)
 897                return 0;
 898
 899        return serio_match_port(serio_drv->id_table, serio);
 900}
 901
 902#define SERIO_ADD_UEVENT_VAR(fmt, val...)                               \
 903        do {                                                            \
 904                int err = add_uevent_var(env, fmt, val);                \
 905                if (err)                                                \
 906                        return err;                                     \
 907        } while (0)
 908
 909static int serio_uevent(struct device *dev, struct kobj_uevent_env *env)
 910{
 911        struct serio *serio;
 912
 913        if (!dev)
 914                return -ENODEV;
 915
 916        serio = to_serio_port(dev);
 917
 918        SERIO_ADD_UEVENT_VAR("SERIO_TYPE=%02x", serio->id.type);
 919        SERIO_ADD_UEVENT_VAR("SERIO_PROTO=%02x", serio->id.proto);
 920        SERIO_ADD_UEVENT_VAR("SERIO_ID=%02x", serio->id.id);
 921        SERIO_ADD_UEVENT_VAR("SERIO_EXTRA=%02x", serio->id.extra);
 922
 923        SERIO_ADD_UEVENT_VAR("MODALIAS=serio:ty%02Xpr%02Xid%02Xex%02X",
 924                                serio->id.type, serio->id.proto, serio->id.id, serio->id.extra);
 925
 926        if (serio->firmware_id[0])
 927                SERIO_ADD_UEVENT_VAR("SERIO_FIRMWARE_ID=%s",
 928                                     serio->firmware_id);
 929
 930        return 0;
 931}
 932#undef SERIO_ADD_UEVENT_VAR
 933
 934#ifdef CONFIG_PM
 935static int serio_suspend(struct device *dev)
 936{
 937        struct serio *serio = to_serio_port(dev);
 938
 939        serio_cleanup(serio);
 940
 941        return 0;
 942}
 943
 944static int serio_resume(struct device *dev)
 945{
 946        struct serio *serio = to_serio_port(dev);
 947        int error = -ENOENT;
 948
 949        mutex_lock(&serio->drv_mutex);
 950        if (serio->drv && serio->drv->fast_reconnect) {
 951                error = serio->drv->fast_reconnect(serio);
 952                if (error && error != -ENOENT)
 953                        dev_warn(dev, "fast reconnect failed with error %d\n",
 954                                 error);
 955        }
 956        mutex_unlock(&serio->drv_mutex);
 957
 958        if (error) {
 959                /*
 960                 * Driver reconnect can take a while, so better let
 961                 * kseriod deal with it.
 962                 */
 963                serio_queue_event(serio, NULL, SERIO_RECONNECT_PORT);
 964        }
 965
 966        return 0;
 967}
 968
 969static const struct dev_pm_ops serio_pm_ops = {
 970        .suspend        = serio_suspend,
 971        .resume         = serio_resume,
 972        .poweroff       = serio_suspend,
 973        .restore        = serio_resume,
 974};
 975#endif /* CONFIG_PM */
 976
 977/* called from serio_driver->connect/disconnect methods under serio_mutex */
 978int serio_open(struct serio *serio, struct serio_driver *drv)
 979{
 980        serio_set_drv(serio, drv);
 981
 982        if (serio->open && serio->open(serio)) {
 983                serio_set_drv(serio, NULL);
 984                return -1;
 985        }
 986        return 0;
 987}
 988EXPORT_SYMBOL(serio_open);
 989
 990/* called from serio_driver->connect/disconnect methods under serio_mutex */
 991void serio_close(struct serio *serio)
 992{
 993        if (serio->close)
 994                serio->close(serio);
 995
 996        serio_set_drv(serio, NULL);
 997}
 998EXPORT_SYMBOL(serio_close);
 999
1000irqreturn_t serio_interrupt(struct serio *serio,
1001                unsigned char data, unsigned int dfl)
1002{
1003        unsigned long flags;
1004        irqreturn_t ret = IRQ_NONE;
1005
1006        spin_lock_irqsave(&serio->lock, flags);
1007
1008        if (likely(serio->drv)) {
1009                ret = serio->drv->interrupt(serio, data, dfl);
1010        } else if (!dfl && device_is_registered(&serio->dev)) {
1011                serio_rescan(serio);
1012                ret = IRQ_HANDLED;
1013        }
1014
1015        spin_unlock_irqrestore(&serio->lock, flags);
1016
1017        return ret;
1018}
1019EXPORT_SYMBOL(serio_interrupt);
1020
1021static struct bus_type serio_bus = {
1022        .name           = "serio",
1023        .dev_attrs      = serio_device_attrs,
1024        .drv_attrs      = serio_driver_attrs,
1025        .match          = serio_bus_match,
1026        .uevent         = serio_uevent,
1027        .probe          = serio_driver_probe,
1028        .remove         = serio_driver_remove,
1029        .shutdown       = serio_shutdown,
1030#ifdef CONFIG_PM
1031        .pm             = &serio_pm_ops,
1032#endif
1033};
1034
1035static int __init serio_init(void)
1036{
1037        int error;
1038
1039        error = bus_register(&serio_bus);
1040        if (error) {
1041                pr_err("Failed to register serio bus, error: %d\n", error);
1042                return error;
1043        }
1044
1045        return 0;
1046}
1047
1048static void __exit serio_exit(void)
1049{
1050        bus_unregister(&serio_bus);
1051
1052        /*
1053         * There should not be any outstanding events but work may
1054         * still be scheduled so simply cancel it.
1055         */
1056        cancel_work_sync(&serio_event_work);
1057}
1058
1059subsys_initcall(serio_init);
1060module_exit(serio_exit);
1061