diff options
author | Eugen Hristev <eugen.hristev@microchip.com> | 2018-09-18 10:35:40 +0300 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-09-28 20:22:38 -0400 |
commit | cd83bb371ff3a8a61eb3f65ded762da7daaa9b06 (patch) | |
tree | 7913bb5f7f1da9e49fc30b1263d9788a1b2189ee /configs | |
parent | aadb42272e7caa23ab81f7a3f4abfd00f76bea8d (diff) | |
download | u-boot-cd83bb371ff3a8a61eb3f65ded762da7daaa9b06.zip u-boot-cd83bb371ff3a8a61eb3f65ded762da7daaa9b06.tar.gz u-boot-cd83bb371ff3a8a61eb3f65ded762da7daaa9b06.tar.bz2 |
configs: sama5d2_ptc_ek: add onewire and eeprom drivers
SAMA5D2 SoC can have extra clip boards (PDAs) connected, which have
an EEPROM memory for identification. A special GPIO can be used to read
this memory over 1wire protocol.
Enabling one wire and eeprom drivers for this memory.
Signed-off-by: Eugen Hristev <eugen.hristev@microchip.com>
Diffstat (limited to 'configs')
-rw-r--r-- | configs/sama5d2_ptc_ek_mmc_defconfig | 4 | ||||
-rw-r--r-- | configs/sama5d2_ptc_ek_nandflash_defconfig | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/configs/sama5d2_ptc_ek_mmc_defconfig b/configs/sama5d2_ptc_ek_mmc_defconfig index 42f0c95..047a7ec 100644 --- a/configs/sama5d2_ptc_ek_mmc_defconfig +++ b/configs/sama5d2_ptc_ek_mmc_defconfig @@ -63,3 +63,7 @@ CONFIG_USB=y CONFIG_DM_USB=y CONFIG_USB_EHCI_HCD=y CONFIG_USB_STORAGE=y +CONFIG_W1=y +CONFIG_W1_GPIO=y +CONFIG_W1_EEPROM=y +CONFIG_W1_EEPROM_DS24XXX=y diff --git a/configs/sama5d2_ptc_ek_nandflash_defconfig b/configs/sama5d2_ptc_ek_nandflash_defconfig index c4b3085..1b3d097 100644 --- a/configs/sama5d2_ptc_ek_nandflash_defconfig +++ b/configs/sama5d2_ptc_ek_nandflash_defconfig @@ -62,3 +62,7 @@ CONFIG_USB=y CONFIG_DM_USB=y CONFIG_USB_EHCI_HCD=y CONFIG_USB_STORAGE=y +CONFIG_W1=y +CONFIG_W1_GPIO=y +CONFIG_W1_EEPROM=y +CONFIG_W1_EEPROM_DS24XXX=y |