qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Philippe Mathieu-Daudé" <f4bug@amsat.org>
To: Richard Henderson <rth@twiddle.net>,
	qemu-devel@nongnu.org,
	Yoshinori Sato <ysato@users.sourceforge.jp>
Cc: "Paolo Bonzini" <pbonzini@redhat.com>,
	"Alex Bennée" <alex.bennee@linaro.org>,
	"Philippe Mathieu-Daudé" <f4bug@amsat.org>,
	"Marc-André Lureau" <marcandre.lureau@redhat.com>
Subject: [PATCH 00/12] hw/rx: Add RX GDB simulator machine
Date: Mon,  1 Jun 2020 18:14:29 +0200	[thread overview]
Message-ID: <20200601161441.8086-1-f4bug@amsat.org> (raw)

Hi Richard,

This is the RX series I was preparing for merge-request candidate,
rebased over the last 3 months with some API updates addressed,
from Yoshinori v32:
https://www.mail-archive.com/qemu-devel@nongnu.org/msg682290.html

Unfortunately we didn't sync with Yoshinori so he diverged and
send another reworked series:
https://www.mail-archive.com/qemu-devel@nongnu.org/msg708102.html

I'm sorry the timing is so bad, but I let other maintainance duties
invert priorities, delaying the RX hardware integration.

Changes are noted in [PMD: ...] comments before my S-o-b.

Patches missing review:

 #1: target/rx/cpu: Remove unused headers
 #9:  hw/rx: Register R5F562N7 and R5F562N8 MCUs

Regard,

Phil.

Philippe Mathieu-Daudé (3):
  target/rx/cpu: Remove unused headers
  hw/rx: Register R5F562N7 and R5F562N8 MCUs
  BootLinuxConsoleTest: Test the RX GDB simulator

Richard Henderson (1):
  hw/rx: Honor -accel qtest

Yoshinori Sato (8):
  MAINTAINERS: Add entry for RX hardware
  hw/intc: RX62N interrupt controller (ICUa)
  hw/timer: RX62N 8-Bit timer (TMR)
  hw/timer: RX62N compare match timer (CMT)
  hw/char: RX62N serial communication interface (SCI)
  hw/rx: RX62N microcontroller (MCU)
  hw/rx: Add RX GDB simulator
  docs: Document the RX target

 docs/system/target-rx.rst             |  36 ++
 docs/system/targets.rst               |   1 +
 default-configs/rx-softmmu.mak        |   1 +
 include/hw/char/renesas_sci.h         |  51 +++
 include/hw/intc/rx_icu.h              |  76 ++++
 include/hw/rx/rx62n.h                 |  78 +++++
 include/hw/timer/renesas_cmt.h        |  40 +++
 include/hw/timer/renesas_tmr.h        |  55 +++
 target/rx/cpu.h                       |   2 -
 hw/char/renesas_sci.c                 | 350 +++++++++++++++++++
 hw/intc/rx_icu.c                      | 397 +++++++++++++++++++++
 hw/rx/rx-gdbsim.c                     | 198 +++++++++++
 hw/rx/rx62n.c                         | 328 ++++++++++++++++++
 hw/timer/renesas_cmt.c                | 283 +++++++++++++++
 hw/timer/renesas_tmr.c                | 477 ++++++++++++++++++++++++++
 MAINTAINERS                           |  15 +
 hw/Kconfig                            |   1 +
 hw/char/Kconfig                       |   3 +
 hw/char/Makefile.objs                 |   1 +
 hw/intc/Kconfig                       |   3 +
 hw/intc/Makefile.objs                 |   1 +
 hw/rx/Kconfig                         |  10 +
 hw/rx/Makefile.objs                   |   2 +
 hw/timer/Kconfig                      |   6 +
 hw/timer/Makefile.objs                |   2 +
 tests/acceptance/machine_rx_gdbsim.py |  68 ++++
 26 files changed, 2483 insertions(+), 2 deletions(-)
 create mode 100644 docs/system/target-rx.rst
 create mode 100644 include/hw/char/renesas_sci.h
 create mode 100644 include/hw/intc/rx_icu.h
 create mode 100644 include/hw/rx/rx62n.h
 create mode 100644 include/hw/timer/renesas_cmt.h
 create mode 100644 include/hw/timer/renesas_tmr.h
 create mode 100644 hw/char/renesas_sci.c
 create mode 100644 hw/intc/rx_icu.c
 create mode 100644 hw/rx/rx-gdbsim.c
 create mode 100644 hw/rx/rx62n.c
 create mode 100644 hw/timer/renesas_cmt.c
 create mode 100644 hw/timer/renesas_tmr.c
 create mode 100644 hw/rx/Kconfig
 create mode 100644 hw/rx/Makefile.objs
 create mode 100644 tests/acceptance/machine_rx_gdbsim.py

-- 
2.21.3



             reply	other threads:[~2020-06-01 16:16 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-06-01 16:14 Philippe Mathieu-Daudé [this message]
2020-06-01 16:14 ` [PATCH 01/12] target/rx/cpu: Remove unused headers Philippe Mathieu-Daudé
2020-06-01 16:14 ` [PATCH 02/12] MAINTAINERS: Add entry for RX hardware Philippe Mathieu-Daudé
2020-06-01 16:14 ` [PATCH 03/12] hw/intc: RX62N interrupt controller (ICUa) Philippe Mathieu-Daudé
2020-06-01 16:14 ` [PATCH 04/12] hw/timer: RX62N 8-Bit timer (TMR) Philippe Mathieu-Daudé
2020-06-01 16:14 ` [PATCH 05/12] hw/timer: RX62N compare match timer (CMT) Philippe Mathieu-Daudé
2020-06-01 16:14 ` [PATCH 06/12] hw/char: RX62N serial communication interface (SCI) Philippe Mathieu-Daudé
2020-06-01 16:14 ` [PATCH 07/12] hw/rx: RX62N microcontroller (MCU) Philippe Mathieu-Daudé
2020-06-01 16:14 ` [PATCH 08/12] hw/rx: Honor -accel qtest Philippe Mathieu-Daudé
2020-06-01 16:14 ` [PATCH 09/12] hw/rx: Register R5F562N7 and R5F562N8 MCUs Philippe Mathieu-Daudé
2020-06-01 16:14 ` [PATCH 10/12] hw/rx: Add RX GDB simulator Philippe Mathieu-Daudé
2020-06-01 16:14 ` [PATCH 11/12] BootLinuxConsoleTest: Test the " Philippe Mathieu-Daudé
2020-06-01 16:14 ` [PATCH 12/12] docs: Document the RX target Philippe Mathieu-Daudé

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20200601161441.8086-1-f4bug@amsat.org \
    --to=f4bug@amsat.org \
    --cc=alex.bennee@linaro.org \
    --cc=marcandre.lureau@redhat.com \
    --cc=pbonzini@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=rth@twiddle.net \
    --cc=ysato@users.sourceforge.jp \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).