blob: d06ebb4cfb1f24c21a58e3c8747b8090004eaad1 [file] [log] [blame]
Kevin O'Connore1e000b2011-12-31 03:30:40 -05001#ifndef __VGABIOS_H
2#define __VGABIOS_H
Kevin O'Connor1f2c3072009-05-06 23:35:59 -04003
4#include "types.h" // u8
Kevin O'Connor9f985422009-09-09 11:34:39 -04005#include "farptr.h" // struct segoff_s
Kevin O'Connor63977902014-10-23 16:24:36 -04006#include "std/vga.h" // struct video_param_s
Kevin O'Connoraad3b692012-01-14 23:15:40 -05007
Kevin O'Connor20dc4192014-02-05 20:52:25 -05008// Save/Restore flags
9#define SR_HARDWARE 0x0001
10#define SR_BDA 0x0002
11#define SR_DAC 0x0004
12#define SR_REGISTERS 0x0008
13#define SR_SAVE 0x0100
14#define SR_RESTORE 0x0200
Kevin O'Connorca668642009-05-21 23:06:08 -040015
Kevin O'Connor821d6b42011-12-31 18:19:22 -050016// Mode flags
Kevin O'Connorb7b92932013-03-09 13:04:47 -050017#define MF_LEGACY 0x0001
Kevin O'Connor821d6b42011-12-31 18:19:22 -050018#define MF_GRAYSUM 0x0002
19#define MF_NOPALETTE 0x0008
20#define MF_CUSTOMCRTC 0x0800
21#define MF_LINEARFB 0x4000
22#define MF_NOCLEARMEM 0x8000
Kevin O'Connore6bc4c12012-01-21 11:26:37 -050023#define MF_VBEFLAGS 0xfe00
Kevin O'Connor821d6b42011-12-31 18:19:22 -050024
Kevin O'Connord4398ad2012-01-01 12:32:53 -050025// Memory model types
26#define MM_TEXT 0x00
27#define MM_CGA 0x01
28#define MM_HERCULES 0x02
29#define MM_PLANAR 0x03
30#define MM_PACKED 0x04
31#define MM_NON_CHAIN_4_256 0x05
32#define MM_DIRECT 0x06
33#define MM_YUV 0x07
34
Kevin O'Connor10dff3d2012-01-09 19:19:44 -050035struct vgamode_s {
36 u8 memmodel;
37 u16 width;
38 u16 height;
39 u8 depth;
40 u8 cwidth;
41 u8 cheight;
42 u16 sstart;
43};
44
Kevin O'Connorf864b602014-03-24 12:49:44 -040045// Graphics pixel operations.
46struct gfx_op {
47 struct vgamode_s *vmode_g;
48 u32 linelength;
Kevin O'Connor098c2fc2014-04-05 17:11:06 -040049 u32 displaystart;
Kevin O'Connorf864b602014-03-24 12:49:44 -040050
51 u8 op;
52 u16 x, y;
53
54 u8 pixels[8];
55 u16 xlen, ylen;
56 u16 srcy;
57};
58
59#define GO_READ8 1
60#define GO_WRITE8 2
61#define GO_MEMSET 3
62#define GO_MEMMOVE 4
63
Kevin O'Connor9978d492014-10-17 21:17:48 -040064// Custom internal storage in BDA
65#define VGA_CUSTOM_BDA 0xb9
66
67struct vga_bda_s {
Kevin O'Connorf4b1dbc2014-10-21 15:15:44 -040068 u8 flags;
Kevin O'Connor9978d492014-10-17 21:17:48 -040069 u16 vbe_mode;
Kevin O'Connorf7f22632014-10-17 21:37:23 -040070 u16 vgamode_offset;
Kevin O'Connor9978d492014-10-17 21:17:48 -040071} PACKED;
72
Kevin O'Connorf4b1dbc2014-10-21 15:15:44 -040073#define BF_PM_MASK 0x0f
74
Kevin O'Connor9978d492014-10-17 21:17:48 -040075#define GET_BDA_EXT(var) \
76 GET_FARVAR(SEG_BDA, ((struct vga_bda_s *)VGA_CUSTOM_BDA)->var)
77#define SET_BDA_EXT(var, val) \
78 SET_FARVAR(SEG_BDA, ((struct vga_bda_s *)VGA_CUSTOM_BDA)->var, (val))
79
Kevin O'Connorf864b602014-03-24 12:49:44 -040080// Debug settings
81#define DEBUG_VGA_POST 1
82#define DEBUG_VGA_10 3
83
Kevin O'Connor1f2c3072009-05-06 23:35:59 -040084// vgafonts.c
85extern u8 vgafont8[];
86extern u8 vgafont14[];
87extern u8 vgafont16[];
88extern u8 vgafont14alt[];
89extern u8 vgafont16alt[];
90
Kevin O'Connordab0a742013-12-03 11:50:49 -050091// vgainit.c
Kevin O'Connor63977902014-10-23 16:24:36 -040092extern struct video_save_pointer_s video_save_pointer_table;
93extern struct video_param_s video_param_table[29];
Kevin O'Connordab0a742013-12-03 11:50:49 -050094
Kevin O'Connore1e000b2011-12-31 03:30:40 -050095// vgabios.c
Kevin O'Connor8cf8f8e2012-01-16 19:05:27 -050096extern int VgaBDF;
Kevin O'Connorcfd7ef92012-02-02 22:52:17 -050097extern int HaveRunInit;
Kevin O'Connorf3760372011-12-23 22:41:08 -050098#define SET_VGA(var, val) SET_FARVAR(get_global_seg(), (var), (val))
Kevin O'Connor09262412009-05-25 11:44:11 -040099struct carattr {
Kevin O'Connor6ee837b2012-02-13 20:09:02 -0500100 u8 car, attr, use_attr, pad;
Kevin O'Connor09262412009-05-25 11:44:11 -0400101};
Kevin O'Connor918b1562009-05-25 11:05:18 -0400102struct cursorpos {
Kevin O'Connor6ee837b2012-02-13 20:09:02 -0500103 u8 x, y, page, pad;
Kevin O'Connor918b1562009-05-25 11:05:18 -0400104};
Kevin O'Connor3876b532012-01-24 00:07:44 -0500105int vga_bpp(struct vgamode_s *vmode_g);
Kevin O'Connor83047be2012-01-07 18:27:19 -0500106u16 calc_page_size(u8 memmodel, u16 width, u16 height);
Kevin O'Connor20dc4192014-02-05 20:52:25 -0500107int bda_save_restore(int cmd, u16 seg, void *data);
Kevin O'Connor4a73f932012-01-21 11:08:35 -0500108struct vgamode_s *get_current_mode(void);
Kevin O'Connore6bc4c12012-01-21 11:26:37 -0500109int vga_set_mode(int mode, int flags);
Kevin O'Connor12900b12014-10-23 16:37:08 -0400110extern struct video_func_static static_functionality;
Kevin O'Connorc0c7df62009-05-17 18:11:33 -0400111
112// vgafb.c
Kevin O'Connor7c790292014-02-11 15:34:58 -0500113void init_gfx_op(struct gfx_op *op, struct vgamode_s *vmode_g);
114void handle_gfx_op(struct gfx_op *op);
Kevin O'Connora02d4182014-04-05 22:48:05 -0400115void *text_address(struct cursorpos cp);
Kevin O'Connor7217ae72014-10-17 21:47:10 -0400116void vgafb_move_chars(struct cursorpos dest
Kevin O'Connor7fd2af62014-03-20 21:16:28 -0400117 , struct cursorpos src, struct cursorpos movesize);
Kevin O'Connor7217ae72014-10-17 21:47:10 -0400118void vgafb_clear_chars(struct cursorpos dest
Kevin O'Connor7fd2af62014-03-20 21:16:28 -0400119 , struct carattr ca, struct cursorpos movesize);
Kevin O'Connord3b38152009-05-26 00:05:37 -0400120void vgafb_write_char(struct cursorpos cp, struct carattr ca);
121struct carattr vgafb_read_char(struct cursorpos cp);
Kevin O'Connor227a2bb2009-05-31 22:00:20 -0400122void vgafb_write_pixel(u8 color, u16 x, u16 y);
123u8 vgafb_read_pixel(u16 x, u16 y);
Kevin O'Connorc0c7df62009-05-17 18:11:33 -0400124
Julian Pidancet87879e22011-12-19 05:08:00 +0000125// vbe.c
Kevin O'Connor31f67ae2012-01-29 11:37:01 -0500126extern u32 VBE_total_memory;
127extern u32 VBE_capabilities;
128extern u32 VBE_framebuffer;
129extern u16 VBE_win_granularity;
Julian Pidancet87879e22011-12-19 05:08:00 +0000130#define VBE_OEM_STRING "SeaBIOS VBE(C) 2011"
131#define VBE_VENDOR_STRING "SeaBIOS Developers"
132#define VBE_PRODUCT_STRING "SeaBIOS VBE Adapter"
133#define VBE_REVISION_STRING "Rev. 1"
Kevin O'Connor40401952011-12-31 03:43:12 -0500134struct bregs;
135void handle_104f(struct bregs *regs);
136
Kevin O'Connore1e000b2011-12-31 03:30:40 -0500137#endif // vgabios.h