forked from torvalds/linux
-
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.
i2c: slave-eeprom: update documentation
Add more details which have either been missing ever since or describe recent additions. Signed-off-by: Wolfram Sang <[email protected]> Reviewed-by: Niklas Söderlund <[email protected]> Reviewed-by: Luca Ceresoli <[email protected]> Signed-off-by: Wolfram Sang <[email protected]>
- Loading branch information
Showing
2 changed files
with
20 additions
and
5 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,14 +1,26 @@ | ||
============================== | ||
Linux I2C slave eeprom backend | ||
Linux I2C slave EEPROM backend | ||
============================== | ||
|
||
by Wolfram Sang <[email protected]> in 2014-15 | ||
by Wolfram Sang <[email protected]> in 2014-20 | ||
|
||
This is a proof-of-concept backend which acts like an EEPROM on the connected | ||
I2C bus. The memory contents can be modified from userspace via this file | ||
located in sysfs:: | ||
This backend simulates an EEPROM on the connected I2C bus. Its memory contents | ||
can be accessed from userspace via this file located in sysfs:: | ||
|
||
/sys/bus/i2c/devices/<device-directory>/slave-eeprom | ||
|
||
The following types are available: 24c02, 24c32, 24c64, and 24c512. Read-only | ||
variants are also supported. The name needed for instantiating has the form | ||
'slave-<type>[ro]'. Examples follow: | ||
|
||
24c02, read/write, address 0x64: | ||
# echo slave-24c02 0x1064 > /sys/bus/i2c/devices/i2c-1/new_device | ||
|
||
24c512, read-only, address 0x42: | ||
# echo slave-24c512ro 0x1042 > /sys/bus/i2c/devices/i2c-1/new_device | ||
|
||
You can also preload data during boot if a device-property named | ||
'firmware-name' contains a valid filename (DT or ACPI only). | ||
|
||
As of 2015, Linux doesn't support poll on binary sysfs files, so there is no | ||
notification when another master changed the content. |
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