[PULL 00/14] aspeed queue

Cédric Le Goater posted 14 patches 2 years, 7 months ago
Test checkpatch passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20210920080928.1055567-1-clg@kaod.org
There is a newer version of this series
include/hw/arm/aspeed.h          |   1 +
include/hw/arm/aspeed_soc.h      |   1 +
include/hw/misc/aspeed_scu.h     |   2 +
include/hw/watchdog/wdt_aspeed.h |   1 +
hw/arm/aspeed.c                  | 182 +++++++++++++++++++++++++++++--
hw/arm/aspeed_ast2600.c          |  14 +--
hw/arm/aspeed_soc.c              |   8 +-
hw/gpio/aspeed_gpio.c            |  97 +++++++++--------
hw/misc/aspeed_scu.c             |  40 +++++--
hw/misc/pca9552.c                |   2 +-
hw/sensor/dps310.c               | 225 +++++++++++++++++++++++++++++++++++++++
hw/watchdog/wdt_aspeed.c         |  26 ++++-
hw/arm/Kconfig                   |   1 +
hw/sensor/Kconfig                |   4 +
hw/sensor/meson.build            |   1 +
15 files changed, 529 insertions(+), 76 deletions(-)
create mode 100644 hw/sensor/dps310.c
[PULL 00/14] aspeed queue
Posted by Cédric Le Goater 2 years, 7 months ago
The following changes since commit c99e34e537f13a431a80e3e414e5904e9dd0a116:

  Merge remote-tracking branch 'remotes/vivier2/tags/linux-user-for-6.2-pull-request' into staging (2021-09-16 21:09:18 +0100)

are available in the Git repository at:

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

for you to fetch changes up to febbe308bf9477767ca92e8ed5f265b0001fcef9:

  hw/arm/aspeed: Add Fuji machine type (2021-09-20 08:50:59 +0200)

----------------------------------------------------------------
Aspeed patches :

* MAC enablement fixes (Guenter)
* Watchdog  and pca9552 fixes (Andrew)
* GPIO fixes (Joel)
* AST2600A3 SoC and DPS310 models (Joel)
* New Fuji BMC machine (Peter)

----------------------------------------------------------------
Andrew Jeffery (3):
      watchdog: aspeed: Sanitize control register values
      watchdog: aspeed: Fix sequential control writes
      misc/pca9552: Fix LED status register indexing in pca955x_get_led()

Guenter Roeck (2):
      hw: arm: aspeed: Enable eth0 interface for aspeed-ast2600-evb
      hw: arm: aspeed: Enable mac0/1 instead of mac1/2 for g220a

Joel Stanley (6):
      hw: aspeed_gpio: Simplify 1.8V defines
      hw: aspeed_gpio: Clarify GPIO controller name
      arm/aspeed: rainier: Add i2c eeproms and muxes
      aspeed: Emulate the AST2600A3
      hw/misc: Add Infineon DPS310 sensor model
      arm/aspeed: Add DPS310 to Witherspoon and Rainier

Peter Delevoryas (3):
      hw/arm/aspeed: Initialize AST2600 UART clock selection registers
      hw/arm/aspeed: Allow machine to set UART default
      hw/arm/aspeed: Add Fuji machine type

 include/hw/arm/aspeed.h          |   1 +
 include/hw/arm/aspeed_soc.h      |   1 +
 include/hw/misc/aspeed_scu.h     |   2 +
 include/hw/watchdog/wdt_aspeed.h |   1 +
 hw/arm/aspeed.c                  | 182 +++++++++++++++++++++++++++++--
 hw/arm/aspeed_ast2600.c          |  14 +--
 hw/arm/aspeed_soc.c              |   8 +-
 hw/gpio/aspeed_gpio.c            |  97 +++++++++--------
 hw/misc/aspeed_scu.c             |  40 +++++--
 hw/misc/pca9552.c                |   2 +-
 hw/sensor/dps310.c               | 225 +++++++++++++++++++++++++++++++++++++++
 hw/watchdog/wdt_aspeed.c         |  26 ++++-
 hw/arm/Kconfig                   |   1 +
 hw/sensor/Kconfig                |   4 +
 hw/sensor/meson.build            |   1 +
 15 files changed, 529 insertions(+), 76 deletions(-)
 create mode 100644 hw/sensor/dps310.c

Re: [PULL 00/14] aspeed queue
Posted by Peter Maydell 2 years, 7 months ago
On Mon, 20 Sept 2021 at 09:09, Cédric Le Goater <clg@kaod.org> wrote:
>
> The following changes since commit c99e34e537f13a431a80e3e414e5904e9dd0a116:
>
>   Merge remote-tracking branch 'remotes/vivier2/tags/linux-user-for-6.2-pull-request' into staging (2021-09-16 21:09:18 +0100)
>
> are available in the Git repository at:
>
>   https://github.com/legoater/qemu/ tags/pull-aspeed-20210920
>
> for you to fetch changes up to febbe308bf9477767ca92e8ed5f265b0001fcef9:
>
>   hw/arm/aspeed: Add Fuji machine type (2021-09-20 08:50:59 +0200)
>
> ----------------------------------------------------------------
> Aspeed patches :
>
> * MAC enablement fixes (Guenter)
> * Watchdog  and pca9552 fixes (Andrew)
> * GPIO fixes (Joel)
> * AST2600A3 SoC and DPS310 models (Joel)
> * New Fuji BMC machine (Peter)
>


Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/6.2
for any user-visible changes.

-- PMM