Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1205010
| From | Shunqian Zheng <zhengsq@rock-chips.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH v2 4/5] Documentation: rockchip-efuse: describe the usage of eFuse |
| Date | 2015-08-11 12:20 +0200 |
| Message-ID | <pWeP0-27X-35@gated-at.bofh.it> (permalink) |
| References | <pWeOZ-27X-5@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
From: ZhengShunQian <zhengsq@rock-chips.com>
This patch add the bindings document of rockchip eFuse driver.
Cc: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
Cc: Heiko Stuebner <heiko@sntech.de>
Signed-off-by: ZhengShunQian <zhengsq@rock-chips.com>
---
.../devicetree/bindings/nvmem/rockchip-efuse.txt | 38 ++++++++++++++++++++++
1 file changed, 38 insertions(+)
create mode 100644 Documentation/devicetree/bindings/nvmem/rockchip-efuse.txt
diff --git a/Documentation/devicetree/bindings/nvmem/rockchip-efuse.txt b/Documentation/devicetree/bindings/nvmem/rockchip-efuse.txt
new file mode 100644
index 0000000..8f86ab3
--- /dev/null
+++ b/Documentation/devicetree/bindings/nvmem/rockchip-efuse.txt
@@ -0,0 +1,38 @@
+= Rockchip eFuse device tree bindings =
+
+Required properties:
+- compatible: Should be "rockchip,rockchip-efuse"
+- reg: Should contain the registers location and exact eFuse size
+- clocks: Should be the clock id of eFuse
+- clock-names: Should be "pclk_efuse"
+
+= Data cells =
+Are child nodes of eFuse, bindings of which as described in
+bindings/nvmem/nvmem.txt
+
+Example:
+
+ efuse: efuse@ffb40000 {
+ compatible = "rockchip,rockchip-efuse";
+ reg = <0xffb40000 0x20>;
+ #address-cells = <1>;
+ #size-cells = <1>;
+ clocks = <&cru PCLK_EFUSE256>;
+ clock-names = "pclk_efuse";
+
+ /* Data cells */
+ cpu_leakage: cpu_leakage {
+ reg = <0x17 0x1>;
+ };
+ };
+
+= Data consumers =
+Are device nodes which consume nvmem data cells.
+
+Example:
+
+ cpu_leakage {
+ ...
+ nvmem-cells = <&cpu_leakage>;
+ nvmem-cell-names = "cpu_leakage";
+ };
--
1.9.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH v2 0/5] Add eFuse driver of Rockchip SoC Shunqian Zheng <zhengsq@rock-chips.com> - 2015-08-11 12:20 +0200
[PATCH v2 3/5] nvmem: rockchip-efuse: implement efuse driver Shunqian Zheng <zhengsq@rock-chips.com> - 2015-08-11 12:20 +0200
[PATCH v2 4/5] Documentation: rockchip-efuse: describe the usage of eFuse Shunqian Zheng <zhengsq@rock-chips.com> - 2015-08-11 12:20 +0200
[PATCH v2 1/5] clk: rockchip: rk3288: Add the clock id of eFuse Shunqian Zheng <zhengsq@rock-chips.com> - 2015-08-11 12:20 +0200
Re: [PATCH v2 1/5] clk: rockchip: rk3288: Add the clock id of eFuse Stephen Boyd <sboyd@codeaurora.org> - 2015-08-12 03:40 +0200
[PATCH v2 5/5] ARM: dts: rockchip: add eFuse config of rk3288 SoC Shunqian Zheng <zhengsq@rock-chips.com> - 2015-08-11 12:30 +0200
[PATCH v2 2/5] nvmem: fix the out-of-range leak in read/write() Shunqian Zheng <zhengsq@rock-chips.com> - 2015-08-11 12:30 +0200
csiph-web