mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-08 02:03:56 -06:00
hw/ppc/ppc4xx_pci: Move ppc4xx_pci.c to hw/pci-host/
ppc4xx_pci.c is moved from the target specific ppc_ss[] meson source set to pci_ss[] which is common to all targets: the object is built once. Declare PPC4XX_PCI selector in pci-host/Kconfig. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Thomas Huth <thuth@redhat.com> Message-Id: <20240215105017.57748-4-philmd@linaro.org>
This commit is contained in:
parent
4d641f36e7
commit
55abb29e63
9 changed files with 12 additions and 7 deletions
|
@ -1423,6 +1423,7 @@ Bamboo
|
||||||
L: qemu-ppc@nongnu.org
|
L: qemu-ppc@nongnu.org
|
||||||
S: Orphan
|
S: Orphan
|
||||||
F: hw/ppc/ppc440_bamboo.c
|
F: hw/ppc/ppc440_bamboo.c
|
||||||
|
F: hw/pci-host/ppc4xx_pci.c
|
||||||
F: tests/avocado/ppc_bamboo.py
|
F: tests/avocado/ppc_bamboo.py
|
||||||
|
|
||||||
e500
|
e500
|
||||||
|
|
|
@ -6,6 +6,10 @@ config XEN_IGD_PASSTHROUGH
|
||||||
default y
|
default y
|
||||||
depends on XEN && PCI_I440FX
|
depends on XEN && PCI_I440FX
|
||||||
|
|
||||||
|
config PPC4XX_PCI
|
||||||
|
bool
|
||||||
|
select PCI
|
||||||
|
|
||||||
config RAVEN_PCI
|
config RAVEN_PCI
|
||||||
bool
|
bool
|
||||||
select PCI
|
select PCI
|
||||||
|
|
|
@ -14,6 +14,7 @@ pci_ss.add(when: 'CONFIG_REMOTE_PCIHOST', if_true: files('remote.c'))
|
||||||
pci_ss.add(when: 'CONFIG_SH_PCI', if_true: files('sh_pci.c'))
|
pci_ss.add(when: 'CONFIG_SH_PCI', if_true: files('sh_pci.c'))
|
||||||
|
|
||||||
# PPC devices
|
# PPC devices
|
||||||
|
pci_ss.add(when: 'CONFIG_PPC4XX_PCI', if_true: files('ppc4xx_pci.c'))
|
||||||
pci_ss.add(when: 'CONFIG_RAVEN_PCI', if_true: files('raven.c'))
|
pci_ss.add(when: 'CONFIG_RAVEN_PCI', if_true: files('raven.c'))
|
||||||
pci_ss.add(when: 'CONFIG_GRACKLE_PCI', if_true: files('grackle.c'))
|
pci_ss.add(when: 'CONFIG_GRACKLE_PCI', if_true: files('grackle.c'))
|
||||||
# NewWorld PowerMac
|
# NewWorld PowerMac
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
*
|
*
|
||||||
* Author: Yu Liu, <yu.liu@freescale.com>
|
* Author: Yu Liu, <yu.liu@freescale.com>
|
||||||
*
|
*
|
||||||
* This file is derived from hw/ppc4xx_pci.c,
|
* This file is derived from ppc4xx_pci.c,
|
||||||
* the copyright for that material belongs to the original owners.
|
* the copyright for that material belongs to the original owners.
|
||||||
*
|
*
|
||||||
* This is free software; you can redistribute it and/or modify
|
* This is free software; you can redistribute it and/or modify
|
||||||
|
|
|
@ -37,6 +37,10 @@ unin_data_read(uint64_t addr, unsigned len, uint64_t val) "read addr 0x%"PRIx64
|
||||||
unin_write(uint64_t addr, uint64_t value) "addr=0x%" PRIx64 " val=0x%"PRIx64
|
unin_write(uint64_t addr, uint64_t value) "addr=0x%" PRIx64 " val=0x%"PRIx64
|
||||||
unin_read(uint64_t addr, uint64_t value) "addr=0x%" PRIx64 " val=0x%"PRIx64
|
unin_read(uint64_t addr, uint64_t value) "addr=0x%" PRIx64 " val=0x%"PRIx64
|
||||||
|
|
||||||
|
# ppc4xx_pci.c
|
||||||
|
ppc4xx_pci_map_irq(int32_t devfn, int irq_num, int slot) "devfn 0x%x irq %d -> %d"
|
||||||
|
ppc4xx_pci_set_irq(int irq_num) "PCI irq %d"
|
||||||
|
|
||||||
# pnv_phb4.c
|
# pnv_phb4.c
|
||||||
pnv_phb4_xive_notify(uint64_t notif_port, uint64_t data) "notif=@0x%"PRIx64" data=0x%"PRIx64
|
pnv_phb4_xive_notify(uint64_t notif_port, uint64_t data) "notif=@0x%"PRIx64" data=0x%"PRIx64
|
||||||
pnv_phb4_xive_notify_ic(uint64_t addr, uint64_t data) "addr=@0x%"PRIx64" data=0x%"PRIx64
|
pnv_phb4_xive_notify_ic(uint64_t addr, uint64_t data) "addr=@0x%"PRIx64" data=0x%"PRIx64
|
||||||
|
|
|
@ -53,7 +53,7 @@ config PPC440
|
||||||
config PPC4XX
|
config PPC4XX
|
||||||
bool
|
bool
|
||||||
select BITBANG_I2C
|
select BITBANG_I2C
|
||||||
select PCI
|
select PPC4XX_PCI
|
||||||
select PPC_UIC
|
select PPC_UIC
|
||||||
|
|
||||||
config SAM460EX
|
config SAM460EX
|
||||||
|
|
|
@ -63,7 +63,6 @@ ppc_ss.add(when: 'CONFIG_PPC440', if_true: files(
|
||||||
'ppc440_pcix.c', 'ppc440_uc.c'))
|
'ppc440_pcix.c', 'ppc440_uc.c'))
|
||||||
ppc_ss.add(when: 'CONFIG_PPC4XX', if_true: files(
|
ppc_ss.add(when: 'CONFIG_PPC4XX', if_true: files(
|
||||||
'ppc4xx_devs.c',
|
'ppc4xx_devs.c',
|
||||||
'ppc4xx_pci.c',
|
|
||||||
'ppc4xx_sdram.c'))
|
'ppc4xx_sdram.c'))
|
||||||
ppc_ss.add(when: 'CONFIG_SAM460EX', if_true: files('sam460ex.c'))
|
ppc_ss.add(when: 'CONFIG_SAM460EX', if_true: files('sam460ex.c'))
|
||||||
# PReP
|
# PReP
|
||||||
|
|
|
@ -146,10 +146,6 @@ rs6000mc_size_read(uint32_t addr, uint32_t val) "read addr=0x%x val=0x%x"
|
||||||
rs6000mc_size_write(uint32_t addr, uint32_t val) "write addr=0x%x val=0x%x"
|
rs6000mc_size_write(uint32_t addr, uint32_t val) "write addr=0x%x val=0x%x"
|
||||||
rs6000mc_parity_read(uint32_t addr, uint32_t val) "read addr=0x%x val=0x%x"
|
rs6000mc_parity_read(uint32_t addr, uint32_t val) "read addr=0x%x val=0x%x"
|
||||||
|
|
||||||
# ppc4xx_pci.c
|
|
||||||
ppc4xx_pci_map_irq(int32_t devfn, int irq_num, int slot) "devfn 0x%x irq %d -> %d"
|
|
||||||
ppc4xx_pci_set_irq(int irq_num) "PCI irq %d"
|
|
||||||
|
|
||||||
# ppc440_pcix.c
|
# ppc440_pcix.c
|
||||||
ppc440_pcix_map_irq(int32_t devfn, int irq_num, int slot) "devfn 0x%x irq %d -> %d"
|
ppc440_pcix_map_irq(int32_t devfn, int irq_num, int slot) "devfn 0x%x irq %d -> %d"
|
||||||
ppc440_pcix_set_irq(int irq_num) "PCI irq %d"
|
ppc440_pcix_set_irq(int irq_num) "PCI irq %d"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue