ACPI, PNP: hook ACPI D-state to PNP suspend/resume
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / pnp / driver.c
blob1432806451cd03cf751d2f3e9c896582bd7571cd
1 /*
2 * driver.c - device id matching, driver model, etc.
4 * Copyright 2002 Adam Belay <ambx1@neo.rr.com>
6 */
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>
14 #include "base.h"
16 static int compare_func(const char *ida, const char *idb)
18 int i;
19 /* we only need to compare the last 4 chars */
20 for (i=3; i<7; i++)
22 if (ida[i] != 'X' &&
23 idb[i] != 'X' &&
24 toupper(ida[i]) != toupper(idb[i]))
25 return 0;
27 return 1;
30 int compare_pnp_id(struct pnp_id *pos, const char *id)
32 if (!pos || !id || (strlen(id) != 7))
33 return 0;
34 if (memcmp(id,"ANYDEVS",7)==0)
35 return 1;
36 while (pos){
37 if (memcmp(pos->id,id,3)==0)
38 if (compare_func(pos->id,id)==1)
39 return 1;
40 pos = pos->next;
42 return 0;
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;
48 if (!drv_id)
49 return NULL;
51 while (*drv_id->id) {
52 if (compare_pnp_id(dev->id, drv_id->id))
53 return drv_id;
54 drv_id++;
56 return NULL;
59 int pnp_device_attach(struct pnp_dev *pnp_dev)
61 spin_lock(&pnp_lock);
62 if(pnp_dev->status != PNP_READY){
63 spin_unlock(&pnp_lock);
64 return -EBUSY;
66 pnp_dev->status = PNP_ATTACHED;
67 spin_unlock(&pnp_lock);
68 return 0;
71 void pnp_device_detach(struct pnp_dev *pnp_dev)
73 spin_lock(&pnp_lock);
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)
82 int error;
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);
92 if (error < 0)
93 return error;
95 if (pnp_dev->active == 0) {
96 if (!(pnp_drv->flags & PNP_DRIVER_RES_DO_NOT_CHANGE)) {
97 error = pnp_activate_dev(pnp_dev);
98 if (error < 0)
99 return error;
101 } else if ((pnp_drv->flags & PNP_DRIVER_RES_DISABLE)
102 == PNP_DRIVER_RES_DISABLE) {
103 error = pnp_disable_dev(pnp_dev);
104 if (error < 0)
105 return error;
107 error = 0;
108 if (pnp_drv->probe) {
109 dev_id = match_device(pnp_drv, pnp_dev);
110 if (dev_id != NULL)
111 error = pnp_drv->probe(pnp_dev, dev_id);
113 if (error >= 0){
114 pnp_dev->driver = pnp_drv;
115 error = 0;
116 } else
117 goto fail;
118 return error;
120 fail:
121 pnp_device_detach(pnp_dev);
122 return error;
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;
130 if (drv) {
131 if (drv->remove)
132 drv->remove(pnp_dev);
133 pnp_dev->driver = NULL;
135 pnp_device_detach(pnp_dev);
136 return 0;
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)
144 return 0;
145 return 1;
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;
152 int error;
154 if (!pnp_drv)
155 return 0;
157 if (pnp_drv->suspend) {
158 error = pnp_drv->suspend(pnp_dev, state);
159 if (error)
160 return error;
163 if (!(pnp_drv->flags & PNP_DRIVER_RES_DO_NOT_CHANGE) &&
164 pnp_can_disable(pnp_dev)) {
165 error = pnp_stop_dev(pnp_dev);
166 if (error)
167 return error;
170 if (pnp_dev->protocol && pnp_dev->protocol->suspend)
171 pnp_dev->protocol->suspend(pnp_dev, state);
172 return 0;
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;
179 int error;
181 if (!pnp_drv)
182 return 0;
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);
189 if (error)
190 return error;
193 if (pnp_drv->resume)
194 return pnp_drv->resume(pnp_dev);
196 return 0;
199 struct bus_type pnp_bus_type = {
200 .name = "pnp",
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)
233 struct pnp_id *ptr;
234 if (!id)
235 return -EINVAL;
236 if (!dev)
237 return -EINVAL;
238 id->next = NULL;
239 ptr = dev->id;
240 while (ptr && ptr->next)
241 ptr = ptr->next;
242 if (ptr)
243 ptr->next = id;
244 else
245 dev->id = id;
246 return 0;
249 EXPORT_SYMBOL(pnp_register_driver);
250 EXPORT_SYMBOL(pnp_unregister_driver);
251 #if 0
252 EXPORT_SYMBOL(pnp_add_id);
253 #endif
254 EXPORT_SYMBOL(pnp_device_attach);
255 EXPORT_SYMBOL(pnp_device_detach);