tilcdc.txt 882 B

1234567891011121314151617181920212223242526272829
  1. Device-Tree bindings for tilcdc DRM driver
  2. Required properties:
  3. - compatible: value should be "ti,am33xx-tilcdc".
  4. - interrupts: the interrupt number
  5. - reg: base address and size of the LCDC device
  6. Recommended properties:
  7. - interrupt-parent: the phandle for the interrupt controller that
  8. services interrupts for this device.
  9. - ti,hwmods: Name of the hwmod associated to the LCDC
  10. Optional properties:
  11. - max-bandwidth: The maximum pixels per second that the memory
  12. interface / lcd controller combination can sustain
  13. - max-width: The maximum horizontal pixel width supported by
  14. the lcd controller.
  15. - max-pixelclock: The maximum pixel clock that can be supported
  16. by the lcd controller in KHz.
  17. Example:
  18. fb: fb@4830e000 {
  19. compatible = "ti,am33xx-tilcdc";
  20. reg = <0x4830e000 0x1000>;
  21. interrupt-parent = <&intc>;
  22. interrupts = <36>;
  23. ti,hwmods = "lcdc";
  24. };