VESA 模式,OSDEV
Posted
技术标签:
【中文标题】VESA 模式,OSDEV【英文标题】:VESA mode, OSDEV 【发布时间】:2022-01-02 04:11:14 【问题描述】:我目前正在从头开始编写操作系统(制作我自己的引导加载程序等),并且我正在尝试适应 VESA 模式。 我已经阅读了文档,这一切都很有意义..除了一些事情之外。
这直接来自文档(我的实现方式不同):
vbe_set_mode:
mov [.width], ax
mov [.height], bx
mov [.bpp], cl
sti
push es ; some VESA Bioses destroy ES, or so I read
mov ax, 0x4F00 ; get VBE BIOS info
mov di, vbe_info_block
int 0x10
pop es
cmp ax, 0x4F ; BIOS doesn't support VBE?
jne .error
mov ax, word[vbe_info_block.video_modes]
mov [.offset], ax
mov ax, word[vbe_info_block.video_modes+2]
mov [.segment], ax
mov ax, [.segment]
mov fs, ax
mov si, [.offset]
.find_mode:
mov dx, [fs:si]
add si, 2
mov [.offset], si
mov [.mode], dx
mov ax, 0
mov fs, ax
cmp [.mode], 0xFFFF ; end of list?
je .error
push es
mov ax, 0x4F01 ; get VBE mode info
mov cx, [.mode]
mov di, mode_info_block
int 0x10
pop es
cmp ax, 0x4F
jne .error
mov ax, [.width]
cmp ax, [mode_info_block.width]
jne .next_mode
mov ax, [.height]
cmp ax, [mode_info_block.height]
jne .next_mode
mov al, [.bpp]
cmp al, [mode_info_block.bpp]
jne .next_mode
; If we make it here, we've found the correct mode!
mov ax, [.width]
mov word[vbe_screen.width], ax
mov ax, [.height]
mov word[vbe_screen.height], ax
mov eax, [mode_info_block.framebuffer]
mov dword[vbe_screen.physical_buffer], eax
mov ax, [mode_info_block.pitch]
mov word[vbe_screen.bytes_per_line], ax
mov eax, 0
mov al, [.bpp]
mov byte[vbe_screen.bpp], al
shr eax, 3
mov dword[vbe_screen.bytes_per_pixel], eax
mov ax, [.width]
shr ax, 3
dec ax
mov word[vbe_screen.x_cur_max], ax
mov ax, [.height]
shr ax, 4
dec ax
mov word[vbe_screen.y_cur_max], ax
; Set the mode
push es
mov ax, 0x4F02
mov bx, [.mode]
or bx, 0x4000 ; enable LFB
mov di, 0 ; not sure if some BIOSes need this... anyway it doesn't hurt
int 0x10
pop es
cmp ax, 0x4F
jne .error
clc
ret
.next_mode:
mov ax, [.segment]
mov fs, ax
mov si, [.offset]
jmp .find_mode
.error:
stc
ret
.width dw 0
.height dw 0
.bpp db 0
.segment dw 0
.offset dw 0
.mode dw 0
我感到困惑的是,为什么它将段分配给视频模式指针加2?
我知道视频模式指针有一个偏移量:segment,但我只是对为什么我们将视频模式指针 + 2 分配给该段以及为什么在我们将偏移量和段分配给dx
注册。
【问题讨论】:
以上代码是16位的,不是32位的 【参考方案1】:mov ax, word[vbe_info_block.video_modes] mov [.offset], ax mov ax, word[vbe_info_block.video_modes+2] mov [.segment], ax
为什么将段分配给视频模式指针加 2?我知道视频模式指针有一个偏移量:段,但我只是对为什么我们将视频模式指针 + 2 分配给段感到困惑
远指针存储在内存中,带有一个字大小的偏移量,后跟一个字大小的段。
偏移量存储在 vbe_info_block.video_modes 中,段存储在地址多 2 个的后面的字中,所以在[vbe_info_block.video_modes + 2]
mov dx, [fs:si] add si, 2 mov [.offset], si
以及为什么我们在将偏移量和段分配给
dx
寄存器之后将si
加2。
我们不会将偏移量和段分配给DX
寄存器!
我们检索到的远指针(并放入FS:SI
)指向一个单词大小的模式编号列表。这是我们在DX
寄存器中加载的模式编号。 add si, 2
mov [.offset], si
在那里,所以循环可以遍历列表中的所有单词。
【讨论】:
以上是关于VESA 模式,OSDEV的主要内容,如果未能解决你的问题,请参考以下文章
尝试在启用分页的情况下访问 VESA LFB 时出现页面错误