blob: 3c0a1bf433d75840cf624e6ec3124494cb01383b [file] [log] [blame]
Henrik Rydberg8215d552012-04-23 12:07:07 +02001/*
2 * HID support for Linux
3 *
4 * Copyright (c) 1999 Andreas Gal
5 * Copyright (c) 2000-2005 Vojtech Pavlik <vojtech@suse.cz>
6 * Copyright (c) 2005 Michael Haboustak <mike-@cinci.rr.com> for Concept2, Inc
7 * Copyright (c) 2007-2008 Oliver Neukum
8 * Copyright (c) 2006-2012 Jiri Kosina
9 * Copyright (c) 2012 Henrik Rydberg
10 */
11
12/*
13 * This program is free software; you can redistribute it and/or modify it
14 * under the terms of the GNU General Public License as published by the Free
15 * Software Foundation; either version 2 of the License, or (at your option)
16 * any later version.
17 */
18
19#include <linux/module.h>
20#include <linux/slab.h>
21#include <linux/kernel.h>
22#include <asm/unaligned.h>
23#include <asm/byteorder.h>
24
25#include <linux/hid.h>
26
Benjamin Tissoirese04a0442017-11-20 11:48:44 +010027static struct hid_driver hid_generic;
28
29static int __unmap_hid_generic(struct device *dev, void *data)
30{
31 struct hid_driver *hdrv = data;
32 struct hid_device *hdev = to_hid_device(dev);
33
34 /* only unbind matching devices already bound to hid-generic */
35 if (hdev->driver != &hid_generic ||
36 hid_match_device(hdev, hdrv) == NULL)
37 return 0;
38
39 if (dev->parent) /* Needed for USB */
40 device_lock(dev->parent);
41 device_release_driver(dev);
42 if (dev->parent)
43 device_unlock(dev->parent);
44
45 return 0;
46}
47
48static void hid_generic_add_driver(struct hid_driver *hdrv)
49{
50 bus_for_each_dev(&hid_bus_type, NULL, hdrv, __unmap_hid_generic);
51}
52
53static void hid_generic_removed_driver(struct hid_driver *hdrv)
54{
55 int ret;
56
57 ret = driver_attach(&hid_generic.driver);
58}
59
60static int __check_hid_generic(struct device_driver *drv, void *data)
61{
62 struct hid_driver *hdrv = to_hid_driver(drv);
63 struct hid_device *hdev = data;
64
65 if (hdrv == &hid_generic)
66 return 0;
67
68 return hid_match_device(hdev, hdrv) != NULL;
69}
70
71static bool hid_generic_match(struct hid_device *hdev,
72 bool ignore_special_driver)
73{
74 if (ignore_special_driver)
75 return true;
76
77 if (hdev->quirks & HID_QUIRK_HAVE_SPECIAL_DRIVER)
78 return false;
79
80 /*
81 * If any other driver wants the device, leave the device to this other
82 * driver.
83 */
84 if (bus_for_each_drv(&hid_bus_type, NULL, hdev, __check_hid_generic))
85 return false;
86
87 return true;
88}
89
Henrik Rydberg8215d552012-04-23 12:07:07 +020090static const struct hid_device_id hid_table[] = {
Benjamin Tissoirese04a0442017-11-20 11:48:44 +010091 { HID_DEVICE(HID_BUS_ANY, HID_GROUP_ANY, HID_ANY_ID, HID_ANY_ID) },
Henrik Rydberg8215d552012-04-23 12:07:07 +020092 { }
93};
94MODULE_DEVICE_TABLE(hid, hid_table);
95
96static struct hid_driver hid_generic = {
97 .name = "hid-generic",
98 .id_table = hid_table,
Benjamin Tissoirese04a0442017-11-20 11:48:44 +010099 .match = hid_generic_match,
100 .bus_add_driver = hid_generic_add_driver,
101 .bus_removed_driver = hid_generic_removed_driver,
Henrik Rydberg8215d552012-04-23 12:07:07 +0200102};
H Hartley Sweetenf4254582012-12-17 15:28:26 -0700103module_hid_driver(hid_generic);
Henrik Rydberg8215d552012-04-23 12:07:07 +0200104
105MODULE_AUTHOR("Henrik Rydberg");
106MODULE_DESCRIPTION("HID generic driver");
107MODULE_LICENSE("GPL");