samsung-g2d.txt 971 B

12345678910111213141516171819202122232425262728
  1. * Samsung 2D Graphics Accelerator
  2. Required properties:
  3. - compatible : value should be one among the following:
  4. (a) "samsung,s5pv210-g2d" for G2D IP present in S5PV210 & Exynos4210 SoC
  5. (b) "samsung,exynos4212-g2d" for G2D IP present in Exynos4x12 SoCs
  6. (c) "samsung,exynos5250-g2d" for G2D IP present in Exynos5250 SoC
  7. - reg : Physical base address of the IP registers and length of memory
  8. mapped region.
  9. - interrupts : G2D interrupt number to the CPU.
  10. - clocks : from common clock binding: handle to G2D clocks.
  11. - clock-names : names of clocks listed in clocks property, in the same
  12. order, depending on SoC type:
  13. - for S5PV210 and Exynos4 based SoCs: "fimg2d" and
  14. "sclk_fimg2d"
  15. - for Exynos5250 SoC: "fimg2d".
  16. Example:
  17. g2d@12800000 {
  18. compatible = "samsung,s5pv210-g2d";
  19. reg = <0x12800000 0x1000>;
  20. interrupts = <0 89 0>;
  21. clocks = <&clock 177>, <&clock 277>;
  22. clock-names = "sclk_fimg2d", "fimg2d";
  23. status = "disabled";
  24. };