2019-08-15 13:24:58 +02:00
|
|
|
# core qdev-related obj files, also used by *-user and unit tests
|
2021-10-28 16:34:19 +02:00
|
|
|
hwcore_ss.add(files(
|
2019-08-15 13:24:58 +02:00
|
|
|
'bus.c',
|
|
|
|
'qdev-properties.c',
|
|
|
|
'qdev.c',
|
|
|
|
'reset.c',
|
|
|
|
'resettable.c',
|
|
|
|
'vmstate-if.c',
|
|
|
|
# irq.c needed for qdev GPIO handling:
|
|
|
|
'irq.c',
|
|
|
|
'clock.c',
|
|
|
|
'qdev-clock.c',
|
2021-10-28 16:34:19 +02:00
|
|
|
))
|
2021-10-28 16:57:35 +02:00
|
|
|
if have_system
|
|
|
|
hwcore_ss.add(files(
|
|
|
|
'hotplug.c',
|
|
|
|
'qdev-hotplug.c',
|
|
|
|
))
|
|
|
|
else
|
|
|
|
hwcore_ss.add(files(
|
|
|
|
'hotplug-stubs.c',
|
|
|
|
))
|
|
|
|
endif
|
2019-08-15 13:24:58 +02:00
|
|
|
|
2021-05-17 12:51:22 +02:00
|
|
|
common_ss.add(files('cpu-common.c'))
|
2021-10-26 05:46:58 +02:00
|
|
|
common_ss.add(files('machine-smp.c'))
|
2021-10-28 16:37:47 +02:00
|
|
|
softmmu_ss.add(when: 'CONFIG_FITLOADER', if_true: files('loader-fit.c'))
|
|
|
|
softmmu_ss.add(when: 'CONFIG_GENERIC_LOADER', if_true: files('generic-loader.c'))
|
|
|
|
softmmu_ss.add(when: ['CONFIG_GUEST_LOADER', fdt], if_true: files('guest-loader.c'))
|
|
|
|
softmmu_ss.add(when: 'CONFIG_OR_IRQ', if_true: files('or-irq.c'))
|
|
|
|
softmmu_ss.add(when: 'CONFIG_PLATFORM_BUS', if_true: files('platform-bus.c'))
|
|
|
|
softmmu_ss.add(when: 'CONFIG_PTIMER', if_true: files('ptimer.c'))
|
|
|
|
softmmu_ss.add(when: 'CONFIG_REGISTER', if_true: files('register.c'))
|
|
|
|
softmmu_ss.add(when: 'CONFIG_SPLIT_IRQ', if_true: files('split-irq.c'))
|
|
|
|
softmmu_ss.add(when: 'CONFIG_XILINX_AXI', if_true: files('stream.c'))
|
2022-04-28 01:41:42 +02:00
|
|
|
softmmu_ss.add(when: 'CONFIG_PLATFORM_BUS', if_true: files('sysbus-fdt.c'))
|
2019-08-15 13:24:58 +02:00
|
|
|
|
|
|
|
softmmu_ss.add(files(
|
2021-05-17 12:51:22 +02:00
|
|
|
'cpu-sysemu.c',
|
2020-12-07 23:07:09 +01:00
|
|
|
'fw-path-provider.c',
|
2019-04-25 22:00:48 +02:00
|
|
|
'gpio.c',
|
2019-08-15 13:24:58 +02:00
|
|
|
'loader.c',
|
|
|
|
'machine-hmp-cmds.c',
|
|
|
|
'machine.c',
|
|
|
|
'nmi.c',
|
|
|
|
'null-machine.c',
|
|
|
|
'qdev-fw.c',
|
|
|
|
'qdev-properties-system.c',
|
|
|
|
'sysbus.c',
|
|
|
|
'vm-change-state-handler.c',
|
|
|
|
'clock-vmstate.c',
|
|
|
|
))
|
|
|
|
|
|
|
|
specific_ss.add(when: 'CONFIG_SOFTMMU', if_true: files(
|
|
|
|
'machine-qmp-cmds.c',
|
|
|
|
'numa.c',
|
|
|
|
))
|