brintos

brintos / linux-shallow public Read only

0
0
Text · 527 B · 72ba628 Raw
20 lines · plain
1On-Chip OTP Memory for Freescale Vybrid2 3Required Properties:4  compatible:5  - "fsl,vf610-ocotp", "syscon" for VF5xx/VF6xx6  #address-cells : Should be 17  #size-cells : Should be 18  reg : Address and length of OTP controller and fuse map registers9  clocks : ipg clock we associate with the OCOTP peripheral10 11Example for Vybrid VF5xx/VF6xx:12 13	ocotp: ocotp@400a5000 {14		compatible = "fsl,vf610-ocotp", "syscon";15		#address-cells = <1>;16		#size-cells = <1>;17		reg = <0x400a5000 0xCF0>;18		clocks = <&clks VF610_CLK_OCOTP>;19	};20