diff options
author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2025-01-21 08:31:52 +0100 |
---|---|---|
committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2025-01-31 19:36:44 +0100 |
commit | 29df910401a66ee65f553eecebf01993115082d2 (patch) | |
tree | d72099a65f75e5603aeb0a8388985ed4f25f2ee6 /hw/char | |
parent | c17943b00fd98c64d2fa591f1da72cb9a4f61133 (diff) | |
download | qemu-29df910401a66ee65f553eecebf01993115082d2.zip qemu-29df910401a66ee65f553eecebf01993115082d2.tar.gz qemu-29df910401a66ee65f553eecebf01993115082d2.tar.bz2 |
hw/ipack: Clarify KConfig symbols
Split IPACK Kconfig key as {IPACK, TPCI200, IP_OCTAL_232}
- IPack is a bus
- TPCI200 is a PCI device providing an IPack bus
- IP-Octal232 is an IPack device plugged on an IPack bus
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Acked-by: Fabiano Rosas <farosas@suse.de>
Message-Id: <20250121155526.29982-3-philmd@linaro.org>
Diffstat (limited to 'hw/char')
-rw-r--r-- | hw/char/Kconfig | 5 | ||||
-rw-r--r-- | hw/char/meson.build | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/hw/char/Kconfig b/hw/char/Kconfig index 4b73a80..1dc20ee 100644 --- a/hw/char/Kconfig +++ b/hw/char/Kconfig @@ -78,3 +78,8 @@ config GOLDFISH_TTY config SHAKTI_UART bool + +config IP_OCTAL_232 + bool + default y + depends on IPACK diff --git a/hw/char/meson.build b/hw/char/meson.build index 1750834..ed3529c 100644 --- a/hw/char/meson.build +++ b/hw/char/meson.build @@ -4,7 +4,7 @@ system_ss.add(when: 'CONFIG_ESCC', if_true: files('escc.c')) system_ss.add(when: 'CONFIG_GRLIB', if_true: files('grlib_apbuart.c')) system_ss.add(when: 'CONFIG_IBEX', if_true: files('ibex_uart.c')) system_ss.add(when: 'CONFIG_IMX', if_true: files('imx_serial.c')) -system_ss.add(when: 'CONFIG_IPACK', if_true: files('ipoctal232.c')) +system_ss.add(when: 'CONFIG_IP_OCTAL_232', if_true: files('ipoctal232.c')) system_ss.add(when: 'CONFIG_ISA_BUS', if_true: files('parallel-isa.c')) system_ss.add(when: 'CONFIG_ISA_DEBUG', if_true: files('debugcon.c')) system_ss.add(when: 'CONFIG_NRF51_SOC', if_true: files('nrf51_uart.c')) |