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/s5p-cec.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 HDMI CEC driver
    2 
    3 The HDMI CEC module is present is Samsung SoCs and its purpose is to
    4 handle communication between HDMI connected devices over the CEC bus.
    5 
    6 Required properties:
    7   - compatible : value should be following
    8         "samsung,s5p-cec"
    9 
   10   - reg : Physical base address of the IP registers and length of memory
   11           mapped region.
   12 
   13   - interrupts : HDMI CEC interrupt number to the CPU.
   14   - clocks : from common clock binding: handle to HDMI CEC clock.
   15   - clock-names : from common clock binding: must contain "hdmicec",
   16                   corresponding to entry in the clocks property.
   17   - samsung,syscon-phandle - phandle to the PMU system controller
   18   - hdmi-phandle - phandle to the HDMI controller, see also cec.txt.
   19 
   20 Optional:
   21   - needs-hpd : if present the CEC support is only available when the HPD
   22                 is high. See cec.txt for more details.
   23 
   24 Example:
   25 
   26 hdmicec: cec@100b0000 {
   27         compatible = "samsung,s5p-cec";
   28         reg = <0x100B0000 0x200>;
   29         interrupts = <0 114 0>;
   30         clocks = <&clock CLK_HDMI_CEC>;
   31         clock-names = "hdmicec";
   32         samsung,syscon-phandle = <&pmu_system_controller>;
   33         hdmi-phandle = <&hdmi>;
   34         pinctrl-names = "default";
   35         pinctrl-0 = <&hdmi_cec>;
   36 };

Cache object: ac33895136faf12ea8e4ced6ee4e5ddf


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