All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Cédric Le Goater" <clg@kaod.org>
To: qemu-arm@nongnu.org, qemu-devel@nongnu.org
Cc: "Peter Maydell" <peter.maydell@linaro.org>,
	"Richard Henderson" <richard.henderson@linaro.org>,
	"Cédric Le Goater" <clg@kaod.org>
Subject: [PULL 00/19] aspeed queue
Date: Wed, 13 Jul 2022 09:52:36 +0200	[thread overview]
Message-ID: <20220713075255.2248923-1-clg@kaod.org> (raw)

The following changes since commit 8e3d85d36b77f11ad7bded3a2d48c1f0cc334f82:

  Merge tag 'for-upstream' of https://gitlab.com/bonzini/qemu into staging (2022-07-12 14:12:15 +0100)

are available in the Git repository at:

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

for you to fetch changes up to 053b2ee5629d1b822127cc454634ec272624bab2:

  aspeed: Add fby35-bmc slot GPIO's (2022-07-13 08:16:46 +0200)

----------------------------------------------------------------
aspeed queue:

* New ISL69259 device model
* New fby35 multi-SoC machine (AST1030 BIC + AST2600 BMC)
* Aspeed GPIO fixes
* Extension of m25p80 with write protect bits
* More avocado tests using the Aspeed SDK

----------------------------------------------------------------
Cédric Le Goater (3):
      aspeed: fby35: Add a bootrom for the BMC
      docs: aspeed: Minor updates
      test/avocado/machine_aspeed.py: Add SDK tests

Iris Chen (2):
      hw: m25p80: Add Block Protect and Top Bottom bits for write protect
      hw: m25p80: add tests for BP and TB bit write protect

Joel Stanley (1):
      aspeed: sbc: Allow per-machine settings

Peter Delevoryas (13):
      hw/i2c/pmbus: Add idle state to return 0xff's
      hw/sensor: Add IC_DEVICE_ID to ISL voltage regulators
      hw/sensor: Add Renesas ISL69259 device model
      aspeed: Create SRAM name from first CPU index
      aspeed: Refactor UART init for multi-SoC machines
      aspeed: Make aspeed_board_init_flashes public
      aspeed: Add fby35 skeleton
      aspeed: Add AST2600 (BMC) to fby35
      aspeed: Add AST1030 (BIC) to fby35
      docs: aspeed: Add fby35 multi-SoC machine section
      qtest/aspeed_gpio: Add input pin modification test
      hw/gpio/aspeed: Don't let guests modify input pins
      aspeed: Add fby35-bmc slot GPIO's

 docs/system/arm/aspeed.rst       |  62 ++++++++++++-
 include/hw/arm/aspeed_soc.h      |   9 +-
 include/hw/i2c/pmbus_device.h    |   7 ++
 include/hw/misc/aspeed_sbc.h     |  13 +++
 include/hw/sensor/isl_pmbus_vr.h |   5 ++
 hw/arm/aspeed.c                  |  38 ++++++--
 hw/arm/aspeed_ast10x0.c          |  13 ++-
 hw/arm/aspeed_ast2600.c          |  13 ++-
 hw/arm/aspeed_soc.c              |  55 ++++++++----
 hw/arm/fby35.c                   | 188 +++++++++++++++++++++++++++++++++++++++
 hw/block/m25p80.c                | 102 ++++++++++++++++++---
 hw/gpio/aspeed_gpio.c            |  15 ++--
 hw/i2c/pmbus_device.c            |   9 ++
 hw/misc/aspeed_sbc.c             |  42 ++++++++-
 hw/sensor/isl_pmbus_vr.c         |  40 +++++++++
 tests/qtest/aspeed_gpio-test.c   |  27 ++++++
 tests/qtest/aspeed_smc-test.c    | 111 +++++++++++++++++++++++
 MAINTAINERS                      |   1 +
 hw/arm/meson.build               |   3 +-
 tests/avocado/machine_aspeed.py  |  68 ++++++++++++++
 20 files changed, 764 insertions(+), 57 deletions(-)
 create mode 100644 hw/arm/fby35.c


             reply	other threads:[~2022-07-13  7:56 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-07-13  7:52 Cédric Le Goater [this message]
2022-07-13  7:52 ` [PULL 01/19] aspeed: sbc: Allow per-machine settings Cédric Le Goater
2022-07-13  7:52 ` [PULL 02/19] hw/i2c/pmbus: Add idle state to return 0xff's Cédric Le Goater
2022-07-13  7:52 ` [PULL 03/19] hw/sensor: Add IC_DEVICE_ID to ISL voltage regulators Cédric Le Goater
2022-07-13  7:52 ` [PULL 04/19] hw/sensor: Add Renesas ISL69259 device model Cédric Le Goater
2022-07-13  7:52 ` [PULL 05/19] aspeed: Create SRAM name from first CPU index Cédric Le Goater
2022-07-13  7:52 ` [PULL 06/19] aspeed: Refactor UART init for multi-SoC machines Cédric Le Goater
2022-07-13  7:52 ` [PULL 07/19] aspeed: Make aspeed_board_init_flashes public Cédric Le Goater
2022-07-13  7:52 ` [PULL 08/19] aspeed: Add fby35 skeleton Cédric Le Goater
2022-07-13  7:52 ` [PULL 09/19] aspeed: Add AST2600 (BMC) to fby35 Cédric Le Goater
2022-07-13  7:52 ` [PULL 10/19] aspeed: fby35: Add a bootrom for the BMC Cédric Le Goater
2022-07-13  7:52 ` [PULL 11/19] aspeed: Add AST1030 (BIC) to fby35 Cédric Le Goater
2022-07-13  7:52 ` [PULL 12/19] docs: aspeed: Add fby35 multi-SoC machine section Cédric Le Goater
2022-07-13  7:52 ` [PULL 13/19] docs: aspeed: Minor updates Cédric Le Goater
2022-07-13  7:52 ` [PULL 14/19] test/avocado/machine_aspeed.py: Add SDK tests Cédric Le Goater
2022-07-13  7:52 ` [PULL 15/19] hw: m25p80: Add Block Protect and Top Bottom bits for write protect Cédric Le Goater
2022-07-13  7:52 ` [PULL 16/19] hw: m25p80: add tests for BP and TB bit " Cédric Le Goater
2022-07-13  7:52 ` [PULL 17/19] qtest/aspeed_gpio: Add input pin modification test Cédric Le Goater
2022-07-13  7:52 ` [PULL 18/19] hw/gpio/aspeed: Don't let guests modify input pins Cédric Le Goater
2022-07-13  7:52 ` [PULL 19/19] aspeed: Add fby35-bmc slot GPIO's Cédric Le Goater
2022-07-14 13:51 ` [PULL 00/19] aspeed queue Peter Maydell
2022-07-14 14:26   ` Cédric Le Goater
  -- strict thread matches above, loose matches on Subject: below --
2022-06-22  9:55 Cédric Le Goater
2022-06-22 15:52 ` Richard Henderson
2022-05-03  6:58 Cédric Le Goater
2022-05-03 15:58 ` Richard Henderson

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=20220713075255.2248923-1-clg@kaod.org \
    --to=clg@kaod.org \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-arm@nongnu.org \
    --cc=qemu-devel@nongnu.org \
    --cc=richard.henderson@linaro.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.