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 */
24 toupper(ida[i]) != toupper(idb[i]))
30 int compare_pnp_id(struct pnp_id *pos, const char *id)
32 if (!pos || !id || (strlen(id) != 7))
34 if (memcmp(id,"ANYDEVS",7)==0)
37 if (memcmp(pos->id,id,3)==0)
38 if (compare_func(pos->id,id)==1)
45 static const struct pnp_device_id * match_device(struct pnp_driver *drv, struct pnp_dev *dev)
47 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 pnp_dbg("match found with the PnP device '%s' and the driver '%s'", 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);
173 static int pnp_bus_resume(struct device *dev)
175 struct pnp_dev * pnp_dev = to_pnp_dev(dev);
176 struct pnp_driver * pnp_drv = pnp_dev->driver;
182 if (!(pnp_drv->flags & PNP_DRIVER_RES_DO_NOT_CHANGE)) {
183 error = pnp_start_dev(pnp_dev);
189 return pnp_drv->resume(pnp_dev);
194 struct bus_type pnp_bus_type = {
196 .match = pnp_bus_match,
197 .probe = pnp_device_probe,
198 .remove = pnp_device_remove,
199 .suspend = pnp_bus_suspend,
200 .resume = pnp_bus_resume,
203 int pnp_register_driver(struct pnp_driver *drv)
205 pnp_dbg("the driver '%s' has been registered", drv->name);
207 drv->driver.name = drv->name;
208 drv->driver.bus = &pnp_bus_type;
210 return driver_register(&drv->driver);
213 void pnp_unregister_driver(struct pnp_driver *drv)
215 driver_unregister(&drv->driver);
216 pnp_dbg("the driver '%s' has been unregistered", drv->name);
220 * pnp_add_id - adds an EISA id to the specified device
221 * @id: pointer to a pnp_id structure
222 * @dev: pointer to the desired device
226 int pnp_add_id(struct pnp_id *id, struct pnp_dev *dev)
235 while (ptr && ptr->next)
244 EXPORT_SYMBOL(pnp_register_driver);
245 EXPORT_SYMBOL(pnp_unregister_driver);
247 EXPORT_SYMBOL(pnp_add_id);
249 EXPORT_SYMBOL(pnp_device_attach);
250 EXPORT_SYMBOL(pnp_device_detach);