All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/8] Update test ASPEED SDK v11.00 for AST2700 A1 (RESEND)
@ 2026-02-03  2:08 ` Jamin Lin via qemu development
  0 siblings, 0 replies; 21+ messages in thread
From: Jamin Lin via @ 2026-02-03  2:08 UTC (permalink / raw)
  To: Cédric Le Goater, Peter Maydell, Steven Lee, Troy Lee,
	Andrew Jeffery, Joel Stanley, Pierrick Bouvier,
	open list:ASPEED BMCs, open list:All patches CC here
  Cc: jamin_lin, troy_lee, kane_chen

v1
 1. Update test ASPEED SDK v11.00 for AST2700 A1
 2. Fix DMA moving data into incorrect address for I2C
 3. Fix EHCI3/4 IRQ routing to GIC

v2
 1. Fix some extra 'From' info in the mail body

Jamin Lin (8):
  hw/arm/aspeed_ast27x0: Fix EHCI3/4 IRQ routing to GIC
  hw/arm/aspeed_ast27x0: Sort SSP and TSP memmap tables by address
  hw/arm/aspeed_ast27x0: Sort SSP and TSP IRQ maps
  hw/i2c/aspeed_i2c: Fix DMA moving data into incorrect address
  tests/functional/aarch64/test_aspeed_ast2700: Enable PCIe2 DTS status
    for AST2700 tests
  tests/functional/aarch64/test_aspeed_ast2700: Update test ASPEED SDK
    v11.00 for A1
  tests/functional/aarch64/test_aspeed_ast2700fc: Update test ASPEED SDK
    v11.00 for A1
  docs/system/arm/aspeed: Load raw U-Boot image in AST2700 boot example

 docs/system/arm/aspeed.rst                    |  8 +-
 hw/arm/aspeed_ast27x0-ssp.c                   | 14 +--
 hw/arm/aspeed_ast27x0-tsp.c                   | 14 +--
 hw/arm/aspeed_ast27x0.c                       |  2 +
 hw/i2c/aspeed_i2c.c                           | 87 +++++++++++++------
 .../functional/aarch64/test_aspeed_ast2700.py | 78 ++++++++++-------
 .../aarch64/test_aspeed_ast2700fc.py          | 54 ++++++------
 7 files changed, 153 insertions(+), 104 deletions(-)

-- 
2.43.0



^ permalink raw reply	[flat|nested] 21+ messages in thread
* [PATCH v2 8/8] docs/system/arm/aspeed: Load raw U-Boot image in AST2700 boot example
@ 2026-02-03  1:55 Jamin Lin
  2026-02-03 13:23 ` Cédric Le Goater
  0 siblings, 1 reply; 21+ messages in thread
From: Jamin Lin @ 2026-02-03  1:55 UTC (permalink / raw)
  To: clg@kaod.org, peter.maydell@linaro.org, Steven Lee,
	leetroy@gmail.com, andrew@codeconstruct.com.au, joel@jms.id.au,
	pierrick.bouvier@linaro.org, qemu-arm@nongnu.org,
	qemu-devel@nongnu.org
  Cc: Jamin Lin, Troy Lee, Kane Chen

Recent SDK versions no longer provide a U-Boot FIT image, and U-Boot is
now built as a single raw binary. Update the documentation to load the
raw u-boot.bin image directly.

Signed-off-by: Jamin Lin <jamin_lin@aspeedtech.com>
---
 docs/system/arm/aspeed.rst | 8 ++------
 1 file changed, 2 insertions(+), 6 deletions(-)

diff --git a/docs/system/arm/aspeed.rst b/docs/system/arm/aspeed.rst
index 97e14b7d33..d0054a7dbb 100644
--- a/docs/system/arm/aspeed.rst
+++ b/docs/system/arm/aspeed.rst
@@ -350,11 +350,9 @@ corresponds to the BL31 image load address.
 .. code-block:: bash
 
   IMGDIR=ast2700-default
-  UBOOT_SIZE=$(stat --format=%s -L ${IMGDIR}/u-boot-nodtb.bin)
 
   $ qemu-system-aarch64 -M ast2700-evb \
-       -device loader,force-raw=on,addr=0x400000000,file=${IMGDIR}/u-boot-nodtb.bin \
-       -device loader,force-raw=on,addr=$((0x400000000 + ${UBOOT_SIZE})),file=${IMGDIR}/u-boot.dtb \
+       -device loader,force-raw=on,addr=0x400000000,file=${IMGDIR}/u-boot.bin \
        -device loader,force-raw=on,addr=0x430000000,file=${IMGDIR}/bl31.bin \
        -device loader,force-raw=on,addr=0x430080000,file=${IMGDIR}/optee/tee-raw.bin \
        -device loader,cpu-num=0,addr=0x430000000 \
@@ -409,11 +407,9 @@ Steps to boot the AST2700fc machine:
 .. code-block:: bash
 
   IMGDIR=ast2700-default
-  UBOOT_SIZE=$(stat --format=%s -L ${IMGDIR}/u-boot-nodtb.bin)
 
   $ qemu-system-aarch64 -M ast2700fc \
-       -device loader,force-raw=on,addr=0x400000000,file=${IMGDIR}/u-boot-nodtb.bin \
-       -device loader,force-raw=on,addr=$((0x400000000 + ${UBOOT_SIZE})),file=${IMGDIR}/u-boot.dtb \
+       -device loader,force-raw=on,addr=0x400000000,file=${IMGDIR}/u-boot.bin \
        -device loader,force-raw=on,addr=0x430000000,file=${IMGDIR}/bl31.bin \
        -device loader,force-raw=on,addr=0x430080000,file=${IMGDIR}/optee/tee-raw.bin \
        -device loader,cpu-num=0,addr=0x430000000 \
-- 
2.43.0


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

end of thread, other threads:[~2026-02-05 21:07 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-03  2:08 [PATCH v2 0/8] Update test ASPEED SDK v11.00 for AST2700 A1 (RESEND) Jamin Lin via
2026-02-03  2:08 ` Jamin Lin via qemu development
2026-02-03  2:08 ` [PATCH v2 1/8] hw/arm/aspeed_ast27x0: Fix EHCI3/4 IRQ routing to GIC Jamin Lin via
2026-02-03  2:08   ` Jamin Lin via qemu development
2026-02-05 21:07   ` Michael Tokarev
2026-02-03  2:08 ` [PATCH v2 2/8] hw/arm/aspeed_ast27x0: Sort SSP and TSP memmap tables by address Jamin Lin via
2026-02-03  2:08   ` Jamin Lin via qemu development
2026-02-03  2:08 ` [PATCH v2 3/8] hw/arm/aspeed_ast27x0: Sort SSP and TSP IRQ maps Jamin Lin via
2026-02-03  2:08   ` Jamin Lin via qemu development
2026-02-03  2:08 ` [PATCH v2 4/8] hw/i2c/aspeed_i2c: Fix DMA moving data into incorrect address Jamin Lin via
2026-02-03  2:08   ` Jamin Lin via qemu development
2026-02-03  2:08 ` [PATCH v2 5/8] tests/functional/aarch64/test_aspeed_ast2700: Enable PCIe2 DTS status for AST2700 tests Jamin Lin via
2026-02-03  2:08   ` Jamin Lin via qemu development
2026-02-03  2:08 ` [PATCH v2 6/8] tests/functional/aarch64/test_aspeed_ast2700: Update test ASPEED SDK v11.00 for A1 Jamin Lin via
2026-02-03  2:08   ` Jamin Lin via qemu development
2026-02-03  2:08 ` [PATCH v2 7/8] tests/functional/aarch64/test_aspeed_ast2700fc: " Jamin Lin via
2026-02-03  2:08   ` Jamin Lin via qemu development
2026-02-03  2:08 ` [PATCH v2 8/8] docs/system/arm/aspeed: Load raw U-Boot image in AST2700 boot example Jamin Lin via
2026-02-03  2:08   ` Jamin Lin via qemu development
  -- strict thread matches above, loose matches on Subject: below --
2026-02-03  1:55 Jamin Lin
2026-02-03 13:23 ` Cédric Le Goater

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.