From: Alexander Feilke <[email protected]> Integrates a new tq_eeprom sysinfo driver that reads & prints board information during boot.
This is the basis for additional patches that will be sent along with updates of the TQMa6 in the near future, including support for multiple indexed sysinfo devices and VARD (variant detection) data for newer TQ SOM's. Alexander Feilke (1): boards: tqma7: integrate sysinfo_tq_eeprom driver Nora Schiffer (5): sysinfo: uclass: use sysinfo_priv size for per_device_auto sysinfo: add sysinfo_get_and_detect() helper sysinfo: tq_eeprom: new driver sysinfo: add IDs for RAM size and variant board: tq: common: add sysinfo helpers arch/arm/dts/imx7s-tqma7-u-boot.dtsi | 7 + board/tq/common/Kconfig | 27 ++++ board/tq/common/Makefile | 4 + board/tq/common/tq_sysinfo.c | 32 ++++ board/tq/common/tq_sysinfo.h | 18 +++ board/tq/tqma7/tqma7.c | 4 + drivers/sysinfo/Kconfig | 8 + drivers/sysinfo/Makefile | 1 + drivers/sysinfo/sysinfo-uclass.c | 2 +- drivers/sysinfo/tq_eeprom.c | 223 +++++++++++++++++++++++++++ include/sysinfo.h | 24 +++ include/sysinfo/tq_eeprom.h | 24 +++ 12 files changed, 373 insertions(+), 1 deletion(-) create mode 100644 board/tq/common/tq_sysinfo.c create mode 100644 board/tq/common/tq_sysinfo.h create mode 100644 drivers/sysinfo/tq_eeprom.c create mode 100644 include/sysinfo/tq_eeprom.h -- 2.34.1

