mirror of
https://git.proxmox.com/git/grub2
synced 2025-07-24 07:40:37 +00:00

* Makefile.util.def (libgrubmods.a): Add grub-core/kern/ia64/dl_helper.c * configure.ac: Add ia64-efi target. Probe for __ia64_trampoline, __udivsi3, __umoddi3, __udivdi3, __divsi3, __modsi3, __umodsi3, __moddi3 and __divdi3 symbols. * gentpl.py: Add ia64_efi platform. Rename x86_efi to efi and Add ia64-efi. All users updated. * grub-core/Makefile.am: Set KERNEL_HEADER_FILES for ia64-efi. * grub-core/Makefile.core.def (kernel.img): Add compile flags for ia64. Remove kern/generic/rtc_get_time_ms.c on EFI. Add kern/ia64/efi/startup.S, kern/ia64/efi/init.c, kern/ia64/dl.c, kern/ia64/dl_helper.c on ia64-efi. Add kern/emu/cache.c on emu. (linux): Use on loader/ia64/efi/linux.c on ia64. * grub-core/gensymlist.sh (grub_register_exported_symbols): Check whether symbol is a function. * grub-core/kern/dl.c [GRUB_MACHINE_EMU]: Include sys/mman.h. (grub_symbol): New field 'isfunc'. (grub_dl_resolve_symbol): Return whole symbol rather than just address. (grub_dl_register_symbol): New argument 'isfunc'. All users updated. (grub_dl_load_segments): Place all sections into the same region. [__ia64__]: Create trampolines and got. [GRUB_MACHINE_EMU]: Call mprotect. (grub_dl_resolve_symbols): Resolve symbol type as well. [__ia64__]: Create function descriptors. * grub-core/kern/efi/efi.c (grub_get_rtc): Renamed to ... (grub_rtc_get_time_ms): ... this. Expressions simplified. (grub_get_rtc): New function. * grub-core/kern/emu/cache.c [__ia64__]: New file. * grub-core/kern/emu/cache.S: Renamed to ... * grub-core/kern/emu/cache_s.S: ... this. [__ia64__]: Add a nop. * grub-core/kern/emu/full.c (grub_arch_dl_get_tramp_got_size) [__ia64__]: New function. * grub-core/kern/emu/lite.c [__ia64__]: Include ../ia64/dl.c. * grub-core/kern/ia64/dl.c: New file. * grub-core/kern/ia64/dl_helper.c: Likewise. * grub-core/kern/ia64/efi/init.c: New file. * grub-core/kern/ia64/efi/startup.S: Likewise. * grub-core/lib/efi/halt.c [__ia64__]: Don't try acpi. * grub-core/lib/ia64/longjmp.S: New file (from glibc). * grub-core/lib/ia64/setjmp.S: Likewise (from glibc). * grub-core/lib/setjmp.S [__ia64__]: Include ./ia64/setjmp.S. * grub-core/loader/ia64/efi/linux.c: New file. * include/grub/dl.h (GRUB_MOD_NAME): Redefined using C rather than asm. (GRUB_MOD_DEP): Likewise. (grub_dl) [__ia64__]: New fields got and tramp. (grub_dl): New field 'base'. (grub_dl_register_symbol): New argument isfunc. All users updated. (GRUB_IA64_DL_TRAMP_ALIGN): New definition. (GRUB_IA64_DL_TRAMP_SIZE): Likewise. (GRUB_IA64_DL_GOT_ALIGN): Likewise. (grub_ia64_dl_get_tramp_got_size): New proto. (GRUB_ARCH_DL_TRAMP_ALIGN) [__ia64__]: Likewise (GRUB_ARCH_DL_GOT_ALIGN) [__ia64__]: Likewise (grub_arch_dl_get_tramp_got_size) [__ia64__]: Likewise * include/grub/efi/api.h: Skip call wrappers on ia64. * include/grub/efi/pe32.h (GRUB_PE32_MACHINE_IA64): New definition. * include/grub/efi/time.h (GRUB_TICKS_PER_SECOND): Change to 1000. * include/grub/elf.h (ELF_ST_INFO): New definition. * include/grub/ia64/efi/kernel.h: New file. * include/grub/ia64/efi/memory.h: Likewise. * include/grub/ia64/efi/time.h: Likewise. * include/grub/ia64/kernel.h: Likewise. * include/grub/ia64/setjmp.h: Likewise (from glibc). * include/grub/ia64/time.h: New file. * include/grub/ia64/types.h: Likewise. * include/grub/libgcc.h (__udivsi3, __umodsi3, __umoddi3, __udivdi3, __moddi3, __divdi3, __divsi3, __modsi3, __ia64_trampoline): New protos. * include/grub/offsets.h (GRUB_KERNEL_IA64_EFI_PREFIX): New definition. (GRUB_KERNEL_IA64_EFI_PREFIX_END): Likewise. * include/grub/types.h (PRIxGRUB_ADDR): Likewise. * util/grub-mkimage.c (image_target_desc): New field pe_target. All users updated. (EFI64_HEADER_SIZE): New definition. All users updated. (image_targets): Add ia64-efi. * util/grub-mkimagexx.c (relocate_symbols): New arguments jumpers and jumpers_addr. All users updated. Create function descriptors. (count_funcs): New function. (unaligned_uint32): New struct. (MASK20): New definition. (MASK19): Likewise. (MASKF21): Likewise. (add_value_to_slot_20b): New function. (add_value_to_slot_21_real): Likewise. (add_value_to_slot_21): Likewise. (ia64_kernel_trampoline): New struct. (nopm): New variable. (jump): Likewise. (make_trampoline): New function. (relocate_addresses): Handle ia64. (make_reloc_section): Likewise. (load_image): Likewise. Also-By: Robert Millan <rmh.grub@aybabtu.com> Also-By: Vladimir Serbinenko <phcoder@gmail.com>
189 lines
7.0 KiB
C
189 lines
7.0 KiB
C
/*
|
|
* GRUB -- GRand Unified Bootloader
|
|
* Copyright (C) 2002,2003,2007,2008 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 OFFSETS_HEADER
|
|
#define OFFSETS_HEADER 1
|
|
|
|
/* The offset of GRUB_TOTAL_MODULE_SIZE. */
|
|
#define GRUB_KERNEL_I386_PC_TOTAL_MODULE_SIZE 0x8
|
|
|
|
/* The offset of GRUB_KERNEL_IMAGE_SIZE. */
|
|
#define GRUB_KERNEL_I386_PC_KERNEL_IMAGE_SIZE 0xc
|
|
|
|
/* The offset of GRUB_COMPRESSED_SIZE. */
|
|
#define GRUB_KERNEL_I386_PC_COMPRESSED_SIZE 0x10
|
|
|
|
/* The offset of GRUB_INSTALL_DOS_PART. */
|
|
#define GRUB_KERNEL_I386_PC_INSTALL_DOS_PART 0x14
|
|
|
|
/* The offset of GRUB_INSTALL_BSD_PART. */
|
|
#define GRUB_KERNEL_I386_PC_INSTALL_BSD_PART 0x18
|
|
|
|
/* Offset of reed_solomon_redundancy. */
|
|
#define GRUB_KERNEL_I386_PC_REED_SOLOMON_REDUNDANCY 0x1c
|
|
|
|
/* The size of the first region which won't be compressed. */
|
|
#define GRUB_KERNEL_I386_PC_RAW_SIZE 0xcd0
|
|
|
|
#define GRUB_KERNEL_I386_PC_NO_REED_SOLOMON_PART 0x730
|
|
|
|
/* The offset of GRUB_PREFIX. */
|
|
#define GRUB_KERNEL_I386_PC_PREFIX GRUB_KERNEL_I386_PC_RAW_SIZE
|
|
|
|
/* End of the data section. */
|
|
#define GRUB_KERNEL_I386_PC_PREFIX_END (GRUB_KERNEL_I386_PC_PREFIX + 0x40)
|
|
|
|
/* The segment where the kernel is loaded. */
|
|
#define GRUB_BOOT_I386_PC_KERNEL_SEG 0x800
|
|
|
|
#define GRUB_KERNEL_I386_PC_LINK_ADDR 0x8200
|
|
|
|
/* The upper memory area (starting at 640 kiB). */
|
|
#define GRUB_MEMORY_I386_PC_UPPER 0xa0000
|
|
#define GRUB_MEMORY_I386_QEMU_UPPER GRUB_MEMORY_I386_PC_UPPER
|
|
|
|
/* The offset of GRUB_CORE_ENTRY_ADDR. */
|
|
#define GRUB_BOOT_I386_QEMU_CORE_ENTRY_ADDR 0x4
|
|
|
|
/* The offset of GRUB_CORE_ENTRY_ADDR. */
|
|
#define GRUB_KERNEL_I386_QEMU_CORE_ENTRY_ADDR 0x8
|
|
|
|
/* The offset of GRUB_KERNEL_IMAGE_SIZE. */
|
|
#define GRUB_KERNEL_I386_QEMU_KERNEL_IMAGE_SIZE 0xc
|
|
|
|
/* The offset of GRUB_PREFIX. */
|
|
#define GRUB_KERNEL_I386_QEMU_PREFIX 0x10
|
|
|
|
/* End of the data section. */
|
|
#define GRUB_KERNEL_I386_QEMU_PREFIX_END 0x50
|
|
|
|
#define GRUB_KERNEL_I386_QEMU_LINK_ADDR 0x8200
|
|
|
|
/* The offset of GRUB_TOTAL_MODULE_SIZE. */
|
|
#define GRUB_KERNEL_SPARC64_IEEE1275_TOTAL_MODULE_SIZE 0x8
|
|
|
|
/* The offset of GRUB_KERNEL_IMAGE_SIZE. */
|
|
#define GRUB_KERNEL_SPARC64_IEEE1275_KERNEL_IMAGE_SIZE 0xc
|
|
|
|
/* The offset of GRUB_COMPRESSED_SIZE. */
|
|
#define GRUB_KERNEL_SPARC64_IEEE1275_COMPRESSED_SIZE 0x10
|
|
|
|
/* The offset of GRUB_PREFIX. */
|
|
#define GRUB_KERNEL_SPARC64_IEEE1275_PREFIX 0x14
|
|
|
|
/* End of the data section. */
|
|
#define GRUB_KERNEL_SPARC64_IEEE1275_PREFIX_END 0x114
|
|
|
|
#define GRUB_BOOT_SPARC64_IEEE1275_LIST_SIZE 12
|
|
|
|
#define GRUB_BOOT_SPARC64_IEEE1275_IMAGE_ADDRESS 0x4400
|
|
#define GRUB_KERNEL_SPARC64_IEEE1275_RAW_SIZE 0
|
|
#define GRUB_KERNEL_SPARC64_IEEE1275_LINK_ADDR 0x4400
|
|
|
|
#define GRUB_KERNEL_POWERPC_IEEE1275_PREFIX 0x4
|
|
#define GRUB_KERNEL_POWERPC_IEEE1275_PREFIX_END 0x44
|
|
#define GRUB_KERNEL_POWERPC_IEEE1275_LINK_ALIGN 4
|
|
#define GRUB_KERNEL_POWERPC_IEEE1275_LINK_ADDR 0x200000
|
|
|
|
#define GRUB_KERNEL_MIPS_LOONGSON_LINK_ADDR 0x80200000
|
|
|
|
#define GRUB_KERNEL_MIPS_LOONGSON_LINK_ALIGN 32
|
|
|
|
#define GRUB_KERNEL_MIPS_LOONGSON_COMPRESSED_SIZE 0x8
|
|
#define GRUB_KERNEL_MIPS_LOONGSON_UNCOMPRESSED_SIZE 0xc
|
|
|
|
#define GRUB_KERNEL_MIPS_LOONGSON_TOTAL_MODULE_SIZE 0x08
|
|
#define GRUB_KERNEL_MIPS_LOONGSON_PREFIX 0x0c
|
|
#define GRUB_KERNEL_MIPS_LOONGSON_PREFIX_END 0x54
|
|
|
|
/* The offset of GRUB_PREFIX. */
|
|
#define GRUB_KERNEL_I386_EFI_PREFIX 0x8
|
|
|
|
/* End of the data section. */
|
|
#define GRUB_KERNEL_I386_EFI_PREFIX_END 0x50
|
|
|
|
/* The offset of GRUB_PREFIX. */
|
|
#define GRUB_KERNEL_IA64_EFI_PREFIX 0x50
|
|
|
|
/* End of the data section. */
|
|
#define GRUB_KERNEL_IA64_EFI_PREFIX_END 0xa0
|
|
|
|
/* The offset of GRUB_PREFIX. */
|
|
#define GRUB_KERNEL_X86_64_EFI_PREFIX 0x8
|
|
|
|
/* End of the data section. */
|
|
#define GRUB_KERNEL_X86_64_EFI_PREFIX_END 0x50
|
|
|
|
#define GRUB_KERNEL_I386_COREBOOT_PREFIX 0x2
|
|
#define GRUB_KERNEL_I386_COREBOOT_PREFIX_END 0x42
|
|
#define GRUB_KERNEL_I386_COREBOOT_LINK_ADDR 0x8200
|
|
|
|
#define GRUB_KERNEL_I386_MULTIBOOT_PREFIX GRUB_KERNEL_I386_COREBOOT_PREFIX
|
|
#define GRUB_KERNEL_I386_MULTIBOOT_PREFIX_END GRUB_KERNEL_I386_COREBOOT_PREFIX_END
|
|
|
|
#define GRUB_KERNEL_I386_IEEE1275_PREFIX 0x2
|
|
#define GRUB_KERNEL_I386_IEEE1275_PREFIX_END 0x42
|
|
#define GRUB_KERNEL_I386_IEEE1275_LINK_ADDR 0x10000
|
|
|
|
#define GRUB_KERNEL_I386_IEEE1275_MOD_ALIGN 0x1000
|
|
#define GRUB_KERNEL_I386_COREBOOT_MOD_ALIGN 0x1
|
|
#define GRUB_KERNEL_I386_MULTIBOOT_MOD_ALIGN GRUB_KERNEL_I386_COREBOOT_MOD_ALIGN
|
|
|
|
/* Non-zero value is only needed for PowerMacs. */
|
|
#define GRUB_KERNEL_I386_IEEE1275_MOD_GAP 0x0
|
|
#define GRUB_KERNEL_I386_COREBOOT_MOD_GAP 0x0
|
|
|
|
#define GRUB_KERNEL_POWERPC_IEEE1275_MOD_ALIGN 0x1000
|
|
|
|
#define GRUB_KERNEL_MIPS_LOONGSON_MOD_ALIGN 0x1
|
|
|
|
/* Minimal gap between _end and the start of the modules. It's a hack
|
|
for PowerMac to prevent "CLAIM failed" error. The real fix is to
|
|
rewrite grub-mkimage to generate valid ELF files. */
|
|
#define GRUB_KERNEL_POWERPC_IEEE1275_MOD_GAP 0x8000
|
|
|
|
#ifdef GRUB_MACHINE
|
|
#define GRUB_OFFSETS_CONCAT_(a,b,c) a ## b ## c
|
|
#define GRUB_OFFSETS_CONCAT(a,b,c) GRUB_OFFSETS_CONCAT_(a,b,c)
|
|
#define GRUB_KERNEL_MACHINE_MOD_ALIGN GRUB_OFFSETS_CONCAT (GRUB_KERNEL_, GRUB_MACHINE, _MOD_ALIGN)
|
|
#define GRUB_KERNEL_MACHINE_MOD_GAP GRUB_OFFSETS_CONCAT (GRUB_KERNEL_, GRUB_MACHINE, _MOD_GAP)
|
|
#define GRUB_KERNEL_MACHINE_TOTAL_MODULE_SIZE GRUB_OFFSETS_CONCAT (GRUB_KERNEL_, GRUB_MACHINE, _TOTAL_MODULE_SIZE)
|
|
#define GRUB_KERNEL_MACHINE_KERNEL_IMAGE_SIZE GRUB_OFFSETS_CONCAT (GRUB_KERNEL_, GRUB_MACHINE, _KERNEL_IMAGE_SIZE)
|
|
#define GRUB_KERNEL_MACHINE_COMPRESSED_SIZE GRUB_OFFSETS_CONCAT (GRUB_KERNEL_, GRUB_MACHINE, _COMPRESSED_SIZE)
|
|
#define GRUB_KERNEL_MACHINE_UNCOMPRESSED_SIZE GRUB_OFFSETS_CONCAT (GRUB_KERNEL_, GRUB_MACHINE, _UNCOMPRESSED_SIZE)
|
|
|
|
#define GRUB_KERNEL_MACHINE_PREFIX GRUB_OFFSETS_CONCAT (GRUB_KERNEL_, GRUB_MACHINE, _PREFIX)
|
|
#define GRUB_KERNEL_MACHINE_PREFIX_END GRUB_OFFSETS_CONCAT (GRUB_KERNEL_, GRUB_MACHINE, _PREFIX_END)
|
|
#define GRUB_BOOT_MACHINE_KERNEL_SEG GRUB_OFFSETS_CONCAT (GRUB_BOOT_, GRUB_MACHINE, _KERNEL_SEG)
|
|
#define GRUB_MEMORY_MACHINE_UPPER GRUB_OFFSETS_CONCAT (GRUB_MEMORY_, GRUB_MACHINE, _UPPER)
|
|
#define GRUB_KERNEL_MACHINE_RAW_SIZE GRUB_OFFSETS_CONCAT (GRUB_KERNEL_, GRUB_MACHINE, _RAW_SIZE)
|
|
#define GRUB_KERNEL_MACHINE_INSTALL_BSD_PART GRUB_OFFSETS_CONCAT (GRUB_KERNEL_, GRUB_MACHINE, _INSTALL_BSD_PART)
|
|
#define GRUB_KERNEL_MACHINE_INSTALL_DOS_PART GRUB_OFFSETS_CONCAT (GRUB_KERNEL_, GRUB_MACHINE, _INSTALL_DOS_PART)
|
|
#endif
|
|
|
|
#ifndef ASM_FILE
|
|
struct grub_pc_bios_boot_blocklist
|
|
{
|
|
grub_uint64_t start;
|
|
grub_uint16_t len;
|
|
grub_uint16_t segment;
|
|
} __attribute__ ((packed));
|
|
#endif
|
|
|
|
#endif
|