qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Richard Henderson <richard.henderson@linaro.org>
To: "Cédric Le Goater" <clg@kaod.org>,
	"Peter Maydell" <peter.maydell@linaro.org>
Cc: Andrew Jeffery <andrew@aj.id.au>,
	qemu-arm@nongnu.org, Joel Stanley <joel@jms.id.au>,
	qemu-devel@nongnu.org
Subject: Re: [PULL 00/18] aspeed queue
Date: Tue, 12 Oct 2021 06:15:45 -0700	[thread overview]
Message-ID: <a4d33ddf-cf48-3a2e-e135-26584f6452d3@linaro.org> (raw)
In-Reply-To: <20211012073728.257748-1-clg@kaod.org>

On 10/12/21 12:37 AM, Cédric Le Goater wrote:
> The following changes since commit c09124dcb8401a0d635b4a52b295e9b3fc12392a:
> 
>    Merge remote-tracking branch 'remotes/stefanha/tags/block-pull-request' into staging (2021-10-11 08:15:32 -0700)
> 
> are available in the Git repository at:
> 
>    https://github.com/legoater/qemu/ tags/pull-aspeed-20211012
> 
> for you to fetch changes up to e2804a1ec97ceede14b69a2a6e9a8b5dfa0b15c2:
> 
>    aspeed/smc: Dump address offset in trace events (2021-10-12 08:20:08 +0200)
> 
> ----------------------------------------------------------------
> Aspeed patches :
> 
> * I2C QOMify (Cedric)
> * SMC model cleanup and QOMify (Cedric)
> * ADC model (Peter and Andrew)
> * GPIO fixes (Peter)
> 
> ----------------------------------------------------------------
> Andrew Jeffery (2):
>        hw/adc: Add basic Aspeed ADC model
>        hw/arm: Integrate ADC model into Aspeed SoC
> 
> Cédric Le Goater (14):
>        aspeed/smc: Add watchdog Control/Status Registers
>        aspeed/smc: Introduce aspeed_smc_error() helper
>        aspeed/smc: Stop using the model name for the memory regions
>        aspeed/smc: Drop AspeedSMCController structure
>        aspeed/smc: Remove the 'flash' attribute from AspeedSMCFlash
>        aspeed/smc: Remove the 'size' attribute from AspeedSMCFlash
>        aspeed/smc: Rename AspeedSMCFlash 'id' to 'cs'
>        aspeed/smc: QOMify AspeedSMCFlash
>        aspeed/smc: Add default reset values
>        aspeed/smc: Introduce a new addr_width() class handler
>        aspeed/smc: Remove unused attribute 'irqline'
>        aspeed/i2c: QOMify AspeedI2CBus
>        aspeed/wdt: Add trace events
>        aspeed/smc: Dump address offset in trace events
> 
> Peter Delevoryas (2):
>        hw: aspeed_gpio: Fix pin I/O type declarations
>        hw: aspeed_gpio: Fix GPIO array indexing
> 
>   include/hw/adc/aspeed_adc.h   |   55 ++
>   include/hw/arm/aspeed_soc.h   |    2 +
>   include/hw/gpio/aspeed_gpio.h |    5 +-
>   include/hw/i2c/aspeed_i2c.h   |    8 +-
>   include/hw/ssi/aspeed_smc.h   |   82 ++-
>   hw/adc/aspeed_adc.c           |  427 ++++++++++++++++
>   hw/arm/aspeed.c               |   18 +-
>   hw/arm/aspeed_ast2600.c       |   22 +-
>   hw/arm/aspeed_soc.c           |   15 +-
>   hw/gpio/aspeed_gpio.c         |   88 ++--
>   hw/i2c/aspeed_i2c.c           |  101 +++-
>   hw/ssi/aspeed_smc.c           | 1134 +++++++++++++++++++++++------------------
>   hw/watchdog/wdt_aspeed.c      |    5 +
>   hw/adc/meson.build            |    1 +
>   hw/adc/trace-events           |    3 +
>   hw/watchdog/trace-events      |    4 +
>   16 files changed, 1352 insertions(+), 618 deletions(-)
>   create mode 100644 include/hw/adc/aspeed_adc.h
>   create mode 100644 hw/adc/aspeed_adc.c

Applied, thanks.

r~


  parent reply	other threads:[~2021-10-12 13:19 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-10-12  7:37 [PULL 00/18] aspeed queue Cédric Le Goater
2021-10-12  7:37 ` [PULL 01/18] aspeed/smc: Add watchdog Control/Status Registers Cédric Le Goater
2021-10-12  7:37 ` [PULL 02/18] aspeed/smc: Introduce aspeed_smc_error() helper Cédric Le Goater
2021-10-12  7:37 ` [PULL 03/18] aspeed/smc: Stop using the model name for the memory regions Cédric Le Goater
2021-10-12  7:37 ` [PULL 04/18] aspeed/smc: Drop AspeedSMCController structure Cédric Le Goater
2021-10-12  7:37 ` [PULL 05/18] aspeed/smc: Remove the 'flash' attribute from AspeedSMCFlash Cédric Le Goater
2021-10-12  7:37 ` [PULL 06/18] aspeed/smc: Remove the 'size' " Cédric Le Goater
2021-10-12  7:37 ` [PULL 07/18] aspeed/smc: Rename AspeedSMCFlash 'id' to 'cs' Cédric Le Goater
2021-10-12  7:37 ` [PULL 08/18] aspeed/smc: QOMify AspeedSMCFlash Cédric Le Goater
2021-10-12  7:37 ` [PULL 09/18] aspeed/smc: Add default reset values Cédric Le Goater
2021-10-12  7:37 ` [PULL 10/18] aspeed/smc: Introduce a new addr_width() class handler Cédric Le Goater
2021-10-12  7:37 ` [PULL 11/18] aspeed/smc: Remove unused attribute 'irqline' Cédric Le Goater
2021-10-12  7:37 ` [PULL 12/18] aspeed/i2c: QOMify AspeedI2CBus Cédric Le Goater
2021-10-12  7:37 ` [PULL 13/18] hw: aspeed_gpio: Fix pin I/O type declarations Cédric Le Goater
2021-10-12  7:37 ` [PULL 14/18] hw: aspeed_gpio: Fix GPIO array indexing Cédric Le Goater
2021-10-12  7:37 ` [PULL 15/18] hw/adc: Add basic Aspeed ADC model Cédric Le Goater
2021-10-12  7:37 ` [PULL 16/18] hw/arm: Integrate ADC model into Aspeed SoC Cédric Le Goater
2021-10-12  7:37 ` [PULL 17/18] aspeed/wdt: Add trace events Cédric Le Goater
2021-10-12  7:37 ` [PULL 18/18] aspeed/smc: Dump address offset in " Cédric Le Goater
2021-10-12 13:15 ` Richard Henderson [this message]
  -- strict thread matches above, loose matches on Subject: below --
2021-04-30 16:33 [PULL 00/18] aspeed queue Cédric Le Goater
2021-04-30 17:04 ` Cédric Le Goater
2021-04-30 22:17 ` Peter Maydell
2021-04-30 22:18   ` Peter Maydell
2021-05-01  8:10     ` 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=a4d33ddf-cf48-3a2e-e135-26584f6452d3@linaro.org \
    --to=richard.henderson@linaro.org \
    --cc=andrew@aj.id.au \
    --cc=clg@kaod.org \
    --cc=joel@jms.id.au \
    --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 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).