[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 04/35] qtest: bail from irq_intercept_in if name is specified
From: |
Peter Maydell |
Subject: |
[PULL 04/35] qtest: bail from irq_intercept_in if name is specified |
Date: |
Thu, 24 Aug 2023 10:28:05 +0100 |
From: Chris Laplante <chris@laplante.io>
Named interception of in-GPIOs is not supported yet.
Signed-off-by: Chris Laplante <chris@laplante.io>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Message-id: 20230728160324.1159090-5-chris@laplante.io
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
---
softmmu/qtest.c | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/softmmu/qtest.c b/softmmu/qtest.c
index 0f1d478bda5..66757ba2618 100644
--- a/softmmu/qtest.c
+++ b/softmmu/qtest.c
@@ -397,9 +397,11 @@ static void qtest_process_command(CharBackend *chr, gchar
**words)
|| strcmp(words[0], "irq_intercept_in") == 0) {
DeviceState *dev;
NamedGPIOList *ngl;
+ bool is_named;
bool is_outbound;
g_assert(words[1]);
+ is_named = words[2] != NULL;
is_outbound = words[0][14] == 'o';
dev = DEVICE(object_resolve_path(words[1], NULL));
if (!dev) {
@@ -408,6 +410,12 @@ static void qtest_process_command(CharBackend *chr, gchar
**words)
return;
}
+ if (is_named && !is_outbound) {
+ qtest_send_prefix(chr);
+ qtest_send(chr, "FAIL Interception of named in-GPIOs not yet
supported\n");
+ return;
+ }
+
if (irq_intercept_dev) {
qtest_send_prefix(chr);
if (irq_intercept_dev != dev) {
--
2.34.1
- [PULL 00/35] target-arm queue, Peter Maydell, 2023/08/24
- [PULL 05/35] qtest: irq_intercept_[out/in]: return FAIL if no intercepts are installed, Peter Maydell, 2023/08/24
- [PULL 03/35] qtest: implement named interception of out-GPIO, Peter Maydell, 2023/08/24
- [PULL 06/35] qtest: microbit-test: add tests for nRF51 DETECT, Peter Maydell, 2023/08/24
- [PULL 01/35] hw/gpio/nrf51: implement DETECT signal, Peter Maydell, 2023/08/24
- [PULL 02/35] qtest: factor out qtest_install_gpio_out_intercept, Peter Maydell, 2023/08/24
- [PULL 04/35] qtest: bail from irq_intercept_in if name is specified,
Peter Maydell <=
- [PULL 28/35] target/arm/ptw: Load stage-2 tables from realm physical space, Peter Maydell, 2023/08/24
- [PULL 13/35] target/arm/ptw: Don't set fi->s1ptw for UnsuppAtomicUpdate fault, Peter Maydell, 2023/08/24
- [PULL 24/35] target/arm/ptw: Set attributes correctly for MMU disabled data accesses, Peter Maydell, 2023/08/24
- [PULL 09/35] mips: Report an error when KVM_VM_MIPS_VZ is unavailable, Peter Maydell, 2023/08/24
- [PULL 16/35] target/arm/ptw: Pass ptw into get_phys_addr_pmsa*() and get_phys_addr_disabled(), Peter Maydell, 2023/08/24
- [PULL 11/35] accel/kvm: Free as when an error occurred, Peter Maydell, 2023/08/24
- [PULL 15/35] target/arm/ptw: Set s1ns bit in fault info more consistently, Peter Maydell, 2023/08/24
- [PULL 10/35] accel/kvm: Use negative KVM type for error propagation, Peter Maydell, 2023/08/24
- [PULL 32/35] target/arm/helper: Check SCR_EL3.{NSE, NS} encoding for AT instructions, Peter Maydell, 2023/08/24
- [PULL 35/35] target/arm: Fix 64-bit SSRA, Peter Maydell, 2023/08/24