From: Octavian Purdila <tavip@google.com>
To: qemu-devel@nongnu.org
Cc: qemu-arm@nongnu.org, stefanst@google.com, pbonzini@redhat.com,
alex.bennee@linaro.org, thuth@redhat.com,
peter.maydell@linaro.org, marcandre.lureau@redhat.com,
alistair@alistair23.me, berrange@redhat.com, philmd@linaro.org,
jsnow@redhat.com, crosa@redhat.com, bleal@redhat.com
Subject: [RFC PATCH 00/23] NXP i.MX RT595, ARM SVD and device model unit tests
Date: Mon, 5 Aug 2024 13:16:55 -0700 [thread overview]
Message-ID: <20240805201719.2345596-1-tavip@google.com> (raw)
This patch set adds support for NXP's RT500 MCU [1] and the RT595
EVK[2]. More RT500 device models will be submitted in future patch sets.
The goal of this first patch set is to provide a minimal set that
allows running the NXP MCU SDK hello world example[4] and to get feedback
on a couple of new / non-standard approaches.
First, this patch set introduces a (python) tool that generates C
header files from ARM SVD files[3]. This significantly reduces the
effort to write a new device model by automatically generating:
register definitions and layout (including bit fields), register names
for easier debugging and tracing, reset register values, etc.
It also introduces unit tests for device models. To allow accessing
registers from unit tests a system bus mock is created. The main
advantage of unit tests for device models over QTest is that device
models can be tested in isolation and do not require a full qemu
machine.
[1] https://www.nxp.com/docs/en/data-sheet/IMXRT500EC.pdf
[2] https://www.nxp.com/webapp/Download?colCode=MIMXRT595EVKHUG
[3] https://arm-software.github.io/CMSIS_5/SVD/html/index.html
[4] Building and running the NXP MCU SDK hello world example
Clone the following git repos:
https://github.com/nxp-mcuxpresso/cmsis.git,
https://github.com/nxp-mcuxpresso/mcux-sdk.git
https://github.com/nxp-mcuxpresso/mcux-sdk-examples.git
in the following directories: CMSIS, core, examples.
cd examples/evkmimxrt595/demo_apps/hello_world/armgcc
ARMGCC_DIR=/usr CFLAGS=-I../../../../../CMSIS/CMSIS/Core/Include \
sh build_flash_debug.sh
qemu-system-arm --machine rt595-evk -kernel flash_debug/hello_world.elf \
-global armv7m.init-nsvtor=0x08001000 -global armv7m.init-svtor=0x08001000 \
-chardev stdio,id=flexcomm0
Octavian Purdila (19):
fifo32: add peek function
tests/unit: add fifo test
hw/arm: add SVD file for NXP i.MX RT595
hw: add register access utility functions
hw/misc: add basic flexcomm device model
test/unit: add register access macros and functions
test/unit: add flexcomm unit test
hw/char: add support for flexcomm usart
test/unit: add flexcomm usart unit test
hw/i2c: add support for flexcomm i2c
test/unit: add i2c-tester
test/unit: add unit tests for flexcomm i2c
test/unit: add spi-tester
hw/misc: add support for RT500's clock controller
test/unit: add unit tests for RT500's clock controller
hw/ssi: add support for flexspi
hw/misc: add support for RT500 reset controller
hw/arm: add basic support for the RT500 SoC
hw/arm: add RT595-EVK board
Sebastian Ene (2):
hw/ssi: add support for flexcomm spi
test/unit: add unit tests for flexcomm spi
Stefan Stanacar (1):
scripts: add script to generate C header files from SVD XML files
Valentin Ghita (1):
tests/unit: add system bus mock
configure | 2 +-
hw/arm/Kconfig | 13 +
hw/arm/meson.build | 4 +
hw/arm/rt500.c | 348 +
hw/arm/rt595-evk.c | 64 +
hw/arm/svd/MIMXRT595S_cm33.xml | 224052 +++++++++++++++++++++++++++
hw/arm/svd/meson.build | 42 +
hw/char/flexcomm_usart.c | 302 +
hw/char/meson.build | 1 +
hw/char/trace-events | 9 +
hw/i2c/flexcomm_i2c.c | 224 +
hw/i2c/meson.build | 1 +
hw/i2c/trace-events | 10 +
hw/misc/Kconfig | 12 +
hw/misc/flexcomm.c | 304 +
hw/misc/meson.build | 5 +
hw/misc/rt500_clkctl0.c | 243 +
hw/misc/rt500_clkctl1.c | 224 +
hw/misc/rt500_rstctl.c | 219 +
hw/misc/trace-events | 18 +
hw/ssi/Kconfig | 4 +
hw/ssi/flexcomm_spi.c | 443 +
hw/ssi/flexspi.c | 216 +
hw/ssi/meson.build | 2 +
hw/ssi/trace-events | 12 +
include/hw/arm/rt500.h | 49 +
include/hw/char/flexcomm_usart.h | 20 +
include/hw/i2c/flexcomm_i2c.h | 27 +
include/hw/misc/flexcomm.h | 92 +
include/hw/misc/rt500_clk_freqs.h | 18 +
include/hw/misc/rt500_clkctl0.h | 37 +
include/hw/misc/rt500_clkctl1.h | 38 +
include/hw/misc/rt500_rstctl.h | 38 +
include/hw/regs.h | 89 +
include/hw/ssi/flexcomm_spi.h | 20 +
include/hw/ssi/flexspi.h | 34 +
include/qemu/fifo32.h | 29 +
meson.build | 4 +
python/setup.cfg | 1 +
python/tests/minreqs.txt | 3 +
pythondeps.toml | 3 +
scripts/svd-gen-header.py | 342 +
tests/unit/i2c_tester.c | 111 +
tests/unit/i2c_tester.h | 34 +
tests/unit/meson.build | 56 +-
tests/unit/reg-utils.h | 103 +
tests/unit/spi_tester.c | 60 +
tests/unit/spi_tester.h | 32 +
tests/unit/sysbus-mock.c | 314 +
tests/unit/sysbus-mock.h | 82 +
tests/unit/test-fifo.c | 98 +
tests/unit/test-flexcomm-i2c.c | 209 +
tests/unit/test-flexcomm-spi.c | 204 +
tests/unit/test-flexcomm-usart.c | 321 +
tests/unit/test-flexcomm.c | 215 +
tests/unit/test-rt500-clkctl.c | 270 +
56 files changed, 229725 insertions(+), 2 deletions(-)
create mode 100644 hw/arm/rt500.c
create mode 100644 hw/arm/rt595-evk.c
create mode 100644 hw/arm/svd/MIMXRT595S_cm33.xml
create mode 100644 hw/arm/svd/meson.build
create mode 100644 hw/char/flexcomm_usart.c
create mode 100644 hw/i2c/flexcomm_i2c.c
create mode 100644 hw/misc/flexcomm.c
create mode 100644 hw/misc/rt500_clkctl0.c
create mode 100644 hw/misc/rt500_clkctl1.c
create mode 100644 hw/misc/rt500_rstctl.c
create mode 100644 hw/ssi/flexcomm_spi.c
create mode 100644 hw/ssi/flexspi.c
create mode 100644 include/hw/arm/rt500.h
create mode 100644 include/hw/char/flexcomm_usart.h
create mode 100644 include/hw/i2c/flexcomm_i2c.h
create mode 100644 include/hw/misc/flexcomm.h
create mode 100644 include/hw/misc/rt500_clk_freqs.h
create mode 100644 include/hw/misc/rt500_clkctl0.h
create mode 100644 include/hw/misc/rt500_clkctl1.h
create mode 100644 include/hw/misc/rt500_rstctl.h
create mode 100644 include/hw/regs.h
create mode 100644 include/hw/ssi/flexcomm_spi.h
create mode 100644 include/hw/ssi/flexspi.h
create mode 100755 scripts/svd-gen-header.py
create mode 100644 tests/unit/i2c_tester.c
create mode 100644 tests/unit/i2c_tester.h
create mode 100644 tests/unit/reg-utils.h
create mode 100644 tests/unit/spi_tester.c
create mode 100644 tests/unit/spi_tester.h
create mode 100644 tests/unit/sysbus-mock.c
create mode 100644 tests/unit/sysbus-mock.h
create mode 100644 tests/unit/test-fifo.c
create mode 100644 tests/unit/test-flexcomm-i2c.c
create mode 100644 tests/unit/test-flexcomm-spi.c
create mode 100644 tests/unit/test-flexcomm-usart.c
create mode 100644 tests/unit/test-flexcomm.c
create mode 100644 tests/unit/test-rt500-clkctl.c
--
2.46.0.rc2.264.g509ed76dc8-goog
next reply other threads:[~2024-08-05 20:17 UTC|newest]
Thread overview: 56+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-05 20:16 Octavian Purdila [this message]
2024-08-05 20:16 ` [RFC PATCH 01/23] fifo32: add peek function Octavian Purdila
2024-08-05 20:16 ` [RFC PATCH 02/23] tests/unit: add fifo test Octavian Purdila
2024-08-05 20:16 ` [RFC PATCH 03/23] scripts: add script to generate C header files from SVD XML files Octavian Purdila
2024-08-08 21:56 ` John Snow
2024-08-08 22:30 ` Octavian Purdila
2024-08-08 23:06 ` John Snow
2024-08-09 9:30 ` Philippe Mathieu-Daudé
2024-08-09 9:42 ` Paolo Bonzini
2024-08-09 9:59 ` Daniel P. Berrangé
2024-08-13 8:32 ` Philippe Mathieu-Daudé
2024-08-09 6:34 ` Paolo Bonzini
2024-08-09 19:28 ` Octavian Purdila
2024-08-12 15:27 ` Peter Maydell
2024-08-12 17:56 ` Octavian Purdila
2024-08-12 22:43 ` Richard Henderson
2024-08-13 15:47 ` Octavian Purdila
2024-08-05 20:16 ` [RFC PATCH 04/23] hw/arm: add SVD file for NXP i.MX RT595 Octavian Purdila
2024-08-06 14:06 ` Alex Bennée
2024-08-06 20:31 ` Octavian Purdila
2024-08-07 11:24 ` Philippe Mathieu-Daudé
2024-08-07 16:36 ` Octavian Purdila
2024-08-09 9:13 ` Daniel P. Berrangé
2024-08-09 22:40 ` Octavian Purdila
2024-08-05 20:17 ` [RFC PATCH 05/23] hw: add register access utility functions Octavian Purdila
2024-08-12 15:32 ` Peter Maydell
2024-08-12 21:14 ` Octavian Purdila
2024-08-12 22:35 ` Richard Henderson
2024-08-13 8:28 ` Philippe Mathieu-Daudé
2024-08-05 20:17 ` [RFC PATCH 06/23] hw/misc: add basic flexcomm device model Octavian Purdila
2024-08-05 20:17 ` [RFC PATCH 07/23] tests/unit: add system bus mock Octavian Purdila
2024-08-05 20:17 ` [RFC PATCH 08/23] test/unit: add register access macros and functions Octavian Purdila
2024-08-05 20:17 ` [RFC PATCH 09/23] test/unit: add flexcomm unit test Octavian Purdila
2024-08-05 20:17 ` [RFC PATCH 10/23] hw/char: add support for flexcomm usart Octavian Purdila
2024-08-05 20:17 ` [RFC PATCH 11/23] test/unit: add flexcomm usart unit test Octavian Purdila
2024-08-05 20:17 ` [RFC PATCH 12/23] hw/i2c: add support for flexcomm i2c Octavian Purdila
2024-08-05 20:17 ` [RFC PATCH 13/23] test/unit: add i2c-tester Octavian Purdila
2024-08-05 20:17 ` [RFC PATCH 14/23] test/unit: add unit tests for flexcomm i2c Octavian Purdila
2024-08-05 20:17 ` [RFC PATCH 15/23] hw/ssi: add support for flexcomm spi Octavian Purdila
2024-08-05 20:17 ` [RFC PATCH 16/23] test/unit: add spi-tester Octavian Purdila
2024-08-05 20:17 ` [RFC PATCH 17/23] test/unit: add unit tests for flexcomm spi Octavian Purdila
2024-08-05 20:17 ` [RFC PATCH 18/23] hw/misc: add support for RT500's clock controller Octavian Purdila
2024-08-05 20:17 ` [RFC PATCH 19/23] test/unit: add unit tests " Octavian Purdila
2024-08-05 20:17 ` [RFC PATCH 20/23] hw/ssi: add support for flexspi Octavian Purdila
2024-08-08 5:11 ` Philippe Mathieu-Daudé
2024-08-08 21:31 ` Octavian Purdila
2024-08-09 8:54 ` Philippe Mathieu-Daudé
2024-08-05 20:17 ` [RFC PATCH 21/23] hw/misc: add support for RT500 reset controller Octavian Purdila
2024-08-08 5:00 ` Philippe Mathieu-Daudé
2024-08-05 20:17 ` [RFC PATCH 22/23] hw/arm: add basic support for the RT500 SoC Octavian Purdila
2024-08-06 14:51 ` Philippe Mathieu-Daudé
2024-08-07 23:57 ` Octavian Purdila
2024-08-05 20:17 ` [RFC PATCH 23/23] hw/arm: add RT595-EVK board Octavian Purdila
2024-08-12 16:10 ` [RFC PATCH 00/23] NXP i.MX RT595, ARM SVD and device model unit tests Peter Maydell
2024-08-12 16:22 ` Daniel P. Berrangé
2024-08-12 18:39 ` Octavian Purdila
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=20240805201719.2345596-1-tavip@google.com \
--to=tavip@google.com \
--cc=alex.bennee@linaro.org \
--cc=alistair@alistair23.me \
--cc=berrange@redhat.com \
--cc=bleal@redhat.com \
--cc=crosa@redhat.com \
--cc=jsnow@redhat.com \
--cc=marcandre.lureau@redhat.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=stefanst@google.com \
--cc=thuth@redhat.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.