2 * driver.c - device id matching, driver model, etc.
4 * Copyright 2002 Adam Belay <ambx1@neo.rr.com>
8 #include <linux/string.h>
9 #include <linux/list.h>
10 #include <linux/module.h>
11 #include <linux/ctype.h>
12 #include <linux/slab.h>
13 #include <linux/pnp.h>
16 static int compare_func(const char *ida, const char *idb)
19 /* we only need to compare the last 4 chars */
20 for (i = 3; i < 7; i++) {
22 idb[i] != 'X' && toupper(ida[i]) != toupper(idb[i]))
28 int compare_pnp_id(struct pnp_id *pos, const char *id)
30 if (!pos || !id || (strlen(id) != 7))
32 if (memcmp(id, "ANYDEVS", 7) == 0)
35 if (memcmp(pos->id, id, 3) == 0)
36 if (compare_func(pos->id, id) == 1)
43 static const struct pnp_device_id *match_device(struct pnp_driver *drv,
46 const struct pnp_device_id *drv_id = drv->id_table;
51 if (compare_pnp_id(dev->id, drv_id->id))
58 int pnp_device_attach(struct pnp_dev *pnp_dev)
61 if (pnp_dev->status != PNP_READY) {
62 spin_unlock(&pnp_lock);
65 pnp_dev->status = PNP_ATTACHED;
66 spin_unlock(&pnp_lock);
70 void pnp_device_detach(struct pnp_dev *pnp_dev)
73 if (pnp_dev->status == PNP_ATTACHED)
74 pnp_dev->status = PNP_READY;
75 spin_unlock(&pnp_lock);
76 pnp_disable_dev(pnp_dev);
79 static int pnp_device_probe(struct device *dev)
82 struct pnp_driver *pnp_drv;
83 struct pnp_dev *pnp_dev;
84 const struct pnp_device_id *dev_id = NULL;
85 pnp_dev = to_pnp_dev(dev);
86 pnp_drv = to_pnp_driver(dev->driver);
88 pnp_dbg("match found with the PnP device '%s' and the driver '%s'",
89 dev->bus_id, pnp_drv->name);
91 error = pnp_device_attach(pnp_dev);
95 if (pnp_dev->active == 0) {
96 if (!(pnp_drv->flags & PNP_DRIVER_RES_DO_NOT_CHANGE)) {
97 error = pnp_activate_dev(pnp_dev);
101 } else if ((pnp_drv->flags & PNP_DRIVER_RES_DISABLE)
102 == PNP_DRIVER_RES_DISABLE) {
103 error = pnp_disable_dev(pnp_dev);
108 if (pnp_drv->probe) {
109 dev_id = match_device(pnp_drv, pnp_dev);
111 error = pnp_drv->probe(pnp_dev, dev_id);
114 pnp_dev->driver = pnp_drv;
121 pnp_device_detach(pnp_dev);
125 static int pnp_device_remove(struct device *dev)
127 struct pnp_dev *pnp_dev = to_pnp_dev(dev);
128 struct pnp_driver *drv = pnp_dev->driver;
132 drv->remove(pnp_dev);
133 pnp_dev->driver = NULL;
135 pnp_device_detach(pnp_dev);
139 static int pnp_bus_match(struct device *dev, struct device_driver *drv)
141 struct pnp_dev *pnp_dev = to_pnp_dev(dev);
142 struct pnp_driver *pnp_drv = to_pnp_driver(drv);
143 if (match_device(pnp_drv, pnp_dev) == NULL)
148 static int pnp_bus_suspend(struct device *dev, pm_message_t state)
150 struct pnp_dev *pnp_dev = to_pnp_dev(dev);
151 struct pnp_driver *pnp_drv = pnp_dev->driver;
157 if (pnp_drv->suspend) {
158 error = pnp_drv->suspend(pnp_dev, state);
163 if (!(pnp_drv->flags & PNP_DRIVER_RES_DO_NOT_CHANGE) &&
164 pnp_can_disable(pnp_dev)) {
165 error = pnp_stop_dev(pnp_dev);
170 if (pnp_dev->protocol && pnp_dev->protocol->suspend)
171 pnp_dev->protocol->suspend(pnp_dev, state);
175 static int pnp_bus_resume(struct device *dev)
177 struct pnp_dev *pnp_dev = to_pnp_dev(dev);
178 struct pnp_driver *pnp_drv = pnp_dev->driver;
184 if (pnp_dev->protocol && pnp_dev->protocol->resume)
185 pnp_dev->protocol->resume(pnp_dev);
187 if (!(pnp_drv->flags & PNP_DRIVER_RES_DO_NOT_CHANGE)) {
188 error = pnp_start_dev(pnp_dev);
194 return pnp_drv->resume(pnp_dev);
199 struct bus_type pnp_bus_type = {
201 .match = pnp_bus_match,
202 .probe = pnp_device_probe,
203 .remove = pnp_device_remove,
204 .suspend = pnp_bus_suspend,
205 .resume = pnp_bus_resume,
208 int pnp_register_driver(struct pnp_driver *drv)
210 pnp_dbg("the driver '%s' has been registered", drv->name);
212 drv->driver.name = drv->name;
213 drv->driver.bus = &pnp_bus_type;
215 return driver_register(&drv->driver);
218 void pnp_unregister_driver(struct pnp_driver *drv)
220 driver_unregister(&drv->driver);
221 pnp_dbg("the driver '%s' has been unregistered", drv->name);
225 * pnp_add_id - adds an EISA id to the specified device
226 * @id: pointer to a pnp_id structure
227 * @dev: pointer to the desired device
231 int pnp_add_id(struct pnp_id *id, struct pnp_dev *dev)
240 while (ptr && ptr->next)
249 EXPORT_SYMBOL(pnp_register_driver);
250 EXPORT_SYMBOL(pnp_unregister_driver);
252 EXPORT_SYMBOL(pnp_add_id);
254 EXPORT_SYMBOL(pnp_device_attach);
255 EXPORT_SYMBOL(pnp_device_detach);