* [PATCH v1 0/2] arm64: freescale: verdin: Update tla2024 adc compatible
@ 2024-10-01 12:45 João Paulo Gonçalves
2024-10-01 12:45 ` [PATCH v1 1/2] arm64: dts: imx8mp-verdin: " João Paulo Gonçalves
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: João Paulo Gonçalves @ 2024-10-01 12:45 UTC (permalink / raw)
To: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Shawn Guo,
Sascha Hauer, Pengutronix Kernel Team, Fabio Estevam
Cc: João Paulo Gonçalves, devicetree, imx, linux-arm-kernel,
linux-kernel
From: João Paulo Gonçalves <joao.goncalves@toradex.com>
This patch series updates the compatible string to the correct one for
the TLA2024 ADC found on the Toradex Verdin iMX8MM and iMX8MP devices.
João Paulo Gonçalves (2):
arm64: dts: imx8mp-verdin: Update tla2024 adc compatible
arm64: dts: imx8mm-verdin: Update tla2024 adc compatible
arch/arm64/boot/dts/freescale/imx8mm-verdin.dtsi | 2 +-
arch/arm64/boot/dts/freescale/imx8mp-verdin.dtsi | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH v1 1/2] arm64: dts: imx8mp-verdin: Update tla2024 adc compatible
2024-10-01 12:45 [PATCH v1 0/2] arm64: freescale: verdin: Update tla2024 adc compatible João Paulo Gonçalves
@ 2024-10-01 12:45 ` João Paulo Gonçalves
2024-10-01 12:48 ` Krzysztof Kozlowski
2024-10-01 12:45 ` [PATCH v1 2/2] arm64: dts: imx8mm-verdin: " João Paulo Gonçalves
2024-10-21 8:22 ` [PATCH v1 0/2] arm64: freescale: verdin: " Shawn Guo
2 siblings, 1 reply; 6+ messages in thread
From: João Paulo Gonçalves @ 2024-10-01 12:45 UTC (permalink / raw)
To: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Shawn Guo,
Sascha Hauer, Pengutronix Kernel Team, Fabio Estevam
Cc: João Paulo Gonçalves, devicetree, imx, linux-arm-kernel,
linux-kernel
From: João Paulo Gonçalves <joao.goncalves@toradex.com>
With commit f1c9ce0ced2d ("iio: adc: ti-ads1015: Add TLA2024 support") a
new compatible was introduced for TLA2024 ADC. Update the device tree to
use the correct compatible for the Verdin-iMX8MP hardware.
Signed-off-by: João Paulo Gonçalves <joao.goncalves@toradex.com>
---
arch/arm64/boot/dts/freescale/imx8mp-verdin.dtsi | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm64/boot/dts/freescale/imx8mp-verdin.dtsi b/arch/arm64/boot/dts/freescale/imx8mp-verdin.dtsi
index a19ad5ee7f79..db46763d3751 100644
--- a/arch/arm64/boot/dts/freescale/imx8mp-verdin.dtsi
+++ b/arch/arm64/boot/dts/freescale/imx8mp-verdin.dtsi
@@ -592,7 +592,7 @@ hwmon_temp_module: sensor@48 {
};
adc@49 {
- compatible = "ti,ads1015";
+ compatible = "ti,tla2024";
reg = <0x49>;
#address-cells = <1>;
#size-cells = <0>;
--
2.34.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH v1 2/2] arm64: dts: imx8mm-verdin: Update tla2024 adc compatible
2024-10-01 12:45 [PATCH v1 0/2] arm64: freescale: verdin: Update tla2024 adc compatible João Paulo Gonçalves
2024-10-01 12:45 ` [PATCH v1 1/2] arm64: dts: imx8mp-verdin: " João Paulo Gonçalves
@ 2024-10-01 12:45 ` João Paulo Gonçalves
2024-10-01 12:48 ` Krzysztof Kozlowski
2024-10-21 8:22 ` [PATCH v1 0/2] arm64: freescale: verdin: " Shawn Guo
2 siblings, 1 reply; 6+ messages in thread
From: João Paulo Gonçalves @ 2024-10-01 12:45 UTC (permalink / raw)
To: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Shawn Guo,
Sascha Hauer, Pengutronix Kernel Team, Fabio Estevam
Cc: João Paulo Gonçalves, devicetree, imx, linux-arm-kernel,
linux-kernel
From: João Paulo Gonçalves <joao.goncalves@toradex.com>
With commit f1c9ce0ced2d ("iio: adc: ti-ads1015: Add TLA2024 support") a
new compatible was introduced for TLA2024 ADC. Update the device tree to
use the correct compatible for the Verdin-iMX8MM hardware.
Signed-off-by: João Paulo Gonçalves <joao.goncalves@toradex.com>
---
arch/arm64/boot/dts/freescale/imx8mm-verdin.dtsi | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm64/boot/dts/freescale/imx8mm-verdin.dtsi b/arch/arm64/boot/dts/freescale/imx8mm-verdin.dtsi
index 5fa395914191..49562ec7969b 100644
--- a/arch/arm64/boot/dts/freescale/imx8mm-verdin.dtsi
+++ b/arch/arm64/boot/dts/freescale/imx8mm-verdin.dtsi
@@ -484,7 +484,7 @@ rtc_i2c: rtc@32 {
};
adc@49 {
- compatible = "ti,ads1015";
+ compatible = "ti,tla2024";
reg = <0x49>;
#address-cells = <1>;
#size-cells = <0>;
--
2.34.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH v1 1/2] arm64: dts: imx8mp-verdin: Update tla2024 adc compatible
2024-10-01 12:45 ` [PATCH v1 1/2] arm64: dts: imx8mp-verdin: " João Paulo Gonçalves
@ 2024-10-01 12:48 ` Krzysztof Kozlowski
0 siblings, 0 replies; 6+ messages in thread
From: Krzysztof Kozlowski @ 2024-10-01 12:48 UTC (permalink / raw)
To: João Paulo Gonçalves, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Shawn Guo, Sascha Hauer, Pengutronix Kernel Team,
Fabio Estevam
Cc: João Paulo Gonçalves, devicetree, imx, linux-arm-kernel,
linux-kernel
On 01/10/2024 14:45, João Paulo Gonçalves wrote:
> From: João Paulo Gonçalves <joao.goncalves@toradex.com>
>
> With commit f1c9ce0ced2d ("iio: adc: ti-ads1015: Add TLA2024 support") a
> new compatible was introduced for TLA2024 ADC. Update the device tree to
> use the correct compatible for the Verdin-iMX8MP hardware.
Can you slow down please? You got comment on your other patch, which you
did not resolve but you keep sending similar patches.
Same comment here.
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v1 2/2] arm64: dts: imx8mm-verdin: Update tla2024 adc compatible
2024-10-01 12:45 ` [PATCH v1 2/2] arm64: dts: imx8mm-verdin: " João Paulo Gonçalves
@ 2024-10-01 12:48 ` Krzysztof Kozlowski
0 siblings, 0 replies; 6+ messages in thread
From: Krzysztof Kozlowski @ 2024-10-01 12:48 UTC (permalink / raw)
To: João Paulo Gonçalves, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Shawn Guo, Sascha Hauer, Pengutronix Kernel Team,
Fabio Estevam
Cc: João Paulo Gonçalves, devicetree, imx, linux-arm-kernel,
linux-kernel
On 01/10/2024 14:45, João Paulo Gonçalves wrote:
> From: João Paulo Gonçalves <joao.goncalves@toradex.com>
>
> With commit f1c9ce0ced2d ("iio: adc: ti-ads1015: Add TLA2024 support") a
> new compatible was introduced for TLA2024 ADC. Update the device tree to
> use the correct compatible for the Verdin-iMX8MM hardware.
>
> Signed-off-by: João Paulo Gonçalves <joao.goncalves@toradex.com>
> ---
Same issue here.
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v1 0/2] arm64: freescale: verdin: Update tla2024 adc compatible
2024-10-01 12:45 [PATCH v1 0/2] arm64: freescale: verdin: Update tla2024 adc compatible João Paulo Gonçalves
2024-10-01 12:45 ` [PATCH v1 1/2] arm64: dts: imx8mp-verdin: " João Paulo Gonçalves
2024-10-01 12:45 ` [PATCH v1 2/2] arm64: dts: imx8mm-verdin: " João Paulo Gonçalves
@ 2024-10-21 8:22 ` Shawn Guo
2 siblings, 0 replies; 6+ messages in thread
From: Shawn Guo @ 2024-10-21 8:22 UTC (permalink / raw)
To: João Paulo Gonçalves
Cc: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Shawn Guo,
Sascha Hauer, Pengutronix Kernel Team, Fabio Estevam,
João Paulo Gonçalves, devicetree, imx, linux-arm-kernel,
linux-kernel
On Tue, Oct 01, 2024 at 09:45:02AM -0300, João Paulo Gonçalves wrote:
> From: João Paulo Gonçalves <joao.goncalves@toradex.com>
>
> This patch series updates the compatible string to the correct one for
> the TLA2024 ADC found on the Toradex Verdin iMX8MM and iMX8MP devices.
>
> João Paulo Gonçalves (2):
> arm64: dts: imx8mp-verdin: Update tla2024 adc compatible
> arm64: dts: imx8mm-verdin: Update tla2024 adc compatible
It doesn't apply to imx/dt64 branch. Could you rebase?
Shawn
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2024-10-21 8:23 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-01 12:45 [PATCH v1 0/2] arm64: freescale: verdin: Update tla2024 adc compatible João Paulo Gonçalves
2024-10-01 12:45 ` [PATCH v1 1/2] arm64: dts: imx8mp-verdin: " João Paulo Gonçalves
2024-10-01 12:48 ` Krzysztof Kozlowski
2024-10-01 12:45 ` [PATCH v1 2/2] arm64: dts: imx8mm-verdin: " João Paulo Gonçalves
2024-10-01 12:48 ` Krzysztof Kozlowski
2024-10-21 8:22 ` [PATCH v1 0/2] arm64: freescale: verdin: " Shawn Guo
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).