The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/contrib/device-tree/Bindings/nvmem/lpc1857-eeprom.txt

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

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

Cache object: 1d3651a06849b922926596e91cac57e5


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.