diff options
Diffstat (limited to 'src/include/boot')
-rw-r--r-- | src/include/boot/coreboot_tables.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/include/boot/coreboot_tables.h b/src/include/boot/coreboot_tables.h index 9cf90d3bc9..71ad3f0477 100644 --- a/src/include/boot/coreboot_tables.h +++ b/src/include/boot/coreboot_tables.h @@ -241,6 +241,15 @@ struct lb_vbnv { uint32_t vbnv_size; }; +#define LB_TAB_VBOOT_HANDOFF 0x0020 +struct lb_vboot_handoff { + uint32_t tag; + uint32_t size; + + void *vboot_handoff_addr; + uint32_t vboot_handoff_size; +}; + /* The following structures are for the cmos definitions table */ #define LB_TAG_CMOS_OPTION_TABLE 200 /* cmos header record */ |