The following changes since commit f4abdf32714d1845b7c01ec136dd2b04c2f7db47:
Merge remote-tracking branch 'remotes/stsquad/tags/pull-testing-docs-xen-up= dates-100321-2' into staging (2021-03-11 16:20:58 +0000) are available in the Git repository at: git://github.com/vivier/qemu-m68k.git tags/m68k-for-6.0-pull-request for you to fetch changes up to dcb5d042fe7901155e9428ce313b3033ccd2312e: m68k: add Virtual M68k Machine (2021-03-11 21:13:00 +0100) ---------------------------------------------------------------- Introduce the m68k virt machine Prepare MacOS ROM support: - add RTR instruction - fix unaligned access requirement - fix ATC bit (68040 MMU) ---------------------------------------------------------------- Laurent Vivier (6): target/m68k: implement rtr instruction char: add goldfish-tty intc: add goldfish-pic m68k: add an interrupt controller m68k: add a system controller m68k: add Virtual M68k Machine Mark Cave-Ayland (3): target/m68k: don't set SSW ATC bit for physical bus errors target/m68k: reformat m68k_features enum target/m68k: add M68K_FEATURE_UNALIGNED_DATA feature docs/specs/virt-ctlr.txt | 26 ++ default-configs/devices/m68k-softmmu.mak | 1 + include/hw/char/goldfish_tty.h | 35 ++ include/hw/intc/goldfish_pic.h | 33 ++ include/hw/intc/m68k_irqc.h | 41 +++ include/hw/misc/virt_ctrl.h | 22 ++ .../standard-headers/asm-m68k/bootinfo-virt.h | 18 + target/m68k/cpu.h | 68 ++-- hw/char/goldfish_tty.c | 283 ++++++++++++++++ hw/intc/goldfish_pic.c | 219 ++++++++++++ hw/intc/m68k_irqc.c | 119 +++++++ hw/m68k/virt.c | 313 ++++++++++++++++++ hw/misc/virt_ctrl.c | 151 +++++++++ target/m68k/cpu.c | 1 + target/m68k/op_helper.c | 17 +- target/m68k/translate.c | 20 ++ MAINTAINERS | 13 + hw/char/Kconfig | 3 + hw/char/meson.build | 2 + hw/char/trace-events | 10 + hw/intc/Kconfig | 6 + hw/intc/meson.build | 2 + hw/intc/trace-events | 8 + hw/m68k/Kconfig | 9 + hw/m68k/meson.build | 1 + hw/misc/Kconfig | 3 + hw/misc/meson.build | 3 + hw/misc/trace-events | 7 + 28 files changed, 1410 insertions(+), 24 deletions(-) create mode 100644 docs/specs/virt-ctlr.txt create mode 100644 include/hw/char/goldfish_tty.h create mode 100644 include/hw/intc/goldfish_pic.h create mode 100644 include/hw/intc/m68k_irqc.h create mode 100644 include/hw/misc/virt_ctrl.h create mode 100644 include/standard-headers/asm-m68k/bootinfo-virt.h create mode 100644 hw/char/goldfish_tty.c create mode 100644 hw/intc/goldfish_pic.c create mode 100644 hw/intc/m68k_irqc.c create mode 100644 hw/m68k/virt.c create mode 100644 hw/misc/virt_ctrl.c --=20 2.29.2