1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35#include <linux/types.h>
36#include <linux/init.h>
37#include <linux/linkage.h>
38#include <linux/kernel.h>
39#include <linux/device.h>
40#include <linux/pnp.h>
41#include <linux/mm.h>
42#include <linux/smp.h>
43#include <linux/slab.h>
44#include <linux/completion.h>
45#include <linux/spinlock.h>
46#include <linux/dmi.h>
47#include <linux/delay.h>
48#include <linux/acpi.h>
49#include <linux/freezer.h>
50#include <linux/kmod.h>
51#include <linux/kthread.h>
52
53#include <asm/page.h>
54#include <asm/desc.h>
55#include <asm/byteorder.h>
56
57#include "../base.h"
58#include "pnpbios.h"
59
60
61
62
63
64
65
66static union pnp_bios_install_struct *pnp_bios_install = NULL;
67
68int pnp_bios_present(void)
69{
70 return (pnp_bios_install != NULL);
71}
72
73struct pnp_dev_node_info node_info;
74
75
76
77
78
79
80
81static struct completion unload_sem;
82
83
84
85
86static int pnp_dock_event(int dock, struct pnp_docking_station_info *info)
87{
88 static char const sbin_pnpbios[] = "/sbin/pnpbios";
89 char *argv[3], **envp, *buf, *scratch;
90 int i = 0, value;
91
92 if (!(envp = kcalloc(20, sizeof(char *), GFP_KERNEL)))
93 return -ENOMEM;
94 if (!(buf = kzalloc(256, GFP_KERNEL))) {
95 kfree(envp);
96 return -ENOMEM;
97 }
98
99
100
101
102
103 argv[0] = (char *)sbin_pnpbios;
104 argv[1] = "dock";
105 argv[2] = NULL;
106
107
108 envp[i++] = "HOME=/";
109 envp[i++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
110
111#ifdef DEBUG
112
113 envp[i++] = "DEBUG=kernel";
114#endif
115
116
117
118 scratch = buf;
119
120
121 envp[i++] = scratch;
122 scratch += sprintf(scratch, "ACTION=%s", dock ? "add" : "remove") + 1;
123
124
125 envp[i++] = scratch;
126 scratch += sprintf(scratch, "DOCK=%x/%x/%x",
127 info->location_id, info->serial, info->capabilities);
128 envp[i] = NULL;
129
130 value = call_usermodehelper(sbin_pnpbios, argv, envp, UMH_WAIT_EXEC);
131 kfree(buf);
132 kfree(envp);
133 return 0;
134}
135
136
137
138
139static int pnp_dock_thread(void *unused)
140{
141 static struct pnp_docking_station_info now;
142 int docked = -1, d = 0;
143
144 set_freezable();
145 while (1) {
146 int status;
147
148
149
150
151 msleep_interruptible(2000);
152
153 if (try_to_freeze())
154 continue;
155
156 status = pnp_bios_dock_station_info(&now);
157
158 switch (status) {
159
160
161
162 case PNP_FUNCTION_NOT_SUPPORTED:
163 complete_and_exit(&unload_sem, 0);
164 case PNP_SYSTEM_NOT_DOCKED:
165 d = 0;
166 break;
167 case PNP_SUCCESS:
168 d = 1;
169 break;
170 default:
171 pnpbios_print_status("pnp_dock_thread", status);
172 printk(KERN_WARNING "PnPBIOS: disabling dock monitoring.\n");
173 complete_and_exit(&unload_sem, 0);
174 }
175 if (d != docked) {
176 if (pnp_dock_event(d, &now) == 0) {
177 docked = d;
178#if 0
179 printk(KERN_INFO
180 "PnPBIOS: Docking station %stached\n",
181 docked ? "at" : "de");
182#endif
183 }
184 }
185 }
186 complete_and_exit(&unload_sem, 0);
187}
188
189static int pnpbios_get_resources(struct pnp_dev *dev)
190{
191 u8 nodenum = dev->number;
192 struct pnp_bios_node *node;
193
194 if (!pnpbios_is_dynamic(dev))
195 return -EPERM;
196
197 pnp_dbg(&dev->dev, "get resources\n");
198 node = kzalloc(node_info.max_node_size, GFP_KERNEL);
199 if (!node)
200 return -1;
201 if (pnp_bios_get_dev_node(&nodenum, (char)PNPMODE_DYNAMIC, node)) {
202 kfree(node);
203 return -ENODEV;
204 }
205 pnpbios_read_resources_from_node(dev, node);
206 dev->active = pnp_is_active(dev);
207 kfree(node);
208 return 0;
209}
210
211static int pnpbios_set_resources(struct pnp_dev *dev)
212{
213 u8 nodenum = dev->number;
214 struct pnp_bios_node *node;
215 int ret;
216
217 if (!pnpbios_is_dynamic(dev))
218 return -EPERM;
219
220 pnp_dbg(&dev->dev, "set resources\n");
221 node = kzalloc(node_info.max_node_size, GFP_KERNEL);
222 if (!node)
223 return -1;
224 if (pnp_bios_get_dev_node(&nodenum, (char)PNPMODE_DYNAMIC, node)) {
225 kfree(node);
226 return -ENODEV;
227 }
228 if (pnpbios_write_resources_to_node(dev, node) < 0) {
229 kfree(node);
230 return -1;
231 }
232 ret = pnp_bios_set_dev_node(node->handle, (char)PNPMODE_DYNAMIC, node);
233 kfree(node);
234 if (ret > 0)
235 ret = -1;
236 return ret;
237}
238
239static void pnpbios_zero_data_stream(struct pnp_bios_node *node)
240{
241 unsigned char *p = (char *)node->data;
242 unsigned char *end = (char *)(node->data + node->size);
243 unsigned int len;
244 int i;
245
246 while ((char *)p < (char *)end) {
247 if (p[0] & 0x80) {
248 len = (p[2] << 8) | p[1];
249 p += 3;
250 } else {
251 if (((p[0] >> 3) & 0x0f) == 0x0f)
252 return;
253 len = p[0] & 0x07;
254 p += 1;
255 }
256 for (i = 0; i < len; i++)
257 p[i] = 0;
258 p += len;
259 }
260 printk(KERN_ERR
261 "PnPBIOS: Resource structure did not contain an end tag.\n");
262}
263
264static int pnpbios_disable_resources(struct pnp_dev *dev)
265{
266 struct pnp_bios_node *node;
267 u8 nodenum = dev->number;
268 int ret;
269
270 if (dev->flags & PNPBIOS_NO_DISABLE || !pnpbios_is_dynamic(dev))
271 return -EPERM;
272
273 node = kzalloc(node_info.max_node_size, GFP_KERNEL);
274 if (!node)
275 return -ENOMEM;
276
277 if (pnp_bios_get_dev_node(&nodenum, (char)PNPMODE_DYNAMIC, node)) {
278 kfree(node);
279 return -ENODEV;
280 }
281 pnpbios_zero_data_stream(node);
282
283 ret = pnp_bios_set_dev_node(dev->number, (char)PNPMODE_DYNAMIC, node);
284 kfree(node);
285 if (ret > 0)
286 ret = -1;
287 return ret;
288}
289
290
291
292struct pnp_protocol pnpbios_protocol = {
293 .name = "Plug and Play BIOS",
294 .get = pnpbios_get_resources,
295 .set = pnpbios_set_resources,
296 .disable = pnpbios_disable_resources,
297};
298
299static int __init insert_device(struct pnp_bios_node *node)
300{
301 struct list_head *pos;
302 struct pnp_dev *dev;
303 char id[8];
304 int error;
305
306
307 list_for_each(pos, &pnpbios_protocol.devices) {
308 dev = list_entry(pos, struct pnp_dev, protocol_list);
309 if (dev->number == node->handle)
310 return -EEXIST;
311 }
312
313 pnp_eisa_id_to_string(node->eisa_id & PNP_EISA_ID_MASK, id);
314 dev = pnp_alloc_dev(&pnpbios_protocol, node->handle, id);
315 if (!dev)
316 return -ENOMEM;
317
318 pnpbios_parse_data_stream(dev, node);
319 dev->active = pnp_is_active(dev);
320 dev->flags = node->flags;
321 if (!(dev->flags & PNPBIOS_NO_CONFIG))
322 dev->capabilities |= PNP_CONFIGURABLE;
323 if (!(dev->flags & PNPBIOS_NO_DISABLE) && pnpbios_is_dynamic(dev))
324 dev->capabilities |= PNP_DISABLE;
325 dev->capabilities |= PNP_READ;
326 if (pnpbios_is_dynamic(dev))
327 dev->capabilities |= PNP_WRITE;
328 if (dev->flags & PNPBIOS_REMOVABLE)
329 dev->capabilities |= PNP_REMOVABLE;
330
331
332 if (!dev->active)
333 pnp_init_resources(dev);
334
335 error = pnp_add_device(dev);
336 if (error) {
337 put_device(&dev->dev);
338 return error;
339 }
340
341 pnpbios_interface_attach_device(node);
342
343 return 0;
344}
345
346static void __init build_devlist(void)
347{
348 u8 nodenum;
349 unsigned int nodes_got = 0;
350 unsigned int devs = 0;
351 struct pnp_bios_node *node;
352
353 node = kzalloc(node_info.max_node_size, GFP_KERNEL);
354 if (!node)
355 return;
356
357 for (nodenum = 0; nodenum < 0xff;) {
358 u8 thisnodenum = nodenum;
359
360
361
362 if (!pnpbios_dont_use_current_config) {
363 if (pnp_bios_get_dev_node
364 (&nodenum, (char)PNPMODE_DYNAMIC, node))
365 break;
366 } else {
367 if (pnp_bios_get_dev_node
368 (&nodenum, (char)PNPMODE_STATIC, node))
369 break;
370 }
371 nodes_got++;
372 if (insert_device(node) == 0)
373 devs++;
374 if (nodenum <= thisnodenum) {
375 printk(KERN_ERR
376 "PnPBIOS: build_devlist: Node number 0x%x is out of sequence following node 0x%x. Aborting.\n",
377 (unsigned int)nodenum,
378 (unsigned int)thisnodenum);
379 break;
380 }
381 }
382 kfree(node);
383
384 printk(KERN_INFO
385 "PnPBIOS: %i node%s reported by PnP BIOS; %i recorded by driver\n",
386 nodes_got, nodes_got != 1 ? "s" : "", devs);
387}
388
389
390
391
392
393
394
395static int pnpbios_disabled;
396int pnpbios_dont_use_current_config;
397
398static int __init pnpbios_setup(char *str)
399{
400 int invert;
401
402 while ((str != NULL) && (*str != '\0')) {
403 if (strncmp(str, "off", 3) == 0)
404 pnpbios_disabled = 1;
405 if (strncmp(str, "on", 2) == 0)
406 pnpbios_disabled = 0;
407 invert = (strncmp(str, "no-", 3) == 0);
408 if (invert)
409 str += 3;
410 if (strncmp(str, "curr", 4) == 0)
411 pnpbios_dont_use_current_config = invert;
412 str = strchr(str, ',');
413 if (str != NULL)
414 str += strspn(str, ", \t");
415 }
416
417 return 1;
418}
419
420__setup("pnpbios=", pnpbios_setup);
421
422
423#define PNP_SIGNATURE (('$' << 0) + ('P' << 8) + ('n' << 16) + ('P' << 24))
424
425static int __init pnpbios_probe_system(void)
426{
427 union pnp_bios_install_struct *check;
428 u8 sum;
429 int length, i;
430
431 printk(KERN_INFO "PnPBIOS: Scanning system for PnP BIOS support...\n");
432
433
434
435
436
437
438 for (check = (union pnp_bios_install_struct *)__va(0xf0000);
439 check < (union pnp_bios_install_struct *)__va(0xffff0);
440 check = (void *)check + 16) {
441 if (check->fields.signature != PNP_SIGNATURE)
442 continue;
443 printk(KERN_INFO
444 "PnPBIOS: Found PnP BIOS installation structure at 0x%p\n",
445 check);
446 length = check->fields.length;
447 if (!length) {
448 printk(KERN_ERR
449 "PnPBIOS: installation structure is invalid, skipping\n");
450 continue;
451 }
452 for (sum = 0, i = 0; i < length; i++)
453 sum += check->chars[i];
454 if (sum) {
455 printk(KERN_ERR
456 "PnPBIOS: installation structure is corrupted, skipping\n");
457 continue;
458 }
459 if (check->fields.version < 0x10) {
460 printk(KERN_WARNING
461 "PnPBIOS: PnP BIOS version %d.%d is not supported\n",
462 check->fields.version >> 4,
463 check->fields.version & 15);
464 continue;
465 }
466 printk(KERN_INFO
467 "PnPBIOS: PnP BIOS version %d.%d, entry 0x%x:0x%x, dseg 0x%x\n",
468 check->fields.version >> 4, check->fields.version & 15,
469 check->fields.pm16cseg, check->fields.pm16offset,
470 check->fields.pm16dseg);
471 pnp_bios_install = check;
472 return 1;
473 }
474
475 printk(KERN_INFO "PnPBIOS: PnP BIOS support was not detected.\n");
476 return 0;
477}
478
479static int __init exploding_pnp_bios(const struct dmi_system_id *d)
480{
481 printk(KERN_WARNING "%s detected. Disabling PnPBIOS\n", d->ident);
482 return 0;
483}
484
485static const struct dmi_system_id pnpbios_dmi_table[] __initconst = {
486 {
487 .callback = exploding_pnp_bios,
488 .ident = "Higraded P14H",
489 .matches = {
490 DMI_MATCH(DMI_BIOS_VENDOR, "American Megatrends Inc."),
491 DMI_MATCH(DMI_BIOS_VERSION, "07.00T"),
492 DMI_MATCH(DMI_SYS_VENDOR, "Higraded"),
493 DMI_MATCH(DMI_PRODUCT_NAME, "P14H"),
494 },
495 },
496 {
497 .callback = exploding_pnp_bios,
498 .ident = "ASUS P4P800",
499 .matches = {
500 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer Inc."),
501 DMI_MATCH(DMI_BOARD_NAME, "P4P800"),
502 },
503 },
504 {}
505};
506
507static int __init pnpbios_init(void)
508{
509 int ret;
510
511 if (pnpbios_disabled || dmi_check_system(pnpbios_dmi_table) ||
512 arch_pnpbios_disabled()) {
513 printk(KERN_INFO "PnPBIOS: Disabled\n");
514 return -ENODEV;
515 }
516
517#ifdef CONFIG_PNPACPI
518 if (!acpi_disabled && !pnpacpi_disabled) {
519 pnpbios_disabled = 1;
520 printk(KERN_INFO "PnPBIOS: Disabled by ACPI PNP\n");
521 return -ENODEV;
522 }
523#endif
524
525
526 if (!pnpbios_probe_system())
527 return -ENODEV;
528
529
530 pnpbios_calls_init(pnp_bios_install);
531
532
533 ret = pnp_bios_dev_node_info(&node_info);
534 if (ret) {
535 printk(KERN_ERR
536 "PnPBIOS: Unable to get node info. Aborting.\n");
537 return ret;
538 }
539
540
541 ret = pnp_register_protocol(&pnpbios_protocol);
542 if (ret) {
543 printk(KERN_ERR
544 "PnPBIOS: Unable to register driver. Aborting.\n");
545 return ret;
546 }
547
548
549 ret = pnpbios_proc_init();
550 if (ret)
551 printk(KERN_ERR "PnPBIOS: Failed to create proc interface.\n");
552
553
554 build_devlist();
555
556 pnp_platform_devices = 1;
557 return 0;
558}
559
560fs_initcall(pnpbios_init);
561
562static int __init pnpbios_thread_init(void)
563{
564 struct task_struct *task;
565
566 if (pnpbios_disabled)
567 return 0;
568
569 init_completion(&unload_sem);
570 task = kthread_run(pnp_dock_thread, NULL, "kpnpbiosd");
571 return PTR_ERR_OR_ZERO(task);
572}
573
574
575device_initcall(pnpbios_thread_init);
576
577EXPORT_SYMBOL(pnpbios_protocol);
578