diff options
| author | Tom Rini <[email protected]> | 2026-02-02 14:24:56 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2026-02-02 14:25:48 -0600 |
| commit | 1de103fc29761fa729dffaa15d0cfb2766be05e4 (patch) | |
| tree | fc2253a01976672d68a4d984273e7f02c1fbd3cc /MAINTAINERS | |
| parent | 4b287e0a3ae4ab3159584cb5ae12c9b470716be8 (diff) | |
| parent | 838e3be9e1d39e38661a788ae3bcfb9f989450a8 (diff) | |
Merge patch series "m68k: Add support for QEMU virt machine"
Kuan-Wei Chiu <[email protected]> says:
Add support for the QEMU 'virt' machine on the m68k architecture. The
QEMU virt machine models a generic system utilizing Goldfish virtual
peripherals and is capable of emulating various classic 68k CPUs.
Currently, U-Boot's m68k architecture support focuses on ColdFire
variants. This series expands support to include the classic M680x0
architecture, implementing the necessary exception vectors, startup
code, and a bootinfo parser compatible with the QEMU interface.
Drivers for Goldfish peripherals (TTY, Timer, RTC) and the QEMU
Virtual System Controller (sysreset) are also added to enable serial
console, timekeeping, and system reset functionality.
The implementation has been verified on QEMU targeting the M68040 CPU,
confirming successful hardware initialization and boot to the U-Boot
command shell. Additionally, the CI configuration was verified locally
using gitlab-ci-local "qemu_m68k_virt test.py", resulting in
PASS qemu_m68k_virt test.py.
Link: https://lore.kernel.org/r/[email protected]
[trini: Re-sort MAINTAINERS entries]
Signed-off-by: Tom Rini <[email protected]>
Diffstat (limited to 'MAINTAINERS')
| -rw-r--r-- | MAINTAINERS | 42 |
1 files changed, 33 insertions, 9 deletions
diff --git a/MAINTAINERS b/MAINTAINERS index a0f87da67e1..0734c07da1e 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -1048,15 +1048,6 @@ T: git https://source.denx.de/u-boot/custodians/u-boot-clk.git F: drivers/clk/ F: drivers/clk/imx/ -COLDFIRE -M: Huan Wang <[email protected]> -M: Angelo Dureghello <[email protected]> -S: Maintained -T: git https://source.denx.de/u-boot/custodians/u-boot-coldfire.git -F: arch/m68k/ -F: doc/arch/m68k.rst -F: drivers/watchdog/mcf_wdt.c - CPU M: Simon Glass <[email protected]> M: Hou Zhiqiang <[email protected]> @@ -1263,6 +1254,18 @@ S: Maintained F: drivers/misc/gsc.c F: include/gsc.h +GOLDFISH SERIAL DRIVER +M: Kuan-Wei Chiu <[email protected]> +S: Maintained +F: drivers/serial/serial_goldfish.c +F: include/goldfish_tty.h + +GOLDFISH TIMER DRIVER +M: Kuan-Wei Chiu <[email protected]> +S: Maintained +F: drivers/timer/goldfish_timer.c +F: include/goldfish_timer.h + INTERCONNECT: M: Neil Armstrong <[email protected]> S: Maintained @@ -1315,6 +1318,21 @@ F: lib/getopt.c F: test/log/ F: test/py/tests/test_log.py +M680X0 ARCHITECTURE +M: Kuan-Wei Chiu <[email protected]> +S: Maintained +F: arch/m68k/cpu/m680x0/ +F: arch/m68k/include/asm/bootinfo.h + +M68K +M: Angelo Dureghello <[email protected]> +M: Kuan-Wei Chiu <[email protected]> +S: Maintained +T: git https://source.denx.de/u-boot/custodians/u-boot-coldfire.git +F: arch/m68k/ +F: doc/arch/m68k.rst +F: drivers/watchdog/mcf_wdt.c + MALI DISPLAY PROCESSORS M: Liviu Dudau <[email protected]> S: Supported @@ -1589,6 +1607,12 @@ S: Maintained T: git https://source.denx.de/u-boot/custodians/u-boot-mpc85xx.git F: arch/powerpc/cpu/mpc85xx/ +QEMU VIRTUAL SYSTEM CONTROLLER +M: Kuan-Wei Chiu <[email protected]> +S: Maintained +F: drivers/sysreset/sysreset_qemu_virt_ctrl.c +F: include/qemu_virt_ctrl.h + RAW NAND M: Dario Binacchi <[email protected]> M: Michael Trimarchi <[email protected]> |
