[PATCH 00/17] aspeed: extensions and fixes

Cédric Le Goater posted 17 patches 4 years, 5 months ago
Test asan passed
Test checkpatch passed
Test FreeBSD passed
Test docker-mingw@fedora passed
Test docker-clang@ubuntu passed
Test docker-quick@centos7 passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20191119141211.25716-1-clg@kaod.org
Maintainers: "Cédric Le Goater" <clg@kaod.org>, Joel Stanley <joel@jms.id.au>, Andrew Jeffery <andrew@aj.id.au>, Jason Wang <jasowang@redhat.com>, Peter Maydell <peter.maydell@linaro.org>, Alistair Francis <alistair@alistair23.me>
There is a newer version of this series
include/hw/arm/aspeed.h          |  24 +-
include/hw/arm/aspeed_soc.h      |   1 +
include/hw/i2c/aspeed_i2c.h      |  16 ++
include/hw/ssi/aspeed_smc.h      |   1 +
include/hw/watchdog/wdt_aspeed.h |   1 +
hw/arm/aspeed.c                  | 259 ++++++++++--------
hw/arm/aspeed_ast2600.c          |  25 +-
hw/arm/aspeed_soc.c              |  22 +-
hw/gpio/aspeed_gpio.c            |   1 +
hw/i2c/aspeed_i2c.c              | 439 +++++++++++++++++++++++++++++--
hw/misc/aspeed_scu.c             |  19 +-
hw/misc/aspeed_sdmc.c            |   6 +-
hw/net/ftgmac100.c               |  19 +-
hw/ssi/aspeed_smc.c              |  63 +++--
hw/timer/aspeed_timer.c          |  17 +-
hw/watchdog/wdt_aspeed.c         |  41 ++-
hw/i2c/trace-events              |   9 +
17 files changed, 744 insertions(+), 219 deletions(-)
[PATCH 00/17] aspeed: extensions and fixes
Posted by Cédric Le Goater 4 years, 5 months ago
Hi,

Here is a series adding :

 - support for pool buffer transfers in the I2C controller
 - fixes for the AST2600 and for the SMC controller
 - a new Tacoma BMC board using the AST2600 SoC.
 - misc small cleanups

Thanks,

C.


Cédric Le Goater (12):
  aspeed/i2c: Add support for pool buffer transfers
  aspeed/i2c: Check SRAM enablement on AST2500
  aspeed: Add a DRAM memory region at the SoC level
  aspeed/i2c: Add support for DMA transfers
  aspeed/i2c: Add trace events
  aspeed/smc: Restore default AHB window mapping at reset
  aspeed/smc: Do not map disabled segment on the AST2600
  aspeed/smc: Add AST2600 timings registers
  aspeed: Remove AspeedBoardConfig array and use AspeedMachineClass
  aspeed: Add support for the tacoma-bmc board
  aspeed: Change the "scu" property definition
  aspeed: Change the "nic" property definition

Joel Stanley (4):
  aspeed/sdmc: Make ast2600 default 1G
  aspeed/scu: Fix W1C behavior
  watchdog/aspeed: Improve watchdog timeout message
  watchdog/aspeed: Fix AST2600 frequency behaviour

PanNengyuan (1):
  gpio: fix memory leak in aspeed_gpio_init()

 include/hw/arm/aspeed.h          |  24 +-
 include/hw/arm/aspeed_soc.h      |   1 +
 include/hw/i2c/aspeed_i2c.h      |  16 ++
 include/hw/ssi/aspeed_smc.h      |   1 +
 include/hw/watchdog/wdt_aspeed.h |   1 +
 hw/arm/aspeed.c                  | 259 ++++++++++--------
 hw/arm/aspeed_ast2600.c          |  25 +-
 hw/arm/aspeed_soc.c              |  22 +-
 hw/gpio/aspeed_gpio.c            |   1 +
 hw/i2c/aspeed_i2c.c              | 439 +++++++++++++++++++++++++++++--
 hw/misc/aspeed_scu.c             |  19 +-
 hw/misc/aspeed_sdmc.c            |   6 +-
 hw/net/ftgmac100.c               |  19 +-
 hw/ssi/aspeed_smc.c              |  63 +++--
 hw/timer/aspeed_timer.c          |  17 +-
 hw/watchdog/wdt_aspeed.c         |  41 ++-
 hw/i2c/trace-events              |   9 +
 17 files changed, 744 insertions(+), 219 deletions(-)

-- 
2.21.0


Re: [PATCH 00/17] aspeed: extensions and fixes
Posted by Peter Maydell 4 years, 4 months ago
On Tue, 19 Nov 2019 at 14:12, Cédric Le Goater <clg@kaod.org> wrote:
>
> Hi,
>
> Here is a series adding :
>
>  - support for pool buffer transfers in the I2C controller
>  - fixes for the AST2600 and for the SMC controller
>  - a new Tacoma BMC board using the AST2600 SoC.
>  - misc small cleanups

Applied to target-arm.next for 5.0; thanks.

-- PMM