From: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
To: Charan Teja Kalla <charan.kalla@oss.qualcomm.com>,
Bibek Kumar Patro <bibek.patro@oss.qualcomm.com>,
Enric Balletbo i Serra <eballetb@redhat.com>
Cc: robdclark@gmail.com, will@kernel.org, robin.murphy@arm.com,
joro@8bytes.org, jgg@ziepe.ca, jsnitsel@redhat.com,
robh@kernel.org, krzysztof.kozlowski@linaro.org,
quic_c_gdjako@quicinc.com, dmitry.baryshkov@linaro.org,
iommu@lists.linux.dev, linux-arm-msm@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org, Maxime Ripard <mripard@kernel.org>,
Eric Chanudet <echanude@redhat.com>
Subject: Re: [PATCH v18 0/5] iommu/arm-smmu: introduction of ACTLR implementation for Qualcomm SoCs
Date: Thu, 18 Dec 2025 13:06:43 +0100 [thread overview]
Message-ID: <ba257b17-b026-4a12-aa3e-dab66a7aeaba@oss.qualcomm.com> (raw)
In-Reply-To: <1db3d7f5-0cdf-449c-bbc3-dc40c89ab27f@oss.qualcomm.com>
On 11/13/25 2:55 PM, Charan Teja Kalla wrote:
>
>
> On 11/12/2025 7:04 PM, Konrad Dybcio wrote:
>>> Hi Eric,
>>>
>>> If a device has multiple SIDs, all serving the same functionality and grouped under the same "iommus" field, for example:
>>>
>>> iommus = <&apps_smmu, 0x2141, 0x0>,
>>> <&apps_smmu, 0x25c1, 0x0>,
>>> <&apps_smmu, 0x2161, 0x0>;
>>>
>>> In this case, all the SIDs will be associated with the same context bank. Even if the three SIDs have different ACTLR settings, since SMMU_CB_ACTLR is per CB setting, all SIDs attached to that bank will share the same ACTLR configuration. This is why we designed it to be "per device / per compatible".
>> Does that suggest the settings may be slightly suboptimal?
I don't understand your question
> Or it is limitation to use the ACTLR?
>
>> There's some work being done to allow more granular association of
>> the passed SIDs:
>>
>> https://lore.kernel.org/linux-arm-msm/20250928171718.436440-1-
>> charan.kalla@oss.qualcomm.com/
> Sorry, I am unable to link this limitation for actlr setting with the
> work. Can you elaborate please?
Because your email client is misconfigured and it broke the line.. If
it's thunderbird, pretty sure we have a "change these configs" type
section on go/upstream, please take a look
> IIUC, unless the SIDs are totally separated per actlr settings and
> attached to CB(which are limited), this can't be achieved...but may be a
> question here to check is it really a __valid__ to associate a different
> actlr settings SID to use the same CB?
The last question you asked is certainly a valid one
But I was wondering if iommu-map could be useful to resolve this, where
we choose an abstract set of function IDs and then handle the IOMMU
configuration manually, based on the func_id-delimited sets:
iommu-map = <FUNC_ID0 &iommu_phandle CELL0 ... CELLN-1>,
<FUNC_ID0 &iommu_phandle CELL0 ... CELLN-1>,
<FUNC_ID1 &iommu_phandle CELL0 ... CELLN-1>,
<FUNC_ID2 &iommu_phandle CELL0 ... CELLN-1>;
But perhaps that's more useful from the driver-that-handles-the-device
perspective
Konrad
prev parent reply other threads:[~2025-12-18 12:06 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-12-12 15:13 [PATCH v18 0/5] iommu/arm-smmu: introduction of ACTLR implementation for Qualcomm SoCs Bibek Kumar Patro
2024-12-12 15:13 ` [PATCH v18 1/5] iommu/arm-smmu: re-enable context caching in smmu reset operation Bibek Kumar Patro
2024-12-12 15:13 ` [PATCH v18 2/5] iommu/arm-smmu: refactor qcom_smmu structure to include single pointer Bibek Kumar Patro
2024-12-12 15:14 ` [PATCH v18 3/5] iommu/arm-smmu: add support for PRR bit setup Bibek Kumar Patro
2024-12-12 15:14 ` [PATCH v18 4/5] iommu/arm-smmu: introduction of ACTLR for custom prefetcher settings Bibek Kumar Patro
2024-12-12 15:14 ` [PATCH v18 5/5] iommu/arm-smmu: add ACTLR data and support for qcom_smmu_500 Bibek Kumar Patro
2024-12-30 13:15 ` [PATCH v18 0/5] iommu/arm-smmu: introduction of ACTLR implementation for Qualcomm SoCs Bibek Kumar Patro
2025-01-03 15:37 ` Will Deacon
2025-01-03 18:16 ` Rob Clark
2025-01-07 9:39 ` Will Deacon
2025-01-07 16:42 ` Will Deacon
2025-03-11 17:55 ` Will Deacon
2025-03-11 20:03 ` Rob Clark
2025-03-12 13:08 ` Will Deacon
2025-03-12 15:37 ` Rob Clark
2025-11-07 9:28 ` Enric Balletbo i Serra
2025-11-12 8:45 ` Bibek Kumar Patro
2025-11-12 13:34 ` Konrad Dybcio
2025-11-13 13:55 ` Charan Teja Kalla
2025-12-18 12:06 ` Konrad Dybcio [this message]
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=ba257b17-b026-4a12-aa3e-dab66a7aeaba@oss.qualcomm.com \
--to=konrad.dybcio@oss.qualcomm.com \
--cc=bibek.patro@oss.qualcomm.com \
--cc=charan.kalla@oss.qualcomm.com \
--cc=dmitry.baryshkov@linaro.org \
--cc=eballetb@redhat.com \
--cc=echanude@redhat.com \
--cc=iommu@lists.linux.dev \
--cc=jgg@ziepe.ca \
--cc=joro@8bytes.org \
--cc=jsnitsel@redhat.com \
--cc=krzysztof.kozlowski@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mripard@kernel.org \
--cc=quic_c_gdjako@quicinc.com \
--cc=robdclark@gmail.com \
--cc=robh@kernel.org \
--cc=robin.murphy@arm.com \
--cc=will@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