mirror of
https://github.com/torvalds/linux.git
synced 2024-12-27 21:33:00 +00:00
4c9847b737
Improve the binding example by removing all the leading 0x to fix the
following dtc warnings:
Warning (unit_address_format): Node /XXX unit name should not have leading "0x"
Converted using the following command:
find Documentation/devicetree/bindings -name "*.txt" -exec sed -i -e 's/([^ ])\@0x([0-9a-f])/$1\@$2/g' {} +
This is a follow up to commit 48c926cd34
Signed-off-by: Mathieu Malaterre <malat@debian.org>
Signed-off-by: Rob Herring <robh@kernel.org>
26 lines
865 B
Plaintext
26 lines
865 B
Plaintext
Binding for the axi-clkgen clock generator
|
|
|
|
This binding uses the common clock binding[1].
|
|
|
|
[1] Documentation/devicetree/bindings/clock/clock-bindings.txt
|
|
|
|
Required properties:
|
|
- compatible : shall be "adi,axi-clkgen-1.00.a" or "adi,axi-clkgen-2.00.a".
|
|
- #clock-cells : from common clock binding; Should always be set to 0.
|
|
- reg : Address and length of the axi-clkgen register set.
|
|
- clocks : Phandle and clock specifier for the parent clock(s). This must
|
|
either reference one clock if only the first clock input is connected or two
|
|
if both clock inputs are connected. For the later case the clock connected
|
|
to the first input must be specified first.
|
|
|
|
Optional properties:
|
|
- clock-output-names : From common clock binding.
|
|
|
|
Example:
|
|
clock@ff000000 {
|
|
compatible = "adi,axi-clkgen";
|
|
#clock-cells = <0>;
|
|
reg = <0xff000000 0x1000>;
|
|
clocks = <&osc 1>;
|
|
};
|