All of lore.kernel.org
 help / color / mirror / Atom feed
* [PULL 0/8] aspeed queue
@ 2026-07-07 12:43 Cédric Le Goater
  2026-07-07 12:43 ` [PULL 1/8] hw/intc/aspeed: Drop stale pending interrupts Cédric Le Goater
                   ` (8 more replies)
  0 siblings, 9 replies; 12+ messages in thread
From: Cédric Le Goater @ 2026-07-07 12:43 UTC (permalink / raw)
  To: qemu-arm, qemu-devel; +Cc: Cédric Le Goater

The following changes since commit 94826ec1370328375c3b6d1e80fdc94c8f46c348:

  Merge tag 'accel-20260706' of https://github.com/philmd/qemu into staging (2026-07-06 18:38:14 +0200)

are available in the Git repository at:

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

for you to fetch changes up to 21eac78874d3404cb26c83f261af25e0cdcb9686:

  hw/arm/aspeed_ast27x0: Add unimplemented OTP controller MMIO regions for SSP/TSP (2026-07-07 14:28:55 +0200)

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

* Fix stale pending interrupts in INTC for level-triggered sources
* Fix intermittent functional test timeouts on boot completion detection
* Fix off-by-one in pca9552 QOM led index validation
* Fix AST2700 FC machine hardware strap settings
* Drop noisy unhandled read logs for AST2700 SCU/SCUIO
* Add SCUIO RNG support for AST2700
* Add unimplemented Privilege Controller and OTP MMIO regions for SSP/TSP

----------------------------------------------------------------
Cédric Le Goater (1):
      tests/functional/aspeed: unify boot completion detection on 'login:' prompt

Jamin Lin (5):
      hw/arm/aspeed_ast27x0-fc: Fix hardware strap settings
      hw/misc/aspeed_scu: Drop noisy unhandled read logs for AST2700 SCU/SCUIO
      hw/misc/aspeed_scu: Add AST2700 SCUIO RNG control and data registers
      hw/arm/aspeed_ast27x0: Add unimplemented Privilege Controller MMIO regions for SSP/TSP
      hw/arm/aspeed_ast27x0: Add unimplemented OTP controller MMIO regions for SSP/TSP

Jian Zhang (1):
      hw/intc/aspeed: Drop stale pending interrupts

yujun (1):
      hw/gpio/pca9552: fix off-by-one in QOM led index validation

 include/hw/arm/aspeed_coprocessor.h              |  2 ++
 include/hw/arm/aspeed_soc.h                      |  3 +++
 hw/arm/aspeed_ast27x0-fc.c                       |  6 +++--
 hw/arm/aspeed_ast27x0-ssp.c                      | 18 +++++++++++++
 hw/arm/aspeed_ast27x0-tsp.c                      | 18 +++++++++++++
 hw/gpio/pca9552.c                                |  8 +++---
 hw/intc/aspeed_intc.c                            | 25 ++++++++++++++++++
 hw/misc/aspeed_scu.c                             | 33 ++++++++++++++++--------
 tests/functional/arm/test_aspeed_anacapa.py      |  6 ++---
 tests/functional/arm/test_aspeed_bletchley.py    |  6 ++---
 tests/functional/arm/test_aspeed_catalina.py     |  6 ++---
 tests/functional/arm/test_aspeed_gb200nvl_bmc.py |  3 +--
 tests/functional/aspeed.py                       | 21 +++------------
 13 files changed, 110 insertions(+), 45 deletions(-)



^ permalink raw reply	[flat|nested] 12+ messages in thread
* [PULL 0/8] aspeed queue
@ 2024-07-09 11:52 Cédric Le Goater
  2024-07-09 17:26 ` Richard Henderson
  0 siblings, 1 reply; 12+ messages in thread
From: Cédric Le Goater @ 2024-07-09 11:52 UTC (permalink / raw)
  To: qemu-arm, qemu-devel; +Cc: Cédric Le Goater

The following changes since commit 44b7329de469c121555a1acf9b288f3ae71b8e61:

  Merge tag 'pull-qapi-2024-07-06' of https://repo.or.cz/qemu/armbru into staging (2024-07-07 13:23:28 -0700)

are available in the Git repository at:

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

for you to fetch changes up to d847ea7cfc6321e2519f587d4077428d90557178:

  machine_aspeed.py: update to test network for AST2700 (2024-07-09 08:05:44 +0200)

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

* support AST2700 network

----------------------------------------------------------------
Jamin Lin (8):
      hw/net:ftgmac100: update memory region size to 64KB
      hw/net:ftgmac100: update ring base address to 64 bits
      hw/net:ftgmac100: introduce TX and RX ring base address high registers to support 64 bits
      hw/net:ftgmac100: update TX and RX packet buffers address to 64 bits
      aspeed/soc: set dma64 property for AST2700 ftgmac100
      hw/block: m25p80: support quad mode for w25q01jvq
      machine_aspeed.py: update to test ASPEED OpenBMC SDK v09.02 for AST2700
      machine_aspeed.py: update to test network for AST2700

 include/hw/net/ftgmac100.h      |  17 +++--
 hw/arm/aspeed_ast27x0.c         |   3 +
 hw/block/m25p80.c               |  16 +++++
 hw/net/ftgmac100.c              | 147 +++++++++++++++++++++++++++++++++-------
 tests/avocado/machine_aspeed.py |  12 ++--
 5 files changed, 162 insertions(+), 33 deletions(-)


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

end of thread, other threads:[~2026-07-08  8:15 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-07 12:43 [PULL 0/8] aspeed queue Cédric Le Goater
2026-07-07 12:43 ` [PULL 1/8] hw/intc/aspeed: Drop stale pending interrupts Cédric Le Goater
2026-07-07 12:43 ` [PULL 2/8] tests/functional/aspeed: unify boot completion detection on 'login:' prompt Cédric Le Goater
2026-07-07 12:43 ` [PULL 3/8] hw/gpio/pca9552: fix off-by-one in QOM led index validation Cédric Le Goater
2026-07-07 12:43 ` [PULL 4/8] hw/arm/aspeed_ast27x0-fc: Fix hardware strap settings Cédric Le Goater
2026-07-07 12:43 ` [PULL 5/8] hw/misc/aspeed_scu: Drop noisy unhandled read logs for AST2700 SCU/SCUIO Cédric Le Goater
2026-07-07 12:43 ` [PULL 6/8] hw/misc/aspeed_scu: Add AST2700 SCUIO RNG control and data registers Cédric Le Goater
2026-07-07 12:43 ` [PULL 7/8] hw/arm/aspeed_ast27x0: Add unimplemented Privilege Controller MMIO regions for SSP/TSP Cédric Le Goater
2026-07-07 12:43 ` [PULL 8/8] hw/arm/aspeed_ast27x0: Add unimplemented OTP controller " Cédric Le Goater
2026-07-08  5:53 ` [PULL 0/8] aspeed queue Stefan Hajnoczi
  -- strict thread matches above, loose matches on Subject: below --
2024-07-09 11:52 Cédric Le Goater
2024-07-09 17:26 ` Richard Henderson

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.