st,stih4xx.txt 858 B

1234567891011121314151617181920212223242526272829303132
  1. STMicroelectronics stih4xx platforms
  2. bdisp: 2D blitter for STMicroelectronics SoC.
  3. Required properties:
  4. - compatible: should be "st,stih407-bdisp".
  5. - reg: BDISP physical address location and length.
  6. - interrupts: BDISP interrupt number.
  7. - clocks: from common clock binding: handle hardware IP needed clocks, the
  8. number of clocks may depend on the SoC type.
  9. See ../clocks/clock-bindings.txt for details.
  10. - clock-names: names of the clocks listed in clocks property in the same order.
  11. Example:
  12. bdisp0:bdisp@9f10000 {
  13. compatible = "st,stih407-bdisp";
  14. reg = <0x9f10000 0x1000>;
  15. interrupts = <GIC_SPI 38 IRQ_TYPE_NONE>;
  16. clock-names = "bdisp";
  17. clocks = <&clk_s_c0_flexgen CLK_IC_BDISP_0>;
  18. };
  19. Aliases:
  20. Each BDISP should have a numbered alias in the aliases node, in the form of
  21. bdispN, N = 0 or 1.
  22. Example:
  23. aliases {
  24. bdisp0 = &bdisp0;
  25. };