From: Thomas Huth <thuth@redhat.com>
To: Stefan Berger <stefanb@linux.ibm.com>, qemu-devel@nongnu.org
Cc: marcandre.lureau@redhat.com, clg@kaod.org, ninad@linux.ibm.com,
joel@jms.id.au, andrew@aj.id.au
Subject: Re: [PATCH v3 1/3] qtest: Add functions for accessing devices on Aspeed I2C controller
Date: Tue, 28 Mar 2023 17:05:46 +0200 [thread overview]
Message-ID: <601fa241-1b5e-067c-f7b5-7cdd4feaa13f@redhat.com> (raw)
In-Reply-To: <20230328135121.3661711-2-stefanb@linux.ibm.com>
On 28/03/2023 15.51, Stefan Berger wrote:
> Add read and write functions for accessing registers of I2C devices
> connected to the Aspeed I2C controller.
>
> Signed-off-by: Stefan Berger <stefanb@linux.ibm.com>
> Reviewed-by: Cédric Le Goater <clg@kaod.org>
> Reviewed-by: Ninad Palsule <ninad@linux.ibm.com>
> ---
> include/hw/i2c/aspeed_i2c.h | 7 +++
> tests/qtest/qtest_aspeed.c | 109 ++++++++++++++++++++++++++++++++++++
> tests/qtest/qtest_aspeed.h | 36 ++++++++++++
> 3 files changed, 152 insertions(+)
> create mode 100644 tests/qtest/qtest_aspeed.c
> create mode 100644 tests/qtest/qtest_aspeed.h
>
> diff --git a/include/hw/i2c/aspeed_i2c.h b/include/hw/i2c/aspeed_i2c.h
> index adc904d6c1..51c944efea 100644
> --- a/include/hw/i2c/aspeed_i2c.h
> +++ b/include/hw/i2c/aspeed_i2c.h
> @@ -38,6 +38,13 @@ OBJECT_DECLARE_TYPE(AspeedI2CState, AspeedI2CClass, ASPEED_I2C)
> #define ASPEED_I2C_OLD_NUM_REG 11
> #define ASPEED_I2C_NEW_NUM_REG 22
>
> +#define A_I2CD_M_STOP_CMD BIT(5)
> +#define A_I2CD_M_RX_CMD BIT(3)
> +#define A_I2CD_M_TX_CMD BIT(1)
> +#define A_I2CD_M_START_CMD BIT(0)
> +
> +#define A_I2CD_MASTER_EN BIT(0)
> +
> /* Tx State Machine */
> #define I2CD_TX_STATE_MASK 0xf
> #define I2CD_IDLE 0x0
> diff --git a/tests/qtest/qtest_aspeed.c b/tests/qtest/qtest_aspeed.c
> new file mode 100644
> index 0000000000..2fcafc22fc
> --- /dev/null
> +++ b/tests/qtest/qtest_aspeed.c
> @@ -0,0 +1,109 @@
> +/*
> + * Aspeed i2c bus interface for reading from and writing to i2c device registers
> + *
> + * Copyright (c) 2023 IBM Corporation
> + *
> + * Authors:
> + * Stefan Berger <stefanb@linux.ibm.com>
> + *
> + * This work is licensed under the terms of the GNU GPL, version 2 or later.
> + * See the COPYING file in the top-level directory.
> + */
> +
> +#include "qemu/osdep.h"
> +
> +#include "qtest_aspeed.h"
> +#include "hw/i2c/aspeed_i2c.h"
> +#include "libqtest-single.h"
> +
> +static void aspeed_i2c_startup(uint32_t baseaddr, uint8_t slave_addr,
> + uint8_t reg)
> +{
> + uint32_t v;
> + static int once;
> +
> + if (!once) {
> + /* one time: enable master */
> + writel(baseaddr + A_I2CC_FUN_CTRL, 0);
> + v = readl(baseaddr + A_I2CC_FUN_CTRL) | A_I2CD_MASTER_EN;
> + writel(baseaddr + A_I2CC_FUN_CTRL, v);
> + once = 1;
> + }
> +
> + /* select device */
> + writel(baseaddr + A_I2CD_BYTE_BUF, slave_addr << 1);
> + writel(baseaddr + A_I2CD_CMD, A_I2CD_M_START_CMD | A_I2CD_M_RX_CMD);
> +
> + /* select the register to write to */
> + writel(baseaddr + A_I2CD_BYTE_BUF, reg);
> + writel(baseaddr + A_I2CD_CMD, A_I2CD_M_TX_CMD);
> +}
> +
> +static uint32_t aspeed_i2c_read_n(uint32_t baseaddr, uint8_t slave_addr,
> + uint8_t reg, size_t nbytes)
> +{
> + uint32_t res = 0;
> + uint32_t v;
> + size_t i;
> +
> + aspeed_i2c_startup(baseaddr, slave_addr, reg);
> +
> + for (i = 0; i < nbytes; i++) {
> + writel(baseaddr + A_I2CD_CMD, A_I2CD_M_RX_CMD);
> + v = readl(baseaddr + A_I2CD_BYTE_BUF) >> 8;
> + res |= (v & 0xff) << (i * 8);
> + }
> +
> + writel(baseaddr + A_I2CD_CMD, A_I2CD_M_STOP_CMD);
> +
> + return res;
> +}
> +
> +uint32_t aspeed_i2c_readl(uint32_t baseaddr, uint8_t slave_addr, uint8_t reg)
> +{
> + return aspeed_i2c_read_n(baseaddr, slave_addr, reg, sizeof(uint32_t));
> +}
> +
> +uint16_t aspeed_i2c_readw(uint32_t baseaddr, uint8_t slave_addr, uint8_t reg)
> +{
> + return aspeed_i2c_read_n(baseaddr, slave_addr, reg, sizeof(uint16_t));
> +}
> +
> +uint8_t aspeed_i2c_readb(uint32_t baseaddr, uint8_t slave_addr, uint8_t reg)
> +{
> + return aspeed_i2c_read_n(baseaddr, slave_addr, reg, sizeof(uint8_t));
> +}
> +
> +static void aspeed_i2c_write_n(uint32_t baseaddr, uint8_t slave_addr,
> + uint8_t reg, uint32_t v, size_t nbytes)
> +{
> + size_t i;
> +
> + aspeed_i2c_startup(baseaddr, slave_addr, reg);
> +
> + for (i = 0; i < nbytes; i++) {
> + writel(baseaddr + A_I2CD_BYTE_BUF, v & 0xff);
> + v >>= 8;
> + writel(baseaddr + A_I2CD_CMD, A_I2CD_M_TX_CMD);
> + }
> +
> + writel(baseaddr + A_I2CD_CMD, A_I2CD_M_STOP_CMD);
> +}
> +
> +void aspeed_i2c_writel(uint32_t baseaddr, uint8_t slave_addr,
> + uint8_t reg, uint32_t v)
> +{
> + aspeed_i2c_write_n(baseaddr, slave_addr, reg, v, sizeof(v));
> +}
> +
> +void aspeed_i2c_writew(uint32_t baseaddr, uint8_t slave_addr,
> + uint8_t reg, uint16_t v)
> +{
> + aspeed_i2c_write_n(baseaddr, slave_addr, reg, v, sizeof(v));
> +}
> +
> +void aspeed_i2c_writeb(uint32_t baseaddr, uint8_t slave_addr,
> + uint8_t reg, uint8_t v)
> +{
> + aspeed_i2c_write_n(baseaddr, slave_addr, reg, v, sizeof(v));
> +}
For helper functions like this, I'd recommend to not use libqtest-single.h
and rather pass in a QTestState* as parameter to use qtest_writel() and
qtest_readl() instead. That will make the code future-proof in case someone
wants to use these function for migration-related tests later.
Thomas
next prev parent reply other threads:[~2023-03-28 15:06 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-03-28 13:51 [PATCH v3 0/3] qtests: tpm: Add test cases for TPM TIS I2C device emulation Stefan Berger
2023-03-28 13:51 ` [PATCH v3 1/3] qtest: Add functions for accessing devices on Aspeed I2C controller Stefan Berger
2023-03-28 15:05 ` Thomas Huth [this message]
2023-03-28 15:59 ` Cédric Le Goater
2023-03-28 17:17 ` Stefan Berger
2023-03-28 13:51 ` [PATCH v3 2/3] qtest: Move tpm_util_tis_transmit() into tpm-tis-utils.c and rename it Stefan Berger
2023-03-28 13:51 ` [PATCH v3 3/3] qtest: Add a test case for TPM TIS I2C connected to Aspeed I2C controller Stefan Berger
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=601fa241-1b5e-067c-f7b5-7cdd4feaa13f@redhat.com \
--to=thuth@redhat.com \
--cc=andrew@aj.id.au \
--cc=clg@kaod.org \
--cc=joel@jms.id.au \
--cc=marcandre.lureau@redhat.com \
--cc=ninad@linux.ibm.com \
--cc=qemu-devel@nongnu.org \
--cc=stefanb@linux.ibm.com \
/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).