arm,malidp.txt 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. ARM Mali-DP
  2. The following bindings apply to a family of Display Processors sold as
  3. licensable IP by ARM Ltd. The bindings describe the Mali DP500, DP550 and
  4. DP650 processors that offer multiple composition layers, support for
  5. rotation and scaling output.
  6. Required properties:
  7. - compatible: should be one of
  8. "arm,mali-dp500"
  9. "arm,mali-dp550"
  10. "arm,mali-dp650"
  11. depending on the particular implementation present in the hardware
  12. - reg: Physical base address and size of the block of registers used by
  13. the processor.
  14. - interrupts: Interrupt list, as defined in ../interrupt-controller/interrupts.txt,
  15. interrupt client nodes.
  16. - interrupt-names: name of the engine inside the processor that will
  17. use the corresponding interrupt. Should be one of "DE" or "SE".
  18. - clocks: A list of phandle + clock-specifier pairs, one for each entry
  19. in 'clock-names'
  20. - clock-names: A list of clock names. It should contain:
  21. - "pclk": for the APB interface clock
  22. - "aclk": for the AXI interface clock
  23. - "mclk": for the main processor clock
  24. - "pxlclk": for the pixel clock feeding the output PLL of the processor.
  25. - arm,malidp-output-port-lines: Array of u8 values describing the number
  26. of output lines per channel (R, G and B).
  27. Required sub-nodes:
  28. - port: The Mali DP connection to an encoder input port. The connection
  29. is modelled using the OF graph bindings specified in
  30. Documentation/devicetree/bindings/graph.txt
  31. Optional properties:
  32. - memory-region: phandle to a node describing memory (see
  33. Documentation/devicetree/bindings/reserved-memory/reserved-memory.txt)
  34. to be used for the framebuffer; if not present, the framebuffer may
  35. be located anywhere in memory.
  36. Example:
  37. / {
  38. ...
  39. dp0: malidp@6f200000 {
  40. compatible = "arm,mali-dp650";
  41. reg = <0 0x6f200000 0 0x20000>;
  42. memory-region = <&display_reserved>;
  43. interrupts = <0 168 IRQ_TYPE_LEVEL_HIGH>,
  44. <0 168 IRQ_TYPE_LEVEL_HIGH>;
  45. interrupt-names = "DE", "SE";
  46. clocks = <&oscclk2>, <&fpgaosc0>, <&fpgaosc1>, <&fpgaosc1>;
  47. clock-names = "pxlclk", "mclk", "aclk", "pclk";
  48. arm,malidp-output-port-lines = /bits/ 8 <8 8 8>;
  49. port {
  50. dp0_output: endpoint {
  51. remote-endpoint = <&tda998x_2_input>;
  52. };
  53. };
  54. };
  55. ...
  56. };