All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/8] arm64: dts: qcom: sda660-inforce: correct key node name
@ 2023-03-12 18:36 Krzysztof Kozlowski
  2023-03-12 18:36 ` [PATCH 2/8] arm64: dts: qcom: sc7280-herobrine-villager: correct trackpad supply Krzysztof Kozlowski
                   ` (9 more replies)
  0 siblings, 10 replies; 24+ messages in thread
From: Krzysztof Kozlowski @ 2023-03-12 18:36 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, Douglas Anderson, Stephen Boyd,
	Matthias Kaehlcke, Joseph S. Barrera III, Gustave Monce,
	Vinod Koul, Rajendra Nayak, linux-arm-msm, devicetree,
	linux-kernel
  Cc: Krzysztof Kozlowski

gpio-key bindings expect children to be named with generic prefix:

  sda660-inforce-ifc6560.dtb: gpio-keys: 'volup' does not match any of the regexes: ...

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 arch/arm64/boot/dts/qcom/sda660-inforce-ifc6560.dts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm64/boot/dts/qcom/sda660-inforce-ifc6560.dts b/arch/arm64/boot/dts/qcom/sda660-inforce-ifc6560.dts
index 7c81918eee66..7459525d9982 100644
--- a/arch/arm64/boot/dts/qcom/sda660-inforce-ifc6560.dts
+++ b/arch/arm64/boot/dts/qcom/sda660-inforce-ifc6560.dts
@@ -29,7 +29,7 @@ chosen {
 	gpio-keys {
 		compatible = "gpio-keys";
 
-		volup {
+		key-volup {
 			label = "Volume Up";
 			gpios = <&pm660l_gpios 7 GPIO_ACTIVE_LOW>;
 			linux,code = <KEY_VOLUMEUP>;
-- 
2.34.1


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

* [PATCH 2/8] arm64: dts: qcom: sc7280-herobrine-villager: correct trackpad supply
  2023-03-12 18:36 [PATCH 1/8] arm64: dts: qcom: sda660-inforce: correct key node name Krzysztof Kozlowski
@ 2023-03-12 18:36 ` Krzysztof Kozlowski
  2023-03-13  8:48   ` Konrad Dybcio
                     ` (2 more replies)
  2023-03-12 18:36 ` [PATCH 3/8] arm64: dts: qcom: sc7180-trogdor-lazor: " Krzysztof Kozlowski
                   ` (8 subsequent siblings)
  9 siblings, 3 replies; 24+ messages in thread
From: Krzysztof Kozlowski @ 2023-03-12 18:36 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, Douglas Anderson, Stephen Boyd,
	Matthias Kaehlcke, Joseph S. Barrera III, Gustave Monce,
	Vinod Koul, Rajendra Nayak, linux-arm-msm, devicetree,
	linux-kernel
  Cc: Krzysztof Kozlowski

The hid-over-i2c takes VDD, not VCC supply.  Fix copy-pasta from other
Herobrine boards which use elan,ekth3000 with valid VCC:

  sc7280-herobrine-villager-r1-lte.dtb: trackpad@2c: 'vcc-supply' does not match any of the regexes: 'pinctrl-[0-9]+'

Fixes: ee2a62116015 ("arm64: dts: qcom: sc7280: Add device tree for herobrine villager")
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 arch/arm64/boot/dts/qcom/sc7280-herobrine-villager.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm64/boot/dts/qcom/sc7280-herobrine-villager.dtsi b/arch/arm64/boot/dts/qcom/sc7280-herobrine-villager.dtsi
index 818d4046d2c7..38c8a3679fcb 100644
--- a/arch/arm64/boot/dts/qcom/sc7280-herobrine-villager.dtsi
+++ b/arch/arm64/boot/dts/qcom/sc7280-herobrine-villager.dtsi
@@ -33,7 +33,7 @@ trackpad: trackpad@2c {
 		interrupts = <7 IRQ_TYPE_EDGE_FALLING>;
 
 		hid-descr-addr = <0x20>;
-		vcc-supply = <&pp3300_z1>;
+		vdd-supply = <&pp3300_z1>;
 
 		wakeup-source;
 	};
-- 
2.34.1


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

* [PATCH 3/8] arm64: dts: qcom: sc7180-trogdor-lazor: correct trackpad supply
  2023-03-12 18:36 [PATCH 1/8] arm64: dts: qcom: sda660-inforce: correct key node name Krzysztof Kozlowski
  2023-03-12 18:36 ` [PATCH 2/8] arm64: dts: qcom: sc7280-herobrine-villager: correct trackpad supply Krzysztof Kozlowski
@ 2023-03-12 18:36 ` Krzysztof Kozlowski
  2023-03-13  8:49   ` Konrad Dybcio
                     ` (2 more replies)
  2023-03-12 18:36 ` [PATCH 4/8] arm64: dts: qcom: sc7180-trogdor-pazquel: " Krzysztof Kozlowski
                   ` (7 subsequent siblings)
  9 siblings, 3 replies; 24+ messages in thread
From: Krzysztof Kozlowski @ 2023-03-12 18:36 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, Douglas Anderson, Stephen Boyd,
	Matthias Kaehlcke, Joseph S. Barrera III, Gustave Monce,
	Vinod Koul, Rajendra Nayak, linux-arm-msm, devicetree,
	linux-kernel
  Cc: Krzysztof Kozlowski

The hid-over-i2c takes VDD, not VCC supply.  Fix copy-pasta from other
boards which use elan,ekth3000 with valid VCC:

  sc7180-trogdor-lazor-limozeen-nots-r4.dtb: trackpad@2c: 'vcc-supply' does not match any of the regexes: 'pinctrl-[0-9]+'

Fixes: 2c26adb8dbab ("arm64: dts: qcom: Add sc7180-lazor-limozeen skus")
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 .../boot/dts/qcom/sc7180-trogdor-lazor-limozeen-nots-r4.dts     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-nots-r4.dts b/arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-nots-r4.dts
index 850776c5323d..70d5a7aa8873 100644
--- a/arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-nots-r4.dts
+++ b/arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-nots-r4.dts
@@ -26,7 +26,7 @@ trackpad: trackpad@2c {
 		interrupt-parent = <&tlmm>;
 		interrupts = <58 IRQ_TYPE_EDGE_FALLING>;
 
-		vcc-supply = <&pp3300_fp_tp>;
+		vdd-supply = <&pp3300_fp_tp>;
 		hid-descr-addr = <0x20>;
 
 		wakeup-source;
-- 
2.34.1


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

* [PATCH 4/8] arm64: dts: qcom: sc7180-trogdor-pazquel: correct trackpad supply
  2023-03-12 18:36 [PATCH 1/8] arm64: dts: qcom: sda660-inforce: correct key node name Krzysztof Kozlowski
  2023-03-12 18:36 ` [PATCH 2/8] arm64: dts: qcom: sc7280-herobrine-villager: correct trackpad supply Krzysztof Kozlowski
  2023-03-12 18:36 ` [PATCH 3/8] arm64: dts: qcom: sc7180-trogdor-lazor: " Krzysztof Kozlowski
@ 2023-03-12 18:36 ` Krzysztof Kozlowski
  2023-03-13  8:49   ` Konrad Dybcio
                     ` (2 more replies)
  2023-03-12 18:36 ` [PATCH 5/8] arm64: dts: qcom: msm8998-oneplus-cheeseburger: revert "fix backlight pin function" Krzysztof Kozlowski
                   ` (6 subsequent siblings)
  9 siblings, 3 replies; 24+ messages in thread
From: Krzysztof Kozlowski @ 2023-03-12 18:36 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, Douglas Anderson, Stephen Boyd,
	Matthias Kaehlcke, Joseph S. Barrera III, Gustave Monce,
	Vinod Koul, Rajendra Nayak, linux-arm-msm, devicetree,
	linux-kernel
  Cc: Krzysztof Kozlowski

The hid-over-i2c takes VDD, not VCC supply.  Fix copy-pasta from other
boards which use elan,ekth3000 with valid VCC:

  sc7180-trogdor-pazquel360-lte.dtb: trackpad@15: 'vcc-supply' does not match any of the regexes: 'pinctrl-[0-9]+'

Fixes: fb69f6adaf88 ("arm64: dts: qcom: sc7180: Add pazquel dts files")
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 arch/arm64/boot/dts/qcom/sc7180-trogdor-pazquel.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm64/boot/dts/qcom/sc7180-trogdor-pazquel.dtsi b/arch/arm64/boot/dts/qcom/sc7180-trogdor-pazquel.dtsi
index d06cc4ea3375..8823edbb4d6e 100644
--- a/arch/arm64/boot/dts/qcom/sc7180-trogdor-pazquel.dtsi
+++ b/arch/arm64/boot/dts/qcom/sc7180-trogdor-pazquel.dtsi
@@ -39,7 +39,7 @@ trackpad: trackpad@15 {
 		interrupt-parent = <&tlmm>;
 		interrupts = <0 IRQ_TYPE_EDGE_FALLING>;
 
-		vcc-supply = <&pp3300_fp_tp>;
+		vdd-supply = <&pp3300_fp_tp>;
 		post-power-on-delay-ms = <100>;
 		hid-descr-addr = <0x0001>;
 
-- 
2.34.1


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

* [PATCH 5/8] arm64: dts: qcom: msm8998-oneplus-cheeseburger: revert "fix backlight pin function"
  2023-03-12 18:36 [PATCH 1/8] arm64: dts: qcom: sda660-inforce: correct key node name Krzysztof Kozlowski
                   ` (2 preceding siblings ...)
  2023-03-12 18:36 ` [PATCH 4/8] arm64: dts: qcom: sc7180-trogdor-pazquel: " Krzysztof Kozlowski
@ 2023-03-12 18:36 ` Krzysztof Kozlowski
  2023-03-13  8:50   ` Konrad Dybcio
  2023-03-12 18:36 ` [PATCH 6/8] arm64: dts: qcom: msm8994-kitakami: drop unit address from PMI8994 regulator Krzysztof Kozlowski
                   ` (5 subsequent siblings)
  9 siblings, 1 reply; 24+ messages in thread
From: Krzysztof Kozlowski @ 2023-03-12 18:36 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, Douglas Anderson, Stephen Boyd,
	Matthias Kaehlcke, Joseph S. Barrera III, Gustave Monce,
	Vinod Koul, Rajendra Nayak, linux-arm-msm, devicetree,
	linux-kernel
  Cc: Krzysztof Kozlowski

This reverts commit 46546f28825cf3a5ef6873b9cf947cd85c8a7258 because it
mistakenly took PMIC pinctrl/GPIO as TLMM.  The TLMM pinctrl uses "gpio"
function, but PMIC uses "normal", so original code was correct:

  msm8998-oneplus-cheeseburger.dtb: pmic@2: gpio@c000:button-backlight-state: 'oneOf' conditional failed, one must be fixed:
    'gpio' is not one of ['normal', 'paired', 'func1', 'func2', 'dtest1', 'dtest2', 'dtest3', 'dtest4', 'func3', 'func4']

Fixes: 46546f28825c ("arm64: dts: qcom: msm8998-oneplus-cheeseburger: fix backlight pin function")
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

---

Eh, embarrassing. I would say to myself - use dtbs_check on patches, but
I think that time there were too many errors coming from Qualcomm
pinctrl bindings.
---
 arch/arm64/boot/dts/qcom/msm8998-oneplus-cheeseburger.dts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm64/boot/dts/qcom/msm8998-oneplus-cheeseburger.dts b/arch/arm64/boot/dts/qcom/msm8998-oneplus-cheeseburger.dts
index d36b36af49d0..fac8b3510cd3 100644
--- a/arch/arm64/boot/dts/qcom/msm8998-oneplus-cheeseburger.dts
+++ b/arch/arm64/boot/dts/qcom/msm8998-oneplus-cheeseburger.dts
@@ -34,7 +34,7 @@ led-keypad-backlight {
 &pmi8998_gpios {
 	button_backlight_default: button-backlight-state {
 		pins = "gpio5";
-		function = "gpio";
+		function = "normal";
 		bias-pull-down;
 		qcom,drive-strength = <PMIC_GPIO_STRENGTH_NO>;
 	};
-- 
2.34.1


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

* [PATCH 6/8] arm64: dts: qcom: msm8994-kitakami: drop unit address from PMI8994 regulator
  2023-03-12 18:36 [PATCH 1/8] arm64: dts: qcom: sda660-inforce: correct key node name Krzysztof Kozlowski
                   ` (3 preceding siblings ...)
  2023-03-12 18:36 ` [PATCH 5/8] arm64: dts: qcom: msm8998-oneplus-cheeseburger: revert "fix backlight pin function" Krzysztof Kozlowski
@ 2023-03-12 18:36 ` Krzysztof Kozlowski
  2023-03-13  8:53   ` Konrad Dybcio
  2023-03-12 18:36 ` [PATCH 7/8] arm64: dts: qcom: msm8994-msft-lumia-octagon: " Krzysztof Kozlowski
                   ` (4 subsequent siblings)
  9 siblings, 1 reply; 24+ messages in thread
From: Krzysztof Kozlowski @ 2023-03-12 18:36 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, Douglas Anderson, Stephen Boyd,
	Matthias Kaehlcke, Joseph S. Barrera III, Gustave Monce,
	Vinod Koul, Rajendra Nayak, linux-arm-msm, devicetree,
	linux-kernel
  Cc: Krzysztof Kozlowski

The PMIC regulators are not supposed to have unit addresses.

Fixes: e9783584c9b7 ("arm64: dts: qcom: msm8994-kitakami: Add VDD_GFX regulator")
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 arch/arm64/boot/dts/qcom/msm8994-sony-xperia-kitakami.dtsi | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/arch/arm64/boot/dts/qcom/msm8994-sony-xperia-kitakami.dtsi b/arch/arm64/boot/dts/qcom/msm8994-sony-xperia-kitakami.dtsi
index 3ceb86b06209..26059f861250 100644
--- a/arch/arm64/boot/dts/qcom/msm8994-sony-xperia-kitakami.dtsi
+++ b/arch/arm64/boot/dts/qcom/msm8994-sony-xperia-kitakami.dtsi
@@ -173,8 +173,7 @@ &pmi8994_spmi_regulators {
 	 * power domain.. which still isn't enough and forces us to bind
 	 * OXILI_CX and OXILI_GX together!
 	 */
-	vdd_gfx: s2@1700 {
-		reg = <0x1700 0x100>;
+	vdd_gfx: s2 {
 		regulator-name = "VDD_GFX";
 		regulator-min-microvolt = <980000>;
 		regulator-max-microvolt = <980000>;
-- 
2.34.1


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

* [PATCH 7/8] arm64: dts: qcom: msm8994-msft-lumia-octagon: drop unit address from PMI8994 regulator
  2023-03-12 18:36 [PATCH 1/8] arm64: dts: qcom: sda660-inforce: correct key node name Krzysztof Kozlowski
                   ` (4 preceding siblings ...)
  2023-03-12 18:36 ` [PATCH 6/8] arm64: dts: qcom: msm8994-kitakami: drop unit address from PMI8994 regulator Krzysztof Kozlowski
@ 2023-03-12 18:36 ` Krzysztof Kozlowski
  2023-03-13  8:53   ` Konrad Dybcio
  2023-03-12 18:36 ` [PATCH 8/8] arm64: dts: qcom: apq8096-db820c: " Krzysztof Kozlowski
                   ` (3 subsequent siblings)
  9 siblings, 1 reply; 24+ messages in thread
From: Krzysztof Kozlowski @ 2023-03-12 18:36 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, Douglas Anderson, Stephen Boyd,
	Matthias Kaehlcke, Joseph S. Barrera III, Gustave Monce,
	Vinod Koul, Rajendra Nayak, linux-arm-msm, devicetree,
	linux-kernel
  Cc: Krzysztof Kozlowski

The PMIC regulators are not supposed to have unit addresses.

Fixes: 60b214effb80 ("arm64: dts: qcom: msm8994-octagon: Configure regulators")
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 arch/arm64/boot/dts/qcom/msm8994-msft-lumia-octagon.dtsi | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/arch/arm64/boot/dts/qcom/msm8994-msft-lumia-octagon.dtsi b/arch/arm64/boot/dts/qcom/msm8994-msft-lumia-octagon.dtsi
index 4520a7e86d5b..0c112b7b57ea 100644
--- a/arch/arm64/boot/dts/qcom/msm8994-msft-lumia-octagon.dtsi
+++ b/arch/arm64/boot/dts/qcom/msm8994-msft-lumia-octagon.dtsi
@@ -542,8 +542,7 @@ hd3ss460_en: en-high-state {
 };
 
 &pmi8994_spmi_regulators {
-	vdd_gfx: s2@1700 {
-		reg = <0x1700 0x100>;
+	vdd_gfx: s2 {
 		regulator-min-microvolt = <980000>;
 		regulator-max-microvolt = <980000>;
 	};
-- 
2.34.1


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

* [PATCH 8/8] arm64: dts: qcom: apq8096-db820c: drop unit address from PMI8994 regulator
  2023-03-12 18:36 [PATCH 1/8] arm64: dts: qcom: sda660-inforce: correct key node name Krzysztof Kozlowski
                   ` (5 preceding siblings ...)
  2023-03-12 18:36 ` [PATCH 7/8] arm64: dts: qcom: msm8994-msft-lumia-octagon: " Krzysztof Kozlowski
@ 2023-03-12 18:36 ` Krzysztof Kozlowski
  2023-03-13  8:54   ` Konrad Dybcio
  2023-03-12 18:38 ` [PATCH 1/8] arm64: dts: qcom: sda660-inforce: correct key node name Krzysztof Kozlowski
                   ` (2 subsequent siblings)
  9 siblings, 1 reply; 24+ messages in thread
From: Krzysztof Kozlowski @ 2023-03-12 18:36 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, Douglas Anderson, Stephen Boyd,
	Matthias Kaehlcke, Joseph S. Barrera III, Gustave Monce,
	Vinod Koul, Rajendra Nayak, linux-arm-msm, devicetree,
	linux-kernel
  Cc: Krzysztof Kozlowski

The PMIC regulators are not supposed to have unit addresses.

Fixes: 2317b87a2a6f ("arm64: dts: qcom: db820c: Add vdd_gfx and tie it into mmcc")
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 arch/arm64/boot/dts/qcom/apq8096-db820c.dts | 3 +--
 arch/arm64/boot/dts/qcom/pmi8994.dtsi       | 2 --
 2 files changed, 1 insertion(+), 4 deletions(-)

diff --git a/arch/arm64/boot/dts/qcom/apq8096-db820c.dts b/arch/arm64/boot/dts/qcom/apq8096-db820c.dts
index 5ceaab5d4039..4476e2e22816 100644
--- a/arch/arm64/boot/dts/qcom/apq8096-db820c.dts
+++ b/arch/arm64/boot/dts/qcom/apq8096-db820c.dts
@@ -704,8 +704,7 @@ pmi8994_mpp2_userled4: mpp2-userled4-state {
 &pmi8994_spmi_regulators {
 	vdd_s2-supply = <&vph_pwr>;
 
-	vdd_gfx: s2@1700 {
-		reg = <0x1700 0x100>;
+	vdd_gfx: s2 {
 		regulator-name = "VDD_GFX";
 		regulator-min-microvolt = <980000>;
 		regulator-max-microvolt = <980000>;
diff --git a/arch/arm64/boot/dts/qcom/pmi8994.dtsi b/arch/arm64/boot/dts/qcom/pmi8994.dtsi
index a0af91698d49..0192968f4d9b 100644
--- a/arch/arm64/boot/dts/qcom/pmi8994.dtsi
+++ b/arch/arm64/boot/dts/qcom/pmi8994.dtsi
@@ -49,8 +49,6 @@ pmi8994_lpg: pwm {
 
 		pmi8994_spmi_regulators: regulators {
 			compatible = "qcom,pmi8994-regulators";
-			#address-cells = <1>;
-			#size-cells = <1>;
 		};
 
 		pmi8994_wled: wled@d800 {
-- 
2.34.1


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

* Re: [PATCH 1/8] arm64: dts: qcom: sda660-inforce: correct key node name
  2023-03-12 18:36 [PATCH 1/8] arm64: dts: qcom: sda660-inforce: correct key node name Krzysztof Kozlowski
                   ` (6 preceding siblings ...)
  2023-03-12 18:36 ` [PATCH 8/8] arm64: dts: qcom: apq8096-db820c: " Krzysztof Kozlowski
@ 2023-03-12 18:38 ` Krzysztof Kozlowski
  2023-03-13  8:47 ` Konrad Dybcio
  2023-04-05  4:09 ` (subset) " Bjorn Andersson
  9 siblings, 0 replies; 24+ messages in thread
From: Krzysztof Kozlowski @ 2023-03-12 18:38 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, Douglas Anderson, Stephen Boyd,
	Matthias Kaehlcke, Joseph S. Barrera III, Gustave Monce,
	Vinod Koul, Rajendra Nayak, linux-arm-msm, devicetree,
	linux-kernel

On 12/03/2023 19:36, Krzysztof Kozlowski wrote:
> gpio-key bindings expect children to be named with generic prefix:
> 
>   sda660-inforce-ifc6560.dtb: gpio-keys: 'volup' does not match any of the regexes: ...
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
>  arch/arm64/boot/dts/qcom/sda660-inforce-ifc6560.dts | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Apologies, this one patch was sent second time, without a need. Previous
submission few minutes ago:

https://lore.kernel.org/linux-arm-msm/20230312173458.411231-1-krzysztof.kozlowski@linaro.org/T/#u

Best regards,
Krzysztof


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

* Re: [PATCH 1/8] arm64: dts: qcom: sda660-inforce: correct key node name
  2023-03-12 18:36 [PATCH 1/8] arm64: dts: qcom: sda660-inforce: correct key node name Krzysztof Kozlowski
                   ` (7 preceding siblings ...)
  2023-03-12 18:38 ` [PATCH 1/8] arm64: dts: qcom: sda660-inforce: correct key node name Krzysztof Kozlowski
@ 2023-03-13  8:47 ` Konrad Dybcio
  2023-04-05  4:09 ` (subset) " Bjorn Andersson
  9 siblings, 0 replies; 24+ messages in thread
From: Konrad Dybcio @ 2023-03-13  8:47 UTC (permalink / raw)
  To: Krzysztof Kozlowski, Andy Gross, Bjorn Andersson, Rob Herring,
	Krzysztof Kozlowski, Douglas Anderson, Stephen Boyd,
	Matthias Kaehlcke, Joseph S. Barrera III, Gustave Monce,
	Vinod Koul, Rajendra Nayak, linux-arm-msm, devicetree,
	linux-kernel



On 12.03.2023 19:36, Krzysztof Kozlowski wrote:
> gpio-key bindings expect children to be named with generic prefix:
> 
>   sda660-inforce-ifc6560.dtb: gpio-keys: 'volup' does not match any of the regexes: ...
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
Reviewed-by: Konrad Dybcio <konrad.dybcio@linaro.org>

Konrad
>  arch/arm64/boot/dts/qcom/sda660-inforce-ifc6560.dts | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/arch/arm64/boot/dts/qcom/sda660-inforce-ifc6560.dts b/arch/arm64/boot/dts/qcom/sda660-inforce-ifc6560.dts
> index 7c81918eee66..7459525d9982 100644
> --- a/arch/arm64/boot/dts/qcom/sda660-inforce-ifc6560.dts
> +++ b/arch/arm64/boot/dts/qcom/sda660-inforce-ifc6560.dts
> @@ -29,7 +29,7 @@ chosen {
>  	gpio-keys {
>  		compatible = "gpio-keys";
>  
> -		volup {
> +		key-volup {
>  			label = "Volume Up";
>  			gpios = <&pm660l_gpios 7 GPIO_ACTIVE_LOW>;
>  			linux,code = <KEY_VOLUMEUP>;

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

* Re: [PATCH 2/8] arm64: dts: qcom: sc7280-herobrine-villager: correct trackpad supply
  2023-03-12 18:36 ` [PATCH 2/8] arm64: dts: qcom: sc7280-herobrine-villager: correct trackpad supply Krzysztof Kozlowski
@ 2023-03-13  8:48   ` Konrad Dybcio
  2023-03-13 14:37   ` Doug Anderson
  2023-03-13 18:09   ` Stephen Boyd
  2 siblings, 0 replies; 24+ messages in thread
From: Konrad Dybcio @ 2023-03-13  8:48 UTC (permalink / raw)
  To: Krzysztof Kozlowski, Andy Gross, Bjorn Andersson, Rob Herring,
	Krzysztof Kozlowski, Douglas Anderson, Stephen Boyd,
	Matthias Kaehlcke, Joseph S. Barrera III, Gustave Monce,
	Vinod Koul, Rajendra Nayak, linux-arm-msm, devicetree,
	linux-kernel



On 12.03.2023 19:36, Krzysztof Kozlowski wrote:
> The hid-over-i2c takes VDD, not VCC supply.  Fix copy-pasta from other
> Herobrine boards which use elan,ekth3000 with valid VCC:
> 
>   sc7280-herobrine-villager-r1-lte.dtb: trackpad@2c: 'vcc-supply' does not match any of the regexes: 'pinctrl-[0-9]+'
> 
> Fixes: ee2a62116015 ("arm64: dts: qcom: sc7280: Add device tree for herobrine villager")
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---


Reviewed-by: Konrad Dybcio <konrad.dybcio@linaro.org>

Konrad
>  arch/arm64/boot/dts/qcom/sc7280-herobrine-villager.dtsi | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/arch/arm64/boot/dts/qcom/sc7280-herobrine-villager.dtsi b/arch/arm64/boot/dts/qcom/sc7280-herobrine-villager.dtsi
> index 818d4046d2c7..38c8a3679fcb 100644
> --- a/arch/arm64/boot/dts/qcom/sc7280-herobrine-villager.dtsi
> +++ b/arch/arm64/boot/dts/qcom/sc7280-herobrine-villager.dtsi
> @@ -33,7 +33,7 @@ trackpad: trackpad@2c {
>  		interrupts = <7 IRQ_TYPE_EDGE_FALLING>;
>  
>  		hid-descr-addr = <0x20>;
> -		vcc-supply = <&pp3300_z1>;
> +		vdd-supply = <&pp3300_z1>;
>  
>  		wakeup-source;
>  	};

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

* Re: [PATCH 3/8] arm64: dts: qcom: sc7180-trogdor-lazor: correct trackpad supply
  2023-03-12 18:36 ` [PATCH 3/8] arm64: dts: qcom: sc7180-trogdor-lazor: " Krzysztof Kozlowski
@ 2023-03-13  8:49   ` Konrad Dybcio
  2023-03-13 14:37   ` Doug Anderson
  2023-03-13 18:09   ` Stephen Boyd
  2 siblings, 0 replies; 24+ messages in thread
From: Konrad Dybcio @ 2023-03-13  8:49 UTC (permalink / raw)
  To: Krzysztof Kozlowski, Andy Gross, Bjorn Andersson, Rob Herring,
	Krzysztof Kozlowski, Douglas Anderson, Stephen Boyd,
	Matthias Kaehlcke, Joseph S. Barrera III, Gustave Monce,
	Vinod Koul, Rajendra Nayak, linux-arm-msm, devicetree,
	linux-kernel



On 12.03.2023 19:36, Krzysztof Kozlowski wrote:
> The hid-over-i2c takes VDD, not VCC supply.  Fix copy-pasta from other
> boards which use elan,ekth3000 with valid VCC:
> 
>   sc7180-trogdor-lazor-limozeen-nots-r4.dtb: trackpad@2c: 'vcc-supply' does not match any of the regexes: 'pinctrl-[0-9]+'
> 
> Fixes: 2c26adb8dbab ("arm64: dts: qcom: Add sc7180-lazor-limozeen skus")
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
Reviewed-by: Konrad Dybcio <konrad.dybcio@linaro.org>

Konrad
>  .../boot/dts/qcom/sc7180-trogdor-lazor-limozeen-nots-r4.dts     | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-nots-r4.dts b/arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-nots-r4.dts
> index 850776c5323d..70d5a7aa8873 100644
> --- a/arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-nots-r4.dts
> +++ b/arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-nots-r4.dts
> @@ -26,7 +26,7 @@ trackpad: trackpad@2c {
>  		interrupt-parent = <&tlmm>;
>  		interrupts = <58 IRQ_TYPE_EDGE_FALLING>;
>  
> -		vcc-supply = <&pp3300_fp_tp>;
> +		vdd-supply = <&pp3300_fp_tp>;
>  		hid-descr-addr = <0x20>;
>  
>  		wakeup-source;

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

* Re: [PATCH 4/8] arm64: dts: qcom: sc7180-trogdor-pazquel: correct trackpad supply
  2023-03-12 18:36 ` [PATCH 4/8] arm64: dts: qcom: sc7180-trogdor-pazquel: " Krzysztof Kozlowski
@ 2023-03-13  8:49   ` Konrad Dybcio
  2023-03-13 14:37   ` Doug Anderson
  2023-03-13 18:10   ` Stephen Boyd
  2 siblings, 0 replies; 24+ messages in thread
From: Konrad Dybcio @ 2023-03-13  8:49 UTC (permalink / raw)
  To: Krzysztof Kozlowski, Andy Gross, Bjorn Andersson, Rob Herring,
	Krzysztof Kozlowski, Douglas Anderson, Stephen Boyd,
	Matthias Kaehlcke, Joseph S. Barrera III, Gustave Monce,
	Vinod Koul, Rajendra Nayak, linux-arm-msm, devicetree,
	linux-kernel



On 12.03.2023 19:36, Krzysztof Kozlowski wrote:
> The hid-over-i2c takes VDD, not VCC supply.  Fix copy-pasta from other
> boards which use elan,ekth3000 with valid VCC:
> 
>   sc7180-trogdor-pazquel360-lte.dtb: trackpad@15: 'vcc-supply' does not match any of the regexes: 'pinctrl-[0-9]+'
> 
> Fixes: fb69f6adaf88 ("arm64: dts: qcom: sc7180: Add pazquel dts files")
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
Reviewed-by: Konrad Dybcio <konrad.dybcio@linaro.org>

Konrad
>  arch/arm64/boot/dts/qcom/sc7180-trogdor-pazquel.dtsi | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/arch/arm64/boot/dts/qcom/sc7180-trogdor-pazquel.dtsi b/arch/arm64/boot/dts/qcom/sc7180-trogdor-pazquel.dtsi
> index d06cc4ea3375..8823edbb4d6e 100644
> --- a/arch/arm64/boot/dts/qcom/sc7180-trogdor-pazquel.dtsi
> +++ b/arch/arm64/boot/dts/qcom/sc7180-trogdor-pazquel.dtsi
> @@ -39,7 +39,7 @@ trackpad: trackpad@15 {
>  		interrupt-parent = <&tlmm>;
>  		interrupts = <0 IRQ_TYPE_EDGE_FALLING>;
>  
> -		vcc-supply = <&pp3300_fp_tp>;
> +		vdd-supply = <&pp3300_fp_tp>;
>  		post-power-on-delay-ms = <100>;
>  		hid-descr-addr = <0x0001>;
>  

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

* Re: [PATCH 5/8] arm64: dts: qcom: msm8998-oneplus-cheeseburger: revert "fix backlight pin function"
  2023-03-12 18:36 ` [PATCH 5/8] arm64: dts: qcom: msm8998-oneplus-cheeseburger: revert "fix backlight pin function" Krzysztof Kozlowski
@ 2023-03-13  8:50   ` Konrad Dybcio
  0 siblings, 0 replies; 24+ messages in thread
From: Konrad Dybcio @ 2023-03-13  8:50 UTC (permalink / raw)
  To: Krzysztof Kozlowski, Andy Gross, Bjorn Andersson, Rob Herring,
	Krzysztof Kozlowski, Douglas Anderson, Stephen Boyd,
	Matthias Kaehlcke, Joseph S. Barrera III, Gustave Monce,
	Vinod Koul, Rajendra Nayak, linux-arm-msm, devicetree,
	linux-kernel



On 12.03.2023 19:36, Krzysztof Kozlowski wrote:
> This reverts commit 46546f28825cf3a5ef6873b9cf947cd85c8a7258 because it
> mistakenly took PMIC pinctrl/GPIO as TLMM.  The TLMM pinctrl uses "gpio"
> function, but PMIC uses "normal", so original code was correct:
> 
>   msm8998-oneplus-cheeseburger.dtb: pmic@2: gpio@c000:button-backlight-state: 'oneOf' conditional failed, one must be fixed:
>     'gpio' is not one of ['normal', 'paired', 'func1', 'func2', 'dtest1', 'dtest2', 'dtest3', 'dtest4', 'func3', 'func4']
> 
> Fixes: 46546f28825c ("arm64: dts: qcom: msm8998-oneplus-cheeseburger: fix backlight pin function")
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> 
> ---
> 
> Eh, embarrassing. I would say to myself - use dtbs_check on patches, but
> I think that time there were too many errors coming from Qualcomm
> pinctrl bindings.
It's good that we have schema at all though.. It helps a lot!

> ---
Reviewed-by: Konrad Dybcio <konrad.dybcio@linaro.org>

Konrad
>  arch/arm64/boot/dts/qcom/msm8998-oneplus-cheeseburger.dts | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/arch/arm64/boot/dts/qcom/msm8998-oneplus-cheeseburger.dts b/arch/arm64/boot/dts/qcom/msm8998-oneplus-cheeseburger.dts
> index d36b36af49d0..fac8b3510cd3 100644
> --- a/arch/arm64/boot/dts/qcom/msm8998-oneplus-cheeseburger.dts
> +++ b/arch/arm64/boot/dts/qcom/msm8998-oneplus-cheeseburger.dts
> @@ -34,7 +34,7 @@ led-keypad-backlight {
>  &pmi8998_gpios {
>  	button_backlight_default: button-backlight-state {
>  		pins = "gpio5";
> -		function = "gpio";
> +		function = "normal";
>  		bias-pull-down;
>  		qcom,drive-strength = <PMIC_GPIO_STRENGTH_NO>;
>  	};

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

* Re: [PATCH 6/8] arm64: dts: qcom: msm8994-kitakami: drop unit address from PMI8994 regulator
  2023-03-12 18:36 ` [PATCH 6/8] arm64: dts: qcom: msm8994-kitakami: drop unit address from PMI8994 regulator Krzysztof Kozlowski
@ 2023-03-13  8:53   ` Konrad Dybcio
  0 siblings, 0 replies; 24+ messages in thread
From: Konrad Dybcio @ 2023-03-13  8:53 UTC (permalink / raw)
  To: Krzysztof Kozlowski, Andy Gross, Bjorn Andersson, Rob Herring,
	Krzysztof Kozlowski, Douglas Anderson, Stephen Boyd,
	Matthias Kaehlcke, Joseph S. Barrera III, Gustave Monce,
	Vinod Koul, Rajendra Nayak, linux-arm-msm, devicetree,
	linux-kernel



On 12.03.2023 19:36, Krzysztof Kozlowski wrote:
> The PMIC regulators are not supposed to have unit addresses.
> 
> Fixes: e9783584c9b7 ("arm64: dts: qcom: msm8994-kitakami: Add VDD_GFX regulator")
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
AFAICS the code doesn't use it, so

Reviewed-by: Konrad Dybcio <konrad.dybcio@linaro.org>

Konrad
>  arch/arm64/boot/dts/qcom/msm8994-sony-xperia-kitakami.dtsi | 3 +--
>  1 file changed, 1 insertion(+), 2 deletions(-)
> 
> diff --git a/arch/arm64/boot/dts/qcom/msm8994-sony-xperia-kitakami.dtsi b/arch/arm64/boot/dts/qcom/msm8994-sony-xperia-kitakami.dtsi
> index 3ceb86b06209..26059f861250 100644
> --- a/arch/arm64/boot/dts/qcom/msm8994-sony-xperia-kitakami.dtsi
> +++ b/arch/arm64/boot/dts/qcom/msm8994-sony-xperia-kitakami.dtsi
> @@ -173,8 +173,7 @@ &pmi8994_spmi_regulators {
>  	 * power domain.. which still isn't enough and forces us to bind
>  	 * OXILI_CX and OXILI_GX together!
>  	 */
> -	vdd_gfx: s2@1700 {
> -		reg = <0x1700 0x100>;
> +	vdd_gfx: s2 {
>  		regulator-name = "VDD_GFX";
>  		regulator-min-microvolt = <980000>;
>  		regulator-max-microvolt = <980000>;

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

* Re: [PATCH 7/8] arm64: dts: qcom: msm8994-msft-lumia-octagon: drop unit address from PMI8994 regulator
  2023-03-12 18:36 ` [PATCH 7/8] arm64: dts: qcom: msm8994-msft-lumia-octagon: " Krzysztof Kozlowski
@ 2023-03-13  8:53   ` Konrad Dybcio
  0 siblings, 0 replies; 24+ messages in thread
From: Konrad Dybcio @ 2023-03-13  8:53 UTC (permalink / raw)
  To: Krzysztof Kozlowski, Andy Gross, Bjorn Andersson, Rob Herring,
	Krzysztof Kozlowski, Douglas Anderson, Stephen Boyd,
	Matthias Kaehlcke, Joseph S. Barrera III, Gustave Monce,
	Vinod Koul, Rajendra Nayak, linux-arm-msm, devicetree,
	linux-kernel



On 12.03.2023 19:36, Krzysztof Kozlowski wrote:
> The PMIC regulators are not supposed to have unit addresses.
> 
> Fixes: 60b214effb80 ("arm64: dts: qcom: msm8994-octagon: Configure regulators")
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
Reviewed-by: Konrad Dybcio <konrad.dybcio@linaro.org>

Konrad
>  arch/arm64/boot/dts/qcom/msm8994-msft-lumia-octagon.dtsi | 3 +--
>  1 file changed, 1 insertion(+), 2 deletions(-)
> 
> diff --git a/arch/arm64/boot/dts/qcom/msm8994-msft-lumia-octagon.dtsi b/arch/arm64/boot/dts/qcom/msm8994-msft-lumia-octagon.dtsi
> index 4520a7e86d5b..0c112b7b57ea 100644
> --- a/arch/arm64/boot/dts/qcom/msm8994-msft-lumia-octagon.dtsi
> +++ b/arch/arm64/boot/dts/qcom/msm8994-msft-lumia-octagon.dtsi
> @@ -542,8 +542,7 @@ hd3ss460_en: en-high-state {
>  };
>  
>  &pmi8994_spmi_regulators {
> -	vdd_gfx: s2@1700 {
> -		reg = <0x1700 0x100>;
> +	vdd_gfx: s2 {
>  		regulator-min-microvolt = <980000>;
>  		regulator-max-microvolt = <980000>;
>  	};

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

* Re: [PATCH 8/8] arm64: dts: qcom: apq8096-db820c: drop unit address from PMI8994 regulator
  2023-03-12 18:36 ` [PATCH 8/8] arm64: dts: qcom: apq8096-db820c: " Krzysztof Kozlowski
@ 2023-03-13  8:54   ` Konrad Dybcio
  0 siblings, 0 replies; 24+ messages in thread
From: Konrad Dybcio @ 2023-03-13  8:54 UTC (permalink / raw)
  To: Krzysztof Kozlowski, Andy Gross, Bjorn Andersson, Rob Herring,
	Krzysztof Kozlowski, Douglas Anderson, Stephen Boyd,
	Matthias Kaehlcke, Joseph S. Barrera III, Gustave Monce,
	Vinod Koul, Rajendra Nayak, linux-arm-msm, devicetree,
	linux-kernel



On 12.03.2023 19:36, Krzysztof Kozlowski wrote:
> The PMIC regulators are not supposed to have unit addresses.
> 
> Fixes: 2317b87a2a6f ("arm64: dts: qcom: db820c: Add vdd_gfx and tie it into mmcc")
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
Reviewed-by: Konrad Dybcio <konrad.dybcio@linaro.org>

Konrad
>  arch/arm64/boot/dts/qcom/apq8096-db820c.dts | 3 +--
>  arch/arm64/boot/dts/qcom/pmi8994.dtsi       | 2 --
>  2 files changed, 1 insertion(+), 4 deletions(-)
> 
> diff --git a/arch/arm64/boot/dts/qcom/apq8096-db820c.dts b/arch/arm64/boot/dts/qcom/apq8096-db820c.dts
> index 5ceaab5d4039..4476e2e22816 100644
> --- a/arch/arm64/boot/dts/qcom/apq8096-db820c.dts
> +++ b/arch/arm64/boot/dts/qcom/apq8096-db820c.dts
> @@ -704,8 +704,7 @@ pmi8994_mpp2_userled4: mpp2-userled4-state {
>  &pmi8994_spmi_regulators {
>  	vdd_s2-supply = <&vph_pwr>;
>  
> -	vdd_gfx: s2@1700 {
> -		reg = <0x1700 0x100>;
> +	vdd_gfx: s2 {
>  		regulator-name = "VDD_GFX";
>  		regulator-min-microvolt = <980000>;
>  		regulator-max-microvolt = <980000>;
> diff --git a/arch/arm64/boot/dts/qcom/pmi8994.dtsi b/arch/arm64/boot/dts/qcom/pmi8994.dtsi
> index a0af91698d49..0192968f4d9b 100644
> --- a/arch/arm64/boot/dts/qcom/pmi8994.dtsi
> +++ b/arch/arm64/boot/dts/qcom/pmi8994.dtsi
> @@ -49,8 +49,6 @@ pmi8994_lpg: pwm {
>  
>  		pmi8994_spmi_regulators: regulators {
>  			compatible = "qcom,pmi8994-regulators";
> -			#address-cells = <1>;
> -			#size-cells = <1>;
>  		};
>  
>  		pmi8994_wled: wled@d800 {

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

* Re: [PATCH 2/8] arm64: dts: qcom: sc7280-herobrine-villager: correct trackpad supply
  2023-03-12 18:36 ` [PATCH 2/8] arm64: dts: qcom: sc7280-herobrine-villager: correct trackpad supply Krzysztof Kozlowski
  2023-03-13  8:48   ` Konrad Dybcio
@ 2023-03-13 14:37   ` Doug Anderson
  2023-03-13 18:09   ` Stephen Boyd
  2 siblings, 0 replies; 24+ messages in thread
From: Doug Anderson @ 2023-03-13 14:37 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Andy Gross, Bjorn Andersson, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, Stephen Boyd, Matthias Kaehlcke,
	Joseph S. Barrera III, Gustave Monce, Vinod Koul, Rajendra Nayak,
	linux-arm-msm, devicetree, linux-kernel

Hi,


On Sun, Mar 12, 2023 at 11:36 AM Krzysztof Kozlowski
<krzysztof.kozlowski@linaro.org> wrote:
>
> The hid-over-i2c takes VDD, not VCC supply.  Fix copy-pasta from other
> Herobrine boards which use elan,ekth3000 with valid VCC:
>
>   sc7280-herobrine-villager-r1-lte.dtb: trackpad@2c: 'vcc-supply' does not match any of the regexes: 'pinctrl-[0-9]+'
>
> Fixes: ee2a62116015 ("arm64: dts: qcom: sc7280: Add device tree for herobrine villager")
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
>  arch/arm64/boot/dts/qcom/sc7280-herobrine-villager.dtsi | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Luckily it didn't matter since this regulator is always on, but good
to have things described properly.

Reviewed-by: Douglas Anderson <dianders@chromium.org>

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

* Re: [PATCH 3/8] arm64: dts: qcom: sc7180-trogdor-lazor: correct trackpad supply
  2023-03-12 18:36 ` [PATCH 3/8] arm64: dts: qcom: sc7180-trogdor-lazor: " Krzysztof Kozlowski
  2023-03-13  8:49   ` Konrad Dybcio
@ 2023-03-13 14:37   ` Doug Anderson
  2023-03-13 18:09   ` Stephen Boyd
  2 siblings, 0 replies; 24+ messages in thread
From: Doug Anderson @ 2023-03-13 14:37 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Andy Gross, Bjorn Andersson, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, Stephen Boyd, Matthias Kaehlcke,
	Joseph S. Barrera III, Gustave Monce, Vinod Koul, Rajendra Nayak,
	linux-arm-msm, devicetree, linux-kernel

Hi,

On Sun, Mar 12, 2023 at 11:36 AM Krzysztof Kozlowski
<krzysztof.kozlowski@linaro.org> wrote:
>
> The hid-over-i2c takes VDD, not VCC supply.  Fix copy-pasta from other
> boards which use elan,ekth3000 with valid VCC:
>
>   sc7180-trogdor-lazor-limozeen-nots-r4.dtb: trackpad@2c: 'vcc-supply' does not match any of the regexes: 'pinctrl-[0-9]+'
>
> Fixes: 2c26adb8dbab ("arm64: dts: qcom: Add sc7180-lazor-limozeen skus")
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
>  .../boot/dts/qcom/sc7180-trogdor-lazor-limozeen-nots-r4.dts     | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-nots-r4.dts b/arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-nots-r4.dts
> index 850776c5323d..70d5a7aa8873 100644
> --- a/arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-nots-r4.dts
> +++ b/arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-nots-r4.dts
> @@ -26,7 +26,7 @@ trackpad: trackpad@2c {
>                 interrupt-parent = <&tlmm>;
>                 interrupts = <58 IRQ_TYPE_EDGE_FALLING>;
>
> -               vcc-supply = <&pp3300_fp_tp>;
> +               vdd-supply = <&pp3300_fp_tp>;

Luckily it didn't matter since this regulator is always on, but good
to have things described properly.

Reviewed-by: Douglas Anderson <dianders@chromium.org>

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

* Re: [PATCH 4/8] arm64: dts: qcom: sc7180-trogdor-pazquel: correct trackpad supply
  2023-03-12 18:36 ` [PATCH 4/8] arm64: dts: qcom: sc7180-trogdor-pazquel: " Krzysztof Kozlowski
  2023-03-13  8:49   ` Konrad Dybcio
@ 2023-03-13 14:37   ` Doug Anderson
  2023-03-13 18:10   ` Stephen Boyd
  2 siblings, 0 replies; 24+ messages in thread
From: Doug Anderson @ 2023-03-13 14:37 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Andy Gross, Bjorn Andersson, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, Stephen Boyd, Matthias Kaehlcke,
	Joseph S. Barrera III, Gustave Monce, Vinod Koul, Rajendra Nayak,
	linux-arm-msm, devicetree, linux-kernel

Hi,

On Sun, Mar 12, 2023 at 11:36 AM Krzysztof Kozlowski
<krzysztof.kozlowski@linaro.org> wrote:
>
> The hid-over-i2c takes VDD, not VCC supply.  Fix copy-pasta from other
> boards which use elan,ekth3000 with valid VCC:
>
>   sc7180-trogdor-pazquel360-lte.dtb: trackpad@15: 'vcc-supply' does not match any of the regexes: 'pinctrl-[0-9]+'
>
> Fixes: fb69f6adaf88 ("arm64: dts: qcom: sc7180: Add pazquel dts files")
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
>  arch/arm64/boot/dts/qcom/sc7180-trogdor-pazquel.dtsi | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/arch/arm64/boot/dts/qcom/sc7180-trogdor-pazquel.dtsi b/arch/arm64/boot/dts/qcom/sc7180-trogdor-pazquel.dtsi
> index d06cc4ea3375..8823edbb4d6e 100644
> --- a/arch/arm64/boot/dts/qcom/sc7180-trogdor-pazquel.dtsi
> +++ b/arch/arm64/boot/dts/qcom/sc7180-trogdor-pazquel.dtsi
> @@ -39,7 +39,7 @@ trackpad: trackpad@15 {
>                 interrupt-parent = <&tlmm>;
>                 interrupts = <0 IRQ_TYPE_EDGE_FALLING>;
>
> -               vcc-supply = <&pp3300_fp_tp>;
> +               vdd-supply = <&pp3300_fp_tp>;

Luckily it didn't matter since this regulator is always on, but good
to have things described properly.

Reviewed-by: Douglas Anderson <dianders@chromium.org>

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

* Re: [PATCH 2/8] arm64: dts: qcom: sc7280-herobrine-villager: correct trackpad supply
  2023-03-12 18:36 ` [PATCH 2/8] arm64: dts: qcom: sc7280-herobrine-villager: correct trackpad supply Krzysztof Kozlowski
  2023-03-13  8:48   ` Konrad Dybcio
  2023-03-13 14:37   ` Doug Anderson
@ 2023-03-13 18:09   ` Stephen Boyd
  2 siblings, 0 replies; 24+ messages in thread
From: Stephen Boyd @ 2023-03-13 18:09 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Douglas Anderson, Gustave Monce,
	Joseph S. Barrera III, Konrad Dybcio, Krzysztof Kozlowski,
	Krzysztof Kozlowski, Matthias Kaehlcke, Rajendra Nayak,
	Rob Herring, Vinod Koul, devicetree, linux-arm-msm, linux-kernel

Quoting Krzysztof Kozlowski (2023-03-12 11:36:16)
> The hid-over-i2c takes VDD, not VCC supply.  Fix copy-pasta from other
> Herobrine boards which use elan,ekth3000 with valid VCC:
>
>   sc7280-herobrine-villager-r1-lte.dtb: trackpad@2c: 'vcc-supply' does not match any of the regexes: 'pinctrl-[0-9]+'
>
> Fixes: ee2a62116015 ("arm64: dts: qcom: sc7280: Add device tree for herobrine villager")
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---

Reviewed-by: Stephen Boyd <swboyd@chromium.org>

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

* Re: [PATCH 3/8] arm64: dts: qcom: sc7180-trogdor-lazor: correct trackpad supply
  2023-03-12 18:36 ` [PATCH 3/8] arm64: dts: qcom: sc7180-trogdor-lazor: " Krzysztof Kozlowski
  2023-03-13  8:49   ` Konrad Dybcio
  2023-03-13 14:37   ` Doug Anderson
@ 2023-03-13 18:09   ` Stephen Boyd
  2 siblings, 0 replies; 24+ messages in thread
From: Stephen Boyd @ 2023-03-13 18:09 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Douglas Anderson, Gustave Monce,
	Joseph S. Barrera III, Konrad Dybcio, Krzysztof Kozlowski,
	Krzysztof Kozlowski, Matthias Kaehlcke, Rajendra Nayak,
	Rob Herring, Vinod Koul, devicetree, linux-arm-msm, linux-kernel

Quoting Krzysztof Kozlowski (2023-03-12 11:36:17)
> The hid-over-i2c takes VDD, not VCC supply.  Fix copy-pasta from other
> boards which use elan,ekth3000 with valid VCC:
>
>   sc7180-trogdor-lazor-limozeen-nots-r4.dtb: trackpad@2c: 'vcc-supply' does not match any of the regexes: 'pinctrl-[0-9]+'
>
> Fixes: 2c26adb8dbab ("arm64: dts: qcom: Add sc7180-lazor-limozeen skus")
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---

Reviewed-by: Stephen Boyd <swboyd@chromium.org>

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

* Re: [PATCH 4/8] arm64: dts: qcom: sc7180-trogdor-pazquel: correct trackpad supply
  2023-03-12 18:36 ` [PATCH 4/8] arm64: dts: qcom: sc7180-trogdor-pazquel: " Krzysztof Kozlowski
  2023-03-13  8:49   ` Konrad Dybcio
  2023-03-13 14:37   ` Doug Anderson
@ 2023-03-13 18:10   ` Stephen Boyd
  2 siblings, 0 replies; 24+ messages in thread
From: Stephen Boyd @ 2023-03-13 18:10 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Douglas Anderson, Gustave Monce,
	Joseph S. Barrera III, Konrad Dybcio, Krzysztof Kozlowski,
	Krzysztof Kozlowski, Matthias Kaehlcke, Rajendra Nayak,
	Rob Herring, Vinod Koul, devicetree, linux-arm-msm, linux-kernel

Quoting Krzysztof Kozlowski (2023-03-12 11:36:18)
> The hid-over-i2c takes VDD, not VCC supply.  Fix copy-pasta from other
> boards which use elan,ekth3000 with valid VCC:
>
>   sc7180-trogdor-pazquel360-lte.dtb: trackpad@15: 'vcc-supply' does not match any of the regexes: 'pinctrl-[0-9]+'
>
> Fixes: fb69f6adaf88 ("arm64: dts: qcom: sc7180: Add pazquel dts files")
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---

Reviewed-by: Stephen Boyd <swboyd@chromium.org>

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

* Re: (subset) [PATCH 1/8] arm64: dts: qcom: sda660-inforce: correct key node name
  2023-03-12 18:36 [PATCH 1/8] arm64: dts: qcom: sda660-inforce: correct key node name Krzysztof Kozlowski
                   ` (8 preceding siblings ...)
  2023-03-13  8:47 ` Konrad Dybcio
@ 2023-04-05  4:09 ` Bjorn Andersson
  9 siblings, 0 replies; 24+ messages in thread
From: Bjorn Andersson @ 2023-04-05  4:09 UTC (permalink / raw)
  To: linux-arm-msm, devicetree, Vinod Koul, Krzysztof Kozlowski,
	Stephen Boyd, Krzysztof Kozlowski, Joseph S. Barrera III,
	Andy Gross, Gustave Monce, Rob Herring, Rajendra Nayak,
	Konrad Dybcio, Matthias Kaehlcke, linux-kernel, Douglas Anderson

On Sun, 12 Mar 2023 19:36:15 +0100, Krzysztof Kozlowski wrote:
> gpio-key bindings expect children to be named with generic prefix:
> 
>   sda660-inforce-ifc6560.dtb: gpio-keys: 'volup' does not match any of the regexes: ...
> 
> 

Applied, thanks!

[1/8] arm64: dts: qcom: sda660-inforce: correct key node name
      commit: 0d8d77228aa1efec69f92ef92e1cd9270c1151c4
[2/8] arm64: dts: qcom: sc7280-herobrine-villager: correct trackpad supply
      commit: de88b1759b35086d5e63736fb604ea2d06486b1a
[3/8] arm64: dts: qcom: sc7180-trogdor-lazor: correct trackpad supply
      commit: 52e2996f253d82520011340d40dbc1c76ea79208
[4/8] arm64: dts: qcom: sc7180-trogdor-pazquel: correct trackpad supply
      commit: 24f39eec6a70768e7c2eb2f3d8158f45050ff75a
[5/8] arm64: dts: qcom: msm8998-oneplus-cheeseburger: revert "fix backlight pin function"
      commit: 97b4fdc6b82d6d5cfb92a9b164540278720fb700
[6/8] arm64: dts: qcom: msm8994-kitakami: drop unit address from PMI8994 regulator
      commit: 3555dd528ba9c08d6ccd56239c695dbeac3b63e3
[7/8] arm64: dts: qcom: msm8994-msft-lumia-octagon: drop unit address from PMI8994 regulator
      commit: 7a202df0f3eed006e4a9e7c06d62cf67be56c14c
[8/8] arm64: dts: qcom: apq8096-db820c: drop unit address from PMI8994 regulator
      commit: ec57cbce1a6d9384f8ac1ff966b204dc262f4927

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

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

end of thread, other threads:[~2023-04-05  4:07 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-12 18:36 [PATCH 1/8] arm64: dts: qcom: sda660-inforce: correct key node name Krzysztof Kozlowski
2023-03-12 18:36 ` [PATCH 2/8] arm64: dts: qcom: sc7280-herobrine-villager: correct trackpad supply Krzysztof Kozlowski
2023-03-13  8:48   ` Konrad Dybcio
2023-03-13 14:37   ` Doug Anderson
2023-03-13 18:09   ` Stephen Boyd
2023-03-12 18:36 ` [PATCH 3/8] arm64: dts: qcom: sc7180-trogdor-lazor: " Krzysztof Kozlowski
2023-03-13  8:49   ` Konrad Dybcio
2023-03-13 14:37   ` Doug Anderson
2023-03-13 18:09   ` Stephen Boyd
2023-03-12 18:36 ` [PATCH 4/8] arm64: dts: qcom: sc7180-trogdor-pazquel: " Krzysztof Kozlowski
2023-03-13  8:49   ` Konrad Dybcio
2023-03-13 14:37   ` Doug Anderson
2023-03-13 18:10   ` Stephen Boyd
2023-03-12 18:36 ` [PATCH 5/8] arm64: dts: qcom: msm8998-oneplus-cheeseburger: revert "fix backlight pin function" Krzysztof Kozlowski
2023-03-13  8:50   ` Konrad Dybcio
2023-03-12 18:36 ` [PATCH 6/8] arm64: dts: qcom: msm8994-kitakami: drop unit address from PMI8994 regulator Krzysztof Kozlowski
2023-03-13  8:53   ` Konrad Dybcio
2023-03-12 18:36 ` [PATCH 7/8] arm64: dts: qcom: msm8994-msft-lumia-octagon: " Krzysztof Kozlowski
2023-03-13  8:53   ` Konrad Dybcio
2023-03-12 18:36 ` [PATCH 8/8] arm64: dts: qcom: apq8096-db820c: " Krzysztof Kozlowski
2023-03-13  8:54   ` Konrad Dybcio
2023-03-12 18:38 ` [PATCH 1/8] arm64: dts: qcom: sda660-inforce: correct key node name Krzysztof Kozlowski
2023-03-13  8:47 ` Konrad Dybcio
2023-04-05  4:09 ` (subset) " Bjorn Andersson

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.