brintos

brintos / linux-shallow public Read only

0
0
Text · 533 B · 853b6a7 Raw
21 lines · plain
1* NXP LPC18xx OTP memory2 3Internal OTP (One Time Programmable) memory for NXP LPC18xx/43xx devices.4 5Required properties:6  - compatible: Should be "nxp,lpc1850-otp"7  - reg: Must contain an entry with the physical base address and length8    for each entry in reg-names.9  - address-cells: must be set to 1.10  - size-cells: must be set to 1.11 12See nvmem.txt for more information.13 14Example:15  otp: otp@40045000 {16    compatible = "nxp,lpc1850-otp";17    reg = <0x40045000 0x1000>;18    #address-cells = <1>;19    #size-cells = <1>;20  };21