2 * GRUB -- GRand Unified Bootloader
3 * Copyright (C) 2002,2005,2006,2007,2008,2009 Free Software Foundation, Inc.
5 * GRUB is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
10 * GRUB is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with GRUB. If not, see <http://www.gnu.org/licenses/>.
19 #ifndef GRUB_KERNEL_HEADER
20 #define GRUB_KERNEL_HEADER 1
22 #include <grub/types.h>
23 #include <grub/symbol.h>
34 /* The module header. */
35 struct grub_module_header
37 /* The type of object. */
39 /* The size of object (including this header). */
43 /* "gmim" (GRUB Module Info Magic). */
44 #define GRUB_MODULE_MAGIC 0x676d696d
46 struct grub_module_info32
48 /* Magic number so we know we have modules present. */
50 /* The offset of the modules. */
52 /* The size of all modules plus this header. */
56 struct grub_module_info64
58 /* Magic number so we know we have modules present. */
60 grub_uint32_t padding
;
61 /* The offset of the modules. */
63 /* The size of all modules plus this header. */
68 /* Space isn't reusable on some platforms. */
69 /* On Qemu the preload space is readonly. */
70 /* On emu there is no preload space. */
71 /* On ieee1275 our code assumes that heap is p=v which isn't guaranteed for module space. */
72 #if defined (GRUB_MACHINE_QEMU) || defined (GRUB_MACHINE_EMU) \
73 || defined (GRUB_MACHINE_EFI) \
74 || (defined (GRUB_MACHINE_IEEE1275) && !defined (__sparc__))
75 #define GRUB_KERNEL_PRELOAD_SPACE_REUSABLE 0
78 #if defined (GRUB_MACHINE_PCBIOS) || defined (GRUB_MACHINE_COREBOOT) \
79 || defined (GRUB_MACHINE_MULTIBOOT) || defined (GRUB_MACHINE_MIPS_QEMU_MIPS) \
80 || defined (GRUB_MACHINE_MIPS_LOONGSON) || defined (GRUB_MACHINE_ARC) \
81 || (defined (__sparc__) && defined (GRUB_MACHINE_IEEE1275)) || defined (GRUB_MACHINE_UBOOT) || defined (GRUB_MACHINE_XEN)
82 /* FIXME: stack is between 2 heap regions. Move it. */
83 #define GRUB_KERNEL_PRELOAD_SPACE_REUSABLE 1
86 #ifndef GRUB_KERNEL_PRELOAD_SPACE_REUSABLE
87 #error "Please check if preload space is reusable on this platform!"
90 #if GRUB_TARGET_SIZEOF_VOID_P == 8
91 #define grub_module_info grub_module_info64
93 #define grub_module_info grub_module_info32
96 extern grub_addr_t
EXPORT_VAR (grub_modbase
);
98 #define FOR_MODULES(var) for (\
99 var = (grub_modbase && ((((struct grub_module_info *) grub_modbase)->magic) == GRUB_MODULE_MAGIC)) ? (struct grub_module_header *) \
100 (grub_modbase + (((struct grub_module_info *) grub_modbase)->offset)) : 0;\
101 var && (grub_addr_t) var \
102 < (grub_modbase + (((struct grub_module_info *) grub_modbase)->size)); \
103 var = (struct grub_module_header *) \
104 (((grub_uint32_t *) var) + ((((struct grub_module_header *) var)->size + sizeof (grub_addr_t) - 1) / sizeof (grub_addr_t)) * (sizeof (grub_addr_t) / sizeof (grub_uint32_t))))
106 grub_addr_t
grub_modules_get_end (void);
110 /* The start point of the C code. */
111 void grub_main (void) __attribute__ ((noreturn
));
113 /* The machine-specific initialization. This must initialize memory. */
114 void grub_machine_init (void);
116 /* The machine-specific finalization. */
117 void EXPORT_FUNC(grub_machine_fini
) (int flags
);
119 /* The machine-specific prefix initialization. */
121 grub_machine_get_bootlocation (char **device
, char **path
);
123 /* Register all the exported symbols. This is automatically generated. */
124 void grub_register_exported_symbols (void);
126 extern void (*EXPORT_VAR(grub_net_poll_cards_idle
)) (void);
128 #endif /* ! GRUB_KERNEL_HEADER */