marvell,dove-lcd.txt 958 B

12345678910111213141516171819202122232425262728293031
  1. Device Tree bindings for Armada DRM CRTC driver
  2. Required properties:
  3. - compatible: value should be "marvell,dove-lcd".
  4. - reg: base address and size of the LCD controller
  5. - interrupts: single interrupt number for the LCD controller
  6. - port: video output port with endpoints, as described by graph.txt
  7. Optional properties:
  8. - clocks: as described by clock-bindings.txt
  9. - clock-names: as described by clock-bindings.txt
  10. "axiclk" - axi bus clock for pixel clock
  11. "plldivider" - pll divider clock for pixel clock
  12. "ext_ref_clk0" - external clock 0 for pixel clock
  13. "ext_ref_clk1" - external clock 1 for pixel clock
  14. Note: all clocks are optional but at least one must be specified.
  15. Further clocks may be added in the future according to requirements of
  16. different SoCs.
  17. Example:
  18. lcd0: lcd-controller@820000 {
  19. compatible = "marvell,dove-lcd";
  20. reg = <0x820000 0x1000>;
  21. interrupts = <47>;
  22. clocks = <&si5351 0>;
  23. clock-names = "ext_ref_clk_1";
  24. };