All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/17] r8a77965: M3-N DU Enablement
@ 2018-04-26 16:53 Kieran Bingham
  2018-04-26 16:53   ` Kieran Bingham
                   ` (17 more replies)
  0 siblings, 18 replies; 94+ messages in thread
From: Kieran Bingham @ 2018-04-26 16:53 UTC (permalink / raw)
  To: linux-renesas-soc; +Cc: Kieran Bingham

This series enables the DU for the M3-N R8A77965 SoC, and provides
output on the VGA and HDMI connectors.

LVDS is not yet supported or tested.

Patch 13 has the following checkpatch.pl warnings of which I have
ignored:

================================================================================
WARNING: DT compatible string "renesas,r8a77965-hdmi" appears un-documented --
check ./Documentation/devicetree/bindings/

#27: FILE: arch/arm64/boot/dts/renesas/r8a77965.dtsi:1109:
+                       compatible = "renesas,r8a77965-hdmi",

WARNING: line over 80 characters
#44: FILE: arch/arm64/boot/dts/renesas/r8a77965.dtsi:1126:
+                                               remote-endpoint = <&du_out_hdmi0>;

WARNING: line over 80 characters
#60: FILE: arch/arm64/boot/dts/renesas/r8a77965.dtsi:1164:
+                                               remote-endpoint = <&dw_hdmi0_in>;

total: 0 errors, 3 warnings, 40 lines checked
================================================================================

I don't think the remote endpoints can be shorter unless the <&phandles>
are on a line on their own and that seems silly.

I have not made any changes to the HDMI binding documentation as we will
match on the generic case, and I do not believe I am allowed to modify
files related to the HDMI driver.


Kieran Bingham (13):
  dt-bindings: display: renesas: du: Increase indent in output table
  dt-bindings: display: renesas: du: Document the R8A77965 bindings
  pinctrl: sh-pfc: r8a77965: Add DU RGB output pins, groups and
    functions
  drm: rcar-du: Use the correct naming for ODPM fields in DEFR6
  drm: rcar-du: Split CRTC handling to support hardware indexing
  drm: rcar-du: Allow DU groups to work with hardware indexing
  drm: rcar-du: Add R8A77965 support
  arm64: dts: r8a77965: Provide sysc header definitions
  arm64: dts: r8a77965: Use the correct CPG header
  arm64: dts: r8a77965: Add FCPF and FCPV instances
  arm64: dts: r8a77965: Add VSP instances
  arm64: dts: r8a77965: Populate the DU instance placeholder
  arm64: dts: r8a77965: Add HDMI encoder instance

Takeshi Kihara (4):
  arm64: dts: r8a77965-salvator-x: Add DU external dot clocks
  arm64: dts: r8a77965-salvator-x: Enable HDMI output
  arm64: dts: r8a77965-salvator-xs: Add DU external dot clocks
  arm64: dts: r8a77965-salvator-xs: Enable HDMI output

 .../bindings/display/renesas,du.txt           |  28 ++--
 .../boot/dts/renesas/r8a77965-salvator-x.dts  |  29 ++++
 .../boot/dts/renesas/r8a77965-salvator-xs.dts |  29 ++++
 arch/arm64/boot/dts/renesas/r8a77965.dtsi     | 129 +++++++++++++++++-
 drivers/gpu/drm/rcar-du/rcar_du_crtc.c        |  26 ++--
 drivers/gpu/drm/rcar-du/rcar_du_crtc.h        |   3 +-
 drivers/gpu/drm/rcar-du/rcar_du_drv.c         |  49 +++++--
 drivers/gpu/drm/rcar-du/rcar_du_drv.h         |   4 +-
 drivers/gpu/drm/rcar-du/rcar_du_group.c       |  16 ++-
 drivers/gpu/drm/rcar-du/rcar_du_group.h       |   2 +
 drivers/gpu/drm/rcar-du/rcar_du_kms.c         |  22 ++-
 drivers/gpu/drm/rcar-du/rcar_du_regs.h        |  16 +--
 drivers/pinctrl/sh-pfc/pfc-r8a77965.c         | 116 ++++++++++++++++
 13 files changed, 409 insertions(+), 60 deletions(-)

-- 
2.17.0

^ permalink raw reply	[flat|nested] 94+ messages in thread

end of thread, other threads:[~2018-06-08 11:00 UTC | newest]

Thread overview: 94+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-04-26 16:53 [PATCH 00/17] r8a77965: M3-N DU Enablement Kieran Bingham
2018-04-26 16:53 ` [PATCH 01/17] dt-bindings: display: renesas: du: Increase indent in output table Kieran Bingham
2018-04-26 16:53   ` Kieran Bingham
2018-04-26 20:08   ` Laurent Pinchart
2018-04-26 20:08     ` Laurent Pinchart
2018-04-26 16:53 ` [PATCH 02/17] dt-bindings: display: renesas: du: Document the R8A77965 bindings Kieran Bingham
2018-04-26 16:53   ` Kieran Bingham
2018-04-26 16:57   ` Kieran Bingham
2018-04-26 16:57     ` Kieran Bingham
2018-04-26 20:10     ` Laurent Pinchart
2018-04-26 20:10       ` Laurent Pinchart
2018-04-27  8:40       ` Kieran Bingham
2018-04-27  8:40         ` Kieran Bingham
2018-04-26 16:53 ` [PATCH 03/17] pinctrl: sh-pfc: r8a77965: Add DU RGB output pins, groups and functions Kieran Bingham
2018-04-26 16:53   ` Kieran Bingham
2018-04-26 20:16   ` Laurent Pinchart
2018-04-26 16:53 ` [PATCH 04/17] drm: rcar-du: Use the correct naming for ODPM fields in DEFR6 Kieran Bingham
2018-04-26 16:53   ` Kieran Bingham
2018-04-26 20:18   ` Laurent Pinchart
2018-04-26 16:53 ` [PATCH 05/17] drm: rcar-du: Split CRTC handling to support hardware indexing Kieran Bingham
2018-04-26 16:53   ` Kieran Bingham
2018-04-26 20:30   ` Laurent Pinchart
2018-04-26 20:30     ` Laurent Pinchart
2018-04-27 10:15     ` Kieran Bingham
2018-04-26 16:53 ` [PATCH 06/17] drm: rcar-du: Allow DU groups to work with " Kieran Bingham
2018-04-26 16:53   ` Kieran Bingham
2018-04-26 20:36   ` Laurent Pinchart
2018-04-26 20:36     ` Laurent Pinchart
2018-04-27 10:10     ` Kieran Bingham
2018-04-26 16:53 ` [PATCH 07/17] drm: rcar-du: Add R8A77965 support Kieran Bingham
2018-04-26 16:53   ` Kieran Bingham
2018-04-26 20:43   ` Laurent Pinchart
2018-04-26 20:43     ` Laurent Pinchart
2018-04-27 10:14     ` Kieran Bingham
2018-04-27 10:14       ` Kieran Bingham
2018-04-26 16:53 ` [PATCH 08/17] arm64: dts: r8a77965: Provide sysc header definitions Kieran Bingham
2018-04-26 16:53   ` Kieran Bingham
2018-04-26 16:53   ` Kieran Bingham
2018-04-26 20:53   ` Laurent Pinchart
2018-04-26 20:53     ` Laurent Pinchart
2018-04-26 16:53 ` [PATCH 09/17] arm64: dts: r8a77965: Use the correct CPG header Kieran Bingham
2018-04-26 16:53   ` Kieran Bingham
2018-04-26 16:53   ` Kieran Bingham
2018-04-26 21:16   ` Laurent Pinchart
2018-04-26 21:16     ` Laurent Pinchart
2018-04-26 16:53 ` [PATCH 10/17] arm64: dts: r8a77965: Add FCPF and FCPV instances Kieran Bingham
2018-04-26 16:53   ` Kieran Bingham
2018-04-26 16:53   ` Kieran Bingham
2018-04-26 21:06   ` Laurent Pinchart
2018-04-26 21:06     ` Laurent Pinchart
2018-04-26 16:53 ` [PATCH 11/17] arm64: dts: r8a77965: Add VSP instances Kieran Bingham
2018-04-26 16:53   ` Kieran Bingham
2018-04-26 16:53   ` Kieran Bingham
2018-04-26 21:11   ` Laurent Pinchart
2018-04-26 21:11     ` Laurent Pinchart
2018-04-27 16:33     ` Kieran Bingham
2018-04-27 16:33       ` Kieran Bingham
2018-06-08  9:29     ` Geert Uytterhoeven
2018-06-08  9:29       ` Geert Uytterhoeven
2018-06-08 11:00       ` Laurent Pinchart
2018-06-08 11:00         ` Laurent Pinchart
2018-04-26 16:53 ` [PATCH 12/17] arm64: dts: r8a77965: Populate the DU instance placeholder Kieran Bingham
2018-04-26 16:53   ` Kieran Bingham
2018-04-26 16:53   ` Kieran Bingham
2018-04-26 21:15   ` Laurent Pinchart
2018-04-26 21:15     ` Laurent Pinchart
2018-04-27 16:34     ` Kieran Bingham
2018-04-27 16:34       ` Kieran Bingham
2018-04-26 16:53 ` [PATCH 13/17] arm64: dts: r8a77965: Add HDMI encoder instance Kieran Bingham
2018-04-26 16:53   ` Kieran Bingham
2018-04-26 16:53   ` Kieran Bingham
2018-04-26 21:17   ` Laurent Pinchart
2018-04-26 21:17     ` Laurent Pinchart
2018-04-26 16:53 ` [PATCH 14/17] arm64: dts: r8a77965-salvator-x: Add DU external dot clocks Kieran Bingham
2018-04-26 16:53   ` Kieran Bingham
2018-04-26 16:53   ` Kieran Bingham
2018-04-26 21:18   ` Laurent Pinchart
2018-04-26 21:18     ` Laurent Pinchart
2018-04-26 16:53 ` [PATCH 15/17] arm64: dts: r8a77965-salvator-x: Enable HDMI output Kieran Bingham
2018-04-26 16:53   ` Kieran Bingham
2018-04-26 16:53   ` Kieran Bingham
2018-04-26 21:21   ` Laurent Pinchart
2018-04-26 21:21     ` Laurent Pinchart
2018-04-27 16:22     ` Kieran Bingham
2018-04-27 16:22       ` Kieran Bingham
2018-04-26 16:53 ` [PATCH 16/17] arm64: dts: r8a77965-salvator-xs: Add DU external dot clocks Kieran Bingham
2018-04-26 16:53   ` Kieran Bingham
2018-04-26 16:53   ` Kieran Bingham
2018-04-26 21:22   ` Laurent Pinchart
2018-04-26 21:22     ` Laurent Pinchart
2018-04-26 16:53 ` [PATCH 17/17] arm64: dts: r8a77965-salvator-xs: Enable HDMI output Kieran Bingham
2018-04-26 16:53   ` Kieran Bingham
2018-04-26 16:53   ` Kieran Bingham
2018-04-26 21:23 ` [PATCH 00/17] r8a77965: M3-N DU Enablement Laurent Pinchart

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.