mirror of
https://git.proxmox.com/git/grub2
synced 2025-05-24 02:27:28 +00:00

* 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.
59 lines
1.7 KiB
C
59 lines
1.7 KiB
C
/*
|
|
* 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/>.
|
|
*/
|
|
|
|
#ifndef GRUB_INTERRUPT_MACHINE_HEADER
|
|
#define GRUB_INTERRUPT_MACHINE_HEADER 1
|
|
|
|
#include <grub/symbol.h>
|
|
#include <grub/types.h>
|
|
|
|
struct grub_bios_int_registers
|
|
{
|
|
grub_uint32_t eax;
|
|
grub_uint16_t es;
|
|
grub_uint16_t ds;
|
|
grub_uint16_t flags;
|
|
grub_uint16_t dummy;
|
|
grub_uint32_t ebx;
|
|
grub_uint32_t ecx;
|
|
grub_uint32_t edi;
|
|
grub_uint32_t esi;
|
|
grub_uint32_t edx;
|
|
};
|
|
|
|
#define GRUB_CPU_INT_FLAGS_CARRY 0x1
|
|
#define GRUB_CPU_INT_FLAGS_PARITY 0x4
|
|
#define GRUB_CPU_INT_FLAGS_ADJUST 0x10
|
|
#define GRUB_CPU_INT_FLAGS_ZERO 0x40
|
|
#define GRUB_CPU_INT_FLAGS_SIGN 0x80
|
|
#define GRUB_CPU_INT_FLAGS_TRAP 0x100
|
|
#define GRUB_CPU_INT_FLAGS_INTERRUPT 0x200
|
|
#define GRUB_CPU_INT_FLAGS_DIRECTION 0x400
|
|
#define GRUB_CPU_INT_FLAGS_OVERFLOW 0x800
|
|
#ifdef GRUB_MACHINE_PCBIOS
|
|
#define GRUB_CPU_INT_FLAGS_DEFAULT GRUB_CPU_INT_FLAGS_INTERRUPT
|
|
#else
|
|
#define GRUB_CPU_INT_FLAGS_DEFAULT 0
|
|
#endif
|
|
|
|
|
|
void EXPORT_FUNC (grub_bios_interrupt) (grub_uint8_t intno,
|
|
struct grub_bios_int_registers *regs);
|
|
|
|
#endif
|