All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jamin Lin <jamin_lin@aspeedtech.com>
To: "Paolo Bonzini" <pbonzini@redhat.com>,
	"Peter Maydell" <peter.maydell@linaro.org>,
	"Cédric Le Goater" <clg@kaod.org>,
	"Steven Lee" <steven_lee@aspeedtech.com>,
	"Troy Lee" <leetroy@gmail.com>,
	"Andrew Jeffery" <andrew@codeconstruct.com.au>,
	"Joel Stanley" <joel@jms.id.au>,
	"Marc-André Lureau" <marcandre.lureau@redhat.com>,
	"Daniel P. Berrangé" <berrange@redhat.com>,
	"Philippe Mathieu-Daudé" <philmd@linaro.org>,
	"open list:All patches CC here" <qemu-devel@nongnu.org>,
	"open list:ARM TCG CPUs" <qemu-arm@nongnu.org>
Cc: Jamin Lin <jamin_lin@aspeedtech.com>,
	Troy Lee <troy_lee@aspeedtech.com>,
	 Kane Chen <kane_chen@aspeedtech.com>,
	"nabihestefan@google.com" <nabihestefan@google.com>
Subject: [PATCH v5 21/21] tests/functional/arm/test_aspeed_ast2600_sdk: Add i3c functional test
Date: Tue, 10 Feb 2026 09:10:50 +0000	[thread overview]
Message-ID: <20260210091018.1553489-22-jamin_lin@aspeedtech.com> (raw)
In-Reply-To: <20260210091018.1553489-1-jamin_lin@aspeedtech.com>

Signed-off-by: Jamin Lin <jamin_lin@aspeedtech.com>
---
 tests/functional/arm/test_aspeed_ast2600_sdk.py | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/tests/functional/arm/test_aspeed_ast2600_sdk.py b/tests/functional/arm/test_aspeed_ast2600_sdk.py
index 6236aeb11c..3485feaf2c 100755
--- a/tests/functional/arm/test_aspeed_ast2600_sdk.py
+++ b/tests/functional/arm/test_aspeed_ast2600_sdk.py
@@ -31,6 +31,15 @@ def do_ast2600_pcie_test(self):
             'ip addr show dev eth4',
             'inet 10.0.2.15/24')
 
+    def do_ast2600_i3c_test(self):
+        exec_command_and_wait_for_pattern(self,
+            'i3ctransfer -d /dev/bus/i3c/5-1234567890ab'
+            ' -w 0x12,0x34,0x56,0x78,0x90,0xab,0xcd,0xef',
+            'Success on message 0')
+        exec_command_and_wait_for_pattern(self,
+            'i3ctransfer -d /dev/bus/i3c/5-1234567890ab -r 8 | grep 0x | xargs',
+            '0x12 0x34 0x56 0x78 0x90 0xab 0xcd 0xef')
+
     def test_arm_ast2600_evb_sdk(self):
         self.set_machine('ast2600-evb')
         self.require_netdev('user')
@@ -43,6 +52,8 @@ def test_arm_ast2600_evb_sdk(self):
             'ds1338,bus=aspeed.i2c.bus.5,address=0x32')
         self.vm.add_args('-device', 'e1000e,netdev=net1,bus=pcie.0')
         self.vm.add_args('-netdev', 'user,id=net1')
+        self.vm.add_args('-device',
+            'mock-i3c-target,bus=dw.i3c.5,pid=0xab9078563412')
         self.do_test_arm_aspeed_sdk_start(
             self.scratch_file("ast2600-default", "image-bmc"))
 
@@ -69,6 +80,7 @@ def test_arm_ast2600_evb_sdk(self):
         exec_command_and_wait_for_pattern(self,
              '/sbin/hwclock -f /dev/rtc1', year)
         self.do_ast2600_pcie_test()
+        self.do_ast2600_i3c_test()
 
     def test_arm_ast2600_otp_blockdev_device(self):
         self.vm.set_machine("ast2600-evb")
-- 
2.43.0


  parent reply	other threads:[~2026-02-10  9:14 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-02-10  9:10 [PATCH v5 00/21] i3c: aspeed: Add I3C support Jamin Lin
2026-02-10  9:10 ` [PATCH v5 01/21] hw/misc/aspeed_i3c: Move to i3c directory Jamin Lin
2026-02-10  9:10 ` [PATCH v5 02/21] hw/i3c/aspeed_i3c: Switch to DEFINE_TYPES() and align parent_obj naming Jamin Lin
2026-02-10  9:10 ` [PATCH v5 03/21] hw/i3c: Add bus support Jamin Lin
2026-02-10  9:10 ` [PATCH v5 04/21] hw/i3c: Split DesignWare I3C out of Aspeed I3C Jamin Lin
2026-02-10  9:10 ` [PATCH v5 05/21] hw/i3c/dw-i3c: Add more register fields Jamin Lin
2026-02-10  9:10 ` [PATCH v5 06/21] hw/i3c/aspeed_i3c: " Jamin Lin
2026-02-10  9:10 ` [PATCH v5 07/21] hw/i3c/dw-i3c: Add more reset values Jamin Lin
2026-02-10  9:10 ` [PATCH v5 08/21] hw/i3c/aspeed_i3c: Add register RO field masks Jamin Lin
2026-02-10  9:10 ` [PATCH v5 09/21] hw/i3c/dw-i3c: " Jamin Lin
2026-02-10  9:10 ` [PATCH v5 10/21] hw/i3c/dw-i3c: Treat more registers as read-as-zero Jamin Lin
2026-02-10  9:10 ` [PATCH v5 11/21] hw/i3c/dw-i3c: Use 32 bits on MMIO writes Jamin Lin
2026-02-10  9:10 ` [PATCH v5 12/21] hw/i3c/dw-i3c: Add IRQ MMIO behavior Jamin Lin
2026-02-10  9:10 ` [PATCH v5 13/21] hw/i3c/dw-i3c: Add data TX and RX Jamin Lin
2026-02-10  9:10 ` [PATCH v5 14/21] hw/i3c/dw-i3c: Add IBI handling Jamin Lin
2026-02-10  9:10 ` [PATCH v5 15/21] hw/i3c/dw-i3c: Add ctrl MMIO handling Jamin Lin
2026-02-10  9:10 ` [PATCH v5 16/21] hw/i3c/dw-i3c: Add controller resets Jamin Lin
2026-02-10  9:10 ` [PATCH v5 17/21] hw/i3c/aspeed: Add I3C bus get function Jamin Lin
2026-02-10  9:10 ` [PATCH v5 18/21] hw/i3c: Add Mock target Jamin Lin
2026-02-10  9:10 ` [PATCH v5 19/21] hw/arm/aspeed: Build with I3C_DEVICES Jamin Lin
2026-02-10  9:10 ` [PATCH v5 20/21] hw/i3c: Add hotplug support Jamin Lin
2026-02-10  9:10 ` Jamin Lin [this message]
2026-02-11 13:40   ` [PATCH v5 21/21] tests/functional/arm/test_aspeed_ast2600_sdk: Add i3c functional test Cédric Le Goater
2026-02-12  2:55     ` Jamin Lin
2026-02-13 12:51 ` [PATCH v5 00/21] i3c: aspeed: Add I3C support Cédric Le Goater
2026-02-24  1:29   ` Jamin Lin
2026-02-24  9:22     ` Cédric Le Goater
2026-02-24  9:25       ` Jamin Lin
2026-02-24  9:58         ` Jamin Lin
2026-02-24 10:27           ` Cédric Le Goater

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=20260210091018.1553489-22-jamin_lin@aspeedtech.com \
    --to=jamin_lin@aspeedtech.com \
    --cc=andrew@codeconstruct.com.au \
    --cc=berrange@redhat.com \
    --cc=clg@kaod.org \
    --cc=joel@jms.id.au \
    --cc=kane_chen@aspeedtech.com \
    --cc=leetroy@gmail.com \
    --cc=marcandre.lureau@redhat.com \
    --cc=nabihestefan@google.com \
    --cc=pbonzini@redhat.com \
    --cc=peter.maydell@linaro.org \
    --cc=philmd@linaro.org \
    --cc=qemu-arm@nongnu.org \
    --cc=qemu-devel@nongnu.org \
    --cc=steven_lee@aspeedtech.com \
    --cc=troy_lee@aspeedtech.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 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.