Staging
v0.7.0
https://github.com/torvalds/linux
Raw File
Tip revision: cd6c84d8f0cdc911df435bb075ba22ce3c605b07 authored by Linus Torvalds on 26 May 2019, 23:49:19 UTC
Linux 5.2-rc2
Tip revision: cd6c84d
vf610-ocotp.txt
On-Chip OTP Memory for Freescale Vybrid

Required Properties:
  compatible:
  - "fsl,vf610-ocotp" for VF5xx/VF6xx
  #address-cells : Should be 1
  #size-cells : Should be 1
  reg : Address and length of OTP controller and fuse map registers
  clocks : ipg clock we associate with the OCOTP peripheral

Example for Vybrid VF5xx/VF6xx:

	ocotp: ocotp@400a5000 {
		compatible = "fsl,vf610-ocotp";
		#address-cells = <1>;
		#size-cells = <1>;
		reg = <0x400a5000 0xCF0>;
		clocks = <&clks VF610_CLK_OCOTP>;
	};
back to top