diff options
author | RajithaY <rajithax.yerrumsetty@intel.com> | 2017-04-25 03:31:15 -0700 |
---|---|---|
committer | Rajitha Yerrumchetty <rajithax.yerrumsetty@intel.com> | 2017-05-22 06:48:08 +0000 |
commit | bb756eebdac6fd24e8919e2c43f7d2c8c4091f59 (patch) | |
tree | ca11e03542edf2d8f631efeca5e1626d211107e3 /qemu/roms/seabios/src/std/vga.h | |
parent | a14b48d18a9ed03ec191cf16b162206998a895ce (diff) |
Adding qemu as a submodule of KVMFORNFV
This Patch includes the changes to add qemu as a submodule to
kvmfornfv repo and make use of the updated latest qemu for the
execution of all testcase
Change-Id: I1280af507a857675c7f81d30c95255635667bdd7
Signed-off-by:RajithaY<rajithax.yerrumsetty@intel.com>
Diffstat (limited to 'qemu/roms/seabios/src/std/vga.h')
-rw-r--r-- | qemu/roms/seabios/src/std/vga.h | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/qemu/roms/seabios/src/std/vga.h b/qemu/roms/seabios/src/std/vga.h deleted file mode 100644 index de9ec7506..000000000 --- a/qemu/roms/seabios/src/std/vga.h +++ /dev/null @@ -1,63 +0,0 @@ -#ifndef __VGA_H -#define __VGA_H -// Standard structure definitions for vgabios video tables - -#include "types.h" // u8 - -// standard BIOS Video Parameter Table -struct video_param_s { - u8 twidth; - u8 theightm1; - u8 cheight; - u16 slength; - u8 sequ_regs[4]; - u8 miscreg; - u8 crtc_regs[25]; - u8 actl_regs[20]; - u8 grdc_regs[9]; -} PACKED; - -// Standard Video Save Pointer Table -struct video_save_pointer_s { - struct segoff_s videoparam; - struct segoff_s paramdynamicsave; - struct segoff_s textcharset; - struct segoff_s graphcharset; - struct segoff_s secsavepointer; - u8 reserved[8]; -} PACKED; - -// Data returned by int101B -struct video_func_static { - u32 modes; - u8 reserved_0x04[3]; - u8 scanlines; - u8 cblocks; - u8 active_cblocks; - u16 misc_flags; - u8 reserved_0x0c[2]; - u8 save_flags; - u8 reserved_0x0f; -} PACKED; - -struct video_func_info { - struct segoff_s static_functionality; - u8 bda_0x49[30]; - u8 bda_0x84[3]; - u8 dcc_index; - u8 dcc_alt; - u16 colors; - u8 pages; - u8 scan_lines; - u8 primary_char; - u8 secondar_char; - u8 misc; - u8 non_vga_mode; - u8 reserved_2f[2]; - u8 video_mem; - u8 save_flags; - u8 disp_info; - u8 reserved_34[12]; -} PACKED; - -#endif // vga.h |