Merge branch 'fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux...
[linux/fpc-iii.git] / Documentation / devicetree / bindings / nvmem / rockchip-efuse.txt
blob8f86ab3b10468f99f91c43cfe4ca7e479fd9f010
1 = Rockchip eFuse device tree bindings =
3 Required properties:
4 - compatible: Should be "rockchip,rockchip-efuse"
5 - reg: Should contain the registers location and exact eFuse size
6 - clocks: Should be the clock id of eFuse
7 - clock-names: Should be "pclk_efuse"
9 = Data cells =
10 Are child nodes of eFuse, bindings of which as described in
11 bindings/nvmem/nvmem.txt
13 Example:
15         efuse: efuse@ffb40000 {
16                 compatible = "rockchip,rockchip-efuse";
17                 reg = <0xffb40000 0x20>;
18                 #address-cells = <1>;
19                 #size-cells = <1>;
20                 clocks = <&cru PCLK_EFUSE256>;
21                 clock-names = "pclk_efuse";
23                 /* Data cells */
24                 cpu_leakage: cpu_leakage {
25                         reg = <0x17 0x1>;
26                 };
27         };
29 = Data consumers =
30 Are device nodes which consume nvmem data cells.
32 Example:
34         cpu_leakage {
35                 ...
36                 nvmem-cells = <&cpu_leakage>;
37                 nvmem-cell-names = "cpu_leakage";
38         };