2002-12-27 08:53:07 +00:00
|
|
|
/*
|
2004-04-04 13:46:03 +00:00
|
|
|
* GRUB -- GRand Unified Bootloader
|
2010-01-03 22:05:07 +00:00
|
|
|
* Copyright (C) 1999,2000,2001,2002,2003,2005,2006,2007,2008,2009 Free Software Foundation, Inc.
|
2002-12-27 08:53:07 +00:00
|
|
|
*
|
2007-07-21 23:32:33 +00:00
|
|
|
* GRUB is free software: you can redistribute it and/or modify
|
2002-12-27 08:53:07 +00:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
2007-07-21 23:32:33 +00:00
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
2002-12-27 08:53:07 +00:00
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
2007-07-21 23:32:33 +00:00
|
|
|
* GRUB is distributed in the hope that it will be useful,
|
2002-12-27 08:53:07 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2007-07-21 23:32:33 +00:00
|
|
|
* along with GRUB. If not, see <http://www.gnu.org/licenses/>.
|
2002-12-27 08:53:07 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Note: These functions defined in this file may be called from C.
|
|
|
|
* Be careful of that you must not modify some registers. Quote
|
|
|
|
* from gcc-2.95.2/gcc/config/i386/i386.h:
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2002-12-27 08:53:07 +00:00
|
|
|
1 for registers not available across function calls.
|
|
|
|
These must include the FIXED_REGISTERS and also any
|
|
|
|
registers that can be used without being saved.
|
|
|
|
The latter must include the registers where values are returned
|
|
|
|
and the register where structure-value addresses are passed.
|
|
|
|
Aside from that, you can include as many other registers as you like.
|
|
|
|
|
|
|
|
ax,dx,cx,bx,si,di,bp,sp,st,st1,st2,st3,st4,st5,st6,st7,arg
|
|
|
|
{ 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 }
|
|
|
|
*/
|
|
|
|
|
2002-12-28 07:16:30 +00:00
|
|
|
/*
|
2004-04-04 13:46:03 +00:00
|
|
|
* Note: GRUB is compiled with the options -mrtd and -mregparm=3.
|
2002-12-28 07:16:30 +00:00
|
|
|
* So the first three arguments are passed in %eax, %edx, and %ecx,
|
|
|
|
* respectively, and if a function has a fixed number of arguments
|
2009-09-03 07:53:40 +00:00
|
|
|
* and the number is greater than three, the function must return
|
2002-12-28 07:16:30 +00:00
|
|
|
* with "ret $N" where N is ((the number of arguments) - 3) * 4.
|
|
|
|
*/
|
|
|
|
|
2002-12-27 08:53:07 +00:00
|
|
|
#include <config.h>
|
2004-04-04 13:46:03 +00:00
|
|
|
#include <grub/symbol.h>
|
|
|
|
#include <grub/boot.h>
|
|
|
|
#include <grub/machine/boot.h>
|
|
|
|
#include <grub/machine/memory.h>
|
|
|
|
#include <grub/machine/console.h>
|
2006-05-14 21:16:20 +00:00
|
|
|
#include <grub/cpu/linux.h>
|
2004-04-04 13:46:03 +00:00
|
|
|
#include <grub/machine/kernel.h>
|
2008-02-05 Robert Millan <rmh@aybabtu.com>
* include/grub/term.h (GRUB_TERM_LEFT, GRUB_TERM_RIGHT)
(GRUB_TERM_UP, GRUB_TERM_DOWN, GRUB_TERM_HOME, GRUB_TERM_END)
(GRUB_TERM_DC, GRUB_TERM_PPAGE, GRUB_TERM_NPAGE, GRUB_TERM_ESC)
(GRUB_TERM_TAB, GRUB_TERM_BACKSPACE): New macros.
* kern/i386/pc/startup.S: Include `<grub/term.h>'.
(translation_table): Replace hardcoded values with macros
provided by `<grub/term.h>'.
* term/i386/pc/at_keyboard.c: Include `<grub/term.h>'.
(keyboard_map): Correct/add a few values, with macros provided
by `<grub/term.h>'.
(keyboard_map_shift): Zero values that don't differ from their
`keyboard_map' equivalents.
(grub_console_checkkey): Optimize KEYBOARD_STATUS_CAPS_LOCK toggling.
Discard the second scan code that is always sent by Caps lock.
Only use `keyboard_map_shift' when it provides a non-zero value,
otherwise fallback to `keyboard_map'.
2008-02-05 10:23:24 +00:00
|
|
|
#include <grub/term.h>
|
2007-07-25 00:44:03 +00:00
|
|
|
#include <multiboot.h>
|
|
|
|
#include <multiboot2.h>
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2010-03-26 23:04:14 +00:00
|
|
|
#define ABS(x) ((x) - LOCAL (base) + GRUB_BOOT_MACHINE_KERNEL_ADDR + 0x200)
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2002-12-27 08:53:07 +00:00
|
|
|
.file "startup.S"
|
|
|
|
|
|
|
|
.text
|
|
|
|
|
|
|
|
/* Tell GAS to generate 16-bit instructions so that this code works
|
|
|
|
in real mode. */
|
|
|
|
.code16
|
|
|
|
|
|
|
|
.globl start, _start
|
|
|
|
start:
|
|
|
|
_start:
|
2010-03-26 23:04:14 +00:00
|
|
|
LOCAL (base):
|
2002-12-27 08:53:07 +00:00
|
|
|
/*
|
|
|
|
* Guarantee that "main" is loaded at 0x0:0x8200.
|
|
|
|
*/
|
2010-03-26 23:04:14 +00:00
|
|
|
#ifdef __APPLE__
|
|
|
|
ljmp $0, $(ABS(LOCAL (codestart)) - 0x10000)
|
2009-06-04 20:01:19 +00:00
|
|
|
#else
|
2010-03-26 23:04:14 +00:00
|
|
|
ljmp $0, $ABS(LOCAL (codestart))
|
2009-06-04 20:01:19 +00:00
|
|
|
#endif
|
2002-12-27 08:53:07 +00:00
|
|
|
/*
|
|
|
|
* Compatibility version number
|
|
|
|
*
|
|
|
|
* These MUST be at byte offset 6 and 7 of the executable
|
|
|
|
* DO NOT MOVE !!!
|
|
|
|
*/
|
2009-03-22 00:37:49 +00:00
|
|
|
. = _start + 0x6
|
2004-04-04 13:46:03 +00:00
|
|
|
.byte GRUB_BOOT_VERSION_MAJOR, GRUB_BOOT_VERSION_MINOR
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* This is a special data area 8 bytes from the beginning.
|
|
|
|
*/
|
|
|
|
|
2009-03-22 00:37:49 +00:00
|
|
|
. = _start + 0x8
|
2002-12-27 08:53:07 +00:00
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
VARIABLE(grub_total_module_size)
|
2002-12-27 08:53:07 +00:00
|
|
|
.long 0
|
2004-04-04 13:46:03 +00:00
|
|
|
VARIABLE(grub_kernel_image_size)
|
2002-12-27 08:53:07 +00:00
|
|
|
.long 0
|
2004-04-04 13:46:03 +00:00
|
|
|
VARIABLE(grub_compressed_size)
|
2003-01-31 03:26:56 +00:00
|
|
|
.long 0
|
2004-04-04 13:46:03 +00:00
|
|
|
VARIABLE(grub_install_dos_part)
|
2003-01-06 00:01:35 +00:00
|
|
|
.long 0xFFFFFFFF
|
2004-04-04 13:46:03 +00:00
|
|
|
VARIABLE(grub_install_bsd_part)
|
2003-01-06 00:01:35 +00:00
|
|
|
.long 0xFFFFFFFF
|
2004-04-04 13:46:03 +00:00
|
|
|
VARIABLE(grub_prefix)
|
2007-06-21 21:01:11 +00:00
|
|
|
/* to be filled by grub-mkimage */
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
|
|
/*
|
2003-01-06 00:01:35 +00:00
|
|
|
* Leave some breathing room for the prefix.
|
2002-12-27 08:53:07 +00:00
|
|
|
*/
|
|
|
|
|
2009-03-22 00:37:49 +00:00
|
|
|
. = _start + GRUB_KERNEL_MACHINE_DATA_END
|
2002-12-27 08:53:07 +00:00
|
|
|
|
2009-06-04 21:01:11 +00:00
|
|
|
#ifdef APPLE_CC
|
|
|
|
bss_start:
|
|
|
|
.long 0
|
|
|
|
bss_end:
|
|
|
|
.long 0
|
|
|
|
#endif
|
|
|
|
|
2005-09-28 23:04:26 +00:00
|
|
|
/*
|
|
|
|
* Support for booting GRUB from a Multiboot boot loader (e.g. GRUB itself).
|
|
|
|
* This uses the a.out kludge to load raw binary to the area starting at 1MB,
|
|
|
|
* and relocates itself after loaded.
|
|
|
|
*/
|
2008-08-30 17:51:24 +00:00
|
|
|
.p2align 2 /* force 4-byte alignment */
|
2005-09-28 23:04:26 +00:00
|
|
|
multiboot_header:
|
|
|
|
/* magic */
|
|
|
|
.long 0x1BADB002
|
|
|
|
/* flags */
|
|
|
|
.long (1 << 16)
|
|
|
|
/* checksum */
|
|
|
|
.long -0x1BADB002 - (1 << 16)
|
|
|
|
/* header addr */
|
|
|
|
.long multiboot_header - _start + 0x100000 + 0x200
|
|
|
|
/* load addr */
|
|
|
|
.long 0x100000
|
|
|
|
/* load end addr */
|
|
|
|
.long 0
|
|
|
|
/* bss end addr */
|
|
|
|
.long 0
|
|
|
|
/* entry addr */
|
|
|
|
.long multiboot_entry - _start + 0x100000 + 0x200
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2005-09-28 23:04:26 +00:00
|
|
|
multiboot_entry:
|
|
|
|
.code32
|
|
|
|
/* obtain the boot device */
|
|
|
|
movl 12(%ebx), %edx
|
|
|
|
|
2009-12-13 17:32:06 +00:00
|
|
|
movl $GRUB_MEMORY_MACHINE_PROT_STACK, %ebp
|
|
|
|
movl %ebp, %esp
|
|
|
|
|
2005-09-28 23:04:26 +00:00
|
|
|
/* relocate the code */
|
|
|
|
movl $(GRUB_KERNEL_MACHINE_RAW_SIZE + 0x200), %ecx
|
|
|
|
addl EXT_C(grub_compressed_size) - _start + 0x100000 + 0x200, %ecx
|
|
|
|
movl $0x100000, %esi
|
|
|
|
movl $GRUB_BOOT_MACHINE_KERNEL_ADDR, %edi
|
|
|
|
cld
|
|
|
|
rep
|
|
|
|
movsb
|
|
|
|
/* jump to the real address */
|
|
|
|
movl $multiboot_trampoline, %eax
|
|
|
|
jmp *%eax
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2005-09-28 23:04:26 +00:00
|
|
|
multiboot_trampoline:
|
|
|
|
/* fill the boot information */
|
|
|
|
movl %edx, %eax
|
|
|
|
shrl $8, %eax
|
|
|
|
xorl %ebx, %ebx
|
2005-10-15 17:28:36 +00:00
|
|
|
cmpb $0xFF, %ah
|
2005-09-28 23:04:26 +00:00
|
|
|
je 1f
|
|
|
|
movb %ah, %bl
|
|
|
|
movl %ebx, EXT_C(grub_install_dos_part)
|
|
|
|
1:
|
2005-10-15 17:28:36 +00:00
|
|
|
cmpb $0xFF, %al
|
2005-09-28 23:04:26 +00:00
|
|
|
je 2f
|
|
|
|
movb %al, %bl
|
|
|
|
movl %ebx, EXT_C(grub_install_bsd_part)
|
|
|
|
2:
|
|
|
|
shrl $24, %edx
|
2008-02-03 18:56:08 +00:00
|
|
|
movb $0xFF, %dh
|
2005-09-28 23:04:26 +00:00
|
|
|
/* enter the usual booting */
|
|
|
|
call prot_to_real
|
|
|
|
.code16
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2002-12-27 08:53:07 +00:00
|
|
|
/* the real mode code continues... */
|
2010-03-26 23:04:14 +00:00
|
|
|
LOCAL (codestart):
|
2002-12-27 08:53:07 +00:00
|
|
|
cli /* we're not safe here! */
|
|
|
|
|
|
|
|
/* set up %ds, %ss, and %es */
|
|
|
|
xorw %ax, %ax
|
|
|
|
movw %ax, %ds
|
|
|
|
movw %ax, %ss
|
|
|
|
movw %ax, %es
|
|
|
|
|
|
|
|
/* set up the real mode/BIOS stack */
|
2004-04-04 13:46:03 +00:00
|
|
|
movl $GRUB_MEMORY_MACHINE_REAL_STACK, %ebp
|
2002-12-27 08:53:07 +00:00
|
|
|
movl %ebp, %esp
|
|
|
|
|
|
|
|
sti /* we're safe again */
|
|
|
|
|
2009-06-15 23:25:38 +00:00
|
|
|
/* save the boot drive */
|
2004-04-04 13:46:03 +00:00
|
|
|
ADDR32 movb %dl, EXT_C(grub_boot_drive)
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
|
|
/* reset disk system (%ah = 0) */
|
|
|
|
int $0x13
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2002-12-27 08:53:07 +00:00
|
|
|
/* transition to protected mode */
|
|
|
|
DATA32 call real_to_prot
|
|
|
|
|
|
|
|
/* The ".code32" directive takes GAS out of 16-bit mode. */
|
|
|
|
.code32
|
|
|
|
|
2003-01-31 03:26:56 +00:00
|
|
|
incl %eax
|
2004-04-04 13:46:03 +00:00
|
|
|
call EXT_C(grub_gate_a20)
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2009-07-19 20:23:33 +00:00
|
|
|
#ifdef ENABLE_LZMA
|
2008-07-13 01:55:15 +00:00
|
|
|
movl $GRUB_MEMORY_MACHINE_DECOMPRESSION_ADDR, %edi
|
2009-03-22 00:31:30 +00:00
|
|
|
movl $(_start + GRUB_KERNEL_MACHINE_RAW_SIZE), %esi
|
2008-07-13 01:55:15 +00:00
|
|
|
pushl %edi
|
|
|
|
pushl %esi
|
|
|
|
movl EXT_C(grub_kernel_image_size), %ecx
|
|
|
|
addl EXT_C(grub_total_module_size), %ecx
|
|
|
|
subl $GRUB_KERNEL_MACHINE_RAW_SIZE, %ecx
|
|
|
|
pushl %ecx
|
|
|
|
leal (%edi, %ecx), %ebx
|
|
|
|
call _LzmaDecodeA
|
2008-08-02 12:17:44 +00:00
|
|
|
/* _LzmaDecodeA clears DF, so no need to run cld */
|
2008-07-13 01:55:15 +00:00
|
|
|
popl %ecx
|
|
|
|
popl %edi
|
|
|
|
popl %esi
|
|
|
|
#endif
|
|
|
|
|
2008-08-02 12:17:44 +00:00
|
|
|
/* copy back the decompressed part (except the modules) */
|
|
|
|
subl EXT_C(grub_total_module_size), %ecx
|
2003-01-31 03:26:56 +00:00
|
|
|
rep
|
|
|
|
movsb
|
|
|
|
|
2008-08-02 12:17:44 +00:00
|
|
|
#if 0
|
2002-12-27 08:53:07 +00:00
|
|
|
/* copy modules before cleaning out the bss */
|
2004-04-04 13:46:03 +00:00
|
|
|
movl EXT_C(grub_total_module_size), %ecx
|
|
|
|
movl EXT_C(grub_kernel_image_size), %esi
|
2002-12-27 08:53:07 +00:00
|
|
|
addl %ecx, %esi
|
2009-03-22 00:31:30 +00:00
|
|
|
addl $_start, %esi
|
2002-12-27 08:53:07 +00:00
|
|
|
decl %esi
|
|
|
|
movl $END_SYMBOL, %edi
|
|
|
|
addl %ecx, %edi
|
|
|
|
decl %edi
|
|
|
|
std
|
|
|
|
rep
|
|
|
|
movsb
|
2008-08-02 12:17:44 +00:00
|
|
|
#endif
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2009-06-04 20:01:19 +00:00
|
|
|
#ifdef APPLE_CC
|
|
|
|
/* clean out the bss */
|
|
|
|
bss_start_abs = ABS (bss_start)
|
|
|
|
bss_end_abs = ABS (bss_end)
|
|
|
|
|
|
|
|
movl bss_start_abs, %edi
|
|
|
|
|
|
|
|
/* compute the bss length */
|
|
|
|
movl bss_end_abs, %ecx
|
|
|
|
subl %edi, %ecx
|
|
|
|
#else
|
2002-12-27 08:53:07 +00:00
|
|
|
/* clean out the bss */
|
|
|
|
movl $BSS_START_SYMBOL, %edi
|
|
|
|
|
|
|
|
/* compute the bss length */
|
|
|
|
movl $END_SYMBOL, %ecx
|
|
|
|
subl %edi, %ecx
|
2009-06-04 20:01:19 +00:00
|
|
|
#endif
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2002-12-27 08:53:07 +00:00
|
|
|
/* clean out */
|
2003-01-31 03:26:56 +00:00
|
|
|
xorl %eax, %eax
|
2002-12-27 08:53:07 +00:00
|
|
|
cld
|
|
|
|
rep
|
|
|
|
stosb
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2002-12-27 08:53:07 +00:00
|
|
|
/*
|
|
|
|
* Call the start of main body of C code.
|
|
|
|
*/
|
2004-04-04 13:46:03 +00:00
|
|
|
call EXT_C(grub_main)
|
2002-12-27 08:53:07 +00:00
|
|
|
|
2003-01-31 03:26:56 +00:00
|
|
|
/*
|
|
|
|
* This is the area for all of the special variables.
|
|
|
|
*/
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
VARIABLE(grub_boot_drive)
|
2009-05-22 19:52:43 +00:00
|
|
|
.byte 0
|
2003-01-31 03:26:56 +00:00
|
|
|
|
|
|
|
.p2align 2 /* force 4-byte alignment */
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2009-06-22 10:42:37 +00:00
|
|
|
#include "../realmode.S"
|
2003-01-31 03:26:56 +00:00
|
|
|
|
|
|
|
/*
|
2004-04-04 13:46:03 +00:00
|
|
|
* grub_gate_a20(int on)
|
2003-01-31 03:26:56 +00:00
|
|
|
*
|
|
|
|
* Gate address-line 20 for high memory.
|
|
|
|
*
|
|
|
|
* This routine is probably overconservative in what it does, but so what?
|
|
|
|
*
|
|
|
|
* It also eats any keystrokes in the keyboard buffer. :-(
|
|
|
|
*/
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
FUNCTION(grub_gate_a20)
|
2005-07-16 09:32:52 +00:00
|
|
|
movl %eax, %edx
|
|
|
|
|
2009-06-10 21:04:23 +00:00
|
|
|
gate_a20_test_current_state:
|
2005-07-16 09:32:52 +00:00
|
|
|
/* first of all, test if already in a good state */
|
|
|
|
call gate_a20_check_state
|
|
|
|
cmpb %al, %dl
|
|
|
|
jnz gate_a20_try_bios
|
|
|
|
ret
|
|
|
|
|
|
|
|
gate_a20_try_bios:
|
|
|
|
/* second, try a BIOS call */
|
|
|
|
pushl %ebp
|
2005-07-16 22:06:33 +00:00
|
|
|
call prot_to_real
|
2005-07-16 09:32:52 +00:00
|
|
|
|
|
|
|
.code16
|
|
|
|
movw $0x2400, %ax
|
|
|
|
testb %dl, %dl
|
|
|
|
jz 1f
|
|
|
|
incw %ax
|
|
|
|
1: int $0x15
|
2003-01-31 03:26:56 +00:00
|
|
|
|
2005-07-16 22:06:33 +00:00
|
|
|
DATA32 call real_to_prot
|
2005-07-16 09:32:52 +00:00
|
|
|
.code32
|
|
|
|
|
|
|
|
popl %ebp
|
|
|
|
call gate_a20_check_state
|
|
|
|
cmpb %al, %dl
|
2008-07-21 10:40:01 +00:00
|
|
|
jnz gate_a20_try_system_control_port_a
|
2005-07-16 09:32:52 +00:00
|
|
|
ret
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2008-07-21 10:40:01 +00:00
|
|
|
gate_a20_try_system_control_port_a:
|
|
|
|
/*
|
|
|
|
* In macbook, the keyboard test would hang the machine, so we move
|
|
|
|
* this forward.
|
|
|
|
*/
|
|
|
|
/* fourth, try the system control port A */
|
|
|
|
inb $0x92
|
|
|
|
andb $(~0x03), %al
|
|
|
|
testb %dl, %dl
|
|
|
|
jz 6f
|
|
|
|
orb $0x02, %al
|
|
|
|
6: outb $0x92
|
|
|
|
|
|
|
|
/* When turning off Gate A20, do not check the state strictly,
|
|
|
|
because a failure is not fatal usually, and Gate A20 is always
|
|
|
|
on some modern machines. */
|
|
|
|
testb %dl, %dl
|
|
|
|
jz 7f
|
|
|
|
call gate_a20_check_state
|
|
|
|
cmpb %al, %dl
|
|
|
|
jnz gate_a20_try_keyboard_controller
|
|
|
|
7: ret
|
|
|
|
|
2005-07-16 09:32:52 +00:00
|
|
|
gate_a20_flush_keyboard_buffer:
|
|
|
|
inb $0x64
|
|
|
|
andb $0x02, %al
|
|
|
|
jnz gate_a20_flush_keyboard_buffer
|
2009-06-10 21:04:23 +00:00
|
|
|
2:
|
2005-07-16 09:32:52 +00:00
|
|
|
inb $0x64
|
|
|
|
andb $0x01, %al
|
|
|
|
jz 3f
|
|
|
|
inb $0x60
|
|
|
|
jmp 2b
|
|
|
|
3:
|
|
|
|
ret
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
|
|
gate_a20_try_keyboard_controller:
|
2005-07-16 09:32:52 +00:00
|
|
|
/* third, try the keyboard controller */
|
|
|
|
call gate_a20_flush_keyboard_buffer
|
2003-01-31 03:26:56 +00:00
|
|
|
|
|
|
|
movb $0xd1, %al
|
|
|
|
outb $0x64
|
2009-06-10 21:04:23 +00:00
|
|
|
4:
|
2003-01-31 03:26:56 +00:00
|
|
|
inb $0x64
|
|
|
|
andb $0x02, %al
|
2005-07-16 09:32:52 +00:00
|
|
|
jnz 4b
|
2003-01-31 03:26:56 +00:00
|
|
|
|
|
|
|
movb $0xdd, %al
|
2005-07-16 09:32:52 +00:00
|
|
|
testb %dl, %dl
|
|
|
|
jz 5f
|
2003-01-31 03:26:56 +00:00
|
|
|
orb $0x02, %al
|
2005-07-16 09:32:52 +00:00
|
|
|
5: outb $0x60
|
|
|
|
call gate_a20_flush_keyboard_buffer
|
2003-01-31 03:26:56 +00:00
|
|
|
|
|
|
|
/* output a dummy command (USB keyboard hack) */
|
|
|
|
movb $0xff, %al
|
|
|
|
outb $0x64
|
2005-07-16 09:32:52 +00:00
|
|
|
call gate_a20_flush_keyboard_buffer
|
2005-07-16 22:06:33 +00:00
|
|
|
|
2005-07-16 09:32:52 +00:00
|
|
|
call gate_a20_check_state
|
|
|
|
cmpb %al, %dl
|
|
|
|
/* everything failed, so restart from the beginning */
|
|
|
|
jnz gate_a20_try_bios
|
2008-07-21 10:40:01 +00:00
|
|
|
ret
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2005-07-16 09:32:52 +00:00
|
|
|
gate_a20_check_state:
|
|
|
|
/* iterate the checking for a while */
|
|
|
|
movl $100, %ecx
|
2009-06-10 21:04:23 +00:00
|
|
|
1:
|
2005-07-16 09:32:52 +00:00
|
|
|
call 3f
|
|
|
|
cmpb %al, %dl
|
|
|
|
jz 2f
|
|
|
|
loop 1b
|
|
|
|
2:
|
|
|
|
ret
|
2009-06-10 21:04:23 +00:00
|
|
|
3:
|
2005-07-16 09:32:52 +00:00
|
|
|
pushl %ebx
|
|
|
|
pushl %ecx
|
|
|
|
xorl %eax, %eax
|
2005-07-16 22:06:33 +00:00
|
|
|
/* compare the byte at 0x8000 with that at 0x108000 */
|
2005-07-16 09:32:52 +00:00
|
|
|
movl $GRUB_BOOT_MACHINE_KERNEL_ADDR, %ebx
|
|
|
|
pushl %ebx
|
|
|
|
/* save the original byte in CL */
|
|
|
|
movb (%ebx), %cl
|
2005-07-16 22:06:33 +00:00
|
|
|
/* store the value at 0x108000 in AL */
|
2005-07-16 09:32:52 +00:00
|
|
|
addl $0x100000, %ebx
|
|
|
|
movb (%ebx), %al
|
2005-07-16 22:06:33 +00:00
|
|
|
/* try to set one less value at 0x8000 */
|
2005-07-16 09:32:52 +00:00
|
|
|
popl %ebx
|
|
|
|
movb %al, %ch
|
|
|
|
decb %ch
|
|
|
|
movb %ch, (%ebx)
|
|
|
|
/* serialize */
|
2005-07-16 22:06:33 +00:00
|
|
|
outb %al, $0x80
|
|
|
|
outb %al, $0x80
|
|
|
|
/* obtain the value at 0x108000 in CH */
|
|
|
|
pushl %ebx
|
|
|
|
addl $0x100000, %ebx
|
2005-07-16 09:32:52 +00:00
|
|
|
movb (%ebx), %ch
|
|
|
|
/* this result is 1 if A20 is on or 0 if it is off */
|
|
|
|
subb %ch, %al
|
2005-07-16 22:06:33 +00:00
|
|
|
xorb $1, %al
|
2005-07-16 09:32:52 +00:00
|
|
|
/* restore the original */
|
2005-07-16 22:06:33 +00:00
|
|
|
popl %ebx
|
2005-07-16 09:32:52 +00:00
|
|
|
movb %cl, (%ebx)
|
|
|
|
popl %ecx
|
|
|
|
popl %ebx
|
|
|
|
ret
|
2005-07-16 22:06:33 +00:00
|
|
|
|
2009-07-19 20:23:33 +00:00
|
|
|
#ifdef ENABLE_LZMA
|
2008-07-13 01:55:15 +00:00
|
|
|
#include "lzma_decode.S"
|
|
|
|
#endif
|
2003-01-31 03:26:56 +00:00
|
|
|
|
2008-03-28 17:16:46 +00:00
|
|
|
/*
|
|
|
|
* The code beyond this point is compressed. Assert that the uncompressed
|
|
|
|
* code fits GRUB_KERNEL_MACHINE_RAW_SIZE.
|
|
|
|
*/
|
2009-03-22 00:37:49 +00:00
|
|
|
. = _start + GRUB_KERNEL_MACHINE_RAW_SIZE
|
2003-01-31 03:26:56 +00:00
|
|
|
|
2002-12-27 08:53:07 +00:00
|
|
|
/*
|
|
|
|
* This next part is sort of evil. It takes advantage of the
|
|
|
|
* byte ordering on the x86 to work in either 16-bit or 32-bit
|
|
|
|
* mode, so think about it before changing it.
|
|
|
|
*/
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
FUNCTION(grub_hard_stop)
|
2002-12-27 08:53:07 +00:00
|
|
|
hlt
|
2004-04-04 13:46:03 +00:00
|
|
|
jmp EXT_C(grub_hard_stop)
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
2004-04-04 13:46:03 +00:00
|
|
|
* grub_stop_floppy()
|
2002-12-27 08:53:07 +00:00
|
|
|
*
|
|
|
|
* Stop the floppy drive from spinning, so that other software is
|
|
|
|
* jumped to with a known state.
|
|
|
|
*/
|
2004-04-04 13:46:03 +00:00
|
|
|
FUNCTION(grub_stop_floppy)
|
2002-12-27 08:53:07 +00:00
|
|
|
movw $0x3F2, %dx
|
|
|
|
xorb %al, %al
|
|
|
|
outb %al, %dx
|
|
|
|
ret
|
|
|
|
|
2006-04-23 13:37:36 +00:00
|
|
|
/*
|
|
|
|
* grub_exit()
|
|
|
|
*
|
|
|
|
* Exit the system.
|
|
|
|
*/
|
|
|
|
FUNCTION(grub_exit)
|
|
|
|
call prot_to_real
|
|
|
|
.code16
|
|
|
|
/* Tell the BIOS a boot failure. If this does not work, reboot. */
|
|
|
|
int $0x18
|
|
|
|
jmp cold_reboot
|
2006-05-06 22:33:51 +00:00
|
|
|
.code32
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2002-12-27 08:53:07 +00:00
|
|
|
/*
|
2004-04-04 13:46:03 +00:00
|
|
|
* grub_halt(int no_apm)
|
2002-12-27 08:53:07 +00:00
|
|
|
*
|
|
|
|
* Halt the system, using APM if possible. If NO_APM is true, don't use
|
|
|
|
* APM even if it is available.
|
|
|
|
*/
|
2004-04-04 13:46:03 +00:00
|
|
|
FUNCTION(grub_halt)
|
2002-12-27 08:53:07 +00:00
|
|
|
/* see if zero */
|
|
|
|
testl %eax, %eax
|
2004-04-04 13:46:03 +00:00
|
|
|
jnz EXT_C(grub_stop)
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
|
|
call prot_to_real
|
|
|
|
.code16
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2002-12-27 08:53:07 +00:00
|
|
|
/* detect APM */
|
|
|
|
movw $0x5300, %ax
|
|
|
|
xorw %bx, %bx
|
|
|
|
int $0x15
|
2004-04-04 13:46:03 +00:00
|
|
|
jc EXT_C(grub_hard_stop)
|
2002-12-27 08:53:07 +00:00
|
|
|
/* don't check %bx for buggy BIOSes... */
|
|
|
|
|
|
|
|
/* disconnect APM first */
|
|
|
|
movw $0x5304, %ax
|
|
|
|
xorw %bx, %bx
|
|
|
|
int $0x15
|
|
|
|
|
|
|
|
/* connect APM */
|
|
|
|
movw $0x5301, %ax
|
|
|
|
xorw %bx, %bx
|
|
|
|
int $0x15
|
2004-04-04 13:46:03 +00:00
|
|
|
jc EXT_C(grub_hard_stop)
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
|
|
/* set APM protocol level - 1.1 or bust. (this covers APM 1.2 also) */
|
|
|
|
movw $0x530E, %ax
|
|
|
|
xorw %bx, %bx
|
|
|
|
movw $0x0101, %cx
|
|
|
|
int $0x15
|
2004-04-04 13:46:03 +00:00
|
|
|
jc EXT_C(grub_hard_stop)
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2002-12-27 08:53:07 +00:00
|
|
|
/* set the power state to off */
|
|
|
|
movw $0x5307, %ax
|
|
|
|
movw $1, %bx
|
|
|
|
movw $3, %cx
|
|
|
|
int $0x15
|
|
|
|
|
|
|
|
/* shouldn't reach here */
|
2004-04-04 13:46:03 +00:00
|
|
|
jmp EXT_C(grub_hard_stop)
|
2002-12-27 08:53:07 +00:00
|
|
|
.code32
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
|
|
|
2002-12-27 08:53:07 +00:00
|
|
|
/*
|
2004-04-04 13:46:03 +00:00
|
|
|
* void grub_chainloader_real_boot (int drive, void *part_addr)
|
2002-12-27 08:53:07 +00:00
|
|
|
*
|
|
|
|
* This starts another boot loader.
|
|
|
|
*/
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
FUNCTION(grub_chainloader_real_boot)
|
2003-01-06 00:01:35 +00:00
|
|
|
pushl %edx
|
|
|
|
pushl %eax
|
2002-12-27 08:53:07 +00:00
|
|
|
|
2008-02-03 18:04:36 +00:00
|
|
|
/* Turn off Gate A20 */
|
|
|
|
xorl %eax, %eax
|
|
|
|
call EXT_C(grub_gate_a20)
|
|
|
|
|
2002-12-27 08:53:07 +00:00
|
|
|
/* set up to pass boot drive */
|
2003-01-06 00:01:35 +00:00
|
|
|
popl %edx
|
|
|
|
|
|
|
|
/* ESI must point to a partition table entry */
|
|
|
|
popl %esi
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
|
|
call prot_to_real
|
|
|
|
.code16
|
2004-04-04 13:46:03 +00:00
|
|
|
ljmp $0, $GRUB_MEMORY_MACHINE_BOOT_LOADER_ADDR
|
2002-12-27 08:53:07 +00:00
|
|
|
.code32
|
|
|
|
|
|
|
|
/*
|
2004-04-04 13:46:03 +00:00
|
|
|
* int grub_biosdisk_rw_int13_extensions (int ah, int drive, void *dap)
|
2002-12-27 08:53:07 +00:00
|
|
|
*
|
|
|
|
* Call IBM/MS INT13 Extensions (int 13 %ah=AH) for DRIVE. DAP
|
|
|
|
* is passed for disk address packet. If an error occurs, return
|
|
|
|
* non-zero, otherwise zero.
|
|
|
|
*/
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
FUNCTION(grub_biosdisk_rw_int13_extensions)
|
2002-12-27 08:53:07 +00:00
|
|
|
pushl %ebp
|
|
|
|
pushl %esi
|
|
|
|
|
|
|
|
/* compute the address of disk_address_packet */
|
2002-12-28 07:16:30 +00:00
|
|
|
movw %cx, %si
|
|
|
|
xorw %cx, %cx
|
|
|
|
shrl $4, %ecx /* save the segment to cx */
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
|
|
/* ah */
|
2002-12-28 07:16:30 +00:00
|
|
|
movb %al, %dh
|
2002-12-27 08:53:07 +00:00
|
|
|
/* enter real mode */
|
|
|
|
call prot_to_real
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2002-12-27 08:53:07 +00:00
|
|
|
.code16
|
|
|
|
movb %dh, %ah
|
|
|
|
movw %cx, %ds
|
|
|
|
int $0x13 /* do the operation */
|
|
|
|
movb %ah, %dl /* save return value */
|
|
|
|
/* back to protected mode */
|
|
|
|
DATA32 call real_to_prot
|
|
|
|
.code32
|
|
|
|
|
|
|
|
movb %dl, %al /* return value in %eax */
|
|
|
|
|
|
|
|
popl %esi
|
|
|
|
popl %ebp
|
|
|
|
|
|
|
|
ret
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2002-12-27 08:53:07 +00:00
|
|
|
/*
|
2004-04-04 13:46:03 +00:00
|
|
|
* int grub_biosdisk_rw_standard (int ah, int drive, int coff, int hoff,
|
2002-12-27 08:53:07 +00:00
|
|
|
* int soff, int nsec, int segment)
|
|
|
|
*
|
|
|
|
* Call standard and old INT13 (int 13 %ah=AH) for DRIVE. Read/write
|
|
|
|
* NSEC sectors from COFF/HOFF/SOFF into SEGMENT. If an error occurs,
|
|
|
|
* return non-zero, otherwise zero.
|
|
|
|
*/
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
FUNCTION(grub_biosdisk_rw_standard)
|
2002-12-27 08:53:07 +00:00
|
|
|
pushl %ebp
|
|
|
|
movl %esp, %ebp
|
|
|
|
|
|
|
|
pushl %ebx
|
|
|
|
pushl %edi
|
|
|
|
pushl %esi
|
|
|
|
|
|
|
|
/* set up CHS information */
|
2002-12-28 07:16:30 +00:00
|
|
|
|
|
|
|
/* set %ch to low eight bits of cylinder */
|
|
|
|
xchgb %cl, %ch
|
|
|
|
/* set bits 6-7 of %cl to high two bits of cylinder */
|
|
|
|
shlb $6, %cl
|
|
|
|
/* set bits 0-5 of %cl to sector */
|
|
|
|
addb 0xc(%ebp), %cl
|
|
|
|
/* set %dh to head */
|
|
|
|
movb 0x8(%ebp), %dh
|
|
|
|
/* set %ah to AH */
|
|
|
|
movb %al, %ah
|
|
|
|
/* set %al to NSEC */
|
|
|
|
movb 0x10(%ebp), %al
|
|
|
|
/* save %ax in %di */
|
2002-12-27 08:53:07 +00:00
|
|
|
movw %ax, %di
|
2002-12-28 07:16:30 +00:00
|
|
|
/* save SEGMENT in %bx */
|
|
|
|
movw 0x14(%ebp), %bx
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2002-12-27 08:53:07 +00:00
|
|
|
/* enter real mode */
|
|
|
|
call prot_to_real
|
|
|
|
|
|
|
|
.code16
|
|
|
|
movw %bx, %es
|
|
|
|
xorw %bx, %bx
|
|
|
|
movw $3, %si /* attempt at least three times */
|
|
|
|
|
2009-06-10 21:04:23 +00:00
|
|
|
1:
|
2002-12-27 08:53:07 +00:00
|
|
|
movw %di, %ax
|
|
|
|
int $0x13 /* do the operation */
|
|
|
|
jnc 2f /* check if successful */
|
|
|
|
|
|
|
|
movb %ah, %bl /* save return value */
|
|
|
|
/* if fail, reset the disk system */
|
|
|
|
xorw %ax, %ax
|
|
|
|
int $0x13
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2002-12-27 08:53:07 +00:00
|
|
|
decw %si
|
|
|
|
cmpw $0, %si
|
|
|
|
je 2f
|
|
|
|
xorb %bl, %bl
|
|
|
|
jmp 1b /* retry */
|
2009-06-10 21:04:23 +00:00
|
|
|
2:
|
2002-12-27 08:53:07 +00:00
|
|
|
/* back to protected mode */
|
|
|
|
DATA32 call real_to_prot
|
|
|
|
.code32
|
|
|
|
|
|
|
|
movb %bl, %al /* return value in %eax */
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2002-12-27 08:53:07 +00:00
|
|
|
popl %esi
|
|
|
|
popl %edi
|
|
|
|
popl %ebx
|
|
|
|
popl %ebp
|
|
|
|
|
2002-12-28 07:16:30 +00:00
|
|
|
ret $(4 * 4)
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
2004-04-04 13:46:03 +00:00
|
|
|
* int grub_biosdisk_check_int13_extensions (int drive)
|
2002-12-27 08:53:07 +00:00
|
|
|
*
|
|
|
|
* Check if LBA is supported for DRIVE. If it is supported, then return
|
|
|
|
* the major version of extensions, otherwise zero.
|
|
|
|
*/
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
FUNCTION(grub_biosdisk_check_int13_extensions)
|
2002-12-27 08:53:07 +00:00
|
|
|
pushl %ebp
|
|
|
|
pushl %ebx
|
|
|
|
|
|
|
|
/* drive */
|
2002-12-28 07:16:30 +00:00
|
|
|
movb %al, %dl
|
2002-12-27 08:53:07 +00:00
|
|
|
/* enter real mode */
|
|
|
|
call prot_to_real
|
|
|
|
|
|
|
|
.code16
|
|
|
|
movb $0x41, %ah
|
|
|
|
movw $0x55aa, %bx
|
|
|
|
int $0x13 /* do the operation */
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2002-12-27 08:53:07 +00:00
|
|
|
/* check the result */
|
|
|
|
jc 1f
|
|
|
|
cmpw $0xaa55, %bx
|
|
|
|
jne 1f
|
|
|
|
|
|
|
|
movb %ah, %bl /* save the major version into %bl */
|
|
|
|
|
|
|
|
/* check if AH=0x42 is supported */
|
|
|
|
andw $1, %cx
|
|
|
|
jnz 2f
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2002-12-27 08:53:07 +00:00
|
|
|
1:
|
|
|
|
xorb %bl, %bl
|
|
|
|
2:
|
|
|
|
/* back to protected mode */
|
|
|
|
DATA32 call real_to_prot
|
|
|
|
.code32
|
|
|
|
|
|
|
|
movb %bl, %al /* return value in %eax */
|
|
|
|
|
|
|
|
popl %ebx
|
|
|
|
popl %ebp
|
|
|
|
|
|
|
|
ret
|
|
|
|
|
|
|
|
|
2008-03-24 04:13:37 +00:00
|
|
|
/*
|
|
|
|
* int grub_biosdisk_get_cdinfo_int13_extensions (int drive, void *cdrp)
|
|
|
|
*
|
|
|
|
* Return the cdrom information of DRIVE in CDRP. If an error occurs,
|
|
|
|
* then return non-zero, otherwise zero.
|
|
|
|
*/
|
|
|
|
|
|
|
|
FUNCTION(grub_biosdisk_get_cdinfo_int13_extensions)
|
|
|
|
movw $0x4B01, %cx
|
|
|
|
jmp 1f
|
|
|
|
|
2002-12-27 08:53:07 +00:00
|
|
|
/*
|
2004-04-04 13:46:03 +00:00
|
|
|
* int grub_biosdisk_get_diskinfo_int13_extensions (int drive, void *drp)
|
2002-12-27 08:53:07 +00:00
|
|
|
*
|
|
|
|
* Return the geometry of DRIVE in a drive parameters, DRP. If an error
|
|
|
|
* occurs, then return non-zero, otherwise zero.
|
|
|
|
*/
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
FUNCTION(grub_biosdisk_get_diskinfo_int13_extensions)
|
2008-03-24 04:13:37 +00:00
|
|
|
movb $0x48, %ch
|
|
|
|
1:
|
2002-12-27 08:53:07 +00:00
|
|
|
pushl %ebp
|
|
|
|
pushl %ebx
|
|
|
|
pushl %esi
|
|
|
|
|
|
|
|
/* compute the address of drive parameters */
|
2002-12-28 07:16:30 +00:00
|
|
|
movw %dx, %si
|
2008-03-28 17:06:29 +00:00
|
|
|
andl $0xf, %esi
|
2002-12-28 07:16:30 +00:00
|
|
|
shrl $4, %edx
|
|
|
|
movw %dx, %bx /* save the segment into %bx */
|
2002-12-27 08:53:07 +00:00
|
|
|
/* drive */
|
2002-12-28 07:16:30 +00:00
|
|
|
movb %al, %dl
|
2002-12-27 08:53:07 +00:00
|
|
|
/* enter real mode */
|
|
|
|
call prot_to_real
|
|
|
|
|
|
|
|
.code16
|
2008-03-24 04:13:37 +00:00
|
|
|
movw %cx, %ax
|
2002-12-27 08:53:07 +00:00
|
|
|
movw %bx, %ds
|
|
|
|
int $0x13 /* do the operation */
|
2009-11-09 22:51:01 +00:00
|
|
|
jc noclean
|
|
|
|
/* Clean return value if carry isn't set to workaround
|
|
|
|
some buggy BIOSes. */
|
|
|
|
xor %ax, %ax
|
|
|
|
noclean:
|
2002-12-27 08:53:07 +00:00
|
|
|
movb %ah, %bl /* save return value in %bl */
|
|
|
|
/* back to protected mode */
|
|
|
|
DATA32 call real_to_prot
|
|
|
|
.code32
|
|
|
|
|
|
|
|
movb %bl, %al /* return value in %eax */
|
|
|
|
|
|
|
|
popl %esi
|
|
|
|
popl %ebx
|
|
|
|
popl %ebp
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2002-12-27 08:53:07 +00:00
|
|
|
ret
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
2004-04-04 13:46:03 +00:00
|
|
|
* int grub_biosdisk_get_diskinfo_standard (int drive,
|
2009-06-10 21:04:23 +00:00
|
|
|
* unsigned long *cylinders,
|
2002-12-27 08:53:07 +00:00
|
|
|
* unsigned long *heads,
|
|
|
|
* unsigned long *sectors)
|
|
|
|
*
|
|
|
|
* Return the geometry of DRIVE in CYLINDERS, HEADS and SECTORS. If an
|
|
|
|
* error occurs, then return non-zero, otherwise zero.
|
|
|
|
*/
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
FUNCTION(grub_biosdisk_get_diskinfo_standard)
|
2002-12-27 08:53:07 +00:00
|
|
|
pushl %ebp
|
|
|
|
pushl %ebx
|
|
|
|
pushl %edi
|
|
|
|
|
2002-12-28 07:16:30 +00:00
|
|
|
/* push CYLINDERS */
|
|
|
|
pushl %edx
|
|
|
|
/* push HEADS */
|
|
|
|
pushl %ecx
|
|
|
|
/* SECTORS is on the stack */
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2002-12-27 08:53:07 +00:00
|
|
|
/* drive */
|
2002-12-28 07:16:30 +00:00
|
|
|
movb %al, %dl
|
2002-12-27 08:53:07 +00:00
|
|
|
/* enter real mode */
|
|
|
|
call prot_to_real
|
|
|
|
|
|
|
|
.code16
|
|
|
|
movb $0x8, %ah
|
|
|
|
int $0x13 /* do the operation */
|
2009-11-27 12:38:01 +00:00
|
|
|
jc noclean2
|
|
|
|
/* Clean return value if carry isn't set to workaround
|
|
|
|
some buggy BIOSes. */
|
|
|
|
xor %ax, %ax
|
|
|
|
noclean2:
|
2002-12-27 08:53:07 +00:00
|
|
|
/* check if successful */
|
|
|
|
testb %ah, %ah
|
|
|
|
jnz 1f
|
|
|
|
/* bogus BIOSes may not return an error number */
|
|
|
|
testb $0x3f, %cl /* 0 sectors means no disk */
|
|
|
|
jnz 1f /* if non-zero, then succeed */
|
|
|
|
/* XXX 0x60 is one of the unused error numbers */
|
|
|
|
movb $0x60, %ah
|
|
|
|
1:
|
|
|
|
movb %ah, %bl /* save return value in %bl */
|
|
|
|
/* back to protected mode */
|
|
|
|
DATA32 call real_to_prot
|
|
|
|
.code32
|
|
|
|
|
2002-12-28 07:16:30 +00:00
|
|
|
/* pop HEADS */
|
|
|
|
popl %edi
|
2002-12-27 08:53:07 +00:00
|
|
|
movb %dh, %al
|
2002-12-28 07:16:30 +00:00
|
|
|
incl %eax /* the number of heads is counted from zero */
|
2002-12-27 08:53:07 +00:00
|
|
|
movl %eax, (%edi)
|
|
|
|
|
2002-12-28 07:16:30 +00:00
|
|
|
/* pop CYLINDERS */
|
|
|
|
popl %edi
|
2002-12-27 08:53:07 +00:00
|
|
|
movb %ch, %al
|
2002-12-28 07:16:30 +00:00
|
|
|
movb %cl, %ah
|
|
|
|
shrb $6, %ah /* the number of cylinders is counted from zero */
|
|
|
|
incl %eax
|
2002-12-27 08:53:07 +00:00
|
|
|
movl %eax, (%edi)
|
|
|
|
|
2002-12-28 07:16:30 +00:00
|
|
|
/* SECTORS */
|
|
|
|
movl 0x10(%esp), %edi
|
|
|
|
andb $0x3f, %cl
|
|
|
|
movzbl %cl, %eax
|
|
|
|
movl %eax, (%edi)
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2002-12-27 08:53:07 +00:00
|
|
|
xorl %eax, %eax
|
|
|
|
movb %bl, %al /* return value in %eax */
|
|
|
|
|
|
|
|
popl %edi
|
|
|
|
popl %ebx
|
|
|
|
popl %ebp
|
|
|
|
|
2002-12-28 07:16:30 +00:00
|
|
|
ret $4
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
2004-04-04 13:46:03 +00:00
|
|
|
* int grub_biosdisk_get_num_floppies (void)
|
2002-12-27 08:53:07 +00:00
|
|
|
*/
|
2004-04-04 13:46:03 +00:00
|
|
|
FUNCTION(grub_biosdisk_get_num_floppies)
|
2002-12-27 08:53:07 +00:00
|
|
|
pushl %ebp
|
|
|
|
|
|
|
|
xorl %edx, %edx
|
|
|
|
call prot_to_real
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2002-12-27 08:53:07 +00:00
|
|
|
.code16
|
|
|
|
/* reset the disk system first */
|
|
|
|
int $0x13
|
|
|
|
1:
|
|
|
|
stc
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2002-12-27 08:53:07 +00:00
|
|
|
/* call GET DISK TYPE */
|
|
|
|
movb $0x15, %ah
|
|
|
|
int $0x13
|
|
|
|
|
|
|
|
jc 2f
|
|
|
|
|
2009-06-10 21:04:23 +00:00
|
|
|
/* check if this drive exists */
|
2002-12-27 08:53:07 +00:00
|
|
|
testb $0x3, %ah
|
|
|
|
jz 2f
|
|
|
|
|
|
|
|
incb %dl
|
|
|
|
cmpb $2, %dl
|
|
|
|
jne 1b
|
|
|
|
2:
|
|
|
|
DATA32 call real_to_prot
|
|
|
|
.code32
|
|
|
|
|
|
|
|
movl %edx, %eax
|
|
|
|
popl %ebp
|
|
|
|
ret
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
|
|
|
2002-12-27 08:53:07 +00:00
|
|
|
/*
|
|
|
|
*
|
2004-04-04 13:46:03 +00:00
|
|
|
* grub_get_memsize(i) : return the memory size in KB. i == 0 for conventional
|
2002-12-27 08:53:07 +00:00
|
|
|
* memory, i == 1 for extended memory
|
|
|
|
* BIOS call "INT 12H" to get conventional memory size
|
|
|
|
* BIOS call "INT 15H, AH=88H" to get extended memory size
|
|
|
|
* Both have the return value in AX.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
FUNCTION(grub_get_memsize)
|
2002-12-27 08:53:07 +00:00
|
|
|
pushl %ebp
|
|
|
|
|
2002-12-28 07:16:30 +00:00
|
|
|
movl %eax, %edx
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
|
|
call prot_to_real /* enter real mode */
|
|
|
|
.code16
|
|
|
|
|
2002-12-28 07:16:30 +00:00
|
|
|
testl %edx, %edx
|
2002-12-27 08:53:07 +00:00
|
|
|
jnz xext
|
|
|
|
|
|
|
|
int $0x12
|
|
|
|
jmp xdone
|
|
|
|
|
|
|
|
xext:
|
|
|
|
movb $0x88, %ah
|
|
|
|
int $0x15
|
|
|
|
|
|
|
|
xdone:
|
2002-12-28 07:16:30 +00:00
|
|
|
movw %ax, %dx
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
|
|
DATA32 call real_to_prot
|
|
|
|
.code32
|
|
|
|
|
2002-12-28 07:16:30 +00:00
|
|
|
movw %dx, %ax
|
|
|
|
|
2002-12-27 08:53:07 +00:00
|
|
|
popl %ebp
|
|
|
|
ret
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
*
|
2004-04-04 13:46:03 +00:00
|
|
|
* grub_get_eisa_mmap() : return packed EISA memory map, lower 16 bits is
|
2002-12-27 08:53:07 +00:00
|
|
|
* memory between 1M and 16M in 1K parts, upper 16 bits is
|
|
|
|
* memory above 16M in 64K parts. If error, return zero.
|
|
|
|
* BIOS call "INT 15H, AH=E801H" to get EISA memory map,
|
|
|
|
* AX = memory between 1M and 16M in 1K parts.
|
|
|
|
* BX = memory above 16M in 64K parts.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
FUNCTION(grub_get_eisa_mmap)
|
2002-12-27 08:53:07 +00:00
|
|
|
pushl %ebp
|
|
|
|
pushl %ebx
|
|
|
|
|
|
|
|
call prot_to_real /* enter real mode */
|
|
|
|
.code16
|
|
|
|
|
|
|
|
movw $0xe801, %ax
|
|
|
|
int $0x15
|
|
|
|
|
|
|
|
shll $16, %ebx
|
|
|
|
movw %ax, %bx
|
|
|
|
|
|
|
|
DATA32 call real_to_prot
|
|
|
|
.code32
|
|
|
|
|
|
|
|
cmpb $0x86, %bh
|
|
|
|
je xnoteisa
|
|
|
|
|
|
|
|
movl %ebx, %eax
|
|
|
|
|
|
|
|
xnoteisa:
|
|
|
|
popl %ebx
|
|
|
|
popl %ebp
|
|
|
|
ret
|
|
|
|
|
|
|
|
/*
|
|
|
|
*
|
2004-04-04 13:46:03 +00:00
|
|
|
* grub_get_mmap_entry(addr, cont) : address and old continuation value (zero to
|
2002-12-27 08:53:07 +00:00
|
|
|
* start), for the Query System Address Map BIOS call.
|
|
|
|
*
|
|
|
|
* Sets the first 4-byte int value of "addr" to the size returned by
|
|
|
|
* the call. If the call fails, sets it to zero.
|
|
|
|
*
|
|
|
|
* Returns: new (non-zero) continuation value, 0 if done.
|
|
|
|
*/
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
FUNCTION(grub_get_mmap_entry)
|
2002-12-28 07:42:12 +00:00
|
|
|
pushl %ebp
|
|
|
|
pushl %ebx
|
|
|
|
pushl %edi
|
|
|
|
pushl %esi
|
2002-12-27 08:53:07 +00:00
|
|
|
|
2002-12-28 07:16:30 +00:00
|
|
|
/* push ADDR */
|
|
|
|
pushl %eax
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2002-12-27 08:53:07 +00:00
|
|
|
/* place address (+4) in ES:DI */
|
|
|
|
addl $4, %eax
|
|
|
|
movl %eax, %edi
|
|
|
|
andl $0xf, %edi
|
|
|
|
shrl $4, %eax
|
|
|
|
movl %eax, %esi
|
|
|
|
|
|
|
|
/* set continuation value */
|
2002-12-28 07:16:30 +00:00
|
|
|
movl %edx, %ebx
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
|
|
/* set default maximum buffer size */
|
|
|
|
movl $0x14, %ecx
|
|
|
|
|
|
|
|
/* set EDX to 'SMAP' */
|
|
|
|
movl $0x534d4150, %edx
|
|
|
|
|
|
|
|
call prot_to_real /* enter real mode */
|
|
|
|
.code16
|
|
|
|
|
|
|
|
movw %si, %es
|
|
|
|
movl $0xe820, %eax
|
|
|
|
int $0x15
|
|
|
|
|
|
|
|
DATA32 jc xnosmap
|
|
|
|
|
|
|
|
cmpl $0x534d4150, %eax
|
|
|
|
jne xnosmap
|
|
|
|
|
|
|
|
cmpl $0x14, %ecx
|
|
|
|
jl xnosmap
|
|
|
|
|
|
|
|
cmpl $0x400, %ecx
|
|
|
|
jg xnosmap
|
|
|
|
|
|
|
|
jmp xsmap
|
|
|
|
|
|
|
|
xnosmap:
|
|
|
|
xorl %ecx, %ecx
|
|
|
|
|
2009-06-04 21:45:32 +00:00
|
|
|
/* Apple's cc jumps few bytes before the correct
|
|
|
|
label in this context. Hence nops. */
|
|
|
|
#ifdef APPLE_CC
|
|
|
|
nop
|
|
|
|
nop
|
|
|
|
nop
|
|
|
|
nop
|
|
|
|
nop
|
|
|
|
nop
|
|
|
|
#endif
|
|
|
|
|
2002-12-27 08:53:07 +00:00
|
|
|
xsmap:
|
|
|
|
DATA32 call real_to_prot
|
|
|
|
.code32
|
|
|
|
|
2002-12-28 07:16:30 +00:00
|
|
|
/* write length of buffer (zero if error) into ADDR */
|
|
|
|
popl %eax
|
2002-12-27 08:53:07 +00:00
|
|
|
movl %ecx, (%eax)
|
|
|
|
|
|
|
|
/* set return value to continuation */
|
|
|
|
movl %ebx, %eax
|
|
|
|
|
2002-12-28 07:42:12 +00:00
|
|
|
popl %esi
|
|
|
|
popl %edi
|
|
|
|
popl %ebx
|
|
|
|
popl %ebp
|
2002-12-27 08:53:07 +00:00
|
|
|
ret
|
|
|
|
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2002-12-27 08:53:07 +00:00
|
|
|
/*
|
2010-03-17 07:37:48 +00:00
|
|
|
* void grub_console_putchar (const struct grub_unicode_glyph *c)
|
2002-12-27 08:53:07 +00:00
|
|
|
*
|
|
|
|
* Put the character C on the console. Because GRUB wants to write a
|
|
|
|
* character with an attribute, this implementation is a bit tricky.
|
|
|
|
* If C is a control character (CR, LF, BEL, BS), use INT 10, AH = 0Eh
|
|
|
|
* (TELETYPE OUTPUT). Otherwise, save the original position, put a space,
|
|
|
|
* save the current position, restore the original position, write the
|
|
|
|
* character and the attribute, and restore the current position.
|
|
|
|
*
|
|
|
|
* The reason why this is so complicated is that there is no easy way to
|
2007-12-30 08:52:06 +00:00
|
|
|
* get the height of the screen, and the TELETYPE OUTPUT BIOS call doesn't
|
2002-12-27 08:53:07 +00:00
|
|
|
* support setting a background attribute.
|
|
|
|
*/
|
2010-03-17 07:37:48 +00:00
|
|
|
FUNCTION(grub_console_putchar)
|
|
|
|
/* Retrieve the base character. */
|
2010-05-07 00:30:44 +00:00
|
|
|
movl 0(%edx), %edx
|
2002-12-27 08:53:07 +00:00
|
|
|
pusha
|
2004-04-04 13:46:03 +00:00
|
|
|
movb EXT_C(grub_console_cur_color), %bl
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2002-12-27 08:53:07 +00:00
|
|
|
call prot_to_real
|
|
|
|
.code16
|
|
|
|
movb %dl, %al
|
|
|
|
xorb %bh, %bh
|
|
|
|
|
|
|
|
/* use teletype output if control character */
|
|
|
|
cmpb $0x7, %al
|
|
|
|
je 1f
|
|
|
|
cmpb $0x8, %al
|
|
|
|
je 1f
|
|
|
|
cmpb $0xa, %al
|
|
|
|
je 1f
|
|
|
|
cmpb $0xd, %al
|
|
|
|
je 1f
|
|
|
|
|
|
|
|
/* save the character and the attribute on the stack */
|
|
|
|
pushw %ax
|
|
|
|
pushw %bx
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2002-12-27 08:53:07 +00:00
|
|
|
/* get the current position */
|
|
|
|
movb $0x3, %ah
|
|
|
|
int $0x10
|
|
|
|
|
|
|
|
/* check the column with the width */
|
|
|
|
cmpb $79, %dl
|
|
|
|
jl 2f
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
|
|
/* print CR and LF, if next write will exceed the width */
|
2002-12-27 08:53:07 +00:00
|
|
|
movw $0x0e0d, %ax
|
|
|
|
int $0x10
|
|
|
|
movb $0x0a, %al
|
|
|
|
int $0x10
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2002-12-27 08:53:07 +00:00
|
|
|
/* get the current position */
|
|
|
|
movb $0x3, %ah
|
|
|
|
int $0x10
|
|
|
|
|
2009-06-10 21:04:23 +00:00
|
|
|
2:
|
2002-12-27 08:53:07 +00:00
|
|
|
/* restore the character and the attribute */
|
|
|
|
popw %bx
|
|
|
|
popw %ax
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2002-12-27 08:53:07 +00:00
|
|
|
/* write the character with the attribute */
|
|
|
|
movb $0x9, %ah
|
|
|
|
movw $1, %cx
|
|
|
|
int $0x10
|
|
|
|
|
|
|
|
/* move the cursor forward */
|
|
|
|
incb %dl
|
|
|
|
movb $0x2, %ah
|
|
|
|
int $0x10
|
|
|
|
|
|
|
|
jmp 3f
|
2003-01-02 23:46:21 +00:00
|
|
|
|
|
|
|
1: movw $1, %bx
|
2002-12-27 08:53:07 +00:00
|
|
|
movb $0xe, %ah
|
|
|
|
int $0x10
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2002-12-27 08:53:07 +00:00
|
|
|
3: DATA32 call real_to_prot
|
|
|
|
.code32
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2002-12-27 08:53:07 +00:00
|
|
|
popa
|
|
|
|
ret
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2002-12-27 08:53:07 +00:00
|
|
|
|
2010-08-19 11:32:36 +00:00
|
|
|
LOCAL(bypass_table):
|
|
|
|
.word 0x0100 | '\e',0x0f00 | '\t', 0x0e00 | '\b', 0x1c00 | '\r'
|
|
|
|
.word 0x1c00 | '\n'
|
|
|
|
LOCAL(bypass_table_end):
|
|
|
|
|
2002-12-27 08:53:07 +00:00
|
|
|
/*
|
2004-04-04 13:46:03 +00:00
|
|
|
* int grub_console_getkey (void)
|
2010-08-23 10:07:49 +00:00
|
|
|
* if there is a character pending, return it; otherwise return -1
|
|
|
|
* BIOS call "INT 16H Function 01H" to check whether a character is pending
|
|
|
|
* Call with %ah = 0x1
|
|
|
|
* Return:
|
|
|
|
* If key waiting to be input:
|
|
|
|
* %ah = keyboard scan code
|
|
|
|
* %al = ASCII character
|
|
|
|
* Zero flag = clear
|
|
|
|
* else
|
|
|
|
* Zero flag = set
|
2002-12-27 08:53:07 +00:00
|
|
|
* BIOS call "INT 16H Function 00H" to read character from keyboard
|
|
|
|
* Call with %ah = 0x0
|
|
|
|
* Return: %ah = keyboard scan code
|
|
|
|
* %al = ASCII character
|
|
|
|
*/
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
FUNCTION(grub_console_getkey)
|
2002-12-27 08:53:07 +00:00
|
|
|
pushl %ebp
|
|
|
|
|
|
|
|
call prot_to_real
|
|
|
|
.code16
|
|
|
|
|
2008-05-15 11:51:22 +00:00
|
|
|
/*
|
|
|
|
* Due to a bug in apple's bootcamp implementation, INT 16/AH = 0 would
|
|
|
|
* cause the machine to hang at the second keystroke. However, we can
|
|
|
|
* work around this problem by ensuring the presence of keystroke with
|
|
|
|
* INT 16/AH = 1 before calling INT 16/AH = 0.
|
|
|
|
*/
|
|
|
|
|
|
|
|
movb $1, %ah
|
|
|
|
int $0x16
|
2010-08-23 10:07:49 +00:00
|
|
|
jz notpending
|
2008-05-15 11:51:22 +00:00
|
|
|
|
|
|
|
movb $0, %ah
|
2002-12-27 08:53:07 +00:00
|
|
|
int $0x16
|
|
|
|
|
2010-08-19 11:32:36 +00:00
|
|
|
xorl %edx, %edx
|
2002-12-27 08:53:07 +00:00
|
|
|
movw %ax, %dx /* real_to_prot uses %eax */
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2002-12-27 08:53:07 +00:00
|
|
|
DATA32 call real_to_prot
|
|
|
|
.code32
|
|
|
|
|
2010-08-19 11:32:36 +00:00
|
|
|
movl $0xff, %eax
|
|
|
|
testl %eax, %edx
|
|
|
|
jz 1f
|
|
|
|
|
|
|
|
andl %edx, %eax
|
|
|
|
cmp %eax, 0x20
|
|
|
|
ja 2f
|
|
|
|
movl %edx, %eax
|
|
|
|
leal LOCAL(bypass_table), %esi
|
|
|
|
movl $((LOCAL(bypass_table_end) - LOCAL(bypass_table)) / 2), %ecx
|
|
|
|
repne cmpsw
|
|
|
|
jz 3f
|
|
|
|
|
|
|
|
addl $('a' - 1 | GRUB_TERM_CTRL), %eax
|
|
|
|
jmp 2f
|
|
|
|
3:
|
|
|
|
andl $0xff, %eax
|
|
|
|
jmp 2f
|
|
|
|
|
|
|
|
1: movl %edx, %eax
|
|
|
|
shrl $8, %eax
|
|
|
|
orl $GRUB_TERM_EXTENDED, %eax
|
|
|
|
2:
|
2002-12-27 08:53:07 +00:00
|
|
|
popl %ebp
|
|
|
|
ret
|
|
|
|
|
2010-08-23 10:07:49 +00:00
|
|
|
notpending:
|
2002-12-27 08:53:07 +00:00
|
|
|
.code16
|
|
|
|
DATA32 call real_to_prot
|
|
|
|
.code32
|
2010-08-23 11:21:53 +00:00
|
|
|
#if GRUB_TERM_NO_KEY != 0
|
2010-08-23 10:53:42 +00:00
|
|
|
#error Fix this asm code
|
|
|
|
#endif
|
2010-08-23 10:07:49 +00:00
|
|
|
jmp 2b
|
2002-12-27 08:53:07 +00:00
|
|
|
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2002-12-27 08:53:07 +00:00
|
|
|
/*
|
2004-04-04 13:46:03 +00:00
|
|
|
* grub_uint16_t grub_console_getxy (void)
|
2002-12-27 08:53:07 +00:00
|
|
|
* BIOS call "INT 10H Function 03h" to get cursor position
|
|
|
|
* Call with %ah = 0x03
|
|
|
|
* %bh = page
|
|
|
|
* Returns %ch = starting scan line
|
|
|
|
* %cl = ending scan line
|
|
|
|
* %dh = row (0 is top)
|
|
|
|
* %dl = column (0 is left)
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
FUNCTION(grub_console_getxy)
|
2002-12-27 08:53:07 +00:00
|
|
|
pushl %ebp
|
|
|
|
pushl %ebx /* save EBX */
|
|
|
|
|
|
|
|
call prot_to_real
|
|
|
|
.code16
|
|
|
|
|
|
|
|
xorb %bh, %bh /* set page to 0 */
|
|
|
|
movb $0x3, %ah
|
|
|
|
int $0x10 /* get cursor position */
|
|
|
|
|
|
|
|
DATA32 call real_to_prot
|
|
|
|
.code32
|
|
|
|
|
|
|
|
movb %dl, %ah
|
|
|
|
movb %dh, %al
|
|
|
|
|
|
|
|
popl %ebx
|
|
|
|
popl %ebp
|
|
|
|
ret
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
2004-04-04 13:46:03 +00:00
|
|
|
* void grub_console_gotoxy(grub_uint8_t x, grub_uint8_t y)
|
2002-12-27 08:53:07 +00:00
|
|
|
* BIOS call "INT 10H Function 02h" to set cursor position
|
|
|
|
* Call with %ah = 0x02
|
|
|
|
* %bh = page
|
|
|
|
* %dh = row (0 is top)
|
|
|
|
* %dl = column (0 is left)
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
FUNCTION(grub_console_gotoxy)
|
2002-12-27 08:53:07 +00:00
|
|
|
pushl %ebp
|
|
|
|
pushl %ebx /* save EBX */
|
|
|
|
|
2010-05-07 00:30:44 +00:00
|
|
|
movb %cl, %dh /* %dh = y */
|
|
|
|
/* %dl = x */
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
|
|
call prot_to_real
|
|
|
|
.code16
|
|
|
|
|
|
|
|
xorb %bh, %bh /* set page to 0 */
|
|
|
|
movb $0x2, %ah
|
|
|
|
int $0x10 /* set cursor position */
|
|
|
|
|
|
|
|
DATA32 call real_to_prot
|
|
|
|
.code32
|
|
|
|
|
|
|
|
popl %ebx
|
|
|
|
popl %ebp
|
|
|
|
ret
|
|
|
|
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2002-12-27 08:53:07 +00:00
|
|
|
/*
|
2004-04-04 13:46:03 +00:00
|
|
|
* void grub_console_cls (void)
|
2002-12-27 08:53:07 +00:00
|
|
|
* BIOS call "INT 10H Function 09h" to write character and attribute
|
|
|
|
* Call with %ah = 0x09
|
|
|
|
* %al = (character)
|
|
|
|
* %bh = (page number)
|
|
|
|
* %bl = (attribute)
|
|
|
|
* %cx = (number of times)
|
|
|
|
*/
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
FUNCTION(grub_console_cls)
|
2002-12-27 08:53:07 +00:00
|
|
|
pushl %ebp
|
|
|
|
pushl %ebx /* save EBX */
|
|
|
|
|
|
|
|
call prot_to_real
|
|
|
|
.code16
|
|
|
|
|
|
|
|
/* move the cursor to the beginning */
|
|
|
|
movb $0x02, %ah
|
|
|
|
xorb %bh, %bh
|
|
|
|
xorw %dx, %dx
|
|
|
|
int $0x10
|
|
|
|
|
|
|
|
/* write spaces to the entire screen */
|
|
|
|
movw $0x0920, %ax
|
|
|
|
movw $0x07, %bx
|
|
|
|
movw $(80 * 25), %cx
|
|
|
|
int $0x10
|
|
|
|
|
|
|
|
/* move back the cursor */
|
|
|
|
movb $0x02, %ah
|
|
|
|
int $0x10
|
|
|
|
|
|
|
|
DATA32 call real_to_prot
|
|
|
|
.code32
|
|
|
|
|
|
|
|
popl %ebx
|
|
|
|
popl %ebp
|
|
|
|
ret
|
|
|
|
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2002-12-27 08:53:07 +00:00
|
|
|
/*
|
2004-04-04 13:46:03 +00:00
|
|
|
* void grub_console_setcursor (int on)
|
2002-12-27 08:53:07 +00:00
|
|
|
* BIOS call "INT 10H Function 01h" to set cursor type
|
|
|
|
* Call with %ah = 0x01
|
|
|
|
* %ch = cursor starting scanline
|
|
|
|
* %cl = cursor ending scanline
|
|
|
|
*/
|
|
|
|
|
|
|
|
console_cursor_state:
|
|
|
|
.byte 1
|
|
|
|
console_cursor_shape:
|
|
|
|
.word 0
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
FUNCTION(grub_console_setcursor)
|
2002-12-28 07:16:30 +00:00
|
|
|
pushl %ebp
|
|
|
|
pushl %ebx
|
2002-12-27 08:53:07 +00:00
|
|
|
|
2002-12-28 07:16:30 +00:00
|
|
|
/* push ON */
|
2010-05-07 00:30:44 +00:00
|
|
|
pushl %edx
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2002-12-27 08:53:07 +00:00
|
|
|
/* check if the standard cursor shape has already been saved */
|
|
|
|
movw console_cursor_shape, %ax
|
|
|
|
testw %ax, %ax
|
|
|
|
jne 1f
|
|
|
|
|
|
|
|
call prot_to_real
|
|
|
|
.code16
|
|
|
|
|
|
|
|
movb $0x03, %ah
|
|
|
|
xorb %bh, %bh
|
|
|
|
int $0x10
|
|
|
|
|
|
|
|
DATA32 call real_to_prot
|
|
|
|
.code32
|
|
|
|
|
|
|
|
movw %cx, console_cursor_shape
|
|
|
|
1:
|
|
|
|
/* set %cx to the designated cursor shape */
|
|
|
|
movw $0x2000, %cx
|
2002-12-28 07:16:30 +00:00
|
|
|
popl %eax
|
|
|
|
testl %eax, %eax
|
2002-12-27 08:53:07 +00:00
|
|
|
jz 2f
|
|
|
|
movw console_cursor_shape, %cx
|
2009-06-10 21:04:23 +00:00
|
|
|
2:
|
2002-12-27 08:53:07 +00:00
|
|
|
call prot_to_real
|
|
|
|
.code16
|
|
|
|
|
|
|
|
movb $0x1, %ah
|
2009-06-10 21:04:23 +00:00
|
|
|
int $0x10
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
|
|
DATA32 call real_to_prot
|
|
|
|
.code32
|
|
|
|
|
|
|
|
popl %ebx
|
|
|
|
popl %ebp
|
|
|
|
ret
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2002-12-27 08:53:07 +00:00
|
|
|
/*
|
2004-04-04 13:46:03 +00:00
|
|
|
* grub_get_rtc()
|
2002-12-27 08:53:07 +00:00
|
|
|
* return the real time in ticks, of which there are about
|
|
|
|
* 18-20 per second
|
|
|
|
*/
|
2004-04-04 13:46:03 +00:00
|
|
|
FUNCTION(grub_get_rtc)
|
2002-12-27 08:53:07 +00:00
|
|
|
pushl %ebp
|
|
|
|
|
|
|
|
call prot_to_real /* enter real mode */
|
|
|
|
.code16
|
|
|
|
|
|
|
|
/* %ax is already zero */
|
|
|
|
int $0x1a
|
|
|
|
|
|
|
|
DATA32 call real_to_prot
|
|
|
|
.code32
|
|
|
|
|
|
|
|
movl %ecx, %eax
|
|
|
|
shll $16, %eax
|
|
|
|
movw %dx, %ax
|
|
|
|
|
|
|
|
popl %ebp
|
|
|
|
ret
|
2003-09-25 20:15:53 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
2004-04-04 13:46:03 +00:00
|
|
|
* unsigned char grub_vga_set_mode (unsigned char mode)
|
2003-09-25 20:15:53 +00:00
|
|
|
*/
|
2004-04-04 13:46:03 +00:00
|
|
|
FUNCTION(grub_vga_set_mode)
|
2003-09-25 20:15:53 +00:00
|
|
|
pushl %ebp
|
|
|
|
pushl %ebx
|
|
|
|
movl %eax, %ecx
|
|
|
|
|
|
|
|
call prot_to_real
|
|
|
|
.code16
|
|
|
|
/* get current mode */
|
|
|
|
xorw %bx, %bx
|
|
|
|
movb $0x0f, %ah
|
|
|
|
int $0x10
|
|
|
|
movb %al, %dl
|
|
|
|
|
|
|
|
/* set the new mode */
|
|
|
|
movb %cl, %al
|
|
|
|
xorb %ah, %ah
|
|
|
|
int $0x10
|
|
|
|
|
|
|
|
DATA32 call real_to_prot
|
|
|
|
.code32
|
|
|
|
|
|
|
|
movb %dl, %al
|
|
|
|
popl %ebx
|
|
|
|
popl %ebp
|
|
|
|
ret
|
|
|
|
|
2005-08-09 14:39:50 +00:00
|
|
|
/*
|
2006-03-14 19:08:34 +00:00
|
|
|
* grub_vbe_bios_status_t grub_vbe_get_controller_info (struct grub_vbe_info_block *controller_info)
|
2005-08-09 14:39:50 +00:00
|
|
|
*
|
|
|
|
* Register allocations for parameters:
|
|
|
|
* %eax *controller_info
|
|
|
|
*/
|
2006-03-14 19:08:34 +00:00
|
|
|
FUNCTION(grub_vbe_bios_get_controller_info)
|
2005-08-09 14:39:50 +00:00
|
|
|
pushl %ebp
|
|
|
|
pushl %edi
|
2006-03-14 19:08:34 +00:00
|
|
|
pushl %edx
|
2005-08-09 14:39:50 +00:00
|
|
|
|
|
|
|
movw %ax, %di /* Store *controller_info to %edx:%di. */
|
|
|
|
xorw %ax, %ax
|
|
|
|
shrl $4, %eax
|
|
|
|
mov %eax, %edx /* prot_to_real destroys %eax. */
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2005-08-09 14:39:50 +00:00
|
|
|
call prot_to_real
|
|
|
|
.code16
|
|
|
|
|
|
|
|
pushw %es
|
|
|
|
|
|
|
|
movw %dx, %es /* *controller_info is now on %es:%di. */
|
|
|
|
movw $0x4f00, %ax
|
|
|
|
int $0x10
|
|
|
|
|
|
|
|
movw %ax, %dx /* real_to_prot destroys %eax. */
|
|
|
|
|
|
|
|
popw %es
|
|
|
|
|
|
|
|
DATA32 call real_to_prot
|
|
|
|
.code32
|
|
|
|
|
|
|
|
movl %edx, %eax
|
|
|
|
andl $0x0FFFF, %eax /* Return value in %eax. */
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2006-03-14 19:08:34 +00:00
|
|
|
pop %edx
|
2005-08-09 14:39:50 +00:00
|
|
|
popl %edi
|
|
|
|
popl %ebp
|
|
|
|
ret
|
|
|
|
|
|
|
|
/*
|
2006-03-14 19:08:34 +00:00
|
|
|
* grub_vbe_status_t grub_vbe_bios_get_mode_info (grub_uint32_t mode,
|
|
|
|
* struct grub_vbe_mode_info_block *mode_info)
|
2005-08-09 14:39:50 +00:00
|
|
|
*
|
|
|
|
* Register allocations for parameters:
|
|
|
|
* %eax mode
|
|
|
|
* %edx *mode_info
|
|
|
|
*/
|
2006-03-14 19:08:34 +00:00
|
|
|
FUNCTION(grub_vbe_bios_get_mode_info)
|
2005-08-09 14:39:50 +00:00
|
|
|
pushl %ebp
|
|
|
|
pushl %edi
|
|
|
|
|
|
|
|
movl %eax, %ecx /* Store mode number to %ecx. */
|
|
|
|
|
|
|
|
movw %dx, %di /* Store *mode_info to %edx:%di. */
|
|
|
|
xorw %dx, %dx
|
|
|
|
shrl $4, %edx
|
|
|
|
|
|
|
|
call prot_to_real
|
|
|
|
.code16
|
|
|
|
|
|
|
|
pushw %es
|
|
|
|
|
|
|
|
movw %dx, %es /* *mode_info is now on %es:%di. */
|
|
|
|
movw $0x4f01, %ax
|
|
|
|
int $0x10
|
|
|
|
|
|
|
|
movw %ax, %dx /* real_to_prot destroys %eax. */
|
|
|
|
|
|
|
|
popw %es
|
|
|
|
|
|
|
|
DATA32 call real_to_prot
|
|
|
|
.code32
|
|
|
|
|
|
|
|
movl %edx, %eax
|
|
|
|
andl $0x0FFFF, %eax /* Return value in %eax. */
|
|
|
|
|
|
|
|
popl %edi
|
|
|
|
popl %ebp
|
|
|
|
ret
|
|
|
|
|
|
|
|
/*
|
2006-03-14 19:08:34 +00:00
|
|
|
* grub_vbe_status_t grub_vbe_bios_set_mode (grub_uint32_t mode,
|
|
|
|
* struct grub_vbe_crtc_info_block *crtc_info)
|
2005-08-09 14:39:50 +00:00
|
|
|
*
|
|
|
|
* Register allocations for parameters:
|
|
|
|
* %eax mode
|
|
|
|
* %edx *crtc_info
|
|
|
|
*/
|
2006-03-14 19:08:34 +00:00
|
|
|
FUNCTION(grub_vbe_bios_set_mode)
|
2005-08-09 14:39:50 +00:00
|
|
|
pushl %ebp
|
|
|
|
pushl %ebx
|
2006-03-14 19:08:34 +00:00
|
|
|
pushl %edi
|
2005-08-09 14:39:50 +00:00
|
|
|
|
|
|
|
movl %eax, %ebx /* Store mode in %ebx. */
|
|
|
|
|
|
|
|
movw %dx, %di /* Store *crtc_info to %edx:%di. */
|
|
|
|
xorw %dx, %dx
|
|
|
|
shrl $4, %edx
|
|
|
|
|
|
|
|
call prot_to_real
|
|
|
|
.code16
|
|
|
|
|
|
|
|
pushw %es
|
|
|
|
|
|
|
|
movw %dx, %es /* *crtc_info is now on %es:%di. */
|
|
|
|
|
|
|
|
movw $0x4f02, %ax
|
|
|
|
int $0x10
|
|
|
|
|
|
|
|
movw %ax, %dx /* real_to_prot destroys %eax. */
|
|
|
|
|
|
|
|
popw %es
|
|
|
|
|
|
|
|
DATA32 call real_to_prot
|
|
|
|
.code32
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2005-08-09 14:39:50 +00:00
|
|
|
movw %dx, %ax
|
|
|
|
andl $0xFFFF, %eax /* Return value in %eax. */
|
|
|
|
|
2006-03-14 19:08:34 +00:00
|
|
|
popl %edi
|
2005-08-09 14:39:50 +00:00
|
|
|
popl %ebx
|
|
|
|
popl %ebp
|
|
|
|
ret
|
|
|
|
|
|
|
|
/*
|
2006-03-14 19:08:34 +00:00
|
|
|
* grub_vbe_status_t grub_vbe_bios_get_mode (grub_uint32_t *mode)
|
2005-08-09 14:39:50 +00:00
|
|
|
*
|
|
|
|
* Register allocations for parameters:
|
|
|
|
* %eax *mode
|
|
|
|
*/
|
2006-03-14 19:08:34 +00:00
|
|
|
FUNCTION(grub_vbe_bios_get_mode)
|
2005-08-09 14:39:50 +00:00
|
|
|
pushl %ebp
|
|
|
|
pushl %ebx
|
2006-03-14 19:08:34 +00:00
|
|
|
pushl %edi
|
|
|
|
pushl %edx
|
2005-08-09 14:39:50 +00:00
|
|
|
pushl %eax /* Push *mode to stack. */
|
|
|
|
|
|
|
|
call prot_to_real
|
|
|
|
.code16
|
|
|
|
|
|
|
|
movw $0x4f03, %ax
|
|
|
|
int $0x10
|
|
|
|
|
|
|
|
movw %ax, %dx /* real_to_prot destroys %eax. */
|
|
|
|
|
|
|
|
DATA32 call real_to_prot
|
|
|
|
.code32
|
|
|
|
|
|
|
|
popl %edi /* Pops *mode from stack to %edi. */
|
|
|
|
andl $0xFFFF, %ebx
|
|
|
|
movl %ebx, (%edi)
|
|
|
|
|
|
|
|
movw %dx, %ax
|
|
|
|
andl $0xFFFF, %eax /* Return value in %eax. */
|
|
|
|
|
2006-03-14 19:08:34 +00:00
|
|
|
popl %edx
|
|
|
|
popl %edi
|
2005-08-09 14:39:50 +00:00
|
|
|
popl %ebx
|
|
|
|
popl %ebp
|
|
|
|
ret
|
|
|
|
|
2009-08-04 21:28:19 +00:00
|
|
|
/*
|
|
|
|
* grub_vbe_status_t grub_vbe_bios_getset_dac_palette_width (int set, int *dac_mask_size)
|
|
|
|
*
|
|
|
|
* Register allocations for parameters:
|
|
|
|
* %eax set
|
|
|
|
* %edx *dac_mask_size
|
|
|
|
*/
|
|
|
|
FUNCTION(grub_vbe_bios_getset_dac_palette_width)
|
|
|
|
pushl %ebp
|
|
|
|
pushl %ebx
|
|
|
|
|
|
|
|
xorl %ebx, %ebx
|
|
|
|
|
|
|
|
/* If we only want to fetch the value, set %bl to 1. */
|
|
|
|
testl %eax, %eax
|
|
|
|
jne 1f
|
|
|
|
incb %bl
|
|
|
|
1:
|
|
|
|
|
|
|
|
/* Put desired width in %bh. */
|
|
|
|
movl (%edx), %eax
|
|
|
|
movb %al, %bh
|
|
|
|
|
|
|
|
call prot_to_real
|
|
|
|
.code16
|
|
|
|
|
|
|
|
movw $0x4f08, %ax
|
|
|
|
int $0x10
|
|
|
|
|
2009-09-12 13:05:25 +00:00
|
|
|
movw %ax, %cx /* real_to_prot destroys %eax. */
|
2009-08-04 21:28:19 +00:00
|
|
|
|
|
|
|
DATA32 call real_to_prot
|
|
|
|
.code32
|
|
|
|
|
|
|
|
/* Move result back to *dac_mask_size. */
|
2009-09-12 13:05:25 +00:00
|
|
|
xorl %eax, %eax
|
2009-08-04 21:28:19 +00:00
|
|
|
movb %bh, %al
|
|
|
|
movl %eax, (%edx)
|
|
|
|
|
|
|
|
/* Return value in %eax. */
|
2009-09-12 13:05:25 +00:00
|
|
|
movw %cx, %ax
|
2009-08-04 21:28:19 +00:00
|
|
|
|
|
|
|
popl %ebx
|
|
|
|
popl %ebp
|
|
|
|
ret
|
|
|
|
|
2005-08-09 14:39:50 +00:00
|
|
|
/*
|
2006-03-14 19:08:34 +00:00
|
|
|
* grub_vbe_status_t grub_vbe_bios_set_memory_window (grub_uint32_t window,
|
|
|
|
* grub_uint32_t position);
|
2005-08-09 14:39:50 +00:00
|
|
|
*
|
|
|
|
* Register allocations for parameters:
|
|
|
|
* %eax window
|
|
|
|
* %edx position
|
|
|
|
*/
|
2006-03-14 19:08:34 +00:00
|
|
|
FUNCTION(grub_vbe_bios_set_memory_window)
|
2005-08-09 14:39:50 +00:00
|
|
|
pushl %ebp
|
|
|
|
pushl %ebx
|
|
|
|
|
|
|
|
movl %eax, %ebx
|
|
|
|
|
|
|
|
call prot_to_real
|
|
|
|
.code16
|
|
|
|
|
|
|
|
movw $0x4f05, %ax
|
|
|
|
andw $0x00ff, %bx /* BL = window, BH = 0, Set memory window. */
|
|
|
|
int $0x10
|
|
|
|
|
|
|
|
movw %ax, %dx /* real_to_prot destroys %eax. */
|
|
|
|
|
|
|
|
DATA32 call real_to_prot
|
|
|
|
.code32
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2005-08-09 14:39:50 +00:00
|
|
|
movw %dx, %ax
|
|
|
|
andl $0xFFFF, %eax /* Return value in %eax. */
|
|
|
|
|
|
|
|
popl %ebx
|
|
|
|
popl %ebp
|
|
|
|
ret
|
|
|
|
|
|
|
|
/*
|
2006-03-14 19:08:34 +00:00
|
|
|
* grub_vbe_status_t grub_vbe_bios_get_memory_window (grub_uint32_t window,
|
|
|
|
* grub_uint32_t *position);
|
2005-08-09 14:39:50 +00:00
|
|
|
*
|
|
|
|
* Register allocations for parameters:
|
|
|
|
* %eax window
|
|
|
|
* %edx *position
|
|
|
|
*/
|
2006-03-14 19:08:34 +00:00
|
|
|
FUNCTION(grub_vbe_bios_get_memory_window)
|
2005-08-09 14:39:50 +00:00
|
|
|
pushl %ebp
|
|
|
|
pushl %ebx
|
2006-03-14 19:08:34 +00:00
|
|
|
pushl %edi
|
2005-08-09 14:39:50 +00:00
|
|
|
pushl %edx /* Push *position to stack. */
|
|
|
|
|
|
|
|
movl %eax, %ebx /* Store window in %ebx. */
|
|
|
|
|
|
|
|
call prot_to_real
|
|
|
|
.code16
|
|
|
|
|
|
|
|
movw $0x4f05, %ax
|
|
|
|
andw $0x00ff, %bx /* BL = window. */
|
|
|
|
orw $0x0100, %bx /* BH = 1, Get memory window. */
|
|
|
|
int $0x10
|
|
|
|
|
|
|
|
movw %ax, %bx /* real_to_prot destroys %eax. */
|
|
|
|
|
|
|
|
DATA32 call real_to_prot
|
|
|
|
.code32
|
|
|
|
|
|
|
|
popl %edi /* pops *position from stack to %edi. */
|
|
|
|
andl $0xFFFF, %edx
|
|
|
|
movl %edx, (%edi) /* Return position to caller. */
|
|
|
|
|
|
|
|
movw %bx, %ax
|
|
|
|
andl $0xFFFF, %eax /* Return value in %eax. */
|
|
|
|
|
2006-03-14 19:08:34 +00:00
|
|
|
popl %edi
|
2005-08-09 14:39:50 +00:00
|
|
|
popl %ebx
|
|
|
|
popl %ebp
|
|
|
|
ret
|
|
|
|
|
|
|
|
/*
|
2006-03-14 19:08:34 +00:00
|
|
|
* grub_vbe_status_t grub_vbe_bios_set_scanline_length (grub_uint32_t length)
|
2005-08-09 14:39:50 +00:00
|
|
|
*
|
|
|
|
* Register allocations for parameters:
|
|
|
|
* %eax length
|
|
|
|
*/
|
2006-03-14 19:08:34 +00:00
|
|
|
FUNCTION(grub_vbe_bios_set_scanline_length)
|
2005-08-09 14:39:50 +00:00
|
|
|
pushl %ebp
|
|
|
|
pushl %ebx
|
2006-03-14 19:08:34 +00:00
|
|
|
pushl %edx
|
2005-08-09 14:39:50 +00:00
|
|
|
|
|
|
|
movl %eax, %ecx /* Store length in %ecx. */
|
|
|
|
|
|
|
|
call prot_to_real
|
|
|
|
.code16
|
|
|
|
|
|
|
|
movw $0x4f06, %ax
|
|
|
|
movw $0x0002, %bx /* BL = 2, Set Scan Line in Bytes. */
|
|
|
|
int $0x10
|
|
|
|
|
|
|
|
movw %ax, %dx /* real_to_prot destroys %eax. */
|
|
|
|
|
|
|
|
DATA32 call real_to_prot
|
|
|
|
.code32
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2005-08-09 14:39:50 +00:00
|
|
|
movw %dx, %ax
|
|
|
|
andl $0xFFFF, %eax /* Return value in %eax. */
|
|
|
|
|
2006-03-14 19:08:34 +00:00
|
|
|
popl %edx
|
2005-08-09 14:39:50 +00:00
|
|
|
popl %ebx
|
|
|
|
popl %ebp
|
|
|
|
ret
|
|
|
|
|
|
|
|
/*
|
2006-03-14 19:08:34 +00:00
|
|
|
* grub_vbe_status_t grub_vbe_bios_get_scanline_length (grub_uint32_t *length)
|
2005-08-09 14:39:50 +00:00
|
|
|
*
|
|
|
|
* Register allocations for parameters:
|
|
|
|
* %eax *length
|
|
|
|
*/
|
2006-03-14 19:08:34 +00:00
|
|
|
FUNCTION(grub_vbe_bios_get_scanline_length)
|
2005-08-09 14:39:50 +00:00
|
|
|
pushl %ebp
|
|
|
|
pushl %ebx
|
2006-03-14 19:08:34 +00:00
|
|
|
pushl %edi
|
2005-08-09 14:39:50 +00:00
|
|
|
pushl %edx /* Push *length to stack. */
|
|
|
|
|
|
|
|
call prot_to_real
|
|
|
|
.code16
|
|
|
|
|
|
|
|
movw $0x4f06, %ax
|
|
|
|
movw $0x0001, %bx /* BL = 1, Get Scan Line Length (in bytes). */
|
|
|
|
int $0x10
|
|
|
|
|
|
|
|
movw %ax, %dx /* real_to_prot destroys %eax. */
|
|
|
|
|
|
|
|
DATA32 call real_to_prot
|
|
|
|
.code32
|
|
|
|
|
|
|
|
popl %edi /* Pops *length from stack to %edi. */
|
|
|
|
andl $0xFFFF, %ebx
|
|
|
|
movl %ebx, (%edi) /* Return length to caller. */
|
|
|
|
|
|
|
|
movw %dx, %ax
|
|
|
|
andl $0xFFFF, %eax /* Return value in %eax. */
|
|
|
|
|
2006-03-14 19:08:34 +00:00
|
|
|
popl %edi
|
2005-08-09 14:39:50 +00:00
|
|
|
popl %ebx
|
|
|
|
popl %ebp
|
|
|
|
ret
|
|
|
|
|
|
|
|
/*
|
2006-03-14 19:08:34 +00:00
|
|
|
* grub_vbe_status_t grub_vbe_bios_set_display_start (grub_uint32_t x,
|
|
|
|
* grub_uint32_t y)
|
2005-08-09 14:39:50 +00:00
|
|
|
*
|
|
|
|
* Register allocations for parameters:
|
|
|
|
* %eax x
|
|
|
|
* %edx y
|
|
|
|
*/
|
2006-03-14 19:08:34 +00:00
|
|
|
FUNCTION(grub_vbe_bios_set_display_start)
|
2005-08-09 14:39:50 +00:00
|
|
|
pushl %ebp
|
|
|
|
pushl %ebx
|
|
|
|
|
|
|
|
movl %eax, %ecx /* Store x in %ecx. */
|
|
|
|
|
|
|
|
call prot_to_real
|
|
|
|
.code16
|
|
|
|
|
|
|
|
movw $0x4f07, %ax
|
2009-06-10 21:04:23 +00:00
|
|
|
movw $0x0080, %bx /* BL = 80h, Set Display Start
|
2005-08-09 14:39:50 +00:00
|
|
|
during Vertical Retrace. */
|
|
|
|
int $0x10
|
|
|
|
|
|
|
|
movw %ax, %dx /* real_to_prot destroys %eax. */
|
|
|
|
|
|
|
|
DATA32 call real_to_prot
|
|
|
|
.code32
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2005-08-09 14:39:50 +00:00
|
|
|
movw %dx, %ax
|
|
|
|
andl $0xFFFF, %eax /* Return value in %eax. */
|
|
|
|
|
|
|
|
popl %ebx
|
|
|
|
popl %ebp
|
|
|
|
ret
|
|
|
|
|
|
|
|
/*
|
2006-03-14 19:08:34 +00:00
|
|
|
* grub_vbe_status_t grub_vbe_bios_get_display_start (grub_uint32_t *x,
|
|
|
|
* grub_uint32_t *y)
|
2005-08-09 14:39:50 +00:00
|
|
|
*
|
|
|
|
* Register allocations for parameters:
|
|
|
|
* %eax *x
|
|
|
|
* %edx *y
|
|
|
|
*/
|
2006-03-14 19:08:34 +00:00
|
|
|
FUNCTION(grub_vbe_bios_get_display_start)
|
2005-08-09 14:39:50 +00:00
|
|
|
pushl %ebp
|
|
|
|
pushl %ebx
|
2006-03-14 19:08:34 +00:00
|
|
|
pushl %edi
|
2005-08-09 14:39:50 +00:00
|
|
|
pushl %eax /* Push *x to stack. */
|
|
|
|
pushl %edx /* Push *y to stack. */
|
|
|
|
|
|
|
|
call prot_to_real
|
|
|
|
.code16
|
|
|
|
|
|
|
|
movw $0x4f07, %ax
|
|
|
|
movw $0x0001, %bx /* BL = 1, Get Display Start. */
|
|
|
|
int $0x10
|
|
|
|
|
|
|
|
movw %ax, %bx /* real_to_prot destroys %eax. */
|
|
|
|
|
|
|
|
DATA32 call real_to_prot
|
|
|
|
.code32
|
|
|
|
|
|
|
|
popl %edi /* Pops *y from stack to %edi. */
|
|
|
|
andl $0xFFFF, %edx
|
|
|
|
movl %edx, (%edi) /* Return y-position to caller. */
|
|
|
|
|
|
|
|
popl %edi /* Pops *x from stack to %edi. */
|
|
|
|
andl $0xFFFF, %ecx
|
|
|
|
movl %ecx, (%edi) /* Return x-position to caller. */
|
|
|
|
|
|
|
|
movw %bx, %ax
|
|
|
|
andl $0xFFFF, %eax /* Return value in %eax. */
|
|
|
|
|
2006-03-14 19:08:34 +00:00
|
|
|
popl %edi
|
2005-08-09 14:39:50 +00:00
|
|
|
popl %ebx
|
|
|
|
popl %ebp
|
|
|
|
ret
|
|
|
|
|
|
|
|
/*
|
2006-03-14 19:08:34 +00:00
|
|
|
* grub_vbe_status_t grub_vbe_bios_set_palette_data (grub_uint32_t color_count,
|
|
|
|
* grub_uint32_t start_index,
|
|
|
|
* struct grub_vbe_palette_data *palette_data)
|
2005-08-09 14:39:50 +00:00
|
|
|
*
|
|
|
|
* Register allocations for parameters:
|
|
|
|
* %eax color_count
|
|
|
|
* %edx start_index
|
|
|
|
* %ecx *palette_data
|
|
|
|
*/
|
2006-03-14 19:08:34 +00:00
|
|
|
FUNCTION(grub_vbe_bios_set_palette_data)
|
2005-08-09 14:39:50 +00:00
|
|
|
pushl %ebp
|
|
|
|
pushl %ebx
|
2006-03-14 19:08:34 +00:00
|
|
|
pushl %edi
|
2005-08-09 14:39:50 +00:00
|
|
|
|
|
|
|
movl %eax, %ebx /* Store color_count in %ebx. */
|
|
|
|
|
|
|
|
movw %cx, %di /* Store *palette_data to %ecx:%di. */
|
|
|
|
xorw %cx, %cx
|
|
|
|
shrl $4, %ecx
|
|
|
|
|
|
|
|
call prot_to_real
|
|
|
|
.code16
|
|
|
|
|
|
|
|
pushw %es
|
|
|
|
|
|
|
|
movw %cx, %es /* *palette_data is now on %es:%di. */
|
|
|
|
movw %bx, %cx /* color_count is now on %cx. */
|
|
|
|
|
|
|
|
movw $0x4f09, %ax
|
|
|
|
xorw %bx, %bx /* BL = 0, Set Palette Data. */
|
|
|
|
int $0x10
|
|
|
|
|
|
|
|
movw %ax, %dx /* real_to_prot destroys %eax. */
|
|
|
|
|
|
|
|
popw %es
|
|
|
|
|
|
|
|
DATA32 call real_to_prot
|
|
|
|
.code32
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2005-08-09 14:39:50 +00:00
|
|
|
movw %dx, %ax
|
|
|
|
andl $0xFFFF, %eax /* Return value in %eax. */
|
|
|
|
|
2006-03-14 19:08:34 +00:00
|
|
|
popl %edi
|
2005-08-09 14:39:50 +00:00
|
|
|
popl %ebx
|
|
|
|
popl %ebp
|
|
|
|
ret
|
2008-08-05 15:15:59 +00:00
|
|
|
|
|
|
|
|
|
|
|
pxe_rm_entry:
|
|
|
|
.long 0
|
|
|
|
|
|
|
|
/*
|
|
|
|
* struct grub_pxenv *grub_pxe_scan (void);
|
|
|
|
*/
|
|
|
|
FUNCTION(grub_pxe_scan)
|
|
|
|
pushl %ebp
|
|
|
|
pushl %ebx
|
|
|
|
|
|
|
|
xorl %ebx, %ebx
|
|
|
|
xorl %ecx, %ecx
|
|
|
|
|
|
|
|
call prot_to_real
|
|
|
|
.code16
|
|
|
|
|
|
|
|
pushw %es
|
|
|
|
|
|
|
|
movw $0x5650, %ax
|
|
|
|
int $0x1A
|
|
|
|
cmpw $0x564E, %ax
|
|
|
|
jnz 1f
|
|
|
|
cmpl $0x4E455850, %es:(%bx) /* PXEN(V+) */
|
|
|
|
jnz 1f
|
|
|
|
cmpw $0x201, %es:6(%bx) /* API version */
|
|
|
|
jb 1f
|
|
|
|
lesw %es:0x28(%bx), %bx /* !PXE structure */
|
|
|
|
cmpl $0x45585021, %es:(%bx) /* !PXE */
|
|
|
|
jnz 1f
|
|
|
|
movw %es, %cx
|
|
|
|
jmp 2f
|
|
|
|
1:
|
|
|
|
xorw %bx, %bx
|
|
|
|
xorw %cx, %cx
|
|
|
|
2:
|
|
|
|
|
|
|
|
popw %es
|
|
|
|
|
|
|
|
DATA32 call real_to_prot
|
|
|
|
.code32
|
|
|
|
|
|
|
|
xorl %eax, %eax
|
|
|
|
leal (%eax, %ecx, 4), %ecx
|
|
|
|
leal (%ebx, %ecx, 4), %eax /* eax = ecx * 16 + ebx */
|
|
|
|
|
|
|
|
orl %eax, %eax
|
|
|
|
jz 1f
|
|
|
|
|
|
|
|
movl 0x10(%eax), %ecx
|
|
|
|
movl %ecx, pxe_rm_entry
|
|
|
|
|
|
|
|
1:
|
|
|
|
|
|
|
|
popl %ebx
|
|
|
|
popl %ebp
|
|
|
|
ret
|
|
|
|
|
|
|
|
/*
|
|
|
|
* int grub_pxe_call (int func, void* data);
|
|
|
|
*/
|
|
|
|
FUNCTION(grub_pxe_call)
|
|
|
|
pushl %ebp
|
|
|
|
movl %esp, %ebp
|
|
|
|
pushl %esi
|
|
|
|
pushl %edi
|
|
|
|
pushl %ebx
|
|
|
|
|
|
|
|
movl %eax, %ecx
|
|
|
|
movl %edx, %eax
|
|
|
|
andl $0xF, %eax
|
|
|
|
shrl $4, %edx
|
|
|
|
shll $16, %edx
|
|
|
|
addl %eax, %edx
|
|
|
|
movl pxe_rm_entry, %ebx
|
|
|
|
|
|
|
|
call prot_to_real
|
|
|
|
.code16
|
|
|
|
|
|
|
|
pushl %ebx
|
|
|
|
pushl %edx
|
|
|
|
pushw %cx
|
|
|
|
movw %sp, %bx
|
|
|
|
lcall *%ss:6(%bx)
|
|
|
|
cld
|
|
|
|
addw $10, %sp
|
|
|
|
movw %ax, %cx
|
|
|
|
|
|
|
|
DATA32 call real_to_prot
|
|
|
|
.code32
|
|
|
|
|
|
|
|
movzwl %cx, %eax
|
|
|
|
|
|
|
|
popl %ebx
|
|
|
|
popl %edi
|
|
|
|
popl %esi
|
|
|
|
popl %ebp
|
|
|
|
ret
|