]> git.proxmox.com Git - mirror_qemu.git/blame - hw/pci-host/meson.build
Merge tag 'net-pull-request' of https://github.com/jasowang/qemu into staging
[mirror_qemu.git] / hw / pci-host / meson.build
CommitLineData
9235a82d
MAL
1pci_ss = ss.source_set()
2pci_ss.add(when: 'CONFIG_PAM', if_true: files('pam.c'))
3pci_ss.add(when: 'CONFIG_PCI_BONITO', if_true: files('bonito.c'))
a7db759e 4pci_ss.add(when: 'CONFIG_GT64120', if_true: files('gt64120.c'))
9235a82d
MAL
5pci_ss.add(when: 'CONFIG_PCI_EXPRESS_DESIGNWARE', if_true: files('designware.c'))
6pci_ss.add(when: 'CONFIG_PCI_EXPRESS_GENERIC_BRIDGE', if_true: files('gpex.c'))
4872fdf7 7pci_ss.add(when: ['CONFIG_PCI_EXPRESS_GENERIC_BRIDGE', 'CONFIG_ACPI'], if_true: files('gpex-acpi.c'))
9235a82d
MAL
8pci_ss.add(when: 'CONFIG_PCI_EXPRESS_Q35', if_true: files('q35.c'))
9pci_ss.add(when: 'CONFIG_PCI_EXPRESS_XILINX', if_true: files('xilinx-pcie.c'))
10pci_ss.add(when: 'CONFIG_PCI_I440FX', if_true: files('i440fx.c'))
11pci_ss.add(when: 'CONFIG_PCI_SABRE', if_true: files('sabre.c'))
12pci_ss.add(when: 'CONFIG_XEN_IGD_PASSTHROUGH', if_true: files('xen_igd_pt.c'))
6fbd84d6 13pci_ss.add(when: 'CONFIG_REMOTE_PCIHOST', if_true: files('remote.c'))
c64bd101 14pci_ss.add(when: 'CONFIG_SH_PCI', if_true: files('sh_pci.c'))
9235a82d
MAL
15
16# PPC devices
46fd3201 17pci_ss.add(when: 'CONFIG_RAVEN_PCI', if_true: files('raven.c'))
9235a82d
MAL
18pci_ss.add(when: 'CONFIG_GRACKLE_PCI', if_true: files('grackle.c'))
19# NewWorld PowerMac
20pci_ss.add(when: 'CONFIG_UNIN_PCI', if_true: files('uninorth.c'))
21# PowerPC E500 boards
22pci_ss.add(when: 'CONFIG_PPCE500_PCI', if_true: files('ppce500.c'))
97d3b2cd
BZ
23# AmigaOne
24pci_ss.add(when: 'CONFIG_ARTICIA', if_true: files('articia.c'))
dcdf98a9
BZ
25# Pegasos2
26pci_ss.add(when: 'CONFIG_MV64361', if_true: files('mv64361.c'))
9235a82d
MAL
27
28# ARM devices
29pci_ss.add(when: 'CONFIG_VERSATILE_PCI', if_true: files('versatile.c'))
30
0db9350e 31# HPPA devices
8066102d 32specific_ss.add(when: 'CONFIG_ASTRO', if_true: files('astro.c'))
0db9350e
MCA
33pci_ss.add(when: 'CONFIG_DINO', if_true: files('dino.c'))
34
de6cd759 35system_ss.add_all(when: 'CONFIG_PCI', if_true: pci_ss)
9235a82d 36
995d9556 37specific_ss.add(when: 'CONFIG_PCI_POWERNV', if_true: files(
9235a82d
MAL
38 'pnv_phb3.c',
39 'pnv_phb3_msi.c',
40 'pnv_phb3_pbcq.c',
41 'pnv_phb4.c',
e4e6db52
DHB
42 'pnv_phb4_pec.c',
43 'pnv_phb.c',
9235a82d 44))