qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL 00/16] SPARC patches for 2020-06-09
@ 2020-06-09  7:31 Philippe Mathieu-Daudé
  2020-06-09  7:31 ` [PULL 01/16] hw/sparc/sun4m: Use UnimplementedDevice for I/O devices Philippe Mathieu-Daudé
                   ` (17 more replies)
  0 siblings, 18 replies; 22+ messages in thread
From: Philippe Mathieu-Daudé @ 2020-06-09  7:31 UTC (permalink / raw)
  To: qemu-devel
  Cc: Aleksandar Rikalo, Mark Cave-Ayland, KONRAD Frederic,
	Fabien Chouteau, Philippe Mathieu-Daudé, Aleksandar Markovic,
	Artyom Tarasenko, Philippe Mathieu-Daudé, Aurelien Jarno

Hi Peter,

These are the latest SPARC patches sent to the list.

This pull request is with authorization of Artyom and Mark:
- https://www.mail-archive.com/qemu-devel@nongnu.org/msg710154.html
- https://www.mail-archive.com/qemu-devel@nongnu.org/msg710156.html

Frederic doesn't have his GPG key signed:
- https://www.mail-archive.com/qemu-devel@nongnu.org/msg706509.html

The following changes since commit 49ee11555262a256afec592dfed7c5902d5eefd2:

  Merge remote-tracking branch 'remotes/vivier2/tags/linux-user-for-5.1-pull-=
request' into staging (2020-06-08 11:04:57 +0100)

are available in the Git repository at:

  https://gitlab.com/philmd/qemu.git tags/sparc-next-20200609

for you to fetch changes up to 86e8c353f705f14f2f2fd7a6195cefa431aa24d9:

  target/sparc/int32_helper: Extract and use excp_name_str() (2020-06-09 09:2=
1:10 +0200)

----------------------------------------------------------------
SPARC patches

HW:
- Use UNIMP device instead of EMPTY_SLOT
- Make EMPTY_SLOT similar to UNIMP device
- Map UART devices unconditionally
- Pair of fixes for AHB PnP
- Add trace events to AHB PnP

TCG:
- Improve exception logging

CI:
- https://gitlab.com/philmd/qemu/-/pipelines/154231191
- https://travis-ci.org/github/philmd/qemu/builds/696321130

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

Philippe Mathieu-Daud=C3=A9 (16):
  hw/sparc/sun4m: Use UnimplementedDevice for I/O devices
  hw/misc/empty_slot: Lower address space priority
  hw/misc/empty_slot: Convert 'size' field as qdev property
  hw/misc/empty_slot: Add a 'name' qdev property
  hw/misc/empty_slot: Convert debug printf() to trace event
  hw/misc/empty_slot: Move the 'hw/misc' and cover in MAINTAINERS
  hw/misc/empty_slot: Name the slots when created
  hw/sparc/leon3: Map the UART device unconditionally
  hw/sparc64/niagara: Map the UART device unconditionally
  hw/sparc64/niagara: Remove duplicated NIAGARA_UART_BASE definition
  hw/misc/grlib_ahb_apb_pnp: Avoid crash when writing to AHB PnP
    registers
  hw/misc/grlib_ahb_apb_pnp: Fix AHB PnP 8-bit accesses
  hw/misc/grlib_ahb_apb_pnp: Add trace events on read accesses
  hw/timer/grlib_gptimer: Display frequency in decimal
  target/sparc/int32_helper: Remove DEBUG_PCALL definition
  target/sparc/int32_helper: Extract and use excp_name_str()

 include/hw/empty_slot.h        |  9 -------
 include/hw/misc/empty_slot.h   | 19 ++++++++++++++
 hw/mips/malta.c                |  4 +--
 hw/{core =3D> misc}/empty_slot.c | 47 +++++++++++++++++++---------------
 hw/misc/grlib_ahb_apb_pnp.c    | 24 +++++++++++++++--
 hw/sparc/leon3.c               | 18 ++++++-------
 hw/sparc/sun4m.c               | 23 +++++++++++------
 hw/sparc64/niagara.c           |  7 ++---
 target/sparc/int32_helper.c    | 23 +++++++++--------
 MAINTAINERS                    |  7 +++++
 hw/core/Makefile.objs          |  1 -
 hw/misc/Makefile.objs          |  1 +
 hw/misc/trace-events           |  8 ++++++
 hw/sparc/Kconfig               |  1 +
 hw/timer/trace-events          |  2 +-
 15 files changed, 124 insertions(+), 70 deletions(-)
 delete mode 100644 include/hw/empty_slot.h
 create mode 100644 include/hw/misc/empty_slot.h
 rename hw/{core =3D> misc}/empty_slot.c (66%)

--=20
2.21.3



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

end of thread, other threads:[~2020-06-11 13:46 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-06-09  7:31 [PULL 00/16] SPARC patches for 2020-06-09 Philippe Mathieu-Daudé
2020-06-09  7:31 ` [PULL 01/16] hw/sparc/sun4m: Use UnimplementedDevice for I/O devices Philippe Mathieu-Daudé
2020-06-09  7:32 ` [PULL 02/16] hw/misc/empty_slot: Lower address space priority Philippe Mathieu-Daudé
2020-06-09  7:32 ` [PULL 03/16] hw/misc/empty_slot: Convert 'size' field as qdev property Philippe Mathieu-Daudé
2020-06-09  7:32 ` [PULL 04/16] hw/misc/empty_slot: Add a 'name' " Philippe Mathieu-Daudé
2020-06-09  7:32 ` [PULL 05/16] hw/misc/empty_slot: Convert debug printf() to trace event Philippe Mathieu-Daudé
2020-06-09  7:32 ` [PULL 06/16] hw/misc/empty_slot: Move the 'hw/misc' and cover in MAINTAINERS Philippe Mathieu-Daudé
2020-06-09  7:32 ` [PULL 07/16] hw/misc/empty_slot: Name the slots when created Philippe Mathieu-Daudé
2020-06-09  7:32 ` [PULL 08/16] hw/sparc/leon3: Map the UART device unconditionally Philippe Mathieu-Daudé
2020-06-09  7:32 ` [PULL 09/16] hw/sparc64/niagara: " Philippe Mathieu-Daudé
2020-06-09  7:32 ` [PULL 10/16] hw/sparc64/niagara: Remove duplicated NIAGARA_UART_BASE definition Philippe Mathieu-Daudé
2020-06-09  7:32 ` [PULL 11/16] hw/misc/grlib_ahb_apb_pnp: Avoid crash when writing to AHB PnP registers Philippe Mathieu-Daudé
2020-06-09  7:32 ` [PULL 12/16] hw/misc/grlib_ahb_apb_pnp: Fix AHB PnP 8-bit accesses Philippe Mathieu-Daudé
2020-06-09  7:32 ` [PULL 13/16] hw/misc/grlib_ahb_apb_pnp: Add trace events on read accesses Philippe Mathieu-Daudé
2020-06-09  7:32 ` [PULL 14/16] hw/timer/grlib_gptimer: Display frequency in decimal Philippe Mathieu-Daudé
2020-06-09  7:32 ` [PULL 15/16] target/sparc/int32_helper: Remove DEBUG_PCALL definition Philippe Mathieu-Daudé
2020-06-09  7:32 ` [PULL 16/16] target/sparc/int32_helper: Extract and use excp_name_str() Philippe Mathieu-Daudé
2020-06-09 20:29 ` [PULL 00/16] SPARC patches for 2020-06-09 Peter Maydell
2020-06-09 20:55 ` Mark Cave-Ayland
2020-06-11 13:30   ` Philippe Mathieu-Daudé
2020-06-11 13:35     ` Aleksandar Markovic
2020-06-11 13:45       ` Philippe Mathieu-Daudé

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