/* * VasEBoot -- GRand Unified Bootloader * Copyright (C) 2002,2005,2006,2007,2008,2009 Free Software Foundation, Inc. * * VasEBoot 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. * * VasEBoot 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 VasEBoot. If not, see . */ #ifndef VasEBoot_KERNEL_HEADER #define VasEBoot_KERNEL_HEADER 1 #include #include enum { OBJ_TYPE_ELF, OBJ_TYPE_MEMDISK, OBJ_TYPE_CONFIG, OBJ_TYPE_PREFIX, OBJ_TYPE_PUBKEY }; /* The module header. */ struct VasEBoot_module_header { /* The type of object. */ VasEBoot_uint32_t type; /* The size of object (including this header). */ VasEBoot_uint32_t size; }; /* "gmim" (VasEBoot Module Info Magic). */ #define VasEBoot_MODULE_MAGIC 0x676d696d struct VasEBoot_module_info32 { /* Magic number so we know we have modules present. */ VasEBoot_uint32_t magic; /* The offset of the modules. */ VasEBoot_uint32_t offset; /* The size of all modules plus this header. */ VasEBoot_uint32_t size; }; struct VasEBoot_module_info64 { /* Magic number so we know we have modules present. */ VasEBoot_uint32_t magic; VasEBoot_uint32_t padding; /* The offset of the modules. */ VasEBoot_uint64_t offset; /* The size of all modules plus this header. */ VasEBoot_uint64_t size; }; #ifndef VasEBoot_UTIL /* Space isn't reusable on some platforms. */ /* On Qemu the preload space is readonly. */ /* On emu there is no preload space. */ /* On ieee1275 our code assumes that heap is p=v which isn't guaranteed for module space. */ #if defined (VasEBoot_MACHINE_QEMU) || defined (VasEBoot_MACHINE_EMU) \ || defined (VasEBoot_MACHINE_EFI) \ || (defined (VasEBoot_MACHINE_IEEE1275) && !defined (__sparc__)) #define VasEBoot_KERNEL_PRELOAD_SPACE_REUSABLE 0 #endif #if defined (VasEBoot_MACHINE_PCBIOS) || defined (VasEBoot_MACHINE_COREBOOT) \ || defined (VasEBoot_MACHINE_MULTIBOOT) || defined (VasEBoot_MACHINE_MIPS_QEMU_MIPS) \ || defined (VasEBoot_MACHINE_MIPS_LOONGSON) || defined (VasEBoot_MACHINE_ARC) \ || (defined (__sparc__) && defined (VasEBoot_MACHINE_IEEE1275)) || defined (VasEBoot_MACHINE_UBOOT) || defined (VasEBoot_MACHINE_XEN) /* FIXME: stack is between 2 heap regions. Move it. */ #define VasEBoot_KERNEL_PRELOAD_SPACE_REUSABLE 1 #endif #ifndef VasEBoot_KERNEL_PRELOAD_SPACE_REUSABLE #error "Please check if preload space is reusable on this platform!" #endif #if VasEBoot_TARGET_SIZEOF_VOID_P == 8 #define VasEBoot_module_info VasEBoot_module_info64 #else #define VasEBoot_module_info VasEBoot_module_info32 #endif extern VasEBoot_addr_t EXPORT_VAR (VasEBoot_modbase); #define FOR_MODULES(var) for (\ var = (VasEBoot_modbase && ((((struct VasEBoot_module_info *) VasEBoot_modbase)->magic) == VasEBoot_MODULE_MAGIC)) ? (struct VasEBoot_module_header *) \ (VasEBoot_modbase + (((struct VasEBoot_module_info *) VasEBoot_modbase)->offset)) : 0;\ var && (VasEBoot_addr_t) var \ < (VasEBoot_modbase + (((struct VasEBoot_module_info *) VasEBoot_modbase)->size)); \ var = (struct VasEBoot_module_header *) \ (((VasEBoot_uint32_t *) var) + ((((struct VasEBoot_module_header *) var)->size + sizeof (VasEBoot_addr_t) - 1) / sizeof (VasEBoot_addr_t)) * (sizeof (VasEBoot_addr_t) / sizeof (VasEBoot_uint32_t)))) VasEBoot_addr_t VasEBoot_modules_get_end (void); #endif /* The start point of the C code. */ void VasEBoot_main (void) __attribute__ ((noreturn)); /* The machine-specific initialization. This must initialize memory. */ void VasEBoot_machine_init (void); /* The machine-specific finalization. */ void EXPORT_FUNC(VasEBoot_machine_fini) (int flags); /* The machine-specific prefix initialization. */ void VasEBoot_machine_get_bootlocation (char **device, char **path); /* Register all the exported symbols. This is automatically generated. */ void VasEBoot_register_exported_symbols (void); extern void (*EXPORT_VAR(VasEBoot_net_poll_cards_idle)) (void); #endif /* ! VasEBoot_KERNEL_HEADER */