From: Konrad Dybcio <konrad.dybcio@linaro.org>
To: Adam Skladowski <a39.skl@gmail.com>
Cc: phone-devel@vger.kernel.org,
~postmarketos/upstreaming@lists.sr.ht,
Rob Clark <robdclark@gmail.com>,
Abhinav Kumar <quic_abhinavk@quicinc.com>,
Dmitry Baryshkov <dmitry.baryshkov@linaro.org>,
Sean Paul <sean@poorly.run>,
Marijn Suijten <marijn.suijten@somainline.org>,
David Airlie <airlied@gmail.com>, Daniel Vetter <daniel@ffwll.ch>,
Rob Herring <robh+dt@kernel.org>,
Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
Conor Dooley <conor+dt@kernel.org>,
Andy Gross <agross@kernel.org>,
Bjorn Andersson <andersson@kernel.org>,
Krishna Manikandan <quic_mkrishn@quicinc.com>,
linux-arm-msm@vger.kernel.org, dri-devel@lists.freedesktop.org,
freedreno@lists.freedesktop.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH 6/8] arm64: dts: qcom: msm8976: Add Adreno GPU
Date: Fri, 9 Feb 2024 22:32:38 +0100 [thread overview]
Message-ID: <5e71d9d2-0115-4359-9502-b1cb462c10fd@linaro.org> (raw)
In-Reply-To: <20240121194221.13513-7-a39.skl@gmail.com>
On 21.01.2024 20:41, Adam Skladowski wrote:
> Add Adreno GPU node.
>
> Signed-off-by: Adam Skladowski <a39.skl@gmail.com>
> ---
> arch/arm64/boot/dts/qcom/msm8976.dtsi | 66 +++++++++++++++++++++++++++
> 1 file changed, 66 insertions(+)
>
> diff --git a/arch/arm64/boot/dts/qcom/msm8976.dtsi b/arch/arm64/boot/dts/qcom/msm8976.dtsi
> index 2d71ce34f00e..765c90ac14cb 100644
> --- a/arch/arm64/boot/dts/qcom/msm8976.dtsi
> +++ b/arch/arm64/boot/dts/qcom/msm8976.dtsi
> @@ -1068,6 +1068,72 @@ mdss_dsi1_phy: phy@1a96a00 {
> };
> };
>
> + adreno_gpu: gpu@1c00000 {
> + compatible = "qcom,adreno-510.0", "qcom,adreno";
> +
> + reg = <0x01c00000 0x40000>;
> + reg-names = "kgsl_3d0_reg_memory";
> +
> + interrupts = <GIC_SPI 33 IRQ_TYPE_LEVEL_HIGH>;
> + interrupt-names = "kgsl_3d0_irq";
> +
> + clock-names = "core",
> + "iface",
> + "mem",
> + "mem_iface",
> + "rbbmtimer",
> + "alwayson";
> +
> + clocks = <&gcc GCC_GFX3D_OXILI_CLK>,
> + <&gcc GCC_GFX3D_OXILI_AHB_CLK>,
> + <&gcc GCC_GFX3D_OXILI_GMEM_CLK>,
> + <&gcc GCC_GFX3D_BIMC_CLK>,
> + <&gcc GCC_GFX3D_OXILI_TIMER_CLK>,
> + <&gcc GCC_GFX3D_OXILI_AON_CLK>;
The entries are misaligned
property
property-names
(and without a separating newline, please)
> +
> + power-domains = <&rpmpd MSM8976_VDDCX>;
> +
> + iommus = <&gpu_iommu 0>;
> +
> + status = "disabled";
> +
> + operating-points-v2 = <&gpu_opp_table>;
> +
> + gpu_opp_table: opp-table {
> + compatible ="operating-points-v2";
> +
> + opp-200000000 {
> + opp-hz = /bits/ 64 <200000000>;
A random downstream I took has:
19.2 MHz
266.6 MHz
300.0 MHz
432.0 MHz
480.0 MHz
550.0 MHz
600.0 MHz
> + opp-level = <RPM_SMD_LEVEL_LOW_SVS>;
you want required-opps here instead
Konrad
next prev parent reply other threads:[~2024-02-09 21:32 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-01-21 19:40 [PATCH 0/8] MSM8976 MDSS/GPU/WCNSS support Adam Skladowski
2024-01-21 19:40 ` [PATCH 1/8] arm64: dts: qcom: msm8976: Add IOMMU nodes Adam Skladowski
2024-02-06 19:08 ` Konrad Dybcio
2024-01-21 19:41 ` [PATCH 2/8] dt-bindings: dsi-controller-main: Document missing msm8976 compatible Adam Skladowski
2024-01-22 8:47 ` Krzysztof Kozlowski
2024-01-21 19:41 ` [PATCH 3/8] dt-bindings: msm: qcom,mdss: Include ommited fam-b compatible Adam Skladowski
2024-01-22 8:48 ` Krzysztof Kozlowski
2024-02-06 7:27 ` Dmitry Baryshkov
2024-02-06 7:38 ` Krzysztof Kozlowski
2024-01-21 19:41 ` [PATCH 4/8] arm64: dts: qcom: msm8976: Add MDSS nodes Adam Skladowski
2024-02-09 21:29 ` Konrad Dybcio
2024-01-21 19:41 ` [PATCH 5/8] dt-bindings: drm/msm/gpu: Document AON clock for A506/A510 Adam Skladowski
2024-01-22 8:51 ` Krzysztof Kozlowski
2024-01-21 19:41 ` [PATCH 6/8] arm64: dts: qcom: msm8976: Add Adreno GPU Adam Skladowski
2024-02-09 21:32 ` Konrad Dybcio [this message]
2024-01-21 19:41 ` [PATCH 7/8] arm64: dts: qcom: msm8976: Declare and wire SDC pins Adam Skladowski
2024-01-21 22:16 ` Marijn Suijten
2024-01-21 19:41 ` [PATCH 8/8] arm64: dts: qcom: msm8976: Add WCNSS node Adam Skladowski
2024-02-09 21:35 ` Konrad Dybcio
2024-02-19 12:30 ` [PATCH 0/8] MSM8976 MDSS/GPU/WCNSS support Dmitry Baryshkov
2024-05-28 3:32 ` (subset) " Bjorn Andersson
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=5e71d9d2-0115-4359-9502-b1cb462c10fd@linaro.org \
--to=konrad.dybcio@linaro.org \
--cc=a39.skl@gmail.com \
--cc=agross@kernel.org \
--cc=airlied@gmail.com \
--cc=andersson@kernel.org \
--cc=conor+dt@kernel.org \
--cc=daniel@ffwll.ch \
--cc=devicetree@vger.kernel.org \
--cc=dmitry.baryshkov@linaro.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=freedreno@lists.freedesktop.org \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=marijn.suijten@somainline.org \
--cc=phone-devel@vger.kernel.org \
--cc=quic_abhinavk@quicinc.com \
--cc=quic_mkrishn@quicinc.com \
--cc=robdclark@gmail.com \
--cc=robh+dt@kernel.org \
--cc=sean@poorly.run \
--cc=~postmarketos/upstreaming@lists.sr.ht \
/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®