From: "Cédric Le Goater" <clg@kaod.org>
To: "Philippe Mathieu-Daudé" <f4bug@amsat.org>, qemu-devel@nongnu.org
Cc: Andrew Jeffery <andrew@aj.id.au>,
Peter Maydell <peter.maydell@linaro.org>,
qemu-arm@nongnu.org, Joel Stanley <joel@jms.id.au>,
Corey Minyard <cminyard@mvista.com>
Subject: Re: [PATCH v5 6/9] hw/misc/pca9552: Trace GPIO High/Low events
Date: Tue, 23 Jun 2020 08:03:18 +0200 [thread overview]
Message-ID: <68f55b15-e2c3-45fb-c834-d0e129249d7b@kaod.org> (raw)
In-Reply-To: <20200622183428.12255-7-f4bug@amsat.org>
On 6/22/20 8:34 PM, Philippe Mathieu-Daudé wrote:
> Add a trivial representation of the PCA9552 GPIOs.
>
> Example booting obmc-phosphor-image:
>
> $ qemu-system-arm -M witherspoon-bmc -trace pca955x_gpio_status
> 1592689902.327837:pca955x_gpio_status pca-unspecified GPIOs 0-15 [*...............]
> 1592689902.329934:pca955x_gpio_status pca-unspecified GPIOs 0-15 [**..............]
> 1592689902.330717:pca955x_gpio_status pca-unspecified GPIOs 0-15 [***.............]
> 1592689902.331431:pca955x_gpio_status pca-unspecified GPIOs 0-15 [****............]
> 1592689902.332163:pca955x_gpio_status pca-unspecified GPIOs 0-15 [****.........*..]
> 1592689902.332888:pca955x_gpio_status pca-unspecified GPIOs 0-15 [****.........**.]
> 1592689902.333629:pca955x_gpio_status pca-unspecified GPIOs 0-15 [****.........***]
> 1592690032.793289:pca955x_gpio_status pca-unspecified GPIOs 0-15 [****.........*.*]
> 1592690033.303163:pca955x_gpio_status pca-unspecified GPIOs 0-15 [****.........***]
> 1592690033.812962:pca955x_gpio_status pca-unspecified GPIOs 0-15 [****.........*.*]
> 1592690034.323234:pca955x_gpio_status pca-unspecified GPIOs 0-15 [****.........***]
> 1592690034.832922:pca955x_gpio_status pca-unspecified GPIOs 0-15 [****.........*.*]
>
> We notice the GPIO #14 (front-power LED) starts to blink.
>
> This LED is described in the witherspoon device-tree [*]:
>
> front-power {
> retain-state-shutdown;
> default-state = "keep";
> gpios = <&pca0 14 GPIO_ACTIVE_LOW>;
> };
>
> [*] https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/arch/arm/boot/dts/aspeed-bmc-opp-witherspoon.dts?id=b1f9be9392f0#n140
>
> Suggested-by: Cédric Le Goater <clg@kaod.org>
> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Cédric Le Goater <clg@kaod.org>
> ---
> hw/misc/pca9552.c | 39 +++++++++++++++++++++++++++++++++++++++
> hw/misc/trace-events | 3 +++
> 2 files changed, 42 insertions(+)
>
> diff --git a/hw/misc/pca9552.c b/hw/misc/pca9552.c
> index d6d84c6451..13f5ed0da4 100644
> --- a/hw/misc/pca9552.c
> +++ b/hw/misc/pca9552.c
> @@ -13,12 +13,14 @@
> #include "qemu/osdep.h"
> #include "qemu/log.h"
> #include "qemu/module.h"
> +#include "qemu/bitops.h"
> #include "hw/qdev-properties.h"
> #include "hw/misc/pca9552.h"
> #include "hw/misc/pca9552_regs.h"
> #include "migration/vmstate.h"
> #include "qapi/error.h"
> #include "qapi/visitor.h"
> +#include "trace.h"
>
> typedef struct PCA955xClass {
> /*< private >*/
> @@ -49,6 +51,39 @@ static uint8_t pca955x_pin_get_config(PCA955xState *s, int pin)
> return extract32(s->regs[reg], shift, 2);
> }
>
> +/* Return INPUT status (bit #N belongs to GPIO #N) */
> +static uint16_t pca955x_pins_get_status(PCA955xState *s)
> +{
> + return (s->regs[PCA9552_INPUT1] << 8) | s->regs[PCA9552_INPUT0];
> +}
> +
> +static void pca955x_display_pins_status(PCA955xState *s,
> + uint16_t previous_pins_status)
> +{
> + PCA955xClass *k = PCA955X_GET_CLASS(s);
> + uint16_t pins_status, pins_changed;
> + int i;
> +
> + pins_status = pca955x_pins_get_status(s);
> + pins_changed = previous_pins_status ^ pins_status;
> + if (!pins_changed) {
> + return;
> + }
> + if (trace_event_get_state_backends(TRACE_PCA955X_GPIO_STATUS)) {
> + char *buf = g_newa(char, k->pin_count + 1);
> +
> + for (i = 0; i < k->pin_count; i++) {
> + if (extract32(pins_status, i, 1)) {
> + buf[i] = '*';
> + } else {
> + buf[i] = '.';
> + }
> + }
> + buf[i] = '\0';
> + trace_pca955x_gpio_status(s->description, buf);
> + }
> +}
> +
> static void pca955x_update_pin_input(PCA955xState *s)
> {
> PCA955xClass *k = PCA955X_GET_CLASS(s);
> @@ -98,6 +133,8 @@ static uint8_t pca955x_read(PCA955xState *s, uint8_t reg)
>
> static void pca955x_write(PCA955xState *s, uint8_t reg, uint8_t data)
> {
> + uint16_t pins_status;
> +
> switch (reg) {
> case PCA9552_PSC0:
> case PCA9552_PWM0:
> @@ -110,8 +147,10 @@ static void pca955x_write(PCA955xState *s, uint8_t reg, uint8_t data)
> case PCA9552_LS1:
> case PCA9552_LS2:
> case PCA9552_LS3:
> + pins_status = pca955x_pins_get_status(s);
> s->regs[reg] = data;
> pca955x_update_pin_input(s);
> + pca955x_display_pins_status(s, pins_status);
> break;
>
> case PCA9552_INPUT0:
> diff --git a/hw/misc/trace-events b/hw/misc/trace-events
> index 5561746866..9282c60dd9 100644
> --- a/hw/misc/trace-events
> +++ b/hw/misc/trace-events
> @@ -206,3 +206,6 @@ via1_rtc_cmd_pram_sect_write(int sector, int offset, int addr, int value) "secto
> # grlib_ahb_apb_pnp.c
> grlib_ahb_pnp_read(uint64_t addr, uint32_t value) "AHB PnP read addr:0x%03"PRIx64" data:0x%08x"
> grlib_apb_pnp_read(uint64_t addr, uint32_t value) "APB PnP read addr:0x%03"PRIx64" data:0x%08x"
> +
> +# pca9552.c
> +pca955x_gpio_status(const char *description, const char *buf) "%s GPIOs 0-15 [%s]"
>
next prev parent reply other threads:[~2020-06-23 6:04 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-06-22 18:34 [PATCH v5 0/9] hw/misc/pca9552: Trace GPIO change events Philippe Mathieu-Daudé
2020-06-22 18:34 ` [PATCH v5 1/9] hw/i2c/core: Add i2c_try_create_slave() and i2c_realize_and_unref() Philippe Mathieu-Daudé
2020-06-22 20:46 ` Corey Minyard
2020-06-23 6:06 ` Cédric Le Goater
2020-06-23 8:01 ` Markus Armbruster
2020-06-23 11:04 ` Philippe Mathieu-Daudé
2020-06-23 13:28 ` Markus Armbruster
2020-06-22 18:34 ` [PATCH v5 2/9] hw/misc/pca9552: Rename 'nr_leds' as 'pin_count' Philippe Mathieu-Daudé
2020-06-23 5:57 ` Cédric Le Goater
2020-06-22 18:34 ` [PATCH v5 3/9] hw/misc/pca9552: Rename generic code as pca955x Philippe Mathieu-Daudé
2020-06-23 5:58 ` Cédric Le Goater
2020-06-22 18:34 ` [PATCH v5 4/9] hw/misc/pca9552: Add generic PCA955xClass, parent of TYPE_PCA9552 Philippe Mathieu-Daudé
2020-06-23 6:02 ` Cédric Le Goater
2020-06-22 18:34 ` [PATCH v5 5/9] hw/misc/pca9552: Add a 'description' property for debugging purpose Philippe Mathieu-Daudé
2020-06-22 18:34 ` [PATCH v5 6/9] hw/misc/pca9552: Trace GPIO High/Low events Philippe Mathieu-Daudé
2020-06-23 6:03 ` Cédric Le Goater [this message]
2020-06-22 18:34 ` [PATCH v5 7/9] hw/arm/aspeed: Describe each PCA9552 device Philippe Mathieu-Daudé
2020-06-23 6:07 ` Cédric Le Goater
2020-06-23 8:43 ` Markus Armbruster
2020-06-22 18:34 ` [PATCH v5 8/9] hw/misc/pca9552: Trace GPIO change events Philippe Mathieu-Daudé
2020-06-23 6:04 ` Cédric Le Goater
2020-06-22 18:34 ` [PATCH v5 9/9] hw/misc/pca9552: Model qdev output GPIOs Philippe Mathieu-Daudé
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=68f55b15-e2c3-45fb-c834-d0e129249d7b@kaod.org \
--to=clg@kaod.org \
--cc=andrew@aj.id.au \
--cc=cminyard@mvista.com \
--cc=f4bug@amsat.org \
--cc=joel@jms.id.au \
--cc=peter.maydell@linaro.org \
--cc=qemu-arm@nongnu.org \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).