* [PATCH v6 0/2] Enable Service layer driver for Agilex5
@ 2025-11-06 23:35 Khairul Anuar Romli
2025-11-06 23:35 ` [PATCH v6 1/2] dt-bindings: firmware: svc: Add IOMMU support " Khairul Anuar Romli
2025-11-06 23:35 ` [PATCH v6 2/2] arm64: dts: intel: Add Agilex5 SVC node with memory region Khairul Anuar Romli
0 siblings, 2 replies; 6+ messages in thread
From: Khairul Anuar Romli @ 2025-11-06 23:35 UTC (permalink / raw)
To: Dinh Nguyen, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Mahesh Rao, linux-kernel, devicetree, Khairul Anuar Romli
This patch series introduces support for the Agilex5 service layer driver
(SVC) in the Linux kernel. The changes span across device tree bindings,
platform DTS files, and the Stratix10 SVC firmware driver.
These changes are necessary to enable firmware communication on Agilex5
SoCs via the SVC interface, similar to existing support for Stratix10 and
Agilex platforms.
Agilex5 introduces the ability for the TBU to operate in non-secure mode,
making it accessible to Linux through the IOMMU framework. This key
difference enables improved memory management in non-secure environments.
As a result, this series extends the SVC driver and device tree bindings
to support IOMMU integration for Agilex5.
---
Notes:
This patch series is applied on socfpga maintainer's tree
https://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git/log/?h=socfpga_dts_for_v6.19
Changes in v6:
- Reinstate AllOf so that the future addition will not have not
require re-indentation.
- Add svc node below cpu node in DT.
Changes in v5:
- Use contains enum instead of const
Changes in v4:
- Refactor the logical check without using AllOf.
Changes in v3:
- Remove driver changes in driver as it is fully compatible
- Add iommu entry and rewrite the git commit message to describe
why the changes is required.
Changes in v2:
- Add driver changes for Agilex5-svc compatible
---
Khairul Anuar Romli (2):
dt-bindings: firmware: svc: Add IOMMU support for Agilex5
arm64: dts: intel: Add Agilex5 SVC node with memory region
.../bindings/firmware/intel,stratix10-svc.yaml | 15 +++++++++++++++
arch/arm64/boot/dts/intel/socfpga_agilex5.dtsi | 9 +++++++++
2 files changed, 24 insertions(+)
--
2.43.7
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH v6 1/2] dt-bindings: firmware: svc: Add IOMMU support for Agilex5
2025-11-06 23:35 [PATCH v6 0/2] Enable Service layer driver for Agilex5 Khairul Anuar Romli
@ 2025-11-06 23:35 ` Khairul Anuar Romli
2025-11-07 7:35 ` Krzysztof Kozlowski
2025-11-07 11:44 ` Dinh Nguyen
2025-11-06 23:35 ` [PATCH v6 2/2] arm64: dts: intel: Add Agilex5 SVC node with memory region Khairul Anuar Romli
1 sibling, 2 replies; 6+ messages in thread
From: Khairul Anuar Romli @ 2025-11-06 23:35 UTC (permalink / raw)
To: Dinh Nguyen, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Mahesh Rao, linux-kernel, devicetree, Khairul Anuar Romli
In Agilex5, the TBU (Translation Buffer Unit) can now operate in non-secure
mode, enabling Linux to utilize it through the IOMMU framework. This allows
improved memory management capabilities in non-secure environments. With
Agilex5 lifting this restriction, we are now extending the device tree
bindings to support IOMMU for the Agilex5 SVC.
Signed-off-by: Khairul Anuar Romli <khairul.anuar.romli@altera.com>
---
Changes in v6:
- Reinstate AllOf to avoid re-indentation on future addition to
the logical condition.
Changes in v6:
- Use contains enum instead of const
Changes in v4:
- Fix syntax / style error.
- Refactor code not to use AllOf but instead use if directly.
Changes in v3:
- Add iommu property.
- Add logical check where only Agilex5 required iommus
- Rewrite the commit message to explain why this changes is
needed.
Changes in v2:
- Reprase commit message to exclude iommu
---
.../bindings/firmware/intel,stratix10-svc.yaml | 15 +++++++++++++++
1 file changed, 15 insertions(+)
diff --git a/Documentation/devicetree/bindings/firmware/intel,stratix10-svc.yaml b/Documentation/devicetree/bindings/firmware/intel,stratix10-svc.yaml
index fac1e955852e..b42cfa78b28b 100644
--- a/Documentation/devicetree/bindings/firmware/intel,stratix10-svc.yaml
+++ b/Documentation/devicetree/bindings/firmware/intel,stratix10-svc.yaml
@@ -34,6 +34,7 @@ properties:
enum:
- intel,stratix10-svc
- intel,agilex-svc
+ - intel,agilex5-svc
method:
description: |
@@ -54,6 +55,9 @@ properties:
reserved memory region for the service layer driver to
communicate with the secure device manager.
+ iommus:
+ maxItems: 1
+
fpga-mgr:
$ref: /schemas/fpga/intel,stratix10-soc-fpga-mgr.yaml
description: Optional child node for fpga manager to perform fabric configuration.
@@ -63,6 +67,17 @@ required:
- method
- memory-region
+allOf:
+ - if:
+ properties:
+ compatible:
+ contains:
+ enum:
+ - intel,agilex5-svc
+ then:
+ required:
+ - iommus
+
additionalProperties: false
examples:
--
2.43.7
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH v6 2/2] arm64: dts: intel: Add Agilex5 SVC node with memory region
2025-11-06 23:35 [PATCH v6 0/2] Enable Service layer driver for Agilex5 Khairul Anuar Romli
2025-11-06 23:35 ` [PATCH v6 1/2] dt-bindings: firmware: svc: Add IOMMU support " Khairul Anuar Romli
@ 2025-11-06 23:35 ` Khairul Anuar Romli
1 sibling, 0 replies; 6+ messages in thread
From: Khairul Anuar Romli @ 2025-11-06 23:35 UTC (permalink / raw)
To: Dinh Nguyen, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Mahesh Rao, linux-kernel, devicetree, Khairul Anuar Romli
Introduce the Stratix10 SoC Service Layer (SVC) node for Agilex5 SoCs. This
node includes the compatible string "intel,agilex5-svc" and references a
reserved memory region used for communication with the Secure Device
Manager (SDM).
Agilex5 introduces changes in how reserved memory is mapped and accessed
compared to previous SoC generations. This commit updates the device tree
structure to support Agilex5-specific handling of the SVC interface.
Signed-off-by: Khairul Anuar Romli <khairul.anuar.romli@altera.com>
---
Changes in v6:
- Move svc node below cpu node.
Changes in v5:
- No change.
Changes in v4:
- Exclude peers reviewers in the sign off.
Changes in v3:
- include iommu property in svc node.
- Rephrase git commit message to describe iommu presence
in Agilex5
Changes in v2:
- Rephrase commit message to exclude mentioning iommu
---
arch/arm64/boot/dts/intel/socfpga_agilex5.dtsi | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/arch/arm64/boot/dts/intel/socfpga_agilex5.dtsi b/arch/arm64/boot/dts/intel/socfpga_agilex5.dtsi
index 408911ea7bc5..bf7128adddde 100644
--- a/arch/arm64/boot/dts/intel/socfpga_agilex5.dtsi
+++ b/arch/arm64/boot/dts/intel/socfpga_agilex5.dtsi
@@ -79,6 +79,15 @@ L3: l3-cache {
};
+ firmware {
+ svc {
+ compatible = "intel,agilex5-svc";
+ method = "smc";
+ memory-region = <&service_reserved>;
+ iommus = <&smmu 10>;
+ };
+ };
+
psci {
compatible = "arm,psci-0.2";
method = "smc";
--
2.43.7
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH v6 1/2] dt-bindings: firmware: svc: Add IOMMU support for Agilex5
2025-11-06 23:35 ` [PATCH v6 1/2] dt-bindings: firmware: svc: Add IOMMU support " Khairul Anuar Romli
@ 2025-11-07 7:35 ` Krzysztof Kozlowski
2025-11-07 7:49 ` Romli, Khairul Anuar
2025-11-07 11:44 ` Dinh Nguyen
1 sibling, 1 reply; 6+ messages in thread
From: Krzysztof Kozlowski @ 2025-11-07 7:35 UTC (permalink / raw)
To: Khairul Anuar Romli
Cc: Dinh Nguyen, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Mahesh Rao, linux-kernel, devicetree
On Fri, Nov 07, 2025 at 07:35:25AM +0800, Khairul Anuar Romli wrote:
> In Agilex5, the TBU (Translation Buffer Unit) can now operate in non-secure
> mode, enabling Linux to utilize it through the IOMMU framework. This allows
> improved memory management capabilities in non-secure environments. With
> Agilex5 lifting this restriction, we are now extending the device tree
> bindings to support IOMMU for the Agilex5 SVC.
>
> Signed-off-by: Khairul Anuar Romli <khairul.anuar.romli@altera.com>
> ---
<form letter>
This is a friendly reminder during the review process.
It looks like you received a tag and forgot to add it.
If you do not know the process, here is a short explanation:
Please add Acked-by/Reviewed-by/Tested-by tags when posting new
versions of patchset, under or above your Signed-off-by tag, unless
patch changed significantly (e.g. new properties added to the DT
bindings). Tag is "received", when provided in a message replied to you
on the mailing list. Tools like b4 can help here. However, there's no
need to repost patches *only* to add the tags. The upstream maintainer
will do that for tags received on the version they apply.
Please read:
https://elixir.bootlin.com/linux/v6.12-rc3/source/Documentation/process/submitting-patches.rst#L577
If a tag was not added on purpose, please state why and what changed.
</form letter>
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v6 1/2] dt-bindings: firmware: svc: Add IOMMU support for Agilex5
2025-11-07 7:35 ` Krzysztof Kozlowski
@ 2025-11-07 7:49 ` Romli, Khairul Anuar
0 siblings, 0 replies; 6+ messages in thread
From: Romli, Khairul Anuar @ 2025-11-07 7:49 UTC (permalink / raw)
To: Krzysztof Kozlowski
Cc: Dinh Nguyen, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Rao, Mahesh, linux-kernel@vger.kernel.org,
devicetree@vger.kernel.org
On 7/11/2025 3:35 pm, Krzysztof Kozlowski wrote:
> On Fri, Nov 07, 2025 at 07:35:25AM +0800, Khairul Anuar Romli wrote:
>> In Agilex5, the TBU (Translation Buffer Unit) can now operate in non-secure
>> mode, enabling Linux to utilize it through the IOMMU framework. This allows
>> improved memory management capabilities in non-secure environments. With
>> Agilex5 lifting this restriction, we are now extending the device tree
>> bindings to support IOMMU for the Agilex5 SVC.
>>
>> Signed-off-by: Khairul Anuar Romli <khairul.anuar.romli@altera.com>
>> ---
>
> <form letter>
> This is a friendly reminder during the review process.
>
> It looks like you received a tag and forgot to add it.
>
> If you do not know the process, here is a short explanation:
> Please add Acked-by/Reviewed-by/Tested-by tags when posting new
> versions of patchset, under or above your Signed-off-by tag, unless
> patch changed significantly (e.g. new properties added to the DT
> bindings). Tag is "received", when provided in a message replied to you
> on the mailing list. Tools like b4 can help here. However, there's no
> need to repost patches *only* to add the tags. The upstream maintainer
> will do that for tags received on the version they apply.
>
> Please read:
> https://elixir.bootlin.com/linux/v6.12-rc3/source/Documentation/process/submitting-patches.rst#L577
>
> If a tag was not added on purpose, please state why and what changed.
> </form letter>
>
> Best regards,
> Krzysztof
>
The reviewed-by tag was not added on purpose because I re-added the
"allOf" and add indentations to the rest of the of logical block versus
the previous version.
Thanks.
Regards,
Khairul
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v6 1/2] dt-bindings: firmware: svc: Add IOMMU support for Agilex5
2025-11-06 23:35 ` [PATCH v6 1/2] dt-bindings: firmware: svc: Add IOMMU support " Khairul Anuar Romli
2025-11-07 7:35 ` Krzysztof Kozlowski
@ 2025-11-07 11:44 ` Dinh Nguyen
1 sibling, 0 replies; 6+ messages in thread
From: Dinh Nguyen @ 2025-11-07 11:44 UTC (permalink / raw)
To: Khairul Anuar Romli, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Mahesh Rao, linux-kernel, devicetree
On 11/6/25 17:35, Khairul Anuar Romli wrote:
> In Agilex5, the TBU (Translation Buffer Unit) can now operate in non-secure
> mode, enabling Linux to utilize it through the IOMMU framework. This allows
> improved memory management capabilities in non-secure environments. With
> Agilex5 lifting this restriction, we are now extending the device tree
> bindings to support IOMMU for the Agilex5 SVC.
>
> Signed-off-by: Khairul Anuar Romli <khairul.anuar.romli@altera.com>
> ---
> Changes in v6:
> - Reinstate AllOf to avoid re-indentation on future addition to
> the logical condition.
> Changes in v6:
> - Use contains enum instead of const
This should be v5. Krzysztof gave you his Reviewed-by: in v5, you should
include his Reviewed-by: in this version.
Dinh
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2025-11-07 11:45 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-11-06 23:35 [PATCH v6 0/2] Enable Service layer driver for Agilex5 Khairul Anuar Romli
2025-11-06 23:35 ` [PATCH v6 1/2] dt-bindings: firmware: svc: Add IOMMU support " Khairul Anuar Romli
2025-11-07 7:35 ` Krzysztof Kozlowski
2025-11-07 7:49 ` Romli, Khairul Anuar
2025-11-07 11:44 ` Dinh Nguyen
2025-11-06 23:35 ` [PATCH v6 2/2] arm64: dts: intel: Add Agilex5 SVC node with memory region Khairul Anuar Romli
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).