mirror of
https://github.com/torvalds/linux.git
synced 2024-12-19 17:41:29 +00:00
efdbd7345f
This is a quite large renaming to consolidate display related bindings into a single "display" directory from various scattered locations of video, drm, gpu, fb, mipi, and panel. The prior location was somewhat based on the Linux driver location, but bindings should be independent of that. Signed-off-by: Rob Herring <robh@kernel.org> Cc: Pawel Moll <pawel.moll@arm.com> Cc: Mark Rutland <mark.rutland@arm.com> Cc: Ian Campbell <ijc+devicetree@hellion.org.uk> Cc: Kumar Gala <galak@codeaurora.org>
23 lines
622 B
Plaintext
23 lines
622 B
Plaintext
Device Tree bindings for Freescale DCU DRM Driver
|
|
|
|
Required properties:
|
|
- compatible: Should be one of
|
|
* "fsl,ls1021a-dcu".
|
|
* "fsl,vf610-dcu".
|
|
|
|
- reg: Address and length of the register set for dcu.
|
|
- clocks: From common clock binding: handle to dcu clock.
|
|
- clock-names: From common clock binding: Shall be "dcu".
|
|
- big-endian Boolean property, LS1021A DCU registers are big-endian.
|
|
- fsl,panel: The phandle to panel node.
|
|
|
|
Examples:
|
|
dcu: dcu@2ce0000 {
|
|
compatible = "fsl,ls1021a-dcu";
|
|
reg = <0x0 0x2ce0000 0x0 0x10000>;
|
|
clocks = <&platform_clk 0>;
|
|
clock-names = "dcu";
|
|
big-endian;
|
|
fsl,panel = <&panel>;
|
|
};
|