xtensa: fix high memory/reserved memory collision
[cris-mirror.git] / Documentation / devicetree / bindings / eeprom / at24.txt
blob1812c848e369e2a261f42067eaf65d5e563f7f9a
1 EEPROMs (I2C)
3 Required properties:
5   - compatible: Must be a "<manufacturer>,<model>" pair. The following <model>
6                 values are supported (assuming "atmel" as manufacturer):
8                 "atmel,24c00",
9                 "atmel,24c01",
10                 "atmel,24cs01",
11                 "atmel,24c02",
12                 "atmel,24cs02",
13                 "atmel,24mac402",
14                 "atmel,24mac602",
15                 "atmel,spd",
16                 "atmel,24c04",
17                 "atmel,24cs04",
18                 "atmel,24c08",
19                 "atmel,24cs08",
20                 "atmel,24c16",
21                 "atmel,24cs16",
22                 "atmel,24c32",
23                 "atmel,24cs32",
24                 "atmel,24c64",
25                 "atmel,24cs64",
26                 "atmel,24c128",
27                 "atmel,24c256",
28                 "atmel,24c512",
29                 "atmel,24c1024",
31                 If <manufacturer> is not "atmel", then a fallback must be used
32                 with the same <model> and "atmel" as manufacturer.
34                 Example:
35                         compatible = "microchip,24c128", "atmel,24c128";
37                 Supported manufacturers are:
39                 "catalyst",
40                 "microchip",
41                 "ramtron",
42                 "renesas",
43                 "nxp",
44                 "st",
46                 Some vendors use different model names for chips which are just
47                 variants of the above. Known such exceptions are listed below:
49                 "renesas,r1ex24002" - the fallback is "atmel,24c02"
51   - reg: The I2C address of the EEPROM.
53 Optional properties:
55   - pagesize: The length of the pagesize for writing. Please consult the
56               manual of your device, that value varies a lot. A wrong value
57               may result in data loss! If not specified, a safety value of
58               '1' is used which will be very slow.
60   - read-only: This parameterless property disables writes to the eeprom.
62   - size: Total eeprom size in bytes.
64   - no-read-rollover: This parameterless property indicates that the
65                       multi-address eeprom does not automatically roll over
66                       reads to the next slave address. Please consult the
67                       manual of your device.
69   - wp-gpios: GPIO to which the write-protect pin of the chip is connected.
71 Example:
73 eeprom@52 {
74         compatible = "atmel,24c32";
75         reg = <0x52>;
76         pagesize = <32>;
77         wp-gpios = <&gpio1 3 0>;