1On-Chip OTP Memory for Freescale i.MX23/i.MX28
2
3Required properties :
4- compatible :
5  - "fsl,imx23-ocotp" for i.MX23
6  - "fsl,imx28-ocotp" for i.MX28
7- #address-cells : Should be 1
8- #size-cells : Should be 1
9- reg : Address and length of OTP controller registers
10- clocks : Should contain a reference to the hbus clock
11
12= Data cells =
13Are child nodes of mxs-ocotp, bindings of which as described in
14bindings/nvmem/nvmem.txt
15
16Example for i.MX28:
17
18	ocotp: ocotp@8002c000 {
19		compatible = "fsl,imx28-ocotp", "fsl,ocotp";
20		#address-cells = <1>;
21		#size-cells = <1>;
22		reg = <0x8002c000 0x2000>;
23		clocks = <&clks 25>;
24	};
25