mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-21 08:46:49 +07:00
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>
19 lines
466 B
Plaintext
19 lines
466 B
Plaintext
* Freescale i.MX One wire bus master controller
|
|
|
|
Required properties:
|
|
- compatible : should be "fsl,imx21-owire"
|
|
- reg : Address and length of the register set for the device
|
|
|
|
Optional properties:
|
|
- clocks : phandle of clock that supplies the module (required if platform
|
|
clock bindings use device tree)
|
|
|
|
Example:
|
|
|
|
- From imx53.dtsi:
|
|
owire: owire@63fa4000 {
|
|
compatible = "fsl,imx53-owire", "fsl,imx21-owire";
|
|
reg = <0x63fa4000 0x4000>;
|
|
clocks = <&clks 159>;
|
|
};
|