drivers/net/phy/m88e1512: Add downshift enable
[coreboot.git] / src / include / version.h
blob84bb34a7b514c4dee1b113458dc6b076bc0754a7
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #ifndef VERSION_H
4 #define VERSION_H
6 /* Motherboard Information */
7 extern const char mainboard_vendor[];
8 extern const char mainboard_part_number[];
10 /* coreboot Version */
11 extern const char coreboot_version[];
12 extern const char coreboot_extra_version[];
13 extern const char coreboot_build[];
14 extern const unsigned int coreboot_version_timestamp;
15 extern const unsigned int coreboot_major_revision;
16 extern const unsigned int coreboot_minor_revision;
18 /* When coreboot was compiled */
19 extern const char coreboot_compile_time[];
20 extern const char coreboot_dmi_date[];
22 struct bcd_date {
23 unsigned char century;
24 unsigned char year;
25 unsigned char month;
26 unsigned char day;
27 unsigned char weekday;
30 extern const struct bcd_date coreboot_build_date;
32 /* IASL version */
33 extern const unsigned int asl_revision;
35 #endif /* VERSION_H */