blob: 769d265b221b9c3abee2b8ea86a1d84ef00ac795 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * bioscalls.c - the lowlevel layer of the PnPBIOS driver
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 */
4
5#include <linux/types.h>
6#include <linux/module.h>
7#include <linux/init.h>
8#include <linux/linkage.h>
9#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/device.h>
11#include <linux/pnp.h>
12#include <linux/mm.h>
13#include <linux/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/kmod.h>
15#include <linux/completion.h>
16#include <linux/spinlock.h>
17
18#include <asm/page.h>
19#include <asm/desc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <asm/byteorder.h>
21
22#include "pnpbios.h"
23
24static struct {
Bjorn Helgaas9dd78462007-07-26 10:41:20 -070025 u16 offset;
26 u16 segment;
Linus Torvalds1da177e2005-04-16 15:20:36 -070027} pnp_bios_callpoint;
28
Linus Torvalds1da177e2005-04-16 15:20:36 -070029/*
30 * These are some opcodes for a "static asmlinkage"
31 * As this code is *not* executed inside the linux kernel segment, but in a
32 * alias at offset 0, we need a far return that can not be compiled by
33 * default (please, prove me wrong! this is *really* ugly!)
34 * This is the only way to get the bios to return into the kernel code,
35 * because the bios code runs in 16 bit protected mode and therefore can only
36 * return to the caller if the call is within the first 64kB, and the linux
37 * kernel begins at offset 3GB...
38 */
39
40asmlinkage void pnp_bios_callfunc(void);
41
Bjorn Helgaas9dd78462007-07-26 10:41:20 -070042__asm__(".text \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 __ALIGN_STR "\n"
44 "pnp_bios_callfunc:\n"
45 " pushl %edx \n"
46 " pushl %ecx \n"
47 " pushl %ebx \n"
48 " pushl %eax \n"
49 " lcallw *pnp_bios_callpoint\n"
50 " addl $16, %esp \n"
Bjorn Helgaas07d4e9a2007-07-26 10:41:21 -070051 " lret \n"
52 ".previous \n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#define Q2_SET_SEL(cpu, selname, address, size) \
55do { \
Akinobu Mita57594742009-07-19 00:11:06 +090056 struct desc_struct *gdt = get_cpu_gdt_table((cpu)); \
57 set_desc_base(&gdt[(selname) >> 3], (u32)(address)); \
58 set_desc_limit(&gdt[(selname) >> 3], (size) - 1); \
Linus Torvalds1da177e2005-04-16 15:20:36 -070059} while(0)
60
Akinobu Mitac7425312009-08-09 17:03:52 +090061static struct desc_struct bad_bios_desc = GDT_ENTRY_INIT(0x4092,
62 (unsigned long)__va(0x400UL), PAGE_SIZE - 0x400 - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64/*
65 * At some point we want to use this stack frame pointer to unwind
66 * after PnP BIOS oopses.
67 */
68
69u32 pnp_bios_fault_esp;
70u32 pnp_bios_fault_eip;
71u32 pnp_bios_is_utter_crap = 0;
72
73static spinlock_t pnp_bios_lock;
74
Linus Torvalds1da177e2005-04-16 15:20:36 -070075/*
76 * Support Functions
77 */
78
79static inline u16 call_pnp_bios(u16 func, u16 arg1, u16 arg2, u16 arg3,
80 u16 arg4, u16 arg5, u16 arg6, u16 arg7,
81 void *ts1_base, u32 ts1_size,
82 void *ts2_base, u32 ts2_size)
83{
84 unsigned long flags;
85 u16 status;
86 struct desc_struct save_desc_40;
87 int cpu;
88
89 /*
90 * PnP BIOSes are generally not terribly re-entrant.
91 * Also, don't rely on them to save everything correctly.
92 */
Bjorn Helgaas9dd78462007-07-26 10:41:20 -070093 if (pnp_bios_is_utter_crap)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 return PNP_FUNCTION_NOT_SUPPORTED;
95
96 cpu = get_cpu();
Zachary Amsden7c4cb602006-01-06 00:11:47 -080097 save_desc_40 = get_cpu_gdt_table(cpu)[0x40 / 8];
98 get_cpu_gdt_table(cpu)[0x40 / 8] = bad_bios_desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100 /* On some boxes IRQ's during PnP BIOS calls are deadly. */
101 spin_lock_irqsave(&pnp_bios_lock, flags);
102
103 /* The lock prevents us bouncing CPU here */
104 if (ts1_size)
105 Q2_SET_SEL(smp_processor_id(), PNP_TS1, ts1_base, ts1_size);
106 if (ts2_size)
107 Q2_SET_SEL(smp_processor_id(), PNP_TS2, ts2_base, ts2_size);
108
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700109 __asm__ __volatile__("pushl %%ebp\n\t"
110 "pushl %%edi\n\t"
111 "pushl %%esi\n\t"
112 "pushl %%ds\n\t"
113 "pushl %%es\n\t"
114 "pushl %%fs\n\t"
115 "pushl %%gs\n\t"
116 "pushfl\n\t"
117 "movl %%esp, pnp_bios_fault_esp\n\t"
118 "movl $1f, pnp_bios_fault_eip\n\t"
119 "lcall %5,%6\n\t"
120 "1:popfl\n\t"
121 "popl %%gs\n\t"
122 "popl %%fs\n\t"
123 "popl %%es\n\t"
124 "popl %%ds\n\t"
125 "popl %%esi\n\t"
Bjorn Helgaas07d4e9a2007-07-26 10:41:21 -0700126 "popl %%edi\n\t"
127 "popl %%ebp\n\t":"=a"(status)
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700128 :"0"((func) | (((u32) arg1) << 16)),
129 "b"((arg2) | (((u32) arg3) << 16)),
130 "c"((arg4) | (((u32) arg5) << 16)),
131 "d"((arg6) | (((u32) arg7) << 16)),
132 "i"(PNP_CS32), "i"(0)
133 :"memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 spin_unlock_irqrestore(&pnp_bios_lock, flags);
135
Zachary Amsden7c4cb602006-01-06 00:11:47 -0800136 get_cpu_gdt_table(cpu)[0x40 / 8] = save_desc_40;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 put_cpu();
138
139 /* If we get here and this is set then the PnP BIOS faulted on us. */
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700140 if (pnp_bios_is_utter_crap) {
141 printk(KERN_ERR
142 "PnPBIOS: Warning! Your PnP BIOS caused a fatal error. Attempting to continue\n");
143 printk(KERN_ERR
144 "PnPBIOS: You may need to reboot with the \"pnpbios=off\" option to operate stably\n");
145 printk(KERN_ERR
146 "PnPBIOS: Check with your vendor for an updated BIOS\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 }
148
149 return status;
150}
151
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700152void pnpbios_print_status(const char *module, u16 status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700154 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 case PNP_SUCCESS:
156 printk(KERN_ERR "PnPBIOS: %s: function successful\n", module);
157 break;
158 case PNP_NOT_SET_STATICALLY:
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700159 printk(KERN_ERR "PnPBIOS: %s: unable to set static resources\n",
160 module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 break;
162 case PNP_UNKNOWN_FUNCTION:
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700163 printk(KERN_ERR "PnPBIOS: %s: invalid function number passed\n",
164 module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 break;
166 case PNP_FUNCTION_NOT_SUPPORTED:
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700167 printk(KERN_ERR
168 "PnPBIOS: %s: function not supported on this system\n",
169 module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 break;
171 case PNP_INVALID_HANDLE:
172 printk(KERN_ERR "PnPBIOS: %s: invalid handle\n", module);
173 break;
174 case PNP_BAD_PARAMETER:
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700175 printk(KERN_ERR "PnPBIOS: %s: invalid parameters were passed\n",
176 module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 break;
178 case PNP_SET_FAILED:
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700179 printk(KERN_ERR "PnPBIOS: %s: unable to set resources\n",
180 module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 break;
182 case PNP_EVENTS_NOT_PENDING:
183 printk(KERN_ERR "PnPBIOS: %s: no events are pending\n", module);
184 break;
185 case PNP_SYSTEM_NOT_DOCKED:
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700186 printk(KERN_ERR "PnPBIOS: %s: the system is not docked\n",
187 module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 break;
189 case PNP_NO_ISA_PNP_CARDS:
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700190 printk(KERN_ERR
191 "PnPBIOS: %s: no isapnp cards are installed on this system\n",
192 module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 break;
194 case PNP_UNABLE_TO_DETERMINE_DOCK_CAPABILITIES:
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700195 printk(KERN_ERR
196 "PnPBIOS: %s: cannot determine the capabilities of the docking station\n",
197 module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 break;
199 case PNP_CONFIG_CHANGE_FAILED_NO_BATTERY:
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700200 printk(KERN_ERR
201 "PnPBIOS: %s: unable to undock, the system does not have a battery\n",
202 module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 break;
204 case PNP_CONFIG_CHANGE_FAILED_RESOURCE_CONFLICT:
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700205 printk(KERN_ERR
206 "PnPBIOS: %s: could not dock due to resource conflicts\n",
207 module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 break;
209 case PNP_BUFFER_TOO_SMALL:
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700210 printk(KERN_ERR "PnPBIOS: %s: the buffer passed is too small\n",
211 module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 break;
213 case PNP_USE_ESCD_SUPPORT:
214 printk(KERN_ERR "PnPBIOS: %s: use ESCD instead\n", module);
215 break;
216 case PNP_MESSAGE_NOT_SUPPORTED:
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700217 printk(KERN_ERR "PnPBIOS: %s: the message is unsupported\n",
218 module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 break;
220 case PNP_HARDWARE_ERROR:
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300221 printk(KERN_ERR "PnPBIOS: %s: a hardware failure has occurred\n",
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700222 module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 break;
224 default:
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700225 printk(KERN_ERR "PnPBIOS: %s: unexpected status 0x%x\n", module,
226 status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 break;
228 }
229}
230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231/*
232 * PnP BIOS Low Level Calls
233 */
234
235#define PNP_GET_NUM_SYS_DEV_NODES 0x00
236#define PNP_GET_SYS_DEV_NODE 0x01
237#define PNP_SET_SYS_DEV_NODE 0x02
238#define PNP_GET_EVENT 0x03
239#define PNP_SEND_MESSAGE 0x04
240#define PNP_GET_DOCKING_STATION_INFORMATION 0x05
241#define PNP_SET_STATIC_ALLOCED_RES_INFO 0x09
242#define PNP_GET_STATIC_ALLOCED_RES_INFO 0x0a
243#define PNP_GET_APM_ID_TABLE 0x0b
244#define PNP_GET_PNP_ISA_CONFIG_STRUC 0x40
245#define PNP_GET_ESCD_INFO 0x41
246#define PNP_READ_ESCD 0x42
247#define PNP_WRITE_ESCD 0x43
248
249/*
250 * Call PnP BIOS with function 0x00, "get number of system device nodes"
251 */
252static int __pnp_bios_dev_node_info(struct pnp_dev_node_info *data)
253{
254 u16 status;
Bjorn Helgaas07d4e9a2007-07-26 10:41:21 -0700255
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 if (!pnp_bios_present())
257 return PNP_FUNCTION_NOT_SUPPORTED;
Bjorn Helgaas07d4e9a2007-07-26 10:41:21 -0700258 status = call_pnp_bios(PNP_GET_NUM_SYS_DEV_NODES, 0, PNP_TS1, 2,
259 PNP_TS1, PNP_DS, 0, 0, data,
260 sizeof(struct pnp_dev_node_info), NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 data->no_nodes &= 0xff;
262 return status;
263}
264
265int pnp_bios_dev_node_info(struct pnp_dev_node_info *data)
266{
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700267 int status = __pnp_bios_dev_node_info(data);
Bjorn Helgaas07d4e9a2007-07-26 10:41:21 -0700268
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700269 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 Helgaas07d4e9a2007-07-26 10:41:21 -0700288static int __pnp_bios_get_dev_node(u8 *nodenum, char boot,
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700289 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;
Bjorn Helgaas07d4e9a2007-07-26 10:41:21 -0700293
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 if (!pnp_bios_present())
295 return PNP_FUNCTION_NOT_SUPPORTED;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700296 if (!boot && pnpbios_dont_use_current_config)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 return PNP_FUNCTION_NOT_SUPPORTED;
Zachary Amsden5fe9fe3c2006-01-06 00:11:55 -0800298 tmp_nodenum = *nodenum;
Bjorn Helgaas07d4e9a2007-07-26 10:41:21 -0700299 status = 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 Helgaas07d4e9a2007-07-26 10:41:21 -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 Helgaas07d4e9a2007-07-26 10:41:21 -0700309
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700310 status = __pnp_bios_get_dev_node(nodenum, boot, data);
311 if (status)
312 pnpbios_print_status("get_dev_node", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 return status;
314}
315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316/*
317 * Call PnP BIOS with function 0x02, "set system device node"
318 * Input: *nodenum = desired node,
319 * boot = whether to set nonvolatile boot (!=0)
320 * or volatile current (0) config
321 */
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700322static int __pnp_bios_set_dev_node(u8 nodenum, char boot,
323 struct pnp_bios_node *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324{
325 u16 status;
Bjorn Helgaas07d4e9a2007-07-26 10:41:21 -0700326
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 if (!pnp_bios_present())
328 return PNP_FUNCTION_NOT_SUPPORTED;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700329 if (!boot && pnpbios_dont_use_current_config)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 return PNP_FUNCTION_NOT_SUPPORTED;
Bjorn Helgaas07d4e9a2007-07-26 10:41:21 -0700331 status = call_pnp_bios(PNP_SET_SYS_DEV_NODE, nodenum, 0, PNP_TS1,
332 boot ? 2 : 1, PNP_DS, 0, 0, data, 65536, NULL,
333 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 return status;
335}
336
337int pnp_bios_set_dev_node(u8 nodenum, char boot, struct pnp_bios_node *data)
338{
339 int status;
Bjorn Helgaas07d4e9a2007-07-26 10:41:21 -0700340
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700341 status = __pnp_bios_set_dev_node(nodenum, boot, data);
342 if (status) {
343 pnpbios_print_status("set_dev_node", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 return status;
345 }
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700346 if (!boot) { /* Update devlist */
347 status = pnp_bios_get_dev_node(&nodenum, boot, data);
348 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 return status;
350 }
351 return status;
352}
353
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354/*
355 * Call PnP BIOS with function 0x05, "get docking station information"
356 */
357int pnp_bios_dock_station_info(struct pnp_docking_station_info *data)
358{
359 u16 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 if (!pnp_bios_present())
362 return PNP_FUNCTION_NOT_SUPPORTED;
Bjorn Helgaas07d4e9a2007-07-26 10:41:21 -0700363 status = call_pnp_bios(PNP_GET_DOCKING_STATION_INFORMATION, 0, PNP_TS1,
364 PNP_DS, 0, 0, 0, 0, data,
365 sizeof(struct pnp_docking_station_info), NULL,
366 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 return status;
368}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
370/*
371 * Call PnP BIOS with function 0x0a, "get statically allocated resource
372 * information"
373 */
374static int __pnp_bios_get_stat_res(char *info)
375{
376 u16 status;
Bjorn Helgaas07d4e9a2007-07-26 10:41:21 -0700377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 if (!pnp_bios_present())
379 return PNP_FUNCTION_NOT_SUPPORTED;
Bjorn Helgaas07d4e9a2007-07-26 10:41:21 -0700380 status = call_pnp_bios(PNP_GET_STATIC_ALLOCED_RES_INFO, 0, PNP_TS1,
381 PNP_DS, 0, 0, 0, 0, info, 65536, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 return status;
383}
384
385int pnp_bios_get_stat_res(char *info)
386{
387 int status;
Bjorn Helgaas07d4e9a2007-07-26 10:41:21 -0700388
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700389 status = __pnp_bios_get_stat_res(info);
390 if (status)
391 pnpbios_print_status("get_stat_res", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 return status;
393}
394
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395/*
396 * Call PnP BIOS with function 0x40, "get isa pnp configuration structure"
397 */
398static int __pnp_bios_isapnp_config(struct pnp_isa_config_struc *data)
399{
400 u16 status;
Bjorn Helgaas07d4e9a2007-07-26 10:41:21 -0700401
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 if (!pnp_bios_present())
403 return PNP_FUNCTION_NOT_SUPPORTED;
Bjorn Helgaas07d4e9a2007-07-26 10:41:21 -0700404 status = call_pnp_bios(PNP_GET_PNP_ISA_CONFIG_STRUC, 0, PNP_TS1, PNP_DS,
405 0, 0, 0, 0, data,
406 sizeof(struct pnp_isa_config_struc), NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 return status;
408}
409
410int pnp_bios_isapnp_config(struct pnp_isa_config_struc *data)
411{
412 int status;
Bjorn Helgaas07d4e9a2007-07-26 10:41:21 -0700413
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700414 status = __pnp_bios_isapnp_config(data);
415 if (status)
416 pnpbios_print_status("isapnp_config", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 return status;
418}
419
420/*
421 * Call PnP BIOS with function 0x41, "get ESCD info"
422 */
423static int __pnp_bios_escd_info(struct escd_info_struc *data)
424{
425 u16 status;
Bjorn Helgaas07d4e9a2007-07-26 10:41:21 -0700426
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 if (!pnp_bios_present())
428 return ESCD_FUNCTION_NOT_SUPPORTED;
Bjorn Helgaas07d4e9a2007-07-26 10:41:21 -0700429 status = call_pnp_bios(PNP_GET_ESCD_INFO, 0, PNP_TS1, 2, PNP_TS1, 4,
430 PNP_TS1, PNP_DS, data,
431 sizeof(struct escd_info_struc), NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 return status;
433}
434
435int pnp_bios_escd_info(struct escd_info_struc *data)
436{
437 int status;
Bjorn Helgaas07d4e9a2007-07-26 10:41:21 -0700438
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700439 status = __pnp_bios_escd_info(data);
440 if (status)
441 pnpbios_print_status("escd_info", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 return status;
443}
444
445/*
446 * Call PnP BIOS function 0x42, "read ESCD"
447 * nvram_base is determined by calling escd_info
448 */
449static int __pnp_bios_read_escd(char *data, u32 nvram_base)
450{
451 u16 status;
Bjorn Helgaas07d4e9a2007-07-26 10:41:21 -0700452
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 if (!pnp_bios_present())
454 return ESCD_FUNCTION_NOT_SUPPORTED;
Bjorn Helgaas07d4e9a2007-07-26 10:41:21 -0700455 status = call_pnp_bios(PNP_READ_ESCD, 0, PNP_TS1, PNP_TS2, PNP_DS, 0, 0,
456 0, data, 65536, __va(nvram_base), 65536);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 return status;
458}
459
460int pnp_bios_read_escd(char *data, u32 nvram_base)
461{
462 int status;
Bjorn Helgaas07d4e9a2007-07-26 10:41:21 -0700463
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700464 status = __pnp_bios_read_escd(data, nvram_base);
465 if (status)
466 pnpbios_print_status("read_escd", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 return status;
468}
469
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470void pnpbios_calls_init(union pnp_bios_install_struct *header)
471{
472 int i;
Bjorn Helgaas07d4e9a2007-07-26 10:41:21 -0700473
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 spin_lock_init(&pnp_bios_lock);
475 pnp_bios_callpoint.offset = header->fields.pm16offset;
476 pnp_bios_callpoint.segment = PNP_CS16;
477
Rusty Russell6aaa8ce2009-01-01 10:12:14 +1030478 for_each_possible_cpu(i) {
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700479 struct desc_struct *gdt = get_cpu_gdt_table(i);
480 if (!gdt)
481 continue;
Akinobu Mita57594742009-07-19 00:11:06 +0900482 set_desc_base(&gdt[GDT_ENTRY_PNPBIOS_CS32],
483 (unsigned long)&pnp_bios_callfunc);
484 set_desc_base(&gdt[GDT_ENTRY_PNPBIOS_CS16],
485 (unsigned long)__va(header->fields.pm16cseg));
486 set_desc_base(&gdt[GDT_ENTRY_PNPBIOS_DS],
487 (unsigned long)__va(header->fields.pm16dseg));
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700488 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489}