1 // ============================================================================================
3 // Copyright (C) 2002 Jeroen Janssen
5 // This library is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU Lesser General Public
7 // License as published by the Free Software Foundation; either
8 // version 2 of the License, or (at your option) any later version.
10 // This library is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 // Lesser General Public License for more details.
15 // You should have received a copy of the GNU Lesser General Public
16 // License along with this library; if not, write to the Free Software
17 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 // ============================================================================================
21 // This VBE is part of the VGA Bios specific to the plex86/bochs Emulated VGA card.
22 // You can NOT drive any physical vga card with it.
24 // ============================================================================================
26 // This VBE Bios is based on information taken from :
27 // - VESA BIOS EXTENSION (VBE) Core Functions Standard Version 3.0 located at www.vesa.org
29 // ============================================================================================
34 // disable VESA/VBE2 check in vbe info
35 //#define VBE2_NO_VESA_CHECK
39 #include "vbetables.h"
41 #define VBE_TOTAL_VIDEO_MEMORY_DIV_64K (VBE_DISPI_TOTAL_VIDEO_MEMORY_MB*1024/64)
43 // The current OEM Software Revision of this VBE Bios
44 #define VBE_OEM_SOFTWARE_REV 0x0002;
46 extern char vbebios_copyright
;
47 extern char vbebios_vendor_name
;
48 extern char vbebios_product_name
;
49 extern char vbebios_product_revision
;
52 // FIXME: 'merge' these (c) etc strings with the vgabios.c strings?
54 .ascii
"Bochs/Plex86 VBE(C) 2003 http://savannah.nongnu.org/projects/vgabios/"
58 .ascii
"Bochs/Plex86 Developers"
61 _vbebios_product_name
:
62 .ascii
"Bochs/Plex86 VBE Adapter"
65 _vbebios_product_revision
:
66 .ascii
"$Id: vbe.c,v 1.58 2006/08/19 09:39:43 vruppert Exp $"
70 .ascii
"Bochs VBE Display Adapter enabled"
75 _no_vbebios_info_string
:
76 .ascii
"NO Bochs VBE Support available!"
81 #if defined(USE_BX_INFO) || defined(DEBUG)
83 .ascii
"VBE Bios $Id: vbe.c,v 1.58 2006/08/19 09:39:43 vruppert Exp $"
89 dw vesa_pm_set_window
- vesa_pm_start
90 dw vesa_pm_set_display_start
- vesa_pm_start
91 dw vesa_pm_unimplemented
- vesa_pm_start
92 dw vesa_pm_io_ports_table
- vesa_pm_start
93 vesa_pm_io_ports_table
:
94 dw VBE_DISPI_IOPORT_INDEX
95 dw VBE_DISPI_IOPORT_INDEX
+ 1
96 dw VBE_DISPI_IOPORT_DATA
97 dw VBE_DISPI_IOPORT_DATA
+ 1
104 je vesa_pm_set_display_window1
107 vesa_pm_set_display_window1
:
111 mov dx
, # VBE_DISPI_IOPORT_INDEX
112 mov ax
, # VBE_DISPI_INDEX_BANK
115 mov dx
, # VBE_DISPI_IOPORT_DATA
127 vesa_pm_set_display_start
:
129 je vesa_pm_set_display_start1
131 je vesa_pm_set_display_start1
134 vesa_pm_set_display_start1
:
135 ; convert offset
to (X
, Y
) coordinate
136 ; (would be simpler to change Bochs VBE API
...)
149 mov dx
, # VBE_DISPI_IOPORT_INDEX
150 mov ax
, # VBE_DISPI_INDEX_VIRT_WIDTH
152 mov dx
, # VBE_DISPI_IOPORT_DATA
156 mov dx
, # VBE_DISPI_IOPORT_INDEX
157 mov ax
, # VBE_DISPI_INDEX_BPP
159 mov dx
, # VBE_DISPI_IOPORT_DATA
188 mov dx
, # VBE_DISPI_IOPORT_INDEX
189 mov ax
, # VBE_DISPI_INDEX_X_OFFSET
192 mov dx
, # VBE_DISPI_IOPORT_DATA
199 mov dx
, # VBE_DISPI_IOPORT_INDEX
200 mov ax
, # VBE_DISPI_INDEX_Y_OFFSET
203 mov dx
, # VBE_DISPI_IOPORT_DATA
215 vesa_pm_unimplemented
:
221 ; DISPI ioport functions
225 mov dx
, # VBE_DISPI_IOPORT_INDEX
226 mov ax
, # VBE_DISPI_INDEX_ID
228 mov dx
, # VBE_DISPI_IOPORT_DATA
236 mov dx
, # VBE_DISPI_IOPORT_INDEX
237 mov ax
, # VBE_DISPI_INDEX_ID
240 mov dx
, # VBE_DISPI_IOPORT_DATA
246 static void dispi_set_xres(xres
)
255 mov dx
, # VBE_DISPI_IOPORT_INDEX
256 mov ax
, # VBE_DISPI_INDEX_XRES
258 mov dx
, # VBE_DISPI_IOPORT_DATA
268 static void dispi_set_yres(yres
)
271 outw(VBE_DISPI_IOPORT_INDEX
,VBE_DISPI_INDEX_YRES
);
272 outw(VBE_DISPI_IOPORT_DATA
,yres
);
275 static void dispi_set_bpp(bpp
)
278 outw(VBE_DISPI_IOPORT_INDEX
,VBE_DISPI_INDEX_BPP
);
279 outw(VBE_DISPI_IOPORT_DATA
,bpp
);
283 ; AL
= bits per pixel
/ AH
= bytes per pixel
286 mov dx
, # VBE_DISPI_IOPORT_INDEX
287 mov ax
, # VBE_DISPI_INDEX_BPP
289 mov dx
, # VBE_DISPI_IOPORT_DATA
300 ; get display capabilities
305 call dispi_get_enable
307 or ax
, # VBE_DISPI_GETCAPS
308 call _dispi_set_enable
309 mov dx
, # VBE_DISPI_IOPORT_INDEX
310 mov ax
, # VBE_DISPI_INDEX_XRES
312 mov dx
, # VBE_DISPI_IOPORT_DATA
316 call _dispi_set_enable
325 call dispi_get_enable
327 or ax
, # VBE_DISPI_GETCAPS
328 call _dispi_set_enable
329 mov dx
, # VBE_DISPI_IOPORT_INDEX
330 mov ax
, # VBE_DISPI_INDEX_BPP
332 mov dx
, # VBE_DISPI_IOPORT_DATA
336 call _dispi_set_enable
345 mov dx
, # VBE_DISPI_IOPORT_INDEX
346 mov ax
, # VBE_DISPI_INDEX_ENABLE
349 mov dx
, # VBE_DISPI_IOPORT_DATA
356 mov dx
, # VBE_DISPI_IOPORT_INDEX
357 mov ax
, # VBE_DISPI_INDEX_ENABLE
359 mov dx
, # VBE_DISPI_IOPORT_DATA
367 mov dx
, # VBE_DISPI_IOPORT_INDEX
368 mov ax
, # VBE_DISPI_INDEX_BANK
371 mov dx
, # VBE_DISPI_IOPORT_DATA
378 mov dx
, # VBE_DISPI_IOPORT_INDEX
379 mov ax
, # VBE_DISPI_INDEX_BANK
381 mov dx
, # VBE_DISPI_IOPORT_DATA
387 static void dispi_set_bank_farcall()
391 je dispi_set_bank_farcall_get
393 jnz dispi_set_bank_farcall_error
397 mov ax
,# VBE_DISPI_INDEX_BANK
398 mov dx
,# VBE_DISPI_IOPORT_INDEX
401 mov dx
,# VBE_DISPI_IOPORT_DATA
406 jne dispi_set_bank_farcall_error
409 dispi_set_bank_farcall_get
:
410 mov ax
,# VBE_DISPI_INDEX_BANK
411 mov dx
,# VBE_DISPI_IOPORT_INDEX
413 mov dx
,# VBE_DISPI_IOPORT_DATA
417 dispi_set_bank_farcall_error
:
427 mov dx
, # VBE_DISPI_IOPORT_INDEX
428 mov ax
, # VBE_DISPI_INDEX_X_OFFSET
431 mov dx
, # VBE_DISPI_IOPORT_DATA
438 mov dx
, # VBE_DISPI_IOPORT_INDEX
439 mov ax
, # VBE_DISPI_INDEX_X_OFFSET
441 mov dx
, # VBE_DISPI_IOPORT_DATA
449 mov dx
, # VBE_DISPI_IOPORT_INDEX
450 mov ax
, # VBE_DISPI_INDEX_Y_OFFSET
453 mov dx
, # VBE_DISPI_IOPORT_DATA
460 mov dx
, # VBE_DISPI_IOPORT_INDEX
461 mov ax
, # VBE_DISPI_INDEX_Y_OFFSET
463 mov dx
, # VBE_DISPI_IOPORT_DATA
479 mov dx
, # VGAREG_VGA_CRTC_ADDRESS
488 dispi_set_virt_width
:
489 call vga_set_virt_width
492 mov dx
, # VBE_DISPI_IOPORT_INDEX
493 mov ax
, # VBE_DISPI_INDEX_VIRT_WIDTH
496 mov dx
, # VBE_DISPI_IOPORT_DATA
501 dispi_get_virt_width
:
503 mov dx
, # VBE_DISPI_IOPORT_INDEX
504 mov ax
, # VBE_DISPI_INDEX_VIRT_WIDTH
506 mov dx
, # VBE_DISPI_IOPORT_DATA
511 dispi_get_virt_height
:
513 mov dx
, # VBE_DISPI_IOPORT_INDEX
514 mov ax
, # VBE_DISPI_INDEX_VIRT_HEIGHT
516 mov dx
, # VBE_DISPI_IOPORT_DATA
525 ; set CRT X resolution
526 mov dx
, # VBE_DISPI_IOPORT_INDEX
527 mov ax
, # VBE_DISPI_INDEX_XRES
529 mov dx
, # VBE_DISPI_IOPORT_DATA
532 mov dx
, # VGAREG_VGA_CRTC_ADDRESS
543 call vga_set_virt_width
545 ; set CRT Y resolution
546 mov dx
, # VBE_DISPI_IOPORT_INDEX
547 mov ax
, # VBE_DISPI_INDEX_YRES
549 mov dx
, # VBE_DISPI_IOPORT_DATA
553 mov dx
, # VGAREG_VGA_CRTC_ADDRESS
574 mov dx
, # VGAREG_VGA_CRTC_ADDRESS
579 mov dx
, # VGAREG_VGA_CRTC_DATA
583 mov dx
, # VGAREG_ACTL_RESET
585 mov dx
, # VGAREG_ACTL_ADDRESS
588 mov dx
, # VGAREG_ACTL_READ_DATA
591 mov dx
, # VGAREG_ACTL_ADDRESS
595 mov dx
, # VGAREG_GRDC_ADDRESS
598 mov dx
, # VGAREG_SEQU_ADDRESS
602 ; settings
for >= 8bpp
603 mov dx
, # VBE_DISPI_IOPORT_INDEX
604 mov ax
, # VBE_DISPI_INDEX_BPP
606 mov dx
, # VBE_DISPI_IOPORT_DATA
610 mov dx
, # VGAREG_VGA_CRTC_ADDRESS
613 mov dx
, # VGAREG_VGA_CRTC_DATA
617 mov dx
, # VGAREG_ACTL_RESET
619 mov dx
, # VGAREG_ACTL_ADDRESS
622 mov dx
, # VGAREG_ACTL_READ_DATA
625 mov dx
, # VGAREG_ACTL_ADDRESS
629 mov dx
, # VGAREG_SEQU_ADDRESS
632 mov dx
, # VGAREG_SEQU_DATA
636 mov dx
, # VGAREG_GRDC_ADDRESS
639 mov dx
, # VGAREG_GRDC_DATA
651 // ModeInfo helper function
652 static ModeInfoListItem
* mode_info_find_mode(mode
, using_lfb
)
653 Bit16u mode
; Boolean using_lfb
;
655 ModeInfoListItem
*cur_info
=&mode_info_list
;
657 while (cur_info
->mode
!= VBE_VESA_MODE_END_OF_LIST
)
659 if (cur_info
->mode
== mode
)
665 else if (cur_info
->info
.ModeAttributes
& VBE_MODE_ATTRIBUTE_LINEAR_FRAME_BUFFER_MODE
)
685 ; Has VBE display
- Returns
true if VBE display detected
687 _vbe_has_vbe_display
:
690 mov ax
, # BIOSMEM_SEG
692 mov bx
, # BIOSMEM_VBE_FLAG
700 ; VBE Init
- Initialise the Vesa Bios Extension Code
701 ; This function does a sanity check on the host side display code interface
.
704 mov ax
, # VBE_DISPI_ID0
707 cmp ax
, # VBE_DISPI_ID0
711 mov ax
, # BIOSMEM_SEG
713 mov bx
, # BIOSMEM_VBE_FLAG
718 mov ax
, # VBE_DISPI_ID4
721 #if defined(USE_BX_INFO) || defined(DEBUG)
722 mov bx
, #msg_vbe_init
730 ; VBE Display Info
- Display information on screen about the VBE
733 call _vbe_has_vbe_display
738 mov si
, #_vbebios_info_string
743 mov si
, #_no_vbebios_info_string
747 /** Function 00h - Return VBE Controller Information
751 * ES:DI = Pointer to buffer in which to place VbeInfoBlock structure
752 * (VbeSignature should be VBE2 when VBE 2.0 information is desired and
753 * the info block is 512 bytes in size)
755 * AX = VBE Return Status
758 void vbe_biosfn_return_controller_information(AX
, ES
, DI
)
759 Bit16u
*AX
;Bit16u ES
;Bit16u DI
;
762 VbeInfoBlock vbe_info_block
;
768 ModeInfoListItem
*cur_info
=&mode_info_list
;
770 status
= read_word(ss
, AX
);
773 printf("VBE vbe_biosfn_return_vbe_info ES%x DI%x AX%x\n",ES
,DI
,status
);
777 #ifdef VBE2_NO_VESA_CHECK
779 // get vbe_info_block into local variable
780 memcpyb(ss
, &vbe_info_block
, ES
, DI
, sizeof(vbe_info_block
));
782 // check for VBE2 signature
783 if (((vbe_info_block
.VbeSignature
[0] == 'V') &&
784 (vbe_info_block
.VbeSignature
[1] == 'B') &&
785 (vbe_info_block
.VbeSignature
[2] == 'E') &&
786 (vbe_info_block
.VbeSignature
[3] == '2')) ||
788 ((vbe_info_block
.VbeSignature
[0] == 'V') &&
789 (vbe_info_block
.VbeSignature
[1] == 'E') &&
790 (vbe_info_block
.VbeSignature
[2] == 'S') &&
791 (vbe_info_block
.VbeSignature
[3] == 'A')) )
795 printf("VBE correct VESA/VBE2 signature found\n");
801 vbe_info_block
.VbeSignature
[0] = 'V';
802 vbe_info_block
.VbeSignature
[1] = 'E';
803 vbe_info_block
.VbeSignature
[2] = 'S';
804 vbe_info_block
.VbeSignature
[3] = 'A';
806 // VBE Version supported
807 vbe_info_block
.VbeVersion
= 0x0200;
810 vbe_info_block
.OemStringPtr_Seg
= 0xc000;
811 vbe_info_block
.OemStringPtr_Off
= &vbebios_copyright
;
814 vbe_info_block
.Capabilities
[0] = VBE_CAPABILITY_8BIT_DAC
;
815 vbe_info_block
.Capabilities
[1] = 0;
816 vbe_info_block
.Capabilities
[2] = 0;
817 vbe_info_block
.Capabilities
[3] = 0;
819 // VBE Video Mode Pointer (dynamicly generated from the mode_info_list)
820 vbe_info_block
.VideoModePtr_Seg
= ES
;
821 vbe_info_block
.VideoModePtr_Off
= DI
+ 34;
823 // VBE Total Memory (in 64b blocks)
824 vbe_info_block
.TotalMemory
= VBE_TOTAL_VIDEO_MEMORY_DIV_64K
;
829 vbe_info_block
.OemSoftwareRev
= VBE_OEM_SOFTWARE_REV
;
830 vbe_info_block
.OemVendorNamePtr_Seg
= 0xc000;
831 vbe_info_block
.OemVendorNamePtr_Off
= &vbebios_vendor_name
;
832 vbe_info_block
.OemProductNamePtr_Seg
= 0xc000;
833 vbe_info_block
.OemProductNamePtr_Off
= &vbebios_product_name
;
834 vbe_info_block
.OemProductRevPtr_Seg
= 0xc000;
835 vbe_info_block
.OemProductRevPtr_Off
= &vbebios_product_revision
;
837 // copy updates in vbe_info_block back
838 memcpyb(ES
, DI
, ss
, &vbe_info_block
, sizeof(vbe_info_block
));
842 // copy updates in vbe_info_block back (VBE 1.x compatibility)
843 memcpyb(ES
, DI
, ss
, &vbe_info_block
, 256);
848 if ((cur_info
->info
.XResolution
<= dispi_get_max_xres()) &&
849 (cur_info
->info
.BitsPerPixel
<= dispi_get_max_bpp())) {
851 printf("VBE found mode %x => %x\n", cur_info
->mode
,cur_mode
);
853 write_word(ES
, DI
+ cur_ptr
, cur_info
->mode
);
858 } while (cur_info
->mode
!= VBE_VESA_MODE_END_OF_LIST
);
860 // Add vesa mode list terminator
861 write_word(ES
, DI
+ cur_ptr
, cur_info
->mode
);
865 write_word(ss
, AX
, result
);
869 /** Function 01h - Return VBE Mode Information
874 * ES:DI = Pointer to buffer in which to place ModeInfoBlock structure
876 * AX = VBE Return Status
879 void vbe_biosfn_return_mode_information(AX
, CX
, ES
, DI
)
880 Bit16u
*AX
;Bit16u CX
; Bit16u ES
;Bit16u DI
;
882 Bit16u result
=0x0100;
885 ModeInfoListItem
*cur_info
;
889 printf("VBE vbe_biosfn_return_mode_information ES%x DI%x CX%x\n",ES
,DI
,CX
);
892 using_lfb
=((CX
& VBE_MODE_LINEAR_FRAME_BUFFER
) == VBE_MODE_LINEAR_FRAME_BUFFER
);
896 cur_info
= mode_info_find_mode(CX
, using_lfb
, &cur_info
);
901 printf("VBE found mode %x\n",CX
);
903 memsetb(ss
, &info
, 0, sizeof(ModeInfoBlock
));
904 memcpyb(ss
, &info
, 0xc000, &(cur_info
->info
), sizeof(ModeInfoBlockCompact
));
905 if (info
.WinAAttributes
& VBE_WINDOW_ATTRIBUTE_RELOCATABLE
) {
906 info
.WinFuncPtr
= 0xC0000000UL
;
907 *(Bit16u
*)&(info
.WinFuncPtr
) = (Bit16u
)(dispi_set_bank_farcall
);
915 printf("VBE *NOT* found mode %x\n",CX
);
922 // copy updates in mode_info_block back
923 memcpyb(ES
, DI
, ss
, &info
, sizeof(info
));
926 write_word(ss
, AX
, result
);
929 /** Function 02h - Set VBE Mode
933 * BX = Desired Mode to set
934 * ES:DI = Pointer to CRTCInfoBlock structure
936 * AX = VBE Return Status
939 void vbe_biosfn_set_mode(AX
, BX
, ES
, DI
)
940 Bit16u
*AX
;Bit16u BX
; Bit16u ES
;Bit16u DI
;
942 Bit16u ss
= get_SS();
944 ModeInfoListItem
*cur_info
;
949 using_lfb
=((BX
& VBE_MODE_LINEAR_FRAME_BUFFER
) == VBE_MODE_LINEAR_FRAME_BUFFER
);
950 lfb_flag
=using_lfb
?VBE_DISPI_LFB_ENABLED
:0;
951 no_clear
=((BX
& VBE_MODE_PRESERVE_DISPLAY_MEMORY
) == VBE_MODE_PRESERVE_DISPLAY_MEMORY
)?VBE_DISPI_NOCLEARMEM
:0;
955 //result=read_word(ss,AX);
957 // check for non vesa mode
958 if (BX
<VBE_MODE_VESA_DEFINED
)
962 dispi_set_enable(VBE_DISPI_DISABLED
);
963 // call the vgabios in order to set the video mode
964 // this allows for going back to textmode with a VBE call (some applications expect that to work)
967 biosfn_set_video_mode(mode
);
971 cur_info
= mode_info_find_mode(BX
, using_lfb
, &cur_info
);
976 printf("VBE found mode %x, setting:\n", BX
);
977 printf("\txres%x yres%x bpp%x\n",
978 cur_info
->info
.XResolution
,
979 cur_info
->info
.YResolution
,
980 cur_info
->info
.BitsPerPixel
);
983 // first disable current mode (when switching between vesa modi)
984 dispi_set_enable(VBE_DISPI_DISABLED
);
986 if (cur_info
->info
.BitsPerPixel
== 4)
988 biosfn_set_video_mode(0x6a);
991 dispi_set_bpp(cur_info
->info
.BitsPerPixel
);
992 dispi_set_xres(cur_info
->info
.XResolution
);
993 dispi_set_yres(cur_info
->info
.YResolution
);
995 dispi_set_enable(VBE_DISPI_ENABLED
| no_clear
| lfb_flag
);
998 write_word(BIOSMEM_SEG
,BIOSMEM_VBE_MODE
,BX
);
999 write_byte(BIOSMEM_SEG
,BIOSMEM_VIDEO_CTL
,(0x60 | no_clear
));
1006 printf("VBE *NOT* found mode %x\n" , BX
);
1010 // FIXME: redirect non VBE modi to normal VGA bios operation
1011 // (switch back to VGA mode
1016 write_word(ss
, AX
, result
);
1019 /** Function 03h - Return Current VBE Mode
1024 * AX = VBE Return Status
1025 * BX = Current VBE Mode
1029 vbe_biosfn_return_current_mode
:
1031 mov ax
, # BIOSMEM_SEG
1033 call dispi_get_enable
1034 and ax
, # VBE_DISPI_ENABLED
1036 mov bx
, # BIOSMEM_VBE_MODE
1041 mov bx
, # BIOSMEM_CURRENT_MODE
1052 Bit16u
vbe_biosfn_read_video_state_size()
1057 void vbe_biosfn_save_video_state(ES
, BX
)
1058 Bit16u ES
; Bit16u BX
;
1062 outw(VBE_DISPI_IOPORT_INDEX
,VBE_DISPI_INDEX_ENABLE
);
1063 enable
= inw(VBE_DISPI_IOPORT_DATA
);
1064 write_word(ES
, BX
, enable
);
1066 if (!(enable
& VBE_DISPI_ENABLED
))
1068 for(i
= VBE_DISPI_INDEX_XRES
; i
<= VBE_DISPI_INDEX_Y_OFFSET
; i
++) {
1069 if (i
!= VBE_DISPI_INDEX_ENABLE
) {
1070 outw(VBE_DISPI_IOPORT_INDEX
, i
);
1071 write_word(ES
, BX
, inw(VBE_DISPI_IOPORT_DATA
));
1078 void vbe_biosfn_restore_video_state(ES
, BX
)
1079 Bit16u ES
; Bit16u BX
;
1083 enable
= read_word(ES
, BX
);
1086 if (!(enable
& VBE_DISPI_ENABLED
)) {
1087 outw(VBE_DISPI_IOPORT_INDEX
,VBE_DISPI_INDEX_ENABLE
);
1088 outw(VBE_DISPI_IOPORT_DATA
, enable
);
1090 outw(VBE_DISPI_IOPORT_INDEX
, VBE_DISPI_INDEX_XRES
);
1091 outw(VBE_DISPI_IOPORT_DATA
, read_word(ES
, BX
));
1093 outw(VBE_DISPI_IOPORT_INDEX
, VBE_DISPI_INDEX_YRES
);
1094 outw(VBE_DISPI_IOPORT_DATA
, read_word(ES
, BX
));
1096 outw(VBE_DISPI_IOPORT_INDEX
, VBE_DISPI_INDEX_BPP
);
1097 outw(VBE_DISPI_IOPORT_DATA
, read_word(ES
, BX
));
1099 outw(VBE_DISPI_IOPORT_INDEX
,VBE_DISPI_INDEX_ENABLE
);
1100 outw(VBE_DISPI_IOPORT_DATA
, enable
);
1102 for(i
= VBE_DISPI_INDEX_BANK
; i
<= VBE_DISPI_INDEX_Y_OFFSET
; i
++) {
1103 outw(VBE_DISPI_IOPORT_INDEX
, i
);
1104 outw(VBE_DISPI_IOPORT_DATA
, read_word(ES
, BX
));
1110 /** Function 04h - Save/Restore State
1114 * DL = 00h Return Save/Restore State buffer size
1117 * CX = Requested states
1118 * ES:BX = Pointer to buffer (if DL <> 00h)
1120 * AX = VBE Return Status
1121 * BX = Number of 64-byte blocks to hold the state buffer (if DL=00h)
1124 void vbe_biosfn_save_restore_state(AX
, CX
, DX
, ES
, BX
)
1125 Bit16u
*AX
; Bit16u CX
; Bit16u DX
; Bit16u ES
; Bit16u
*BX
;
1133 val
= biosfn_read_video_state_size2(CX
);
1135 printf("VGA state size=%x\n", val
);
1138 val
+= vbe_biosfn_read_video_state_size();
1139 write_word(ss
, BX
, val
);
1142 val
= read_word(ss
, BX
);
1143 val
= biosfn_save_video_state(CX
, ES
, val
);
1145 printf("VGA save_state offset=%x\n", val
);
1148 vbe_biosfn_save_video_state(ES
, val
);
1151 val
= read_word(ss
, BX
);
1152 val
= biosfn_restore_video_state(CX
, ES
, val
);
1154 printf("VGA restore_state offset=%x\n", val
);
1157 vbe_biosfn_restore_video_state(ES
, val
);
1164 write_word(ss
, AX
, result
);
1167 /** Function 05h - Display Window Control
1171 * (16-bit) BH = 00h Set memory window
1172 * = 01h Get memory window
1173 * BL = Window number
1176 * DX = Window number in video memory in window
1177 * granularity units (Set Memory Window only)
1179 * If this function is called while in a linear frame buffer mode,
1180 * this function must fail with completion code AH=03h
1183 * AX = VBE Return Status
1184 * DX = Window number in window granularity units
1185 * (Get Memory Window only)
1188 vbe_biosfn_display_window_control
:
1192 je get_display_window
1193 jb set_display_window
1198 call _dispi_set_bank
1215 /** Function 06h - Set/Get Logical Scan Line Length
1219 * BL = 00h Set Scan Line Length in Pixels
1220 * = 01h Get Scan Line Length
1221 * = 02h Set Scan Line Length in Bytes
1222 * = 03h Get Maximum Scan Line Length
1223 * CX = If BL=00h Desired Width in Pixels
1224 * If BL=02h Desired Width in Bytes
1225 * (Ignored for Get Functions)
1228 * AX = VBE Return Status
1229 * BX = Bytes Per Scan Line
1230 * CX = Actual Pixels Per Scan Line
1231 * (truncated to nearest complete pixel)
1232 * DX = Maximum Number of Scan Lines
1235 vbe_biosfn_set_get_logical_scan_line_length
:
1238 je get_logical_scan_line_length
1240 je set_logical_scan_line_bytes
1241 jb set_logical_scan_line_pixels
1244 set_logical_scan_line_bytes
:
1257 set_logical_scan_line_pixels
:
1258 call dispi_set_virt_width
1259 get_logical_scan_line_length
:
1263 call dispi_get_virt_width
1272 call dispi_get_virt_height
1279 /** Function 07h - Set/Get Display Start
1283 * BH = 00h Reserved and must be 00h
1284 * BL = 00h Set Display Start
1285 * = 01h Get Display Start
1286 * = 02h Schedule Display Start (Alternate)
1287 * = 03h Schedule Stereoscopic Display Start
1288 * = 04h Get Scheduled Display Start Status
1289 * = 05h Enable Stereoscopic Mode
1290 * = 06h Disable Stereoscopic Mode
1291 * = 80h Set Display Start during Vertical Retrace
1292 * = 82h Set Display Start during Vertical Retrace (Alternate)
1293 * = 83h Set Stereoscopic Display Start during Vertical Retrace
1294 * ECX = If BL=02h/82h Display Start Address in bytes
1295 * If BL=03h/83h Left Image Start Address in bytes
1296 * EDX = If BL=03h/83h Right Image Start Address in bytes
1297 * CX = If BL=00h/80h First Displayed Pixel In Scan Line
1298 * DX = If BL=00h/80h First Displayed Scan Line
1301 * AX = VBE Return Status
1302 * BH = If BL=01h Reserved and will be 0
1303 * CX = If BL=01h First Displayed Pixel In Scan Line
1304 * If BL=04h 0 if flip has not occurred, not 0 if it has
1305 * DX = If BL=01h First Displayed Scan Line
1308 * BH = 00h Reserved and must be 00h
1309 * BL = 00h Set Display Start
1310 * = 80h Set Display Start during Vertical Retrace
1311 * CX = Bits 0-15 of display start address
1312 * DX = Bits 16-31 of display start address
1313 * ES = Selector for memory mapped registers
1316 vbe_biosfn_set_get_display_start
:
1318 je set_display_start
1320 je get_display_start
1321 jb set_display_start
1326 call dispi_set_x_offset
1328 call dispi_set_y_offset
1332 call dispi_get_x_offset
1334 call dispi_get_y_offset
1342 /** Function 08h - Set/Get Dac Palette Format
1346 * BL = 00h set DAC palette width
1347 * = 01h get DAC palette width
1348 * BH = If BL=00h: desired number of bits per primary color
1350 * AX = VBE Return Status
1351 * BH = current number of bits per primary color (06h = standard VGA)
1354 vbe_biosfn_set_get_dac_palette_format
:
1356 je get_dac_palette_format
1357 jb set_dac_palette_format
1360 set_dac_palette_format
:
1361 call dispi_get_enable
1365 jne vbe_08_unsupported
1366 or ax
, # VBE_DISPI_8BIT_DAC
1369 and ax
, #~ VBE_DISPI_8BIT_DAC
1371 call _dispi_set_enable
1372 get_dac_palette_format
:
1374 call dispi_get_enable
1375 and ax
, # VBE_DISPI_8BIT_DAC
1387 /** Function 09h - Set/Get Palette Data
1392 * AX = VBE Return Status
1394 * FIXME: incomplete API description, Input & Output
1396 void vbe_biosfn_set_get_palette_data(AX
)
1400 /** Function 0Ah - Return VBE Protected Mode Interface
1401 * Input: AX = 4F0Ah VBE 2.0 Protected Mode Interface
1402 * BL = 00h Return protected mode table
1405 * Output: AX = Status
1406 * ES = Real Mode Segment of Table
1407 * DI = Offset of Table
1408 * CX = Length of Table including protected mode code
1409 * (for copying purposes)
1412 vbe_biosfn_return_protected_mode_interface
:
1417 mov di
, # vesa_pm_start
1418 mov cx
, # vesa_pm_end