mbox series

[v3,0/4] MIPS Virt machine

Message ID 20230308000745.56394-1-philmd@linaro.org
Headers show
Series MIPS Virt machine | expand

Message

Philippe Mathieu-Daudé March 8, 2023, 12:07 a.m. UTC
Since v2:
- Remove mips64 from gitlab's build-without-defaults job
- Require libfdt for all MIPS targets
- Various changes described in each trickbox/virt patches

v2 cover from Jiaxun Yang:

  This patchset is to add a new machine type for MIPS architecture,
  which is purely a VirtIO machine.

  It is design to utilize existing VirtIO infrastures but also
  compatible with MIPS's existing internal simulation tools.

  It should be able to cooperate with any MIPS core and boot Generic
  MIPS kernel.

  Kernel patch available at:
  https://lore.kernel.org/linux-mips/20230304221524.47160-1-jiaxun.yang@flygoat.com/

Jiaxun Yang (2):
  hw/misc: Add MIPS Trickbox device
  hw/mips: Add MIPS virt board

Philippe Mathieu-Daudé (2):
  gitlab-ci: Remove mips64-softmmu from build-without-defaults job
  configs/targets: Have all MIPS targets select FDT

 .gitlab-ci.d/buildtest.yml              |   4 +-
 MAINTAINERS                             |   7 +
 configs/devices/mips-softmmu/common.mak |   1 +
 configs/targets/mips-softmmu.mak        |   1 +
 configs/targets/mips64-softmmu.mak      |   1 +
 configs/targets/mipsel-softmmu.mak      |   1 +
 docs/system/target-mips.rst             |  22 +
 hw/mips/Kconfig                         |  16 +
 hw/mips/meson.build                     |   1 +
 hw/mips/virt.c                          | 913 ++++++++++++++++++++++++
 hw/misc/Kconfig                         |   3 +
 hw/misc/meson.build                     |   1 +
 hw/misc/mips_trickbox.c                 |  97 +++
 hw/misc/trace-events                    |   4 +
 include/hw/misc/mips_trickbox.h         |  39 +
 15 files changed, 1109 insertions(+), 2 deletions(-)
 create mode 100644 hw/mips/virt.c
 create mode 100644 hw/misc/mips_trickbox.c
 create mode 100644 include/hw/misc/mips_trickbox.h