2 * driver.c - device id matching, driver model, etc.
4 * Copyright 2002 Adam Belay <ambx1@neo.rr.com>
7 #include <linux/string.h>
8 #include <linux/list.h>
9 #include <linux/module.h>
10 #include <linux/ctype.h>
11 #include <linux/slab.h>
12 #include <linux/pnp.h>
15 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;
52 if (compare_pnp_id(dev->id, drv_id->id))
59 int pnp_device_attach(struct pnp_dev *pnp_dev)
62 if (pnp_dev->status != PNP_READY) {
63 spin_unlock(&pnp_lock);
66 pnp_dev->status = PNP_ATTACHED;
67 spin_unlock(&pnp_lock);
71 void pnp_device_detach(struct pnp_dev *pnp_dev)
74 if (pnp_dev->status == PNP_ATTACHED)
75 pnp_dev->status = PNP_READY;
76 spin_unlock(&pnp_lock);
77 pnp_disable_dev(pnp_dev);
80 static int pnp_device_probe(struct device *dev)
83 struct pnp_driver *pnp_drv;
84 struct pnp_dev *pnp_dev;
85 const struct pnp_device_id *dev_id = NULL;
86 pnp_dev = to_pnp_dev(dev);
87 pnp_drv = to_pnp_driver(dev->driver);
89 error = pnp_device_attach(pnp_dev);
93 if (pnp_dev->active == 0) {
94 if (!(pnp_drv->flags & PNP_DRIVER_RES_DO_NOT_CHANGE)) {
95 error = pnp_activate_dev(pnp_dev);
99 } else if ((pnp_drv->flags & PNP_DRIVER_RES_DISABLE)
100 == PNP_DRIVER_RES_DISABLE) {
101 error = pnp_disable_dev(pnp_dev);
106 if (pnp_drv->probe) {
107 dev_id = match_device(pnp_drv, pnp_dev);
109 error = pnp_drv->probe(pnp_dev, dev_id);
112 pnp_dev->driver = pnp_drv;
117 dev_dbg(dev, "driver attached\n");
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);
144 if (match_device(pnp_drv, pnp_dev) == NULL)
149 static int pnp_bus_suspend(struct device *dev, pm_message_t state)
151 struct pnp_dev *pnp_dev = to_pnp_dev(dev);
152 struct pnp_driver *pnp_drv = pnp_dev->driver;
158 if (pnp_drv->suspend) {
159 error = pnp_drv->suspend(pnp_dev, state);
164 if (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_can_write(pnp_dev)) {
188 error = pnp_start_dev(pnp_dev);
193 if (pnp_drv->resume) {
194 error = pnp_drv->resume(pnp_dev);
202 struct bus_type pnp_bus_type = {
204 .match = pnp_bus_match,
205 .probe = pnp_device_probe,
206 .remove = pnp_device_remove,
207 .suspend = pnp_bus_suspend,
208 .resume = pnp_bus_resume,
211 int pnp_register_driver(struct pnp_driver *drv)
213 pnp_dbg("the driver '%s' has been registered", drv->name);
215 drv->driver.name = drv->name;
216 drv->driver.bus = &pnp_bus_type;
218 return driver_register(&drv->driver);
221 void pnp_unregister_driver(struct pnp_driver *drv)
223 driver_unregister(&drv->driver);
224 pnp_dbg("the driver '%s' has been unregistered", drv->name);
228 * pnp_add_id - adds an EISA id to the specified device
229 * @id: pointer to a pnp_id structure
230 * @dev: pointer to the desired device
232 int pnp_add_id(struct pnp_id *id, struct pnp_dev *dev)
238 while (ptr && ptr->next)
247 EXPORT_SYMBOL(pnp_register_driver);
248 EXPORT_SYMBOL(pnp_unregister_driver);
249 EXPORT_SYMBOL(pnp_device_attach);
250 EXPORT_SYMBOL(pnp_device_detach);