qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL 00/19] aspeed queue
@ 2024-06-14  7:26 Cédric Le Goater
  2024-06-14  7:26 ` [PULL 01/19] aspeed/smc: Reintroduce "dram-base" property for AST2700 Cédric Le Goater
                   ` (19 more replies)
  0 siblings, 20 replies; 22+ messages in thread
From: Cédric Le Goater @ 2024-06-14  7:26 UTC (permalink / raw)
  To: qemu-arm, qemu-devel; +Cc: Cédric Le Goater

The following changes since commit 046a64b9801343e2e89eef10c7a48eec8d8c0d4f:

  Merge tag 'pull-request-2024-06-12' of https://gitlab.com/thuth/qemu into staging (2024-06-13 07:51:58 -0700)

are available in the Git repository at:

  https://github.com/legoater/qemu/ tags/pull-aspeed-20240614

for you to fetch changes up to d9f6311f5393da897e73be8a29c261125d0c1ac2:

  MAINTAINERS: Add reviewers for ASPEED BMCs (2024-06-14 07:36:09 +0200)

----------------------------------------------------------------
aspeed queue:

* Add AST2700 support

----------------------------------------------------------------
Cédric Le Goater (1):
      aspeed/smc: Reintroduce "dram-base" property for AST2700

Jamin Lin (18):
      aspeed/wdt: Add AST2700 support
      aspeed/sli: Add AST2700 support
      aspeed/sdmc: remove redundant macros
      aspeed/sdmc: fix coding style
      aspeed/sdmc: Add AST2700 support
      aspeed/smc: correct device description
      aspeed/smc: support dma start length and 1 byte length unit
      aspeed/smc: support 64 bits dma dram address
      aspeed/smc: support different memory region ops for SMC flash region
      aspeed/smc: Add AST2700 support
      aspeed/scu: Add AST2700 support
      aspeed/intc: Add AST2700 support
      aspeed/soc: Add AST2700 support
      aspeed: Add an AST2700 eval board
      aspeed/soc: fix incorrect dram size for AST2700
      test/avocado/machine_aspeed.py: Add AST2700 test case
      docs:aspeed: Add AST2700 Evaluation board
      MAINTAINERS: Add reviewers for ASPEED BMCs

 MAINTAINERS                      |   3 +
 docs/system/arm/aspeed.rst       |  39 ++-
 include/hw/arm/aspeed_soc.h      |  30 +-
 include/hw/intc/aspeed_intc.h    |  44 +++
 include/hw/misc/aspeed_scu.h     |  47 ++-
 include/hw/misc/aspeed_sdmc.h    |   5 +-
 include/hw/misc/aspeed_sli.h     |  27 ++
 include/hw/ssi/aspeed_smc.h      |   3 +
 include/hw/watchdog/wdt_aspeed.h |   3 +-
 hw/arm/aspeed.c                  |  32 ++
 hw/arm/aspeed_ast27x0.c          | 648 +++++++++++++++++++++++++++++++++++++++
 hw/intc/aspeed_intc.c            | 360 ++++++++++++++++++++++
 hw/misc/aspeed_scu.c             | 306 +++++++++++++++++-
 hw/misc/aspeed_sdmc.c            | 220 +++++++++++--
 hw/misc/aspeed_sli.c             | 177 +++++++++++
 hw/ssi/aspeed_smc.c              | 347 +++++++++++++++++++--
 hw/watchdog/wdt_aspeed.c         |  24 ++
 hw/arm/meson.build               |   1 +
 hw/intc/meson.build              |   1 +
 hw/intc/trace-events             |  13 +
 hw/misc/meson.build              |   3 +-
 hw/misc/trace-events             |  11 +
 hw/ssi/trace-events              |   2 +-
 tests/avocado/machine_aspeed.py  |  62 ++++
 24 files changed, 2350 insertions(+), 58 deletions(-)
 create mode 100644 include/hw/intc/aspeed_intc.h
 create mode 100644 include/hw/misc/aspeed_sli.h
 create mode 100644 hw/arm/aspeed_ast27x0.c
 create mode 100644 hw/intc/aspeed_intc.c
 create mode 100644 hw/misc/aspeed_sli.c



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

end of thread, other threads:[~2024-06-15 21:57 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-14  7:26 [PULL 00/19] aspeed queue Cédric Le Goater
2024-06-14  7:26 ` [PULL 01/19] aspeed/smc: Reintroduce "dram-base" property for AST2700 Cédric Le Goater
2024-06-14  7:26 ` [PULL 02/19] aspeed/wdt: Add AST2700 support Cédric Le Goater
2024-06-14  7:26 ` [PULL 03/19] aspeed/sli: " Cédric Le Goater
2024-06-14  7:26 ` [PULL 04/19] aspeed/sdmc: remove redundant macros Cédric Le Goater
2024-06-14  7:26 ` [PULL 05/19] aspeed/sdmc: fix coding style Cédric Le Goater
2024-06-14  7:26 ` [PULL 06/19] aspeed/sdmc: Add AST2700 support Cédric Le Goater
2024-06-14  7:26 ` [PULL 07/19] aspeed/smc: correct device description Cédric Le Goater
2024-06-14  7:26 ` [PULL 08/19] aspeed/smc: support dma start length and 1 byte length unit Cédric Le Goater
2024-06-14  7:26 ` [PULL 09/19] aspeed/smc: support 64 bits dma dram address Cédric Le Goater
2024-06-14  7:26 ` [PULL 10/19] aspeed/smc: support different memory region ops for SMC flash region Cédric Le Goater
2024-06-14  7:26 ` [PULL 11/19] aspeed/smc: Add AST2700 support Cédric Le Goater
2024-06-14  7:26 ` [PULL 12/19] aspeed/scu: " Cédric Le Goater
2024-06-14  7:26 ` [PULL 13/19] aspeed/intc: " Cédric Le Goater
2024-06-14  7:26 ` [PULL 14/19] aspeed/soc: " Cédric Le Goater
2024-06-14  7:26 ` [PULL 15/19] aspeed: Add an AST2700 eval board Cédric Le Goater
2024-06-14  7:26 ` [PULL 16/19] aspeed/soc: fix incorrect dram size for AST2700 Cédric Le Goater
2024-06-14  7:26 ` [PULL 17/19] test/avocado/machine_aspeed.py: Add AST2700 test case Cédric Le Goater
2024-06-14  7:26 ` [PULL 18/19] docs:aspeed: Add AST2700 Evaluation board Cédric Le Goater
2024-06-14  7:26 ` [PULL 19/19] MAINTAINERS: Add reviewers for ASPEED BMCs Cédric Le Goater
2024-06-15 16:14 ` [PULL 00/19] aspeed queue Richard Henderson
2024-06-15 21:56   ` Cédric Le Goater

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