upstream u-boot with additional patches for our devices/boards: https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ; Gbit ethernet patch for some LIME2 revisions ; with SPI flash support
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
u-boot/doc/device-tree-bindings/w1-eeprom/eep_sandbox.txt

34 lines
720 B

Onewire EEPROM sandbox driver device binding - one wire protocol sandbox EEPROM
=======================
This memory needs to be connected to a onewire bus, as a child node.
The bus will read the device serial number and match this node with a found
device on the bus
Also check doc/device-tree-bindings/w1 for onewire bus drivers
Driver:
- drivers/w1-eeprom/eep_sandbox.c
Software ds24xxx device-tree node properties:
Required:
* compatible = "sandbox,w1-eeprom"
Optional:
* none
Example:
eeprom1: eeprom@0 {
compatible = "sandbox,w1-eeprom";
}
Example with parent bus:
onewire_tm: onewire {
compatible = "w1-gpio";
gpios = <&gpio_a 8>;
eeprom1: eeprom@0 {
compatible = "sandbox,w1-eeprom";
}
};