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

nvmem: dt: document lpc1850 OTP binding

Documenation for the LPC18xx/43xx OTP memory bindings.

Signed-off-by: Joachim Eastwood <manabian@gmail.com>
Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Joachim Eastwood and committed by
Greg Kroah-Hartman
b16ebc01 88806daf

+20
+20
Documentation/devicetree/bindings/nvmem/lpc1850-otp.txt
··· 1 + * NXP LPC18xx OTP memory 2 + 3 + Internal OTP (One Time Programmable) memory for NXP LPC18xx/43xx devices. 4 + 5 + Required properties: 6 + - compatible: Should be "nxp,lpc1850-otp" 7 + - reg: Must contain an entry with the physical base address and length 8 + for each entry in reg-names. 9 + - address-cells: must be set to 1. 10 + - size-cells: must be set to 1. 11 + 12 + See nvmem.txt for more information. 13 + 14 + Example: 15 + otp: otp@40045000 { 16 + compatible = "nxp,lpc1850-otp"; 17 + reg = <0x40045000 0x1000>; 18 + #address-cells = <1>; 19 + #size-cells = <1>; 20 + };