09d842b9c6
Mmap services * loader/i386/efi/linux.c (grub_linux_boot): use grub_mmap_iterate * loader/i386/linux.c (find_mmap_size): likewise (allocate_pages): likewise * loader/i386/multiboot.c (grub_get_multiboot_mmap_len): likewise (grub_fill_multiboot_mmap): likewise (grub_multiboot): use grub_mmap_get_lower and grub_mmap_get_upper * loader/i386/pc/linux.c (grub_cmd_linux): use grub_mmap_get_lower * include/grub/i386/bsd.h (OPENBSD_MMAP_AVAILABLE): new definition (OPENBSD_MMAP_RESERVED): likewise * include/grub/i386/pc/memory.h: include grub/memory.h (grub_lower_mem): removed (grub_upper_mem): likewise (GRUB_MACHINE_MEMORY_ACPI): new definition (GRUB_MACHINE_MEMORY_NVS): likewise (GRUB_MACHINE_MEMORY_MAX_TYPE): likewise (GRUB_MACHINE_MEMORY_HOLE): likewise (grub_machine_mmap_register): likewise (grub_machine_mmap_unregister): likewise (grub_machine_get_upper): likewise (grub_machine_get_lower): likewise (grub_machine_get_post64): likewise * include/grub/i386/efi/memory.h: new file * include/grub/x86_64/efi/memory.h: likewise * include/grub/efi/memory.h: likewise * conf/i386-pc.rmk (pkglib_MODULES): added mmap.mod (mmap_mod_SOURCES): new variable (mmap_mod_LDFLAGS): likewise (mmap_mod_ASFLAGS): likewise * conf/i386-coreboot.rmk: likewise * conf/i386-ieee1275.rmk: likewise * conf/i386-efi.rmk: likewise * conf/x86_64-efi.rmk: likewise * include/grub/types.h (UINT_TO_PTR): new macro (PTR_TO_UINT32): likewise (PTR_TO_UINT64): likewise * include/grub/memory.h: new file * mmap/i386/pc/mmap.c: likewise * mmap/i386/pc/mmap_helper.S: likewise * mmap/i386/uppermem.c: likewise * mmap/mmap.c: likewise * mmap/efi/mmap.c: likewise * kern/i386/coreboot/init.c (grub_machine_init): don't use grub_upper_mem * kern/i386/pc/init.c (grub_lower_mem): removed variable (grub_upper_mem): likewise (grub_machine_init): don't use grub_upper_mem, make grub_lower_mem local * loader/i386/bsd.c (grub_openbsd_boot): use grub_mmap_get_lower, grub_mmap_iterate and grub_mmap_get_upper (grub_netbsd_boot): use grub_mmap_get_lower and grub_mmap_get_upper
122 lines
2.4 KiB
ArmAsm
122 lines
2.4 KiB
ArmAsm
/* Mmap management. */
|
|
/*
|
|
* GRUB -- GRand Unified Bootloader
|
|
* Copyright (C) 2009 Free Software Foundation, Inc.
|
|
*
|
|
* GRUB is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* GRUB is distributed in the hope that it will be useful,
|
|
* 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
|
|
* along with GRUB. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include <grub/symbol.h>
|
|
|
|
#define DS(x) ((x) - segstart)
|
|
|
|
segstart:
|
|
VARIABLE(grub_machine_mmaphook_start)
|
|
.code16
|
|
VARIABLE(grub_machine_mmaphook_int12)
|
|
push %ds
|
|
push %cs
|
|
pop %ds
|
|
movw DS (EXT_C (grub_machine_mmaphook_kblow)), %ax
|
|
pop %ds
|
|
iret
|
|
|
|
VARIABLE(grub_machine_mmaphook_int15)
|
|
pushf
|
|
cmpw $0xe801, %ax
|
|
jz e801
|
|
cmpw $0xe820, %ax
|
|
jz e820
|
|
cmpb $0x88, %ah
|
|
jz h88
|
|
popf
|
|
/* ljmp */
|
|
.byte 0xea
|
|
VARIABLE (grub_machine_mmaphook_int15offset)
|
|
.word 0
|
|
VARIABLE (grub_machine_mmaphook_int15segment)
|
|
.word 0
|
|
|
|
e801:
|
|
popf
|
|
push %ds
|
|
push %cs
|
|
pop %ds
|
|
movw DS (EXT_C (grub_machine_mmaphook_kbin16mb)), %ax
|
|
movw DS (EXT_C (grub_machine_mmaphook_64kbin4gb)), %bx
|
|
movw %ax, %cx
|
|
movw %bx, %dx
|
|
pop %ds
|
|
clc
|
|
iret
|
|
|
|
h88:
|
|
popf
|
|
push %ds
|
|
push %cs
|
|
pop %ds
|
|
movw DS (EXT_C (grub_machine_mmaphook_kbin16mb)), %ax
|
|
pop %ds
|
|
clc
|
|
iret
|
|
|
|
e820:
|
|
popf
|
|
push %ds
|
|
push %cs
|
|
pop %ds
|
|
cmpw $20, %cx
|
|
jb errexit
|
|
cmpw DS (EXT_C (grub_machine_mmaphook_mmap_num)), %bx
|
|
jae errexit
|
|
cmp $0x534d4150, %edx
|
|
jne errexit
|
|
push %si
|
|
push %di
|
|
movw $20, %cx
|
|
movw $(DS(mmaphook_mmap)), %si
|
|
mov %bx, %ax
|
|
imul $20, %ax
|
|
add %ax, %si
|
|
rep movsb
|
|
pop %di
|
|
pop %si
|
|
movl $20, %ecx
|
|
inc %bx
|
|
cmpw DS(EXT_C(grub_machine_mmaphook_mmap_num)), %bx
|
|
jb noclean
|
|
xor %bx, %bx
|
|
noclean:
|
|
mov $0x534d4150, %eax
|
|
pop %ds
|
|
clc
|
|
iret
|
|
errexit:
|
|
mov $0x534d4150, %eax
|
|
pop %ds
|
|
stc
|
|
xor %bx, %bx
|
|
iret
|
|
|
|
VARIABLE(grub_machine_mmaphook_mmap_num)
|
|
.word 0
|
|
VARIABLE(grub_machine_mmaphook_kblow)
|
|
.word 0
|
|
VARIABLE (grub_machine_mmaphook_kbin16mb)
|
|
.word 0
|
|
VARIABLE (grub_machine_mmaphook_64kbin4gb)
|
|
.word 0
|
|
mmaphook_mmap:
|
|
/* Memory map is placed just after the interrupt handlers. */
|
|
VARIABLE(grub_machine_mmaphook_end)
|