0001 = Amlogic Meson GX eFuse device tree bindings =
0002
0003 Required properties:
0004 - compatible: should be "amlogic,meson-gxbb-efuse"
0005 - clocks: phandle to the efuse peripheral clock provided by the
0006 clock controller.
0007 - secure-monitor: phandle to the secure-monitor node
0008
0009 = Data cells =
0010 Are child nodes of eFuse, bindings of which as described in
0011 bindings/nvmem/nvmem.txt
0012
0013 Example:
0014
0015 efuse: efuse {
0016 compatible = "amlogic,meson-gxbb-efuse";
0017 clocks = <&clkc CLKID_EFUSE>;
0018 #address-cells = <1>;
0019 #size-cells = <1>;
0020 secure-monitor = <&sm>;
0021
0022 sn: sn@14 {
0023 reg = <0x14 0x10>;
0024 };
0025
0026 eth_mac: eth_mac@34 {
0027 reg = <0x34 0x10>;
0028 };
0029
0030 bid: bid@46 {
0031 reg = <0x46 0x30>;
0032 };
0033 };
0034
0035 sm: secure-monitor {
0036 compatible = "amlogic,meson-gxbb-sm";
0037 };
0038
0039 = Data consumers =
0040 Are device nodes which consume nvmem data cells.
0041
0042 For example:
0043
0044 eth_mac {
0045 ...
0046 nvmem-cells = <ð_mac>;
0047 nvmem-cell-names = "eth_mac";
0048 };