meson.build (552fda48e095c16a14c9d275b4fdc5c392c386cf) | meson.build (0db9350e6e5aba3dc864d36756b01fb0922ad7cb) |
---|---|
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')) 4pci_ss.add(when: 'CONFIG_PCI_EXPRESS_DESIGNWARE', if_true: files('designware.c')) 5pci_ss.add(when: 'CONFIG_PCI_EXPRESS_GENERIC_BRIDGE', if_true: files('gpex.c')) 6pci_ss.add(when: ['CONFIG_PCI_EXPRESS_GENERIC_BRIDGE', 'CONFIG_ACPI'], if_true: files('gpex-acpi.c')) 7pci_ss.add(when: 'CONFIG_PCI_EXPRESS_Q35', if_true: files('q35.c')) 8pci_ss.add(when: 'CONFIG_PCI_EXPRESS_XILINX', if_true: files('xilinx-pcie.c')) --- 11 unchanged lines hidden (view full) --- 20# PowerPC E500 boards 21pci_ss.add(when: 'CONFIG_PPCE500_PCI', if_true: files('ppce500.c')) 22# Pegasos2 23pci_ss.add(when: 'CONFIG_MV64361', if_true: files('mv64361.c')) 24 25# ARM devices 26pci_ss.add(when: 'CONFIG_VERSATILE_PCI', if_true: files('versatile.c')) 27 | 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')) 4pci_ss.add(when: 'CONFIG_PCI_EXPRESS_DESIGNWARE', if_true: files('designware.c')) 5pci_ss.add(when: 'CONFIG_PCI_EXPRESS_GENERIC_BRIDGE', if_true: files('gpex.c')) 6pci_ss.add(when: ['CONFIG_PCI_EXPRESS_GENERIC_BRIDGE', 'CONFIG_ACPI'], if_true: files('gpex-acpi.c')) 7pci_ss.add(when: 'CONFIG_PCI_EXPRESS_Q35', if_true: files('q35.c')) 8pci_ss.add(when: 'CONFIG_PCI_EXPRESS_XILINX', if_true: files('xilinx-pcie.c')) --- 11 unchanged lines hidden (view full) --- 20# PowerPC E500 boards 21pci_ss.add(when: 'CONFIG_PPCE500_PCI', if_true: files('ppce500.c')) 22# Pegasos2 23pci_ss.add(when: 'CONFIG_MV64361', if_true: files('mv64361.c')) 24 25# ARM devices 26pci_ss.add(when: 'CONFIG_VERSATILE_PCI', if_true: files('versatile.c')) 27 |
28# HPPA devices 29pci_ss.add(when: 'CONFIG_DINO', if_true: files('dino.c')) 30 |
|
28softmmu_ss.add_all(when: 'CONFIG_PCI', if_true: pci_ss) 29 30specific_ss.add(when: 'CONFIG_PCI_POWERNV', if_true: files( 31 'pnv_phb3.c', 32 'pnv_phb3_msi.c', 33 'pnv_phb3_pbcq.c', 34 'pnv_phb4.c', 35 'pnv_phb4_pec.c' 36)) | 31softmmu_ss.add_all(when: 'CONFIG_PCI', if_true: pci_ss) 32 33specific_ss.add(when: 'CONFIG_PCI_POWERNV', if_true: files( 34 'pnv_phb3.c', 35 'pnv_phb3_msi.c', 36 'pnv_phb3_pbcq.c', 37 'pnv_phb4.c', 38 'pnv_phb4_pec.c' 39)) |