Merge branch 'clockevents/4.21' of http://git.linaro.org/people/daniel.lezcano/linux...
[linux/fpc-iii.git] / arch / x86 / kernel / platform-quirks.c
blobb348a672f71d5ecd381822deab84585d35d1afc8
1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/kernel.h>
3 #include <linux/init.h>
5 #include <asm/setup.h>
6 #include <asm/bios_ebda.h>
8 void __init x86_early_init_platform_quirks(void)
10 x86_platform.legacy.i8042 = X86_LEGACY_I8042_EXPECTED_PRESENT;
11 x86_platform.legacy.rtc = 1;
12 x86_platform.legacy.warm_reset = 1;
13 x86_platform.legacy.reserve_bios_regions = 0;
14 x86_platform.legacy.devices.pnpbios = 1;
16 switch (boot_params.hdr.hardware_subarch) {
17 case X86_SUBARCH_PC:
18 x86_platform.legacy.reserve_bios_regions = 1;
19 break;
20 case X86_SUBARCH_XEN:
21 x86_platform.legacy.devices.pnpbios = 0;
22 x86_platform.legacy.rtc = 0;
23 break;
24 case X86_SUBARCH_INTEL_MID:
25 case X86_SUBARCH_CE4100:
26 x86_platform.legacy.devices.pnpbios = 0;
27 x86_platform.legacy.rtc = 0;
28 x86_platform.legacy.i8042 = X86_LEGACY_I8042_PLATFORM_ABSENT;
29 break;
32 if (x86_platform.set_legacy_features)
33 x86_platform.set_legacy_features();
36 bool __init x86_pnpbios_disabled(void)
38 return x86_platform.legacy.devices.pnpbios == 0;
41 #if defined(CONFIG_PNPBIOS)
42 bool __init arch_pnpbios_disabled(void)
44 return x86_pnpbios_disabled();
46 #endif