This series fixes various issues in i.MX device emulation, cleans up i.MX Kconfig handling, improves tracing, and improves some code. Functional console tests for the remaining i.MX boards are added where images are publicly available, except for imx6ul which is taken care of in a different series [1]. Fixes which appear safe for backporting are cc'd to qemu-stable.
The series is structured as follows: Patches 1-4 fix some issues and are mostly marked for backporting. Patch 2 is a follow-up on patch 1 which allows patch 1 to be backported while patch 2 shouldn't because it breaks migration. Patches 5-10 add and improve functional tests for i.MX devices. While at it, saner defaults for the amount of RAM and number of CPUs are established. Patches 11-15 turn the remaining i.MX SoC device models into SySBus devices which fixes their reset behavior. Patches 16 and 17 are QOM fixes inspired by Phil's comment during the FlexCAN series. Patches 18-33 are Kconfig cleanups where the majority is about splitting CONFIG_IMX into dedicated config items. The remainder is cosmetics and adding a QOM path to some i.MX trace events. Testing done: * Run functional tests for sabrelite, imx8mp-evk, imx8mm-evk, mcimx7d-sabre. [1] https://lore.kernel.org/qemu-devel/20260904161438.3838261-1-bin. [email protected]/ Bernhard Beschow (42): hw/watchdog/wdt_imx2: Fix handling of write-once WCR bits hw/watchdog/wdt_imx2: Remove unused attributes hw/arm/imx8mm-evk: Fix reference count of SoC object hw/arm/mcimx7d-sabre: Ignore memory transaction failures docs, tests/functional: Drop redundant CLI arguments in imx8m*-evk invocations hw/arm/sabrelite: Have 4 CPUs and 1 GiB of RAM by default tests/functional/arm: Add console test for `sabrelite` machine hw/arm/mcimx6ul-evk: Have 512 MiB of RAM by default hw/arm/mcimx7d-sabre: Have 2 CPUs and 2 GiB of RAM by default tests/functional/arm: Add console test for `mcimx7d-sabre` machine hw/arm/fsl-imx25: Derive from TYPE_SYS_BUS_DEVICE hw/arm/fsl-imx31: Derive from TYPE_SYS_BUS_DEVICE hw/arm/fsl-imx6: Derive from TYPE_SYS_BUS_DEVICE hw/arm/fsl-imx6ul: Derive from TYPE_SYS_BUS_DEVICE hw/arm/fsl-imx7: Derive from TYPE_SYS_BUS_DEVICE hw/timer/imx_gpt: Wire clock control module via link property hw/timer/imx_epit: Wire clock control module via link property hw/arm/Kconfig: Select missing UNIMP in config FSL_IMX8MM hw/misc/Kconfig: Remove redundant USB_EHCI_SYSBUS from config IMX Kconfig: Extract config IMX_AVIC from config IMX Kconfig: Extract config IMX_GPCV2 from config IMX Kconfig: Extract config IMX_RNG from config IMX Kconfig: Extract config FSL_IMX7_GPR from config IMX Kconfig: Extract config FSL_IMX{6,7}_SRC from config IMX Kconfig: Extract config FSL_IMX7_SNVS from config IMX Kconfig: Extract dedicated config FSL_IMXx_CCM from config IMX Kconfig: Extract config IMX_GPT from config IMX Kconfig: Extract config IMX_EPIT from config IMX Kconfig: Extract config GPIO_IMX from config IMX Kconfig: Extract config IMX_SPI from config IMX Kconfig: Extract config IMX_SERIAL from config IMX Kconfig: Remove config IMX hw/vmapple/Kconfig: Remove unused GPIO_PWR dependency hw/arm/fsl-imx8m: Fix typo hw/misc/imx6_src: Avoid casting from void * hw/char/imx_serial: Avoid casting from void * hw/intc/imx_avic: Avoid casting from void * hw/misc/imx*_ccm: Avoid casting from void * hw/usb/imx-usb-phy: Avoid casting from void * hw/net/imx_fec: Trace with QOM path where easily possible hw/net/lan9118_phy: Trace with QOM path hw/watchdog/wdt_imx2: Trace with QOM path MAINTAINERS | 2 + docs/system/arm/imx8m.rst | 2 +- docs/system/arm/sabrelite.rst | 4 +- include/hw/arm/fsl-imx25.h | 5 +- include/hw/arm/fsl-imx31.h | 5 +- include/hw/arm/fsl-imx6.h | 5 +- include/hw/arm/fsl-imx6ul.h | 5 +- include/hw/arm/fsl-imx7.h | 5 +- include/hw/arm/fsl-imx8mm.h | 4 +- include/hw/arm/fsl-imx8mp.h | 4 +- include/hw/watchdog/wdt_imx2.h | 2 - hw/arm/fsl-imx25.c | 13 ++--- hw/arm/fsl-imx31.c | 13 ++--- hw/arm/fsl-imx6.c | 10 ++-- hw/arm/fsl-imx6ul.c | 10 ++-- hw/arm/fsl-imx7.c | 8 ++- hw/arm/fsl-imx8mm.c | 5 +- hw/arm/fsl-imx8mp.c | 5 +- hw/arm/imx25_pdk.c | 2 +- hw/arm/imx8mm-evk.c | 4 +- hw/arm/kzm.c | 2 +- hw/arm/mcimx6ul-evk.c | 3 +- hw/arm/mcimx7d-sabre.c | 5 +- hw/arm/sabrelite.c | 5 +- hw/char/imx_serial.c | 10 ++-- hw/intc/imx_avic.c | 6 +-- hw/misc/imx25_ccm.c | 4 +- hw/misc/imx31_ccm.c | 4 +- hw/misc/imx6_ccm.c | 8 +-- hw/misc/imx6_src.c | 4 +- hw/misc/imx6ul_ccm.c | 8 +-- hw/misc/imx7_src.c | 4 +- hw/net/imx_fec.c | 28 +++++----- hw/net/lan9118_phy.c | 10 ++-- hw/timer/imx_epit.c | 14 +++++ hw/timer/imx_gpt.c | 14 +++++ hw/usb/imx-usb-phy.c | 4 +- hw/watchdog/wdt_imx2.c | 30 +++-------- hw/arm/Kconfig | 57 ++++++++++++++++++--- hw/char/Kconfig | 3 ++ hw/char/meson.build | 2 +- hw/gpio/Kconfig | 3 ++ hw/gpio/meson.build | 2 +- hw/intc/Kconfig | 6 +++ hw/intc/meson.build | 3 +- hw/misc/Kconfig | 41 +++++++++++++-- hw/misc/meson.build | 24 ++++----- hw/net/Kconfig | 2 +- hw/net/trace-events | 33 ++++++------ hw/ssi/Kconfig | 4 ++ hw/ssi/meson.build | 2 +- hw/timer/Kconfig | 10 ++++ hw/timer/meson.build | 4 +- hw/vmapple/Kconfig | 1 - hw/watchdog/trace-events | 8 +-- tests/functional/aarch64/test_imx8mm_evk.py | 4 +- tests/functional/aarch64/test_imx8mp_evk.py | 4 +- tests/functional/arm/meson.build | 2 + tests/functional/arm/test_mcimx7d_sabre.py | 46 +++++++++++++++++ tests/functional/arm/test_sabrelite.py | 46 +++++++++++++++++ 60 files changed, 393 insertions(+), 190 deletions(-) create mode 100755 tests/functional/arm/test_mcimx7d_sabre.py create mode 100755 tests/functional/arm/test_sabrelite.py -- 2.55.0
