blob: d546f79d4d3bfb67ad436f0d236ff4f450986c01 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * bioscalls.c - the lowlevel layer of the PnPBIOS driver
3 *
4 */
5
6#include <linux/types.h>
7#include <linux/module.h>
8#include <linux/init.h>
9#include <linux/linkage.h>
10#include <linux/kernel.h>
11#include <linux/pnpbios.h>
12#include <linux/device.h>
13#include <linux/pnp.h>
14#include <linux/mm.h>
15#include <linux/smp.h>
16#include <linux/slab.h>
17#include <linux/kmod.h>
18#include <linux/completion.h>
19#include <linux/spinlock.h>
20
21#include <asm/page.h>
22#include <asm/desc.h>
23#include <asm/system.h>
24#include <asm/byteorder.h>
25
26#include "pnpbios.h"
27
28static struct {
Bjorn Helgaas9dd78462007-07-26 10:41:20 -070029 u16 offset;
30 u16 segment;
Linus Torvalds1da177e2005-04-16 15:20:36 -070031} pnp_bios_callpoint;
32
Linus Torvalds1da177e2005-04-16 15:20:36 -070033/*
34 * These are some opcodes for a "static asmlinkage"
35 * As this code is *not* executed inside the linux kernel segment, but in a
36 * alias at offset 0, we need a far return that can not be compiled by
37 * default (please, prove me wrong! this is *really* ugly!)
38 * This is the only way to get the bios to return into the kernel code,
39 * because the bios code runs in 16 bit protected mode and therefore can only
40 * return to the caller if the call is within the first 64kB, and the linux
41 * kernel begins at offset 3GB...
42 */
43
44asmlinkage void pnp_bios_callfunc(void);
45
Bjorn Helgaas9dd78462007-07-26 10:41:20 -070046__asm__(".text \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 __ALIGN_STR "\n"
48 "pnp_bios_callfunc:\n"
49 " pushl %edx \n"
50 " pushl %ecx \n"
51 " pushl %ebx \n"
52 " pushl %eax \n"
53 " lcallw *pnp_bios_callpoint\n"
54 " addl $16, %esp \n"
Bjorn Helgaas9dd78462007-07-26 10:41:20 -070055 " lret \n" ".previous \n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#define Q2_SET_SEL(cpu, selname, address, size) \
58do { \
Zachary Amsden7c4cb602006-01-06 00:11:47 -080059struct desc_struct *gdt = get_cpu_gdt_table((cpu)); \
60set_base(gdt[(selname) >> 3], (u32)(address)); \
61set_limit(gdt[(selname) >> 3], size); \
Linus Torvalds1da177e2005-04-16 15:20:36 -070062} while(0)
63
64static struct desc_struct bad_bios_desc = { 0, 0x00409200 };
65
66/*
67 * At some point we want to use this stack frame pointer to unwind
68 * after PnP BIOS oopses.
69 */
70
71u32 pnp_bios_fault_esp;
72u32 pnp_bios_fault_eip;
73u32 pnp_bios_is_utter_crap = 0;
74
75static spinlock_t pnp_bios_lock;
76
Linus Torvalds1da177e2005-04-16 15:20:36 -070077/*
78 * Support Functions
79 */
80
81static inline u16 call_pnp_bios(u16 func, u16 arg1, u16 arg2, u16 arg3,
82 u16 arg4, u16 arg5, u16 arg6, u16 arg7,
83 void *ts1_base, u32 ts1_size,
84 void *ts2_base, u32 ts2_size)
85{
86 unsigned long flags;
87 u16 status;
88 struct desc_struct save_desc_40;
89 int cpu;
90
91 /*
92 * PnP BIOSes are generally not terribly re-entrant.
93 * Also, don't rely on them to save everything correctly.
94 */
Bjorn Helgaas9dd78462007-07-26 10:41:20 -070095 if (pnp_bios_is_utter_crap)
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 return PNP_FUNCTION_NOT_SUPPORTED;
97
98 cpu = get_cpu();
Zachary Amsden7c4cb602006-01-06 00:11:47 -080099 save_desc_40 = get_cpu_gdt_table(cpu)[0x40 / 8];
100 get_cpu_gdt_table(cpu)[0x40 / 8] = bad_bios_desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
102 /* On some boxes IRQ's during PnP BIOS calls are deadly. */
103 spin_lock_irqsave(&pnp_bios_lock, flags);
104
105 /* The lock prevents us bouncing CPU here */
106 if (ts1_size)
107 Q2_SET_SEL(smp_processor_id(), PNP_TS1, ts1_base, ts1_size);
108 if (ts2_size)
109 Q2_SET_SEL(smp_processor_id(), PNP_TS2, ts2_base, ts2_size);
110
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700111 __asm__ __volatile__("pushl %%ebp\n\t"
112 "pushl %%edi\n\t"
113 "pushl %%esi\n\t"
114 "pushl %%ds\n\t"
115 "pushl %%es\n\t"
116 "pushl %%fs\n\t"
117 "pushl %%gs\n\t"
118 "pushfl\n\t"
119 "movl %%esp, pnp_bios_fault_esp\n\t"
120 "movl $1f, pnp_bios_fault_eip\n\t"
121 "lcall %5,%6\n\t"
122 "1:popfl\n\t"
123 "popl %%gs\n\t"
124 "popl %%fs\n\t"
125 "popl %%es\n\t"
126 "popl %%ds\n\t"
127 "popl %%esi\n\t"
128 "popl %%edi\n\t" "popl %%ebp\n\t":"=a"(status)
129 :"0"((func) | (((u32) arg1) << 16)),
130 "b"((arg2) | (((u32) arg3) << 16)),
131 "c"((arg4) | (((u32) arg5) << 16)),
132 "d"((arg6) | (((u32) arg7) << 16)),
133 "i"(PNP_CS32), "i"(0)
134 :"memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 spin_unlock_irqrestore(&pnp_bios_lock, flags);
136
Zachary Amsden7c4cb602006-01-06 00:11:47 -0800137 get_cpu_gdt_table(cpu)[0x40 / 8] = save_desc_40;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 put_cpu();
139
140 /* If we get here and this is set then the PnP BIOS faulted on us. */
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700141 if (pnp_bios_is_utter_crap) {
142 printk(KERN_ERR
143 "PnPBIOS: Warning! Your PnP BIOS caused a fatal error. Attempting to continue\n");
144 printk(KERN_ERR
145 "PnPBIOS: You may need to reboot with the \"pnpbios=off\" option to operate stably\n");
146 printk(KERN_ERR
147 "PnPBIOS: Check with your vendor for an updated BIOS\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 }
149
150 return status;
151}
152
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700153void pnpbios_print_status(const char *module, u16 status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700155 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 case PNP_SUCCESS:
157 printk(KERN_ERR "PnPBIOS: %s: function successful\n", module);
158 break;
159 case PNP_NOT_SET_STATICALLY:
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700160 printk(KERN_ERR "PnPBIOS: %s: unable to set static resources\n",
161 module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 break;
163 case PNP_UNKNOWN_FUNCTION:
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700164 printk(KERN_ERR "PnPBIOS: %s: invalid function number passed\n",
165 module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 break;
167 case PNP_FUNCTION_NOT_SUPPORTED:
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700168 printk(KERN_ERR
169 "PnPBIOS: %s: function not supported on this system\n",
170 module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 break;
172 case PNP_INVALID_HANDLE:
173 printk(KERN_ERR "PnPBIOS: %s: invalid handle\n", module);
174 break;
175 case PNP_BAD_PARAMETER:
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700176 printk(KERN_ERR "PnPBIOS: %s: invalid parameters were passed\n",
177 module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 break;
179 case PNP_SET_FAILED:
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700180 printk(KERN_ERR "PnPBIOS: %s: unable to set resources\n",
181 module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 break;
183 case PNP_EVENTS_NOT_PENDING:
184 printk(KERN_ERR "PnPBIOS: %s: no events are pending\n", module);
185 break;
186 case PNP_SYSTEM_NOT_DOCKED:
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700187 printk(KERN_ERR "PnPBIOS: %s: the system is not docked\n",
188 module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 break;
190 case PNP_NO_ISA_PNP_CARDS:
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700191 printk(KERN_ERR
192 "PnPBIOS: %s: no isapnp cards are installed on this system\n",
193 module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 break;
195 case PNP_UNABLE_TO_DETERMINE_DOCK_CAPABILITIES:
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700196 printk(KERN_ERR
197 "PnPBIOS: %s: cannot determine the capabilities of the docking station\n",
198 module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 break;
200 case PNP_CONFIG_CHANGE_FAILED_NO_BATTERY:
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700201 printk(KERN_ERR
202 "PnPBIOS: %s: unable to undock, the system does not have a battery\n",
203 module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 break;
205 case PNP_CONFIG_CHANGE_FAILED_RESOURCE_CONFLICT:
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700206 printk(KERN_ERR
207 "PnPBIOS: %s: could not dock due to resource conflicts\n",
208 module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 break;
210 case PNP_BUFFER_TOO_SMALL:
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700211 printk(KERN_ERR "PnPBIOS: %s: the buffer passed is too small\n",
212 module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 break;
214 case PNP_USE_ESCD_SUPPORT:
215 printk(KERN_ERR "PnPBIOS: %s: use ESCD instead\n", module);
216 break;
217 case PNP_MESSAGE_NOT_SUPPORTED:
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700218 printk(KERN_ERR "PnPBIOS: %s: the message is unsupported\n",
219 module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 break;
221 case PNP_HARDWARE_ERROR:
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700222 printk(KERN_ERR "PnPBIOS: %s: a hardware failure has occured\n",
223 module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 break;
225 default:
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700226 printk(KERN_ERR "PnPBIOS: %s: unexpected status 0x%x\n", module,
227 status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 break;
229 }
230}
231
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232/*
233 * PnP BIOS Low Level Calls
234 */
235
236#define PNP_GET_NUM_SYS_DEV_NODES 0x00
237#define PNP_GET_SYS_DEV_NODE 0x01
238#define PNP_SET_SYS_DEV_NODE 0x02
239#define PNP_GET_EVENT 0x03
240#define PNP_SEND_MESSAGE 0x04
241#define PNP_GET_DOCKING_STATION_INFORMATION 0x05
242#define PNP_SET_STATIC_ALLOCED_RES_INFO 0x09
243#define PNP_GET_STATIC_ALLOCED_RES_INFO 0x0a
244#define PNP_GET_APM_ID_TABLE 0x0b
245#define PNP_GET_PNP_ISA_CONFIG_STRUC 0x40
246#define PNP_GET_ESCD_INFO 0x41
247#define PNP_READ_ESCD 0x42
248#define PNP_WRITE_ESCD 0x43
249
250/*
251 * Call PnP BIOS with function 0x00, "get number of system device nodes"
252 */
253static int __pnp_bios_dev_node_info(struct pnp_dev_node_info *data)
254{
255 u16 status;
256 if (!pnp_bios_present())
257 return PNP_FUNCTION_NOT_SUPPORTED;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700258 status =
259 call_pnp_bios(PNP_GET_NUM_SYS_DEV_NODES, 0, PNP_TS1, 2, PNP_TS1,
260 PNP_DS, 0, 0, data, sizeof(struct pnp_dev_node_info),
261 NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 data->no_nodes &= 0xff;
263 return status;
264}
265
266int pnp_bios_dev_node_info(struct pnp_dev_node_info *data)
267{
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700268 int status = __pnp_bios_dev_node_info(data);
269 if (status)
270 pnpbios_print_status("dev_node_info", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 return status;
272}
273
274/*
275 * Note that some PnP BIOSes (e.g., on Sony Vaio laptops) die a horrible
276 * death if they are asked to access the "current" configuration.
277 * Therefore, if it's a matter of indifference, it's better to call
278 * get_dev_node() and set_dev_node() with boot=1 rather than with boot=0.
279 */
280
281/*
282 * Call PnP BIOS with function 0x01, "get system device node"
283 * Input: *nodenum = desired node,
284 * boot = whether to get nonvolatile boot (!=0)
285 * or volatile current (0) config
286 * Output: *nodenum=next node or 0xff if no more nodes
287 */
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700288static int __pnp_bios_get_dev_node(u8 * nodenum, char boot,
289 struct pnp_bios_node *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290{
291 u16 status;
Zachary Amsden5fe9fe3c2006-01-06 00:11:55 -0800292 u16 tmp_nodenum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 if (!pnp_bios_present())
294 return PNP_FUNCTION_NOT_SUPPORTED;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700295 if (!boot && pnpbios_dont_use_current_config)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 return PNP_FUNCTION_NOT_SUPPORTED;
Zachary Amsden5fe9fe3c2006-01-06 00:11:55 -0800297 tmp_nodenum = *nodenum;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700298 status =
299 call_pnp_bios(PNP_GET_SYS_DEV_NODE, 0, PNP_TS1, 0, PNP_TS2,
300 boot ? 2 : 1, PNP_DS, 0, &tmp_nodenum,
301 sizeof(tmp_nodenum), data, 65536);
Zachary Amsden5fe9fe3c2006-01-06 00:11:55 -0800302 *nodenum = tmp_nodenum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 return status;
304}
305
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700306int pnp_bios_get_dev_node(u8 * nodenum, char boot, struct pnp_bios_node *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307{
308 int status;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700309 status = __pnp_bios_get_dev_node(nodenum, boot, data);
310 if (status)
311 pnpbios_print_status("get_dev_node", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 return status;
313}
314
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315/*
316 * Call PnP BIOS with function 0x02, "set system device node"
317 * Input: *nodenum = desired node,
318 * boot = whether to set nonvolatile boot (!=0)
319 * or volatile current (0) config
320 */
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700321static int __pnp_bios_set_dev_node(u8 nodenum, char boot,
322 struct pnp_bios_node *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323{
324 u16 status;
325 if (!pnp_bios_present())
326 return PNP_FUNCTION_NOT_SUPPORTED;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700327 if (!boot && pnpbios_dont_use_current_config)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 return PNP_FUNCTION_NOT_SUPPORTED;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700329 status =
330 call_pnp_bios(PNP_SET_SYS_DEV_NODE, nodenum, 0, PNP_TS1,
331 boot ? 2 : 1, PNP_DS, 0, 0, data, 65536, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 return status;
333}
334
335int pnp_bios_set_dev_node(u8 nodenum, char boot, struct pnp_bios_node *data)
336{
337 int status;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700338 status = __pnp_bios_set_dev_node(nodenum, boot, data);
339 if (status) {
340 pnpbios_print_status("set_dev_node", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 return status;
342 }
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700343 if (!boot) { /* Update devlist */
344 status = pnp_bios_get_dev_node(&nodenum, boot, data);
345 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 return status;
347 }
348 return status;
349}
350
351#if needed
352/*
353 * Call PnP BIOS with function 0x03, "get event"
354 */
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700355static int pnp_bios_get_event(u16 * event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356{
357 u16 status;
358 if (!pnp_bios_present())
359 return PNP_FUNCTION_NOT_SUPPORTED;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700360 status = call_pnp_bios(PNP_GET_EVENT, 0, PNP_TS1, PNP_DS, 0, 0, 0, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 event, sizeof(u16), NULL, 0);
362 return status;
363}
364#endif
365
366#if needed
367/*
368 * Call PnP BIOS with function 0x04, "send message"
369 */
370static int pnp_bios_send_message(u16 message)
371{
372 u16 status;
373 if (!pnp_bios_present())
374 return PNP_FUNCTION_NOT_SUPPORTED;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700375 status =
376 call_pnp_bios(PNP_SEND_MESSAGE, message, PNP_DS, 0, 0, 0, 0, 0, 0,
377 0, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 return status;
379}
380#endif
381
382/*
383 * Call PnP BIOS with function 0x05, "get docking station information"
384 */
385int pnp_bios_dock_station_info(struct pnp_docking_station_info *data)
386{
387 u16 status;
388 if (!pnp_bios_present())
389 return PNP_FUNCTION_NOT_SUPPORTED;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700390 status =
391 call_pnp_bios(PNP_GET_DOCKING_STATION_INFORMATION, 0, PNP_TS1,
392 PNP_DS, 0, 0, 0, 0, data,
393 sizeof(struct pnp_docking_station_info), NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 return status;
395}
396
397#if needed
398/*
399 * Call PnP BIOS with function 0x09, "set statically allocated resource
400 * information"
401 */
402static int pnp_bios_set_stat_res(char *info)
403{
404 u16 status;
405 if (!pnp_bios_present())
406 return PNP_FUNCTION_NOT_SUPPORTED;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700407 status =
408 call_pnp_bios(PNP_SET_STATIC_ALLOCED_RES_INFO, 0, PNP_TS1, PNP_DS,
409 0, 0, 0, 0, info, *((u16 *) info), 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 return status;
411}
412#endif
413
414/*
415 * Call PnP BIOS with function 0x0a, "get statically allocated resource
416 * information"
417 */
418static int __pnp_bios_get_stat_res(char *info)
419{
420 u16 status;
421 if (!pnp_bios_present())
422 return PNP_FUNCTION_NOT_SUPPORTED;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700423 status =
424 call_pnp_bios(PNP_GET_STATIC_ALLOCED_RES_INFO, 0, PNP_TS1, PNP_DS,
425 0, 0, 0, 0, info, 65536, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 return status;
427}
428
429int pnp_bios_get_stat_res(char *info)
430{
431 int status;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700432 status = __pnp_bios_get_stat_res(info);
433 if (status)
434 pnpbios_print_status("get_stat_res", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 return status;
436}
437
438#if needed
439/*
440 * Call PnP BIOS with function 0x0b, "get APM id table"
441 */
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700442static int pnp_bios_apm_id_table(char *table, u16 * size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443{
444 u16 status;
445 if (!pnp_bios_present())
446 return PNP_FUNCTION_NOT_SUPPORTED;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700447 status =
448 call_pnp_bios(PNP_GET_APM_ID_TABLE, 0, PNP_TS2, 0, PNP_TS1, PNP_DS,
449 0, 0, table, *size, size, sizeof(u16));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 return status;
451}
452#endif
453
454/*
455 * Call PnP BIOS with function 0x40, "get isa pnp configuration structure"
456 */
457static int __pnp_bios_isapnp_config(struct pnp_isa_config_struc *data)
458{
459 u16 status;
460 if (!pnp_bios_present())
461 return PNP_FUNCTION_NOT_SUPPORTED;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700462 status =
463 call_pnp_bios(PNP_GET_PNP_ISA_CONFIG_STRUC, 0, PNP_TS1, PNP_DS, 0,
464 0, 0, 0, data, sizeof(struct pnp_isa_config_struc),
465 NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 return status;
467}
468
469int pnp_bios_isapnp_config(struct pnp_isa_config_struc *data)
470{
471 int status;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700472 status = __pnp_bios_isapnp_config(data);
473 if (status)
474 pnpbios_print_status("isapnp_config", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 return status;
476}
477
478/*
479 * Call PnP BIOS with function 0x41, "get ESCD info"
480 */
481static int __pnp_bios_escd_info(struct escd_info_struc *data)
482{
483 u16 status;
484 if (!pnp_bios_present())
485 return ESCD_FUNCTION_NOT_SUPPORTED;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700486 status =
487 call_pnp_bios(PNP_GET_ESCD_INFO, 0, PNP_TS1, 2, PNP_TS1, 4, PNP_TS1,
488 PNP_DS, data, sizeof(struct escd_info_struc), NULL,
489 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 return status;
491}
492
493int pnp_bios_escd_info(struct escd_info_struc *data)
494{
495 int status;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700496 status = __pnp_bios_escd_info(data);
497 if (status)
498 pnpbios_print_status("escd_info", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 return status;
500}
501
502/*
503 * Call PnP BIOS function 0x42, "read ESCD"
504 * nvram_base is determined by calling escd_info
505 */
506static int __pnp_bios_read_escd(char *data, u32 nvram_base)
507{
508 u16 status;
509 if (!pnp_bios_present())
510 return ESCD_FUNCTION_NOT_SUPPORTED;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700511 status =
512 call_pnp_bios(PNP_READ_ESCD, 0, PNP_TS1, PNP_TS2, PNP_DS, 0, 0, 0,
513 data, 65536, __va(nvram_base), 65536);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 return status;
515}
516
517int pnp_bios_read_escd(char *data, u32 nvram_base)
518{
519 int status;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700520 status = __pnp_bios_read_escd(data, nvram_base);
521 if (status)
522 pnpbios_print_status("read_escd", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 return status;
524}
525
526#if needed
527/*
528 * Call PnP BIOS function 0x43, "write ESCD"
529 */
530static int pnp_bios_write_escd(char *data, u32 nvram_base)
531{
532 u16 status;
533 if (!pnp_bios_present())
534 return ESCD_FUNCTION_NOT_SUPPORTED;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700535 status =
536 call_pnp_bios(PNP_WRITE_ESCD, 0, PNP_TS1, PNP_TS2, PNP_DS, 0, 0, 0,
537 data, 65536, __va(nvram_base), 65536);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 return status;
539}
540#endif
541
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542/*
543 * Initialization
544 */
545
546void pnpbios_calls_init(union pnp_bios_install_struct *header)
547{
548 int i;
549 spin_lock_init(&pnp_bios_lock);
550 pnp_bios_callpoint.offset = header->fields.pm16offset;
551 pnp_bios_callpoint.segment = PNP_CS16;
552
553 set_base(bad_bios_desc, __va((unsigned long)0x40 << 4));
554 _set_limit((char *)&bad_bios_desc, 4095 - (0x40 << 4));
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700555 for (i = 0; i < NR_CPUS; i++) {
556 struct desc_struct *gdt = get_cpu_gdt_table(i);
557 if (!gdt)
558 continue;
559 set_base(gdt[GDT_ENTRY_PNPBIOS_CS32], &pnp_bios_callfunc);
560 set_base(gdt[GDT_ENTRY_PNPBIOS_CS16],
561 __va(header->fields.pm16cseg));
562 set_base(gdt[GDT_ENTRY_PNPBIOS_DS],
563 __va(header->fields.pm16dseg));
564 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565}