We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98229aa commit 3fda5bbCopy full SHA for 3fda5bb
arch/x86/Kconfig
@@ -495,11 +495,10 @@ config X86_INTEL_CE
495
496
config X86_INTEL_MID
497
bool "Intel MID platform support"
498
- depends on X86_32
499
depends on X86_EXTENDED_PLATFORM
500
depends on X86_PLATFORM_DEVICES
501
depends on PCI
502
- depends on PCI_GOANY
+ depends on X86_64 || (PCI_GOANY && X86_32)
503
depends on X86_IO_APIC
504
select SFI
505
select I2C
arch/x86/kernel/head64.c
@@ -192,5 +192,13 @@ void __init x86_64_start_reservations(char *real_mode_data)
192
193
reserve_ebda_region();
194
195
+ switch (boot_params.hdr.hardware_subarch) {
196
+ case X86_SUBARCH_INTEL_MID:
197
+ x86_intel_mid_early_setup();
198
+ break;
199
+ default:
200
201
+ }
202
+
203
start_kernel();
204
}
0 commit comments