* grub-core/Makefile.core.def (vga): Extend to coreboot and multiboot. (vbe): Likewise. * grub-core/kern/i386/coreboot/startup.S: Include int.S. * grub-core/kern/i386/pc/startup.S (grub_bios_interrupt): Moved from here ... * grub-core/kern/i386/int.S: ... here. * grub-core/video/i386/pc/vbe.c: Updated includes. * grub-core/video/i386/pc/vga.c: Likewise. * include/grub/i386/coreboot/memory.h (GRUB_MEMORY_MACHINE_SCRATCH_ADDR): New definition. (GRUB_MEMORY_MACHINE_SCRATCH_SEG): Likewise. (GRUB_MEMORY_MACHINE_SCRATCH_SIZE): Likewise. * include/grub/i386/pc/int.h (GRUB_CPU_INT_FLAGS_DEFAULT) [!PCBIOS]: Disable interrupts. * include/grub/i386/pc/vga.h: Removed. All users updated.
60 lines
1.8 KiB
C
60 lines
1.8 KiB
C
/* memory.h - describe the memory map */
|
|
/*
|
|
* GRUB -- GRand Unified Bootloader
|
|
* Copyright (C) 2002,2007 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/>.
|
|
*/
|
|
|
|
#ifndef _GRUB_MEMORY_MACHINE_LB_HEADER
|
|
#define _GRUB_MEMORY_MACHINE_LB_HEADER 1
|
|
|
|
#include <grub/symbol.h>
|
|
|
|
#ifndef ASM_FILE
|
|
#include <grub/err.h>
|
|
#include <grub/types.h>
|
|
#include <grub/memory.h>
|
|
#endif
|
|
|
|
#define GRUB_MEMORY_MACHINE_SCRATCH_ADDR 0x68000
|
|
#define GRUB_MEMORY_MACHINE_SCRATCH_SEG (GRUB_MEMORY_MACHINE_SCRATCH_ADDR >> 4)
|
|
#define GRUB_MEMORY_MACHINE_SCRATCH_SIZE 0x10000
|
|
|
|
#define GRUB_MEMORY_MACHINE_LOWER_USABLE 0x9fc00 /* 640 kiB - 1 kiB */
|
|
|
|
#define GRUB_MEMORY_MACHINE_UPPER_START 0x100000 /* 1 MiB */
|
|
#define GRUB_MEMORY_MACHINE_LOWER_SIZE GRUB_MEMORY_MACHINE_UPPER_START
|
|
|
|
#ifndef ASM_FILE
|
|
|
|
void grub_machine_mmap_init (void);
|
|
|
|
static inline grub_err_t
|
|
grub_machine_mmap_register (grub_uint64_t start __attribute__ ((unused)),
|
|
grub_uint64_t size __attribute__ ((unused)),
|
|
int type __attribute__ ((unused)),
|
|
int handle __attribute__ ((unused)))
|
|
{
|
|
return GRUB_ERR_NONE;
|
|
}
|
|
static inline grub_err_t
|
|
grub_machine_mmap_unregister (int handle __attribute__ ((unused)))
|
|
{
|
|
return GRUB_ERR_NONE;
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* ! _GRUB_MEMORY_MACHINE_HEADER */
|