From: "Rob Herring (Arm)" <robh@kernel.org>
To: Akhil P Oommen <quic_akhilpo@quicinc.com>
Cc: Jie Zhang <quic_jiezh@quicinc.com>,
Simona Vetter <simona@ffwll.ch>,
devicetree@vger.kernel.org, Sean Paul <sean@poorly.run>,
Conor Dooley <conor+dt@kernel.org>,
Dmitry Baryshkov <dmitry.baryshkov@linaro.org>,
Maarten Lankhorst <maarten.lankhorst@linux.intel.com>,
Thomas Zimmermann <tzimmermann@suse.de>,
linux-kernel@vger.kernel.org,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
dri-devel@lists.freedesktop.org, Rob Clark <robdclark@gmail.com>,
freedreno@lists.freedesktop.org,
Konrad Dybcio <konradybcio@kernel.org>,
linux-arm-msm@vger.kernel.org,
Marijn Suijten <marijn.suijten@somainline.org>,
David Airlie <airlied@gmail.com>,
Bjorn Andersson <andersson@kernel.org>,
Abhinav Kumar <quic_abhinavk@quicinc.com>,
Maxime Ripard <mripard@kernel.org>
Subject: Re: [PATCH 0/5] EDITME: Support for Adreno 623 GPU
Date: Tue, 18 Feb 2025 18:42:14 -0600 [thread overview]
Message-ID: <173992515318.2064841.13048632010447768805.robh@kernel.org> (raw)
In-Reply-To: <20250213-a623-gpu-support-v1-0-993c65c39fd2@quicinc.com>
On Thu, 13 Feb 2025 21:40:05 +0530, Akhil P Oommen wrote:
> This series adds support for A623 GPU found in QCS8300 chipsets. This
> GPU IP is very similar to A621 GPU, except for the UBWC configuration
> and the GMU firmware.
>
> Both DT patches are for Bjorn and rest of the patches for Rob Clark to
> pick up.
>
> ---
> Jie Zhang (5):
> drm/msm/a6xx: Fix gpucc register block for A621
> drm/msm/a6xx: Add support for Adreno 623
> dt-bindings: display/msm/gmu: Add Adreno 623 GMU
> arm64: dts: qcom: qcs8300: Add gpu and gmu nodes
> arm64: dts: qcom: qcs8300-ride: Enable Adreno 623 GPU
>
> .../devicetree/bindings/display/msm/gmu.yaml | 1 +
> arch/arm64/boot/dts/qcom/qcs8300-ride.dts | 8 ++
> arch/arm64/boot/dts/qcom/qcs8300.dtsi | 93 ++++++++++++++++++++++
> drivers/gpu/drm/msm/adreno/a6xx_catalog.c | 29 +++++++
> drivers/gpu/drm/msm/adreno/a6xx_gpu.c | 8 ++
> drivers/gpu/drm/msm/adreno/a6xx_gpu_state.c | 13 ++-
> drivers/gpu/drm/msm/adreno/a6xx_gpu_state.h | 17 ++++
> drivers/gpu/drm/msm/adreno/adreno_gpu.h | 5 ++
> 8 files changed, 171 insertions(+), 3 deletions(-)
> ---
> base-commit: 6a25088d268ce4c2163142ead7fe1975bb687cb7
> change-id: 20250213-a623-gpu-support-f6698603fb85
> prerequisite-change-id: 20250131-b4-branch-gfx-smmu-b03261963064:v5
> prerequisite-patch-id: f8fd1a2020c940e595e58a8bd3c55d00d3d87271
> prerequisite-patch-id: 08a0540f75b0f95fd2018b38c9ed5c6f96433b4d
>
> Best regards,
> --
> Akhil P Oommen <quic_akhilpo@quicinc.com>
>
>
>
My bot found new DTB warnings on the .dts files added or changed in this
series.
Some warnings may be from an existing SoC .dtsi. Or perhaps the warnings
are fixed by another series. Ultimately, it is up to the platform
maintainer whether these warnings are acceptable or not. No need to reply
unless the platform maintainer has comments.
If you already ran DT checks and didn't see these error(s), then
make sure dt-schema is up to date:
pip3 install dtschema --upgrade
New warnings running 'make CHECK_DTBS=y for arch/arm64/boot/dts/qcom/' for 20250213-a623-gpu-support-v1-0-993c65c39fd2@quicinc.com:
arch/arm64/boot/dts/qcom/qcs8300-ride.dtb: iommu@3da0000: clock-names:0: 'gcc_gpu_memnoc_gfx_clk' was expected
from schema $id: http://devicetree.org/schemas/iommu/arm,smmu.yaml#
arch/arm64/boot/dts/qcom/qcs8300-ride.dtb: iommu@3da0000: clock-names:1: 'gcc_gpu_snoc_dvm_gfx_clk' was expected
from schema $id: http://devicetree.org/schemas/iommu/arm,smmu.yaml#
arch/arm64/boot/dts/qcom/qcs8300-ride.dtb: iommu@3da0000: clock-names:2: 'gpu_cc_ahb_clk' was expected
from schema $id: http://devicetree.org/schemas/iommu/arm,smmu.yaml#
arch/arm64/boot/dts/qcom/qcs8300-ride.dtb: iommu@3da0000: clock-names:3: 'gpu_cc_hlos1_vote_gpu_smmu_clk' was expected
from schema $id: http://devicetree.org/schemas/iommu/arm,smmu.yaml#
arch/arm64/boot/dts/qcom/qcs8300-ride.dtb: iommu@3da0000: clock-names:4: 'gpu_cc_cx_gmu_clk' was expected
from schema $id: http://devicetree.org/schemas/iommu/arm,smmu.yaml#
arch/arm64/boot/dts/qcom/qcs8300-ride.dtb: iommu@3da0000: clock-names:5: 'gpu_cc_hub_cx_int_clk' was expected
from schema $id: http://devicetree.org/schemas/iommu/arm,smmu.yaml#
prev parent reply other threads:[~2025-02-19 0:42 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-02-13 16:10 [PATCH 0/5] EDITME: Support for Adreno 623 GPU Akhil P Oommen
2025-02-13 16:10 ` [PATCH 1/5] drm/msm/a6xx: Fix gpucc register block for A621 Akhil P Oommen
2025-02-13 16:36 ` Konrad Dybcio
2025-02-13 17:19 ` Rob Clark
2025-02-13 17:22 ` Konrad Dybcio
2025-02-18 18:22 ` Rob Clark
2025-02-25 6:34 ` Akhil P Oommen
2025-02-13 16:10 ` [PATCH 2/5] drm/msm/a6xx: Add support for Adreno 623 Akhil P Oommen
2025-02-13 16:54 ` Dmitry Baryshkov
2025-02-15 11:49 ` Akhil P Oommen
2025-02-15 15:22 ` Dmitry Baryshkov
2025-02-13 17:21 ` Konrad Dybcio
2025-02-25 6:36 ` Akhil P Oommen
2025-02-13 16:10 ` [PATCH 3/5] dt-bindings: display/msm/gmu: Add Adreno 623 GMU Akhil P Oommen
2025-02-14 8:44 ` Krzysztof Kozlowski
2025-02-13 16:10 ` [PATCH 4/5] arm64: dts: qcom: qcs8300: Add gpu and gmu nodes Akhil P Oommen
2025-02-13 16:56 ` Dmitry Baryshkov
2025-02-13 17:16 ` Akhil P Oommen
2025-02-13 16:10 ` [PATCH 5/5] arm64: dts: qcom: qcs8300-ride: Enable Adreno 623 GPU Akhil P Oommen
2025-02-13 16:57 ` Dmitry Baryshkov
2025-02-13 16:42 ` [PATCH 0/5] EDITME: Support for " Dmitry Baryshkov
2025-02-13 16:56 ` Akhil P Oommen
2025-02-19 0:42 ` Rob Herring (Arm) [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=173992515318.2064841.13048632010447768805.robh@kernel.org \
--to=robh@kernel.org \
--cc=airlied@gmail.com \
--cc=andersson@kernel.org \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=dmitry.baryshkov@linaro.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=freedreno@lists.freedesktop.org \
--cc=konradybcio@kernel.org \
--cc=krzk+dt@kernel.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=maarten.lankhorst@linux.intel.com \
--cc=marijn.suijten@somainline.org \
--cc=mripard@kernel.org \
--cc=quic_abhinavk@quicinc.com \
--cc=quic_akhilpo@quicinc.com \
--cc=quic_jiezh@quicinc.com \
--cc=robdclark@gmail.com \
--cc=sean@poorly.run \
--cc=simona@ffwll.ch \
--cc=tzimmermann@suse.de \
/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