1
/*
2
* QEMU VGA Emulator .
ths
authored
18 years ago
3
*
4
* Copyright ( c ) 2003 Fabrice Bellard
ths
authored
18 years ago
5
*
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
* Permission is hereby granted , free of charge , to any person obtaining a copy
* of this software and associated documentation files ( the "Software" ), to deal
* in the Software without restriction , including without limitation the rights
* to use , copy , modify , merge , publish , distribute , sublicense , and / or sell
* copies of the Software , and to permit persons to whom the Software is
* furnished to do so , subject to the following conditions :
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software .
*
* THE SOFTWARE IS PROVIDED "AS IS" , WITHOUT WARRANTY OF ANY KIND , EXPRESS OR
* IMPLIED , INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY ,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT . IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM , DAMAGES OR OTHER
* LIABILITY , WHETHER IN AN ACTION OF CONTRACT , TORT OR OTHERWISE , ARISING FROM ,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE .
*/
24
25
26
27
# include "hw.h"
# include "console.h"
# include "pc.h"
# include "pci.h"
28
# include "vga_int.h"
29
# include "pixel_ops.h"
malc
authored
16 years ago
30
# include "qemu-timer.h"
31
# include "kvm.h"
32
33
// # define DEBUG_VGA
34
// # define DEBUG_VGA_MEM
35
36
// # define DEBUG_VGA_REG
37
38
// # define DEBUG_BOCHS_VBE
39
/* force some bits to zero */
40
const uint8_t sr_mask [ 8 ] = {
41
42
43
44
45
46
47
48
49
50
( uint8_t ) ~ 0xfc ,
( uint8_t ) ~ 0xc2 ,
( uint8_t ) ~ 0xf0 ,
( uint8_t ) ~ 0xc0 ,
( uint8_t ) ~ 0xf1 ,
( uint8_t ) ~ 0xff ,
( uint8_t ) ~ 0xff ,
( uint8_t ) ~ 0x00 ,
};
51
const uint8_t gr_mask [ 16 ] = {
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
( uint8_t ) ~ 0xf0 , /* 0x00 */
( uint8_t ) ~ 0xf0 , /* 0x01 */
( uint8_t ) ~ 0xf0 , /* 0x02 */
( uint8_t ) ~ 0xe0 , /* 0x03 */
( uint8_t ) ~ 0xfc , /* 0x04 */
( uint8_t ) ~ 0x84 , /* 0x05 */
( uint8_t ) ~ 0xf0 , /* 0x06 */
( uint8_t ) ~ 0xf0 , /* 0x07 */
( uint8_t ) ~ 0x00 , /* 0x08 */
( uint8_t ) ~ 0xff , /* 0x09 */
( uint8_t ) ~ 0xff , /* 0x0a */
( uint8_t ) ~ 0xff , /* 0x0b */
( uint8_t ) ~ 0xff , /* 0x0c */
( uint8_t ) ~ 0xff , /* 0x0d */
( uint8_t ) ~ 0xff , /* 0x0e */
( uint8_t ) ~ 0xff , /* 0x0f */
};
# define cbswap_32 ( __x ) \
(( uint32_t )( \
((( uint32_t )( __x ) & ( uint32_t ) 0x000000ffUL ) << 24 ) | \
((( uint32_t )( __x ) & ( uint32_t ) 0x0000ff00UL ) << 8 ) | \
((( uint32_t )( __x ) & ( uint32_t ) 0x00ff0000UL ) >> 8 ) | \
((( uint32_t )( __x ) & ( uint32_t ) 0xff000000UL ) >> 24 ) ))
77
# ifdef WORDS_BIGENDIAN
78
79
80
81
82
# define PAT ( x ) cbswap_32 ( x )
# else
# define PAT ( x ) ( x )
# endif
83
84
85
86
87
88
89
90
91
92
93
94
# ifdef WORDS_BIGENDIAN
# define BIG 1
# else
# define BIG 0
# endif
# ifdef WORDS_BIGENDIAN
# define GET_PLANE ( data , p ) ((( data ) >> ( 24 - ( p ) * 8 )) & 0xff )
# else
# define GET_PLANE ( data , p ) ((( data ) >> (( p ) * 8 )) & 0xff )
# endif
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
static const uint32_t mask16 [ 16 ] = {
PAT ( 0x00000000 ),
PAT ( 0x000000ff ),
PAT ( 0x0000ff00 ),
PAT ( 0x0000ffff ),
PAT ( 0x00ff0000 ),
PAT ( 0x00ff00ff ),
PAT ( 0x00ffff00 ),
PAT ( 0x00ffffff ),
PAT ( 0xff000000 ),
PAT ( 0xff0000ff ),
PAT ( 0xff00ff00 ),
PAT ( 0xff00ffff ),
PAT ( 0xffff0000 ),
PAT ( 0xffff00ff ),
PAT ( 0xffffff00 ),
PAT ( 0xffffffff ),
};
# undef PAT
116
# ifdef WORDS_BIGENDIAN
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
# define PAT ( x ) ( x )
# else
# define PAT ( x ) cbswap_32 ( x )
# endif
static const uint32_t dmask16 [ 16 ] = {
PAT ( 0x00000000 ),
PAT ( 0x000000ff ),
PAT ( 0x0000ff00 ),
PAT ( 0x0000ffff ),
PAT ( 0x00ff0000 ),
PAT ( 0x00ff00ff ),
PAT ( 0x00ffff00 ),
PAT ( 0x00ffffff ),
PAT ( 0xff000000 ),
PAT ( 0xff0000ff ),
PAT ( 0xff00ff00 ),
PAT ( 0xff00ffff ),
PAT ( 0xffff0000 ),
PAT ( 0xffff00ff ),
PAT ( 0xffffff00 ),
PAT ( 0xffffffff ),
};
static const uint32_t dmask4 [ 4 ] = {
PAT ( 0x00000000 ),
PAT ( 0x0000ffff ),
PAT ( 0xffff0000 ),
PAT ( 0xffffffff ),
};
static uint32_t expand4 [ 256 ];
static uint16_t expand2 [ 256 ];
150
static uint8_t expand4to8 [ 16 ];
151
152
153
static void vga_screen_dump ( void * opaque , const char * filename );
malc
authored
16 years ago
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
static void vga_dumb_update_retrace_info ( VGAState * s )
{
( void ) s ;
}
static void vga_precise_update_retrace_info ( VGAState * s )
{
int htotal_chars ;
int hretr_start_char ;
int hretr_skew_chars ;
int hretr_end_char ;
int vtotal_lines ;
int vretr_start_line ;
int vretr_end_line ;
int div2 , sldiv2 , dots ;
int clocking_mode ;
int clock_sel ;
173
const int clk_hz [] = { 25175000 , 28322000 , 25175000 , 25175000 };
malc
authored
16 years ago
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
int64_t chars_per_sec ;
struct vga_precise_retrace * r = & s -> retrace_info . precise ;
htotal_chars = s -> cr [ 0x00 ] + 5 ;
hretr_start_char = s -> cr [ 0x04 ];
hretr_skew_chars = ( s -> cr [ 0x05 ] >> 5 ) & 3 ;
hretr_end_char = s -> cr [ 0x05 ] & 0x1f ;
vtotal_lines = ( s -> cr [ 0x06 ]
| ((( s -> cr [ 0x07 ] & 1 ) | (( s -> cr [ 0x07 ] >> 4 ) & 2 )) << 8 )) + 2
;
vretr_start_line = s -> cr [ 0x10 ]
| (((( s -> cr [ 0x07 ] >> 2 ) & 1 ) | (( s -> cr [ 0x07 ] >> 6 ) & 2 )) << 8 )
;
vretr_end_line = s -> cr [ 0x11 ] & 0xf ;
div2 = ( s -> cr [ 0x17 ] >> 2 ) & 1 ;
sldiv2 = ( s -> cr [ 0x17 ] >> 3 ) & 1 ;
clocking_mode = ( s -> sr [ 0x01 ] >> 3 ) & 1 ;
clock_sel = ( s -> msr >> 2 ) & 3 ;
malc
authored
16 years ago
196
dots = ( s -> msr & 1 ) ? 8 : 9 ;
malc
authored
16 years ago
197
198
chars_per_sec = clk_hz [ clock_sel ] / dots ;
malc
authored
16 years ago
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
htotal_chars <<= clocking_mode ;
r -> total_chars = vtotal_lines * htotal_chars ;
if ( r -> freq ) {
r -> ticks_per_char = ticks_per_sec / ( r -> total_chars * r -> freq );
} else {
r -> ticks_per_char = ticks_per_sec / chars_per_sec ;
}
r -> vstart = vretr_start_line ;
r -> vend = r -> vstart + vretr_end_line + 1 ;
r -> hstart = hretr_start_char + hretr_skew_chars ;
r -> hend = r -> hstart + hretr_end_char + 1 ;
r -> htotal = htotal_chars ;
malc
authored
16 years ago
216
# if 0
malc
authored
16 years ago
217
printf (
malc
authored
16 years ago
218
"hz=%f \n "
malc
authored
16 years ago
219
220
221
222
223
224
225
226
227
228
229
230
231
"htotal = %d \n "
"hretr_start = %d \n "
"hretr_skew = %d \n "
"hretr_end = %d \n "
"vtotal = %d \n "
"vretr_start = %d \n "
"vretr_end = %d \n "
"div2 = %d sldiv2 = %d \n "
"clocking_mode = %d \n "
"clock_sel = %d %d \n "
"dots = %d \n "
"ticks/char = %lld \n "
" \n " ,
malc
authored
16 years ago
232
( double ) ticks_per_sec / ( r -> ticks_per_char * r -> total_chars ),
malc
authored
16 years ago
233
234
235
236
237
238
239
240
241
242
htotal_chars ,
hretr_start_char ,
hretr_skew_chars ,
hretr_end_char ,
vtotal_lines ,
vretr_start_line ,
vretr_end_line ,
div2 , sldiv2 ,
clocking_mode ,
clock_sel ,
243
clk_hz [ clock_sel ],
malc
authored
16 years ago
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
dots ,
r -> ticks_per_char
);
# endif
}
static uint8_t vga_precise_retrace ( VGAState * s )
{
struct vga_precise_retrace * r = & s -> retrace_info . precise ;
uint8_t val = s -> st01 & ~ ( ST01_V_RETRACE | ST01_DISP_ENABLE );
if ( r -> total_chars ) {
int cur_line , cur_line_char , cur_char ;
int64_t cur_tick ;
cur_tick = qemu_get_clock ( vm_clock );
cur_char = ( cur_tick / r -> ticks_per_char ) % r -> total_chars ;
cur_line = cur_char / r -> htotal ;
if ( cur_line >= r -> vstart && cur_line <= r -> vend ) {
val |= ST01_V_RETRACE | ST01_DISP_ENABLE ;
malc
authored
16 years ago
266
267
268
269
270
} else {
cur_line_char = cur_char % r -> htotal ;
if ( cur_line_char >= r -> hstart && cur_line_char <= r -> hend ) {
val |= ST01_DISP_ENABLE ;
}
malc
authored
16 years ago
271
272
273
274
275
276
277
278
279
280
281
282
283
}
return val ;
} else {
return s -> st01 ^ ( ST01_V_RETRACE | ST01_DISP_ENABLE );
}
}
static uint8_t vga_dumb_retrace ( VGAState * s )
{
return s -> st01 ^ ( ST01_V_RETRACE | ST01_DISP_ENABLE );
}
284
static uint32_t vga_ioport_read ( void * opaque , uint32_t addr )
285
{
286
VGAState * s = opaque ;
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
int val , index ;
/* check port range access depending on color/monochrome mode */
if (( addr >= 0x3b0 && addr <= 0x3bf && ( s -> msr & MSR_COLOR_EMULATION )) ||
( addr >= 0x3d0 && addr <= 0x3df && ! ( s -> msr & MSR_COLOR_EMULATION ))) {
val = 0xff ;
} else {
switch ( addr ) {
case 0x3c0 :
if ( s -> ar_flip_flop == 0 ) {
val = s -> ar_index ;
} else {
val = 0 ;
}
break ;
case 0x3c1 :
index = s -> ar_index & 0x1f ;
ths
authored
18 years ago
304
if ( index < 21 )
305
306
307
308
309
310
311
312
313
314
315
316
val = s -> ar [ index ];
else
val = 0 ;
break ;
case 0x3c2 :
val = s -> st00 ;
break ;
case 0x3c4 :
val = s -> sr_index ;
break ;
case 0x3c5 :
val = s -> sr [ s -> sr_index ];
317
318
319
# ifdef DEBUG_VGA_REG
printf ( "vga: read SR%x = 0x%02x \n " , s -> sr_index , val );
# endif
320
321
322
323
break ;
case 0x3c7 :
val = s -> dac_state ;
break ;
324
325
326
case 0x3c8 :
val = s -> dac_write_index ;
break ;
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
case 0x3c9 :
val = s -> palette [ s -> dac_read_index * 3 + s -> dac_sub_index ];
if ( ++ s -> dac_sub_index == 3 ) {
s -> dac_sub_index = 0 ;
s -> dac_read_index ++ ;
}
break ;
case 0x3ca :
val = s -> fcr ;
break ;
case 0x3cc :
val = s -> msr ;
break ;
case 0x3ce :
val = s -> gr_index ;
break ;
case 0x3cf :
val = s -> gr [ s -> gr_index ];
345
346
347
# ifdef DEBUG_VGA_REG
printf ( "vga: read GR%x = 0x%02x \n " , s -> gr_index , val );
# endif
348
349
350
351
352
353
354
355
break ;
case 0x3b4 :
case 0x3d4 :
val = s -> cr_index ;
break ;
case 0x3b5 :
case 0x3d5 :
val = s -> cr [ s -> cr_index ];
356
357
358
# ifdef DEBUG_VGA_REG
printf ( "vga: read CR%x = 0x%02x \n " , s -> cr_index , val );
# endif
359
360
361
362
break ;
case 0x3ba :
case 0x3da :
/* just toggle to fool polling */
malc
authored
16 years ago
363
val = s -> st01 = s -> retrace ( s );
364
365
366
367
368
369
370
s -> ar_flip_flop = 0 ;
break ;
default :
val = 0x00 ;
break ;
}
}
371
# if defined ( DEBUG_VGA )
372
373
374
375
376
printf ( "VGA: read addr=0x%04x data=0x%02x \n " , addr , val );
# endif
return val ;
}
377
static void vga_ioport_write ( void * opaque , uint32_t addr , uint32_t val )
378
{
379
VGAState * s = opaque ;
380
int index ;
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
/* check port range access depending on color/monochrome mode */
if (( addr >= 0x3b0 && addr <= 0x3bf && ( s -> msr & MSR_COLOR_EMULATION )) ||
( addr >= 0x3d0 && addr <= 0x3df && ! ( s -> msr & MSR_COLOR_EMULATION )))
return ;
# ifdef DEBUG_VGA
printf ( "VGA: write addr=0x%04x data=0x%02x \n " , addr , val );
# endif
switch ( addr ) {
case 0x3c0 :
if ( s -> ar_flip_flop == 0 ) {
val &= 0x3f ;
s -> ar_index = val ;
} else {
index = s -> ar_index & 0x1f ;
switch ( index ) {
case 0x00 ... 0x0f :
s -> ar [ index ] = val & 0x3f ;
break ;
case 0x10 :
s -> ar [ index ] = val & ~ 0x10 ;
break ;
case 0x11 :
s -> ar [ index ] = val ;
break ;
case 0x12 :
s -> ar [ index ] = val & ~ 0xc0 ;
break ;
case 0x13 :
s -> ar [ index ] = val & ~ 0xf0 ;
break ;
case 0x14 :
s -> ar [ index ] = val & ~ 0xf0 ;
break ;
default :
break ;
}
}
s -> ar_flip_flop ^= 1 ;
break ;
case 0x3c2 :
s -> msr = val & ~ 0x10 ;
malc
authored
16 years ago
425
s -> update_retrace_info ( s );
426
427
428
429
430
break ;
case 0x3c4 :
s -> sr_index = val & 7 ;
break ;
case 0x3c5 :
431
432
433
# ifdef DEBUG_VGA_REG
printf ( "vga: write SR%x = 0x%02x \n " , s -> sr_index , val );
# endif
434
s -> sr [ s -> sr_index ] = val & sr_mask [ s -> sr_index ];
malc
authored
16 years ago
435
if ( s -> sr_index == 1 ) s -> update_retrace_info ( s );
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
break ;
case 0x3c7 :
s -> dac_read_index = val ;
s -> dac_sub_index = 0 ;
s -> dac_state = 3 ;
break ;
case 0x3c8 :
s -> dac_write_index = val ;
s -> dac_sub_index = 0 ;
s -> dac_state = 0 ;
break ;
case 0x3c9 :
s -> dac_cache [ s -> dac_sub_index ] = val ;
if ( ++ s -> dac_sub_index == 3 ) {
memcpy ( & s -> palette [ s -> dac_write_index * 3 ], s -> dac_cache , 3 );
s -> dac_sub_index = 0 ;
s -> dac_write_index ++ ;
}
break ;
case 0x3ce :
s -> gr_index = val & 0x0f ;
break ;
case 0x3cf :
459
460
461
# ifdef DEBUG_VGA_REG
printf ( "vga: write GR%x = 0x%02x \n " , s -> gr_index , val );
# endif
462
463
464
465
466
467
468
469
s -> gr [ s -> gr_index ] = val & gr_mask [ s -> gr_index ];
break ;
case 0x3b4 :
case 0x3d4 :
s -> cr_index = val ;
break ;
case 0x3b5 :
case 0x3d5 :
470
471
472
# ifdef DEBUG_VGA_REG
printf ( "vga: write CR%x = 0x%02x \n " , s -> cr_index , val );
# endif
473
/* handle CR0-7 protection */
474
if (( s -> cr [ 0x11 ] & 0x80 ) && s -> cr_index <= 7 ) {
475
476
477
478
479
480
481
482
483
484
485
/* can always write bit 4 of CR7 */
if ( s -> cr_index == 7 )
s -> cr [ 7 ] = ( s -> cr [ 7 ] & ~ 0x10 ) | ( val & 0x10 );
return ;
}
switch ( s -> cr_index ) {
case 0x01 : /* horizontal display end */
case 0x07 :
case 0x09 :
case 0x0c :
case 0x0d :
ths
authored
18 years ago
486
case 0x12 : /* vertical display end */
487
488
489
490
491
492
s -> cr [ s -> cr_index ] = val ;
break ;
default :
s -> cr [ s -> cr_index ] = val ;
break ;
}
malc
authored
16 years ago
493
494
495
496
497
498
499
500
501
502
503
504
switch ( s -> cr_index ) {
case 0x00 :
case 0x04 :
case 0x05 :
case 0x06 :
case 0x07 :
case 0x11 :
case 0x17 :
s -> update_retrace_info ( s );
break ;
}
505
506
507
508
509
510
511
512
break ;
case 0x3ba :
case 0x3da :
s -> fcr = val & 0x10 ;
break ;
}
}
513
# ifdef CONFIG_BOCHS_VBE
514
static uint32_t vbe_ioport_read_index ( void * opaque , uint32_t addr )
515
{
516
VGAState * s = opaque ;
517
uint32_t val ;
518
519
520
val = s -> vbe_index ;
return val ;
}
521
522
523
524
525
526
static uint32_t vbe_ioport_read_data ( void * opaque , uint32_t addr )
{
VGAState * s = opaque ;
uint32_t val ;
527
528
529
530
531
532
533
534
535
536
537
538
539
540
if ( s -> vbe_index <= VBE_DISPI_INDEX_NB ) {
if ( s -> vbe_regs [ VBE_DISPI_INDEX_ENABLE ] & VBE_DISPI_GETCAPS ) {
switch ( s -> vbe_index ) {
/* XXX: do not hardcode ? */
case VBE_DISPI_INDEX_XRES :
val = VBE_DISPI_MAX_XRES ;
break ;
case VBE_DISPI_INDEX_YRES :
val = VBE_DISPI_MAX_YRES ;
break ;
case VBE_DISPI_INDEX_BPP :
val = VBE_DISPI_MAX_BPP ;
break ;
default :
ths
authored
18 years ago
541
val = s -> vbe_regs [ s -> vbe_index ];
542
543
544
break ;
}
} else {
ths
authored
18 years ago
545
val = s -> vbe_regs [ s -> vbe_index ];
546
547
}
} else {
548
val = 0 ;
549
}
550
# ifdef DEBUG_BOCHS_VBE
551
printf ( "VBE: read index=0x%x val=0x%x \n " , s -> vbe_index , val );
552
553
554
555
# endif
return val ;
}
556
557
558
559
560
561
562
static void vbe_ioport_write_index ( void * opaque , uint32_t addr , uint32_t val )
{
VGAState * s = opaque ;
s -> vbe_index = val ;
}
static void vbe_ioport_write_data ( void * opaque , uint32_t addr , uint32_t val )
563
{
564
VGAState * s = opaque ;
565
566
if ( s -> vbe_index <= VBE_DISPI_INDEX_NB ) {
567
568
569
570
571
# ifdef DEBUG_BOCHS_VBE
printf ( "VBE: write index=0x%x val=0x%x \n " , s -> vbe_index , val );
# endif
switch ( s -> vbe_index ) {
case VBE_DISPI_INDEX_ID :
572
573
if ( val == VBE_DISPI_ID0 ||
val == VBE_DISPI_ID1 ||
574
575
576
val == VBE_DISPI_ID2 ||
val == VBE_DISPI_ID3 ||
val == VBE_DISPI_ID4 ) {
577
578
s -> vbe_regs [ s -> vbe_index ] = val ;
}
579
580
break ;
case VBE_DISPI_INDEX_XRES :
581
582
583
if (( val <= VBE_DISPI_MAX_XRES ) && (( val & 7 ) == 0 )) {
s -> vbe_regs [ s -> vbe_index ] = val ;
}
584
585
break ;
case VBE_DISPI_INDEX_YRES :
586
587
588
if ( val <= VBE_DISPI_MAX_YRES ) {
s -> vbe_regs [ s -> vbe_index ] = val ;
}
589
590
591
592
break ;
case VBE_DISPI_INDEX_BPP :
if ( val == 0 )
val = 8 ;
ths
authored
18 years ago
593
if ( val == 4 || val == 8 || val == 15 ||
594
595
596
val == 16 || val == 24 || val == 32 ) {
s -> vbe_regs [ s -> vbe_index ] = val ;
}
597
598
break ;
case VBE_DISPI_INDEX_BANK :
599
600
601
602
603
if ( s -> vbe_regs [ VBE_DISPI_INDEX_BPP ] == 4 ) {
val &= ( s -> vbe_bank_mask >> 2 );
} else {
val &= s -> vbe_bank_mask ;
}
604
s -> vbe_regs [ s -> vbe_index ] = val ;
605
s -> bank_offset = ( val << 16 );
606
607
break ;
case VBE_DISPI_INDEX_ENABLE :
608
609
if (( val & VBE_DISPI_ENABLED ) &&
! ( s -> vbe_regs [ VBE_DISPI_INDEX_ENABLE ] & VBE_DISPI_ENABLED )) {
610
611
int h , shift_control ;
ths
authored
18 years ago
612
s -> vbe_regs [ VBE_DISPI_INDEX_VIRT_WIDTH ] =
613
s -> vbe_regs [ VBE_DISPI_INDEX_XRES ];
ths
authored
18 years ago
614
s -> vbe_regs [ VBE_DISPI_INDEX_VIRT_HEIGHT ] =
615
616
617
s -> vbe_regs [ VBE_DISPI_INDEX_YRES ];
s -> vbe_regs [ VBE_DISPI_INDEX_X_OFFSET ] = 0 ;
s -> vbe_regs [ VBE_DISPI_INDEX_Y_OFFSET ] = 0 ;
ths
authored
18 years ago
618
619
620
621
if ( s -> vbe_regs [ VBE_DISPI_INDEX_BPP ] == 4 )
s -> vbe_line_offset = s -> vbe_regs [ VBE_DISPI_INDEX_XRES ] >> 1 ;
else
ths
authored
18 years ago
622
s -> vbe_line_offset = s -> vbe_regs [ VBE_DISPI_INDEX_XRES ] *
623
624
(( s -> vbe_regs [ VBE_DISPI_INDEX_BPP ] + 7 ) >> 3 );
s -> vbe_start_addr = 0 ;
625
626
627
/* clear the screen (should be done in BIOS) */
if ( ! ( val & VBE_DISPI_NOCLEARMEM )) {
ths
authored
18 years ago
628
memset ( s -> vram_ptr , 0 ,
629
630
s -> vbe_regs [ VBE_DISPI_INDEX_YRES ] * s -> vbe_line_offset );
}
ths
authored
18 years ago
631
632
633
634
/* we initialize the VGA graphic mode ( should be done
in BIOS ) */
s -> gr [ 0x06 ] = ( s -> gr [ 0x06 ] & ~ 0x0c ) | 0x05 ; /* graphic mode + memory map 1 */
635
636
637
638
s -> cr [ 0x17 ] |= 3 ; /* no CGA modes */
s -> cr [ 0x13 ] = s -> vbe_line_offset >> 3 ;
/* width */
s -> cr [ 0x01 ] = ( s -> vbe_regs [ VBE_DISPI_INDEX_XRES ] >> 3 ) - 1 ;
639
/* height (only meaningful if < 1024) */
640
641
h = s -> vbe_regs [ VBE_DISPI_INDEX_YRES ] - 1 ;
s -> cr [ 0x12 ] = h ;
ths
authored
18 years ago
642
s -> cr [ 0x07 ] = ( s -> cr [ 0x07 ] & ~ 0x42 ) |
643
644
645
646
647
(( h >> 7 ) & 0x02 ) | (( h >> 3 ) & 0x40 );
/* line compare to 1023 */
s -> cr [ 0x18 ] = 0xff ;
s -> cr [ 0x07 ] |= 0x10 ;
s -> cr [ 0x09 ] |= 0x40 ;
ths
authored
18 years ago
648
649
650
651
652
653
if ( s -> vbe_regs [ VBE_DISPI_INDEX_BPP ] == 4 ) {
shift_control = 0 ;
s -> sr [ 0x01 ] &= ~ 8 ; /* no double line */
} else {
shift_control = 2 ;
654
s -> sr [ 4 ] |= 0x08 ; /* set chain 4 mode */
655
s -> sr [ 2 ] |= 0x0f ; /* activate all planes */
656
657
658
}
s -> gr [ 0x05 ] = ( s -> gr [ 0x05 ] & ~ 0x60 ) | ( shift_control << 5 );
s -> cr [ 0x09 ] &= ~ 0x9f ; /* no double scan */
659
660
} else {
/* XXX: the bios should do that */
661
s -> bank_offset = 0 ;
662
}
663
s -> dac_8bit = ( val & VBE_DISPI_8BIT_DAC ) > 0 ;
664
s -> vbe_regs [ s -> vbe_index ] = val ;
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
break ;
case VBE_DISPI_INDEX_VIRT_WIDTH :
{
int w , h , line_offset ;
if ( val < s -> vbe_regs [ VBE_DISPI_INDEX_XRES ])
return ;
w = val ;
if ( s -> vbe_regs [ VBE_DISPI_INDEX_BPP ] == 4 )
line_offset = w >> 1 ;
else
line_offset = w * (( s -> vbe_regs [ VBE_DISPI_INDEX_BPP ] + 7 ) >> 3 );
h = s -> vram_size / line_offset ;
/* XXX: support weird bochs semantics ? */
if ( h < s -> vbe_regs [ VBE_DISPI_INDEX_YRES ])
return ;
s -> vbe_regs [ VBE_DISPI_INDEX_VIRT_WIDTH ] = w ;
s -> vbe_regs [ VBE_DISPI_INDEX_VIRT_HEIGHT ] = h ;
s -> vbe_line_offset = line_offset ;
}
break ;
case VBE_DISPI_INDEX_X_OFFSET :
case VBE_DISPI_INDEX_Y_OFFSET :
{
int x ;
s -> vbe_regs [ s -> vbe_index ] = val ;
s -> vbe_start_addr = s -> vbe_line_offset * s -> vbe_regs [ VBE_DISPI_INDEX_Y_OFFSET ];
x = s -> vbe_regs [ VBE_DISPI_INDEX_X_OFFSET ];
if ( s -> vbe_regs [ VBE_DISPI_INDEX_BPP ] == 4 )
s -> vbe_start_addr += x >> 1 ;
else
s -> vbe_start_addr += x * (( s -> vbe_regs [ VBE_DISPI_INDEX_BPP ] + 7 ) >> 3 );
s -> vbe_start_addr >>= 2 ;
698
699
700
701
702
703
704
705
706
}
break ;
default :
break ;
}
}
}
# endif
707
/* called for accesses between 0xa0000 and 0xc0000 */
708
uint32_t vga_mem_readb ( void * opaque , target_phys_addr_t addr )
709
{
710
VGAState * s = opaque ;
711
712
int memory_map_mode , plane ;
uint32_t ret ;
ths
authored
18 years ago
713
714
715
/* convert to VGA memory offset */
memory_map_mode = ( s -> gr [ 6 ] >> 2 ) & 3 ;
716
addr &= 0x1ffff ;
717
718
719
720
switch ( memory_map_mode ) {
case 0 :
break ;
case 1 :
721
if ( addr >= 0x10000 )
722
return 0xff ;
723
addr += s -> bank_offset ;
724
725
break ;
case 2 :
726
addr -= 0x10000 ;
727
728
729
730
731
if ( addr >= 0x8000 )
return 0xff ;
break ;
default :
case 3 :
732
addr -= 0x18000 ;
733
734
if ( addr >= 0x8000 )
return 0xff ;
735
736
break ;
}
ths
authored
18 years ago
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
if ( s -> sr [ 4 ] & 0x08 ) {
/* chain 4 mode : simplest access */
ret = s -> vram_ptr [ addr ];
} else if ( s -> gr [ 5 ] & 0x10 ) {
/* odd/even mode (aka text mode mapping) */
plane = ( s -> gr [ 4 ] & 2 ) | ( addr & 1 );
ret = s -> vram_ptr [(( addr & ~ 1 ) << 1 ) | plane ];
} else {
/* standard VGA latched access */
s -> latch = (( uint32_t * ) s -> vram_ptr )[ addr ];
if ( ! ( s -> gr [ 5 ] & 0x08 )) {
/* read mode 0 */
plane = s -> gr [ 4 ];
752
ret = GET_PLANE ( s -> latch , plane );
753
754
755
756
757
758
759
760
761
762
763
} else {
/* read mode 1 */
ret = ( s -> latch ^ mask16 [ s -> gr [ 2 ]]) & mask16 [ s -> gr [ 7 ]];
ret |= ret >> 16 ;
ret |= ret >> 8 ;
ret = ( ~ ret ) & 0xff ;
}
}
return ret ;
}
764
static uint32_t vga_mem_readw ( void * opaque , target_phys_addr_t addr )
765
766
{
uint32_t v ;
767
# ifdef TARGET_WORDS_BIGENDIAN
768
769
v = vga_mem_readb ( opaque , addr ) << 8 ;
v |= vga_mem_readb ( opaque , addr + 1 );
770
# else
771
772
v = vga_mem_readb ( opaque , addr );
v |= vga_mem_readb ( opaque , addr + 1 ) << 8 ;
773
# endif
774
775
776
return v ;
}
777
static uint32_t vga_mem_readl ( void * opaque , target_phys_addr_t addr )
778
779
{
uint32_t v ;
780
# ifdef TARGET_WORDS_BIGENDIAN
781
782
783
784
v = vga_mem_readb ( opaque , addr ) << 24 ;
v |= vga_mem_readb ( opaque , addr + 1 ) << 16 ;
v |= vga_mem_readb ( opaque , addr + 2 ) << 8 ;
v |= vga_mem_readb ( opaque , addr + 3 );
785
# else
786
787
788
789
v = vga_mem_readb ( opaque , addr );
v |= vga_mem_readb ( opaque , addr + 1 ) << 8 ;
v |= vga_mem_readb ( opaque , addr + 2 ) << 16 ;
v |= vga_mem_readb ( opaque , addr + 3 ) << 24 ;
790
# endif
791
792
793
794
return v ;
}
/* called for accesses between 0xa0000 and 0xc0000 */
795
void vga_mem_writeb ( void * opaque , target_phys_addr_t addr , uint32_t val )
796
{
797
VGAState * s = opaque ;
798
int memory_map_mode , plane , write_mode , b , func_select , mask ;
799
800
uint32_t write_mask , bit_mask , set_mask ;
801
# ifdef DEBUG_VGA_MEM
802
803
804
805
printf ( "vga: [0x%x] = 0x%02x \n " , addr , val );
# endif
/* convert to VGA memory offset */
memory_map_mode = ( s -> gr [ 6 ] >> 2 ) & 3 ;
806
addr &= 0x1ffff ;
807
808
809
810
switch ( memory_map_mode ) {
case 0 :
break ;
case 1 :
811
if ( addr >= 0x10000 )
812
return ;
813
addr += s -> bank_offset ;
814
815
break ;
case 2 :
816
addr -= 0x10000 ;
817
818
819
820
821
if ( addr >= 0x8000 )
return ;
break ;
default :
case 3 :
822
addr -= 0x18000 ;
823
824
if ( addr >= 0x8000 )
return ;
825
826
break ;
}
ths
authored
18 years ago
827
828
829
830
if ( s -> sr [ 4 ] & 0x08 ) {
/* chain 4 mode : simplest access */
plane = addr & 3 ;
831
832
mask = ( 1 << plane );
if ( s -> sr [ 2 ] & mask ) {
833
s -> vram_ptr [ addr ] = val ;
834
# ifdef DEBUG_VGA_MEM
835
836
printf ( "vga: chain4: [0x%x] \n " , addr );
# endif
837
s -> plane_updated |= mask ; /* only used to detect font change */
838
cpu_physical_memory_set_dirty ( s -> vram_offset + addr );
839
840
841
842
}
} else if ( s -> gr [ 5 ] & 0x10 ) {
/* odd/even mode (aka text mode mapping) */
plane = ( s -> gr [ 4 ] & 2 ) | ( addr & 1 );
843
844
mask = ( 1 << plane );
if ( s -> sr [ 2 ] & mask ) {
845
846
addr = (( addr & ~ 1 ) << 1 ) | plane ;
s -> vram_ptr [ addr ] = val ;
847
# ifdef DEBUG_VGA_MEM
848
849
printf ( "vga: odd/even: [0x%x] \n " , addr );
# endif
850
s -> plane_updated |= mask ; /* only used to detect font change */
851
cpu_physical_memory_set_dirty ( s -> vram_offset + addr );
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
}
} else {
/* standard VGA latched access */
write_mode = s -> gr [ 5 ] & 3 ;
switch ( write_mode ) {
default :
case 0 :
/* rotate */
b = s -> gr [ 3 ] & 7 ;
val = (( val >> b ) | ( val << ( 8 - b ))) & 0xff ;
val |= val << 8 ;
val |= val << 16 ;
/* apply set/reset mask */
set_mask = mask16 [ s -> gr [ 1 ]];
val = ( val & ~ set_mask ) | ( mask16 [ s -> gr [ 0 ]] & set_mask );
bit_mask = s -> gr [ 8 ];
break ;
case 1 :
val = s -> latch ;
goto do_write ;
case 2 :
val = mask16 [ val & 0x0f ];
bit_mask = s -> gr [ 8 ];
break ;
case 3 :
/* rotate */
b = s -> gr [ 3 ] & 7 ;
880
val = ( val >> b ) | ( val << ( 8 - b ));
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
bit_mask = s -> gr [ 8 ] & val ;
val = mask16 [ s -> gr [ 0 ]];
break ;
}
/* apply logical operation */
func_select = s -> gr [ 3 ] >> 3 ;
switch ( func_select ) {
case 0 :
default :
/* nothing to do */
break ;
case 1 :
/* and */
val &= s -> latch ;
break ;
case 2 :
/* or */
val |= s -> latch ;
break ;
case 3 :
/* xor */
val ^= s -> latch ;
break ;
}
/* apply bit mask */
bit_mask |= bit_mask << 8 ;
bit_mask |= bit_mask << 16 ;
val = ( val & bit_mask ) | ( s -> latch & ~ bit_mask );
do_write :
/* mask data according to sr[2] */
915
916
917
mask = s -> sr [ 2 ];
s -> plane_updated |= mask ; /* only used to detect font change */
write_mask = mask16 [ mask ];
ths
authored
18 years ago
918
919
(( uint32_t * ) s -> vram_ptr )[ addr ] =
((( uint32_t * ) s -> vram_ptr )[ addr ] & ~ write_mask ) |
920
( val & write_mask );
921
# ifdef DEBUG_VGA_MEM
ths
authored
18 years ago
922
printf ( "vga: latch: [0x%x] mask=0x%08x val=0x%08x \n " ,
923
924
addr * 4 , write_mask , val );
# endif
925
cpu_physical_memory_set_dirty ( s -> vram_offset + ( addr << 2 ));
926
927
928
}
}
929
static void vga_mem_writew ( void * opaque , target_phys_addr_t addr , uint32_t val )
930
{
931
# ifdef TARGET_WORDS_BIGENDIAN
932
933
vga_mem_writeb ( opaque , addr , ( val >> 8 ) & 0xff );
vga_mem_writeb ( opaque , addr + 1 , val & 0xff );
934
# else
935
936
vga_mem_writeb ( opaque , addr , val & 0xff );
vga_mem_writeb ( opaque , addr + 1 , ( val >> 8 ) & 0xff );
937
# endif
938
939
}
940
static void vga_mem_writel ( void * opaque , target_phys_addr_t addr , uint32_t val )
941
{
942
# ifdef TARGET_WORDS_BIGENDIAN
943
944
945
946
vga_mem_writeb ( opaque , addr , ( val >> 24 ) & 0xff );
vga_mem_writeb ( opaque , addr + 1 , ( val >> 16 ) & 0xff );
vga_mem_writeb ( opaque , addr + 2 , ( val >> 8 ) & 0xff );
vga_mem_writeb ( opaque , addr + 3 , val & 0xff );
947
# else
948
949
950
951
vga_mem_writeb ( opaque , addr , val & 0xff );
vga_mem_writeb ( opaque , addr + 1 , ( val >> 8 ) & 0xff );
vga_mem_writeb ( opaque , addr + 2 , ( val >> 16 ) & 0xff );
vga_mem_writeb ( opaque , addr + 3 , ( val >> 24 ) & 0xff );
952
# endif
953
954
955
956
957
958
}
typedef void vga_draw_glyph8_func ( uint8_t * d , int linesize ,
const uint8_t * font_ptr , int h ,
uint32_t fgcol , uint32_t bgcol );
typedef void vga_draw_glyph9_func ( uint8_t * d , int linesize ,
ths
authored
18 years ago
959
const uint8_t * font_ptr , int h ,
960
uint32_t fgcol , uint32_t bgcol , int dup9 );
ths
authored
18 years ago
961
typedef void vga_draw_line_func ( VGAState * s1 , uint8_t * d ,
962
963
964
965
966
967
968
969
const uint8_t * s , int width );
# define DEPTH 8
# include "vga_template.h"
# define DEPTH 15
# include "vga_template.h"
970
971
972
973
974
975
976
977
# define BGR_FORMAT
# define DEPTH 15
# include "vga_template.h"
# define DEPTH 16
# include "vga_template.h"
# define BGR_FORMAT
978
979
980
981
982
983
# define DEPTH 16
# include "vga_template.h"
# define DEPTH 32
# include "vga_template.h"
984
985
986
987
# define BGR_FORMAT
# define DEPTH 32
# include "vga_template.h"
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
static unsigned int rgb_to_pixel8_dup ( unsigned int r , unsigned int g , unsigned b )
{
unsigned int col ;
col = rgb_to_pixel8 ( r , g , b );
col |= col << 8 ;
col |= col << 16 ;
return col ;
}
static unsigned int rgb_to_pixel15_dup ( unsigned int r , unsigned int g , unsigned b )
{
unsigned int col ;
col = rgb_to_pixel15 ( r , g , b );
col |= col << 16 ;
return col ;
}
1005
1006
1007
1008
1009
1010
1011
1012
1013
static unsigned int rgb_to_pixel15bgr_dup ( unsigned int r , unsigned int g ,
unsigned int b )
{
unsigned int col ;
col = rgb_to_pixel15bgr ( r , g , b );
col |= col << 16 ;
return col ;
}
1014
1015
1016
1017
1018
1019
1020
1021
static unsigned int rgb_to_pixel16_dup ( unsigned int r , unsigned int g , unsigned b )
{
unsigned int col ;
col = rgb_to_pixel16 ( r , g , b );
col |= col << 16 ;
return col ;
}
1022
1023
1024
1025
1026
1027
1028
1029
1030
static unsigned int rgb_to_pixel16bgr_dup ( unsigned int r , unsigned int g ,
unsigned int b )
{
unsigned int col ;
col = rgb_to_pixel16bgr ( r , g , b );
col |= col << 16 ;
return col ;
}
1031
1032
1033
1034
1035
1036
1037
static unsigned int rgb_to_pixel32_dup ( unsigned int r , unsigned int g , unsigned b )
{
unsigned int col ;
col = rgb_to_pixel32 ( r , g , b );
return col ;
}
1038
1039
1040
1041
1042
1043
1044
static unsigned int rgb_to_pixel32bgr_dup ( unsigned int r , unsigned int g , unsigned b )
{
unsigned int col ;
col = rgb_to_pixel32bgr ( r , g , b );
return col ;
}
1045
1046
1047
/* return true if the palette was modified */
static int update_palette16 ( VGAState * s )
{
1048
int full_update , i ;
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
uint32_t v , col , * palette ;
full_update = 0 ;
palette = s -> last_palette ;
for ( i = 0 ; i < 16 ; i ++ ) {
v = s -> ar [ i ];
if ( s -> ar [ 0x10 ] & 0x80 )
v = (( s -> ar [ 0x14 ] & 0xf ) << 4 ) | ( v & 0xf );
else
v = (( s -> ar [ 0x14 ] & 0xc ) << 4 ) | ( v & 0x3f );
v = v * 3 ;
ths
authored
18 years ago
1060
1061
col = s -> rgb_to_pixel ( c6_to_8 ( s -> palette [ v ]),
c6_to_8 ( s -> palette [ v + 1 ]),
1062
1063
1064
1065
c6_to_8 ( s -> palette [ v + 2 ]));
if ( col != palette [ i ]) {
full_update = 1 ;
palette [ i ] = col ;
1066
}
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
}
return full_update ;
}
/* return true if the palette was modified */
static int update_palette256 ( VGAState * s )
{
int full_update , i ;
uint32_t v , col , * palette ;
full_update = 0 ;
palette = s -> last_palette ;
v = 0 ;
for ( i = 0 ; i < 256 ; i ++ ) {
1081
if ( s -> dac_8bit ) {
ths
authored
18 years ago
1082
1083
col = s -> rgb_to_pixel ( s -> palette [ v ],
s -> palette [ v + 1 ],
1084
1085
s -> palette [ v + 2 ]);
} else {
ths
authored
18 years ago
1086
1087
col = s -> rgb_to_pixel ( c6_to_8 ( s -> palette [ v ]),
c6_to_8 ( s -> palette [ v + 1 ]),
1088
1089
c6_to_8 ( s -> palette [ v + 2 ]));
}
1090
1091
1092
1093
if ( col != palette [ i ]) {
full_update = 1 ;
palette [ i ] = col ;
}
1094
v += 3 ;
1095
1096
1097
1098
}
return full_update ;
}
ths
authored
18 years ago
1099
1100
static void vga_get_offsets ( VGAState * s ,
uint32_t * pline_offset ,
1101
1102
uint32_t * pstart_addr ,
uint32_t * pline_compare )
1103
{
1104
uint32_t start_addr , line_offset , line_compare ;
1105
1106
1107
1108
# ifdef CONFIG_BOCHS_VBE
if ( s -> vbe_regs [ VBE_DISPI_INDEX_ENABLE ] & VBE_DISPI_ENABLED ) {
line_offset = s -> vbe_line_offset ;
start_addr = s -> vbe_start_addr ;
1109
line_compare = 65535 ;
1110
1111
} else
# endif
ths
authored
18 years ago
1112
{
1113
1114
1115
/* compute line_offset in bytes */
line_offset = s -> cr [ 0x13 ];
line_offset <<= 3 ;
1116
1117
1118
/* starting address */
start_addr = s -> cr [ 0x0d ] | ( s -> cr [ 0x0c ] << 8 );
1119
1120
/* line compare */
ths
authored
18 years ago
1121
line_compare = s -> cr [ 0x18 ] |
1122
1123
(( s -> cr [ 0x07 ] & 0x10 ) << 4 ) |
(( s -> cr [ 0x09 ] & 0x40 ) << 3 );
1124
}
1125
1126
* pline_offset = line_offset ;
* pstart_addr = start_addr ;
1127
* pline_compare = line_compare ;
1128
1129
1130
1131
1132
1133
1134
}
/* update start_addr and line_offset. Return TRUE if modified */
static int update_basic_params ( VGAState * s )
{
int full_update ;
uint32_t start_addr , line_offset , line_compare ;
ths
authored
18 years ago
1135
1136
1137
full_update = 0 ;
1138
s -> get_offsets ( s , & line_offset , & start_addr , & line_compare );
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
if ( line_offset != s -> line_offset ||
start_addr != s -> start_addr ||
line_compare != s -> line_compare ) {
s -> line_offset = line_offset ;
s -> start_addr = start_addr ;
s -> line_compare = line_compare ;
full_update = 1 ;
}
return full_update ;
}
1151
# define NB_DEPTHS 7
1152
1153
static inline int get_depth_index ( DisplayState * s )
1154
{
1155
switch ( ds_get_bits_per_pixel ( s )) {
1156
1157
1158
1159
default :
case 8 :
return 0 ;
case 15 :
1160
1161
1162
1163
if ( s -> bgr )
return 5 ;
else
return 1 ;
1164
case 16 :
1165
1166
1167
1168
if ( s -> bgr )
return 6 ;
else
return 2 ;
1169
case 32 :
1170
1171
1172
1173
if ( s -> bgr )
return 4 ;
else
return 3 ;
1174
1175
1176
}
}
1177
static vga_draw_glyph8_func * vga_draw_glyph8_table [ NB_DEPTHS ] = {
1178
1179
1180
1181
vga_draw_glyph8_8 ,
vga_draw_glyph8_16 ,
vga_draw_glyph8_16 ,
vga_draw_glyph8_32 ,
1182
vga_draw_glyph8_32 ,
1183
1184
vga_draw_glyph8_16 ,
vga_draw_glyph8_16 ,
1185
1186
};
1187
static vga_draw_glyph8_func * vga_draw_glyph16_table [ NB_DEPTHS ] = {
1188
1189
1190
1191
vga_draw_glyph16_8 ,
vga_draw_glyph16_16 ,
vga_draw_glyph16_16 ,
vga_draw_glyph16_32 ,
1192
vga_draw_glyph16_32 ,
1193
1194
vga_draw_glyph16_16 ,
vga_draw_glyph16_16 ,
1195
1196
};
1197
static vga_draw_glyph9_func * vga_draw_glyph9_table [ NB_DEPTHS ] = {
1198
1199
1200
1201
vga_draw_glyph9_8 ,
vga_draw_glyph9_16 ,
vga_draw_glyph9_16 ,
vga_draw_glyph9_32 ,
1202
vga_draw_glyph9_32 ,
1203
1204
vga_draw_glyph9_16 ,
vga_draw_glyph9_16 ,
1205
};
ths
authored
18 years ago
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
static const uint8_t cursor_glyph [ 32 * 4 ] = {
0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff ,
0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff ,
0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff ,
0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff ,
0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff ,
0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff ,
0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff ,
0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff ,
0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff ,
0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff ,
0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff ,
0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff ,
0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff ,
0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff ,
0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff ,
0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff ,
ths
authored
18 years ago
1224
};
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
static void vga_get_text_resolution ( VGAState * s , int * pwidth , int * pheight ,
int * pcwidth , int * pcheight )
{
int width , cwidth , height , cheight ;
/* total width & height */
cheight = ( s -> cr [ 9 ] & 0x1f ) + 1 ;
cwidth = 8 ;
if ( ! ( s -> sr [ 1 ] & 0x01 ))
cwidth = 9 ;
if ( s -> sr [ 1 ] & 0x08 )
cwidth = 16 ; /* NOTE: no 18 pixel wide */
width = ( s -> cr [ 0x01 ] + 1 );
if ( s -> cr [ 0x06 ] == 100 ) {
/* ugly hack for CGA 160x100x16 - explain me the logic */
height = 100 ;
} else {
height = s -> cr [ 0x12 ] |
(( s -> cr [ 0x07 ] & 0x02 ) << 7 ) |
(( s -> cr [ 0x07 ] & 0x40 ) << 3 );
height = ( height + 1 ) / cheight ;
}
* pwidth = width ;
* pheight = height ;
* pcwidth = cwidth ;
* pcheight = cheight ;
}
ths
authored
18 years ago
1255
1256
/*
* Text mode update
1257
1258
* Missing :
* - double scan
ths
authored
18 years ago
1259
* - double width
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
* - underline
* - flashing
*/
static void vga_draw_text ( VGAState * s , int full_update )
{
int cx , cy , cheight , cw , ch , cattr , height , width , ch_attr ;
int cx_min , cx_max , linesize , x_incr ;
uint32_t offset , fgcol , bgcol , v , cursor_offset ;
uint8_t * d1 , * d , * src , * s1 , * dest , * cursor_ptr ;
const uint8_t * font_ptr , * font_base [ 2 ];
int dup9 , line_offset , depth_index ;
uint32_t * palette ;
uint32_t * ch_attr_ptr ;
vga_draw_glyph8_func * vga_draw_glyph8 ;
vga_draw_glyph9_func * vga_draw_glyph9 ;
1276
1277
vga_dirty_log_stop ( s );
1278
1279
full_update |= update_palette16 ( s );
palette = s -> last_palette ;
ths
authored
18 years ago
1280
1281
1282
/* compute font data address (in plane 2) */
v = s -> sr [ 3 ];
1283
offset = ((( v >> 4 ) & 1 ) | (( v << 1 ) & 6 )) * 8192 * 4 + 2 ;
1284
1285
1286
1287
1288
1289
if ( offset != s -> font_offsets [ 0 ]) {
s -> font_offsets [ 0 ] = offset ;
full_update = 1 ;
}
font_base [ 0 ] = s -> vram_ptr + offset ;
1290
offset = ((( v >> 5 ) & 1 ) | (( v >> 1 ) & 6 )) * 8192 * 4 + 2 ;
1291
1292
1293
1294
1295
font_base [ 1 ] = s -> vram_ptr + offset ;
if ( offset != s -> font_offsets [ 1 ]) {
s -> font_offsets [ 1 ] = offset ;
full_update = 1 ;
}
1296
1297
1298
1299
1300
1301
if ( s -> plane_updated & ( 1 << 2 )) {
/* if the plane 2 was modified since the last display , it
indicates the font may have been modified */
s -> plane_updated = 0 ;
full_update = 1 ;
}
1302
1303
1304
1305
1306
full_update |= update_basic_params ( s );
line_offset = s -> line_offset ;
s1 = s -> vram_ptr + ( s -> start_addr * 4 );
1307
vga_get_text_resolution ( s , & width , & height , & cw , & cheight );
1308
x_incr = cw * (( ds_get_bits_per_pixel ( s -> ds ) + 7 ) >> 3 );
1309
1310
1311
1312
1313
if (( height * width ) > CH_ATTR_SIZE ) {
/* better than nothing: exit if transient size is too big */
return ;
}
1314
if ( width != s -> last_width || height != s -> last_height ||
1315
cw != s -> last_cw || cheight != s -> last_ch ) {
1316
1317
s -> last_scr_width = width * cw ;
s -> last_scr_height = height * cheight ;
1318
qemu_console_resize ( s -> console , s -> last_scr_width , s -> last_scr_height );
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
s -> last_width = width ;
s -> last_height = height ;
s -> last_ch = cheight ;
s -> last_cw = cw ;
full_update = 1 ;
}
cursor_offset = (( s -> cr [ 0x0e ] << 8 ) | s -> cr [ 0x0f ]) - s -> start_addr ;
if ( cursor_offset != s -> cursor_offset ||
s -> cr [ 0xa ] != s -> cursor_start ||
s -> cr [ 0xb ] != s -> cursor_end ) {
/* if the cursor position changed , we update the old and new
chars */
if ( s -> cursor_offset < CH_ATTR_SIZE )
s -> last_ch_attr [ s -> cursor_offset ] = - 1 ;
if ( cursor_offset < CH_ATTR_SIZE )
s -> last_ch_attr [ cursor_offset ] = - 1 ;
s -> cursor_offset = cursor_offset ;
s -> cursor_start = s -> cr [ 0xa ];
s -> cursor_end = s -> cr [ 0xb ];
}
1339
cursor_ptr = s -> vram_ptr + ( s -> start_addr + cursor_offset ) * 4 ;
ths
authored
18 years ago
1340
1341
depth_index = get_depth_index ( s -> ds );
1342
1343
1344
1345
if ( cw == 16 )
vga_draw_glyph8 = vga_draw_glyph16_table [ depth_index ];
else
vga_draw_glyph8 = vga_draw_glyph8_table [ depth_index ];
1346
vga_draw_glyph9 = vga_draw_glyph9_table [ depth_index ];
ths
authored
18 years ago
1347
1348
1349
dest = ds_get_data ( s -> ds );
linesize = ds_get_linesize ( s -> ds );
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
ch_attr_ptr = s -> last_ch_attr ;
for ( cy = 0 ; cy < height ; cy ++ ) {
d1 = dest ;
src = s1 ;
cx_min = width ;
cx_max = - 1 ;
for ( cx = 0 ; cx < width ; cx ++ ) {
ch_attr = * ( uint16_t * ) src ;
if ( full_update || ch_attr != * ch_attr_ptr ) {
if ( cx < cx_min )
cx_min = cx ;
if ( cx > cx_max )
cx_max = cx ;
* ch_attr_ptr = ch_attr ;
# ifdef WORDS_BIGENDIAN
ch = ch_attr >> 8 ;
cattr = ch_attr & 0xff ;
# else
ch = ch_attr & 0xff ;
cattr = ch_attr >> 8 ;
# endif
font_ptr = font_base [( cattr >> 3 ) & 1 ];
font_ptr += 32 * 4 * ch ;
bgcol = palette [ cattr >> 4 ];
fgcol = palette [ cattr & 0x0f ];
1375
if ( cw != 9 ) {
ths
authored
18 years ago
1376
vga_draw_glyph8 ( d1 , linesize ,
1377
1378
1379
1380
1381
font_ptr , cheight , fgcol , bgcol );
} else {
dup9 = 0 ;
if ( ch >= 0xb0 && ch <= 0xdf && ( s -> ar [ 0x10 ] & 0x04 ))
dup9 = 1 ;
ths
authored
18 years ago
1382
vga_draw_glyph9 ( d1 , linesize ,
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
font_ptr , cheight , fgcol , bgcol , dup9 );
}
if ( src == cursor_ptr &&
! ( s -> cr [ 0x0a ] & 0x20 )) {
int line_start , line_last , h ;
/* draw the cursor */
line_start = s -> cr [ 0x0a ] & 0x1f ;
line_last = s -> cr [ 0x0b ] & 0x1f ;
/* XXX: check that */
if ( line_last > cheight - 1 )
line_last = cheight - 1 ;
if ( line_last >= line_start && line_start < cheight ) {
h = line_last - line_start + 1 ;
d = d1 + linesize * line_start ;
1397
if ( cw != 9 ) {
ths
authored
18 years ago
1398
vga_draw_glyph8 ( d , linesize ,
1399
1400
cursor_glyph , h , fgcol , bgcol );
} else {
ths
authored
18 years ago
1401
vga_draw_glyph9 ( d , linesize ,
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
cursor_glyph , h , fgcol , bgcol , 1 );
}
}
}
}
d1 += x_incr ;
src += 4 ;
ch_attr_ptr ++ ;
}
if ( cx_max != - 1 ) {
ths
authored
18 years ago
1412
dpy_update ( s -> ds , cx_min * cw , cy * cheight ,
1413
1414
1415
1416
1417
1418
1419
( cx_max - cx_min + 1 ) * cw , cheight );
}
dest += linesize * cheight ;
s1 += line_offset ;
}
}
1420
1421
1422
1423
1424
1425
1426
1427
1428
enum {
VGA_DRAW_LINE2 ,
VGA_DRAW_LINE2D2 ,
VGA_DRAW_LINE4 ,
VGA_DRAW_LINE4D2 ,
VGA_DRAW_LINE8D2 ,
VGA_DRAW_LINE8 ,
VGA_DRAW_LINE15 ,
VGA_DRAW_LINE16 ,
1429
VGA_DRAW_LINE24 ,
1430
1431
1432
1433
VGA_DRAW_LINE32 ,
VGA_DRAW_LINE_NB ,
};
1434
static vga_draw_line_func * vga_draw_line_table [ NB_DEPTHS * VGA_DRAW_LINE_NB ] = {
1435
1436
1437
1438
vga_draw_line2_8 ,
vga_draw_line2_16 ,
vga_draw_line2_16 ,
vga_draw_line2_32 ,
1439
vga_draw_line2_32 ,
1440
1441
vga_draw_line2_16 ,
vga_draw_line2_16 ,
1442
1443
1444
1445
1446
vga_draw_line2d2_8 ,
vga_draw_line2d2_16 ,
vga_draw_line2d2_16 ,
vga_draw_line2d2_32 ,
1447
vga_draw_line2d2_32 ,
1448
1449
vga_draw_line2d2_16 ,
vga_draw_line2d2_16 ,
1450
1451
1452
1453
1454
vga_draw_line4_8 ,
vga_draw_line4_16 ,
vga_draw_line4_16 ,
vga_draw_line4_32 ,
1455
vga_draw_line4_32 ,
1456
1457
vga_draw_line4_16 ,
vga_draw_line4_16 ,
1458
1459
1460
1461
1462
vga_draw_line4d2_8 ,
vga_draw_line4d2_16 ,
vga_draw_line4d2_16 ,
vga_draw_line4d2_32 ,
1463
vga_draw_line4d2_32 ,
1464
1465
vga_draw_line4d2_16 ,
vga_draw_line4d2_16 ,
1466
1467
1468
1469
1470
vga_draw_line8d2_8 ,
vga_draw_line8d2_16 ,
vga_draw_line8d2_16 ,
vga_draw_line8d2_32 ,
1471
vga_draw_line8d2_32 ,
1472
1473
vga_draw_line8d2_16 ,
vga_draw_line8d2_16 ,
1474
1475
1476
1477
1478
vga_draw_line8_8 ,
vga_draw_line8_16 ,
vga_draw_line8_16 ,
vga_draw_line8_32 ,
1479
vga_draw_line8_32 ,
1480
1481
vga_draw_line8_16 ,
vga_draw_line8_16 ,
1482
1483
1484
1485
1486
vga_draw_line15_8 ,
vga_draw_line15_15 ,
vga_draw_line15_16 ,
vga_draw_line15_32 ,
1487
vga_draw_line15_32bgr ,
1488
1489
vga_draw_line15_15bgr ,
vga_draw_line15_16bgr ,
1490
1491
1492
1493
1494
vga_draw_line16_8 ,
vga_draw_line16_15 ,
vga_draw_line16_16 ,
vga_draw_line16_32 ,
1495
vga_draw_line16_32bgr ,
1496
1497
vga_draw_line16_15bgr ,
vga_draw_line16_16bgr ,
1498
1499
1500
1501
1502
vga_draw_line24_8 ,
vga_draw_line24_15 ,
vga_draw_line24_16 ,
vga_draw_line24_32 ,
1503
vga_draw_line24_32bgr ,
1504
1505
vga_draw_line24_15bgr ,
vga_draw_line24_16bgr ,
1506
1507
1508
1509
1510
vga_draw_line32_8 ,
vga_draw_line32_15 ,
vga_draw_line32_16 ,
vga_draw_line32_32 ,
1511
vga_draw_line32_32bgr ,
1512
1513
vga_draw_line32_15bgr ,
vga_draw_line32_16bgr ,
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
};
typedef unsigned int rgb_to_pixel_dup_func ( unsigned int r , unsigned int g , unsigned b );
static rgb_to_pixel_dup_func * rgb_to_pixel_dup_table [ NB_DEPTHS ] = {
rgb_to_pixel8_dup ,
rgb_to_pixel15_dup ,
rgb_to_pixel16_dup ,
rgb_to_pixel32_dup ,
rgb_to_pixel32bgr_dup ,
1524
1525
rgb_to_pixel15bgr_dup ,
rgb_to_pixel16bgr_dup ,
1526
1527
};
1528
1529
1530
1531
1532
1533
static int vga_get_bpp ( VGAState * s )
{
int ret ;
# ifdef CONFIG_BOCHS_VBE
if ( s -> vbe_regs [ VBE_DISPI_INDEX_ENABLE ] & VBE_DISPI_ENABLED ) {
ret = s -> vbe_regs [ VBE_DISPI_INDEX_BPP ];
ths
authored
18 years ago
1534
} else
1535
1536
1537
1538
1539
1540
1541
# endif
{
ret = 0 ;
}
return ret ;
}
1542
1543
1544
static void vga_get_resolution ( VGAState * s , int * pwidth , int * pheight )
{
int width , height ;
ths
authored
18 years ago
1545
1546
1547
1548
1549
# ifdef CONFIG_BOCHS_VBE
if ( s -> vbe_regs [ VBE_DISPI_INDEX_ENABLE ] & VBE_DISPI_ENABLED ) {
width = s -> vbe_regs [ VBE_DISPI_INDEX_XRES ];
height = s -> vbe_regs [ VBE_DISPI_INDEX_YRES ];
ths
authored
18 years ago
1550
} else
1551
1552
1553
# endif
{
width = ( s -> cr [ 0x01 ] + 1 ) * 8 ;
ths
authored
18 years ago
1554
1555
height = s -> cr [ 0x12 ] |
(( s -> cr [ 0x07 ] & 0x02 ) << 7 ) |
1556
1557
1558
(( s -> cr [ 0x07 ] & 0x40 ) << 3 );
height = ( height + 1 );
}
1559
1560
1561
1562
* pwidth = width ;
* pheight = height ;
}
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
void vga_invalidate_scanlines ( VGAState * s , int y1 , int y2 )
{
int y ;
if ( y1 >= VGA_MAX_HEIGHT )
return ;
if ( y2 >= VGA_MAX_HEIGHT )
y2 = VGA_MAX_HEIGHT ;
for ( y = y1 ; y < y2 ; y ++ ) {
s -> invalidated_y_table [ y >> 5 ] |= 1 << ( y & 0x1f );
}
}
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
static void vga_sync_dirty_bitmap ( VGAState * s )
{
if ( s -> map_addr )
cpu_physical_sync_dirty_bitmap ( s -> map_addr , s -> map_end );
if ( s -> lfb_vram_mapped ) {
cpu_physical_sync_dirty_bitmap ( isa_mem_base + 0xa0000 , 0xa8000 );
cpu_physical_sync_dirty_bitmap ( isa_mem_base + 0xa8000 , 0xb0000 );
}
vga_dirty_log_start ( s );
}
ths
authored
18 years ago
1587
/*
1588
1589
1590
1591
* graphic modes
*/
static void vga_draw_graphic ( VGAState * s , int full_update )
{
1592
int y1 , y , update , page_min , page_max , linesize , y_start , double_scan , mask ;
1593
int width , height , shift_control , line_offset , page0 , page1 , bwidth , bits ;
1594
int disp_width , multi_scan , multi_run ;
1595
uint8_t * d ;
1596
uint32_t v , addr1 , addr ;
1597
vga_draw_line_func * vga_draw_line ;
ths
authored
18 years ago
1598
1599
1600
full_update |= update_basic_params ( s );
1601
1602
1603
if ( ! full_update )
vga_sync_dirty_bitmap ( s );
1604
s -> get_resolution ( s , & width , & height );
1605
disp_width = width ;
1606
1607
shift_control = ( s -> gr [ 0x05 ] >> 5 ) & 3 ;
1608
1609
1610
double_scan = ( s -> cr [ 0x09 ] >> 7 );
if ( shift_control != 1 ) {
multi_scan = ((( s -> cr [ 0x09 ] & 0x1f ) + 1 ) << double_scan ) - 1 ;
1611
} else {
1612
1613
1614
/* in CGA modes, multi_scan is ignored */
/* XXX: is it correct ? */
multi_scan = double_scan ;
1615
1616
}
multi_run = multi_scan ;
1617
1618
if ( shift_control != s -> shift_control ||
double_scan != s -> double_scan ) {
1619
1620
full_update = 1 ;
s -> shift_control = shift_control ;
1621
s -> double_scan = double_scan ;
1622
}
ths
authored
18 years ago
1623
1624
1625
1626
1627
1628
1629
1630
1631
if ( shift_control == 0 ) {
full_update |= update_palette16 ( s );
if ( s -> sr [ 0x01 ] & 8 ) {
v = VGA_DRAW_LINE4D2 ;
disp_width <<= 1 ;
} else {
v = VGA_DRAW_LINE4 ;
}
1632
bits = 4 ;
1633
1634
1635
1636
1637
1638
1639
1640
} else if ( shift_control == 1 ) {
full_update |= update_palette16 ( s );
if ( s -> sr [ 0x01 ] & 8 ) {
v = VGA_DRAW_LINE2D2 ;
disp_width <<= 1 ;
} else {
v = VGA_DRAW_LINE2 ;
}
1641
bits = 4 ;
1642
} else {
1643
1644
1645
switch ( s -> get_bpp ( s )) {
default :
case 0 :
1646
1647
full_update |= update_palette256 ( s );
v = VGA_DRAW_LINE8D2 ;
1648
bits = 4 ;
1649
1650
1651
1652
break ;
case 8 :
full_update |= update_palette256 ( s );
v = VGA_DRAW_LINE8 ;
1653
bits = 8 ;
1654
1655
1656
break ;
case 15 :
v = VGA_DRAW_LINE15 ;
1657
bits = 16 ;
1658
1659
1660
break ;
case 16 :
v = VGA_DRAW_LINE16 ;
1661
bits = 16 ;
1662
1663
1664
break ;
case 24 :
v = VGA_DRAW_LINE24 ;
1665
bits = 24 ;
1666
1667
1668
break ;
case 32 :
v = VGA_DRAW_LINE32 ;
1669
bits = 32 ;
1670
break ;
1671
}
1672
}
1673
vga_draw_line = vga_draw_line_table [ v * NB_DEPTHS + get_depth_index ( s -> ds )];
1674
1675
1676
if ( disp_width != s -> last_width ||
height != s -> last_height ) {
1677
qemu_console_resize ( s -> console , disp_width , height );
1678
1679
s -> last_scr_width = disp_width ;
s -> last_scr_height = height ;
1680
1681
1682
1683
s -> last_width = disp_width ;
s -> last_height = height ;
full_update = 1 ;
}
1684
1685
if ( s -> cursor_invalidate )
s -> cursor_invalidate ( s );
ths
authored
18 years ago
1686
1687
line_offset = s -> line_offset ;
1688
# if 0
1689
printf ( "w=%d h=%d v=%d line_offset=%d cr[0x09]=0x%02x cr[0x17]=0x%02x linecmp=%d sr[0x01]=0x%02x \n " ,
1690
1691
width , height , v , line_offset , s -> cr [ 9 ], s -> cr [ 0x17 ], s -> line_compare , s -> sr [ 0x01 ]);
# endif
1692
addr1 = ( s -> start_addr * 4 );
1693
bwidth = ( width * bits + 7 ) / 8 ;
1694
y_start = - 1 ;
1695
1696
page_min = 0x7fffffff ;
page_max = - 1 ;
1697
1698
d = ds_get_data ( s -> ds );
linesize = ds_get_linesize ( s -> ds );
1699
y1 = 0 ;
1700
1701
for ( y = 0 ; y < height ; y ++ ) {
addr = addr1 ;
1702
if ( ! ( s -> cr [ 0x17 ] & 1 )) {
1703
int shift ;
1704
/* CGA compatibility handling */
1705
1706
shift = 14 + (( s -> cr [ 0x17 ] >> 6 ) & 1 );
addr = ( addr & ~ ( 1 << shift )) | (( y1 & 1 ) << shift );
1707
}
1708
if ( ! ( s -> cr [ 0x17 ] & 2 )) {
1709
addr = ( addr & ~ 0x8000 ) | (( y1 & 2 ) << 14 );
1710
}
1711
1712
page0 = s -> vram_offset + ( addr & TARGET_PAGE_MASK );
page1 = s -> vram_offset + (( addr + bwidth - 1 ) & TARGET_PAGE_MASK );
ths
authored
18 years ago
1713
update = full_update |
1714
1715
cpu_physical_memory_get_dirty ( page0 , VGA_DIRTY_FLAG ) |
cpu_physical_memory_get_dirty ( page1 , VGA_DIRTY_FLAG );
1716
if (( page1 - page0 ) > TARGET_PAGE_SIZE ) {
1717
/* if wide line, can use another page */
ths
authored
18 years ago
1718
update |= cpu_physical_memory_get_dirty ( page0 + TARGET_PAGE_SIZE ,
1719
VGA_DIRTY_FLAG );
1720
}
1721
1722
/* explicit invalidation for the hardware cursor */
update |= ( s -> invalidated_y_table [ y >> 5 ] >> ( y & 0x1f )) & 1 ;
1723
if ( update ) {
1724
1725
if ( y_start < 0 )
y_start = y ;
1726
1727
1728
1729
1730
if ( page0 < page_min )
page_min = page0 ;
if ( page1 > page_max )
page_max = page1 ;
vga_draw_line ( s , d , s -> vram_ptr + addr , width );
1731
1732
if ( s -> cursor_draw_line )
s -> cursor_draw_line ( s , d , y );
1733
1734
1735
} else {
if ( y_start >= 0 ) {
/* flush to display */
ths
authored
18 years ago
1736
dpy_update ( s -> ds , 0 , y_start ,
1737
disp_width , y - y_start );
1738
1739
y_start = - 1 ;
}
1740
}
1741
if ( ! multi_run ) {
1742
1743
1744
1745
mask = ( s -> cr [ 0x17 ] & 3 ) ^ 3 ;
if (( y1 & mask ) == mask )
addr1 += line_offset ;
y1 ++ ;
1746
1747
1748
multi_run = multi_scan ;
} else {
multi_run -- ;
1749
}
1750
1751
1752
/* line compare acts on the displayed lines */
if ( y == s -> line_compare )
addr1 = 0 ;
1753
1754
d += linesize ;
}
1755
1756
if ( y_start >= 0 ) {
/* flush to display */
ths
authored
18 years ago
1757
dpy_update ( s -> ds , 0 , y_start ,
1758
disp_width , y - y_start );
1759
}
1760
1761
/* reset modified pages */
if ( page_max != - 1 ) {
1762
1763
cpu_physical_memory_reset_dirty ( page_min , page_max + TARGET_PAGE_SIZE ,
VGA_DIRTY_FLAG );
1764
}
1765
memset ( s -> invalidated_y_table , 0 , (( height + 31 ) >> 5 ) * 4 );
1766
1767
}
1768
1769
1770
1771
1772
1773
1774
1775
1776
static void vga_draw_blank ( VGAState * s , int full_update )
{
int i , w , val ;
uint8_t * d ;
if ( ! full_update )
return ;
if ( s -> last_scr_width <= 0 || s -> last_scr_height <= 0 )
return ;
1777
1778
vga_dirty_log_stop ( s );
1779
if ( ds_get_bits_per_pixel ( s -> ds ) == 8 )
1780
1781
1782
val = s -> rgb_to_pixel ( 0 , 0 , 0 );
else
val = 0 ;
1783
1784
w = s -> last_scr_width * (( ds_get_bits_per_pixel ( s -> ds ) + 7 ) >> 3 );
d = ds_get_data ( s -> ds );
1785
1786
for ( i = 0 ; i < s -> last_scr_height ; i ++ ) {
memset ( d , val , w );
1787
d += ds_get_linesize ( s -> ds );
1788
}
ths
authored
18 years ago
1789
dpy_update ( s -> ds , 0 , 0 ,
1790
1791
1792
1793
1794
s -> last_scr_width , s -> last_scr_height );
}
# define GMODE_TEXT 0
# define GMODE_GRAPH 1
ths
authored
18 years ago
1795
# define GMODE_BLANK 2
1796
1797
static void vga_update_display ( void * opaque )
1798
{
1799
VGAState * s = ( VGAState * ) opaque ;
1800
1801
int full_update , graphic_mode ;
1802
if ( ds_get_bits_per_pixel ( s -> ds ) == 0 ) {
1803
/* nothing to do */
1804
} else {
ths
authored
18 years ago
1805
s -> rgb_to_pixel =
1806
rgb_to_pixel_dup_table [ get_depth_index ( s -> ds )];
ths
authored
18 years ago
1807
1808
full_update = 0 ;
1809
1810
1811
1812
1813
if ( ! ( s -> ar_index & 0x20 )) {
graphic_mode = GMODE_BLANK ;
} else {
graphic_mode = s -> gr [ 6 ] & 1 ;
}
1814
1815
1816
1817
if ( graphic_mode != s -> graphic_mode ) {
s -> graphic_mode = graphic_mode ;
full_update = 1 ;
}
1818
1819
switch ( graphic_mode ) {
case GMODE_TEXT :
1820
vga_draw_text ( s , full_update );
1821
1822
1823
1824
1825
1826
1827
1828
1829
break ;
case GMODE_GRAPH :
vga_draw_graphic ( s , full_update );
break ;
case GMODE_BLANK :
default :
vga_draw_blank ( s , full_update );
break ;
}
1830
1831
1832
}
}
1833
/* force a full display refresh */
1834
static void vga_invalidate_display ( void * opaque )
1835
{
1836
VGAState * s = ( VGAState * ) opaque ;
ths
authored
18 years ago
1837
1838
1839
1840
1841
s -> last_width = - 1 ;
s -> last_height = - 1 ;
}
1842
void vga_reset ( void * opaque )
1843
{
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
VGAState * s = ( VGAState * ) opaque ;
s -> lfb_addr = 0 ;
s -> lfb_end = 0 ;
s -> map_addr = 0 ;
s -> map_end = 0 ;
s -> lfb_vram_mapped = 0 ;
s -> bios_offset = 0 ;
s -> bios_size = 0 ;
s -> sr_index = 0 ;
memset ( s -> sr , '\0' , sizeof ( s -> sr ));
s -> gr_index = 0 ;
memset ( s -> gr , '\0' , sizeof ( s -> gr ));
s -> ar_index = 0 ;
memset ( s -> ar , '\0' , sizeof ( s -> ar ));
s -> ar_flip_flop = 0 ;
s -> cr_index = 0 ;
memset ( s -> cr , '\0' , sizeof ( s -> cr ));
s -> msr = 0 ;
s -> fcr = 0 ;
s -> st00 = 0 ;
s -> st01 = 0 ;
s -> dac_state = 0 ;
s -> dac_sub_index = 0 ;
s -> dac_read_index = 0 ;
s -> dac_write_index = 0 ;
memset ( s -> dac_cache , '\0' , sizeof ( s -> dac_cache ));
s -> dac_8bit = 0 ;
memset ( s -> palette , '\0' , sizeof ( s -> palette ));
s -> bank_offset = 0 ;
# ifdef CONFIG_BOCHS_VBE
s -> vbe_index = 0 ;
memset ( s -> vbe_regs , '\0' , sizeof ( s -> vbe_regs ));
s -> vbe_regs [ VBE_DISPI_INDEX_ID ] = VBE_DISPI_ID0 ;
s -> vbe_start_addr = 0 ;
s -> vbe_line_offset = 0 ;
s -> vbe_bank_mask = ( s -> vram_size >> 16 ) - 1 ;
# endif
memset ( s -> font_offsets , '\0' , sizeof ( s -> font_offsets ));
1883
s -> graphic_mode = - 1 ; /* force full update */
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
s -> shift_control = 0 ;
s -> double_scan = 0 ;
s -> line_offset = 0 ;
s -> line_compare = 0 ;
s -> start_addr = 0 ;
s -> plane_updated = 0 ;
s -> last_cw = 0 ;
s -> last_ch = 0 ;
s -> last_width = 0 ;
s -> last_height = 0 ;
s -> last_scr_width = 0 ;
s -> last_scr_height = 0 ;
s -> cursor_start = 0 ;
s -> cursor_end = 0 ;
s -> cursor_offset = 0 ;
memset ( s -> invalidated_y_table , '\0' , sizeof ( s -> invalidated_y_table ));
memset ( s -> last_palette , '\0' , sizeof ( s -> last_palette ));
memset ( s -> last_ch_attr , '\0' , sizeof ( s -> last_ch_attr ));
switch ( vga_retrace_method ) {
case VGA_RETRACE_DUMB :
break ;
case VGA_RETRACE_PRECISE :
memset ( & s -> retrace_info , 0 , sizeof ( s -> retrace_info ));
break ;
}
1909
1910
}
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
# define TEXTMODE_X ( x ) (( x ) % width )
# define TEXTMODE_Y ( x ) (( x ) / width )
# define VMEM2CHTYPE ( v ) (( v & 0xff0007ff ) | \
(( v & 0x00000800 ) << 10 ) | (( v & 0x00007000 ) >> 1 ))
/* relay text rendering to the display driver
* instead of doing a full vga_update_display () */
static void vga_update_text ( void * opaque , console_ch_t * chardata )
{
VGAState * s = ( VGAState * ) opaque ;
int graphic_mode , i , cursor_offset , cursor_visible ;
int cw , cheight , width , height , size , c_min , c_max ;
uint32_t * src ;
console_ch_t * dst , val ;
char msg_buffer [ 80 ];
1925
int full_update = 0 ;
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
if ( ! ( s -> ar_index & 0x20 )) {
graphic_mode = GMODE_BLANK ;
} else {
graphic_mode = s -> gr [ 6 ] & 1 ;
}
if ( graphic_mode != s -> graphic_mode ) {
s -> graphic_mode = graphic_mode ;
full_update = 1 ;
}
if ( s -> last_width == - 1 ) {
s -> last_width = 0 ;
full_update = 1 ;
}
switch ( graphic_mode ) {
case GMODE_TEXT :
/* TODO: update palette */
full_update |= update_basic_params ( s );
/* total width & height */
cheight = ( s -> cr [ 9 ] & 0x1f ) + 1 ;
cw = 8 ;
if ( ! ( s -> sr [ 1 ] & 0x01 ))
cw = 9 ;
if ( s -> sr [ 1 ] & 0x08 )
cw = 16 ; /* NOTE: no 18 pixel wide */
width = ( s -> cr [ 0x01 ] + 1 );
if ( s -> cr [ 0x06 ] == 100 ) {
/* ugly hack for CGA 160x100x16 - explain me the logic */
height = 100 ;
} else {
height = s -> cr [ 0x12 ] |
(( s -> cr [ 0x07 ] & 0x02 ) << 7 ) |
(( s -> cr [ 0x07 ] & 0x40 ) << 3 );
height = ( height + 1 ) / cheight ;
}
size = ( height * width );
if ( size > CH_ATTR_SIZE ) {
if ( ! full_update )
return ;
1969
1970
snprintf ( msg_buffer , sizeof ( msg_buffer ), "%i x %i Text mode" ,
width , height );
1971
1972
1973
1974
1975
1976
1977
break ;
}
if ( width != s -> last_width || height != s -> last_height ||
cw != s -> last_cw || cheight != s -> last_ch ) {
s -> last_scr_width = width * cw ;
s -> last_scr_height = height * cheight ;
1978
qemu_console_resize ( s -> console , width , height );
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
s -> last_width = width ;
s -> last_height = height ;
s -> last_ch = cheight ;
s -> last_cw = cw ;
full_update = 1 ;
}
/* Update "hardware" cursor */
cursor_offset = (( s -> cr [ 0x0e ] << 8 ) | s -> cr [ 0x0f ]) - s -> start_addr ;
if ( cursor_offset != s -> cursor_offset ||
s -> cr [ 0xa ] != s -> cursor_start ||
s -> cr [ 0xb ] != s -> cursor_end || full_update ) {
cursor_visible = ! ( s -> cr [ 0xa ] & 0x20 );
if ( cursor_visible && cursor_offset < size && cursor_offset >= 0 )
dpy_cursor ( s -> ds ,
TEXTMODE_X ( cursor_offset ),
TEXTMODE_Y ( cursor_offset ));
else
dpy_cursor ( s -> ds , - 1 , - 1 );
s -> cursor_offset = cursor_offset ;
s -> cursor_start = s -> cr [ 0xa ];
s -> cursor_end = s -> cr [ 0xb ];
}
src = ( uint32_t * ) s -> vram_ptr + s -> start_addr ;
dst = chardata ;
if ( full_update ) {
for ( i = 0 ; i < size ; src ++ , dst ++ , i ++ )
console_write_ch ( dst , VMEM2CHTYPE ( * src ));
dpy_update ( s -> ds , 0 , 0 , width , height );
} else {
c_max = 0 ;
for ( i = 0 ; i < size ; src ++ , dst ++ , i ++ ) {
console_write_ch ( & val , VMEM2CHTYPE ( * src ));
if ( * dst != val ) {
* dst = val ;
c_max = i ;
break ;
}
}
c_min = i ;
for (; i < size ; src ++ , dst ++ , i ++ ) {
console_write_ch ( & val , VMEM2CHTYPE ( * src ));
if ( * dst != val ) {
* dst = val ;
c_max = i ;
}
}
if ( c_min <= c_max ) {
i = TEXTMODE_Y ( c_min );
dpy_update ( s -> ds , 0 , i , width , TEXTMODE_Y ( c_max ) - i + 1 );
}
}
return ;
case GMODE_GRAPH :
if ( ! full_update )
return ;
s -> get_resolution ( s , & width , & height );
2043
2044
snprintf ( msg_buffer , sizeof ( msg_buffer ), "%i x %i Graphic mode" ,
width , height );
2045
2046
2047
2048
2049
2050
break ;
case GMODE_BLANK :
default :
if ( ! full_update )
return ;
2051
snprintf ( msg_buffer , sizeof ( msg_buffer ), "VGA Blank mode" );
2052
2053
2054
2055
break ;
}
/* Display a message */
2056
2057
s -> last_width = 60 ;
s -> last_height = height = 3 ;
2058
dpy_cursor ( s -> ds , - 1 , - 1 );
2059
qemu_console_resize ( s -> console , s -> last_width , height );
2060
2061
for ( dst = chardata , i = 0 ; i < s -> last_width * height ; i ++ )
2062
2063
2064
console_write_ch ( dst ++ , ' ' );
size = strlen ( msg_buffer );
2065
2066
width = ( s -> last_width - size ) / 2 ;
dst = chardata + s -> last_width + width ;
2067
2068
2069
for ( i = 0 ; i < size ; i ++ )
console_write_ch ( dst ++ , 0x00200100 | msg_buffer [ i ]);
2070
dpy_update ( s -> ds , 0 , 0 , s -> last_width , height );
2071
2072
}
2073
static CPUReadMemoryFunc * vga_mem_read [ 3 ] = {
2074
2075
2076
2077
2078
vga_mem_readb ,
vga_mem_readw ,
vga_mem_readl ,
};
2079
static CPUWriteMemoryFunc * vga_mem_write [ 3 ] = {
2080
2081
2082
2083
2084
vga_mem_writeb ,
vga_mem_writew ,
vga_mem_writel ,
};
2085
2086
2087
2088
2089
static void vga_save ( QEMUFile * f , void * opaque )
{
VGAState * s = opaque ;
int i ;
2090
2091
2092
if ( s -> pci_dev )
pci_device_save ( s -> pci_dev , f );
2093
2094
2095
2096
2097
2098
2099
qemu_put_be32s ( f , & s -> latch );
qemu_put_8s ( f , & s -> sr_index );
qemu_put_buffer ( f , s -> sr , 8 );
qemu_put_8s ( f , & s -> gr_index );
qemu_put_buffer ( f , s -> gr , 16 );
qemu_put_8s ( f , & s -> ar_index );
qemu_put_buffer ( f , s -> ar , 21 );
ths
authored
17 years ago
2100
qemu_put_be32 ( f , s -> ar_flip_flop );
2101
2102
2103
2104
qemu_put_8s ( f , & s -> cr_index );
qemu_put_buffer ( f , s -> cr , 256 );
qemu_put_8s ( f , & s -> msr );
qemu_put_8s ( f , & s -> fcr );
ths
authored
17 years ago
2105
qemu_put_byte ( f , s -> st00 );
2106
2107
2108
2109
2110
2111
2112
2113
2114
qemu_put_8s ( f , & s -> st01 );
qemu_put_8s ( f , & s -> dac_state );
qemu_put_8s ( f , & s -> dac_sub_index );
qemu_put_8s ( f , & s -> dac_read_index );
qemu_put_8s ( f , & s -> dac_write_index );
qemu_put_buffer ( f , s -> dac_cache , 3 );
qemu_put_buffer ( f , s -> palette , 768 );
ths
authored
17 years ago
2115
qemu_put_be32 ( f , s -> bank_offset );
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
# ifdef CONFIG_BOCHS_VBE
qemu_put_byte ( f , 1 );
qemu_put_be16s ( f , & s -> vbe_index );
for ( i = 0 ; i < VBE_DISPI_INDEX_NB ; i ++ )
qemu_put_be16s ( f , & s -> vbe_regs [ i ]);
qemu_put_be32s ( f , & s -> vbe_start_addr );
qemu_put_be32s ( f , & s -> vbe_line_offset );
qemu_put_be32s ( f , & s -> vbe_bank_mask );
# else
qemu_put_byte ( f , 0 );
# endif
}
static int vga_load ( QEMUFile * f , void * opaque , int version_id )
{
VGAState * s = opaque ;
2132
int is_vbe , i , ret ;
2133
2134
if ( version_id > 2 )
2135
2136
return - EINVAL ;
2137
2138
2139
2140
2141
2142
if ( s -> pci_dev && version_id >= 2 ) {
ret = pci_device_load ( s -> pci_dev , f );
if ( ret < 0 )
return ret ;
}
2143
2144
2145
2146
2147
2148
2149
qemu_get_be32s ( f , & s -> latch );
qemu_get_8s ( f , & s -> sr_index );
qemu_get_buffer ( f , s -> sr , 8 );
qemu_get_8s ( f , & s -> gr_index );
qemu_get_buffer ( f , s -> gr , 16 );
qemu_get_8s ( f , & s -> ar_index );
qemu_get_buffer ( f , s -> ar , 21 );
ths
authored
17 years ago
2150
s -> ar_flip_flop = qemu_get_be32 ( f );
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
qemu_get_8s ( f , & s -> cr_index );
qemu_get_buffer ( f , s -> cr , 256 );
qemu_get_8s ( f , & s -> msr );
qemu_get_8s ( f , & s -> fcr );
qemu_get_8s ( f , & s -> st00 );
qemu_get_8s ( f , & s -> st01 );
qemu_get_8s ( f , & s -> dac_state );
qemu_get_8s ( f , & s -> dac_sub_index );
qemu_get_8s ( f , & s -> dac_read_index );
qemu_get_8s ( f , & s -> dac_write_index );
qemu_get_buffer ( f , s -> dac_cache , 3 );
qemu_get_buffer ( f , s -> palette , 768 );
ths
authored
17 years ago
2165
s -> bank_offset = qemu_get_be32 ( f );
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
is_vbe = qemu_get_byte ( f );
# ifdef CONFIG_BOCHS_VBE
if ( ! is_vbe )
return - EINVAL ;
qemu_get_be16s ( f , & s -> vbe_index );
for ( i = 0 ; i < VBE_DISPI_INDEX_NB ; i ++ )
qemu_get_be16s ( f , & s -> vbe_regs [ i ]);
qemu_get_be32s ( f , & s -> vbe_start_addr );
qemu_get_be32s ( f , & s -> vbe_line_offset );
qemu_get_be32s ( f , & s -> vbe_bank_mask );
# else
if ( is_vbe )
return - EINVAL ;
# endif
/* force refresh */
s -> graphic_mode = - 1 ;
return 0 ;
}
2186
2187
2188
2189
2190
typedef struct PCIVGAState {
PCIDevice dev ;
VGAState vga_state ;
} PCIVGAState ;
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
void vga_dirty_log_start ( VGAState * s )
{
if ( kvm_enabled () && s -> map_addr )
kvm_log_start ( s -> map_addr , s -> map_end - s -> map_addr );
if ( kvm_enabled () && s -> lfb_vram_mapped ) {
kvm_log_start ( isa_mem_base + 0xa0000 , 0x8000 );
kvm_log_start ( isa_mem_base + 0xa8000 , 0x8000 );
}
}
void vga_dirty_log_stop ( VGAState * s )
{
if ( kvm_enabled () && s -> map_addr )
kvm_log_stop ( s -> map_addr , s -> map_end - s -> map_addr );
if ( kvm_enabled () && s -> lfb_vram_mapped ) {
kvm_log_stop ( isa_mem_base + 0xa0000 , 0x8000 );
kvm_log_stop ( isa_mem_base + 0xa8000 , 0x8000 );
}
}
ths
authored
18 years ago
2213
static void vga_map ( PCIDevice * pci_dev , int region_num ,
2214
2215
uint32_t addr , uint32_t size , int type )
{
2216
2217
PCIVGAState * d = ( PCIVGAState * ) pci_dev ;
VGAState * s = & d -> vga_state ;
2218
2219
2220
2221
2222
if ( region_num == PCI_ROM_SLOT ) {
cpu_register_physical_memory ( addr , s -> bios_size , s -> bios_offset );
} else {
cpu_register_physical_memory ( addr , s -> vram_size , s -> vram_offset );
}
2223
2224
2225
2226
2227
s -> map_addr = addr ;
s -> map_end = addr + VGA_RAM_SIZE ;
vga_dirty_log_start ( s );
2228
2229
}
ths
authored
18 years ago
2230
void vga_common_init ( VGAState * s , DisplayState * ds , uint8_t * vga_ram_base ,
2231
ram_addr_t vga_ram_offset , int vga_ram_size )
2232
{
2233
int i , j , v , b ;
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
for ( i = 0 ; i < 256 ; i ++ ) {
v = 0 ;
for ( j = 0 ; j < 8 ; j ++ ) {
v |= (( i >> j ) & 1 ) << ( j * 4 );
}
expand4 [ i ] = v ;
v = 0 ;
for ( j = 0 ; j < 4 ; j ++ ) {
v |= (( i >> ( 2 * j )) & 3 ) << ( j * 4 );
}
expand2 [ i ] = v ;
}
2248
2249
2250
2251
2252
2253
2254
2255
2256
for ( i = 0 ; i < 16 ; i ++ ) {
v = 0 ;
for ( j = 0 ; j < 4 ; j ++ ) {
b = (( i >> j ) & 1 );
v |= b << ( 2 * j );
v |= b << ( 2 * j + 1 );
}
expand4to8 [ i ] = v ;
}
2257
2258
2259
2260
2261
s -> vram_ptr = vga_ram_base ;
s -> vram_offset = vga_ram_offset ;
s -> vram_size = vga_ram_size ;
s -> ds = ds ;
2262
2263
s -> get_bpp = vga_get_bpp ;
s -> get_offsets = vga_get_offsets ;
2264
s -> get_resolution = vga_get_resolution ;
ths
authored
18 years ago
2265
2266
2267
s -> update = vga_update_display ;
s -> invalidate = vga_invalidate_display ;
s -> screen_dump = vga_screen_dump ;
2268
s -> text_update = vga_update_text ;
malc
authored
16 years ago
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
switch ( vga_retrace_method ) {
case VGA_RETRACE_DUMB :
s -> retrace = vga_dumb_retrace ;
s -> update_retrace_info = vga_dumb_update_retrace_info ;
break ;
case VGA_RETRACE_PRECISE :
s -> retrace = vga_precise_retrace ;
s -> update_retrace_info = vga_precise_update_retrace_info ;
break ;
}
2280
vga_reset ( s );
2281
2282
}
2283
/* used by both ISA and PCI */
ths
authored
18 years ago
2284
void vga_init ( VGAState * s )
2285
{
2286
int vga_io_memory ;
2287
2288
qemu_register_reset ( vga_reset , s );
2289
register_savevm ( "vga" , 0 , 2 , vga_save , vga_load , s );
2290
2291
register_ioport_write ( 0x3c0 , 16 , 1 , vga_ioport_write , s );
2292
2293
2294
2295
2296
register_ioport_write ( 0x3b4 , 2 , 1 , vga_ioport_write , s );
register_ioport_write ( 0x3d4 , 2 , 1 , vga_ioport_write , s );
register_ioport_write ( 0x3ba , 1 , 1 , vga_ioport_write , s );
register_ioport_write ( 0x3da , 1 , 1 , vga_ioport_write , s );
2297
2298
register_ioport_read ( 0x3c0 , 16 , 1 , vga_ioport_read , s );
2299
2300
2301
2302
2303
register_ioport_read ( 0x3b4 , 2 , 1 , vga_ioport_read , s );
register_ioport_read ( 0x3d4 , 2 , 1 , vga_ioport_read , s );
register_ioport_read ( 0x3ba , 1 , 1 , vga_ioport_read , s );
register_ioport_read ( 0x3da , 1 , 1 , vga_ioport_read , s );
2304
s -> bank_offset = 0 ;
2305
2306
# ifdef CONFIG_BOCHS_VBE
2307
2308
2309
# if defined ( TARGET_I386 )
register_ioport_read ( 0x1ce , 1 , 2 , vbe_ioport_read_index , s );
register_ioport_read ( 0x1cf , 1 , 2 , vbe_ioport_read_data , s );
2310
2311
2312
register_ioport_write ( 0x1ce , 1 , 2 , vbe_ioport_write_index , s );
register_ioport_write ( 0x1cf , 1 , 2 , vbe_ioport_write_data , s );
2313
2314
/* old Bochs IO ports */
2315
2316
register_ioport_read ( 0xff80 , 1 , 2 , vbe_ioport_read_index , s );
register_ioport_read ( 0xff81 , 1 , 2 , vbe_ioport_read_data , s );
2317
2318
register_ioport_write ( 0xff80 , 1 , 2 , vbe_ioport_write_index , s );
ths
authored
18 years ago
2319
register_ioport_write ( 0xff81 , 1 , 2 , vbe_ioport_write_data , s );
2320
2321
2322
2323
2324
2325
# else
register_ioport_read ( 0x1ce , 1 , 2 , vbe_ioport_read_index , s );
register_ioport_read ( 0x1d0 , 1 , 2 , vbe_ioport_read_data , s );
register_ioport_write ( 0x1ce , 1 , 2 , vbe_ioport_write_index , s );
register_ioport_write ( 0x1d0 , 1 , 2 , vbe_ioport_write_data , s );
2326
# endif
2327
# endif /* CONFIG_BOCHS_VBE */
2328
2329
vga_io_memory = cpu_register_io_memory ( 0 , vga_mem_read , vga_mem_write , s );
ths
authored
18 years ago
2330
cpu_register_physical_memory ( isa_mem_base + 0x000a0000 , 0x20000 ,
2331
vga_io_memory );
2332
qemu_register_coalesced_mmio ( isa_mem_base + 0x000a0000 , 0x20000 );
2333
2334
}
ths
authored
18 years ago
2335
2336
2337
2338
2339
/* Memory mapped interface */
static uint32_t vga_mm_readb ( void * opaque , target_phys_addr_t addr )
{
VGAState * s = opaque ;
2340
return vga_ioport_read ( s , addr >> s -> it_shift ) & 0xff ;
ths
authored
18 years ago
2341
2342
2343
2344
2345
2346
2347
}
static void vga_mm_writeb ( void * opaque ,
target_phys_addr_t addr , uint32_t value )
{
VGAState * s = opaque ;
2348
vga_ioport_write ( s , addr >> s -> it_shift , value & 0xff );
ths
authored
18 years ago
2349
2350
2351
2352
2353
2354
}
static uint32_t vga_mm_readw ( void * opaque , target_phys_addr_t addr )
{
VGAState * s = opaque ;
2355
return vga_ioport_read ( s , addr >> s -> it_shift ) & 0xffff ;
ths
authored
18 years ago
2356
2357
2358
2359
2360
2361
2362
}
static void vga_mm_writew ( void * opaque ,
target_phys_addr_t addr , uint32_t value )
{
VGAState * s = opaque ;
2363
vga_ioport_write ( s , addr >> s -> it_shift , value & 0xffff );
ths
authored
18 years ago
2364
2365
2366
2367
2368
2369
}
static uint32_t vga_mm_readl ( void * opaque , target_phys_addr_t addr )
{
VGAState * s = opaque ;
2370
return vga_ioport_read ( s , addr >> s -> it_shift );
ths
authored
18 years ago
2371
2372
2373
2374
2375
2376
2377
}
static void vga_mm_writel ( void * opaque ,
target_phys_addr_t addr , uint32_t value )
{
VGAState * s = opaque ;
2378
vga_ioport_write ( s , addr >> s -> it_shift , value );
ths
authored
18 years ago
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
}
static CPUReadMemoryFunc * vga_mm_read_ctrl [] = {
& vga_mm_readb ,
& vga_mm_readw ,
& vga_mm_readl ,
};
static CPUWriteMemoryFunc * vga_mm_write_ctrl [] = {
& vga_mm_writeb ,
& vga_mm_writew ,
& vga_mm_writel ,
};
static void vga_mm_init ( VGAState * s , target_phys_addr_t vram_base ,
target_phys_addr_t ctrl_base , int it_shift )
{
int s_ioport_ctrl , vga_io_memory ;
s -> it_shift = it_shift ;
s_ioport_ctrl = cpu_register_io_memory ( 0 , vga_mm_read_ctrl , vga_mm_write_ctrl , s );
vga_io_memory = cpu_register_io_memory ( 0 , vga_mem_read , vga_mem_write , s );
register_savevm ( "vga" , 0 , 2 , vga_save , vga_load , s );
cpu_register_physical_memory ( ctrl_base , 0x100000 , s_ioport_ctrl );
s -> bank_offset = 0 ;
cpu_register_physical_memory ( vram_base + 0x000a0000 , 0x20000 , vga_io_memory );
2407
qemu_register_coalesced_mmio ( vram_base + 0x000a0000 , 0x20000 );
ths
authored
18 years ago
2408
2409
}
ths
authored
18 years ago
2410
int isa_vga_init ( DisplayState * ds , uint8_t * vga_ram_base ,
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
unsigned long vga_ram_offset , int vga_ram_size )
{
VGAState * s ;
s = qemu_mallocz ( sizeof ( VGAState ));
if ( ! s )
return - 1 ;
vga_common_init ( s , ds , vga_ram_base , vga_ram_offset , vga_ram_size );
vga_init ( s );
2421
2422
2423
s -> console = graphic_console_init ( s -> ds , s -> update , s -> invalidate ,
s -> screen_dump , s -> text_update , s );
ths
authored
18 years ago
2424
2425
# ifdef CONFIG_BOCHS_VBE
2426
/* XXX: use optimized standard vga accesses */
ths
authored
18 years ago
2427
cpu_register_physical_memory ( VBE_DISPI_LFB_PHYSICAL_ADDRESS ,
2428
vga_ram_size , vga_ram_offset );
2429
# endif
2430
2431
2432
return 0 ;
}
ths
authored
18 years ago
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
int isa_vga_mm_init ( DisplayState * ds , uint8_t * vga_ram_base ,
unsigned long vga_ram_offset , int vga_ram_size ,
target_phys_addr_t vram_base , target_phys_addr_t ctrl_base ,
int it_shift )
{
VGAState * s ;
s = qemu_mallocz ( sizeof ( VGAState ));
if ( ! s )
return - 1 ;
vga_common_init ( s , ds , vga_ram_base , vga_ram_offset , vga_ram_size );
vga_mm_init ( s , vram_base , ctrl_base , it_shift );
2447
2448
s -> console = graphic_console_init ( s -> ds , s -> update , s -> invalidate ,
s -> screen_dump , s -> text_update , s );
ths
authored
18 years ago
2449
2450
2451
2452
2453
2454
2455
2456
2457
# ifdef CONFIG_BOCHS_VBE
/* XXX: use optimized standard vga accesses */
cpu_register_physical_memory ( VBE_DISPI_LFB_PHYSICAL_ADDRESS ,
vga_ram_size , vga_ram_offset );
# endif
return 0 ;
}
ths
authored
18 years ago
2458
int pci_vga_init ( PCIBus * bus , DisplayState * ds , uint8_t * vga_ram_base ,
2459
2460
2461
2462
2463
2464
unsigned long vga_ram_offset , int vga_ram_size ,
unsigned long vga_bios_offset , int vga_bios_size )
{
PCIVGAState * d ;
VGAState * s ;
uint8_t * pci_conf ;
ths
authored
18 years ago
2465
ths
authored
18 years ago
2466
d = ( PCIVGAState * ) pci_register_device ( bus , "VGA" ,
2467
2468
2469
2470
2471
sizeof ( PCIVGAState ),
- 1 , NULL , NULL );
if ( ! d )
return - 1 ;
s = & d -> vga_state ;
ths
authored
18 years ago
2472
2473
2474
vga_common_init ( s , ds , vga_ram_base , vga_ram_offset , vga_ram_size );
vga_init ( s );
ths
authored
18 years ago
2475
2476
2477
s -> console = graphic_console_init ( s -> ds , s -> update , s -> invalidate ,
s -> screen_dump , s -> text_update , s );
ths
authored
18 years ago
2478
2479
s -> pci_dev = & d -> dev ;
ths
authored
18 years ago
2480
2481
2482
2483
2484
2485
pci_conf = d -> dev . config ;
pci_conf [ 0x00 ] = 0x34 ; // dummy VGA ( same as Bochs ID )
pci_conf [ 0x01 ] = 0x12 ;
pci_conf [ 0x02 ] = 0x11 ;
pci_conf [ 0x03 ] = 0x11 ;
ths
authored
18 years ago
2486
pci_conf [ 0x0a ] = 0x00 ; // VGA controller
2487
2488
pci_conf [ 0x0b ] = 0x03 ;
pci_conf [ 0x0e ] = 0x00 ; // header_type
ths
authored
18 years ago
2489
2490
/* XXX: vga_ram_size must be a power of two */
ths
authored
18 years ago
2491
pci_register_io_region ( & d -> dev , 0 , vga_ram_size ,
2492
2493
2494
2495
2496
2497
2498
2499
2500
PCI_ADDRESS_SPACE_MEM_PREFETCH , vga_map );
if ( vga_bios_size != 0 ) {
unsigned int bios_total_size ;
s -> bios_offset = vga_bios_offset ;
s -> bios_size = vga_bios_size ;
/* must be a power of two */
bios_total_size = 1 ;
while ( bios_total_size < vga_bios_size )
bios_total_size <<= 1 ;
ths
authored
18 years ago
2501
pci_register_io_region ( & d -> dev , PCI_ROM_SLOT , bios_total_size ,
2502
PCI_ADDRESS_SPACE_MEM_PREFETCH , vga_map );
2503
}
2504
2505
return 0 ;
}
2506
2507
2508
2509
2510
2511
/********************************************************/
/* vga screen dump */
static int vga_save_w , vga_save_h ;
ths
authored
18 years ago
2512
static void vga_save_dpy_update ( DisplayState * s ,
2513
2514
2515
2516
2517
2518
2519
int x , int y , int w , int h )
{
}
static void vga_save_dpy_resize ( DisplayState * s , int w , int h )
{
s -> linesize = w * 4 ;
2520
s -> data = qemu_mallocz ( h * s -> linesize );
2521
2522
2523
2524
2525
2526
2527
2528
vga_save_w = w ;
vga_save_h = h ;
}
static void vga_save_dpy_refresh ( DisplayState * s )
{
}
ths
authored
18 years ago
2529
int ppm_save ( const char * filename , uint8_t * data ,
2530
int w , int h , int linesize )
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
{
FILE * f ;
uint8_t * d , * d1 ;
unsigned int v ;
int y , x ;
f = fopen ( filename , "wb" );
if ( ! f )
return - 1 ;
fprintf ( f , "P6 \n %d %d \n %d \n " ,
w , h , 255 );
d1 = data ;
for ( y = 0 ; y < h ; y ++ ) {
d = d1 ;
for ( x = 0 ; x < w ; x ++ ) {
v = * ( uint32_t * ) d ;
fputc (( v >> 16 ) & 0xff , f );
fputc (( v >> 8 ) & 0xff , f );
fputc (( v ) & 0xff , f );
d += 4 ;
}
d1 += linesize ;
}
fclose ( f );
return 0 ;
}
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
static void vga_screen_dump_blank ( VGAState * s , const char * filename )
{
FILE * f ;
unsigned int y , x , w , h ;
w = s -> last_scr_width * sizeof ( uint32_t );
h = s -> last_scr_height ;
f = fopen ( filename , "wb" );
if ( ! f )
return ;
fprintf ( f , "P6 \n %d %d \n %d \n " , w , h , 255 );
for ( y = 0 ; y < h ; y ++ ) {
for ( x = 0 ; x < w ; x ++ ) {
fputc ( 0 , f );
}
}
fclose ( f );
}
static void vga_screen_dump_common ( VGAState * s , const char * filename ,
int w , int h )
2580
2581
{
DisplayState * saved_ds , ds1 , * ds = & ds1 ;
ths
authored
18 years ago
2582
2583
/* XXX: this is a little hackish */
2584
vga_invalidate_display ( s );
2585
2586
2587
2588
2589
2590
2591
2592
saved_ds = s -> ds ;
memset ( ds , 0 , sizeof ( DisplayState ));
ds -> dpy_update = vga_save_dpy_update ;
ds -> dpy_resize = vga_save_dpy_resize ;
ds -> dpy_refresh = vga_save_dpy_refresh ;
ds -> depth = 32 ;
2593
2594
ds -> linesize = w * sizeof ( uint32_t );
ds -> data = qemu_mallocz ( h * ds -> linesize );
2595
2596
s -> ds = ds ;
s -> graphic_mode = - 1 ;
2597
vga_update_display ( s );
2598
2599
ppm_save ( filename , ds -> data , w , h , ds -> linesize );
qemu_free ( ds -> data );
2600
2601
s -> ds = saved_ds ;
}
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
static void vga_screen_dump_graphic ( VGAState * s , const char * filename )
{
int w , h ;
s -> get_resolution ( s , & w , & h );
vga_screen_dump_common ( s , filename , w , h );
}
static void vga_screen_dump_text ( VGAState * s , const char * filename )
{
int w , h , cwidth , cheight ;
vga_get_text_resolution ( s , & w , & h , & cwidth , & cheight );
vga_screen_dump_common ( s , filename , w * cwidth , h * cheight );
}
/* save the vga display in a PPM image even if no display is
available */
static void vga_screen_dump ( void * opaque , const char * filename )
{
VGAState * s = ( VGAState * ) opaque ;
if ( ! ( s -> ar_index & 0x20 ))
vga_screen_dump_blank ( s , filename );
else if ( s -> gr [ 6 ] & 1 )
vga_screen_dump_graphic ( s , filename );
else
vga_screen_dump_text ( s , filename );
}