pci-host: Wire up new Astro/Elroy PCI bridge
authorHelge Deller <deller@gmx.de>
Sat, 14 Oct 2023 04:55:16 +0000 (06:55 +0200)
committerHelge Deller <deller@gmx.de>
Thu, 19 Oct 2023 22:47:38 +0000 (00:47 +0200)
Allow the Astro source to be built.

Signed-off-by: Helge Deller <deller@gmx.de>
hw/hppa/Kconfig
hw/pci-host/Kconfig
hw/pci-host/meson.build

index 5dd8b5b21e25fc164083b7ddc27e8f085ae00363..ff8528aaa8be6f910bc1fd23203bd4c76e596184 100644 (file)
@@ -3,6 +3,7 @@ config HPPA_B160L
     imply PCI_DEVICES
     imply E1000_PCI
     imply VIRTIO_VGA
+    select ASTRO
     select DINO
     select LASI
     select SERIAL
index a07070eddf2df7bdfdd6b8aff01ba78da7352ef0..54a609d2cadd8d10458a90826725a46627063af8 100644 (file)
@@ -82,6 +82,10 @@ config DINO
     bool
     select PCI
 
+config ASTRO
+    bool
+    select PCI
+
 config GT64120
     bool
     select PCI
index 64eada76fe691da793775f677ed5ff7403ef3c16..f891f026cb287e4e33d3a4fbbbeda2b13df4101c 100644 (file)
@@ -27,6 +27,7 @@ pci_ss.add(when: 'CONFIG_MV64361', if_true: files('mv64361.c'))
 pci_ss.add(when: 'CONFIG_VERSATILE_PCI', if_true: files('versatile.c'))
 
 # HPPA devices
+pci_ss.add(when: 'CONFIG_ASTRO', if_true: files('astro.c'))
 pci_ss.add(when: 'CONFIG_DINO', if_true: files('dino.c'))
 
 system_ss.add_all(when: 'CONFIG_PCI', if_true: pci_ss)