Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid
[cascardo/linux.git] / Documentation / devicetree / bindings / media / stih-cec.txt
1 STMicroelectronics STIH4xx HDMI CEC driver
2
3 Required properties:
4  - compatible : value should be "st,stih-cec"
5  - reg : Physical base address of the IP registers and length of memory
6          mapped region.
7  - clocks : from common clock binding: handle to HDMI CEC clock
8  - interrupts : HDMI CEC interrupt number to the CPU.
9  - pinctrl-names: Contains only one value - "default"
10  - pinctrl-0: Specifies the pin control groups used for CEC hardware.
11  - resets: Reference to a reset controller
12
13 Example for STIH407:
14
15 sti-cec@094a087c {
16         compatible = "st,stih-cec";
17         reg = <0x94a087c 0x64>;
18         clocks = <&clk_sysin>;
19         clock-names = "cec-clk";
20         interrupts = <GIC_SPI 140 IRQ_TYPE_NONE>;
21         interrupt-names = "cec-irq";
22         pinctrl-names = "default";
23         pinctrl-0 = <&pinctrl_cec0_default>;
24         resets = <&softreset STIH407_LPM_SOFTRESET>;
25 };