c9c8ba69d5
Now that TYPE_ACPI_GED_X86 doesn't assign AcpiDeviceIfClass::madt_cpu any more it is the same as TYPE_ACPI_GED. Signed-off-by: Bernhard Beschow <shentey@gmail.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Message-Id: <20230908084234.17642-6-shentey@gmail.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
38 lines
1.3 KiB
Meson
38 lines
1.3 KiB
Meson
i386_ss = ss.source_set()
|
|
i386_ss.add(files(
|
|
'fw_cfg.c',
|
|
'kvmvapic.c',
|
|
'e820_memory_layout.c',
|
|
'multiboot.c',
|
|
'x86.c',
|
|
))
|
|
|
|
i386_ss.add(when: 'CONFIG_X86_IOMMU', if_true: files('x86-iommu.c'),
|
|
if_false: files('x86-iommu-stub.c'))
|
|
i386_ss.add(when: 'CONFIG_AMD_IOMMU', if_true: files('amd_iommu.c'))
|
|
i386_ss.add(when: 'CONFIG_I440FX', if_true: files('pc_piix.c'))
|
|
i386_ss.add(when: 'CONFIG_MICROVM', if_true: files('microvm.c', 'acpi-microvm.c', 'microvm-dt.c'))
|
|
i386_ss.add(when: 'CONFIG_Q35', if_true: files('pc_q35.c'))
|
|
i386_ss.add(when: 'CONFIG_VMMOUSE', if_true: files('vmmouse.c'))
|
|
i386_ss.add(when: 'CONFIG_VMPORT', if_true: files('vmport.c'))
|
|
i386_ss.add(when: 'CONFIG_VTD', if_true: files('intel_iommu.c'))
|
|
i386_ss.add(when: 'CONFIG_SGX', if_true: files('sgx-epc.c','sgx.c'),
|
|
if_false: files('sgx-stub.c'))
|
|
|
|
i386_ss.add(when: 'CONFIG_ACPI', if_true: files('acpi-common.c'))
|
|
i386_ss.add(when: 'CONFIG_PC', if_true: files(
|
|
'pc.c',
|
|
'pc_sysfw.c',
|
|
'acpi-build.c',
|
|
'port92.c'))
|
|
i386_ss.add(when: 'CONFIG_X86_FW_OVMF', if_true: files('pc_sysfw_ovmf.c'),
|
|
if_false: files('pc_sysfw_ovmf-stubs.c'))
|
|
|
|
subdir('kvm')
|
|
subdir('xen')
|
|
|
|
i386_ss.add_all(xenpv_ss)
|
|
i386_ss.add_all(xen_ss)
|
|
|
|
hw_arch += {'i386': i386_ss}
|