From: Bibek Kumar Patro <bibek.patro@oss.qualcomm.com>
To: Bjorn Andersson <andersson@kernel.org>,
Charan Teja Kalla <charan.kalla@oss.qualcomm.com>
Cc: konrad.dybcio@oss.qualcomm.com, robin.clark@oss.qualcomm.com,
dmitry.baryshkov@oss.qualcomm.com, will@kernel.org,
robin.murphy@arm.com, joro@8bytes.org, iommu@lists.linux.dev,
linux-arm-msm@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH V4] iommu/arm-smmu: add actlr settings for mdss on Qualcomm platforms
Date: Tue, 9 Dec 2025 00:58:24 +0530 [thread overview]
Message-ID: <0bcd5a92-5213-4862-9a31-8ea539b1b72c@oss.qualcomm.com> (raw)
In-Reply-To: <gsjyj3arwoqcjln6nlmyhohlowyvkwqmxppdq5y7c3m4khoyq3@npzixjpibh5g>
On 12/6/2025 2:36 AM, Bjorn Andersson wrote:
> On Tue, Dec 02, 2025 at 06:24:47PM +0530, Charan Teja Kalla wrote:
>
> Based on the other changes to this file, the subject prefix should be
> "iommu/arm-smmu-qcom:"
>
Sure Bjorn, I will address this in v4 RESEND and collect all reviewed-by
tags.
Let me know if you feel this change needs a revision update to v5
instead of v4-RESEND.
Thanks & regards,
Bibek
> Regards,
> Bjorn
>
>> Add ACTLR settings for missing MDSS devices on Qualcomm platforms.
>>
>> These are QoS settings and are specific to per SoC thus different
>> settings, eg: some have shallow prefetch while others have no
>> prefetch.
>>
>> Aswell, this prefetch feature is not implemented for all the
>> platforms, capturing to those are implemented to the best of my
>> knowledge.
>>
>> Signed-off-by: Charan Teja Kalla <charan.kalla@oss.qualcomm.com>
>> ---
>> Changes from V3:
>> 1) Add actlr setting for missing sc8180x & sm6115.
>> 2) Improved commit message.
>> https://lore.kernel.org/all/20251124171030.323989-1-charan.kalla@oss.qualcomm.com/
>>
>> Changes from V2:
>> 1) Add actlr settings for all the mdss devices on Qualcomm platforms.
>> 2) Improved the commit message that explain why different ACTLR
>> settings
>> https://lore.kernel.org/lkml/20251118171822.3539062-1-charan.kalla@oss.qualcomm.com/#t
>>
>> Changes from V1:
>> 1) Added actlr setting only for MDSS and dropped for fastrpc. --
>> konrad
>> 2) ACTLR table is updated per alphanumeric order -- konrad
>> https://lore.kernel.org/all/20251105075307.1658329-1-charan.kalla@oss.qualcomm.com/
>>
>> drivers/iommu/arm/arm-smmu/arm-smmu-qcom.c | 26 ++++++++++++++++++++++
>> 1 file changed, 26 insertions(+)
>>
>> diff --git a/drivers/iommu/arm/arm-smmu/arm-smmu-qcom.c b/drivers/iommu/arm/arm-smmu/arm-smmu-qcom.c
>> index c21a401c71eb..149da53091de 100644
>> --- a/drivers/iommu/arm/arm-smmu/arm-smmu-qcom.c
>> +++ b/drivers/iommu/arm/arm-smmu/arm-smmu-qcom.c
>> @@ -41,12 +41,38 @@ static const struct of_device_id qcom_smmu_actlr_client_of_match[] = {
>> .data = (const void *) (PREFETCH_DEEP | CPRE | CMTLB) },
>> { .compatible = "qcom,fastrpc",
>> .data = (const void *) (PREFETCH_DEEP | CPRE | CMTLB) },
>> + { .compatible = "qcom,qcm2290-mdss",
>> + .data = (const void *) (PREFETCH_SHALLOW | CPRE | CMTLB) },
>> { .compatible = "qcom,sc7280-mdss",
>> .data = (const void *) (PREFETCH_SHALLOW | CPRE | CMTLB) },
>> { .compatible = "qcom,sc7280-venus",
>> .data = (const void *) (PREFETCH_SHALLOW | CPRE | CMTLB) },
>> + { .compatible = "qcom,sc8180x-mdss",
>> + .data = (const void *) (PREFETCH_SHALLOW | CPRE | CMTLB) },
>> + { .compatible = "qcom,sc8280xp-mdss",
>> + .data = (const void *) (PREFETCH_SHALLOW | CPRE | CMTLB) },
>> + { .compatible = "qcom,sm6115-mdss",
>> + .data = (const void *) (PREFETCH_SHALLOW | CPRE | CMTLB) },
>> + { .compatible = "qcom,sm6125-mdss",
>> + .data = (const void *) (PREFETCH_SHALLOW | CPRE | CMTLB) },
>> + { .compatible = "qcom,sm6350-mdss",
>> + .data = (const void *) (PREFETCH_SHALLOW | CPRE | CMTLB) },
>> + { .compatible = "qcom,sm8150-mdss",
>> + .data = (const void *) (PREFETCH_SHALLOW | CPRE | CMTLB) },
>> + { .compatible = "qcom,sm8250-mdss",
>> + .data = (const void *) (PREFETCH_SHALLOW | CPRE | CMTLB) },
>> + { .compatible = "qcom,sm8350-mdss",
>> + .data = (const void *) (PREFETCH_SHALLOW | CPRE | CMTLB) },
>> + { .compatible = "qcom,sm8450-mdss",
>> + .data = (const void *) (PREFETCH_DEFAULT | CMTLB) },
>> { .compatible = "qcom,sm8550-mdss",
>> .data = (const void *) (PREFETCH_DEFAULT | CMTLB) },
>> + { .compatible = "qcom,sm8650-mdss",
>> + .data = (const void *) (PREFETCH_DEFAULT | CMTLB) },
>> + { .compatible = "qcom,sm8750-mdss",
>> + .data = (const void *) (PREFETCH_DEFAULT | CMTLB) },
>> + { .compatible = "qcom,x1e80100-mdss",
>> + .data = (const void *) (PREFETCH_DEFAULT | CMTLB) },
>> { }
>> };
>>
>> --
>> 2.34.1
>>
>>
next prev parent reply other threads:[~2025-12-08 19:28 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-12-02 12:54 [PATCH V4] iommu/arm-smmu: add actlr settings for mdss on Qualcomm platforms Charan Teja Kalla
2025-12-05 13:38 ` Konrad Dybcio
2025-12-05 20:54 ` Dmitry Baryshkov
2025-12-05 21:06 ` Bjorn Andersson
2025-12-08 19:28 ` Bibek Kumar Patro [this message]
2025-12-08 22:58 ` Dmitry Baryshkov
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=0bcd5a92-5213-4862-9a31-8ea539b1b72c@oss.qualcomm.com \
--to=bibek.patro@oss.qualcomm.com \
--cc=andersson@kernel.org \
--cc=charan.kalla@oss.qualcomm.com \
--cc=dmitry.baryshkov@oss.qualcomm.com \
--cc=iommu@lists.linux.dev \
--cc=joro@8bytes.org \
--cc=konrad.dybcio@oss.qualcomm.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=robin.clark@oss.qualcomm.com \
--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