Currently, ipq807x only covers Qualcomm IPQ807x SoC-s. However, Qualcomm also has IPQ60xx and IPQ50xx SoC-s under the AX WiSoC-s and they share a lot of stuff with IPQ807x, especially IPQ60xx so to avoid duplicating kernel patches and everything lets make a common target with per SoC subtargets. Start doing that by renaming ipq807x to qualcommax so that dependencies on ipq807x target can be updated. Signed-off-by: Robert Marko <robimarko@gmail.com>
		
			
				
	
	
		
			43 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
From 82ceb86227b1fc15c76d5fc691b2bf425f1a63b3 Mon Sep 17 00:00:00 2001
 | 
						|
From: Robert Marko <robimarko@gmail.com>
 | 
						|
Date: Mon, 7 Nov 2022 10:29:30 +0100
 | 
						|
Subject: [PATCH] arm64: dts: qcom: hk01: use GPIO flags for tlmm
 | 
						|
 | 
						|
Use respective GPIO_ACTIVE_LOW/HIGH flags for tlmm GPIOs instead of
 | 
						|
harcoding the cell value.
 | 
						|
 | 
						|
Signed-off-by: Robert Marko <robimarko@gmail.com>
 | 
						|
Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
 | 
						|
Reviewed-by: Konrad Dybcio <konrad.dybcio@linaro.org>
 | 
						|
Signed-off-by: Bjorn Andersson <andersson@kernel.org>
 | 
						|
Link: https://lore.kernel.org/r/20221107092930.33325-3-robimarko@gmail.com
 | 
						|
---
 | 
						|
 arch/arm64/boot/dts/qcom/ipq8074-hk01.dts | 5 +++--
 | 
						|
 1 file changed, 3 insertions(+), 2 deletions(-)
 | 
						|
 | 
						|
--- a/arch/arm64/boot/dts/qcom/ipq8074-hk01.dts
 | 
						|
+++ b/arch/arm64/boot/dts/qcom/ipq8074-hk01.dts
 | 
						|
@@ -4,6 +4,7 @@
 | 
						|
  */
 | 
						|
 #include "ipq8074.dtsi"
 | 
						|
 #include "pmp8074.dtsi"
 | 
						|
+#include <dt-bindings/gpio/gpio.h>
 | 
						|
 
 | 
						|
 / {
 | 
						|
 	model = "Qualcomm Technologies, Inc. IPQ8074-HK01";
 | 
						|
@@ -52,12 +53,12 @@
 | 
						|
 
 | 
						|
 &pcie0 {
 | 
						|
 	status = "okay";
 | 
						|
-	perst-gpios = <&tlmm 61 0x1>;
 | 
						|
+	perst-gpios = <&tlmm 61 GPIO_ACTIVE_LOW>;
 | 
						|
 };
 | 
						|
 
 | 
						|
 &pcie1 {
 | 
						|
 	status = "okay";
 | 
						|
-	perst-gpios = <&tlmm 58 0x1>;
 | 
						|
+	perst-gpios = <&tlmm 58 GPIO_ACTIVE_LOW>;
 | 
						|
 };
 | 
						|
 
 | 
						|
 &pcie_qmp0 {
 |