From: Nicholas Piggin <npiggin@gmail.com>
To: Alistair Francis <alistair.francis@wdc.com>,
Daniel Henrique Barboza <daniel.barboza@oss.qualcomm.com>
Cc: Nicholas Piggin <npiggin@gmail.com>,
Chao Liu <chao.liu.zevorn@gmail.com>,
Michael Ellerman <mpe@kernel.org>,
Joel Stanley <jms@oss.tenstorrent.com>,
Anirudh Srinivasan <asrinivasan@oss.tenstorrent.com>,
Portia Stephens <portias@oss.tenstorrent.com>,
qemu-riscv@nongnu.org, qemu-devel@nongnu.org
Subject: [PATCH v5 0/9] hw/riscv: Add the Tenstorrent Atlantis machine
Date: Thu, 7 May 2026 14:38:28 +1000 [thread overview]
Message-ID: <20260507043838.45652-1-npiggin@gmail.com> (raw)
Introducing Tenstorrent Atlantis!
The Tenstorrent Atlantis platform is a collaboration between Tenstorrent
and CoreLab Technology. It is based on the Atlantis SoC, which includes
the Ascalon-X CPU and other IP from Tenstorrent and CoreLab Technology.
The Tenstorrent Ascalon-X is a high performance 64-bit RVA23 compliant
RISC-V CPU.
I will taking over this series while Joel is away. Many thanks to the
reviewers on v4, here:
https://lore.kernel.org/qemu-devel/20260425131721.932250-1-joel@jms.id.au/T/#mb1ef2824c2f1f37bf4574dc1ef0fb95566c3a2f2
Changes since v4:
- Drop PCI, to rewok with Designware controller in a later patch.
- Drop I2C, the model had significant changes so I will work on
that independently and we can bring that back in Atlantis later.
- Move the OpenSBI dummy payload hack into tt-atlantis specific code.
- Remove AIA MAINTAINERS entry since it is already covered.
- Update microchip_pfsoc to use new discontig boot_info API.
- Update changelog to explain tt-atlantis machine DTB.
Thanks,
Nick
Joel Stanley (3):
hw/riscv/virt: Move AIA initialisation to helper file
hw/riscv/aia: Provide number of irq sources
hw/riscv: Add Tenstorrent Atlantis machine
Nicholas Piggin (6):
hw/riscv/boot: Describe discontiguous memory in boot_info
hw/riscv/boot: Account for discontiguous memory when loading firmware
target/riscv: tt-ascalon: Enable Zkr extension
target/riscv: tt-ascalon: Enable Svadu by removing Svade
hw/riscv/atlantis: Provide a simple halting payload
tests/functional/riscv64: Add tt-atlantis tests
MAINTAINERS | 11 +
docs/system/riscv/tt_atlantis.rst | 32 +
docs/system/target-riscv.rst | 1 +
hw/riscv/Kconfig | 10 +
hw/riscv/aia.c | 93 +++
hw/riscv/aia.h | 25 +
hw/riscv/boot.c | 34 +-
hw/riscv/meson.build | 3 +-
hw/riscv/microchip_pfsoc.c | 8 +-
hw/riscv/opentitan.c | 6 +-
hw/riscv/shakti_c.c | 6 +-
hw/riscv/sifive_u.c | 6 +-
hw/riscv/spike.c | 6 +-
hw/riscv/tt_atlantis.c | 583 +++++++++++++++++++
hw/riscv/virt-acpi-build.c | 27 +-
hw/riscv/virt.c | 96 +--
hw/riscv/xiangshan_kmh.c | 6 +-
include/hw/riscv/boot.h | 12 +-
include/hw/riscv/tt_atlantis.h | 51 ++
include/hw/riscv/virt.h | 2 +-
roms/seabios-hppa | 2 +-
target/riscv/cpu.c | 2 +-
tests/functional/riscv64/meson.build | 1 +
tests/functional/riscv64/test_opensbi.py | 4 +
tests/functional/riscv64/test_tt_atlantis.py | 57 ++
25 files changed, 975 insertions(+), 109 deletions(-)
create mode 100644 docs/system/riscv/tt_atlantis.rst
create mode 100644 hw/riscv/aia.c
create mode 100644 hw/riscv/aia.h
create mode 100644 hw/riscv/tt_atlantis.c
create mode 100644 include/hw/riscv/tt_atlantis.h
create mode 100755 tests/functional/riscv64/test_tt_atlantis.py
--
2.53.0
next reply other threads:[~2026-05-07 4:40 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-05-07 4:38 Nicholas Piggin [this message]
2026-05-07 4:38 ` [PATCH v5 1/9] hw/riscv/boot: Describe discontiguous memory in boot_info Nicholas Piggin
2026-05-07 4:38 ` [PATCH v5 2/9] hw/riscv/boot: Account for discontiguous memory when loading firmware Nicholas Piggin
2026-05-07 4:38 ` [PATCH v5 3/9] hw/riscv/virt: Move AIA initialisation to helper file Nicholas Piggin
2026-05-07 4:38 ` [PATCH v5 4/9] hw/riscv/aia: Provide number of irq sources Nicholas Piggin
2026-05-07 4:38 ` [PATCH v5 5/9] target/riscv: tt-ascalon: Enable Zkr extension Nicholas Piggin
2026-05-07 4:38 ` [PATCH v5 6/9] target/riscv: tt-ascalon: Enable Svadu by removing Svade Nicholas Piggin
2026-05-07 18:57 ` Andrew Jones
2026-05-08 3:54 ` Nicholas Piggin
2026-05-08 13:56 ` Andrew Jones
2026-05-07 4:38 ` [PATCH v5 7/9] hw/riscv: Add Tenstorrent Atlantis machine Nicholas Piggin
2026-05-07 4:38 ` [PATCH v5 8/9] hw/riscv/atlantis: Provide a simple halting payload Nicholas Piggin
2026-05-07 6:09 ` Philippe Mathieu-Daudé
2026-05-07 4:38 ` [PATCH v5 9/9] tests/functional/riscv64: Add tt-atlantis tests Nicholas Piggin
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=20260507043838.45652-1-npiggin@gmail.com \
--to=npiggin@gmail.com \
--cc=alistair.francis@wdc.com \
--cc=asrinivasan@oss.tenstorrent.com \
--cc=chao.liu.zevorn@gmail.com \
--cc=daniel.barboza@oss.qualcomm.com \
--cc=jms@oss.tenstorrent.com \
--cc=mpe@kernel.org \
--cc=portias@oss.tenstorrent.com \
--cc=qemu-devel@nongnu.org \
--cc=qemu-riscv@nongnu.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.