1Amlogic Meson6/Meson8/Meson8b efuse
2
3Required Properties:
4- compatible: depending on the SoC this should be one of:
5	- "amlogic,meson6-efuse"
6	- "amlogic,meson8-efuse"
7	- "amlogic,meson8b-efuse"
8- reg: base address and size of the efuse registers
9- clocks: a reference to the efuse core gate clock
10- clock-names: must be "core"
11
12All properties and sub-nodes as well as the consumer bindings
13defined in nvmem.txt in this directory are also supported.
14
15
16Example:
17	efuse: nvmem@0 {
18		compatible = "amlogic,meson8-efuse";
19		reg = <0x0 0x2000>;
20		clocks = <&clkc CLKID_EFUSE>;
21		clock-names = "core";
22	};
23