[PATCH 0/3] MIPS Virt machine

Jiaxun Yang posted 3 patches 1 year, 2 months ago
There is a newer version of this series
MAINTAINERS                             |    7 +
configs/devices/mips-softmmu/common.mak |    1 +
docs/system/target-mips.rst             |   26 +-
hw/mips/Kconfig                         |   18 +
hw/mips/meson.build                     |    1 +
hw/mips/virt.c                          | 1015 +++++++++++++++++++++++
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         |   41 +
11 files changed, 1206 insertions(+), 8 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
[PATCH 0/3] MIPS Virt machine
Posted by Jiaxun Yang 1 year, 2 months ago
Hi there,

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 comptitable
with MIPS's existing internal simulation tools.

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

For testing purpose I've built little endian kernel[1] to work with this
machine with R4X00, loongson2f, octeon, mips32r2, mips64r2 and mips64r6. 

TODO:
- Documentation
- Test against big endian kernel
- nanoMIPS options

Thanks

Jiaxun Yang (3):
  docs/system: Remove "mips" board from target-mips.rst
  hw/misc: Add MIPS Trickbox device
  hw/mips: Add MIPS virt board

 MAINTAINERS                             |    7 +
 configs/devices/mips-softmmu/common.mak |    1 +
 docs/system/target-mips.rst             |   26 +-
 hw/mips/Kconfig                         |   18 +
 hw/mips/meson.build                     |    1 +
 hw/mips/virt.c                          | 1015 +++++++++++++++++++++++
 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         |   41 +
 11 files changed, 1206 insertions(+), 8 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

-- 
2.37.1 (Apple Git-137.1)
Re: [PATCH 0/3] MIPS Virt machine
Posted by Philippe Mathieu-Daudé 1 year, 1 month ago
> Jiaxun Yang (3):
>    docs/system: Remove "mips" board from target-mips.rst
Patch 1 merged as commit abe45a859b.