-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Information about the pagesize and read-only-status may also come from the devicetree. Parse this data, too, and act accordingly. While we are here, change the initialization printout a bit. write_max is useful to know to detect performance bottlenecks, the rest is superfluous. Signed-off-by: Wolfram Sang <w.sang@pengutronix.de> Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
- Loading branch information
Wolfram Sang
authored and
Grant Likely
committed
Dec 24, 2010
1 parent
1945886
commit 9ed030d
Showing
2 changed files
with
55 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
EEPROMs (I2C) | ||
|
||
Required properties: | ||
|
||
- compatible : should be "<manufacturer>,<type>" | ||
If there is no specific driver for <manufacturer>, a generic | ||
driver based on <type> is selected. Possible types are: | ||
24c00, 24c01, 24c02, 24c04, 24c08, 24c16, 24c32, 24c64, | ||
24c128, 24c256, 24c512, 24c1024, spd | ||
|
||
- 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 | ||
|
||
Example: | ||
|
||
eeprom@52 { | ||
compatible = "atmel,24c32"; | ||
reg = <0x52>; | ||
pagesize = <32>; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters