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>
29 lines
798 B
Plaintext
29 lines
798 B
Plaintext
* Samsung Exynos5440 Clock Controller
|
|
|
|
The Exynos5440 clock controller generates and supplies clock to various
|
|
controllers within the Exynos5440 SoC.
|
|
|
|
Required Properties:
|
|
|
|
- compatible: should be "samsung,exynos5440-clock".
|
|
|
|
- reg: physical base address of the controller and length of memory mapped
|
|
region.
|
|
|
|
- #clock-cells: should be 1.
|
|
|
|
Each clock is assigned an identifier and client nodes can use this identifier
|
|
to specify the clock which they consume.
|
|
|
|
All available clocks are defined as preprocessor macros in
|
|
dt-bindings/clock/exynos5440.h header and can be used in device
|
|
tree sources.
|
|
|
|
Example: An example of a clock controller node is listed below.
|
|
|
|
clock: clock-controller@10010000 {
|
|
compatible = "samsung,exynos5440-clock";
|
|
reg = <0x160000 0x10000>;
|
|
#clock-cells = <1>;
|
|
};
|