Patches applied successfully (
tree,
apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20260305175711.1119025-1-clg@redhat.com
Maintainers: 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>, Jamin Lin <jamin_lin@aspeedtech.com>, Andrew Jeffery <andrew@codeconstruct.com.au>, Joel Stanley <joel@jms.id.au>, Joe Komlodi <komlodi@google.com>, Nabih Estefan <nabihestefan@google.com>, "Marc-André Lureau" <marcandre.lureau@redhat.com>, "Daniel P. Berrangé" <berrange@redhat.com>, "Philippe Mathieu-Daudé" <philmd@linaro.org>
MAINTAINERS | 13 +
meson.build | 1 +
hw/i3c/trace.h | 2 +
include/hw/arm/aspeed_soc.h | 2 +-
include/hw/{misc => i3c}/aspeed_i3c.h | 31 +-
include/hw/i3c/dw-i3c.h | 199 +++
include/hw/i3c/i3c.h | 277 +++
include/hw/i3c/mock-i3c-target.h | 52 +
hw/i2c/aspeed_i2c.c | 4 +-
hw/i3c/aspeed_i3c.c | 258 +++
hw/i3c/core.c | 664 +++++++
hw/i3c/dw-i3c.c | 1862 ++++++++++++++++++++
hw/i3c/mock-i3c-target.c | 303 ++++
hw/misc/aspeed_i3c.c | 383 ----
hw/Kconfig | 1 +
hw/arm/Kconfig | 3 +
hw/i3c/Kconfig | 15 +
hw/i3c/meson.build | 6 +
hw/i3c/trace-events | 48 +
hw/meson.build | 1 +
hw/misc/meson.build | 1 -
hw/misc/trace-events | 6 -
tests/functional/aarch64/test_aspeed_ast2700a1.py | 30 +-
tests/functional/aarch64/test_aspeed_ast2700a2.py | 30 +-
tests/functional/aarch64/test_aspeed_ast2700fc.py | 18 +-
tests/functional/arm/test_aspeed_ast1030.py | 12 +-
tests/functional/arm/test_aspeed_ast1060.py | 14 +-
tests/functional/arm/test_aspeed_ast2500_sdk.py | 8 +-
.../functional/arm/test_aspeed_ast2500_sdk_515.py | 8 +-
tests/functional/arm/test_aspeed_ast2600_sdk.py | 22 +-
.../functional/arm/test_aspeed_ast2600_sdk_515.py | 10 +-
.../functional/arm/test_aspeed_ast2600_sdk_otp.py | 10 +-
32 files changed, 3805 insertions(+), 489 deletions(-)
create mode 100644 hw/i3c/trace.h
rename include/hw/{misc => i3c}/aspeed_i3c.h (53%)
create mode 100644 include/hw/i3c/dw-i3c.h
create mode 100644 include/hw/i3c/i3c.h
create mode 100644 include/hw/i3c/mock-i3c-target.h
create mode 100644 hw/i3c/aspeed_i3c.c
create mode 100644 hw/i3c/core.c
create mode 100644 hw/i3c/dw-i3c.c
create mode 100644 hw/i3c/mock-i3c-target.c
delete mode 100644 hw/misc/aspeed_i3c.c
create mode 100644 hw/i3c/Kconfig
create mode 100644 hw/i3c/meson.build
create mode 100644 hw/i3c/trace-events