* Re: [PATCH 03/11] dt-bindings: Add RISC-V IOMMU bindings [not found] ` <d62ceb33620cab766d809e6bbf30eaf5b46bc955.1689792825.git.tjeznach@rivosinc.com> @ 2023-07-19 20:19 ` Conor Dooley [not found] ` <CAH2o1u6CZSb7pXcaXmh7dJQmNZYh3uORk4x7vJPrb+uCwFdU5g@mail.gmail.com> 2023-07-19 21:37 ` Rob Herring 0 siblings, 2 replies; 4+ messages in thread From: Conor Dooley @ 2023-07-19 20:19 UTC (permalink / raw) To: Tomasz Jeznach Cc: Joerg Roedel, Will Deacon, Robin Murphy, Paul Walmsley, Anup Patel, Albert Ou, linux, linux-kernel, Sebastien Boeuf, iommu, Palmer Dabbelt, Nick Kossifidis, linux-riscv, robh+dt, krzysztof.kozlowski+dt, devicetree [-- Attachment #1: Type: text/plain, Size: 5717 bytes --] Hey Tomasz, On Wed, Jul 19, 2023 at 12:33:47PM -0700, Tomasz Jeznach wrote: > From: Anup Patel <apatel@ventanamicro.com> > > We add DT bindings document for RISC-V IOMMU platform and PCI devices > defined by the RISC-V IOMMU specification. > > Signed-off-by: Anup Patel <apatel@ventanamicro.com> Your signoff is missing from here. Secondly, as get_maintainer.pl would have told you, dt-bindings patches need to be sent to the dt-binding maintainers and list. +CC maintainers & list. Thirdly, dt-binding patches should come before their users. > --- > .../bindings/iommu/riscv,iommu.yaml | 146 ++++++++++++++++++ > 1 file changed, 146 insertions(+) > create mode 100644 Documentation/devicetree/bindings/iommu/riscv,iommu.yaml > > diff --git a/Documentation/devicetree/bindings/iommu/riscv,iommu.yaml b/Documentation/devicetree/bindings/iommu/riscv,iommu.yaml > new file mode 100644 > index 000000000000..8a9aedb61768 > --- /dev/null > +++ b/Documentation/devicetree/bindings/iommu/riscv,iommu.yaml > @@ -0,0 +1,146 @@ > +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) > +%YAML 1.2 > +--- > +$id: http://devicetree.org/schemas/iommu/riscv,iommu.yaml# > +$schema: http://devicetree.org/meta-schemas/core.yaml# > + > +title: RISC-V IOMMU Implementation > + > +maintainers: > + - Tomasz Jeznach <tjeznach@rivosinc.com> What about Anup, who seems to have written this? Or your co-authors of the drivers? > + > +description: > + The RISC-V IOMMU specificaiton defines an IOMMU for RISC-V platforms > + which can be a regular platform device or a PCI device connected to > + the host root port. > + > + The RISC-V IOMMU provides two stage translation, device directory table, > + command queue and fault reporting as wired interrupt or MSIx event for > + both PCI and platform devices. > + > + Visit https://github.com/riscv-non-isa/riscv-iommu for more details. > + > +properties: > + compatible: > + oneOf: > + - description: RISC-V IOMMU as a platform device > + items: > + - enum: > + - vendor,chip-iommu These dummy compatibles are not valid, as was pointed out to Anup on the AIA series. Please go look at what was done there instead: https://lore.kernel.org/all/20230719113542.2293295-7-apatel@ventanamicro.com/ > + - const: riscv,iommu > + > + - description: RISC-V IOMMU as a PCI device connected to root port > + items: > + - enum: > + - vendor,chip-pci-iommu > + - const: riscv,pci-iommu I'm not really au fait with the arm smmu stuff, but do any of its versions support being connected to a root port? > + reg: > + maxItems: 1 > + description: > + For RISC-V IOMMU as a platform device, this represents the MMIO base > + address of registers. > + > + For RISC-V IOMMU as a PCI device, this represents the PCI-PCI bridge > + details as described in Documentation/devicetree/bindings/pci/pci.txt > + > + '#iommu-cells': > + const: 2 > + description: | |s are only needed where formatting needs to be preserved. > + Each IOMMU specifier represents the base device ID and number of > + device IDs. > + > + interrupts: > + minItems: 1 > + maxItems: 16 What are any of these interrupts? > + description: > + The presence of this property implies that given RISC-V IOMMU uses > + wired interrupts to notify the RISC-V HARTS (or CPUs). > + > + msi-parent: > + description: > + The presence of this property implies that given RISC-V IOMMU uses > + MSIx to notify the RISC-V HARTs (or CPUs). This property should be > + considered only when the interrupts property is absent. > + > + dma-coherent: RISC-V is dma-coherent by default, should this not be dma-noncoherent instead? > + description: > + Present if page table walks and DMA accessed made by the RISC-V IOMMU > + are cache coherent with the CPU. > + > + power-domains: > + maxItems: 1 > + > +required: > + - compatible > + - reg > + - '#iommu-cells' > + > +additionalProperties: false > + > +examples: > + - | > + /* Example 1 (IOMMU platform device with wired interrupts) */ > + immu1: iommu@1bccd000 { Why is this "immu"? typo or intentional? > + compatible = "vendor,chip-iommu", "riscv,iommu"; > + reg = <0x1bccd000 0x1000>; > + interrupt-parent = <&aplic_smode>; > + interrupts = <32 4>, <33 4>, <34 4>, <35 4>; > + #iommu-cells = <2>; > + }; > + > + /* Device with two IOMMU device IDs, 0 and 7 */ > + master1 { > + iommus = <&immu1 0 1>, <&immu1 7 1>; > + }; > + > + - | > + /* Example 2 (IOMMU platform device with MSIs) */ > + immu2: iommu@1bcdd000 { > + compatible = "vendor,chip-iommu", "riscv,iommu"; > + reg = <0x1bccd000 0x1000>; > + msi-parent = <&imsics_smode>; > + #iommu-cells = <2>; > + }; > + > + bus { > + #address-cells = <2>; > + #size-cells = <2>; > + > + /* Device with IOMMU device IDs ranging from 32 to 64 */ > + master1 { > + iommus = <&immu2 32 32>; > + }; > + > + pcie@40000000 { > + compatible = "pci-host-cam-generic"; > + device_type = "pci"; > + #address-cells = <3>; > + #size-cells = <2>; > + bus-range = <0x0 0x1>; > + > + /* CPU_PHYSICAL(2) SIZE(2) */ These sort of comments seem to just repeat what address-cells & size-cells has already said, no? Thanks, Conor. [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 228 bytes --] ^ permalink raw reply [flat|nested] 4+ messages in thread
[parent not found: <CAH2o1u6CZSb7pXcaXmh7dJQmNZYh3uORk4x7vJPrb+uCwFdU5g@mail.gmail.com>]
* Re: [PATCH 03/11] dt-bindings: Add RISC-V IOMMU bindings [not found] ` <CAH2o1u6CZSb7pXcaXmh7dJQmNZYh3uORk4x7vJPrb+uCwFdU5g@mail.gmail.com> @ 2023-07-19 20:57 ` Conor Dooley 0 siblings, 0 replies; 4+ messages in thread From: Conor Dooley @ 2023-07-19 20:57 UTC (permalink / raw) To: Tomasz Jeznach Cc: Joerg Roedel, Will Deacon, Robin Murphy, Paul Walmsley, Anup Patel, Albert Ou, linux, linux-kernel, Sebastien Boeuf, iommu, Palmer Dabbelt, Nick Kossifidis, linux-riscv, robh+dt, krzysztof.kozlowski+dt, devicetree [-- Attachment #1: Type: text/plain, Size: 8126 bytes --] On Wed, Jul 19, 2023 at 01:52:28PM -0700, Tomasz Jeznach wrote: > On Wed, Jul 19, 2023 at 1:19 PM Conor Dooley <conor@kernel.org> wrote: > > > Hey Tomasz, > > > > On Wed, Jul 19, 2023 at 12:33:47PM -0700, Tomasz Jeznach wrote: > > > From: Anup Patel <apatel@ventanamicro.com> > > > > > > We add DT bindings document for RISC-V IOMMU platform and PCI devices > > > defined by the RISC-V IOMMU specification. > > > > > > Signed-off-by: Anup Patel <apatel@ventanamicro.com> > > > > Your signoff is missing from here. > > > > Secondly, as get_maintainer.pl would have told you, dt-bindings patches > > need to be sent to the dt-binding maintainers and list. > > +CC maintainers & list. > > > > Thirdly, dt-binding patches should come before their users. > > > > > Thank you for pointing out and adding DT maintainers. > The signoff is definitely missing, and I'll will amend with other fixes / > reordering. Yeah, please wait until you get actual feedback on the drivers etc though before you do that. Also, don't send html emails to the mailing lists. They will be rejected and those outside of direct-cc will not see the emails. > > > --- > > > .../bindings/iommu/riscv,iommu.yaml | 146 ++++++++++++++++++ > > > 1 file changed, 146 insertions(+) > > > create mode 100644 > > Documentation/devicetree/bindings/iommu/riscv,iommu.yaml > > > > > > diff --git a/Documentation/devicetree/bindings/iommu/riscv,iommu.yaml > > b/Documentation/devicetree/bindings/iommu/riscv,iommu.yaml > > > new file mode 100644 > > > index 000000000000..8a9aedb61768 > > > --- /dev/null > > > +++ b/Documentation/devicetree/bindings/iommu/riscv,iommu.yaml > > > @@ -0,0 +1,146 @@ > > > +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) > > > +%YAML 1.2 > > > +--- > > > +$id: http://devicetree.org/schemas/iommu/riscv,iommu.yaml# > > > +$schema: http://devicetree.org/meta-schemas/core.yaml# > > > + > > > +title: RISC-V IOMMU Implementation > > > + > > > +maintainers: > > > + - Tomasz Jeznach <tjeznach@rivosinc.com> > > > > What about Anup, who seems to have written this? > > Or your co-authors of the drivers? > > > > > Anup provided only device tree riscv,iommu bindings proposal, but handed > over its maintenance. > > > + > > > +description: > > > + The RISC-V IOMMU specificaiton defines an IOMMU for RISC-V platforms > > > + which can be a regular platform device or a PCI device connected to > > > + the host root port. > > > + > > > + The RISC-V IOMMU provides two stage translation, device directory > > table, > > > + command queue and fault reporting as wired interrupt or MSIx event for > > > + both PCI and platform devices. > > > + > > > + Visit https://github.com/riscv-non-isa/riscv-iommu for more details. > > > + > > > +properties: > > > + compatible: > > > + oneOf: > > > + - description: RISC-V IOMMU as a platform device > > > + items: > > > + - enum: > > > + - vendor,chip-iommu > > > > These dummy compatibles are not valid, as was pointed out to Anup on > > the AIA series. Please go look at what was done there instead: > > > > https://lore.kernel.org/all/20230719113542.2293295-7-apatel@ventanamicro.com/ > > > > > Thank you, good pointer, seams like the same comments apply here. Will go > through the discussion and update. > > > > > + - const: riscv,iommu > > > + > > > + - description: RISC-V IOMMU as a PCI device connected to root port > > > + items: > > > + - enum: > > > + - vendor,chip-pci-iommu > > > + - const: riscv,pci-iommu > > > > I'm not really au fait with the arm smmu stuff, but do any of its > > versions support being connected to a root port? > > > > > RISC-V IOMMU allows them to be connected to the root port, or presented as > a platform device. That is not quite what I asked... What I want to know is why we are doing something different to Arm's SMMU stuff & whether it is because RISC-V has extra capabilities, or the binding itself is flawed. (There's no more comments from me below, just making sure the mail's contents reaches lore) Cheers, Conor. > > > + reg: > > > + maxItems: 1 > > > + description: > > > + For RISC-V IOMMU as a platform device, this represents the MMIO > > base > > > + address of registers. > > > + > > > + For RISC-V IOMMU as a PCI device, this represents the PCI-PCI > > bridge > > > + details as described in > > Documentation/devicetree/bindings/pci/pci.txt > > > + > > > + '#iommu-cells': > > > + const: 2 > > > + description: | > > > > |s are only needed where formatting needs to be preserved. > > > > > + Each IOMMU specifier represents the base device ID and number of > > > + device IDs. > > > + > > > + interrupts: > > > + minItems: 1 > > > + maxItems: 16 > > > > What are any of these interrupts? > > > > > I'll add a description to the file. In short queue interfaces signalling to > the driver. > > > > + description: > > > + The presence of this property implies that given RISC-V IOMMU uses > > > + wired interrupts to notify the RISC-V HARTS (or CPUs). > > > + > > > + msi-parent: > > > + description: > > > + The presence of this property implies that given RISC-V IOMMU uses > > > + MSIx to notify the RISC-V HARTs (or CPUs). This property should be > > > + considered only when the interrupts property is absent. > > > + > > > + dma-coherent: > > > > RISC-V is dma-coherent by default, should this not be dma-noncoherent > > instead? > > > > > Very valid comment. I'm ok to reverse the flag unless anyone objects. > > > > > + description: > > > + Present if page table walks and DMA accessed made by the RISC-V > > IOMMU > > > + are cache coherent with the CPU. > > > + > > > + power-domains: > > > + maxItems: 1 > > > + > > > +required: > > > + - compatible > > > + - reg > > > + - '#iommu-cells' > > > + > > > +additionalProperties: false > > > + > > > +examples: > > > + - | > > > + /* Example 1 (IOMMU platform device with wired interrupts) */ > > > + immu1: iommu@1bccd000 { > > > > Why is this "immu"? typo or intentional? > > > > I guess there was no particular naming schema here, but I might defer this > question to the author. > > > > > > > + compatible = "vendor,chip-iommu", "riscv,iommu"; > > > + reg = <0x1bccd000 0x1000>; > > > + interrupt-parent = <&aplic_smode>; > > > + interrupts = <32 4>, <33 4>, <34 4>, <35 4>; > > > + #iommu-cells = <2>; > > > + }; > > > + > > > + /* Device with two IOMMU device IDs, 0 and 7 */ > > > + master1 { > > > + iommus = <&immu1 0 1>, <&immu1 7 1>; > > > + }; > > > + > > > + - | > > > + /* Example 2 (IOMMU platform device with MSIs) */ > > > + immu2: iommu@1bcdd000 { > > > + compatible = "vendor,chip-iommu", "riscv,iommu"; > > > + reg = <0x1bccd000 0x1000>; > > > + msi-parent = <&imsics_smode>; > > > + #iommu-cells = <2>; > > > + }; > > > + > > > + bus { > > > + #address-cells = <2>; > > > + #size-cells = <2>; > > > + > > > + /* Device with IOMMU device IDs ranging from 32 to 64 */ > > > + master1 { > > > + iommus = <&immu2 32 32>; > > > + }; > > > + > > > + pcie@40000000 { > > > + compatible = "pci-host-cam-generic"; > > > + device_type = "pci"; > > > + #address-cells = <3>; > > > + #size-cells = <2>; > > > + bus-range = <0x0 0x1>; > > > + > > > + /* CPU_PHYSICAL(2) SIZE(2) */ > > > > These sort of comments seem to just repeat what address-cells & > > size-cells has already said, no? > > > > > Correct. > > > > > Thanks, > > Conor. > > > > > Thank you Conor for prompt response and comments. > I'll address them in the next version. > > - Tomasz [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 228 bytes --] ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 03/11] dt-bindings: Add RISC-V IOMMU bindings 2023-07-19 20:19 ` [PATCH 03/11] dt-bindings: Add RISC-V IOMMU bindings Conor Dooley [not found] ` <CAH2o1u6CZSb7pXcaXmh7dJQmNZYh3uORk4x7vJPrb+uCwFdU5g@mail.gmail.com> @ 2023-07-19 21:37 ` Rob Herring 2023-07-19 23:04 ` Tomasz Jeznach 1 sibling, 1 reply; 4+ messages in thread From: Rob Herring @ 2023-07-19 21:37 UTC (permalink / raw) To: Conor Dooley, Tomasz Jeznach Cc: Joerg Roedel, Will Deacon, Robin Murphy, Paul Walmsley, Anup Patel, Albert Ou, linux, linux-kernel, Sebastien Boeuf, iommu, Palmer Dabbelt, Nick Kossifidis, linux-riscv, krzysztof.kozlowski+dt, devicetree On Wed, Jul 19, 2023 at 2:19 PM Conor Dooley <conor@kernel.org> wrote: > > Hey Tomasz, > > On Wed, Jul 19, 2023 at 12:33:47PM -0700, Tomasz Jeznach wrote: > > From: Anup Patel <apatel@ventanamicro.com> > > > > We add DT bindings document for RISC-V IOMMU platform and PCI devices > > defined by the RISC-V IOMMU specification. > > > > Signed-off-by: Anup Patel <apatel@ventanamicro.com> > > Your signoff is missing from here. > > Secondly, as get_maintainer.pl would have told you, dt-bindings patches > need to be sent to the dt-binding maintainers and list. > +CC maintainers & list. > > Thirdly, dt-binding patches should come before their users. > > > --- > > .../bindings/iommu/riscv,iommu.yaml | 146 ++++++++++++++++++ > > 1 file changed, 146 insertions(+) > > create mode 100644 Documentation/devicetree/bindings/iommu/riscv,iommu.yaml > > > > diff --git a/Documentation/devicetree/bindings/iommu/riscv,iommu.yaml b/Documentation/devicetree/bindings/iommu/riscv,iommu.yaml > > new file mode 100644 > > index 000000000000..8a9aedb61768 > > --- /dev/null > > +++ b/Documentation/devicetree/bindings/iommu/riscv,iommu.yaml > > @@ -0,0 +1,146 @@ > > +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) > > +%YAML 1.2 > > +--- > > +$id: http://devicetree.org/schemas/iommu/riscv,iommu.yaml# > > +$schema: http://devicetree.org/meta-schemas/core.yaml# > > + > > +title: RISC-V IOMMU Implementation > > + > > +maintainers: > > + - Tomasz Jeznach <tjeznach@rivosinc.com> > > What about Anup, who seems to have written this? > Or your co-authors of the drivers? > > > + > > +description: > > + The RISC-V IOMMU specificaiton defines an IOMMU for RISC-V platforms typo > > + which can be a regular platform device or a PCI device connected to > > + the host root port. > > + > > + The RISC-V IOMMU provides two stage translation, device directory table, > > + command queue and fault reporting as wired interrupt or MSIx event for > > + both PCI and platform devices. TBC, you want a PCI device that's an IOMMU and the IOMMU serves (provides translation for) PCI devices? > > + > > + Visit https://github.com/riscv-non-isa/riscv-iommu for more details. > > + > > +properties: > > + compatible: > > + oneOf: > > + - description: RISC-V IOMMU as a platform device "platform device" is a Linux term. Don't use Linux terms in bindings. > > + items: > > + - enum: > > + - vendor,chip-iommu > > These dummy compatibles are not valid, as was pointed out to Anup on > the AIA series. Please go look at what was done there instead: > https://lore.kernel.org/all/20230719113542.2293295-7-apatel@ventanamicro.com/ > > > + - const: riscv,iommu > > + > > + - description: RISC-V IOMMU as a PCI device connected to root port > > + items: > > + - enum: > > + - vendor,chip-pci-iommu > > + - const: riscv,pci-iommu > > I'm not really au fait with the arm smmu stuff, but do any of its > versions support being connected to a root port? PCI devices have a defined format for the compatible string based on VID/PID. For PCI, also usually don't need to be described in DT because they are discoverable. The exception is when there's parts which aren't. Which parts aren't? > > + reg: > > + maxItems: 1 > > + description: > > + For RISC-V IOMMU as a platform device, this represents the MMIO base > > + address of registers. > > + > > + For RISC-V IOMMU as a PCI device, this represents the PCI-PCI bridge Your IOMMU is also a PCI-PCI bridge? Is that a normal PCI thing? > > + details as described in Documentation/devicetree/bindings/pci/pci.txt Don't refer to pci.txt. It is going to be removed. > > + > > + '#iommu-cells': > > + const: 2 > > + description: | > > |s are only needed where formatting needs to be preserved. > > > + Each IOMMU specifier represents the base device ID and number of > > + device IDs. Doesn't that assume device IDs are contiguous? Generally not a safe assumption. > > + > > + interrupts: > > + minItems: 1 > > + maxItems: 16 > > What are any of these interrupts? > > > + description: > > + The presence of this property implies that given RISC-V IOMMU uses > > + wired interrupts to notify the RISC-V HARTS (or CPUs). > > + > > + msi-parent: > > + description: > > + The presence of this property implies that given RISC-V IOMMU uses > > + MSIx to notify the RISC-V HARTs (or CPUs). This property should be > > + considered only when the interrupts property is absent. This doesn't make sense for a PCI device. PCI defines its own way to describe MSI support. > > + > > + dma-coherent: > > RISC-V is dma-coherent by default, should this not be dma-noncoherent > instead? > > > + description: > > + Present if page table walks and DMA accessed made by the RISC-V IOMMU > > + are cache coherent with the CPU. > > + > > + power-domains: > > + maxItems: 1 > > + > > +required: > > + - compatible > > + - reg > > + - '#iommu-cells' > > + > > +additionalProperties: false > > + > > +examples: > > + - | > > + /* Example 1 (IOMMU platform device with wired interrupts) */ > > + immu1: iommu@1bccd000 { > > Why is this "immu"? typo or intentional? > > > + compatible = "vendor,chip-iommu", "riscv,iommu"; > > + reg = <0x1bccd000 0x1000>; > > + interrupt-parent = <&aplic_smode>; > > + interrupts = <32 4>, <33 4>, <34 4>, <35 4>; > > + #iommu-cells = <2>; > > + }; > > + > > + /* Device with two IOMMU device IDs, 0 and 7 */ > > + master1 { > > + iommus = <&immu1 0 1>, <&immu1 7 1>; > > + }; > > + > > + - | > > + /* Example 2 (IOMMU platform device with MSIs) */ > > + immu2: iommu@1bcdd000 { > > + compatible = "vendor,chip-iommu", "riscv,iommu"; > > + reg = <0x1bccd000 0x1000>; > > + msi-parent = <&imsics_smode>; > > + #iommu-cells = <2>; > > + }; > > + > > + bus { > > + #address-cells = <2>; > > + #size-cells = <2>; > > + > > + /* Device with IOMMU device IDs ranging from 32 to 64 */ > > + master1 { > > + iommus = <&immu2 32 32>; > > + }; > > + > > + pcie@40000000 { > > + compatible = "pci-host-cam-generic"; > > + device_type = "pci"; > > + #address-cells = <3>; > > + #size-cells = <2>; > > + bus-range = <0x0 0x1>; > > + > > + /* CPU_PHYSICAL(2) SIZE(2) */ I'm guessing there was more after this, but I don't have it... Guessing, immu2 is a PCI device, but it translates for master1 which is not a PCI device? Weird. Why would anyone build such a thing? Rob ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 03/11] dt-bindings: Add RISC-V IOMMU bindings 2023-07-19 21:37 ` Rob Herring @ 2023-07-19 23:04 ` Tomasz Jeznach 0 siblings, 0 replies; 4+ messages in thread From: Tomasz Jeznach @ 2023-07-19 23:04 UTC (permalink / raw) To: Rob Herring Cc: Conor Dooley, Joerg Roedel, Will Deacon, Robin Murphy, Paul Walmsley, Anup Patel, Albert Ou, linux, linux-kernel, Sebastien Boeuf, iommu, Palmer Dabbelt, Nick Kossifidis, linux-riscv, krzysztof.kozlowski+dt, devicetree On Wed, Jul 19, 2023 at 2:37 PM Rob Herring <robh+dt@kernel.org> wrote: > > On Wed, Jul 19, 2023 at 2:19 PM Conor Dooley <conor@kernel.org> wrote: > > > > Hey Tomasz, > > > > On Wed, Jul 19, 2023 at 12:33:47PM -0700, Tomasz Jeznach wrote: > > > From: Anup Patel <apatel@ventanamicro.com> > > > > > > We add DT bindings document for RISC-V IOMMU platform and PCI devices > > > defined by the RISC-V IOMMU specification. > > > > > > Signed-off-by: Anup Patel <apatel@ventanamicro.com> > > > > Your signoff is missing from here. > > > > Secondly, as get_maintainer.pl would have told you, dt-bindings patches > > need to be sent to the dt-binding maintainers and list. > > +CC maintainers & list. > > > > Thirdly, dt-binding patches should come before their users. > > > > > --- > > > .../bindings/iommu/riscv,iommu.yaml | 146 ++++++++++++++++++ > > > 1 file changed, 146 insertions(+) > > > create mode 100644 Documentation/devicetree/bindings/iommu/riscv,iommu.yaml > > > > > > diff --git a/Documentation/devicetree/bindings/iommu/riscv,iommu.yaml b/Documentation/devicetree/bindings/iommu/riscv,iommu.yaml > > > new file mode 100644 > > > index 000000000000..8a9aedb61768 > > > --- /dev/null > > > +++ b/Documentation/devicetree/bindings/iommu/riscv,iommu.yaml > > > @@ -0,0 +1,146 @@ > > > +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) > > > +%YAML 1.2 > > > +--- > > > +$id: http://devicetree.org/schemas/iommu/riscv,iommu.yaml# > > > +$schema: http://devicetree.org/meta-schemas/core.yaml# > > > + > > > +title: RISC-V IOMMU Implementation > > > + > > > +maintainers: > > > + - Tomasz Jeznach <tjeznach@rivosinc.com> > > > > What about Anup, who seems to have written this? > > Or your co-authors of the drivers? > > > > > + > > > +description: > > > + The RISC-V IOMMU specificaiton defines an IOMMU for RISC-V platforms > > typo > ack > > > + which can be a regular platform device or a PCI device connected to > > > + the host root port. > > > + > > > + The RISC-V IOMMU provides two stage translation, device directory table, > > > + command queue and fault reporting as wired interrupt or MSIx event for > > > + both PCI and platform devices. > > TBC, you want a PCI device that's an IOMMU and the IOMMU serves > (provides translation for) PCI devices? > Yes, IOMMU as a PCIe device providing address translation services for connect PCIe root complex. > > > + > > > + Visit https://github.com/riscv-non-isa/riscv-iommu for more details. > > > + > > > +properties: > > > + compatible: > > > + oneOf: > > > + - description: RISC-V IOMMU as a platform device > > "platform device" is a Linux term. Don't use Linux terms in bindings. > ack. > > > + items: > > > + - enum: > > > + - vendor,chip-iommu > > > > These dummy compatibles are not valid, as was pointed out to Anup on > > the AIA series. Please go look at what was done there instead: > > https://lore.kernel.org/all/20230719113542.2293295-7-apatel@ventanamicro.com/ > > > > > + - const: riscv,iommu > > > + > > > + - description: RISC-V IOMMU as a PCI device connected to root port > > > + items: > > > + - enum: > > > + - vendor,chip-pci-iommu > > > + - const: riscv,pci-iommu > > > > I'm not really au fait with the arm smmu stuff, but do any of its > > versions support being connected to a root port? > > PCI devices have a defined format for the compatible string based on > VID/PID. For PCI, also usually don't need to be described in DT > because they are discoverable. The exception is when there's parts > which aren't. Which parts aren't? > We've put 'riscv,pci-iommu' node here to describe relationship between PCIe devices and IOMMU(s), needed for the pcie root complex description (iommu-map). If there is a better way to reference PCI-IOMMU without adding pci-iommu definition that would solve the problem. Every other property of pci-iommu should be discoverable. > > > + reg: > > > + maxItems: 1 > > > + description: > > > + For RISC-V IOMMU as a platform device, this represents the MMIO base > > > + address of registers. > > > + > > > + For RISC-V IOMMU as a PCI device, this represents the PCI-PCI bridge > > Your IOMMU is also a PCI-PCI bridge? Is that a normal PCI thing? > It's allowed to be integrated with root complex / IO bridge, but it is as a separate PCIe device. I'll clarify the description. > > > > + details as described in Documentation/devicetree/bindings/pci/pci.txt > > Don't refer to pci.txt. It is going to be removed. > ack. > > > + > > > + '#iommu-cells': > > > + const: 2 > > > + description: | > > > > |s are only needed where formatting needs to be preserved. > > > > > + Each IOMMU specifier represents the base device ID and number of > > > + device IDs. > > Doesn't that assume device IDs are contiguous? Generally not a safe assumption. > ack. > > > + > > > + interrupts: > > > + minItems: 1 > > > + maxItems: 16 > > > > What are any of these interrupts? > > > > > + description: > > > + The presence of this property implies that given RISC-V IOMMU uses > > > + wired interrupts to notify the RISC-V HARTS (or CPUs). > > > + > > > + msi-parent: > > > + description: > > > + The presence of this property implies that given RISC-V IOMMU uses > > > + MSIx to notify the RISC-V HARTs (or CPUs). This property should be > > > + considered only when the interrupts property is absent. > > This doesn't make sense for a PCI device. PCI defines its own way to > describe MSI support. > Agree, this is for IOMMU as a non-PCI device, capable of sending MSI. Follows 'MSI clients' notes from devicetree/bindings/interrupt-controller/msi.txt Is this a proper way to describe this relationship? > > > + > > > + dma-coherent: > > > > RISC-V is dma-coherent by default, should this not be dma-noncoherent > > instead? > > > > > + description: > > > + Present if page table walks and DMA accessed made by the RISC-V IOMMU > > > + are cache coherent with the CPU. > > > + > > > + power-domains: > > > + maxItems: 1 > > > + > > > +required: > > > + - compatible > > > + - reg > > > + - '#iommu-cells' > > > + > > > +additionalProperties: false > > > + > > > +examples: > > > + - | > > > + /* Example 1 (IOMMU platform device with wired interrupts) */ > > > + immu1: iommu@1bccd000 { > > > > Why is this "immu"? typo or intentional? > > > > > + compatible = "vendor,chip-iommu", "riscv,iommu"; > > > + reg = <0x1bccd000 0x1000>; > > > + interrupt-parent = <&aplic_smode>; > > > + interrupts = <32 4>, <33 4>, <34 4>, <35 4>; > > > + #iommu-cells = <2>; > > > + }; > > > + > > > + /* Device with two IOMMU device IDs, 0 and 7 */ > > > + master1 { > > > + iommus = <&immu1 0 1>, <&immu1 7 1>; > > > + }; > > > + > > > + - | > > > + /* Example 2 (IOMMU platform device with MSIs) */ > > > + immu2: iommu@1bcdd000 { > > > + compatible = "vendor,chip-iommu", "riscv,iommu"; > > > + reg = <0x1bccd000 0x1000>; > > > + msi-parent = <&imsics_smode>; > > > + #iommu-cells = <2>; > > > + }; > > > + > > > + bus { > > > + #address-cells = <2>; > > > + #size-cells = <2>; > > > + > > > + /* Device with IOMMU device IDs ranging from 32 to 64 */ > > > + master1 { > > > + iommus = <&immu2 32 32>; > > > + }; > > > + > > > + pcie@40000000 { > > > + compatible = "pci-host-cam-generic"; > > > + device_type = "pci"; > > > + #address-cells = <3>; > > > + #size-cells = <2>; > > > + bus-range = <0x0 0x1>; > > > + > > > + /* CPU_PHYSICAL(2) SIZE(2) */ > > I'm guessing there was more after this, but I don't have it... Complete patch 3 is at: https://lore.kernel.org/linux-iommu/cover.1689792825.git.tjeznach@rivosinc.com/T/#mbf8dc4098fb09b87b2618c5c545ae882f11b114b > > Guessing, immu2 is a PCI device, but it translates for master1 which > is not a PCI device? Weird. Why would anyone build such a thing? > In this example immu2 is a non-PCI device. Agree, otherwise would be weird. > > Rob Thank you, - Tomasz ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2023-07-19 23:04 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <cover.1689792825.git.tjeznach@rivosinc.com>
[not found] ` <d62ceb33620cab766d809e6bbf30eaf5b46bc955.1689792825.git.tjeznach@rivosinc.com>
2023-07-19 20:19 ` [PATCH 03/11] dt-bindings: Add RISC-V IOMMU bindings Conor Dooley
[not found] ` <CAH2o1u6CZSb7pXcaXmh7dJQmNZYh3uORk4x7vJPrb+uCwFdU5g@mail.gmail.com>
2023-07-19 20:57 ` Conor Dooley
2023-07-19 21:37 ` Rob Herring
2023-07-19 23:04 ` Tomasz Jeznach
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox