0001 Device Tree bindings for Armada DRM CRTC driver
0002
0003 Required properties:
0004 - compatible: value should be "marvell,dove-lcd".
0005 - reg: base address and size of the LCD controller
0006 - interrupts: single interrupt number for the LCD controller
0007 - port: video output port with endpoints, as described by graph.txt
0008
0009 Optional properties:
0010
0011 - clocks: as described by clock-bindings.txt
0012 - clock-names: as described by clock-bindings.txt
0013 "axiclk" - axi bus clock for pixel clock
0014 "plldivider" - pll divider clock for pixel clock
0015 "ext_ref_clk0" - external clock 0 for pixel clock
0016 "ext_ref_clk1" - external clock 1 for pixel clock
0017
0018 Note: all clocks are optional but at least one must be specified.
0019 Further clocks may be added in the future according to requirements of
0020 different SoCs.
0021
0022 Example:
0023
0024 lcd0: lcd-controller@820000 {
0025 compatible = "marvell,dove-lcd";
0026 reg = <0x820000 0x1000>;
0027 interrupts = <47>;
0028 clocks = <&si5351 0>;
0029 clock-names = "ext_ref_clk_1";
0030 };