exynos5-gsc.txt 976 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. * Samsung Exynos5 G-Scaler device
  2. G-Scaler is used for scaling and color space conversion on EXYNOS5 SoCs.
  3. Required properties:
  4. - compatible: should be one of
  5. "samsung,exynos5250-gsc"
  6. "samsung,exynos5420-gsc"
  7. "samsung,exynos5433-gsc"
  8. "samsung,exynos5-gsc" (deprecated)
  9. - reg: should contain G-Scaler physical address location and length.
  10. - interrupts: should contain G-Scaler interrupt number
  11. Optional properties:
  12. - samsung,sysreg: handle to syscon used to control the system registers to
  13. set writeback input and destination
  14. Example:
  15. gsc_0: gsc@13e00000 {
  16. compatible = "samsung,exynos5250-gsc";
  17. reg = <0x13e00000 0x1000>;
  18. interrupts = <0 85 0>;
  19. };
  20. Aliases:
  21. Each G-Scaler node should have a numbered alias in the aliases node,
  22. in the form of gscN, N = 0...3. G-Scaler driver uses these aliases
  23. to retrieve the device IDs using "of_alias_get_id()" call.
  24. Example:
  25. aliases {
  26. gsc0 =&gsc_0;
  27. gsc1 =&gsc_1;
  28. gsc2 =&gsc_2;
  29. gsc3 =&gsc_3;
  30. };