4da722ca19
Pretty much any node can have a status property, so it doesn't need to be in examples. Converted with the following command and removed examples with SoC and board specific splits: git grep -l -E 'status.*=.*' Documentation/devicetree/ | xargs sed -i -E '/\sstatus.*=.*"(disabled|ok|okay)/d' Acked-by: Mark Rutland <mark.rutland@arm.com> Signed-off-by: Rob Herring <robh@kernel.org>
18 lines
464 B
Plaintext
18 lines
464 B
Plaintext
Device Tree bindings for Freescale TCON Driver
|
|
|
|
Required properties:
|
|
- compatible: Should be one of
|
|
* "fsl,vf610-tcon".
|
|
|
|
- reg: Address and length of the register set for tcon.
|
|
- clocks: From common clock binding: handle to tcon ipg clock.
|
|
- clock-names: From common clock binding: Shall be "ipg".
|
|
|
|
Examples:
|
|
timing-controller@4003d000 {
|
|
compatible = "fsl,vf610-tcon";
|
|
reg = <0x4003d000 0x1000>;
|
|
clocks = <&clks VF610_CLK_TCON0>;
|
|
clock-names = "ipg";
|
|
};
|