Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

nvmem: Add DT binding documentation for Vybrid OCOTP driver

Add the devicetree bindings for the Freescale Vybrid On-Chip
OTP driver.

Signed-off-by: Sanchayan Maity <maitysanchayan@gmail.com>
Acked-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Sanchayan Maity and committed by
Greg Kroah-Hartman
62306994 c566f365

+19
+19
Documentation/devicetree/bindings/nvmem/vf610-ocotp.txt
··· 1 + On-Chip OTP Memory for Freescale Vybrid 2 + 3 + Required Properties: 4 + compatible: 5 + - "fsl,vf610-ocotp" for VF5xx/VF6xx 6 + #address-cells : Should be 1 7 + #size-cells : Should be 1 8 + reg : Address and length of OTP controller and fuse map registers 9 + clocks : ipg clock we associate with the OCOTP peripheral 10 + 11 + Example for Vybrid VF5xx/VF6xx: 12 + 13 + ocotp: ocotp@400a5000 { 14 + compatible = "fsl,vf610-ocotp"; 15 + #address-cells = <1>; 16 + #size-cells = <1>; 17 + reg = <0x400a5000 0xCF0>; 18 + clocks = <&clks VF610_CLK_OCOTP>; 19 + };