All of lore.kernel.org
 help / color / mirror / Atom feed
* [PULL 00/16] aspeed queue
@ 2022-10-25 15:20 Cédric Le Goater
  2022-10-25 15:20 ` [PULL 01/16] hw/i2c/aspeed: Fix old reg slave receive Cédric Le Goater
                   ` (16 more replies)
  0 siblings, 17 replies; 25+ messages in thread
From: Cédric Le Goater @ 2022-10-25 15:20 UTC (permalink / raw)
  To: qemu-arm, qemu-devel
  Cc: Peter Maydell, Joel Stanley, Alistair Francis,
	Philippe Mathieu-Daudé, qemu-block, Cédric Le Goater

The following changes since commit 0529245488865038344d64fff7ee05864d3d17f6:

  Merge tag 'pull-target-arm-20221020' of https://git.linaro.org/people/pmaydell/qemu-arm into staging (2022-10-20 14:36:12 -0400)

are available in the Git repository at:

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

for you to fetch changes up to 703229132bb05327044368fc6d19f6acf7dde848:

  arm/aspeed: Replace mx25l25635e chip model (2022-10-24 11:20:16 +0200)

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

* Performance improvement with Object class caching
* Serial Flash Discovery Parameters support for m25p80 device
* Various small adjustments on intructions and models

----------------------------------------------------------------
Alex Bennée (1):
      ssi: cache SSIPeripheralClass to avoid GET_CLASS()

Cédric Le Goater (12):
      tests/avocado/machine_aspeed.py: Fix typos on buildroot
      aspeed/smc: Cache AspeedSMCClass
      ast2600: Drop NEON from the CPU features
      m25p80: Add basic support for the SFDP command
      m25p80: Add the n25q256a SFDP table
      m25p80: Add erase size for mx25l25635e
      m25p80: Add the mx25l25635e SFPD table
      m25p80: Add the mx25l25635f SFPD table
      m25p80: Add the mx66l1g45g SFDP table
      m25p80: Add the w25q256 SFPD table
      m25p80: Add the w25q512jv SFPD table
      arm/aspeed: Replace mx25l25635e chip model

Patrick Williams (2):
      hw/arm/aspeed: increase Bletchley memory size
      m25p80: Add the w25q01jvq SFPD table

Peter Delevoryas (1):
      hw/i2c/aspeed: Fix old reg slave receive

 hw/block/m25p80_sfdp.h          |  29 ++++
 include/hw/i2c/aspeed_i2c.h     |   1 +
 include/hw/ssi/aspeed_smc.h     |   2 +
 include/hw/ssi/ssi.h            |   3 +
 hw/arm/aspeed.c                 |  15 +-
 hw/arm/aspeed_ast2600.c         |   2 +
 hw/block/m25p80.c               |  52 ++++++-
 hw/block/m25p80_sfdp.c          | 332 ++++++++++++++++++++++++++++++++++++++++
 hw/i2c/aspeed_i2c.c             |   8 +-
 hw/ssi/aspeed_smc.c             |   9 +-
 hw/ssi/ssi.c                    |  18 +--
 MAINTAINERS                     |   2 +-
 hw/block/meson.build            |   1 +
 hw/block/trace-events           |   1 +
 tests/avocado/machine_aspeed.py |  16 +-
 15 files changed, 452 insertions(+), 39 deletions(-)
 create mode 100644 hw/block/m25p80_sfdp.h
 create mode 100644 hw/block/m25p80_sfdp.c

^ permalink raw reply	[flat|nested] 25+ messages in thread
* [PULL 00/16] aspeed queue
@ 2025-10-22 12:29 Cédric Le Goater
  2025-10-22 14:31 ` Richard Henderson
  0 siblings, 1 reply; 25+ messages in thread
From: Cédric Le Goater @ 2025-10-22 12:29 UTC (permalink / raw)
  To: qemu-arm, qemu-devel; +Cc: Cédric Le Goater

The following changes since commit 3c0b42c68f98fb276fa248012642be8cbf2cab70:

  Merge tag 'pull-request-2025-10-21' of https://gitlab.com/thuth/qemu into staging (2025-10-21 08:59:35 -0500)

are available in the Git repository at:

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

for you to fetch changes up to d7bd42a740d0e8887540d7b450d0bdb2d6ba31ea:

  hw/arm/aspeed: Remove ast2700fc self-aliasing (2025-10-22 08:14:09 +0200)

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

* Improve AST2700 co-processor models
* Add vbootrom support to the ast2700fc multi-soc machine
* Bump SDK version to v09.08 for the ast2700fc machine
* Add 32 bits property for Aspeed GPIOs
* Change ast2600-evb machine flash model to w25q512jv

----------------------------------------------------------------
Cédric Le Goater (1):
      hw/arm/aspeed: ast2600-evb: Use w25q512jv flash model

Felix Wu (2):
      hw/gpio: Add property for ASPEED GPIO in 32 bits basis
      tests/qtest: Add qtest for for ASPEED GPIO gpio-set property

Jamin Lin (12):
      hw/arm/aspeed_ast27x0-ssp: Add SDRAM region and fix naming and size to 512MB
      hw/arm/aspeed_ast27x0-tsp: Add SDRAM region and fix naming and size to 512MB
      hw/arm/ast27x0: Add SRAM link and alias mapping for SSP coprocessor
      hw/arm/ast27x0: Add SRAM link and alias mapping for TSP coprocessor
      hw/arm/ast27x0: Share single SCU instance across PSP, SSP, and TSP
      hw/arm/ast27x0: Share single UART set across PSP, SSP, and TSP
      hw/arm/aspeed_ast27x0-fc: Map FMC0 flash contents into CA35 boot ROM
      hw/arm/aspeed_ast27x0-fc: Add VBOOTROM support
      tests/functional/aarch64/ast2700fc: Update test ASPEED SDK v09.08
      tests/functional/aarch64/ast2700fc: Add eth2 network interface check in PCIe test
      tests/functional/aarch64/ast2700fc: Move coprocessor image loading to common function
      tests/functional/aarch64/ast2700fc: Add vbootrom test

Philippe Mathieu-Daudé (1):
      hw/arm/aspeed: Remove ast2700fc self-aliasing

 include/hw/arm/aspeed_coprocessor.h               |  14 +--
 include/qobject/qdict.h                           |   1 +
 hw/arm/aspeed.c                                   |   4 +-
 hw/arm/aspeed_ast27x0-fc.c                        |  56 ++++++++----
 hw/arm/aspeed_ast27x0-ssp.c                       |  69 +++++++-------
 hw/arm/aspeed_ast27x0-tsp.c                       |  69 +++++++-------
 hw/arm/aspeed_coprocessor_common.c                |   7 ++
 hw/gpio/aspeed_gpio.c                             |  57 ++++++++++++
 qobject/qdict.c                                   |  13 +++
 tests/qtest/aspeed_gpio-test.c                    | 105 ++++++++++++++++++++--
 tests/qtest/aspeed_smc-test.c                     |   4 +-
 tests/functional/aarch64/test_aspeed_ast2700fc.py |  51 +++++++----
 12 files changed, 331 insertions(+), 119 deletions(-)



^ permalink raw reply	[flat|nested] 25+ messages in thread
* [PULL 00/16] aspeed queue
@ 2026-02-12 21:39 Cédric Le Goater
  2026-02-13 10:28 ` Peter Maydell
  0 siblings, 1 reply; 25+ messages in thread
From: Cédric Le Goater @ 2026-02-12 21:39 UTC (permalink / raw)
  To: qemu-arm, qemu-devel; +Cc: Cédric Le Goater

The following changes since commit 039fae56bb79af1124619daae60e01c257fcb2ee:

  Merge tag 'pull-request-2026-02-12v2' of https://gitlab.com/thuth/qemu into staging (2026-02-12 11:52:31 +0000)

are available in the Git repository at:

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

for you to fetch changes up to 1b662879513fa9823a887cac9cfc3d91b9d3f616:

  tests/functional/aarch64/test_aspeed_ast2700fc: Use AST2700 A2 SDK image for FC tests (2026-02-12 16:06:55 +0100)

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

* Adds support for the AST2700 A2 SoC, including a new machine and
  a functional test
* Enhances AST2600 OTP functional test
* Restructures Aspeed ARM tests into separate files for better
  parallelism.
* Includes new SDK tests with Linux 5.15.
* Fixes Aspeed I2C models

----------------------------------------------------------------
Cédric Le Goater (2):
      tests/functional: Split Aspeed ARM tests into separate files
      tests/functional: Add SDK tests with Linux 5.15

Jamin Lin (13):
      hw/i2c/aspeed_i2c: Fix out-of-bounds read in I2C MMIO handlers
      hw/i2c/aspeed_i2c: Increase I2C device register size to 0xA0
      hw/misc/aspeed_scu: Remove unused SoC silicon revision definitions
      hw/misc/aspeed_scu: Add AST2700 A2 silicon revisions
      hw/arm/aspeed_ast27x0: Add AST2700 A2 SoC support
      hw/arm/aspeed_ast27x0_evb: Add AST2700 A2 EVB machine
      hw/arm/aspeed_ast27x0_evb: Move ast2700-evb alias to AST2700 A2 EVB
      tests/qtest/ast2700-hace-test: Use ast2700-evb alias for AST2700 HACE tests
      tests/functional/aarch64/test_aspeed_ast2700: Rename AST2700 A1 test to reduce test runtime
      tests/functional/aarch64/test_aspeed_ast2700a2: Add AST2700 A2 EVB functional tests
      hw/arm/aspeed_ast27x0-fc: Switch AST2700 FC machine to A2 SoC
      hw/arm/aspeed_ast27x0-fc: Increase BMC DRAM size to 2GB for AST2700 A2
      tests/functional/aarch64/test_aspeed_ast2700fc: Use AST2700 A2 SDK image for FC tests

Kane Chen (1):
      tests/functional/arm/aspeed_ast2600: Enhance OTP test with functional validation

 include/hw/i2c/aspeed_i2c.h                        |   3 +-
 include/hw/misc/aspeed_scu.h                       |  11 +-
 hw/arm/aspeed_ast27x0-fc.c                         |  15 +-
 hw/arm/aspeed_ast27x0.c                            |  36 ++++
 hw/arm/aspeed_ast27x0_evb.c                        |  29 +++-
 hw/i2c/aspeed_i2c.c                                |  58 +++----
 hw/misc/aspeed_scu.c                               |  11 +-
 tests/qtest/ast2700-hace-test.c                    |  22 +--
 tests/functional/aarch64/meson.build               |   6 +-
 ..._aspeed_ast2700.py => test_aspeed_ast2700a1.py} |   0
 tests/functional/aarch64/test_aspeed_ast2700a2.py  | 190 +++++++++++++++++++++
 tests/functional/aarch64/test_aspeed_ast2700fc.py  |  16 +-
 tests/functional/arm/meson.build                   |  18 +-
 tests/functional/arm/test_aspeed_ast1060.py        |   0
 ...ast2500.py => test_aspeed_ast2500_buildroot.py} |  14 --
 tests/functional/arm/test_aspeed_ast2500_sdk.py    |  29 ++++
 .../functional/arm/test_aspeed_ast2500_sdk_515.py  |  29 ++++
 .../arm/test_aspeed_ast2600_buildroot.py           |  41 +----
 .../arm/test_aspeed_ast2600_buildroot_tpm.py       |  60 +++++++
 tests/functional/arm/test_aspeed_ast2600_sdk.py    |  15 --
 .../functional/arm/test_aspeed_ast2600_sdk_515.py  |  29 ++++
 .../functional/arm/test_aspeed_ast2600_sdk_otp.py  |  62 +++++++
 22 files changed, 539 insertions(+), 155 deletions(-)
 rename tests/functional/aarch64/{test_aspeed_ast2700.py => test_aspeed_ast2700a1.py} (100%)
 create mode 100755 tests/functional/aarch64/test_aspeed_ast2700a2.py
 mode change 100644 => 100755 tests/functional/arm/test_aspeed_ast1060.py
 rename tests/functional/arm/{test_aspeed_ast2500.py => test_aspeed_ast2500_buildroot.py} (74%)
 create mode 100755 tests/functional/arm/test_aspeed_ast2500_sdk.py
 create mode 100755 tests/functional/arm/test_aspeed_ast2500_sdk_515.py
 create mode 100755 tests/functional/arm/test_aspeed_ast2600_buildroot_tpm.py
 create mode 100755 tests/functional/arm/test_aspeed_ast2600_sdk_515.py
 create mode 100755 tests/functional/arm/test_aspeed_ast2600_sdk_otp.py



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

end of thread, other threads:[~2026-02-13 10:29 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-10-25 15:20 [PULL 00/16] aspeed queue Cédric Le Goater
2022-10-25 15:20 ` [PULL 01/16] hw/i2c/aspeed: Fix old reg slave receive Cédric Le Goater
2022-10-25 15:20 ` [PULL 02/16] tests/avocado/machine_aspeed.py: Fix typos on buildroot Cédric Le Goater
2022-10-25 15:20 ` [PULL 03/16] ssi: cache SSIPeripheralClass to avoid GET_CLASS() Cédric Le Goater
2023-05-12  4:02   ` Philippe Mathieu-Daudé
2022-10-25 15:20 ` [PULL 04/16] aspeed/smc: Cache AspeedSMCClass Cédric Le Goater
2023-05-12  4:00   ` Philippe Mathieu-Daudé
2023-05-12  7:06     ` Cédric Le Goater
2022-10-25 15:20 ` [PULL 05/16] ast2600: Drop NEON from the CPU features Cédric Le Goater
2022-10-25 15:20 ` [PULL 06/16] hw/arm/aspeed: increase Bletchley memory size Cédric Le Goater
2022-10-25 15:20 ` [PULL 07/16] m25p80: Add basic support for the SFDP command Cédric Le Goater
2022-10-25 15:20 ` [PULL 08/16] m25p80: Add the n25q256a SFDP table Cédric Le Goater
2022-10-25 15:20 ` [PULL 09/16] m25p80: Add erase size for mx25l25635e Cédric Le Goater
2022-10-25 15:20 ` [PULL 10/16] m25p80: Add the mx25l25635e SFPD table Cédric Le Goater
2022-10-25 15:20 ` [PULL 11/16] m25p80: Add the mx25l25635f " Cédric Le Goater
2022-10-25 15:20 ` [PULL 12/16] m25p80: Add the mx66l1g45g SFDP table Cédric Le Goater
2022-10-25 15:20 ` [PULL 13/16] m25p80: Add the w25q256 SFPD table Cédric Le Goater
2022-10-25 15:20 ` [PULL 14/16] m25p80: Add the w25q512jv " Cédric Le Goater
2022-10-25 15:20 ` [PULL 15/16] m25p80: Add the w25q01jvq " Cédric Le Goater
2022-10-25 15:20 ` [PULL 16/16] arm/aspeed: Replace mx25l25635e chip model Cédric Le Goater
2022-10-26 18:54 ` [PULL 00/16] aspeed queue Stefan Hajnoczi
  -- strict thread matches above, loose matches on Subject: below --
2025-10-22 12:29 Cédric Le Goater
2025-10-22 14:31 ` Richard Henderson
2026-02-12 21:39 Cédric Le Goater
2026-02-13 10:28 ` Peter Maydell

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.