blob: 1c982034b30f31044924ca9a4f40a67c8ecfb0f6 [file] [log] [blame]
Kevin O'Connore1e000b2011-12-31 03:30:40 -05001#ifndef __BOCHSVGA_H
2#define __BOCHSVGA_H
Julian Pidancet8bd766f2011-12-19 05:08:01 +00003
4#include "types.h" // u8
Kevin O'Connor184705f2012-01-14 22:17:43 -05005#include "ioport.h" // outw
Julian Pidancet8bd766f2011-12-19 05:08:01 +00006
7#define VBE_DISPI_BANK_ADDRESS 0xA0000
8#define VBE_DISPI_BANK_SIZE_KB 64
9
10#define VBE_DISPI_MAX_XRES 2560
11#define VBE_DISPI_MAX_YRES 1600
12
13#define VBE_DISPI_IOPORT_INDEX 0x01CE
14#define VBE_DISPI_IOPORT_DATA 0x01CF
15
16#define VBE_DISPI_INDEX_ID 0x0
17#define VBE_DISPI_INDEX_XRES 0x1
18#define VBE_DISPI_INDEX_YRES 0x2
19#define VBE_DISPI_INDEX_BPP 0x3
20#define VBE_DISPI_INDEX_ENABLE 0x4
21#define VBE_DISPI_INDEX_BANK 0x5
22#define VBE_DISPI_INDEX_VIRT_WIDTH 0x6
23#define VBE_DISPI_INDEX_VIRT_HEIGHT 0x7
24#define VBE_DISPI_INDEX_X_OFFSET 0x8
25#define VBE_DISPI_INDEX_Y_OFFSET 0x9
26#define VBE_DISPI_INDEX_VIDEO_MEMORY_64K 0xa
27
28#define VBE_DISPI_ID0 0xB0C0
29#define VBE_DISPI_ID1 0xB0C1
30#define VBE_DISPI_ID2 0xB0C2
31#define VBE_DISPI_ID3 0xB0C3
32#define VBE_DISPI_ID4 0xB0C4
33#define VBE_DISPI_ID5 0xB0C5
34
35#define VBE_DISPI_DISABLED 0x00
36#define VBE_DISPI_ENABLED 0x01
37#define VBE_DISPI_GETCAPS 0x02
38#define VBE_DISPI_8BIT_DAC 0x20
39#define VBE_DISPI_LFB_ENABLED 0x40
40#define VBE_DISPI_NOCLEARMEM 0x80
41
42#define VBE_DISPI_LFB_PHYSICAL_ADDRESS 0xE0000000
43
44static inline u16 dispi_read(u16 reg)
45{
46 outw(reg, VBE_DISPI_IOPORT_INDEX);
47 return inw(VBE_DISPI_IOPORT_DATA);
48}
49static inline void dispi_write(u16 reg, u16 val)
50{
51 outw(reg, VBE_DISPI_IOPORT_INDEX);
52 outw(val, VBE_DISPI_IOPORT_DATA);
53}
54
Kevin O'Connorc4a0b972012-01-09 20:21:31 -050055struct vgamode_s *bochsvga_find_mode(int mode);
Kevin O'Connor933bb762012-02-01 21:54:55 -050056void bochsvga_list_modes(u16 seg, u16 *dest, u16 *last);
Kevin O'Connor9961f992012-01-21 11:53:44 -050057int bochsvga_get_window(struct vgamode_s *vmode_g, int window);
58int bochsvga_set_window(struct vgamode_s *vmode_g, int window, int val);
Kevin O'Connor3876b532012-01-24 00:07:44 -050059int bochsvga_get_linelength(struct vgamode_s *vmode_g);
60int bochsvga_set_linelength(struct vgamode_s *vmode_g, int val);
Kevin O'Connord61fc532012-01-27 20:37:45 -050061int bochsvga_get_displaystart(struct vgamode_s *vmode_g);
62int bochsvga_set_displaystart(struct vgamode_s *vmode_g, int val);
Kevin O'Connore737b172012-02-04 11:08:39 -050063int bochsvga_get_dacformat(struct vgamode_s *vmode_g);
64int bochsvga_set_dacformat(struct vgamode_s *vmode_g, int val);
Kevin O'Connor2469f892012-02-04 12:40:02 -050065int bochsvga_size_state(int states);
66int bochsvga_save_state(u16 seg, void *data, int states);
67int bochsvga_restore_state(u16 seg, void *data, int states);
Kevin O'Connore6bc4c12012-01-21 11:26:37 -050068int bochsvga_set_mode(struct vgamode_s *vmode_g, int flags);
Kevin O'Connor933bb762012-02-01 21:54:55 -050069int bochsvga_init(void);
Kevin O'Connorf1e217d2011-12-31 03:18:18 -050070
Kevin O'Connore1e000b2011-12-31 03:30:40 -050071#endif // bochsvga.h