samsung-rotator.txt 916 B

123456789101112131415161718192021222324252627
  1. * Samsung Image Rotator
  2. Required properties:
  3. - compatible : value should be one of the following:
  4. (a) "samsung,exynos4210-rotator" for Rotator IP in Exynos4210
  5. (b) "samsung,exynos4212-rotator" for Rotator IP in Exynos4212/4412
  6. (c) "samsung,exynos5250-rotator" for Rotator IP in Exynos5250
  7. - reg : Physical base address of the IP registers and length of memory
  8. mapped region.
  9. - interrupts : Interrupt specifier for rotator interrupt, according to format
  10. specific to interrupt parent.
  11. - clocks : Clock specifier for rotator clock, according to generic clock
  12. bindings. (See Documentation/devicetree/bindings/clock/exynos*.txt)
  13. - clock-names : Names of clocks. For exynos rotator, it should be "rotator".
  14. Example:
  15. rotator@12810000 {
  16. compatible = "samsung,exynos4210-rotator";
  17. reg = <0x12810000 0x1000>;
  18. interrupts = <0 83 0>;
  19. clocks = <&clock 278>;
  20. clock-names = "rotator";
  21. };