diff options
Diffstat (limited to 'payloads')
-rw-r--r-- | payloads/libpayload/include/coreboot_tables.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/payloads/libpayload/include/coreboot_tables.h b/payloads/libpayload/include/coreboot_tables.h index 4502e34484..5c3f0c47ec 100644 --- a/payloads/libpayload/include/coreboot_tables.h +++ b/payloads/libpayload/include/coreboot_tables.h @@ -220,6 +220,11 @@ enum cb_fb_orientation { CB_FB_ORIENTATION_RIGHT_UP = 3, }; +struct cb_framebuffer_flags { + u8 has_external_display : 1; + u8 reserved : 7; +}; + struct cb_framebuffer { u32 tag; u32 size; @@ -238,6 +243,8 @@ struct cb_framebuffer { u8 reserved_mask_pos; u8 reserved_mask_size; u8 orientation; + struct cb_framebuffer_flags flags; + u8 pad; }; #define CB_GPIO_ACTIVE_LOW 0 |