[PULL v2 00/19] aspeed queue

Cédric Le Goater posted 19 patches 2 months, 3 weeks ago
Only 0 patches received!
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            | 361 ++++++++++++++++++++++
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, 2351 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
[PULL v2 00/19] aspeed queue
Posted by Cédric Le Goater 2 months, 3 weeks ago
The following changes since commit 05ad1440b8428b0ade9b8e5c01469adb8fbf83e3:

  Merge tag 'virtio-grants-v8-tag' of https://gitlab.com/sstabellini/qemu into staging (2024-06-15 20:13:06 -0700)

are available in the Git repository at:

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

for you to fetch changes up to 5f44521242d2fdfa190206a6be40577a58a71ef9:

  MAINTAINERS: Add reviewers for ASPEED BMCs (2024-06-16 21:08:54 +0200)

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

* Add AST2700 support

Changes in v2:

  - Fixed class_size in TYPE_ASPEED_INTC definition 
  - Fixed spelling : Unhandeled -> Unhandled 

----------------------------------------------------------------
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            | 361 ++++++++++++++++++++++
 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, 2351 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


Re: [PULL v2 00/19] aspeed queue
Posted by Richard Henderson 2 months, 3 weeks ago
On 6/16/24 21:02, Cédric Le Goater wrote:
> The following changes since commit 05ad1440b8428b0ade9b8e5c01469adb8fbf83e3:
> 
>    Merge tag 'virtio-grants-v8-tag' ofhttps://gitlab.com/sstabellini/qemu  into staging (2024-06-15 20:13:06 -0700)
> 
> are available in the Git repository at:
> 
>    https://github.com/legoater/qemu/  tags/pull-aspeed-20240617
> 
> for you to fetch changes up to 5f44521242d2fdfa190206a6be40577a58a71ef9:
> 
>    MAINTAINERS: Add reviewers for ASPEED BMCs (2024-06-16 21:08:54 +0200)
> 
> ----------------------------------------------------------------
> aspeed queue:
> 
> * Add AST2700 support
> 
> Changes in v2:
> 
>    - Fixed class_size in TYPE_ASPEED_INTC definition
>    - Fixed spelling : Unhandeled -> Unhandled

Applied, thanks.  Please update https://wiki.qemu.org/ChangeLog/9.1 as appropriate.


r~