summaryrefslogtreecommitdiff
path: root/include/sysinfo
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2026-06-05 11:37:51 -0600
committerTom Rini <[email protected]>2026-06-05 11:37:51 -0600
commit9e87893c24d1f21350e69bc222e6a3214c933b3b (patch)
tree850c8dc72b51bb793f4491a6d0005522399802c0 /include/sysinfo
parentb8b7761e89862c1af3c57a958f611a783f2c1f6a (diff)
parent3782bf8a0ad1abee3a2a537b9180b63d7ed22d40 (diff)
Merge tag 'u-boot-imx-next-20260605' of https://gitlab.denx.de/u-boot/custodians/u-boot-imx into next
CI: https://source.denx.de/u-boot/custodians/u-boot-imx/-/pipelines/30357 - Several conversions to OF_UPSTREAM. - Improvements for TQMa6UL boards. - Add iMX8MP UltraLite Part CPU type.
Diffstat (limited to 'include/sysinfo')
-rw-r--r--include/sysinfo/tq_eeprom.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/include/sysinfo/tq_eeprom.h b/include/sysinfo/tq_eeprom.h
new file mode 100644
index 00000000000..6b1bddd7ce0
--- /dev/null
+++ b/include/sysinfo/tq_eeprom.h
@@ -0,0 +1,24 @@
+/* SPDX-License-Identifier: GPL-2.0-or-later */
+/*
+ * Copyright (c) 2023-2026 TQ-Systems GmbH <[email protected]>,
+ * D-82229 Seefeld, Germany.
+ * Author: Nora Schiffer
+ */
+
+#ifndef __SYSINFO_TQ_EEPROM_H__
+#define __SYSINFO_TQ_EEPROM_H__
+
+#include <sysinfo.h>
+
+enum {
+ /* Model string of TQ-Systems SOM. This is different from BOARD_MODEL,
+ * which usually combines SOM and baseboard names for TQ hardware
+ */
+ SYSID_TQ_MODEL = SYSID_USER,
+ /* SOM serial number */
+ SYSID_TQ_SERIAL,
+ /* MAC address */
+ SYSID_TQ_MAC_ADDR,
+};
+
+#endif /* __SYSINFO_TQ_EEPROM_H__ */