From: Dinh Nguyen <dinguyen@kernel.org>
To: Adrian Ng Ho Yin <adrian.ho.yin.ng@altera.com>,
robh@kernel.org, krzk+dt@kernel.org, conor+dt@kernel.org,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v3 0/4] Add Agilex5 support in SVC driver and FPGA configuration and partial reconfiguration support for Agilex5
Date: Fri, 11 Sep 2026 08:54:35 -0500 [thread overview]
Message-ID: <399d0a7d-857c-49bf-8beb-76ce5530184b@kernel.org> (raw)
In-Reply-To: <5644e6cd-c8ab-4f3f-aa7a-11867d00446c@kernel.org>
On 9/9/26 11:40, Dinh Nguyen wrote:
>
>
> On 9/7/26 03:20, Adrian Ng Ho Yin wrote:
>> This series adds support for Agilex5 in the SVC driver and enables FPGA
>> configuration and partial reconfiguration on Altera Agilex5 SoC.
>>
>> On Agilex5 the DDR base address starts at 0x8000_0000, which is
>> outside the addressable range of the SDM. The SMMU is used to remap
>> DDR-allocated buffers to an IOVA within the SDM-accessible 0-512MB
>> window. Agilex5 REV B introduced a hardware SDM address remapper,
>> but it must be bypassed so no additional offset is applied to the
>> IOVA, keeping the implementation consistent across all Agilex5
>> revisions.
>>
>> Patch 1 adds the fpga-mgr child node and fpga-region to the Agilex5 DTSI.
>> The SMMU is already enabled upstream.
>>
>> Patch 2 reports unmatched frees in stratix10_svc_free_memory() with
>> dev_warn() and cleans up related coding style in svc_pa_to_va(). The
>> list-head corruption from list_del(&svc_data_mem) was already fixed by
>> commit 9119ceb76e98 ("firmware: stratix10-svc: fix memory leaks and list
>> corruption bugs").
>>
>> Patch 3 adds all data-structure fields, macros, includes, helper
>> function,
>> and allocation/free paths required for the DMA coherent mode. This covers
>> both the foundational types (dma_addr, use_dma_mem, dma_addr_offset,
>> SVC_SDM_DMA_ADDR_BITS/OFFSET) and the functional DMA allocation/free
>> code,
>> keeping the structural and functional changes together so each
>> intermediate
>> commit is bisect-safe.
>>
>> Patch 4 adds INTEL_SIP_SMC_SDM_REMAPPER_CONFIG and integrates the Agilex5
>> path into probe: enforces SMMU presence for intel,agilex5-svc, issues the
>> remapper-bypass SMC, selects the DMA path via
>> stratix10_svc_pdata.use_dma_mem,
>> initialises the controller fields, registers a devm cleanup action for
>> leaked buffers, and guards the error path against a NULL genpool.
>>
>> ---
>> changelog:
>> v2 -> v3:
>> - Squash former patch 2 (SMC remapper defines) into the probe enablement
>> patch so the defines land with their first usage.
>> - Rebase on socfpga_firmware_for_v7.4.
>> - Drop SMMU status="disabled" removal from the DTS patch (already
>> upstream
>> in 10cf797f3f8a).
>> - Drop the list_del(&svc_data_mem) fix already present in 9119ceb76e98;
>> keep the unmatched-free warning and style cleanup.
>> - Adapt of_device_id.data usage to extend stratix10_svc_pdata (shared
>> with
>> needs_psci_cpu_off) instead of casting BIT flags into .data.
>> - Keep kzalloc_obj()/kfree() lifetime for pmem on both gen_pool and DMA
>> paths after 9119ceb76e98.
>>
>> v1 -> v2:
>> - split original patch into smaller patches for easier review and
>> backporting.
>> - Fixed the Fixes: tag in patch 3 referencing 5a0793ac66ac
>> - Replaced of_device_is_compatible() with of_device_id.data +
>> of_device_get_match_data()
>> - Various commit message improvements
>> ---
>>
>> Adrian Ng Ho Yin (4):
>> arm64: dts: socfpga: agilex5: add FPGA manager and region nodes
>> firmware: stratix10-svc: warn on unmatched free in
>> stratix10_svc_free_memory
>> firmware: stratix10-svc: add DMA coherent memory allocation for
>> SMMU-enabled platforms
>> firmware: stratix10-svc: enable Agilex5 SMMU support in probe
>>
>> .../arm64/boot/dts/intel/socfpga_agilex5.dtsi | 11 +
>> drivers/firmware/stratix10-svc.c | 250 ++++++++++++++++
>> +---
>> include/linux/firmware/intel/stratix10-smc.h | 23 ++
>> 3 files changed, 239 insertions(+), 45 deletions(-)
>>
>
> All patches applied!
>
Sorry, but I had to un-applied the firmware patches.
Patch "firmware: stratix10-svc: add DMA coherent memory allocation for
SMMU-enabled platforms", when built by itself produces this warning:
drivers/firmware/stratix10-svc.c:1112:12: warning:
‘svc_setup_dma_memory’ defined but not used [-Wunused-function]
1112 | static int svc_setup_dma_memory(struct platform_device *pdev)
| ^~~~~~~~~~~~~~~~~~~~
Looks like you need to bring this function into "firmware:
stratix10-svc: enable Agilex5 SMMU support in probe".
Please fix up and resend just the firmware patches.
Thanks,
Dinh
next prev parent reply other threads:[~2026-09-11 13:54 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-07 8:20 Adrian Ng Ho Yin
2026-09-07 8:20 ` [PATCH v3 1/4] arm64: dts: socfpga: agilex5: add FPGA manager and region nodes Adrian Ng Ho Yin
2026-09-07 8:20 ` [PATCH v3 2/4] firmware: stratix10-svc: warn on unmatched free in stratix10_svc_free_memory Adrian Ng Ho Yin
2026-09-07 8:20 ` [PATCH v3 3/4] firmware: stratix10-svc: add DMA coherent memory allocation for SMMU-enabled platforms Adrian Ng Ho Yin
2026-09-07 8:20 ` [PATCH v3 4/4] firmware: stratix10-svc: enable Agilex5 SMMU support in probe Adrian Ng Ho Yin
2026-09-09 16:40 ` [PATCH v3 0/4] Add Agilex5 support in SVC driver and FPGA configuration and partial reconfiguration support for Agilex5 Dinh Nguyen
2026-09-11 13:54 ` Dinh Nguyen [this message]
2026-09-11 15:13 ` NG, ADRIAN HO YIN
2026-09-11 15:52 ` [PATCH v4 0/2] firmware: stratix10-svc: Agilex5 SMMU DMA coherent support adrian.ho.yin.ng
2026-09-11 15:52 ` [PATCH v4 1/2] firmware: stratix10-svc: warn on unmatched free in stratix10_svc_free_memory adrian.ho.yin.ng
2026-09-11 15:52 ` [PATCH v4 2/2] firmware: stratix10-svc: add Agilex5 SMMU DMA coherent support adrian.ho.yin.ng
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=399d0a7d-857c-49bf-8beb-76ce5530184b@kernel.org \
--to=dinguyen@kernel.org \
--cc=adrian.ho.yin.ng@altera.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=krzk+dt@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=robh@kernel.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®