Linux ARM-MSM sub-architecture
 help / color / mirror / Atom feed
* [PATCH 0/2] arch: arm64: dts: qcom: specify ZAP shaders if GPU is enabled
@ 2025-12-13  9:27 Dmitry Baryshkov
  2025-12-13  9:28 ` [PATCH 1/2] arm64: dts: qcom: sm8150-hdk,mtp: specify ZAP firmware name Dmitry Baryshkov
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Dmitry Baryshkov @ 2025-12-13  9:27 UTC (permalink / raw)
  To: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley, Jonathan Marek
  Cc: linux-arm-msm, devicetree, linux-kernel

Fix several cases when the board file enables GPU, but doesn't specify
location of the ZAP firmware.

Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
---
Dmitry Baryshkov (2):
      arm64: dts: qcom: sm8150-hdk,mtp: specify ZAP firmware name
      arm64: dts: qcom: sm8250-hdk: specify ZAP firmware name

 arch/arm64/boot/dts/qcom/sm8150-hdk.dts | 4 ++++
 arch/arm64/boot/dts/qcom/sm8150-mtp.dts | 4 ++++
 arch/arm64/boot/dts/qcom/sm8250-hdk.dts | 4 ++++
 3 files changed, 12 insertions(+)
---
base-commit: 008d3547aae5bc86fac3eda317489169c3fda112
change-id: 20251213-zap-names-79fcb7f6443f

Best regards,
-- 
With best wishes
Dmitry


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH 1/2] arm64: dts: qcom: sm8150-hdk,mtp: specify ZAP firmware name
  2025-12-13  9:27 [PATCH 0/2] arch: arm64: dts: qcom: specify ZAP shaders if GPU is enabled Dmitry Baryshkov
@ 2025-12-13  9:28 ` Dmitry Baryshkov
  2025-12-16 12:05   ` Konrad Dybcio
  2025-12-13  9:28 ` [PATCH 2/2] arm64: dts: qcom: sm8250-hdk: " Dmitry Baryshkov
  2026-01-05 14:07 ` [PATCH 0/2] arch: arm64: dts: qcom: specify ZAP shaders if GPU is enabled Bjorn Andersson
  2 siblings, 1 reply; 6+ messages in thread
From: Dmitry Baryshkov @ 2025-12-13  9:28 UTC (permalink / raw)
  To: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley, Jonathan Marek
  Cc: linux-arm-msm, devicetree, linux-kernel

The DT file has GPU node enabled, but doesn't specify the file name of
the ZAP firmware, which means using a default file name. Specify the
name to the ZAP shader firmware, pointing to the file in the
linux-firmware repo.

Fixes: f30ac26def18 ("arm64: dts: qcom: add sm8150 GPU nodes")
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
---
 arch/arm64/boot/dts/qcom/sm8150-hdk.dts | 4 ++++
 arch/arm64/boot/dts/qcom/sm8150-mtp.dts | 4 ++++
 2 files changed, 8 insertions(+)

diff --git a/arch/arm64/boot/dts/qcom/sm8150-hdk.dts b/arch/arm64/boot/dts/qcom/sm8150-hdk.dts
index 0339a572f34d..1eea9c5c6684 100644
--- a/arch/arm64/boot/dts/qcom/sm8150-hdk.dts
+++ b/arch/arm64/boot/dts/qcom/sm8150-hdk.dts
@@ -387,6 +387,10 @@ &gpu {
 	status = "okay";
 };
 
+&gpu_zap_shader {
+	firmware-name = "qcom/sm8150/a640_zap.mbn";
+};
+
 &i2c4 {
 	clock-frequency = <100000>;
 
diff --git a/arch/arm64/boot/dts/qcom/sm8150-mtp.dts b/arch/arm64/boot/dts/qcom/sm8150-mtp.dts
index 12e8e1ada6d8..0f2d511624a8 100644
--- a/arch/arm64/boot/dts/qcom/sm8150-mtp.dts
+++ b/arch/arm64/boot/dts/qcom/sm8150-mtp.dts
@@ -358,6 +358,10 @@ &gpu {
 	status = "okay";
 };
 
+&gpu_zap_shader {
+	firmware-name = "qcom/sm8150/a640_zap.mbn";
+};
+
 &pon {
 	mode-bootloader = <0x2>;
 	mode-recovery = <0x1>;

-- 
2.47.3


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH 2/2] arm64: dts: qcom: sm8250-hdk: specify ZAP firmware name
  2025-12-13  9:27 [PATCH 0/2] arch: arm64: dts: qcom: specify ZAP shaders if GPU is enabled Dmitry Baryshkov
  2025-12-13  9:28 ` [PATCH 1/2] arm64: dts: qcom: sm8150-hdk,mtp: specify ZAP firmware name Dmitry Baryshkov
@ 2025-12-13  9:28 ` Dmitry Baryshkov
  2025-12-16 12:05   ` Konrad Dybcio
  2026-01-05 14:07 ` [PATCH 0/2] arch: arm64: dts: qcom: specify ZAP shaders if GPU is enabled Bjorn Andersson
  2 siblings, 1 reply; 6+ messages in thread
From: Dmitry Baryshkov @ 2025-12-13  9:28 UTC (permalink / raw)
  To: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley, Jonathan Marek
  Cc: linux-arm-msm, devicetree, linux-kernel

The DT file has GPU node enabled, but doesn't specify the file name of
the ZAP firmware, which means using a default file name. Specify the
name to the ZAP shader firmware, pointing to the file in the
linux-firmware repo.

Fixes: 04a3605b184e ("arm64: dts: qcom: add sm8250 GPU nodes")
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
---
 arch/arm64/boot/dts/qcom/sm8250-hdk.dts | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/arch/arm64/boot/dts/qcom/sm8250-hdk.dts b/arch/arm64/boot/dts/qcom/sm8250-hdk.dts
index f5c193c6c5f9..3ea9d2b1a7d5 100644
--- a/arch/arm64/boot/dts/qcom/sm8250-hdk.dts
+++ b/arch/arm64/boot/dts/qcom/sm8250-hdk.dts
@@ -373,6 +373,10 @@ &gpu {
 	status = "okay";
 };
 
+&gpu_zap_shader {
+	firmware-name = "qcom/sm8250/a650_zap.mbn";
+};
+
 &pon {
 	mode-bootloader = <0x2>;
 	mode-recovery = <0x1>;

-- 
2.47.3


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH 1/2] arm64: dts: qcom: sm8150-hdk,mtp: specify ZAP firmware name
  2025-12-13  9:28 ` [PATCH 1/2] arm64: dts: qcom: sm8150-hdk,mtp: specify ZAP firmware name Dmitry Baryshkov
@ 2025-12-16 12:05   ` Konrad Dybcio
  0 siblings, 0 replies; 6+ messages in thread
From: Konrad Dybcio @ 2025-12-16 12:05 UTC (permalink / raw)
  To: Dmitry Baryshkov, Bjorn Andersson, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley, Jonathan Marek
  Cc: linux-arm-msm, devicetree, linux-kernel

On 12/13/25 10:28 AM, Dmitry Baryshkov wrote:
> The DT file has GPU node enabled, but doesn't specify the file name of
> the ZAP firmware, which means using a default file name. Specify the
> name to the ZAP shader firmware, pointing to the file in the
> linux-firmware repo.
> 
> Fixes: f30ac26def18 ("arm64: dts: qcom: add sm8150 GPU nodes")
> Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
> ---

Reviewed-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>

Konrad

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH 2/2] arm64: dts: qcom: sm8250-hdk: specify ZAP firmware name
  2025-12-13  9:28 ` [PATCH 2/2] arm64: dts: qcom: sm8250-hdk: " Dmitry Baryshkov
@ 2025-12-16 12:05   ` Konrad Dybcio
  0 siblings, 0 replies; 6+ messages in thread
From: Konrad Dybcio @ 2025-12-16 12:05 UTC (permalink / raw)
  To: Dmitry Baryshkov, Bjorn Andersson, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley, Jonathan Marek
  Cc: linux-arm-msm, devicetree, linux-kernel

On 12/13/25 10:28 AM, Dmitry Baryshkov wrote:
> The DT file has GPU node enabled, but doesn't specify the file name of
> the ZAP firmware, which means using a default file name. Specify the
> name to the ZAP shader firmware, pointing to the file in the
> linux-firmware repo.
> 
> Fixes: 04a3605b184e ("arm64: dts: qcom: add sm8250 GPU nodes")
> Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
> ---

Reviewed-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>

Konrad

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH 0/2] arch: arm64: dts: qcom: specify ZAP shaders if GPU is enabled
  2025-12-13  9:27 [PATCH 0/2] arch: arm64: dts: qcom: specify ZAP shaders if GPU is enabled Dmitry Baryshkov
  2025-12-13  9:28 ` [PATCH 1/2] arm64: dts: qcom: sm8150-hdk,mtp: specify ZAP firmware name Dmitry Baryshkov
  2025-12-13  9:28 ` [PATCH 2/2] arm64: dts: qcom: sm8250-hdk: " Dmitry Baryshkov
@ 2026-01-05 14:07 ` Bjorn Andersson
  2 siblings, 0 replies; 6+ messages in thread
From: Bjorn Andersson @ 2026-01-05 14:07 UTC (permalink / raw)
  To: Konrad Dybcio, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
	Jonathan Marek, Dmitry Baryshkov
  Cc: linux-arm-msm, devicetree, linux-kernel


On Sat, 13 Dec 2025 11:27:59 +0200, Dmitry Baryshkov wrote:
> Fix several cases when the board file enables GPU, but doesn't specify
> location of the ZAP firmware.
> 
> 

Applied, thanks!

[1/2] arm64: dts: qcom: sm8150-hdk,mtp: specify ZAP firmware name
      commit: d43019ef200d567454a8f68e60a5b2df01d8c706
[2/2] arm64: dts: qcom: sm8250-hdk: specify ZAP firmware name
      commit: 95c121244a5d46435559bc74dbc7b5519394db08

Best regards,
-- 
Bjorn Andersson <andersson@kernel.org>

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2026-01-05 14:08 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-12-13  9:27 [PATCH 0/2] arch: arm64: dts: qcom: specify ZAP shaders if GPU is enabled Dmitry Baryshkov
2025-12-13  9:28 ` [PATCH 1/2] arm64: dts: qcom: sm8150-hdk,mtp: specify ZAP firmware name Dmitry Baryshkov
2025-12-16 12:05   ` Konrad Dybcio
2025-12-13  9:28 ` [PATCH 2/2] arm64: dts: qcom: sm8250-hdk: " Dmitry Baryshkov
2025-12-16 12:05   ` Konrad Dybcio
2026-01-05 14:07 ` [PATCH 0/2] arch: arm64: dts: qcom: specify ZAP shaders if GPU is enabled Bjorn Andersson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox