The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/contrib/device-tree/Bindings/media/exynos5-gsc.txt

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

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

Cache object: 248f3df6e2de3577832c8b1f27495245


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.