qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL 00/19] aspeed queue
@ 2022-07-13  7:52 Cédric Le Goater
  2022-07-13  7:52 ` [PULL 01/19] aspeed: sbc: Allow per-machine settings Cédric Le Goater
                   ` (19 more replies)
  0 siblings, 20 replies; 23+ messages in thread
From: Cédric Le Goater @ 2022-07-13  7:52 UTC (permalink / raw)
  To: qemu-arm, qemu-devel
  Cc: Peter Maydell, Richard Henderson, Cédric Le Goater

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


^ permalink raw reply	[flat|nested] 23+ messages in thread
* [PULL v2 00/19] aspeed queue
@ 2022-07-14 15:44 Cédric Le Goater
  2022-07-14 15:44 ` [PULL 15/19] hw: m25p80: Add Block Protect and Top Bottom bits for write protect Cédric Le Goater
  0 siblings, 1 reply; 23+ messages in thread
From: Cédric Le Goater @ 2022-07-14 15:44 UTC (permalink / raw)
  To: qemu-arm, qemu-devel; +Cc: Peter Maydell, Cédric Le Goater

The following changes since commit 08c9f7eec7002dac2da52c8265eb319aba381c86:

  Merge tag 'darwin-20220712' of https://github.com/philmd/qemu into staging (2022-07-14 09:30:55 +0100)

are available in the Git repository at:

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

for you to fetch changes up to f0418558302ef9e140681e04250fc1ca265f3140:

  aspeed: Add fby35-bmc slot GPIO's (2022-07-14 16:24:38 +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


^ permalink raw reply	[flat|nested] 23+ messages in thread

end of thread, other threads:[~2022-07-14 16:08 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-07-13  7:52 [PULL 00/19] aspeed queue Cédric Le Goater
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-07-14 15:44 [PULL v2 " Cédric Le Goater
2022-07-14 15:44 ` [PULL 15/19] hw: m25p80: Add Block Protect and Top Bottom bits for write protect Cédric Le Goater

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).