From mboxrd@z Thu Jan 1 00:00:00 1970 From: icenowy@aosc.xyz (Icenowy Zheng) Date: Fri, 02 Sep 2016 09:30:05 +0800 Subject: [PATCH 0/7] drm/sun4i: Introduce A33 display driver In-Reply-To: <20160901153204.11217-1-maxime.ripard@free-electrons.com> References: <20160901153204.11217-1-maxime.ripard@free-electrons.com> Message-ID: <18951472779805@web6g.yandex.ru> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org 01.09.2016, 23:40, "Maxime Ripard" : > Hi everyone, > > This serie introduces the support in the sun4i-drm driver for the A33. > > Beside the new IPs and special cases for the A33 new IPs, there's > nothing really outstanding, and is now at feature parity with the A13. How can the driver be modified to support LVDS screen? I have an A33 tablet with a 1024x768 LVDS panel. (iNet D978 Rev2 board, which I pushed a dt a few days ago) > > This serie is based on my A33 CCU patches posted earlier today here: > http://lists.infradead.org/pipermail/linux-arm-kernel/2016-September/453208.html > > Let me know what you think, > Maxime > > Maxime Ripard (7): > ??drm/sun4i: support TCONs without channel 1 > ??drm/sun4i: support A33 tcon > ??drm/sun4i: Add SAT and DRC drivers > ??drm/panel: Add Sinlinx SinA33 7" panel > ??ARM: sun8i: a33: Add display pipeline > ??ARM: sun8i: a33: Add RGB666 pins > ??ARM: sun8i: sina33: Enable display > > ?.../bindings/display/sunxi/sun4i-drm.txt | 44 ++++- > ?arch/arm/boot/dts/sun8i-a33-sinlinx-sina33.dts | 34 ++++ > ?arch/arm/boot/dts/sun8i-a33.dtsi | 194 +++++++++++++++++++++ > ?drivers/gpu/drm/panel/panel-simple.c | 26 +++ > ?drivers/gpu/drm/sun4i/Makefile | 3 +- > ?drivers/gpu/drm/sun4i/sun4i_backend.c | 1 + > ?drivers/gpu/drm/sun4i/sun4i_drv.c | 8 +- > ?drivers/gpu/drm/sun4i/sun4i_tcon.c | 42 +++-- > ?drivers/gpu/drm/sun4i/sun4i_tcon.h | 2 + > ?drivers/gpu/drm/sun4i/sun6i_drc.c | 117 +++++++++++++ > ?drivers/gpu/drm/sun4i/sun8i_sat.c | 105 +++++++++++ > ?11 files changed, 557 insertions(+), 19 deletions(-) > ?create mode 100644 drivers/gpu/drm/sun4i/sun6i_drc.c > ?create mode 100644 drivers/gpu/drm/sun4i/sun8i_sat.c > > -- > 2.9.2 > > _______________________________________________ > linux-arm-kernel mailing list > linux-arm-kernel at lists.infradead.org > http://lists.infradead.org/mailman/listinfo/linux-arm-kernel From mboxrd@z Thu Jan 1 00:00:00 1970 From: Icenowy Zheng Subject: Re: [PATCH 0/7] drm/sun4i: Introduce A33 display driver Date: Fri, 02 Sep 2016 09:30:05 +0800 Message-ID: <18951472779805@web6g.yandex.ru> References: <20160901153204.11217-1-maxime.ripard@free-electrons.com> Reply-To: icenowy-ymACFijhrKM@public.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Return-path: Sender: linux-sunxi-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org In-Reply-To: <20160901153204.11217-1-maxime.ripard-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org> List-Post: , List-Help: , List-Archive: , List-Unsubscribe: , To: Maxime Ripard , Daniel Vetter , David Airlie , Thierry Reding , Chen-Yu Tsai Cc: Thomas Petazzoni , "linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org" , "dri-devel-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org" , "linux-sunxi-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org" , Rob Herring , "linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org" List-Id: dri-devel@lists.freedesktop.org 01.09.2016, 23:40, "Maxime Ripard" : > Hi everyone, > > This serie introduces the support in the sun4i-drm driver for the A33. > > Beside the new IPs and special cases for the A33 new IPs, there's > nothing really outstanding, and is now at feature parity with the A13. How can the driver be modified to support LVDS screen? I have an A33 tablet with a 1024x768 LVDS panel. (iNet D978 Rev2 board, which I pushed a dt a few days ago) > > This serie is based on my A33 CCU patches posted earlier today here: > http://lists.infradead.org/pipermail/linux-arm-kernel/2016-September/4532= 08.html > > Let me know what you think, > Maxime > > Maxime Ripard (7): > =C2=A0=C2=A0drm/sun4i: support TCONs without channel 1 > =C2=A0=C2=A0drm/sun4i: support A33 tcon > =C2=A0=C2=A0drm/sun4i: Add SAT and DRC drivers > =C2=A0=C2=A0drm/panel: Add Sinlinx SinA33 7" panel > =C2=A0=C2=A0ARM: sun8i: a33: Add display pipeline > =C2=A0=C2=A0ARM: sun8i: a33: Add RGB666 pins > =C2=A0=C2=A0ARM: sun8i: sina33: Enable display > > =C2=A0.../bindings/display/sunxi/sun4i-drm.txt | 44 ++++- > =C2=A0arch/arm/boot/dts/sun8i-a33-sinlinx-sina33.dts | 34 ++++ > =C2=A0arch/arm/boot/dts/sun8i-a33.dtsi | 194 +++++++++++++++++++++ > =C2=A0drivers/gpu/drm/panel/panel-simple.c | 26 +++ > =C2=A0drivers/gpu/drm/sun4i/Makefile | 3 +- > =C2=A0drivers/gpu/drm/sun4i/sun4i_backend.c | 1 + > =C2=A0drivers/gpu/drm/sun4i/sun4i_drv.c | 8 +- > =C2=A0drivers/gpu/drm/sun4i/sun4i_tcon.c | 42 +++-- > =C2=A0drivers/gpu/drm/sun4i/sun4i_tcon.h | 2 + > =C2=A0drivers/gpu/drm/sun4i/sun6i_drc.c | 117 +++++++++++++ > =C2=A0drivers/gpu/drm/sun4i/sun8i_sat.c | 105 +++++++++++ > =C2=A011 files changed, 557 insertions(+), 19 deletions(-) > =C2=A0create mode 100644 drivers/gpu/drm/sun4i/sun6i_drc.c > =C2=A0create mode 100644 drivers/gpu/drm/sun4i/sun8i_sat.c > > -- > 2.9.2 > > _______________________________________________ > linux-arm-kernel mailing list > linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org > http://lists.infradead.org/mailman/listinfo/linux-arm-kernel --=20 You received this message because you are subscribed to the Google Groups "= linux-sunxi" group. To unsubscribe from this group and stop receiving emails from it, send an e= mail to linux-sunxi+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit https://groups.google.com/d/optout.