Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1abbc60d authored by Benjamin Gaignard's avatar Benjamin Gaignard Committed by Mauro Carvalho Chehab
Browse files

[media] dt-bindings: media: stm32 cec driver



Add bindings documentation for stm32 CEC driver.

Signed-off-by: default avatarBenjamin Gaignard <benjamin.gaignard@linaro.org>
Acked-by: default avatarRob Herring <robh@kernel.org>
Signed-off-by: default avatarHans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
parent 47f910f0
Loading
Loading
Loading
Loading
+19 −0
Original line number Diff line number Diff line
STMicroelectronics STM32 CEC driver

Required properties:
 - compatible : value should be "st,stm32-cec"
 - reg : Physical base address of the IP registers and length of memory
	 mapped region.
 - clocks : from common clock binding: handle to CEC clocks
 - clock-names : from common clock binding: must be "cec" and "hdmi-cec".
 - interrupts : CEC interrupt number to the CPU.

Example for stm32f746:

cec: cec@40006c00 {
	compatible = "st,stm32-cec";
	reg = <0x40006C00 0x400>;
	interrupts = <94>;
	clocks = <&rcc 0 STM32F7_APB1_CLOCK(CEC)>, <&rcc 1 CLK_HDMI_CEC>;
	clock-names = "cec", "hdmi-cec";
};