summaryrefslogtreecommitdiff
path: root/drivers/w1
Commit message (Collapse)AuthorAgeFilesLines
* w1: fix data abort if no one wire bus master presentMartin Fuzzey2018-11-011-6/+8
| | | | | | | | | | | | | | When the "w1 bus" command is used with no bus master present a data abort may occur. This is because uclass_first_device() returns zero, but sets the output struct udevice pointer to NULL in the no device found case. Fix w1_get_bus() to account for this and return an error code as is expected by the callers. Signed-off-by: Martin Fuzzey <martin.fuzzey@flowbird.group> Reviewed-by: Eugen Hristev <eugen.hristev@microchip.com>
* w1: identify devices with w1-eeprom uclassEugen Hristev2018-09-281-0/+4
| | | | | | | When a new device is discovered, this may be a w1 eeprom device. Attempt to find the proper node and driver from the w1-eeprom subsystem. Signed-off-by: Eugen Hristev <eugen.hristev@microchip.com>
* w1: Add 1-Wire gpio driverMaxime Ripard2018-09-283-0/+185
| | | | | | | | Add a bus driver for bitbanging a 1-Wire bus over a GPIO. Signed-off-by: Maxime Ripard <maxime.ripard@bootlin.com> [eugen.hristev@microchip.com: fixed some issues] Signed-off-by: Eugen Hristev <eugen.hristev@microchip.com>
* w1: Add 1-Wire uclassMaxime Ripard2018-09-283-0/+255
We might want to use 1-Wire devices connected on boards such as EEPROMs in U-Boot. Provide a framework to be able to do that. Signed-off-by: Maxime Ripard <maxime.ripard@bootlin.com> [eugen.hristev@microchip.com: reworked] Signed-off-by: Eugen Hristev <eugen.hristev@microchip.com>