diff options
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/edid.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/include/edid.h b/src/include/edid.h index 7d4736dc33..ce1f615709 100644 --- a/src/include/edid.h +++ b/src/include/edid.h @@ -55,6 +55,14 @@ struct edid { unsigned int vso; unsigned int vspw; unsigned int vborder; + /* 3 variables needed for coreboot framebuffer. + * In most cases, they are the same as the ha + * and va variables, but not always, as in the + * case of a 1366 wide display. + */ + u32 x_resolution; + u32 y_resolution; + u32 bytes_per_line; /* it is unlikely we need these things. */ /* if one of these is non-zero, use that one. */ unsigned int aspect_landscape; |