[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 00/19] aspeed queue
From: |
Cédric Le Goater |
Subject: |
[PULL 00/19] aspeed queue |
Date: |
Fri, 14 Jun 2024 09:26:01 +0200 |
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
- [PULL 00/19] aspeed queue,
Cédric Le Goater <=
- [PULL 01/19] aspeed/smc: Reintroduce "dram-base" property for AST2700, Cédric Le Goater, 2024/06/14
- [PULL 02/19] aspeed/wdt: Add AST2700 support, Cédric Le Goater, 2024/06/14
- [PULL 04/19] aspeed/sdmc: remove redundant macros, Cédric Le Goater, 2024/06/14
- [PULL 03/19] aspeed/sli: Add AST2700 support, Cédric Le Goater, 2024/06/14
- [PULL 06/19] aspeed/sdmc: Add AST2700 support, Cédric Le Goater, 2024/06/14
- [PULL 07/19] aspeed/smc: correct device description, Cédric Le Goater, 2024/06/14
- [PULL 05/19] aspeed/sdmc: fix coding style, Cédric Le Goater, 2024/06/14
- [PULL 08/19] aspeed/smc: support dma start length and 1 byte length unit, Cédric Le Goater, 2024/06/14
- [PULL 10/19] aspeed/smc: support different memory region ops for SMC flash region, Cédric Le Goater, 2024/06/14
- [PULL 09/19] aspeed/smc: support 64 bits dma dram address, Cédric Le Goater, 2024/06/14