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/display/exynos/exynos-mic.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 Device-Tree bindings for Samsung Exynos SoC mobile image compressor (MIC)
    2 
    3 MIC (mobile image compressor) resides between decon and mipi dsi. Mipi dsi is
    4 not capable to transfer high resoltuion frame data as decon can send. MIC
    5 solves this problem by compressing the frame data by 1/2 before it is
    6 transferred through mipi dsi. The compressed frame data must be uncompressed in
    7 the panel PCB.
    8 
    9 Required properties:
   10 - compatible: value should be "samsung,exynos5433-mic".
   11 - reg: physical base address and length of the MIC registers set and system
   12        register of mic.
   13 - clocks: must include clock specifiers corresponding to entries in the
   14           clock-names property.
   15 - clock-names: list of clock names sorted in the same order as the clocks
   16                property. Must contain "pclk_mic0", "sclk_rgb_vclk_to_mic0".
   17 - samsung,disp-syscon: the reference node for syscon for DISP block.
   18 - ports: contains a port which is connected to decon node and dsi node.
   19          address-cells and size-cells must 1 and 0, respectively.
   20 - port: contains an endpoint node which is connected to the endpoint in the
   21         decon node or dsi node. The reg value must be 0 and 1 respectively.
   22 
   23 Example:
   24 SoC specific DT entry:
   25 mic: mic@13930000 {
   26         compatible = "samsung,exynos5433-mic";
   27         reg = <0x13930000 0x48>;
   28         clocks = <&cmu_disp CLK_PCLK_MIC0>,
   29                <&cmu_disp CLK_SCLK_RGB_VCLK_TO_MIC0>;
   30         clock-names = "pclk_mic0", "sclk_rgb_vclk_to_mic0";
   31         samsung,disp-syscon = <&syscon_disp>;
   32 
   33         ports {
   34                 #address-cells = <1>;
   35                 #size-cells = <0>;
   36 
   37                 port@0 {
   38                         reg = <0>;
   39                         mic_to_decon: endpoint {
   40                                 remote-endpoint = <&decon_to_mic>;
   41                         };
   42                 };
   43 
   44                 port@1 {
   45                         reg = <1>;
   46                         mic_to_dsi: endpoint {
   47                                 remote-endpoint = <&dsi_to_mic>;
   48                         };
   49                 };
   50         };
   51 };

Cache object: 16737fd965517f6329acf411620503e2


[ 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.