[PATCH] W1: possible cleanups
[linux-2.6/verdex.git] / drivers / pnp / pnpacpi / core.c
blobf104577f73e09f7daac4c3523e04b280b28fc779
1 /*
2 * pnpacpi -- PnP ACPI driver
4 * Copyright (c) 2004 Matthieu Castet <castet.matthieu@free.fr>
5 * Copyright (c) 2004 Li Shaohua <shaohua.li@intel.com>
6 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2, or (at your option) any
10 * later version.
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #include <linux/config.h>
23 #include <linux/acpi.h>
24 #include <linux/pnp.h>
25 #include <acpi/acpi_bus.h>
26 #include "pnpacpi.h"
28 static int num = 0;
30 /* We need only to blacklist devices that have already an acpi driver that
31 * can't use pnp layer. We don't need to blacklist device that are directly
32 * used by the kernel (PCI root, ...), as it is harmless and there were
33 * already present in pnpbios. But there is an exception for devices that
34 * have irqs (PIC, Timer) because we call acpi_register_gsi.
35 * Finaly only devices that have a CRS method need to be in this list.
37 static char __initdata excluded_id_list[] =
38 "PNP0C09," /* EC */
39 "PNP0C0F," /* Link device */
40 "PNP0000," /* PIC */
41 "PNP0100," /* Timer */
43 static inline int is_exclusive_device(struct acpi_device *dev)
45 return (!acpi_match_ids(dev, excluded_id_list));
49 * Compatible Device IDs
51 #define TEST_HEX(c) \
52 if (!(('0' <= (c) && (c) <= '9') || ('A' <= (c) && (c) <= 'F'))) \
53 return 0
54 #define TEST_ALPHA(c) \
55 if (!('@' <= (c) || (c) <= 'Z')) \
56 return 0
57 static int __init ispnpidacpi(char *id)
59 TEST_ALPHA(id[0]);
60 TEST_ALPHA(id[1]);
61 TEST_ALPHA(id[2]);
62 TEST_HEX(id[3]);
63 TEST_HEX(id[4]);
64 TEST_HEX(id[5]);
65 TEST_HEX(id[6]);
66 if (id[7] != '\0')
67 return 0;
68 return 1;
71 static void __init pnpidacpi_to_pnpid(char *id, char *str)
73 str[0] = id[0];
74 str[1] = id[1];
75 str[2] = id[2];
76 str[3] = tolower(id[3]);
77 str[4] = tolower(id[4]);
78 str[5] = tolower(id[5]);
79 str[6] = tolower(id[6]);
80 str[7] = '\0';
83 static int pnpacpi_get_resources(struct pnp_dev * dev, struct pnp_resource_table * res)
85 acpi_status status;
86 status = pnpacpi_parse_allocated_resource((acpi_handle)dev->data,
87 &dev->res);
88 return ACPI_FAILURE(status) ? -ENODEV : 0;
91 static int pnpacpi_set_resources(struct pnp_dev * dev, struct pnp_resource_table * res)
93 acpi_handle handle = dev->data;
94 struct acpi_buffer buffer;
95 int ret = 0;
96 acpi_status status;
98 ret = pnpacpi_build_resource_template(handle, &buffer);
99 if (ret)
100 return ret;
101 ret = pnpacpi_encode_resources(res, &buffer);
102 if (ret) {
103 kfree(buffer.pointer);
104 return ret;
106 status = acpi_set_current_resources(handle, &buffer);
107 if (ACPI_FAILURE(status))
108 ret = -EINVAL;
109 kfree(buffer.pointer);
110 return ret;
113 static int pnpacpi_disable_resources(struct pnp_dev *dev)
115 acpi_status status;
117 /* acpi_unregister_gsi(pnp_irq(dev, 0)); */
118 status = acpi_evaluate_object((acpi_handle)dev->data,
119 "_DIS", NULL, NULL);
120 return ACPI_FAILURE(status) ? -ENODEV : 0;
123 static struct pnp_protocol pnpacpi_protocol = {
124 .name = "Plug and Play ACPI",
125 .get = pnpacpi_get_resources,
126 .set = pnpacpi_set_resources,
127 .disable = pnpacpi_disable_resources,
130 static int __init pnpacpi_add_device(struct acpi_device *device)
132 acpi_handle temp = NULL;
133 acpi_status status;
134 struct pnp_id *dev_id;
135 struct pnp_dev *dev;
137 status = acpi_get_handle(device->handle, "_CRS", &temp);
138 if (ACPI_FAILURE(status) || !ispnpidacpi(acpi_device_hid(device)) ||
139 is_exclusive_device(device))
140 return 0;
142 pnp_dbg("ACPI device : hid %s", acpi_device_hid(device));
143 dev = kcalloc(1, sizeof(struct pnp_dev), GFP_KERNEL);
144 if (!dev) {
145 pnp_err("Out of memory");
146 return -ENOMEM;
148 dev->data = device->handle;
149 /* .enabled means if the device can decode the resources */
150 dev->active = device->status.enabled;
151 status = acpi_get_handle(device->handle, "_SRS", &temp);
152 if (ACPI_SUCCESS(status))
153 dev->capabilities |= PNP_CONFIGURABLE;
154 dev->capabilities |= PNP_READ;
155 if (device->flags.dynamic_status)
156 dev->capabilities |= PNP_WRITE;
157 if (device->flags.removable)
158 dev->capabilities |= PNP_REMOVABLE;
159 status = acpi_get_handle(device->handle, "_DIS", &temp);
160 if (ACPI_SUCCESS(status))
161 dev->capabilities |= PNP_DISABLE;
163 dev->protocol = &pnpacpi_protocol;
165 if (strlen(acpi_device_name(device)))
166 strncpy(dev->name, acpi_device_name(device), sizeof(dev->name));
167 else
168 strncpy(dev->name, acpi_device_bid(device), sizeof(dev->name));
170 dev->number = num;
172 /* set the initial values for the PnP device */
173 dev_id = kcalloc(1, sizeof(struct pnp_id), GFP_KERNEL);
174 if (!dev_id)
175 goto err;
176 pnpidacpi_to_pnpid(acpi_device_hid(device), dev_id->id);
177 pnp_add_id(dev_id, dev);
179 if(dev->active) {
180 /* parse allocated resource */
181 status = pnpacpi_parse_allocated_resource(device->handle, &dev->res);
182 if (ACPI_FAILURE(status) && (status != AE_NOT_FOUND)) {
183 pnp_err("PnPACPI: METHOD_NAME__CRS failure for %s", dev_id->id);
184 goto err1;
188 if(dev->capabilities & PNP_CONFIGURABLE) {
189 status = pnpacpi_parse_resource_option_data(device->handle,
190 dev);
191 if (ACPI_FAILURE(status) && (status != AE_NOT_FOUND)) {
192 pnp_err("PnPACPI: METHOD_NAME__PRS failure for %s", dev_id->id);
193 goto err1;
197 /* parse compatible ids */
198 if (device->flags.compatible_ids) {
199 struct acpi_compatible_id_list *cid_list = device->pnp.cid_list;
200 int i;
202 for (i = 0; i < cid_list->count; i++) {
203 if (!ispnpidacpi(cid_list->id[i].value))
204 continue;
205 dev_id = kcalloc(1, sizeof(struct pnp_id), GFP_KERNEL);
206 if (!dev_id)
207 continue;
209 pnpidacpi_to_pnpid(cid_list->id[i].value, dev_id->id);
210 pnp_add_id(dev_id, dev);
214 /* clear out the damaged flags */
215 if (!dev->active)
216 pnp_init_resource_table(&dev->res);
217 pnp_add_device(dev);
218 num ++;
220 return AE_OK;
221 err1:
222 kfree(dev_id);
223 err:
224 kfree(dev);
225 return -EINVAL;
228 static acpi_status __init pnpacpi_add_device_handler(acpi_handle handle,
229 u32 lvl, void *context, void **rv)
231 struct acpi_device *device;
233 if (!acpi_bus_get_device(handle, &device))
234 pnpacpi_add_device(device);
235 else
236 return AE_CTRL_DEPTH;
237 return AE_OK;
240 int pnpacpi_disabled __initdata;
241 static int __init pnpacpi_init(void)
243 if (acpi_disabled || pnpacpi_disabled) {
244 pnp_info("PnP ACPI: disabled");
245 return 0;
247 pnp_info("PnP ACPI init");
248 pnp_register_protocol(&pnpacpi_protocol);
249 acpi_get_devices(NULL, pnpacpi_add_device_handler, NULL, NULL);
250 pnp_info("PnP ACPI: found %d devices", num);
251 return 0;
253 subsys_initcall(pnpacpi_init);
255 static int __init pnpacpi_setup(char *str)
257 if (str == NULL)
258 return 1;
259 if (!strncmp(str, "off", 3))
260 pnpacpi_disabled = 1;
261 return 1;
263 __setup("pnpacpi=", pnpacpi_setup);
265 #if 0
266 EXPORT_SYMBOL(pnpacpi_protocol);
267 #endif