Update vboot submodule to upstream master
[coreboot.git] / src / cpu / intel / fit / fit.S
blob3b7396c5cef104061c2cd8a4ac051aadee64a449
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 .section ".fit_pointer", "a", @progbits
4         .code32
5 .global fit_pointer
6 fit_pointer:
7 .long fit_table
8 .long 0
9 .previous
11 .section .text
12 .align 16
13 .global fit_table
14 .global fit_table_end
15 fit_table:
16 /* Address for type 0 is '_FIT_   ' */
17 .long 0x5449465f
18 .long 0x2020205f
20  * There is 1 entry in the table. Other tools will have to update the size
21  * and checksum when adding entries.
22  */
23 .long 0x00000001
24 /* Version */
25 .word 0x0100
26 /* Type 0 with checksum valid. */
27 .byte 0x80
28 /* Checksum byte - must add to zero. */
29 .byte 0x7d
30 .fill CONFIG_CPU_INTEL_NUM_FIT_ENTRIES*16
31 fit_table_end:
32 .previous