diff mbox

[RESEND,v2,2/2] DT: eFuse: Add binding document for IMG Generic eFuse Controller

Message ID 1416624873-7823-3-git-send-email-Naidu.Tellapati@gmail.com
State Needs Review / ACK, archived
Headers show

Checks

Context Check Description
robh/checkpatch warning total: 1 errors, 0 warnings, 0 lines checked
robh/patch-applied success

Commit Message

naidu.tellapati@gmail.com Nov. 22, 2014, 2:54 a.m. UTC
From: Arul Ramasamy <Arul.Ramasamy@imgtec.com>

Add binding document for Imagination Technologies Generic eFuse Controller
present on Pistachio SoC.

Signed-off-by: Arul Ramasamy <Arul.Ramasamy@imgtec.com>
Signed-off-by: Jude Abraham <Jude.Abraham@imgtec.com>
Signed-off-by: Naidu Tellapati <Naidu.Tellapati@imgtec.com>
---
 .../devicetree/bindings/soc/img/img-efuse.txt          | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/soc/img/img-efuse.txt
diff mbox

Patch

diff --git a/Documentation/devicetree/bindings/soc/img/img-efuse.txt b/Documentation/devicetree/bindings/soc/img/img-efuse.txt
new file mode 100644
index 0000000..e87738f
--- /dev/null
+++ b/Documentation/devicetree/bindings/soc/img/img-efuse.txt
@@ -0,0 +1,18 @@ 
+* Imagination Technologies Generic eFuse controller
+
+Required properties:
+- compatible: Must be "img,efuse".
+- reg: Must contain the base address and length of the eFuse registers.
+- clocks: Must contain an entry for each entry in clock-names.
+  See ../clock/clock-bindings.txt for details.
+- clock-names: Must include the following entries:
+  - osc: External oscillator clock
+  - sys: eFuse system interface clock
+
+Example:
+efuse: efuse@18149200 {
+       compatible = "img,efuse";
+       reg = <0x18149200 0x200>;
+       clocks = <&osc>, <&system_clk>;
+       clock-names = "osc", "sys";
+};