qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL 00/30] Renesas SH-4 patches for 2021-10-30
@ 2021-10-30 17:05 Philippe Mathieu-Daudé
  2021-10-30 17:05 ` [PULL 01/30] hw/sh4: Coding style: Remove tabs Philippe Mathieu-Daudé
                   ` (30 more replies)
  0 siblings, 31 replies; 32+ messages in thread
From: Philippe Mathieu-Daudé @ 2021-10-30 17:05 UTC (permalink / raw)
  To: qemu-devel
  Cc: Marc-André Lureau, Magnus Damm, Philippe Mathieu-Daudé,
	Yoshinori Sato, Paolo Bonzini

The following changes since commit dd61b91c080cdfba1360a5ea1e4693fffb3445b0:

  Merge remote-tracking branch 'remotes/armbru/tags/pull-qapi-2021-10-29' into staging (2021-10-29 19:42:36 -0700)

are available in the Git repository at:

  https://github.com/philmd/qemu.git tags/renesas-20211030

for you to fetch changes up to 46e44759fc24a05e338cd37a735b4aad5422e717:

  hw/timer/sh_timer: Remove use of hw_error (2021-10-30 18:39:37 +0200)

----------------------------------------------------------------
Renesas SH-4 patches queue

Patches from Zoltan:
- Various clean up to align the code style with the rest of the code base
- QOM'ify the SH_SERIAL device
- Modify few memory region size to better match the hardware manual

----------------------------------------------------------------

BALATON Zoltan (30):
  hw/sh4: Coding style: Remove tabs
  hw/sh4: Coding style: Fix multi-line comments
  hw/sh4: Coding style: White space fixes
  hw/sh4: Coding style: Add missing braces
  hw/sh4: Coding style: Remove unnecessary casts
  hw/sh4: Fix typos in a comment
  hw/sh4: Change debug printfs to traces
  hw/sh4/r2d: Use error_report instead of fprintf to stderr
  hw/char/sh_serial: Do not abort on invalid access
  hw/char/sh_serial: Rename type sh_serial_state to SHSerialState
  hw/char/sh_serial: Embed QEMUTimer in state struct
  hw/char/sh_serial: Split off sh_serial_reset() from sh_serial_init()
  hw/char/sh_serial: QOM-ify
  hw/char/sh_serial: Add device id to trace output
  hw/intc/sh_intc: Use existing macro instead of local one
  hw/intc/sh_intc: Turn some defines into an enum
  hw/intc/sh_intc: Rename iomem region
  hw/intc/sh_intc: Drop another useless macro
  hw/intc/sh_intc: Move sh_intc_register() closer to its only user
  hw/intc/sh_intc: Remove excessive parenthesis
  hw/intc/sh_intc: Use array index instead of pointer arithmetics
  hw/intc/sh_intc: Inline and drop sh_intc_source() function
  hw/intc/sh_intc: Replace abort() with g_assert_not_reached()
  hw/intc/sh_intc: Avoid using continue in loops
  hw/intc/sh_intc: Simplify allocating sources array
  hw/intc/sh_intc: Remove unneeded local variable initialisers
  hw/timer/sh_timer: Rename sh_timer_state to SHTimerState
  hw/timer/sh_timer: Do not wrap lines that are not too long
  hw/timer/sh_timer: Fix timer memory region size
  hw/timer/sh_timer: Remove use of hw_error

 meson.build              |    1 +
 hw/sh4/sh7750_regs.h     | 1528 +++++++++++++++++++-------------------
 hw/sh4/trace.h           |    1 +
 include/hw/sh4/sh.h      |   19 +-
 include/hw/sh4/sh_intc.h |    2 +-
 hw/char/sh_serial.c      |  232 +++---
 hw/intc/sh_intc.c        |  573 +++++++-------
 hw/pci-host/sh_pci.c     |   10 +-
 hw/sh4/r2d.c             |   69 +-
 hw/sh4/sh7750.c          |  631 ++++++++--------
 hw/sh4/sh7750_regnames.c |  148 ++--
 hw/sh4/shix.c            |   12 +-
 hw/timer/sh_timer.c      |  151 ++--
 hw/char/trace-events     |    4 +
 hw/intc/trace-events     |    8 +
 hw/sh4/trace-events      |    3 +
 hw/timer/trace-events    |    5 +
 17 files changed, 1713 insertions(+), 1684 deletions(-)
 create mode 100644 hw/sh4/trace.h
 create mode 100644 hw/sh4/trace-events

-- 
2.31.1



^ permalink raw reply	[flat|nested] 32+ messages in thread

end of thread, other threads:[~2021-10-30 20:14 UTC | newest]

Thread overview: 32+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-10-30 17:05 [PULL 00/30] Renesas SH-4 patches for 2021-10-30 Philippe Mathieu-Daudé
2021-10-30 17:05 ` [PULL 01/30] hw/sh4: Coding style: Remove tabs Philippe Mathieu-Daudé
2021-10-30 17:05 ` [PULL 02/30] hw/sh4: Coding style: Fix multi-line comments Philippe Mathieu-Daudé
2021-10-30 17:05 ` [PULL 03/30] hw/sh4: Coding style: White space fixes Philippe Mathieu-Daudé
2021-10-30 17:05 ` [PULL 04/30] hw/sh4: Coding style: Add missing braces Philippe Mathieu-Daudé
2021-10-30 17:05 ` [PULL 05/30] hw/sh4: Coding style: Remove unnecessary casts Philippe Mathieu-Daudé
2021-10-30 17:05 ` [PULL 06/30] hw/sh4: Fix typos in a comment Philippe Mathieu-Daudé
2021-10-30 17:05 ` [PULL 07/30] hw/sh4: Change debug printfs to traces Philippe Mathieu-Daudé
2021-10-30 17:05 ` [PULL 08/30] hw/sh4/r2d: Use error_report instead of fprintf to stderr Philippe Mathieu-Daudé
2021-10-30 17:05 ` [PULL 09/30] hw/char/sh_serial: Do not abort on invalid access Philippe Mathieu-Daudé
2021-10-30 17:05 ` [PULL 10/30] hw/char/sh_serial: Rename type sh_serial_state to SHSerialState Philippe Mathieu-Daudé
2021-10-30 17:05 ` [PULL 11/30] hw/char/sh_serial: Embed QEMUTimer in state struct Philippe Mathieu-Daudé
2021-10-30 17:05 ` [PULL 12/30] hw/char/sh_serial: Split off sh_serial_reset() from sh_serial_init() Philippe Mathieu-Daudé
2021-10-30 17:05 ` [PULL 13/30] hw/char/sh_serial: QOM-ify Philippe Mathieu-Daudé
2021-10-30 17:05 ` [PULL 14/30] hw/char/sh_serial: Add device id to trace output Philippe Mathieu-Daudé
2021-10-30 17:06 ` [PULL 15/30] hw/intc/sh_intc: Use existing macro instead of local one Philippe Mathieu-Daudé
2021-10-30 17:06 ` [PULL 16/30] hw/intc/sh_intc: Turn some defines into an enum Philippe Mathieu-Daudé
2021-10-30 17:06 ` [PULL 17/30] hw/intc/sh_intc: Rename iomem region Philippe Mathieu-Daudé
2021-10-30 17:06 ` [PULL 18/30] hw/intc/sh_intc: Drop another useless macro Philippe Mathieu-Daudé
2021-10-30 17:06 ` [PULL 19/30] hw/intc/sh_intc: Move sh_intc_register() closer to its only user Philippe Mathieu-Daudé
2021-10-30 17:06 ` [PULL 20/30] hw/intc/sh_intc: Remove excessive parenthesis Philippe Mathieu-Daudé
2021-10-30 17:06 ` [PULL 21/30] hw/intc/sh_intc: Use array index instead of pointer arithmetics Philippe Mathieu-Daudé
2021-10-30 17:06 ` [PULL 22/30] hw/intc/sh_intc: Inline and drop sh_intc_source() function Philippe Mathieu-Daudé
2021-10-30 17:06 ` [PULL 23/30] hw/intc/sh_intc: Replace abort() with g_assert_not_reached() Philippe Mathieu-Daudé
2021-10-30 17:06 ` [PULL 24/30] hw/intc/sh_intc: Avoid using continue in loops Philippe Mathieu-Daudé
2021-10-30 17:06 ` [PULL 25/30] hw/intc/sh_intc: Simplify allocating sources array Philippe Mathieu-Daudé
2021-10-30 17:06 ` [PULL 26/30] hw/intc/sh_intc: Remove unneeded local variable initialisers Philippe Mathieu-Daudé
2021-10-30 17:06 ` [PULL 27/30] hw/timer/sh_timer: Rename sh_timer_state to SHTimerState Philippe Mathieu-Daudé
2021-10-30 17:06 ` [PULL 28/30] hw/timer/sh_timer: Do not wrap lines that are not too long Philippe Mathieu-Daudé
2021-10-30 17:06 ` [PULL 29/30] hw/timer/sh_timer: Fix timer memory region size Philippe Mathieu-Daudé
2021-10-30 17:06 ` [PULL 30/30] hw/timer/sh_timer: Remove use of hw_error Philippe Mathieu-Daudé
2021-10-30 20:13 ` [PULL 00/30] Renesas SH-4 patches for 2021-10-30 Richard Henderson

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).