1 // SPDX-License-Identifier: GPL-2.0-only
2 /* -*- linux-c -*- ------------------------------------------------------- *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 * Copyright 2007 rPath, Inc. - All Rights Reserved
6 * Copyright 2009 Intel Corporation; author H. Peter Anvin
8 * Original APM BIOS checking by Stephen Rothwell, May 1994
11 * ----------------------------------------------------------------------- */
14 * Get APM BIOS information
19 int query_apm_bios(void)
21 struct biosregs ireg, oreg;
23 /* APM BIOS installation check */
26 intcall(0x15, &ireg, &oreg);
28 if (oreg.flags & X86_EFLAGS_CF)
29 return -1; /* No APM BIOS */
31 if (oreg.bx != 0x504d) /* "PM" signature */
34 if (!(oreg.cx & 0x02)) /* 32 bits supported? */
37 /* Disconnect first, just in case */
39 intcall(0x15, &ireg, NULL);
43 intcall(0x15, &ireg, &oreg);
45 boot_params.apm_bios_info.cseg = oreg.ax;
46 boot_params.apm_bios_info.offset = oreg.ebx;
47 boot_params.apm_bios_info.cseg_16 = oreg.cx;
48 boot_params.apm_bios_info.dseg = oreg.dx;
49 boot_params.apm_bios_info.cseg_len = oreg.si;
50 boot_params.apm_bios_info.cseg_16_len = oreg.hsi;
51 boot_params.apm_bios_info.dseg_len = oreg.di;
53 if (oreg.flags & X86_EFLAGS_CF)
56 /* Redo the installation check as the 32-bit connect;
57 some BIOSes return different flags this way... */
60 intcall(0x15, &ireg, &oreg);
62 if ((oreg.eflags & X86_EFLAGS_CF) || oreg.bx != 0x504d) {
63 /* Failure with 32-bit connect, try to disconnect and ignore */
65 intcall(0x15, &ireg, NULL);
69 boot_params.apm_bios_info.version = oreg.ax;
70 boot_params.apm_bios_info.flags = oreg.cx;