]>
glassweightruler.freedombox.rocks Git - Ventoy.git/blob - GRUB2/MOD_SRC/grub-2.04/include/grub/kernel.h
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>
35 /* The module header. */
36 struct grub_module_header
38 /* The type of object. */
40 /* The size of object (including this header). */
44 /* "gmim" (GRUB Module Info Magic). */
45 #define GRUB_MODULE_MAGIC 0x676d696d
47 struct grub_module_info32
49 /* Magic number so we know we have modules present. */
51 /* The offset of the modules. */
53 /* The size of all modules plus this header. */
57 struct grub_module_info64
59 /* Magic number so we know we have modules present. */
61 grub_uint32_t padding
;
62 /* The offset of the modules. */
64 /* The size of all modules plus this header. */
69 /* Space isn't reusable on some platforms. */
70 /* On Qemu the preload space is readonly. */
71 /* On emu there is no preload space. */
72 /* On ieee1275 our code assumes that heap is p=v which isn't guaranteed for module space. */
73 #if defined (GRUB_MACHINE_QEMU) || defined (GRUB_MACHINE_EMU) \
74 || defined (GRUB_MACHINE_EFI) \
75 || (defined (GRUB_MACHINE_IEEE1275) && !defined (__sparc__))
76 #define GRUB_KERNEL_PRELOAD_SPACE_REUSABLE 0
79 #if defined (GRUB_MACHINE_PCBIOS) || defined (GRUB_MACHINE_COREBOOT) \
80 || defined (GRUB_MACHINE_MULTIBOOT) || defined (GRUB_MACHINE_MIPS_QEMU_MIPS) \
81 || defined (GRUB_MACHINE_MIPS_LOONGSON) || defined (GRUB_MACHINE_ARC) \
82 || (defined (__sparc__) && defined (GRUB_MACHINE_IEEE1275)) \
83 || defined (GRUB_MACHINE_UBOOT) || defined (GRUB_MACHINE_XEN) \
84 || defined(GRUB_MACHINE_XEN_PVH)
85 /* FIXME: stack is between 2 heap regions. Move it. */
86 #define GRUB_KERNEL_PRELOAD_SPACE_REUSABLE 1
89 #ifndef GRUB_KERNEL_PRELOAD_SPACE_REUSABLE
90 #error "Please check if preload space is reusable on this platform!"
93 #if GRUB_TARGET_SIZEOF_VOID_P == 8
94 #define grub_module_info grub_module_info64
96 #define grub_module_info grub_module_info32
99 extern grub_addr_t
EXPORT_VAR (grub_modbase
);
101 void EXPORT_FUNC(ventoy_env_hook_root
)(int hook
);
103 #define FOR_MODULES(var) for (\
104 var = (grub_modbase && ((((struct grub_module_info *) grub_modbase)->magic) == GRUB_MODULE_MAGIC)) ? (struct grub_module_header *) \
105 (grub_modbase + (((struct grub_module_info *) grub_modbase)->offset)) : 0;\
106 var && (grub_addr_t) var \
107 < (grub_modbase + (((struct grub_module_info *) grub_modbase)->size)); \
108 var = (struct grub_module_header *) \
109 (((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))))
111 grub_addr_t
grub_modules_get_end (void);
115 /* The start point of the C code. */
116 void grub_main (void) __attribute__ ((noreturn
));
118 /* The machine-specific initialization. This must initialize memory. */
119 void grub_machine_init (void);
121 /* The machine-specific finalization. */
122 void EXPORT_FUNC(grub_machine_fini
) (int flags
);
124 /* The machine-specific prefix initialization. */
126 grub_machine_get_bootlocation (char **device
, char **path
);
128 /* Register all the exported symbols. This is automatically generated. */
129 void grub_register_exported_symbols (void);
131 extern void (*EXPORT_VAR(grub_net_poll_cards_idle
)) (void);
133 #endif /* ! GRUB_KERNEL_HEADER */