All of lore.kernel.org
 help / color / mirror / Atom feed
From: Richard Henderson <richard.henderson@linaro.org>
To: "Cédric Le Goater" <clg@kaod.org>,
	qemu-arm@nongnu.org, qemu-devel@nongnu.org
Cc: Peter Maydell <peter.maydell@linaro.org>
Subject: Re: [PULL 00/19] aspeed queue
Date: Tue, 3 May 2022 08:58:40 -0700	[thread overview]
Message-ID: <f585a5ca-b38d-8531-b05f-2f9cfb87d592@linaro.org> (raw)
In-Reply-To: <20220503065848.125215-1-clg@kaod.org>

On 5/2/22 23:58, Cédric Le Goater wrote:
> The following changes since commit f5643914a9e8f79c606a76e6a9d7ea82a3fc3e65:
> 
>    Merge tag 'pull-9p-20220501' of https://github.com/cschoenebeck/qemu into staging (2022-05-01 07:48:11 -0700)
> 
> are available in the Git repository at:
> 
>    https://github.com/legoater/qemu/ tags/pull-aspeed-20220503
> 
> for you to fetch changes up to e056c52233910ef156e6d790ce41b33cd838bad6:
> 
>    aspeed/hace: Support AST1030 HACE (2022-05-03 07:17:20 +0200)
> 
> ----------------------------------------------------------------
> aspeed queue:
> 
> * New AST1030 SoC and eval board
> * Accumulative mode support for HACE controller
> * GPIO fix and unit test
> * Clock modeling adjustments for the AST2600
> * Dummy eMMC Boot Controller model
> * Change of AST2500 EVB and AST2600 EVB flash model (for quad IO)

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


r~


> 
> ----------------------------------------------------------------
> Jae Hyun Yoo (1):
>        hw/arm/aspeed: fix AST2500/AST2600 EVB fmc model
> 
> Jamin Lin (2):
>        aspeed: Add an AST1030 eval board
>        test/avocado/machine_aspeed.py: Add ast1030 test case
> 
> Joel Stanley (2):
>        aspeed: sbc: Correct default reset values
>        aspeed: Add eMMC Boot Controller stub
> 
> Peter Delevoryas (1):
>        hw/gpio/aspeed_gpio: Fix QOM pin property
> 
> Steven Lee (13):
>        hw: aspeed_scu: Add AST2600 apb_freq and hpll calculation function
>        hw: aspeed_scu: Introduce clkin_25Mhz attribute
>        aspeed/adc: Add AST1030 support
>        aspeed/smc: Add AST1030 support
>        aspeed/wdt: Fix ast2500/ast2600 default reload value
>        aspeed/wdt: Add AST1030 support
>        aspeed/timer: Add AST1030 support
>        aspeed/scu: Add AST1030 support
>        aspeed/soc : Add AST1030 support
>        aspeed/hace: Support HMAC Key Buffer register.
>        aspeed/hace: Support AST2600 HACE
>        tests/qtest: Add test for Aspeed HACE accumulative mode
>        aspeed/hace: Support AST1030 HACE
> 
>   include/hw/adc/aspeed_adc.h      |   1 +
>   include/hw/arm/aspeed_soc.h      |   4 +
>   include/hw/misc/aspeed_hace.h    |   7 +
>   include/hw/misc/aspeed_scu.h     |  45 ++++++
>   include/hw/timer/aspeed_timer.h  |   1 +
>   include/hw/watchdog/wdt_aspeed.h |   3 +
>   hw/adc/aspeed_adc.c              |  16 +++
>   hw/arm/aspeed.c                  |  70 ++++++++-
>   hw/arm/aspeed_ast10x0.c          | 299 +++++++++++++++++++++++++++++++++++++++
>   hw/arm/aspeed_ast2600.c          |   6 +
>   hw/gpio/aspeed_gpio.c            |   2 +-
>   hw/misc/aspeed_hace.c            | 159 ++++++++++++++++++++-
>   hw/misc/aspeed_sbc.c             |   7 +-
>   hw/misc/aspeed_scu.c             | 108 +++++++++++++-
>   hw/ssi/aspeed_smc.c              | 157 ++++++++++++++++++++
>   hw/timer/aspeed_timer.c          |  17 +++
>   hw/watchdog/wdt_aspeed.c         |  34 ++++-
>   tests/qtest/aspeed_gpio-test.c   |  87 ++++++++++++
>   tests/qtest/aspeed_hace-test.c   | 147 +++++++++++++++++++
>   hw/arm/meson.build               |   6 +-
>   tests/avocado/machine_aspeed.py  |  36 +++++
>   tests/qtest/meson.build          |   3 +-
>   22 files changed, 1199 insertions(+), 16 deletions(-)
>   create mode 100644 hw/arm/aspeed_ast10x0.c
>   create mode 100644 tests/qtest/aspeed_gpio-test.c
>   create mode 100644 tests/avocado/machine_aspeed.py
> 



  parent reply	other threads:[~2022-05-03 16:02 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-05-03  6:58 [PULL 00/19] aspeed queue Cédric Le Goater
2022-05-03  6:58 ` [PULL 01/19] hw: aspeed_scu: Add AST2600 apb_freq and hpll calculation function Cédric Le Goater
2022-05-03  6:58 ` [PULL 02/19] hw: aspeed_scu: Introduce clkin_25Mhz attribute Cédric Le Goater
2022-05-03  6:58 ` [PULL 03/19] aspeed: sbc: Correct default reset values Cédric Le Goater
2022-05-03  6:58 ` [PULL 04/19] aspeed: Add eMMC Boot Controller stub Cédric Le Goater
2022-05-03  6:58 ` [PULL 05/19] aspeed/adc: Add AST1030 support Cédric Le Goater
2022-05-03  6:58 ` [PULL 06/19] aspeed/smc: " Cédric Le Goater
2022-05-03  6:58 ` [PULL 07/19] aspeed/wdt: Fix ast2500/ast2600 default reload value Cédric Le Goater
2022-05-03  6:58 ` [PULL 08/19] aspeed/wdt: Add AST1030 support Cédric Le Goater
2022-05-03  6:58 ` [PULL 09/19] aspeed/timer: " Cédric Le Goater
2022-05-03  6:58 ` [PULL 10/19] aspeed/scu: " Cédric Le Goater
2022-05-03  6:58 ` [PULL 11/19] aspeed/soc : " Cédric Le Goater
2022-05-03  6:58 ` [PULL 12/19] aspeed: Add an AST1030 eval board Cédric Le Goater
2022-05-03  6:58 ` [PULL 13/19] test/avocado/machine_aspeed.py: Add ast1030 test case Cédric Le Goater
2022-05-03  6:58 ` [PULL 14/19] hw/arm/aspeed: fix AST2500/AST2600 EVB fmc model Cédric Le Goater
2022-05-03  6:58 ` [PULL 15/19] aspeed/hace: Support HMAC Key Buffer register Cédric Le Goater
2022-05-03  6:58 ` [PULL 16/19] aspeed/hace: Support AST2600 HACE Cédric Le Goater
2022-05-03  6:58 ` [PULL 17/19] tests/qtest: Add test for Aspeed HACE accumulative mode Cédric Le Goater
2022-05-03  6:58 ` [PULL 18/19] hw/gpio/aspeed_gpio: Fix QOM pin property Cédric Le Goater
2022-05-03  6:58 ` [PULL 19/19] aspeed/hace: Support AST1030 HACE Cédric Le Goater
2022-05-03 15:58 ` Richard Henderson [this message]
2022-06-22  9:55 [PULL 00/19] aspeed queue Cédric Le Goater
2022-06-22 15:52 ` Richard Henderson
2022-07-13  7:52 Cédric Le Goater
2022-07-14 13:51 ` Peter Maydell
2022-07-14 14:26   ` Cédric Le Goater

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=f585a5ca-b38d-8531-b05f-2f9cfb87d592@linaro.org \
    --to=richard.henderson@linaro.org \
    --cc=clg@kaod.org \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-arm@nongnu.org \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.