diff options
author | Peter Crosthwaite <peter.crosthwaite@xilinx.com> | 2014-05-19 23:30:58 -0700 |
---|---|---|
committer | Andreas Färber <afaerber@suse.de> | 2014-05-28 17:36:21 +0200 |
commit | a5f54290ceb31281158413d4cda1ca80908a56cc (patch) | |
tree | 9aef5977f457c66a93c1527ba4151a3b1f670eef /qtest.c | |
parent | 6b1b1440199c1a910b91bc9e029974f44746633d (diff) | |
download | qemu-a5f54290ceb31281158413d4cda1ca80908a56cc.zip qemu-a5f54290ceb31281158413d4cda1ca80908a56cc.tar.gz qemu-a5f54290ceb31281158413d4cda1ca80908a56cc.tar.bz2 |
qdev: Implement named GPIOs
Implement named GPIOs on the Device layer. Listifies the existing GPIOs
stuff using string keys. Legacy un-named GPIOs are preserved by using
a NULL name string - they are just a single matchable element in the
name list.
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Peter Crosthwaite <peter.crosthwaite@xilinx.com>
Signed-off-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'qtest.c')
-rw-r--r-- | qtest.c | 19 |
1 files changed, 14 insertions, 5 deletions
@@ -233,7 +233,8 @@ static void qtest_process_command(CharDriverState *chr, gchar **words) g_assert(command); if (strcmp(words[0], "irq_intercept_out") == 0 || strcmp(words[0], "irq_intercept_in") == 0) { - DeviceState *dev; + DeviceState *dev; + NamedGPIOList *ngl; g_assert(words[1]); dev = DEVICE(object_resolve_path(words[1], NULL)); @@ -253,10 +254,18 @@ static void qtest_process_command(CharDriverState *chr, gchar **words) return; } - if (words[0][14] == 'o') { - qemu_irq_intercept_out(&dev->gpio_out, qtest_irq_handler, dev->num_gpio_out); - } else { - qemu_irq_intercept_in(dev->gpio_in, qtest_irq_handler, dev->num_gpio_in); + QLIST_FOREACH(ngl, &dev->gpios, node) { + /* We don't support intercept of named GPIOs yet */ + if (ngl->name) { + continue; + } + if (words[0][14] == 'o') { + qemu_irq_intercept_out(&ngl->out, qtest_irq_handler, + ngl->num_out); + } else { + qemu_irq_intercept_in(ngl->in, qtest_irq_handler, + ngl->num_in); + } } irq_intercept_dev = dev; qtest_send_prefix(chr); |