* [PATCH v4 1/3] dt-bindings: lcdif: Document a imx6sx-lcdif fallback
@ 2024-11-01 13:54 Fabio Estevam
2024-11-01 13:54 ` [PATCH v4 2/3] dt-bindings: lcdif: Expand the imx6sl/imx6sll fallbacks Fabio Estevam
` (3 more replies)
0 siblings, 4 replies; 10+ messages in thread
From: Fabio Estevam @ 2024-11-01 13:54 UTC (permalink / raw)
To: shawnguo
Cc: marex, a.fatoum, andreas, kernel, robh, krzk+dt, conor+dt,
devicetree, imx, linux-arm-kernel, dri-devel, Fabio Estevam
From: Fabio Estevam <festevam@denx.de>
imx6sx.dtsi has the following lcdif entries:
compatible = "fsl,imx6sx-lcdif", "fsl,imx28-lcdif";
This causes the following dt-schema warning:
['fsl,imx6sx-lcdif', 'fsl,imx28-lcdif'] is too long
To keep DT compatibility, document 'fsl,imx28-lcdif' as a possible
'fsl,imx6sx-lcdif' fallback.
Signed-off-by: Fabio Estevam <festevam@denx.de>
---
Changes since v3:
- Also update the example.
Documentation/devicetree/bindings/display/fsl,lcdif.yaml | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/Documentation/devicetree/bindings/display/fsl,lcdif.yaml b/Documentation/devicetree/bindings/display/fsl,lcdif.yaml
index 8e3a98aeec32..aa3204b6aff9 100644
--- a/Documentation/devicetree/bindings/display/fsl,lcdif.yaml
+++ b/Documentation/devicetree/bindings/display/fsl,lcdif.yaml
@@ -19,7 +19,6 @@ properties:
- enum:
- fsl,imx23-lcdif
- fsl,imx28-lcdif
- - fsl,imx6sx-lcdif
- fsl,imx8mp-lcdif
- fsl,imx93-lcdif
- items:
@@ -32,6 +31,10 @@ properties:
- fsl,imx8mn-lcdif
- fsl,imx8mq-lcdif
- const: fsl,imx6sx-lcdif
+ - items:
+ - enum:
+ - fsl,imx6sx-lcdif
+ - const: fsl,imx28-lcdif
reg:
maxItems: 1
@@ -182,7 +185,7 @@ examples:
#include <dt-bindings/interrupt-controller/arm-gic.h>
display-controller@2220000 {
- compatible = "fsl,imx6sx-lcdif";
+ compatible = "fsl,imx6sx-lcdif", "fsl,imx28-lcdif";
reg = <0x02220000 0x4000>;
interrupts = <GIC_SPI 5 IRQ_TYPE_LEVEL_HIGH>;
clocks = <&clks IMX6SX_CLK_LCDIF1_PIX>,
--
2.34.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH v4 2/3] dt-bindings: lcdif: Expand the imx6sl/imx6sll fallbacks
2024-11-01 13:54 [PATCH v4 1/3] dt-bindings: lcdif: Document a imx6sx-lcdif fallback Fabio Estevam
@ 2024-11-01 13:54 ` Fabio Estevam
2024-11-04 15:43 ` Rob Herring (Arm)
2024-11-04 15:45 ` Ahmad Fatoum
2024-11-01 13:54 ` [PATCH v4 3/3] ARM: dts: imx6sl: Provide a more specific lcdif compatible Fabio Estevam
` (2 subsequent siblings)
3 siblings, 2 replies; 10+ messages in thread
From: Fabio Estevam @ 2024-11-01 13:54 UTC (permalink / raw)
To: shawnguo
Cc: marex, a.fatoum, andreas, kernel, robh, krzk+dt, conor+dt,
devicetree, imx, linux-arm-kernel, dri-devel, Fabio Estevam
From: Fabio Estevam <festevam@denx.de>
mx6sl.dtsi and imx6sll.dtsi have the following lcdif entries:
compatible = "fsl,imx6sl-lcdif", "fsl,imx28-lcdif";
This causes dt-schema warnings as the current binding only
allow 'fsl,imx6sx-lcdif' as fallback.
['fsl,imx6sl-lcdif', 'fsl,imx28-lcdif'] is too long
['fsl,imx6sll-lcdif', 'fsl,imx28-lcdif'] is too long
The imx6sx-lcdif programming model has more advanced features, such
as overlay plane and the CRC32 support than the imx28-lcdif IP.
Expand the imx6sl/imx6sll lcdif fallbacks to accept a less specific
fsl,imx28-lcdif fallback:
compatible = "fsl,imx6sl-lcdif", "fsl,imx6sx-lcdif", "fsl,imx28-lcdif";
This helps keeping DT compatibility as well as using the more advanced
lcdif features found on imx6sl and imx6sll.
Signed-off-by: Fabio Estevam <festevam@denx.de>
---
Changes since v3:
- None.
Documentation/devicetree/bindings/display/fsl,lcdif.yaml | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/Documentation/devicetree/bindings/display/fsl,lcdif.yaml b/Documentation/devicetree/bindings/display/fsl,lcdif.yaml
index ad0cca562463..72e509bc975b 100644
--- a/Documentation/devicetree/bindings/display/fsl,lcdif.yaml
+++ b/Documentation/devicetree/bindings/display/fsl,lcdif.yaml
@@ -23,14 +23,18 @@ properties:
- fsl,imx93-lcdif
- items:
- enum:
- - fsl,imx6sl-lcdif
- - fsl,imx6sll-lcdif
- fsl,imx6ul-lcdif
- fsl,imx7d-lcdif
- fsl,imx8mm-lcdif
- fsl,imx8mn-lcdif
- fsl,imx8mq-lcdif
- const: fsl,imx6sx-lcdif
+ - items:
+ - enum:
+ - fsl,imx6sl-lcdif
+ - fsl,imx6sll-lcdif
+ - const: fsl,imx6sx-lcdif
+ - const: fsl,imx28-lcdif
- items:
- enum:
- fsl,imx6sx-lcdif
--
2.34.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH v4 3/3] ARM: dts: imx6sl: Provide a more specific lcdif compatible
2024-11-01 13:54 [PATCH v4 1/3] dt-bindings: lcdif: Document a imx6sx-lcdif fallback Fabio Estevam
2024-11-01 13:54 ` [PATCH v4 2/3] dt-bindings: lcdif: Expand the imx6sl/imx6sll fallbacks Fabio Estevam
@ 2024-11-01 13:54 ` Fabio Estevam
2024-11-04 15:46 ` Ahmad Fatoum
2024-11-04 15:42 ` [PATCH v4 1/3] dt-bindings: lcdif: Document a imx6sx-lcdif fallback Rob Herring (Arm)
2024-11-04 15:46 ` Ahmad Fatoum
3 siblings, 1 reply; 10+ messages in thread
From: Fabio Estevam @ 2024-11-01 13:54 UTC (permalink / raw)
To: shawnguo
Cc: marex, a.fatoum, andreas, kernel, robh, krzk+dt, conor+dt,
devicetree, imx, linux-arm-kernel, dri-devel, Fabio Estevam
From: Fabio Estevam <festevam@denx.de>
The LCDIF IP on i.MX6SL and i.MX6SLL is compatible with i.MX6SX.
Provide a more specific "fsl,imx6sx-lcdif" compatible and still keep
"fsl,imx28-lcdif" for DT compatibility.
Signed-off-by: Fabio Estevam <festevam@denx.de>
---
Changes since v3:
- None.
arch/arm/boot/dts/nxp/imx/imx6sl.dtsi | 3 ++-
arch/arm/boot/dts/nxp/imx/imx6sll.dtsi | 3 ++-
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/arch/arm/boot/dts/nxp/imx/imx6sl.dtsi b/arch/arm/boot/dts/nxp/imx/imx6sl.dtsi
index 6aa61235e39e..840e19b2ca0f 100644
--- a/arch/arm/boot/dts/nxp/imx/imx6sl.dtsi
+++ b/arch/arm/boot/dts/nxp/imx/imx6sl.dtsi
@@ -773,7 +773,8 @@ epdc: epdc@20f4000 {
};
lcdif: lcdif@20f8000 {
- compatible = "fsl,imx6sl-lcdif", "fsl,imx28-lcdif";
+ compatible = "fsl,imx6sl-lcdif", "fsl,imx6sx-lcdif",
+ "fsl,imx28-lcdif";
reg = <0x020f8000 0x4000>;
interrupts = <0 39 IRQ_TYPE_LEVEL_HIGH>;
clocks = <&clks IMX6SL_CLK_LCDIF_PIX>,
diff --git a/arch/arm/boot/dts/nxp/imx/imx6sll.dtsi b/arch/arm/boot/dts/nxp/imx/imx6sll.dtsi
index 85fe2a4ab97a..eff83f5e5535 100644
--- a/arch/arm/boot/dts/nxp/imx/imx6sll.dtsi
+++ b/arch/arm/boot/dts/nxp/imx/imx6sll.dtsi
@@ -648,7 +648,8 @@ pxp: pxp@20f0000 {
};
lcdif: lcd-controller@20f8000 {
- compatible = "fsl,imx6sll-lcdif", "fsl,imx28-lcdif";
+ compatible = "fsl,imx6sll-lcdif", "fsl,imx6sx-lcdif",
+ "fsl,imx28-lcdif";
reg = <0x020f8000 0x4000>;
interrupts = <GIC_SPI 39 IRQ_TYPE_LEVEL_HIGH>;
clocks = <&clks IMX6SLL_CLK_LCDIF_PIX>,
--
2.34.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH v4 1/3] dt-bindings: lcdif: Document a imx6sx-lcdif fallback
2024-11-01 13:54 [PATCH v4 1/3] dt-bindings: lcdif: Document a imx6sx-lcdif fallback Fabio Estevam
2024-11-01 13:54 ` [PATCH v4 2/3] dt-bindings: lcdif: Expand the imx6sl/imx6sll fallbacks Fabio Estevam
2024-11-01 13:54 ` [PATCH v4 3/3] ARM: dts: imx6sl: Provide a more specific lcdif compatible Fabio Estevam
@ 2024-11-04 15:42 ` Rob Herring (Arm)
2024-12-17 13:20 ` Fabio Estevam
2024-11-04 15:46 ` Ahmad Fatoum
3 siblings, 1 reply; 10+ messages in thread
From: Rob Herring (Arm) @ 2024-11-04 15:42 UTC (permalink / raw)
To: Fabio Estevam
Cc: devicetree, shawnguo, imx, conor+dt, Fabio Estevam,
linux-arm-kernel, kernel, krzk+dt, a.fatoum, dri-devel, andreas,
marex
On Fri, 01 Nov 2024 10:54:04 -0300, Fabio Estevam wrote:
> From: Fabio Estevam <festevam@denx.de>
>
> imx6sx.dtsi has the following lcdif entries:
>
> compatible = "fsl,imx6sx-lcdif", "fsl,imx28-lcdif";
>
> This causes the following dt-schema warning:
>
> ['fsl,imx6sx-lcdif', 'fsl,imx28-lcdif'] is too long
>
> To keep DT compatibility, document 'fsl,imx28-lcdif' as a possible
> 'fsl,imx6sx-lcdif' fallback.
>
> Signed-off-by: Fabio Estevam <festevam@denx.de>
> ---
> Changes since v3:
> - Also update the example.
>
> Documentation/devicetree/bindings/display/fsl,lcdif.yaml | 7 +++++--
> 1 file changed, 5 insertions(+), 2 deletions(-)
>
Acked-by: Rob Herring (Arm) <robh@kernel.org>
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v4 2/3] dt-bindings: lcdif: Expand the imx6sl/imx6sll fallbacks
2024-11-01 13:54 ` [PATCH v4 2/3] dt-bindings: lcdif: Expand the imx6sl/imx6sll fallbacks Fabio Estevam
@ 2024-11-04 15:43 ` Rob Herring (Arm)
2024-11-04 15:45 ` Ahmad Fatoum
1 sibling, 0 replies; 10+ messages in thread
From: Rob Herring (Arm) @ 2024-11-04 15:43 UTC (permalink / raw)
To: Fabio Estevam
Cc: Fabio Estevam, linux-arm-kernel, marex, shawnguo, devicetree,
conor+dt, dri-devel, a.fatoum, imx, kernel, krzk+dt, andreas
On Fri, 01 Nov 2024 10:54:05 -0300, Fabio Estevam wrote:
> From: Fabio Estevam <festevam@denx.de>
>
> mx6sl.dtsi and imx6sll.dtsi have the following lcdif entries:
>
> compatible = "fsl,imx6sl-lcdif", "fsl,imx28-lcdif";
>
> This causes dt-schema warnings as the current binding only
> allow 'fsl,imx6sx-lcdif' as fallback.
>
> ['fsl,imx6sl-lcdif', 'fsl,imx28-lcdif'] is too long
> ['fsl,imx6sll-lcdif', 'fsl,imx28-lcdif'] is too long
>
> The imx6sx-lcdif programming model has more advanced features, such
> as overlay plane and the CRC32 support than the imx28-lcdif IP.
>
> Expand the imx6sl/imx6sll lcdif fallbacks to accept a less specific
> fsl,imx28-lcdif fallback:
>
> compatible = "fsl,imx6sl-lcdif", "fsl,imx6sx-lcdif", "fsl,imx28-lcdif";
>
> This helps keeping DT compatibility as well as using the more advanced
> lcdif features found on imx6sl and imx6sll.
>
> Signed-off-by: Fabio Estevam <festevam@denx.de>
> ---
> Changes since v3:
> - None.
>
> Documentation/devicetree/bindings/display/fsl,lcdif.yaml | 8 ++++++--
> 1 file changed, 6 insertions(+), 2 deletions(-)
>
Acked-by: Rob Herring (Arm) <robh@kernel.org>
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v4 2/3] dt-bindings: lcdif: Expand the imx6sl/imx6sll fallbacks
2024-11-01 13:54 ` [PATCH v4 2/3] dt-bindings: lcdif: Expand the imx6sl/imx6sll fallbacks Fabio Estevam
2024-11-04 15:43 ` Rob Herring (Arm)
@ 2024-11-04 15:45 ` Ahmad Fatoum
1 sibling, 0 replies; 10+ messages in thread
From: Ahmad Fatoum @ 2024-11-04 15:45 UTC (permalink / raw)
To: Fabio Estevam, shawnguo
Cc: marex, andreas, kernel, robh, krzk+dt, conor+dt, devicetree, imx,
linux-arm-kernel, dri-devel, Fabio Estevam
On 01.11.24 14:54, Fabio Estevam wrote:
> From: Fabio Estevam <festevam@denx.de>
>
> mx6sl.dtsi and imx6sll.dtsi have the following lcdif entries:
>
> compatible = "fsl,imx6sl-lcdif", "fsl,imx28-lcdif";
>
> This causes dt-schema warnings as the current binding only
> allow 'fsl,imx6sx-lcdif' as fallback.
>
> ['fsl,imx6sl-lcdif', 'fsl,imx28-lcdif'] is too long
> ['fsl,imx6sll-lcdif', 'fsl,imx28-lcdif'] is too long
>
> The imx6sx-lcdif programming model has more advanced features, such
> as overlay plane and the CRC32 support than the imx28-lcdif IP.
>
> Expand the imx6sl/imx6sll lcdif fallbacks to accept a less specific
> fsl,imx28-lcdif fallback:
>
> compatible = "fsl,imx6sl-lcdif", "fsl,imx6sx-lcdif", "fsl,imx28-lcdif";
>
> This helps keeping DT compatibility as well as using the more advanced
> lcdif features found on imx6sl and imx6sll.
>
> Signed-off-by: Fabio Estevam <festevam@denx.de>
Reviewed-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
> ---
> Changes since v3:
> - None.
>
> Documentation/devicetree/bindings/display/fsl,lcdif.yaml | 8 ++++++--
> 1 file changed, 6 insertions(+), 2 deletions(-)
>
> diff --git a/Documentation/devicetree/bindings/display/fsl,lcdif.yaml b/Documentation/devicetree/bindings/display/fsl,lcdif.yaml
> index ad0cca562463..72e509bc975b 100644
> --- a/Documentation/devicetree/bindings/display/fsl,lcdif.yaml
> +++ b/Documentation/devicetree/bindings/display/fsl,lcdif.yaml
> @@ -23,14 +23,18 @@ properties:
> - fsl,imx93-lcdif
> - items:
> - enum:
> - - fsl,imx6sl-lcdif
> - - fsl,imx6sll-lcdif
> - fsl,imx6ul-lcdif
> - fsl,imx7d-lcdif
> - fsl,imx8mm-lcdif
> - fsl,imx8mn-lcdif
> - fsl,imx8mq-lcdif
> - const: fsl,imx6sx-lcdif
> + - items:
> + - enum:
> + - fsl,imx6sl-lcdif
> + - fsl,imx6sll-lcdif
> + - const: fsl,imx6sx-lcdif
> + - const: fsl,imx28-lcdif
> - items:
> - enum:
> - fsl,imx6sx-lcdif
--
Pengutronix e.K. | |
Steuerwalder Str. 21 | http://www.pengutronix.de/ |
31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v4 1/3] dt-bindings: lcdif: Document a imx6sx-lcdif fallback
2024-11-01 13:54 [PATCH v4 1/3] dt-bindings: lcdif: Document a imx6sx-lcdif fallback Fabio Estevam
` (2 preceding siblings ...)
2024-11-04 15:42 ` [PATCH v4 1/3] dt-bindings: lcdif: Document a imx6sx-lcdif fallback Rob Herring (Arm)
@ 2024-11-04 15:46 ` Ahmad Fatoum
3 siblings, 0 replies; 10+ messages in thread
From: Ahmad Fatoum @ 2024-11-04 15:46 UTC (permalink / raw)
To: Fabio Estevam, shawnguo
Cc: marex, andreas, kernel, robh, krzk+dt, conor+dt, devicetree, imx,
linux-arm-kernel, dri-devel, Fabio Estevam
On 01.11.24 14:54, Fabio Estevam wrote:
> From: Fabio Estevam <festevam@denx.de>
>
> imx6sx.dtsi has the following lcdif entries:
>
> compatible = "fsl,imx6sx-lcdif", "fsl,imx28-lcdif";
>
> This causes the following dt-schema warning:
>
> ['fsl,imx6sx-lcdif', 'fsl,imx28-lcdif'] is too long
>
> To keep DT compatibility, document 'fsl,imx28-lcdif' as a possible
> 'fsl,imx6sx-lcdif' fallback.
>
> Signed-off-by: Fabio Estevam <festevam@denx.de>
Reviewed-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
> ---
> Changes since v3:
> - Also update the example.
>
> Documentation/devicetree/bindings/display/fsl,lcdif.yaml | 7 +++++--
> 1 file changed, 5 insertions(+), 2 deletions(-)
>
> diff --git a/Documentation/devicetree/bindings/display/fsl,lcdif.yaml b/Documentation/devicetree/bindings/display/fsl,lcdif.yaml
> index 8e3a98aeec32..aa3204b6aff9 100644
> --- a/Documentation/devicetree/bindings/display/fsl,lcdif.yaml
> +++ b/Documentation/devicetree/bindings/display/fsl,lcdif.yaml
> @@ -19,7 +19,6 @@ properties:
> - enum:
> - fsl,imx23-lcdif
> - fsl,imx28-lcdif
> - - fsl,imx6sx-lcdif
> - fsl,imx8mp-lcdif
> - fsl,imx93-lcdif
> - items:
> @@ -32,6 +31,10 @@ properties:
> - fsl,imx8mn-lcdif
> - fsl,imx8mq-lcdif
> - const: fsl,imx6sx-lcdif
> + - items:
> + - enum:
> + - fsl,imx6sx-lcdif
> + - const: fsl,imx28-lcdif
>
> reg:
> maxItems: 1
> @@ -182,7 +185,7 @@ examples:
> #include <dt-bindings/interrupt-controller/arm-gic.h>
>
> display-controller@2220000 {
> - compatible = "fsl,imx6sx-lcdif";
> + compatible = "fsl,imx6sx-lcdif", "fsl,imx28-lcdif";
> reg = <0x02220000 0x4000>;
> interrupts = <GIC_SPI 5 IRQ_TYPE_LEVEL_HIGH>;
> clocks = <&clks IMX6SX_CLK_LCDIF1_PIX>,
--
Pengutronix e.K. | |
Steuerwalder Str. 21 | http://www.pengutronix.de/ |
31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v4 3/3] ARM: dts: imx6sl: Provide a more specific lcdif compatible
2024-11-01 13:54 ` [PATCH v4 3/3] ARM: dts: imx6sl: Provide a more specific lcdif compatible Fabio Estevam
@ 2024-11-04 15:46 ` Ahmad Fatoum
0 siblings, 0 replies; 10+ messages in thread
From: Ahmad Fatoum @ 2024-11-04 15:46 UTC (permalink / raw)
To: Fabio Estevam, shawnguo
Cc: marex, andreas, kernel, robh, krzk+dt, conor+dt, devicetree, imx,
linux-arm-kernel, dri-devel, Fabio Estevam
On 01.11.24 14:54, Fabio Estevam wrote:
> From: Fabio Estevam <festevam@denx.de>
>
> The LCDIF IP on i.MX6SL and i.MX6SLL is compatible with i.MX6SX.
>
> Provide a more specific "fsl,imx6sx-lcdif" compatible and still keep
> "fsl,imx28-lcdif" for DT compatibility.
>
> Signed-off-by: Fabio Estevam <festevam@denx.de>
Reviewed-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
Thank you,
Ahmad
> ---
> Changes since v3:
> - None.
>
> arch/arm/boot/dts/nxp/imx/imx6sl.dtsi | 3 ++-
> arch/arm/boot/dts/nxp/imx/imx6sll.dtsi | 3 ++-
> 2 files changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/arch/arm/boot/dts/nxp/imx/imx6sl.dtsi b/arch/arm/boot/dts/nxp/imx/imx6sl.dtsi
> index 6aa61235e39e..840e19b2ca0f 100644
> --- a/arch/arm/boot/dts/nxp/imx/imx6sl.dtsi
> +++ b/arch/arm/boot/dts/nxp/imx/imx6sl.dtsi
> @@ -773,7 +773,8 @@ epdc: epdc@20f4000 {
> };
>
> lcdif: lcdif@20f8000 {
> - compatible = "fsl,imx6sl-lcdif", "fsl,imx28-lcdif";
> + compatible = "fsl,imx6sl-lcdif", "fsl,imx6sx-lcdif",
> + "fsl,imx28-lcdif";
> reg = <0x020f8000 0x4000>;
> interrupts = <0 39 IRQ_TYPE_LEVEL_HIGH>;
> clocks = <&clks IMX6SL_CLK_LCDIF_PIX>,
> diff --git a/arch/arm/boot/dts/nxp/imx/imx6sll.dtsi b/arch/arm/boot/dts/nxp/imx/imx6sll.dtsi
> index 85fe2a4ab97a..eff83f5e5535 100644
> --- a/arch/arm/boot/dts/nxp/imx/imx6sll.dtsi
> +++ b/arch/arm/boot/dts/nxp/imx/imx6sll.dtsi
> @@ -648,7 +648,8 @@ pxp: pxp@20f0000 {
> };
>
> lcdif: lcd-controller@20f8000 {
> - compatible = "fsl,imx6sll-lcdif", "fsl,imx28-lcdif";
> + compatible = "fsl,imx6sll-lcdif", "fsl,imx6sx-lcdif",
> + "fsl,imx28-lcdif";
> reg = <0x020f8000 0x4000>;
> interrupts = <GIC_SPI 39 IRQ_TYPE_LEVEL_HIGH>;
> clocks = <&clks IMX6SLL_CLK_LCDIF_PIX>,
--
Pengutronix e.K. | |
Steuerwalder Str. 21 | http://www.pengutronix.de/ |
31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v4 1/3] dt-bindings: lcdif: Document a imx6sx-lcdif fallback
2024-11-04 15:42 ` [PATCH v4 1/3] dt-bindings: lcdif: Document a imx6sx-lcdif fallback Rob Herring (Arm)
@ 2024-12-17 13:20 ` Fabio Estevam
2025-02-19 12:40 ` Fabio Estevam
0 siblings, 1 reply; 10+ messages in thread
From: Fabio Estevam @ 2024-12-17 13:20 UTC (permalink / raw)
To: Rob Herring (Arm)
Cc: devicetree, shawnguo, imx, conor+dt, Fabio Estevam,
linux-arm-kernel, kernel, krzk+dt, a.fatoum, dri-devel, andreas,
marex
Rob,
On Mon, Nov 4, 2024 at 12:42 PM Rob Herring (Arm) <robh@kernel.org> wrote:
>
>
> On Fri, 01 Nov 2024 10:54:04 -0300, Fabio Estevam wrote:
> > From: Fabio Estevam <festevam@denx.de>
> >
> > imx6sx.dtsi has the following lcdif entries:
> >
> > compatible = "fsl,imx6sx-lcdif", "fsl,imx28-lcdif";
> >
> > This causes the following dt-schema warning:
> >
> > ['fsl,imx6sx-lcdif', 'fsl,imx28-lcdif'] is too long
> >
> > To keep DT compatibility, document 'fsl,imx28-lcdif' as a possible
> > 'fsl,imx6sx-lcdif' fallback.
> >
> > Signed-off-by: Fabio Estevam <festevam@denx.de>
> Acked-by: Rob Herring (Arm) <robh@kernel.org>
Can you apply 1/3 and 2/3?
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v4 1/3] dt-bindings: lcdif: Document a imx6sx-lcdif fallback
2024-12-17 13:20 ` Fabio Estevam
@ 2025-02-19 12:40 ` Fabio Estevam
0 siblings, 0 replies; 10+ messages in thread
From: Fabio Estevam @ 2025-02-19 12:40 UTC (permalink / raw)
To: Rob Herring (Arm)
Cc: devicetree, shawnguo, imx, conor+dt, Fabio Estevam,
linux-arm-kernel, kernel, krzk+dt, a.fatoum, dri-devel, andreas,
marex
Rob,
On Tue, Dec 17, 2024 at 10:20 AM Fabio Estevam <festevam@gmail.com> wrote:
> > Acked-by: Rob Herring (Arm) <robh@kernel.org>
>
> Can you apply 1/3 and 2/3?
Gentle ping.
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2025-02-19 12:49 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-01 13:54 [PATCH v4 1/3] dt-bindings: lcdif: Document a imx6sx-lcdif fallback Fabio Estevam
2024-11-01 13:54 ` [PATCH v4 2/3] dt-bindings: lcdif: Expand the imx6sl/imx6sll fallbacks Fabio Estevam
2024-11-04 15:43 ` Rob Herring (Arm)
2024-11-04 15:45 ` Ahmad Fatoum
2024-11-01 13:54 ` [PATCH v4 3/3] ARM: dts: imx6sl: Provide a more specific lcdif compatible Fabio Estevam
2024-11-04 15:46 ` Ahmad Fatoum
2024-11-04 15:42 ` [PATCH v4 1/3] dt-bindings: lcdif: Document a imx6sx-lcdif fallback Rob Herring (Arm)
2024-12-17 13:20 ` Fabio Estevam
2025-02-19 12:40 ` Fabio Estevam
2024-11-04 15:46 ` Ahmad Fatoum
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).