2020-12-18 10:38:20

by Martin Kepplinger

[permalink] [raw]
Subject: [PATCH 0/4] small Librem 5 phone dts updates

Some minor updates for the current hardware descriptions:

Martin Kepplinger (4):
arm64: dts: imx8mq-librem5: add vin-supply to VDD_1V8
arm64: dts: imx8mq-librem5: add pinctrl for the touchscreen
description
arm64: dts: imx8mq-librem5: Move usdhc clocks assignment to board DT
arm64: dts: imx8mq-librem5-r3: workaround i2c1 issue with 1GHz cpu
voltage

.../boot/dts/freescale/imx8mq-librem5-r3.dts | 6 ++++
.../boot/dts/freescale/imx8mq-librem5.dtsi | 28 ++++++++++++++-----
2 files changed, 27 insertions(+), 7 deletions(-)

--
2.20.1


2020-12-18 10:38:34

by Martin Kepplinger

[permalink] [raw]
Subject: [PATCH 3/4] arm64: dts: imx8mq-librem5: Move usdhc clocks assignment to board DT

According to commit e045f044e84e ("arm64: dts: imx8mq: Move usdhc clocks
assignment to board DT") add the clocks assignment to imx8mq-librem5.dtsi
too.

Signed-off-by: Martin Kepplinger <[email protected]>
---
arch/arm64/boot/dts/freescale/imx8mq-librem5.dtsi | 4 ++++
1 file changed, 4 insertions(+)

diff --git a/arch/arm64/boot/dts/freescale/imx8mq-librem5.dtsi b/arch/arm64/boot/dts/freescale/imx8mq-librem5.dtsi
index a60df09d90f7..47e70ba4e4f1 100644
--- a/arch/arm64/boot/dts/freescale/imx8mq-librem5.dtsi
+++ b/arch/arm64/boot/dts/freescale/imx8mq-librem5.dtsi
@@ -1082,6 +1082,8 @@
};

&usdhc1 {
+ assigned-clocks = <&clk IMX8MQ_CLK_USDHC1>;
+ assigned-clock-rates = <400000000>;
pinctrl-names = "default", "state_100mhz", "state_200mhz";
pinctrl-0 = <&pinctrl_usdhc1>;
pinctrl-1 = <&pinctrl_usdhc1_100mhz>;
@@ -1094,6 +1096,8 @@
};

&usdhc2 {
+ assigned-clocks = <&clk IMX8MQ_CLK_USDHC2>;
+ assigned-clock-rates = <200000000>;
pinctrl-names = "default", "state_100mhz", "state_200mhz";
pinctrl-0 = <&pinctrl_usdhc2>;
pinctrl-1 = <&pinctrl_usdhc2_100mhz>;
--
2.20.1

2020-12-19 12:26:24

by Krzysztof Kozlowski

[permalink] [raw]
Subject: Re: [PATCH 3/4] arm64: dts: imx8mq-librem5: Move usdhc clocks assignment to board DT

On Fri, Dec 18, 2020 at 11:31:30AM +0100, Martin Kepplinger wrote:
> According to commit e045f044e84e ("arm64: dts: imx8mq: Move usdhc clocks
> assignment to board DT") add the clocks assignment to imx8mq-librem5.dtsi
> too.
>
> Signed-off-by: Martin Kepplinger <[email protected]>

This should go with Fixes tag as well.

Best regards,
Krzysztof