Use fast memset in SMM mode, too
[coreboot.git] / src / arch / x86 / lib / id.inc
1         .section ".id", "a", @progbits
2
3         .globl __id_start
4 __id_start:
5 ver:
6         .asciz COREBOOT_VERSION
7 vendor:
8         .asciz CONFIG_MAINBOARD_VENDOR
9 part:
10         .asciz CONFIG_MAINBOARD_PART_NUMBER
11 .long __id_end + CONFIG_ID_SECTION_OFFSET - ver  /* Reverse offset to the vendor id */
12 .long __id_end + CONFIG_ID_SECTION_OFFSET - vendor  /* Reverse offset to the vendor id */
13 .long __id_end + CONFIG_ID_SECTION_OFFSET - part    /* Reverse offset to the part number */
14 .long CONFIG_ROM_SIZE                               /* Size of this romimage */
15         .globl __id_end
16
17 __id_end:
18 .previous