exynos5-gsc.txt 717 B

123456789101112131415161718192021222324252627282930
  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. Example:
  8. gsc_0: gsc@0x13e00000 {
  9. compatible = "samsung,exynos5-gsc";
  10. reg = <0x13e00000 0x1000>;
  11. interrupts = <0 85 0>;
  12. };
  13. Aliases:
  14. Each G-Scaler node should have a numbered alias in the aliases node,
  15. in the form of gscN, N = 0...3. G-Scaler driver uses these aliases
  16. to retrieve the device IDs using "of_alias_get_id()" call.
  17. Example:
  18. aliases {
  19. gsc0 =&gsc_0;
  20. gsc1 =&gsc_1;
  21. gsc2 =&gsc_2;
  22. gsc3 =&gsc_3;
  23. };