2010-11-17 19:00:48 +07:00
|
|
|
EEPROMs (I2C)
|
|
|
|
|
|
|
|
Required properties:
|
|
|
|
|
2016-01-08 03:50:59 +07:00
|
|
|
- compatible : should be "<manufacturer>,<type>", like these:
|
|
|
|
|
|
|
|
"atmel,24c00", "atmel,24c01", "atmel,24c02", "atmel,24c04",
|
|
|
|
"atmel,24c08", "atmel,24c16", "atmel,24c32", "atmel,24c64",
|
|
|
|
"atmel,24c128", "atmel,24c256", "atmel,24c512", "atmel,24c1024"
|
|
|
|
|
|
|
|
"catalyst,24c32"
|
|
|
|
|
2017-01-14 02:03:41 +07:00
|
|
|
"microchip,24c128"
|
|
|
|
|
2016-01-08 03:50:59 +07:00
|
|
|
"ramtron,24c64"
|
|
|
|
|
2016-01-08 03:51:00 +07:00
|
|
|
"renesas,r1ex24002"
|
|
|
|
|
2017-06-16 01:54:03 +07:00
|
|
|
The following manufacturers values have been deprecated:
|
|
|
|
"at", "at24"
|
|
|
|
|
2016-01-08 03:50:59 +07:00
|
|
|
If there is no specific driver for <manufacturer>, a generic
|
2017-06-16 01:54:03 +07:00
|
|
|
device with <type> and manufacturer "atmel" should be used.
|
|
|
|
Possible types are:
|
2016-01-08 03:50:59 +07:00
|
|
|
"24c00", "24c01", "24c02", "24c04", "24c08", "24c16", "24c32", "24c64",
|
|
|
|
"24c128", "24c256", "24c512", "24c1024", "spd"
|
2010-11-17 19:00:48 +07:00
|
|
|
|
|
|
|
- reg : the I2C address of the EEPROM
|
|
|
|
|
|
|
|
Optional properties:
|
|
|
|
|
|
|
|
- pagesize : the length of the pagesize for writing. Please consult the
|
|
|
|
manual of your device, that value varies a lot. A wrong value
|
|
|
|
may result in data loss! If not specified, a safety value of
|
|
|
|
'1' is used which will be very slow.
|
|
|
|
|
|
|
|
- read-only: this parameterless property disables writes to the eeprom
|
|
|
|
|
2017-10-10 13:00:35 +07:00
|
|
|
- size: total eeprom size in bytes
|
|
|
|
|
2017-12-08 23:28:31 +07:00
|
|
|
- no-read-rollover:
|
|
|
|
This parameterless property indicates that the multi-address
|
|
|
|
eeprom does not automatically roll over reads to the next
|
|
|
|
slave address. Please consult the manual of your device.
|
|
|
|
|
2017-12-19 18:09:23 +07:00
|
|
|
- wp-gpios: GPIO to which the write-protect pin of the chip is connected.
|
|
|
|
|
2010-11-17 19:00:48 +07:00
|
|
|
Example:
|
|
|
|
|
|
|
|
eeprom@52 {
|
|
|
|
compatible = "atmel,24c32";
|
|
|
|
reg = <0x52>;
|
|
|
|
pagesize = <32>;
|
2017-12-19 18:09:23 +07:00
|
|
|
wp-gpios = <&gpio1 3 0>;
|
2010-11-17 19:00:48 +07:00
|
|
|
};
|