2020-11-05 13:32:05 +00:00
|
|
|
menuconfig SYSINFO
|
|
|
|
bool "Device System Information"
|
2018-07-31 09:44:11 +00:00
|
|
|
help
|
|
|
|
Support methods to query hardware configurations from internal
|
|
|
|
mechanisms (e.g. reading GPIO values, determining the presence of
|
|
|
|
devices on busses, etc.). This enables the usage of U-Boot with
|
|
|
|
modular board architectures.
|
2018-07-31 09:44:12 +00:00
|
|
|
|
2020-11-05 13:32:05 +00:00
|
|
|
if SYSINFO
|
2018-07-31 09:44:12 +00:00
|
|
|
|
2020-11-05 13:32:05 +00:00
|
|
|
config SPL_SYSINFO
|
2019-10-22 14:39:18 +00:00
|
|
|
depends on SPL_DM
|
|
|
|
bool "Enable board driver support in SPL"
|
2018-07-31 09:44:12 +00:00
|
|
|
|
2020-11-05 13:32:05 +00:00
|
|
|
config SYSINFO_GAZERBEAM
|
|
|
|
bool "Enable sysinfo driver for the Gazerbeam board"
|
2018-07-31 09:44:12 +00:00
|
|
|
help
|
|
|
|
Support querying device information for the gdsys Gazerbeam board.
|
|
|
|
|
2021-07-03 18:38:26 +00:00
|
|
|
config SYSINFO_RCAR3
|
|
|
|
bool "Enable sysinfo driver for the Renesas R-Car Gen3"
|
|
|
|
depends on RCAR_GEN3 && I2C_EEPROM
|
|
|
|
default y if RCAR_GEN3
|
|
|
|
help
|
|
|
|
Support querying SoC version information for Renesas R-Car Gen3.
|
|
|
|
|
2020-11-05 13:32:05 +00:00
|
|
|
config SYSINFO_SANDBOX
|
|
|
|
bool "Enable sysinfo driver for the Sandbox board"
|
2018-07-31 09:44:13 +00:00
|
|
|
help
|
|
|
|
Support querying device information for the Sandbox boards.
|
|
|
|
|
2020-11-05 13:32:11 +00:00
|
|
|
config SYSINFO_SMBIOS
|
|
|
|
bool "Provide a default sysinfo driver for SMBIOS information"
|
|
|
|
help
|
|
|
|
Some boards want to specify the manufacturer or product name but do
|
|
|
|
not need to have their own sysinfo driver. This includes a default
|
|
|
|
one which provides a way to specify this SMBIOS information in the
|
|
|
|
devicetree, without needing any board-specific functionality.
|
|
|
|
|
2021-04-20 14:50:57 +00:00
|
|
|
config SYSINFO_GPIO
|
|
|
|
bool "Enable gpio sysinfo driver"
|
|
|
|
help
|
|
|
|
Support querying gpios to determine board revision. This uses gpios to
|
|
|
|
form a ternary number (when they are pulled-up, -down, or floating).
|
|
|
|
This ternary number is then mapped to a board revision name using
|
|
|
|
device tree properties.
|
|
|
|
|
2018-07-31 09:44:12 +00:00
|
|
|
endif
|