samsung-scaler.txt 918 B

123456789101112131415161718192021222324252627
  1. * Samsung Exynos Image Scaler
  2. Required properties:
  3. - compatible : value should be one of the following:
  4. (a) "samsung,exynos5420-scaler" for Scaler IP in Exynos5420
  5. (b) "samsung,exynos5433-scaler" for Scaler IP in Exynos5433
  6. - reg : Physical base address of the IP registers and length of memory
  7. mapped region.
  8. - interrupts : Interrupt specifier for scaler interrupt, according to format
  9. specific to interrupt parent.
  10. - clocks : Clock specifier for scaler clock, according to generic clock
  11. bindings. (See Documentation/devicetree/bindings/clock/exynos*.txt)
  12. - clock-names : Names of clocks. For exynos scaler, it should be "mscl"
  13. on 5420 and "pclk", "aclk" and "aclk_xiu" on 5433.
  14. Example:
  15. scaler@12800000 {
  16. compatible = "samsung,exynos5420-scaler";
  17. reg = <0x12800000 0x1294>;
  18. interrupts = <0 220 IRQ_TYPE_LEVEL_HIGH>;
  19. clocks = <&clock CLK_MSCL0>;
  20. clock-names = "mscl";
  21. };