All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Cédric Le Goater" <clg@kaod.org>
To: qemu-arm@nongnu.org, qemu-devel@nongnu.org
Cc: "Peter Maydell" <peter.maydell@linaro.org>,
	"Cédric Le Goater" <clg@kaod.org>,
	"Klaus Jensen" <k.jensen@samsung.com>,
	"Philippe Mathieu-Daudé" <philmd@linaro.org>
Subject: [PULL 04/11] tests/avocado/machine_aspeed.py: Add an I2C slave test
Date: Thu,  2 Mar 2023 18:41:59 +0100	[thread overview]
Message-ID: <20230302174206.2434673-5-clg@kaod.org> (raw)
In-Reply-To: <20230302174206.2434673-1-clg@kaod.org>

The Aspeed 2600 I2C controller supports a slave mode which can be
tested with the I2C echo device. Test extracted from :

  https://lists.nongnu.org/archive/html/qemu-devel/2022-06/msg00183.html

Suggested-by: Klaus Jensen <k.jensen@samsung.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Cédric Le Goater <clg@kaod.org>
---
 tests/avocado/machine_aspeed.py | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/tests/avocado/machine_aspeed.py b/tests/avocado/machine_aspeed.py
index ddf05b3617..d2c57ccb7e 100644
--- a/tests/avocado/machine_aspeed.py
+++ b/tests/avocado/machine_aspeed.py
@@ -199,6 +199,8 @@ def test_arm_ast2600_evb_buildroot(self):
                          'tmp105,bus=aspeed.i2c.bus.3,address=0x4d,id=tmp-test');
         self.vm.add_args('-device',
                          'ds1338,bus=aspeed.i2c.bus.3,address=0x32');
+        self.vm.add_args('-device',
+                         'i2c-echo,bus=aspeed.i2c.bus.3,address=0x42');
         self.do_test_arm_aspeed_buildroot_start(image_path, '0xf00')
 
         exec_command_and_wait_for_pattern(self,
@@ -217,6 +219,14 @@ def test_arm_ast2600_evb_buildroot(self):
         year = time.strftime("%Y")
         exec_command_and_wait_for_pattern(self, 'hwclock -f /dev/rtc1', year);
 
+        exec_command_and_wait_for_pattern(self,
+             'echo slave-24c02 0x1064 > /sys/bus/i2c/devices/i2c-3/new_device',
+             'i2c i2c-3: new_device: Instantiated device slave-24c02 at 0x64');
+        exec_command(self, 'i2cset -y 3 0x42 0x64 0x00 0xaa i');
+        time.sleep(0.1)
+        exec_command_and_wait_for_pattern(self,
+             'hexdump /sys/bus/i2c/devices/3-1064/slave-eeprom',
+             '0000000 ffaa ffff ffff ffff ffff ffff ffff ffff');
         self.do_test_arm_aspeed_buildroot_poweroff()
 
 
-- 
2.39.2



  parent reply	other threads:[~2023-03-02 17:44 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-03-02 17:41 [PULL 00/11] aspeed queue Cédric Le Goater
2023-03-02 17:41 ` [PULL 01/11] readline: fix hmp completion issue Cédric Le Goater
2023-03-02 17:41 ` [PULL 02/11] hw/i2c: only schedule pending master when bus is idle Cédric Le Goater
2023-03-02 17:41 ` [PULL 03/11] hw/misc: add a toy i2c echo device Cédric Le Goater
2023-03-02 17:41 ` Cédric Le Goater [this message]
2023-03-02 17:42 ` [PULL 05/11] hw/arm/aspeed: Adding new machine Yosemitev2 in QEMU Cédric Le Goater
2023-03-02 17:42 ` [PULL 06/11] hw/arm/aspeed: Adding new machine Tiogapass " Cédric Le Goater
2023-03-02 17:42 ` [PULL 07/11] hw/at24c : modify at24c to support 1 byte address mode Cédric Le Goater
2023-03-02 17:42 ` [PULL 08/11] aspeed/fuji : correct the eeprom size Cédric Le Goater
2023-03-02 17:42 ` [PULL 09/11] aspeed: Introduce a spi_boot region under the SoC Cédric Le Goater
2023-03-02 17:42 ` [PULL 10/11] aspeed: Add a boot_rom overlap region in the SoC spi_boot container Cédric Le Goater
2023-03-02 17:42 ` [PULL 11/11] aspeed/smc: Replace SysBus IRQs with GPIO lines Cédric Le Goater
2023-03-03 13:23 ` [PULL 00/11] aspeed queue Cédric Le Goater
2023-03-03 13:34   ` Peter Maydell
2023-03-03 14:08     ` Cédric Le Goater
2023-03-03 14:28       ` Peter Maydell
2023-03-04 14:00 ` Peter Maydell

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=20230302174206.2434673-5-clg@kaod.org \
    --to=clg@kaod.org \
    --cc=k.jensen@samsung.com \
    --cc=peter.maydell@linaro.org \
    --cc=philmd@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.