blob: 2030e4babc9fe0c714a61dbdf4d79e17ba59926a [file] [log] [blame]
Simon Glass458b66a2020-11-05 06:32:05 -07001menuconfig SYSINFO
2 bool "Device System Information"
Mario Six2161e552018-07-31 11:44:11 +02003 help
4 Support methods to query hardware configurations from internal
5 mechanisms (e.g. reading GPIO values, determining the presence of
6 devices on busses, etc.). This enables the usage of U-Boot with
7 modular board architectures.
Mario Sixa7dfbd02018-07-31 11:44:12 +02008
Simon Glass458b66a2020-11-05 06:32:05 -07009if SYSINFO
Mario Sixa7dfbd02018-07-31 11:44:12 +020010
Simon Glassc2e06e92023-11-12 19:58:28 -070011config SYSINFO_EXTRA
12 bool "Show extra information on startup"
13 help
14 Enable this to see extra information on startup. Normally only the
15 model is shown, but with this option the vendor and any prior-stage
16 firmware's version and date are shown as well.
17
Simon Glass458b66a2020-11-05 06:32:05 -070018config SPL_SYSINFO
Jean-Jacques Hiblot0e0b8a02019-10-22 16:39:18 +020019 depends on SPL_DM
20 bool "Enable board driver support in SPL"
Mario Sixa7dfbd02018-07-31 11:44:12 +020021
Simon Glass458b66a2020-11-05 06:32:05 -070022config SYSINFO_GAZERBEAM
23 bool "Enable sysinfo driver for the Gazerbeam board"
Mario Sixa7dfbd02018-07-31 11:44:12 +020024 help
25 Support querying device information for the gdsys Gazerbeam board.
26
Marek Vasut08743f32021-07-03 20:38:26 +020027config SYSINFO_RCAR3
28 bool "Enable sysinfo driver for the Renesas R-Car Gen3"
29 depends on RCAR_GEN3 && I2C_EEPROM
30 default y if RCAR_GEN3
31 help
32 Support querying SoC version information for Renesas R-Car Gen3.
33
Simon Glass458b66a2020-11-05 06:32:05 -070034config SYSINFO_SANDBOX
35 bool "Enable sysinfo driver for the Sandbox board"
Mario Sixab664ff2018-07-31 11:44:13 +020036 help
37 Support querying device information for the Sandbox boards.
38
Simon Glass052a03e2020-11-05 06:32:11 -070039config SYSINFO_SMBIOS
40 bool "Provide a default sysinfo driver for SMBIOS information"
41 help
42 Some boards want to specify the manufacturer or product name but do
43 not need to have their own sysinfo driver. This includes a default
44 one which provides a way to specify this SMBIOS information in the
45 devicetree, without needing any board-specific functionality.
46
Sean Anderson985c5672021-04-20 10:50:57 -040047config SYSINFO_GPIO
48 bool "Enable gpio sysinfo driver"
49 help
50 Support querying gpios to determine board revision. This uses gpios to
51 form a ternary number (when they are pulled-up, -down, or floating).
52 This ternary number is then mapped to a board revision name using
53 device tree properties.
54
Mario Sixa7dfbd02018-07-31 11:44:12 +020055endif