1 /* -*- linux-c -*- ------------------------------------------------------- *
3 * Copyright (C) 1991, 1992 Linus Torvalds
4 * Copyright 2007 rPath, Inc. - All Rights Reserved
6 * Original APM BIOS checking by Stephen Rothwell, May 1994
7 * (sfr@canb.auug.org.au)
9 * This file is part of the Linux kernel, and is made available under
10 * the terms of the GNU General Public License version 2.
12 * ----------------------------------------------------------------------- */
15 * arch/i386/boot/apm.c
17 * Get APM BIOS information
22 int query_apm_bios(void)
24 u16 ax
, bx
, cx
, dx
, di
;
28 /* APM BIOS installation check */
31 asm volatile("pushl %%ebp ; int $0x15 ; popl %%ebp ; setc %0"
32 : "=d" (err
), "+a" (ax
), "+b" (bx
), "+c" (cx
)
36 return -1; /* No APM BIOS */
38 if (bx
!= 0x504d) /* "PM" signature */
41 if (!(cx
& 0x02)) /* 32 bits supported? */
44 /* Disconnect first, just in case */
47 asm volatile("pushl %%ebp ; int $0x15 ; popl %%ebp"
48 : "+a" (ax
), "+b" (bx
)
49 : : "ecx", "edx", "esi", "edi");
56 asm volatile("pushl %%ebp ; int $0x15 ; popl %%ebp ; setc %6"
57 : "=a" (ax
), "+b" (ebx
), "+c" (cx
), "+d" (dx
),
58 "+S" (esi
), "+D" (di
), "=m" (err
)
61 boot_params
.apm_bios_info
.cseg
= ax
;
62 boot_params
.apm_bios_info
.offset
= ebx
;
63 boot_params
.apm_bios_info
.cseg_16
= cx
;
64 boot_params
.apm_bios_info
.dseg
= dx
;
65 boot_params
.apm_bios_info
.cseg_len
= (u16
)esi
;
66 boot_params
.apm_bios_info
.cseg_16_len
= esi
>> 16;
67 boot_params
.apm_bios_info
.dseg_len
= di
;
72 /* Redo the installation check as the 32-bit connect;
73 some BIOSes return different flags this way... */
77 asm volatile("pushl %%ebp ; int $0x15 ; popl %%ebp ; setc %0"
78 : "=d" (err
), "+a" (ax
), "+b" (bx
), "+c" (cx
)
81 if (err
|| bx
!= 0x504d) {
82 /* Failure with 32-bit connect, try to disconect and ignore */
85 asm volatile("pushl %%ebp ; int $0x15 ; popl %%ebp"
86 : "+a" (ax
), "+b" (bx
)
87 : : "ecx", "edx", "esi", "edi");
91 boot_params
.apm_bios_info
.version
= ax
;
92 boot_params
.apm_bios_info
.flags
= cx
;