aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Documentation/devicetree/bindings/media/cec/cec-gpio.yaml
blob: 64d7ec057672881937223a9743aa149a6e2349af (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
%YAML 1.2
---
$id: http://devicetree.org/schemas/media/cec/cec-gpio.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#

title: HDMI CEC GPIO

maintainers:
  - Hans Verkuil <hverkuil-cisco@xs4all.nl>

description: |
  The HDMI CEC GPIO module supports CEC implementations where the CEC line is
  hooked up to a pull-up GPIO line and - optionally - the HPD line is hooked up
  to another GPIO line.

  Please note:: the maximum voltage for the CEC line is 3.63V, for the HPD and
  5V lines it is 5.3V. So you may need some sort of level conversion
  circuitry when connecting them to a GPIO line.

properties:
  compatible:
    const: cec-gpio

  cec-gpios:
    maxItems: 1
    description:
      GPIO that the CEC line is connected to. The line should be tagged as open
      drain.

  hpd-gpios:
    maxItems: 1
    description:
      GPIO that the HPD line is connected to.  Used for debugging HPD changes
      when the CEC line is not associated with an HDMI receiver/transmitter.

  v5-gpios:
    maxItems: 1
    description:
      GPIO that the 5V line is connected to.  Used for debugging changes on the
      5V line.

required:
  - compatible
  - cec-gpios

allOf:
  - $ref: cec-common.yaml#
  - if:
      required:
        - hdmi-phandle
    then:
      properties:
        hpd-gpios: false

  - if:
      required:
        - hpd-gpios
    then:
      properties:
        hdmi-phandle: false

unevaluatedProperties: false

examples:
  - |
    #include <dt-bindings/gpio/gpio.h>

    cec {
        compatible = "cec-gpio";
        cec-gpios = <&gpio 7 (GPIO_ACTIVE_HIGH|GPIO_OPEN_DRAIN)>;
        hpd-gpios = <&gpio 17 GPIO_ACTIVE_HIGH>;
        v5-gpios = <&gpio 22 GPIO_ACTIVE_HIGH>;
    };