-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'drm/next/du' of git://linuxtv.org/pinchartl/media into …
…drm-next - Convert LVDS support to a drm_bridge driver - Add DT bindings for the R8A77995 SoC - Add DT bindings and driver support for the R8A77970 SoC Note that the LVDS conversion depends on a patch series from Frank Rowand that will make it upstream through Rob Herring's tree. Frank has provided a stable branch based on v4.16-rc1 with the patches, and both Rob and I have merged it into our trees. This should thus generate no conflict when reaching -next. * 'drm/next/du' of git://linuxtv.org/pinchartl/media: dt-bindings: display: renesas: lvds: Document r8a77995 bindings dt-bindings: display: renesas: du: Document r8a77995 bindings drm: rcar-du: lvds: Add R8A77970 support drm: rcar-du: Add R8A77970 support dt-bindings: display: renesas: lvds: Document R8A77970 bindings dt-bindings: display: renesas: du: Document R8A77970 bindings drm: rcar-du: Convert LVDS encoder code to bridge driver drm: rcar-du: Fix legacy DT to create LVDS encoder nodes dt-bindings: display: renesas: Deprecate LVDS support in the DU bindings dt-bindings: display: renesas: Add R-Car LVDS encoder DT bindings of: improve reporting invalid overlay target path of: convert unittest overlay devicetree source to sugar syntax of: Documentation: of_overlay_apply() replaced by of_overlay_fdt_apply() of: change overlay apply input data from unflattened to FDT x86: devicetree: fix config option around x86_flattree_get_config()
- Loading branch information
Showing
49 changed files
with
1,884 additions
and
1,124 deletions.
There are no files selected for viewing
58 changes: 58 additions & 0 deletions
58
Documentation/devicetree/bindings/display/bridge/renesas,lvds.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
Renesas R-Car LVDS Encoder | ||
========================== | ||
|
||
These DT bindings describe the LVDS encoder embedded in the Renesas R-Car | ||
Gen2, R-Car Gen3 and RZ/G SoCs. | ||
|
||
Required properties: | ||
|
||
- compatible : Shall contain one of | ||
- "renesas,r8a7743-lvds" for R8A7743 (RZ/G1M) compatible LVDS encoders | ||
- "renesas,r8a7790-lvds" for R8A7790 (R-Car H2) compatible LVDS encoders | ||
- "renesas,r8a7791-lvds" for R8A7791 (R-Car M2-W) compatible LVDS encoders | ||
- "renesas,r8a7793-lvds" for R8A7793 (R-Car M2-N) compatible LVDS encoders | ||
- "renesas,r8a7795-lvds" for R8A7795 (R-Car H3) compatible LVDS encoders | ||
- "renesas,r8a7796-lvds" for R8A7796 (R-Car M3-W) compatible LVDS encoders | ||
- "renesas,r8a77970-lvds" for R8A77970 (R-Car V3M) compatible LVDS encoders | ||
- "renesas,r8a77995-lvds" for R8A77995 (R-Car D3) compatible LVDS encoders | ||
|
||
- reg: Base address and length for the memory-mapped registers | ||
- clocks: A phandle + clock-specifier pair for the functional clock | ||
- resets: A phandle + reset specifier for the module reset | ||
|
||
Required nodes: | ||
|
||
The LVDS encoder has two video ports. Their connections are modelled using the | ||
OF graph bindings specified in Documentation/devicetree/bindings/graph.txt. | ||
|
||
- Video port 0 corresponds to the parallel RGB input | ||
- Video port 1 corresponds to the LVDS output | ||
|
||
Each port shall have a single endpoint. | ||
|
||
|
||
Example: | ||
|
||
lvds0: lvds@feb90000 { | ||
compatible = "renesas,r8a7790-lvds"; | ||
reg = <0 0xfeb90000 0 0x1c>; | ||
clocks = <&cpg CPG_MOD 726>; | ||
resets = <&cpg 726>; | ||
|
||
ports { | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
|
||
port@0 { | ||
reg = <0>; | ||
lvds0_in: endpoint { | ||
remote-endpoint = <&du_out_lvds0>; | ||
}; | ||
}; | ||
port@1 { | ||
reg = <1>; | ||
lvds0_out: endpoint { | ||
}; | ||
}; | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.