mbox series

[v6,0/6] Add dual-LVDS panel support to EK874

Message ID 1576590361-28244-1-git-send-email-fabrizio.castro@bp.renesas.com (mailing list archive)
Headers show
Series Add dual-LVDS panel support to EK874 | expand

Message

Fabrizio Castro Dec. 17, 2019, 1:45 p.m. UTC
Dear All,

this series adds support for dual-LVDS panel IDK-2121WR
from Advantech:
https://buy.advantech.eu/Displays/Embedded-LCD-Kits-High-Brightness/model-IDK-2121WR-K2FHA2E.htm

V6 reworks patch "drm: rcar-du: lvds: Allow for even and odd pixels swap",
and rebases the series on top of patch:
https://patchwork.kernel.org/patch/11295991/

Thanks,
Fab

Fabrizio Castro (6):
  drm: of: Add drm_of_lvds_get_dual_link_pixel_order
  drm: rcar-du: lvds: Improve identification of panels
  drm: rcar-du: lvds: Get dual link configuration from DT
  drm: rcar-du: lvds: Allow for even and odd pixels swap
  dt-bindings: display: Add idk-2121wr binding
  arm64: dts: renesas: Add EK874 board with idk-2121wr display support

 .../display/panel/advantech,idk-2121wr.yaml        | 128 +++++++++++++++
 arch/arm64/boot/dts/renesas/Makefile               |   3 +-
 .../boot/dts/renesas/r8a774c0-ek874-idk-2121wr.dts | 116 +++++++++++++
 drivers/gpu/drm/drm_of.c                           | 116 +++++++++++++
 drivers/gpu/drm/rcar-du/rcar_lvds.c                | 180 ++++++++++++---------
 include/drm/drm_of.h                               |  20 +++
 6 files changed, 483 insertions(+), 80 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/display/panel/advantech,idk-2121wr.yaml
 create mode 100644 arch/arm64/boot/dts/renesas/r8a774c0-ek874-idk-2121wr.dts

Comments

Laurent Pinchart Dec. 17, 2019, 11:13 p.m. UTC | #1
Hi Fabrizio,

Thank you for the patch.

On Tue, Dec 17, 2019 at 01:45:55PM +0000, Fabrizio Castro wrote:
> Dear All,
> 
> this series adds support for dual-LVDS panel IDK-2121WR
> from Advantech:
> https://buy.advantech.eu/Displays/Embedded-LCD-Kits-High-Brightness/model-IDK-2121WR-K2FHA2E.htm
> 
> V6 reworks patch "drm: rcar-du: lvds: Allow for even and odd pixels swap",
> and rebases the series on top of patch:
> https://patchwork.kernel.org/patch/11295991/

I've taken patch 1/6 to 4/6 in my tree. I expect Geert to take 6/6. For
5/6, I'll give Rob a chance to review the patch. Sam, could you handle
it afterwards ?

> Fabrizio Castro (6):
>   drm: of: Add drm_of_lvds_get_dual_link_pixel_order
>   drm: rcar-du: lvds: Improve identification of panels
>   drm: rcar-du: lvds: Get dual link configuration from DT
>   drm: rcar-du: lvds: Allow for even and odd pixels swap
>   dt-bindings: display: Add idk-2121wr binding
>   arm64: dts: renesas: Add EK874 board with idk-2121wr display support
> 
>  .../display/panel/advantech,idk-2121wr.yaml        | 128 +++++++++++++++
>  arch/arm64/boot/dts/renesas/Makefile               |   3 +-
>  .../boot/dts/renesas/r8a774c0-ek874-idk-2121wr.dts | 116 +++++++++++++
>  drivers/gpu/drm/drm_of.c                           | 116 +++++++++++++
>  drivers/gpu/drm/rcar-du/rcar_lvds.c                | 180 ++++++++++++---------
>  include/drm/drm_of.h                               |  20 +++
>  6 files changed, 483 insertions(+), 80 deletions(-)
>  create mode 100644 Documentation/devicetree/bindings/display/panel/advantech,idk-2121wr.yaml
>  create mode 100644 arch/arm64/boot/dts/renesas/r8a774c0-ek874-idk-2121wr.dts
Geert Uytterhoeven Jan. 17, 2020, 8:47 a.m. UTC | #2
Hi Laurent,

(woops, forgot to press sent)

On Wed, Dec 18, 2019 at 12:13 AM Laurent Pinchart
<laurent.pinchart@ideasonboard.com> wrote:
> On Tue, Dec 17, 2019 at 01:45:55PM +0000, Fabrizio Castro wrote:
> > this series adds support for dual-LVDS panel IDK-2121WR
> > from Advantech:
> > https://buy.advantech.eu/Displays/Embedded-LCD-Kits-High-Brightness/model-IDK-2121WR-K2FHA2E.htm
> >
> > V6 reworks patch "drm: rcar-du: lvds: Allow for even and odd pixels swap",
> > and rebases the series on top of patch:
> > https://patchwork.kernel.org/patch/11295991/
>
> I've taken patch 1/6 to 4/6 in my tree. I expect Geert to take 6/6. For
> 5/6, I'll give Rob a chance to review the patch. Sam, could you handle
> it afterwards ?

Queuing 6/6 in renesas-devel for v5.6.

> > Fabrizio Castro (6):
> >   drm: of: Add drm_of_lvds_get_dual_link_pixel_order
> >   drm: rcar-du: lvds: Improve identification of panels
> >   drm: rcar-du: lvds: Get dual link configuration from DT
> >   drm: rcar-du: lvds: Allow for even and odd pixels swap
> >   dt-bindings: display: Add idk-2121wr binding
> >   arm64: dts: renesas: Add EK874 board with idk-2121wr display support
> >
> >  .../display/panel/advantech,idk-2121wr.yaml        | 128 +++++++++++++++
> >  arch/arm64/boot/dts/renesas/Makefile               |   3 +-
> >  .../boot/dts/renesas/r8a774c0-ek874-idk-2121wr.dts | 116 +++++++++++++
> >  drivers/gpu/drm/drm_of.c                           | 116 +++++++++++++
> >  drivers/gpu/drm/rcar-du/rcar_lvds.c                | 180 ++++++++++++---------
> >  include/drm/drm_of.h                               |  20 +++
> >  6 files changed, 483 insertions(+), 80 deletions(-)
> >  create mode 100644 Documentation/devicetree/bindings/display/panel/advantech,idk-2121wr.yaml
> >  create mode 100644 arch/arm64/boot/dts/renesas/r8a774c0-ek874-idk-2121wr.dts

Gr{oetje,eeting}s,

                        Geert


--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
                                -- Linus Torvalds
Sam Ravnborg Jan. 17, 2020, 9:22 a.m. UTC | #3
Hi Fabrizio/Laurent/Geert.

(Thanks Geert, I recall I never replied to this mail).

On Fri, Jan 17, 2020 at 09:47:22AM +0100, Geert Uytterhoeven wrote:
> Hi Laurent,
> 
> (woops, forgot to press sent)
> 
> On Wed, Dec 18, 2019 at 12:13 AM Laurent Pinchart
> <laurent.pinchart@ideasonboard.com> wrote:
> > On Tue, Dec 17, 2019 at 01:45:55PM +0000, Fabrizio Castro wrote:
> > > this series adds support for dual-LVDS panel IDK-2121WR
> > > from Advantech:
> > > https://buy.advantech.eu/Displays/Embedded-LCD-Kits-High-Brightness/model-IDK-2121WR-K2FHA2E.htm
> > >
> > > V6 reworks patch "drm: rcar-du: lvds: Allow for even and odd pixels swap",
> > > and rebases the series on top of patch:
> > > https://patchwork.kernel.org/patch/11295991/
> >
> > I've taken patch 1/6 to 4/6 in my tree. I expect Geert to take 6/6. For
> > 5/6, I'll give Rob a chance to review the patch. Sam, could you handle
> > it afterwards ?
Rob had comments to the 5/6 patch - and I have missed if a new version was
sent.

	Sam