Re: [PATCH] ARM: dts: sun5i: add A10s/A13 display frontend support fallback

From: Maxime Ripard
Date: Fri Jan 08 2021 - 04:24:25 EST


Hi,

On Thu, Jan 07, 2021 at 11:59:27AM +0100, Sergio Sota wrote:
> The A10s/A13 display frontend driver is not implemented
> Set A10 display frontend driver as a fallback for A10s/A13
> Tested with Olimex-A13-SOM / Olimex-A13-OlinuXino-MICRO
> "modetest -M sun4i-drm -s 49@47:800x480-60" ( 7.0" tft lcd)
> "modetest -M sun4i-drm -s 49@47:1024x600-60" (10.1" tft lcd)
>
> Signed-off-by: Sergio Sota <sergiosota@xxxxxxxxxxxx>
> ---

You should mention the version number (using -v in git send-email or
format-patch), and add a changelog here

> arch/arm/boot/dts/sun5i.dtsi | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/arch/arm/boot/dts/sun5i.dtsi b/arch/arm/boot/dts/sun5i.dtsi
> index c2b4fbf552a3..4ef14a8695ef 100644
> --- a/arch/arm/boot/dts/sun5i.dtsi
> +++ b/arch/arm/boot/dts/sun5i.dtsi
> @@ -734,7 +734,8 @@ timer@1c60000 {
> };
>
> fe0: display-frontend@1e00000 {
> - compatible = "allwinner,sun5i-a13-display-frontend";
> + compatible = "allwinner,sun5i-a13-display-frontend",
> + "allwinner,sun4i-a10-display-frontend";

The comment on the first version still apply here, even more so with the
additional details you provided in the commit message

Maxime