1# core qdev-related obj files, also used by *-user and unit tests 2hwcore_ss.add(files( 3 'bus.c', 4 'qdev-properties.c', 5 'qdev.c', 6 'reset.c', 7 'resettable.c', 8 'vmstate-if.c', 9 # irq.c needed for qdev GPIO handling: 10 'irq.c', 11 'clock.c', 12 'qdev-clock.c', 13)) 14if have_system 15 hwcore_ss.add(files( 16 'hotplug.c', 17 'qdev-hotplug.c', 18 )) 19else 20 hwcore_ss.add(files( 21 'hotplug-stubs.c', 22 )) 23endif 24 25common_ss.add(files('cpu-common.c')) 26common_ss.add(files('machine-smp.c')) 27system_ss.add(when: 'CONFIG_FITLOADER', if_true: files('loader-fit.c')) 28system_ss.add(when: 'CONFIG_GENERIC_LOADER', if_true: files('generic-loader.c')) 29system_ss.add(when: ['CONFIG_GUEST_LOADER', fdt], if_true: files('guest-loader.c')) 30system_ss.add(when: 'CONFIG_OR_IRQ', if_true: files('or-irq.c')) 31system_ss.add(when: 'CONFIG_PLATFORM_BUS', if_true: files('platform-bus.c')) 32system_ss.add(when: 'CONFIG_PTIMER', if_true: files('ptimer.c')) 33system_ss.add(when: 'CONFIG_REGISTER', if_true: files('register.c')) 34system_ss.add(when: 'CONFIG_SPLIT_IRQ', if_true: files('split-irq.c')) 35system_ss.add(when: 'CONFIG_XILINX_AXI', if_true: files('stream.c')) 36system_ss.add(when: 'CONFIG_PLATFORM_BUS', if_true: files('sysbus-fdt.c')) 37 38system_ss.add(files( 39 'cpu-sysemu.c', 40 'fw-path-provider.c', 41 'gpio.c', 42 'loader.c', 43 'machine-hmp-cmds.c', 44 'machine-qmp-cmds.c', 45 'machine.c', 46 'nmi.c', 47 'null-machine.c', 48 'numa.c', 49 'qdev-fw.c', 50 'qdev-properties-system.c', 51 'sysbus.c', 52 'vm-change-state-handler.c', 53 'clock-vmstate.c', 54)) 55