-
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.
yaml --- r: 227712 b: refs/heads/master c: 9ed030d h: refs/heads/master v: v3
- Loading branch information
Wolfram Sang
authored and
Grant Likely
committed
Dec 24, 2010
1 parent
589d8b2
commit 96ef8f2
Showing
3 changed files
with
56 additions
and
7 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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 194588604765ac803f98fb9d19a36f6b835f4620 | ||
refs/heads/master: 9ed030d728f3bd03b6e869357da02725afda19a7 |
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