diff options
author | Mike Turquette <mturquette@linaro.org> | 2014-05-14 23:16:32 -0700 |
---|---|---|
committer | Mike Turquette <mturquette@linaro.org> | 2014-05-14 23:16:32 -0700 |
commit | 6ed8eb59e53b3f411bce36b9fa6bd491863888ef (patch) | |
tree | 4c3e5e44abc2ea8effee26b2008f0375b302e60b /Documentation | |
parent | a97181adf1502128e2945b4fef2591249c565467 (diff) | |
parent | 5efaf09021a5817e5a274aa2d2fad8d92d12ed92 (diff) | |
download | blackbird-obmc-linux-6ed8eb59e53b3f411bce36b9fa6bd491863888ef.tar.gz blackbird-obmc-linux-6ed8eb59e53b3f411bce36b9fa6bd491863888ef.zip |
Merge tag 'clk-hisi-for-v3.16' of https://git.kernel.org/pub/scm/linux/kernel/git/hzhuang1/linux into clk-next-hisilicon
enable hix5hd2 clock
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/devicetree/bindings/clock/hix5hd2-clock.txt | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/clock/hix5hd2-clock.txt b/Documentation/devicetree/bindings/clock/hix5hd2-clock.txt new file mode 100644 index 000000000000..7894a64887cb --- /dev/null +++ b/Documentation/devicetree/bindings/clock/hix5hd2-clock.txt @@ -0,0 +1,31 @@ +* Hisilicon Hix5hd2 Clock Controller + +The hix5hd2 clock controller generates and supplies clock to various +controllers within the hix5hd2 SoC. + +Required Properties: + +- compatible: should be "hisilicon,hix5hd2-clock" +- reg: Address and length of the register set +- #clock-cells: Should be <1> + +Each clock is assigned an identifier and client nodes use this identifier +to specify the clock which they consume. + +All these identifier could be found in <dt-bindings/clock/hix5hd2-clock.h>. + +Examples: + clock: clock@f8a22000 { + compatible = "hisilicon,hix5hd2-clock"; + reg = <0xf8a22000 0x1000>; + #clock-cells = <1>; + }; + + uart0: uart@f8b00000 { + compatible = "arm,pl011", "arm,primecell"; + reg = <0xf8b00000 0x1000>; + interrupts = <0 49 4>; + clocks = <&clock HIX5HD2_FIXED_83M>; + clock-names = "apb_pclk"; + status = "disabled"; + }; |