mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-18 02:38:56 +00:00
61cf225053
Use the common GSC driver. This allows us to do some additional cleanup: - use the GSC driver functions - move waiting for the EEPROM to the SPL int (it will always be ready after this) - move eeprom functions into eeprom file and elimate GSC_I2C_BUS - eliminate some redundant EEPROM reads (the EEPROM must be read in SPL before relocation, in SPL after relocation, and in U-Boot init. All subsequent uses can use the global structure) - remove unnecessary header files and alphabatize includes Signed-off-by: Tim Harvey <tharvey@gateworks.com>
20 lines
309 B
Text
20 lines
309 B
Text
if TARGET_GW_VENTANA
|
|
|
|
config DM_GPIO
|
|
default y
|
|
|
|
config SYS_BOARD
|
|
default "gw_ventana"
|
|
|
|
config SYS_VENDOR
|
|
default "gateworks"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "gw_ventana"
|
|
|
|
config CMD_EECONFIG
|
|
bool "Enable the 'econfig' command"
|
|
help
|
|
Provides access to EEPROM configuration on Gateworks Ventana
|
|
|
|
endif
|