lpc1857-eeprom.txt 918 B

12345678910111213141516171819202122232425262728
  1. * NXP LPC18xx EEPROM memory NVMEM driver
  2. Required properties:
  3. - compatible: Should be "nxp,lpc1857-eeprom"
  4. - reg: Must contain an entry with the physical base address and length
  5. for each entry in reg-names.
  6. - reg-names: Must include the following entries.
  7. - reg: EEPROM registers.
  8. - mem: EEPROM address space.
  9. - clocks: Must contain an entry for each entry in clock-names.
  10. - clock-names: Must include the following entries.
  11. - eeprom: EEPROM operating clock.
  12. - resets: Should contain a reference to the reset controller asserting
  13. the EEPROM in reset.
  14. - interrupts: Should contain EEPROM interrupt.
  15. Example:
  16. eeprom: eeprom@4000e000 {
  17. compatible = "nxp,lpc1857-eeprom";
  18. reg = <0x4000e000 0x1000>,
  19. <0x20040000 0x4000>;
  20. reg-names = "reg", "mem";
  21. clocks = <&ccu1 CLK_CPU_EEPROM>;
  22. clock-names = "eeprom";
  23. resets = <&rgu 27>;
  24. interrupts = <4>;
  25. };