blob: aa82fc5a53301d5450021e607ce5bbbaf4bcf5df [file] [log] [blame]
Kevin O'Connord9211ee2012-01-31 22:54:49 -05001// Bochs VGA interface to extended "VBE" modes
2//
3// Copyright (C) 2012 Kevin O'Connor <kevin@koconnor.net>
4// Copyright (C) 2011 Julian Pidancet <julian.pidancet@citrix.com>
5// Copyright (C) 2002 Jeroen Janssen
6//
7// This file may be distributed under the terms of the GNU LGPLv3 license.
8
Kevin O'Connore6bc4c12012-01-21 11:26:37 -05009#include "biosvar.h" // GET_GLOBAL
Kevin O'Connor2d2fa312013-09-14 21:55:26 -040010#include "bochsvga.h" // bochsvga_set_mode
11#include "config.h" // CONFIG_*
Kevin O'Connor5d369d82013-09-02 20:48:46 -040012#include "hw/pci.h" // pci_config_readl
13#include "hw/pci_regs.h" // PCI_BASE_ADDRESS_0
Kevin O'Connor2d2fa312013-09-14 21:55:26 -040014#include "output.h" // dprintf
Kevin O'Connor2e57c812013-09-14 22:29:32 -040015#include "std/vbe.h" // VBE_CAPABILITY_8BIT_DAC
Kevin O'Connor2d2fa312013-09-14 21:55:26 -040016#include "stdvga.h" // VGAREG_SEQU_ADDRESS
Kevin O'Connor2d2fa312013-09-14 21:55:26 -040017#include "vgabios.h" // struct vbe_modeinfo
Kevin O'Connor4ade5232013-09-18 21:41:48 -040018#include "x86.h" // outw
Julian Pidancet87879e22011-12-19 05:08:00 +000019
Kevin O'Connor933bb762012-02-01 21:54:55 -050020
21/****************************************************************
22 * Mode tables
23 ****************************************************************/
24
Kevin O'Connorc4a0b972012-01-09 20:21:31 -050025static struct bochsvga_mode
Julian Pidancet87879e22011-12-19 05:08:00 +000026{
27 u16 mode;
Kevin O'Connorc4a0b972012-01-09 20:21:31 -050028 struct vgamode_s info;
Kevin O'Connorf1e217d2011-12-31 03:18:18 -050029} bochsvga_modes[] VAR16 = {
Julian Pidancet87879e22011-12-19 05:08:00 +000030 /* standard modes */
Kevin O'Connor03776022012-01-21 11:00:11 -050031 { 0x100, { MM_PACKED, 640, 400, 8, 8, 16, SEG_GRAPH } },
32 { 0x101, { MM_PACKED, 640, 480, 8, 8, 16, SEG_GRAPH } },
33 { 0x102, { MM_PLANAR, 800, 600, 4, 8, 16, SEG_GRAPH } },
34 { 0x103, { MM_PACKED, 800, 600, 8, 8, 16, SEG_GRAPH } },
35 { 0x104, { MM_PLANAR, 1024, 768, 4, 8, 16, SEG_GRAPH } },
36 { 0x105, { MM_PACKED, 1024, 768, 8, 8, 16, SEG_GRAPH } },
37 { 0x106, { MM_PLANAR, 1280, 1024, 4, 8, 16, SEG_GRAPH } },
38 { 0x107, { MM_PACKED, 1280, 1024, 8, 8, 16, SEG_GRAPH } },
39 { 0x10D, { MM_DIRECT, 320, 200, 15, 8, 16, SEG_GRAPH } },
40 { 0x10E, { MM_DIRECT, 320, 200, 16, 8, 16, SEG_GRAPH } },
41 { 0x10F, { MM_DIRECT, 320, 200, 24, 8, 16, SEG_GRAPH } },
42 { 0x110, { MM_DIRECT, 640, 480, 15, 8, 16, SEG_GRAPH } },
43 { 0x111, { MM_DIRECT, 640, 480, 16, 8, 16, SEG_GRAPH } },
44 { 0x112, { MM_DIRECT, 640, 480, 24, 8, 16, SEG_GRAPH } },
45 { 0x113, { MM_DIRECT, 800, 600, 15, 8, 16, SEG_GRAPH } },
46 { 0x114, { MM_DIRECT, 800, 600, 16, 8, 16, SEG_GRAPH } },
47 { 0x115, { MM_DIRECT, 800, 600, 24, 8, 16, SEG_GRAPH } },
48 { 0x116, { MM_DIRECT, 1024, 768, 15, 8, 16, SEG_GRAPH } },
49 { 0x117, { MM_DIRECT, 1024, 768, 16, 8, 16, SEG_GRAPH } },
50 { 0x118, { MM_DIRECT, 1024, 768, 24, 8, 16, SEG_GRAPH } },
51 { 0x119, { MM_DIRECT, 1280, 1024, 15, 8, 16, SEG_GRAPH } },
52 { 0x11A, { MM_DIRECT, 1280, 1024, 16, 8, 16, SEG_GRAPH } },
53 { 0x11B, { MM_DIRECT, 1280, 1024, 24, 8, 16, SEG_GRAPH } },
54 { 0x11C, { MM_PACKED, 1600, 1200, 8, 8, 16, SEG_GRAPH } },
55 { 0x11D, { MM_DIRECT, 1600, 1200, 15, 8, 16, SEG_GRAPH } },
56 { 0x11E, { MM_DIRECT, 1600, 1200, 16, 8, 16, SEG_GRAPH } },
57 { 0x11F, { MM_DIRECT, 1600, 1200, 24, 8, 16, SEG_GRAPH } },
Julian Pidancet87879e22011-12-19 05:08:00 +000058 /* BOCHS modes */
Kevin O'Connor03776022012-01-21 11:00:11 -050059 { 0x140, { MM_DIRECT, 320, 200, 32, 8, 16, SEG_GRAPH } },
60 { 0x141, { MM_DIRECT, 640, 400, 32, 8, 16, SEG_GRAPH } },
61 { 0x142, { MM_DIRECT, 640, 480, 32, 8, 16, SEG_GRAPH } },
62 { 0x143, { MM_DIRECT, 800, 600, 32, 8, 16, SEG_GRAPH } },
63 { 0x144, { MM_DIRECT, 1024, 768, 32, 8, 16, SEG_GRAPH } },
64 { 0x145, { MM_DIRECT, 1280, 1024, 32, 8, 16, SEG_GRAPH } },
65 { 0x146, { MM_PACKED, 320, 200, 8, 8, 16, SEG_GRAPH } },
66 { 0x147, { MM_DIRECT, 1600, 1200, 32, 8, 16, SEG_GRAPH } },
67 { 0x148, { MM_PACKED, 1152, 864, 8, 8, 16, SEG_GRAPH } },
68 { 0x149, { MM_DIRECT, 1152, 864, 15, 8, 16, SEG_GRAPH } },
69 { 0x14a, { MM_DIRECT, 1152, 864, 16, 8, 16, SEG_GRAPH } },
70 { 0x14b, { MM_DIRECT, 1152, 864, 24, 8, 16, SEG_GRAPH } },
71 { 0x14c, { MM_DIRECT, 1152, 864, 32, 8, 16, SEG_GRAPH } },
Kevin O'Connora9dcc882013-11-30 11:04:09 -050072 { 0x175, { MM_DIRECT, 1280, 768, 16, 8, 16, SEG_GRAPH } },
73 { 0x176, { MM_DIRECT, 1280, 768, 24, 8, 16, SEG_GRAPH } },
74 { 0x177, { MM_DIRECT, 1280, 768, 32, 8, 16, SEG_GRAPH } },
Kevin O'Connor03776022012-01-21 11:00:11 -050075 { 0x178, { MM_DIRECT, 1280, 800, 16, 8, 16, SEG_GRAPH } },
76 { 0x179, { MM_DIRECT, 1280, 800, 24, 8, 16, SEG_GRAPH } },
77 { 0x17a, { MM_DIRECT, 1280, 800, 32, 8, 16, SEG_GRAPH } },
78 { 0x17b, { MM_DIRECT, 1280, 960, 16, 8, 16, SEG_GRAPH } },
79 { 0x17c, { MM_DIRECT, 1280, 960, 24, 8, 16, SEG_GRAPH } },
80 { 0x17d, { MM_DIRECT, 1280, 960, 32, 8, 16, SEG_GRAPH } },
81 { 0x17e, { MM_DIRECT, 1440, 900, 16, 8, 16, SEG_GRAPH } },
82 { 0x17f, { MM_DIRECT, 1440, 900, 24, 8, 16, SEG_GRAPH } },
83 { 0x180, { MM_DIRECT, 1440, 900, 32, 8, 16, SEG_GRAPH } },
84 { 0x181, { MM_DIRECT, 1400, 1050, 16, 8, 16, SEG_GRAPH } },
85 { 0x182, { MM_DIRECT, 1400, 1050, 24, 8, 16, SEG_GRAPH } },
86 { 0x183, { MM_DIRECT, 1400, 1050, 32, 8, 16, SEG_GRAPH } },
87 { 0x184, { MM_DIRECT, 1680, 1050, 16, 8, 16, SEG_GRAPH } },
88 { 0x185, { MM_DIRECT, 1680, 1050, 24, 8, 16, SEG_GRAPH } },
89 { 0x186, { MM_DIRECT, 1680, 1050, 32, 8, 16, SEG_GRAPH } },
90 { 0x187, { MM_DIRECT, 1920, 1200, 16, 8, 16, SEG_GRAPH } },
91 { 0x188, { MM_DIRECT, 1920, 1200, 24, 8, 16, SEG_GRAPH } },
92 { 0x189, { MM_DIRECT, 1920, 1200, 32, 8, 16, SEG_GRAPH } },
93 { 0x18a, { MM_DIRECT, 2560, 1600, 16, 8, 16, SEG_GRAPH } },
94 { 0x18b, { MM_DIRECT, 2560, 1600, 24, 8, 16, SEG_GRAPH } },
95 { 0x18c, { MM_DIRECT, 2560, 1600, 32, 8, 16, SEG_GRAPH } },
Kevin O'Connora9dcc882013-11-30 11:04:09 -050096 { 0x18d, { MM_DIRECT, 1280, 720, 16, 8, 16, SEG_GRAPH } },
97 { 0x18e, { MM_DIRECT, 1280, 720, 24, 8, 16, SEG_GRAPH } },
98 { 0x18f, { MM_DIRECT, 1280, 720, 32, 8, 16, SEG_GRAPH } },
99 { 0x190, { MM_DIRECT, 1920, 1080, 16, 8, 16, SEG_GRAPH } },
100 { 0x191, { MM_DIRECT, 1920, 1080, 24, 8, 16, SEG_GRAPH } },
101 { 0x192, { MM_DIRECT, 1920, 1080, 32, 8, 16, SEG_GRAPH } },
Julian Pidancet87879e22011-12-19 05:08:00 +0000102};
103
Gerd Hoffmann53663502013-09-05 10:16:18 +0200104static int dispi_found VAR16 = 0;
105
Kevin O'Connore6bc4c12012-01-21 11:26:37 -0500106static int is_bochsvga_mode(struct vgamode_s *vmode_g)
107{
108 return (vmode_g >= &bochsvga_modes[0].info
109 && vmode_g <= &bochsvga_modes[ARRAY_SIZE(bochsvga_modes)-1].info);
110}
111
Kevin O'Connor3339c052012-01-13 20:00:35 -0500112struct vgamode_s *bochsvga_find_mode(int mode)
113{
114 struct bochsvga_mode *m = bochsvga_modes;
Gerd Hoffmann53663502013-09-05 10:16:18 +0200115 if (GET_GLOBAL(dispi_found))
116 for (; m < &bochsvga_modes[ARRAY_SIZE(bochsvga_modes)]; m++)
117 if (GET_GLOBAL(m->mode) == mode)
118 return &m->info;
Kevin O'Connor3339c052012-01-13 20:00:35 -0500119 return stdvga_find_mode(mode);
Julian Pidancet87879e22011-12-19 05:08:00 +0000120}
121
Kevin O'Connor34203cd2012-01-09 20:55:31 -0500122void
123bochsvga_list_modes(u16 seg, u16 *dest, u16 *last)
Julian Pidancet87879e22011-12-19 05:08:00 +0000124{
Kevin O'Connorc4a0b972012-01-09 20:21:31 -0500125 struct bochsvga_mode *m = bochsvga_modes;
Gerd Hoffmann53663502013-09-05 10:16:18 +0200126 if (GET_GLOBAL(dispi_found)) {
127 for (; m < &bochsvga_modes[ARRAY_SIZE(bochsvga_modes)] && dest<last; m++) {
128 u16 mode = GET_GLOBAL(m->mode);
129 if (mode == 0xffff)
130 continue;
131 SET_FARVAR(seg, *dest, mode);
132 dest++;
133 }
Julian Pidancet8bd766f2011-12-19 05:08:01 +0000134 }
Kevin O'Connor34203cd2012-01-09 20:55:31 -0500135 stdvga_list_modes(seg, dest, last);
Julian Pidancet87879e22011-12-19 05:08:00 +0000136}
137
Kevin O'Connor933bb762012-02-01 21:54:55 -0500138
139/****************************************************************
140 * Helper functions
141 ****************************************************************/
142
Kevin O'Connor4ade5232013-09-18 21:41:48 -0400143static inline u16 dispi_read(u16 reg)
144{
145 outw(reg, VBE_DISPI_IOPORT_INDEX);
146 return inw(VBE_DISPI_IOPORT_DATA);
147}
148static inline void dispi_write(u16 reg, u16 val)
149{
150 outw(reg, VBE_DISPI_IOPORT_INDEX);
151 outw(val, VBE_DISPI_IOPORT_DATA);
152}
153
Paolo Bonzini9c291482015-01-01 21:27:46 +0100154static u8
155bochsvga_dispi_enabled(void)
156{
157 if (!GET_GLOBAL(dispi_found))
158 return 0;
159 u16 en = dispi_read(VBE_DISPI_INDEX_ENABLE);
160 if (!(en & VBE_DISPI_ENABLED))
161 return 0;
162 return 1;
163}
164
Kevin O'Connor9961f992012-01-21 11:53:44 -0500165int
166bochsvga_get_window(struct vgamode_s *vmode_g, int window)
167{
Paolo Bonzini9c291482015-01-01 21:27:46 +0100168 if (!bochsvga_dispi_enabled())
Gerd Hoffmann53663502013-09-05 10:16:18 +0200169 return stdvga_get_window(vmode_g, window);
Kevin O'Connor9961f992012-01-21 11:53:44 -0500170 if (window != 0)
171 return -1;
172 return dispi_read(VBE_DISPI_INDEX_BANK);
173}
174
175int
176bochsvga_set_window(struct vgamode_s *vmode_g, int window, int val)
177{
Paolo Bonzini9c291482015-01-01 21:27:46 +0100178 if (!bochsvga_dispi_enabled())
Gerd Hoffmann53663502013-09-05 10:16:18 +0200179 return stdvga_set_window(vmode_g, window, val);
Kevin O'Connor9961f992012-01-21 11:53:44 -0500180 if (window != 0)
181 return -1;
182 dispi_write(VBE_DISPI_INDEX_BANK, val);
183 if (dispi_read(VBE_DISPI_INDEX_BANK) != val)
184 return -1;
185 return 0;
186}
187
Kevin O'Connor3876b532012-01-24 00:07:44 -0500188int
189bochsvga_get_linelength(struct vgamode_s *vmode_g)
190{
Paolo Bonzini9c291482015-01-01 21:27:46 +0100191 if (!bochsvga_dispi_enabled())
Gerd Hoffmann53663502013-09-05 10:16:18 +0200192 return stdvga_get_linelength(vmode_g);
Kevin O'Connor3876b532012-01-24 00:07:44 -0500193 return dispi_read(VBE_DISPI_INDEX_VIRT_WIDTH) * vga_bpp(vmode_g) / 8;
194}
195
196int
197bochsvga_set_linelength(struct vgamode_s *vmode_g, int val)
198{
199 stdvga_set_linelength(vmode_g, val);
Paolo Bonzini9c291482015-01-01 21:27:46 +0100200 if (bochsvga_dispi_enabled()) {
Gerd Hoffmann53663502013-09-05 10:16:18 +0200201 int pixels = (val * 8) / vga_bpp(vmode_g);
202 dispi_write(VBE_DISPI_INDEX_VIRT_WIDTH, pixels);
203 }
Kevin O'Connor3876b532012-01-24 00:07:44 -0500204 return 0;
205}
206
Kevin O'Connord61fc532012-01-27 20:37:45 -0500207int
208bochsvga_get_displaystart(struct vgamode_s *vmode_g)
209{
Paolo Bonzini9c291482015-01-01 21:27:46 +0100210 if (!bochsvga_dispi_enabled())
Gerd Hoffmann53663502013-09-05 10:16:18 +0200211 return stdvga_get_displaystart(vmode_g);
Kevin O'Connord61fc532012-01-27 20:37:45 -0500212 int bpp = vga_bpp(vmode_g);
213 int linelength = dispi_read(VBE_DISPI_INDEX_VIRT_WIDTH) * bpp / 8;
214 int x = dispi_read(VBE_DISPI_INDEX_X_OFFSET);
215 int y = dispi_read(VBE_DISPI_INDEX_Y_OFFSET);
216 return x * bpp / 8 + linelength * y;
217}
218
219int
220bochsvga_set_displaystart(struct vgamode_s *vmode_g, int val)
221{
222 stdvga_set_displaystart(vmode_g, val);
Paolo Bonzini9c291482015-01-01 21:27:46 +0100223 if (bochsvga_dispi_enabled()) {
Gerd Hoffmann53663502013-09-05 10:16:18 +0200224 int bpp = vga_bpp(vmode_g);
225 int linelength = dispi_read(VBE_DISPI_INDEX_VIRT_WIDTH) * bpp / 8;
Kevin O'Connor06c6d472013-11-30 11:45:46 -0500226 if (!linelength)
227 return 0;
Gerd Hoffmann53663502013-09-05 10:16:18 +0200228 dispi_write(VBE_DISPI_INDEX_X_OFFSET, (val % linelength) * 8 / bpp);
229 dispi_write(VBE_DISPI_INDEX_Y_OFFSET, val / linelength);
230 }
Kevin O'Connord61fc532012-01-27 20:37:45 -0500231 return 0;
232}
233
Kevin O'Connore737b172012-02-04 11:08:39 -0500234int
235bochsvga_get_dacformat(struct vgamode_s *vmode_g)
236{
Paolo Bonzini9c291482015-01-01 21:27:46 +0100237 if (!bochsvga_dispi_enabled())
Gerd Hoffmann53663502013-09-05 10:16:18 +0200238 return stdvga_get_dacformat(vmode_g);
Kevin O'Connore737b172012-02-04 11:08:39 -0500239 u16 en = dispi_read(VBE_DISPI_INDEX_ENABLE);
240 return (en & VBE_DISPI_8BIT_DAC) ? 8 : 6;
241}
242
243int
244bochsvga_set_dacformat(struct vgamode_s *vmode_g, int val)
245{
Paolo Bonzini9c291482015-01-01 21:27:46 +0100246 if (!bochsvga_dispi_enabled())
Gerd Hoffmann53663502013-09-05 10:16:18 +0200247 return stdvga_set_dacformat(vmode_g, val);
Kevin O'Connore737b172012-02-04 11:08:39 -0500248 u16 en = dispi_read(VBE_DISPI_INDEX_ENABLE);
249 if (val == 6)
250 en &= ~VBE_DISPI_8BIT_DAC;
251 else if (val == 8)
252 en |= VBE_DISPI_8BIT_DAC;
253 else
254 return -1;
255 dispi_write(VBE_DISPI_INDEX_ENABLE, en);
256 return 0;
257}
258
Kevin O'Connor20dc4192014-02-05 20:52:25 -0500259static int
260bochsvga_save_state(u16 seg, u16 *info)
Kevin O'Connor2469f892012-02-04 12:40:02 -0500261{
Kevin O'Connor2469f892012-02-04 12:40:02 -0500262 u16 en = dispi_read(VBE_DISPI_INDEX_ENABLE);
263 SET_FARVAR(seg, *info, en);
264 info++;
265 if (!(en & VBE_DISPI_ENABLED))
266 return 0;
267 int i;
268 for (i = VBE_DISPI_INDEX_XRES; i <= VBE_DISPI_INDEX_Y_OFFSET; i++)
269 if (i != VBE_DISPI_INDEX_ENABLE) {
270 u16 v = dispi_read(i);
271 SET_FARVAR(seg, *info, v);
272 info++;
273 }
274 return 0;
275}
276
Kevin O'Connor20dc4192014-02-05 20:52:25 -0500277static int
278bochsvga_restore_state(u16 seg, u16 *info)
Kevin O'Connor2469f892012-02-04 12:40:02 -0500279{
Kevin O'Connor2469f892012-02-04 12:40:02 -0500280 u16 en = GET_FARVAR(seg, *info);
281 info++;
282 if (!(en & VBE_DISPI_ENABLED)) {
283 dispi_write(VBE_DISPI_INDEX_ENABLE, en);
284 return 0;
285 }
286 int i;
287 for (i = VBE_DISPI_INDEX_XRES; i <= VBE_DISPI_INDEX_Y_OFFSET; i++)
288 if (i == VBE_DISPI_INDEX_ENABLE) {
289 dispi_write(i, en);
290 } else {
291 dispi_write(i, GET_FARVAR(seg, *info));
292 info++;
293 }
294 return 0;
295}
296
Kevin O'Connor20dc4192014-02-05 20:52:25 -0500297int
298bochsvga_save_restore(int cmd, u16 seg, void *data)
299{
300 int ret = stdvga_save_restore(cmd, seg, data);
301 if (ret < 0 || !(cmd & SR_REGISTERS) || !GET_GLOBAL(dispi_found))
302 return ret;
303
304 u16 *info = (data + ret);
305 if (cmd & SR_SAVE)
306 bochsvga_save_state(seg, info);
307 if (cmd & SR_RESTORE)
308 bochsvga_restore_state(seg, info);
309 return ret + (VBE_DISPI_INDEX_Y_OFFSET-VBE_DISPI_INDEX_XRES+1)*sizeof(u16);
310}
311
Kevin O'Connor933bb762012-02-01 21:54:55 -0500312
313/****************************************************************
314 * Mode setting
315 ****************************************************************/
316
Kevin O'Connor5108c692011-12-31 19:13:45 -0500317int
Kevin O'Connore6bc4c12012-01-21 11:26:37 -0500318bochsvga_set_mode(struct vgamode_s *vmode_g, int flags)
Julian Pidancet87879e22011-12-19 05:08:00 +0000319{
Gerd Hoffmann53663502013-09-05 10:16:18 +0200320 if (GET_GLOBAL(dispi_found))
321 dispi_write(VBE_DISPI_INDEX_ENABLE, VBE_DISPI_DISABLED);
Kevin O'Connorc8845022012-01-31 22:51:56 -0500322 if (! is_bochsvga_mode(vmode_g))
Kevin O'Connore6bc4c12012-01-21 11:26:37 -0500323 return stdvga_set_mode(vmode_g, flags);
Gerd Hoffmann53663502013-09-05 10:16:18 +0200324 if (!GET_GLOBAL(dispi_found))
325 return -1;
Kevin O'Connor5108c692011-12-31 19:13:45 -0500326
Kevin O'Connor5b6936e2013-11-29 18:43:35 -0500327 u8 memmodel = GET_GLOBAL(vmode_g->memmodel);
328 if (memmodel == MM_PLANAR)
Kevin O'Connore6bc4c12012-01-21 11:26:37 -0500329 stdvga_set_mode(stdvga_find_mode(0x6a), 0);
Kevin O'Connor5b6936e2013-11-29 18:43:35 -0500330 if (memmodel == MM_PACKED && !(flags & MF_NOPALETTE))
331 stdvga_set_packed_palette();
Julian Pidancet87879e22011-12-19 05:08:00 +0000332
Kevin O'Connor5b6936e2013-11-29 18:43:35 -0500333 dispi_write(VBE_DISPI_INDEX_BPP, GET_GLOBAL(vmode_g->depth));
Kevin O'Connor3339c052012-01-13 20:00:35 -0500334 u16 width = GET_GLOBAL(vmode_g->width);
335 u16 height = GET_GLOBAL(vmode_g->height);
336 dispi_write(VBE_DISPI_INDEX_XRES, width);
337 dispi_write(VBE_DISPI_INDEX_YRES, height);
Julian Pidancet8bd766f2011-12-19 05:08:01 +0000338 dispi_write(VBE_DISPI_INDEX_BANK, 0);
Kevin O'Connorc8845022012-01-31 22:51:56 -0500339 u16 bf = ((flags & MF_NOCLEARMEM ? VBE_DISPI_NOCLEARMEM : 0)
340 | (flags & MF_LINEARFB ? VBE_DISPI_LFB_ENABLED : 0));
341 dispi_write(VBE_DISPI_INDEX_ENABLE, VBE_DISPI_ENABLED | bf);
Julian Pidancet8bd766f2011-12-19 05:08:01 +0000342
343 /* VGA compat setup */
Kevin O'Connor184705f2012-01-14 22:17:43 -0500344 u16 crtc_addr = VGAREG_VGA_CRTC_ADDRESS;
345 stdvga_crtc_write(crtc_addr, 0x11, 0x00);
346 stdvga_crtc_write(crtc_addr, 0x01, width / 8 - 1);
Kevin O'Connorc8845022012-01-31 22:51:56 -0500347 stdvga_set_linelength(vmode_g, width);
Kevin O'Connor184705f2012-01-14 22:17:43 -0500348 stdvga_crtc_write(crtc_addr, 0x12, height - 1);
349 u8 v = 0;
350 if ((height - 1) & 0x0100)
351 v |= 0x02;
352 if ((height - 1) & 0x0200)
Julian Pidancet8bd766f2011-12-19 05:08:01 +0000353 v |= 0x40;
Kevin O'Connor184705f2012-01-14 22:17:43 -0500354 stdvga_crtc_mask(crtc_addr, 0x07, 0x42, v);
Julian Pidancet8bd766f2011-12-19 05:08:01 +0000355
Kevin O'Connor184705f2012-01-14 22:17:43 -0500356 stdvga_crtc_write(crtc_addr, 0x09, 0x00);
357 stdvga_crtc_mask(crtc_addr, 0x17, 0x00, 0x03);
358 stdvga_attr_mask(0x10, 0x00, 0x01);
359 stdvga_grdc_write(0x06, 0x05);
360 stdvga_sequ_write(0x02, 0x0f);
Kevin O'Connor5b6936e2013-11-29 18:43:35 -0500361 if (memmodel != MM_PLANAR) {
Kevin O'Connor184705f2012-01-14 22:17:43 -0500362 stdvga_crtc_mask(crtc_addr, 0x14, 0x00, 0x40);
363 stdvga_attr_mask(0x10, 0x00, 0x40);
364 stdvga_sequ_mask(0x04, 0x00, 0x08);
365 stdvga_grdc_mask(0x05, 0x20, 0x40);
Julian Pidancet8bd766f2011-12-19 05:08:01 +0000366 }
David Woodhouse0069a312013-02-08 15:50:54 +0000367 stdvga_attrindex_write(0x20);
Julian Pidancet8bd766f2011-12-19 05:08:01 +0000368
Kevin O'Connor5108c692011-12-31 19:13:45 -0500369 return 0;
Julian Pidancet87879e22011-12-19 05:08:00 +0000370}
Kevin O'Connor933bb762012-02-01 21:54:55 -0500371
372
373/****************************************************************
374 * Init
375 ****************************************************************/
376
377int
Kevin O'Connord83c87b2013-01-21 01:14:12 -0500378bochsvga_setup(void)
Kevin O'Connor933bb762012-02-01 21:54:55 -0500379{
Kevin O'Connord83c87b2013-01-21 01:14:12 -0500380 int ret = stdvga_setup();
Kevin O'Connor933bb762012-02-01 21:54:55 -0500381 if (ret)
382 return ret;
383
384 /* Sanity checks */
385 dispi_write(VBE_DISPI_INDEX_ID, VBE_DISPI_ID0);
386 if (dispi_read(VBE_DISPI_INDEX_ID) != VBE_DISPI_ID0) {
Gerd Hoffmann53663502013-09-05 10:16:18 +0200387 dprintf(1, "No VBE DISPI interface detected, falling back to stdvga\n");
388 return 0;
Kevin O'Connor933bb762012-02-01 21:54:55 -0500389 }
390
391 dispi_write(VBE_DISPI_INDEX_ID, VBE_DISPI_ID5);
Gerd Hoffmann53663502013-09-05 10:16:18 +0200392 SET_VGA(dispi_found, 1);
Kevin O'Connor933bb762012-02-01 21:54:55 -0500393
Kevin O'Connorcfd7ef92012-02-02 22:52:17 -0500394 if (GET_GLOBAL(HaveRunInit))
395 return 0;
396
Kevin O'Connor933bb762012-02-01 21:54:55 -0500397 u32 lfb_addr = VBE_DISPI_LFB_PHYSICAL_ADDRESS;
398 int bdf = GET_GLOBAL(VgaBDF);
399 if (CONFIG_VGA_PCI && bdf >= 0) {
Gerd Hoffmann5d598772013-12-12 14:55:14 +0100400 u16 vendor = pci_config_readw(bdf, PCI_VENDOR_ID);
401 int barid;
402 switch (vendor) {
403 case 0x15ad: /* qemu vmware vga */
Kevin O'Connor933bb762012-02-01 21:54:55 -0500404 barid = 1;
Gerd Hoffmann5d598772013-12-12 14:55:14 +0100405 break;
Gerd Hoffmann87f848e2015-04-08 10:36:22 +0200406 default: /* stdvga, qxl, virtio */
Gerd Hoffmann5d598772013-12-12 14:55:14 +0100407 barid = 0;
408 break;
Kevin O'Connor933bb762012-02-01 21:54:55 -0500409 }
Gerd Hoffmann5d598772013-12-12 14:55:14 +0100410 u32 bar = pci_config_readl(bdf, PCI_BASE_ADDRESS_0 + barid * 4);
Kevin O'Connor933bb762012-02-01 21:54:55 -0500411 lfb_addr = bar & PCI_BASE_ADDRESS_MEM_MASK;
412 dprintf(1, "VBE DISPI: bdf %02x:%02x.%x, bar %d\n", pci_bdf_to_bus(bdf)
413 , pci_bdf_to_dev(bdf), pci_bdf_to_fn(bdf), barid);
414 }
415
416 SET_VGA(VBE_framebuffer, lfb_addr);
417 u32 totalmem = dispi_read(VBE_DISPI_INDEX_VIDEO_MEMORY_64K) * 64 * 1024;
418 SET_VGA(VBE_total_memory, totalmem);
Kevin O'Connor49ddd9e2012-09-04 13:16:36 -0400419 SET_VGA(VBE_win_granularity, 64);
Kevin O'Connor933bb762012-02-01 21:54:55 -0500420 SET_VGA(VBE_capabilities, VBE_CAPABILITY_8BIT_DAC);
421
422 dprintf(1, "VBE DISPI: lfb_addr=%x, size %d MB\n",
Gerd Hoffmann091dd172012-02-06 15:51:43 +0100423 lfb_addr, totalmem >> 20);
Kevin O'Connor933bb762012-02-01 21:54:55 -0500424
425 // Validate modes
426 u16 en = dispi_read(VBE_DISPI_INDEX_ENABLE);
427 dispi_write(VBE_DISPI_INDEX_ENABLE, en | VBE_DISPI_GETCAPS);
428 u16 max_xres = dispi_read(VBE_DISPI_INDEX_XRES);
429 u16 max_bpp = dispi_read(VBE_DISPI_INDEX_BPP);
430 dispi_write(VBE_DISPI_INDEX_ENABLE, en);
431 struct bochsvga_mode *m = bochsvga_modes;
432 for (; m < &bochsvga_modes[ARRAY_SIZE(bochsvga_modes)]; m++) {
433 u16 width = GET_GLOBAL(m->info.width);
434 u16 height = GET_GLOBAL(m->info.height);
435 u8 depth = GET_GLOBAL(m->info.depth);
436 u32 mem = (height * DIV_ROUND_UP(width * vga_bpp(&m->info), 8)
Kevin O'Connor68f56aa2013-09-10 10:41:33 -0400437 * stdvga_vram_ratio(&m->info));
Kevin O'Connor933bb762012-02-01 21:54:55 -0500438
439 if (width > max_xres || depth > max_bpp || mem > totalmem) {
440 dprintf(1, "Removing mode %x\n", GET_GLOBAL(m->mode));
441 SET_VGA(m->mode, 0xffff);
442 }
443 }
444
445 return 0;
446}