diff options
author | Santosh Shilimkar <santosh.shilimkar@ti.com> | 2013-09-26 03:18:14 +0200 |
---|---|---|
committer | Mike Turquette <mturquette@linaro.org> | 2013-10-08 03:16:30 +0200 |
commit | 7affe5685c962ed0bc0fadf307400484b2276c89 (patch) | |
tree | 91022e1e58ea9c7593146e6d053a7ab0cd434303 /Documentation/devicetree/bindings/clock/keystone-gate.txt | |
parent | clk: keystone: add Keystone PLL clock driver (diff) | |
download | linux-7affe5685c962ed0bc0fadf307400484b2276c89.tar.xz linux-7affe5685c962ed0bc0fadf307400484b2276c89.zip |
clk: keystone: Add gate control clock driver
Add the driver for the clock gate control which uses PSC (Power Sleep
Controller) IP on Keystone 2 based SOCs. It is responsible for enabling and
disabling of the clocks for different IPs present in the SoC.
Signed-off-by: Santosh Shilimkar <santosh.shilimkar@ti.com>
Signed-off-by: Mike Turquette <mturquette@linaro.org>
Diffstat (limited to 'Documentation/devicetree/bindings/clock/keystone-gate.txt')
-rw-r--r-- | Documentation/devicetree/bindings/clock/keystone-gate.txt | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/clock/keystone-gate.txt b/Documentation/devicetree/bindings/clock/keystone-gate.txt new file mode 100644 index 000000000000..c5aa187026e3 --- /dev/null +++ b/Documentation/devicetree/bindings/clock/keystone-gate.txt @@ -0,0 +1,29 @@ +Status: Unstable - ABI compatibility may be broken in the future + +Binding for Keystone gate control driver which uses PSC controller IP. + +This binding uses the common clock binding[1]. + +[1] Documentation/devicetree/bindings/clock/clock-bindings.txt + +Required properties: +- compatible : shall be "ti,keystone,psc-clock". +- #clock-cells : from common clock binding; shall be set to 0. +- clocks : parent clock phandle +- reg : psc control and domain address address space +- reg-names : psc control and domain registers +- domain-id : psc domain id needed to check the transition state register + +Optional properties: +- clock-output-names : From common clock binding to override the + default output clock name +Example: + clkusb: clkusb { + #clock-cells = <0>; + compatible = "ti,keystone,psc-clock"; + clocks = <&chipclk16>; + clock-output-names = "usb"; + reg = <0x02350008 0xb00>, <0x02350000 0x400>; + reg-names = "control", "domain"; + domain-id = <0>; + }; |