0001 * NXP LPC18xx EEPROM memory NVMEM driver
0002
0003 Required properties:
0004 - compatible: Should be "nxp,lpc1857-eeprom"
0005 - reg: Must contain an entry with the physical base address and length
0006 for each entry in reg-names.
0007 - reg-names: Must include the following entries.
0008 - reg: EEPROM registers.
0009 - mem: EEPROM address space.
0010 - clocks: Must contain an entry for each entry in clock-names.
0011 - clock-names: Must include the following entries.
0012 - eeprom: EEPROM operating clock.
0013 - resets: Should contain a reference to the reset controller asserting
0014 the EEPROM in reset.
0015 - interrupts: Should contain EEPROM interrupt.
0016
0017 Example:
0018
0019 eeprom: eeprom@4000e000 {
0020 compatible = "nxp,lpc1857-eeprom";
0021 reg = <0x4000e000 0x1000>,
0022 <0x20040000 0x4000>;
0023 reg-names = "reg", "mem";
0024 clocks = <&ccu1 CLK_CPU_EEPROM>;
0025 clock-names = "eeprom";
0026 resets = <&rgu 27>;
0027 interrupts = <4>;
0028 };