From: Drew Fustini <fustini@kernel.org>
To: Conor Dooley <conor@kernel.org>
Cc: Paul Walmsley <paul.walmsley@sifive.com>,
Palmer Dabbelt <palmer@dabbelt.com>,
Alexandre Ghiti <alex@ghiti.fr>, Rob Herring <robh@kernel.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Conor Dooley <conor+dt@kernel.org>,
Samuel Holland <samuel.holland@sifive.com>,
Daniel Lezcano <daniel.lezcano@linaro.org>,
Thomas Gleixner <tglx@linutronix.de>,
Anup Patel <anup@brainfault.org>, Arnd Bergmann <arnd@arndb.de>,
Joel Stanley <jms@tenstorrent.com>, Joel Stanley <joel@jms.id.au>,
Michael Neuling <mikey@neuling.org>,
Nicholas Piggin <npiggin@gmail.com>,
Michael Ellerman <mpe@kernel.org>, Andy Gross <agross@kernel.org>,
linux-riscv@lists.infradead.org, linux-kernel@vger.kernel.org,
devicetree@vger.kernel.org,
Drew Fustini <dfustini@tenstorrent.com>
Subject: Re: [PATCH 6/7] riscv: dts: Add Tenstorrent Blackhole A0 SoC PCIe cards
Date: Mon, 15 Sep 2025 10:52:10 -0700 [thread overview]
Message-ID: <aMhSSka3gyIcND/L@x1> (raw)
In-Reply-To: <20250915-mouth-banner-ddfb2e48bdb3@spud>
[-- Attachment #1: Type: text/plain, Size: 2281 bytes --]
On Mon, Sep 15, 2025 at 05:47:08PM +0100, Conor Dooley wrote:
> On Sat, Sep 13, 2025 at 02:31:05PM -0700, Drew Fustini wrote:
> > new file mode 100644
> > index 0000000000000000000000000000000000000000..b2b08023643a2cebd4f924579024290bb355c9b3
> > --- /dev/null
> > +++ b/arch/riscv/boot/dts/tenstorrent/blackhole-a0-card.dts
> > @@ -0,0 +1,14 @@
> > +// SPDX-License-Identifier: (GPL-2.0 OR MIT)
> > +/dts-v1/;
> > +
> > +#include "blackhole-a0.dtsi"
> > +
> > +/ {
> > + model = "Tenstorrent Blackhole A0 SoC PCIe card";
> > + compatible = "tenstorrent,blackhole-a0-card", "tenstorrent,blackhole-a0";
> > +
> > + memory@0 {
> > + device_type = "memory";
> > + reg = <0x4000 0x30000000 0x1 0x00000000>;
>
> This isn't at address zero as the node address claims.
Thanks, I'll fix the unit address.
>
> > + };
> > +};
> > diff --git a/arch/riscv/boot/dts/tenstorrent/blackhole-a0.dtsi b/arch/riscv/boot/dts/tenstorrent/blackhole-a0.dtsi
> > new file mode 100644
> > index 0000000000000000000000000000000000000000..517b6442ff0fe61659069e29318ad3f01bc504e2
> > --- /dev/null
> > +++ b/arch/riscv/boot/dts/tenstorrent/blackhole-a0.dtsi
> > @@ -0,0 +1,112 @@
> > +// SPDX-License-Identifier: (GPL-2.0 OR MIT)
> > +// Copyright 2025 Tenstorrent AI ULC
> > +/dts-v1/;
> > +
> > +/ {
> > + compatible = "tenstorrent,blackhole-a0";
> > + #address-cells = <2>;
> > + #size-cells = <2>;
> > +
> > + cpus {
> > + #address-cells = <0x1>;
> > + #size-cells = <0x0>;
> > + timebase-frequency = <50000000>;
> > +
> > + cpu@0 {
> > + compatible = "sifive,x280", "sifive,rocket0", "riscv";
> > + device_type = "cpu";
> > + reg = <0>;
> > + mmu-type = "riscv,sv57";
>
> > + riscv,isa = "rv64imafdcv_zicsr_zifencei_zfh_zba_zbb_sscofpmf";
>
> What's the benefit of retaining this property?
Nothing depends on the legacy isa property so I'll drop it.
>
> > + riscv,isa-base = "rv64i";
> > + riscv,isa-extensions = "i", "m", "a", "f", "d", "c", "v", "zicsr",
> > + "zifencei", "zfh", "zba", "zbb", "sscofpmf";
> > + riscv,cboz-block-size = <0x40>;
>
> cboz block size, but no zicboz in your extensions list?
My mistake, the core does not have CBO so I'll drop this property.
Thanks,
Drew
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]
next prev parent reply other threads:[~2025-09-15 17:52 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-09-13 21:30 [PATCH 0/7] RISC-V: Add support for Tenstorrent Blackhole SoC Drew Fustini
2025-09-13 21:31 ` [PATCH 1/7] dt-bindings: vendor-prefixes: Add Tenstorrent AI ULC Drew Fustini
2025-09-16 13:33 ` Rob Herring (Arm)
2025-09-13 21:31 ` [PATCH 2/7] dt-bindings: riscv: Add Tenstorrent Blackhole compatible Drew Fustini
2025-09-16 13:34 ` Rob Herring (Arm)
2025-09-13 21:31 ` [PATCH 3/7] dt-bindings: riscv: cpus: Add SiFive X280 compatible Drew Fustini
2025-09-16 13:37 ` Rob Herring (Arm)
2025-09-13 21:31 ` [PATCH 4/7] dt-bindings: timers: Add Tenstorrent Blackhole compatible Drew Fustini
2025-09-16 13:44 ` Rob Herring
2025-09-16 17:43 ` Drew Fustini
2025-09-13 21:31 ` [PATCH 5/7] dt-bindings: interrupt-controller: " Drew Fustini
2025-09-13 21:31 ` [PATCH 6/7] riscv: dts: Add Tenstorrent Blackhole A0 SoC PCIe cards Drew Fustini
2025-09-15 16:47 ` Conor Dooley
2025-09-15 17:52 ` Drew Fustini [this message]
2025-09-16 13:56 ` Ben Dooks
2025-09-16 17:27 ` Drew Fustini
2025-09-16 18:25 ` Ben Dooks
2025-09-13 21:31 ` [PATCH 7/7] riscv: Kconfig.socs: Add ARCH_TENSTORRENT for Tenstorrent SoCs Drew Fustini
2025-09-15 16:48 ` Conor Dooley
2025-09-15 17:52 ` Drew Fustini
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=aMhSSka3gyIcND/L@x1 \
--to=fustini@kernel.org \
--cc=agross@kernel.org \
--cc=alex@ghiti.fr \
--cc=anup@brainfault.org \
--cc=arnd@arndb.de \
--cc=conor+dt@kernel.org \
--cc=conor@kernel.org \
--cc=daniel.lezcano@linaro.org \
--cc=devicetree@vger.kernel.org \
--cc=dfustini@tenstorrent.com \
--cc=jms@tenstorrent.com \
--cc=joel@jms.id.au \
--cc=krzk+dt@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-riscv@lists.infradead.org \
--cc=mikey@neuling.org \
--cc=mpe@kernel.org \
--cc=npiggin@gmail.com \
--cc=palmer@dabbelt.com \
--cc=paul.walmsley@sifive.com \
--cc=robh@kernel.org \
--cc=samuel.holland@sifive.com \
--cc=tglx@linutronix.de \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox