exynos5-gsc.txt 852 B

1234567891011121314151617181920212223242526272829303132333435
  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 "samsung,exynos5-gsc"
  5. - reg: should contain G-Scaler physical address location and length.
  6. - interrupts: should contain G-Scaler interrupt number
  7. Optional properties:
  8. - samsung,sysreg: handle to syscon used to control the system registers to
  9. set writeback input and destination
  10. Example:
  11. gsc_0: gsc@0x13e00000 {
  12. compatible = "samsung,exynos5-gsc";
  13. reg = <0x13e00000 0x1000>;
  14. interrupts = <0 85 0>;
  15. };
  16. Aliases:
  17. Each G-Scaler node should have a numbered alias in the aliases node,
  18. in the form of gscN, N = 0...3. G-Scaler driver uses these aliases
  19. to retrieve the device IDs using "of_alias_get_id()" call.
  20. Example:
  21. aliases {
  22. gsc0 =&gsc_0;
  23. gsc1 =&gsc_1;
  24. gsc2 =&gsc_2;
  25. gsc3 =&gsc_3;
  26. };