]> git.proxmox.com Git - grub2.git/blob - include/grub/i386/bsd.h
2009-08-24 Vladimir Serbinenko <phcoder@gmail.com>
[grub2.git] / include / grub / i386 / bsd.h
1 /*
2 * GRUB -- GRand Unified Bootloader
3 * Copyright (C) 2008,2009 Free Software Foundation, Inc.
4 *
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.
9 *
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.
14 *
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/>.
17 */
18
19 #ifndef GRUB_BSD_CPU_HEADER
20 #define GRUB_BSD_CPU_HEADER 1
21
22 #include <grub/types.h>
23
24 enum bsd_kernel_types
25 {
26 KERNEL_TYPE_NONE,
27 KERNEL_TYPE_FREEBSD,
28 KERNEL_TYPE_OPENBSD,
29 KERNEL_TYPE_NETBSD,
30 };
31
32 #define GRUB_BSD_TEMP_BUFFER 0x80000
33
34 #define FREEBSD_RB_ASKNAME (1 << 0) /* ask for file name to reboot from */
35 #define FREEBSD_RB_SINGLE (1 << 1) /* reboot to single user only */
36 #define FREEBSD_RB_NOSYNC (1 << 2) /* dont sync before reboot */
37 #define FREEBSD_RB_HALT (1 << 3) /* don't reboot, just halt */
38 #define FREEBSD_RB_INITNAME (1 << 4) /* name given for /etc/init (unused) */
39 #define FREEBSD_RB_DFLTROOT (1 << 5) /* use compiled-in rootdev */
40 #define FREEBSD_RB_KDB (1 << 6) /* give control to kernel debugger */
41 #define FREEBSD_RB_RDONLY (1 << 7) /* mount root fs read-only */
42 #define FREEBSD_RB_DUMP (1 << 8) /* dump kernel memory before reboot */
43 #define FREEBSD_RB_MINIROOT (1 << 9) /* mini-root present in memory at boot time */
44 #define FREEBSD_RB_CONFIG (1 << 10) /* invoke user configuration routing */
45 #define FREEBSD_RB_VERBOSE (1 << 11) /* print all potentially useful info */
46 #define FREEBSD_RB_SERIAL (1 << 12) /* user serial port as console */
47 #define FREEBSD_RB_CDROM (1 << 13) /* use cdrom as root */
48 #define FREEBSD_RB_GDB (1 << 15) /* use GDB remote debugger instead of DDB */
49 #define FREEBSD_RB_MUTE (1 << 16) /* Come up with the console muted */
50 #define FREEBSD_RB_PAUSE (1 << 20)
51 #define FREEBSD_RB_QUIET (1 << 21)
52 #define FREEBSD_RB_NOINTR (1 << 28)
53 #define FREENSD_RB_MULTIPLE (1 << 29) /* Use multiple consoles */
54 #define FREEBSD_RB_DUAL FREENSD_RB_MULTIPLE
55 #define FREEBSD_RB_BOOTINFO (1 << 31) /* have `struct bootinfo *' arg */
56
57 #define FREEBSD_B_DEVMAGIC 0xa0000000
58 #define FREEBSD_B_SLICESHIFT 20
59 #define FREEBSD_B_UNITSHIFT 16
60 #define FREEBSD_B_PARTSHIFT 8
61 #define FREEBSD_B_TYPESHIFT 0
62
63 #define FREEBSD_BOOTINFO_VERSION 1
64 #define FREEBSD_N_BIOS_GEOM 8
65
66 #define FREEBSD_MODINFO_END 0x0000 /* End of list */
67 #define FREEBSD_MODINFO_NAME 0x0001 /* Name of module (string) */
68 #define FREEBSD_MODINFO_TYPE 0x0002 /* Type of module (string) */
69 #define FREEBSD_MODINFO_ADDR 0x0003 /* Loaded address */
70 #define FREEBSD_MODINFO_SIZE 0x0004 /* Size of module */
71 #define FREEBSD_MODINFO_EMPTY 0x0005 /* Has been deleted */
72 #define FREEBSD_MODINFO_ARGS 0x0006 /* Parameters string */
73 #define FREEBSD_MODINFO_METADATA 0x8000 /* Module-specfic */
74
75 #define FREEBSD_MODINFOMD_AOUTEXEC 0x0001 /* a.out exec header */
76 #define FREEBSD_MODINFOMD_ELFHDR 0x0002 /* ELF header */
77 #define FREEBSD_MODINFOMD_SSYM 0x0003 /* start of symbols */
78 #define FREEBSD_MODINFOMD_ESYM 0x0004 /* end of symbols */
79 #define FREEBSD_MODINFOMD_DYNAMIC 0x0005 /* _DYNAMIC pointer */
80 #define FREEBSD_MODINFOMD_ENVP 0x0006 /* envp[] */
81 #define FREEBSD_MODINFOMD_HOWTO 0x0007 /* boothowto */
82 #define FREEBSD_MODINFOMD_KERNEND 0x0008 /* kernend */
83 #define FREEBSD_MODINFOMD_SHDR 0x0009 /* section header table */
84 #define FREEBSD_MODINFOMD_NOCOPY 0x8000 /* don't copy this metadata to the kernel */
85
86 #define FREEBSD_MODINFOMD_SMAP 0x1001
87
88 #define FREEBSD_MODINFOMD_DEPLIST (0x4001 | FREEBSD_MODINFOMD_NOCOPY) /* depends on */
89
90 #define FREEBSD_MODTYPE_KERNEL "elf kernel"
91 #define FREEBSD_MODTYPE_KERNEL64 "elf64 kernel"
92 #define FREEBSD_MODTYPE_ELF_MODULE "elf module"
93 #define FREEBSD_MODTYPE_ELF_MODULE_OBJ "elf obj module"
94 #define FREEBSD_MODTYPE_RAW "raw"
95
96 struct grub_freebsd_bootinfo
97 {
98 grub_uint32_t bi_version;
99 grub_uint8_t *bi_kernelname;
100 struct nfs_diskless *bi_nfs_diskless;
101 grub_uint32_t bi_n_bios_used;
102 grub_uint32_t bi_bios_geom[FREEBSD_N_BIOS_GEOM];
103 grub_uint32_t bi_size;
104 grub_uint8_t bi_memsizes_valid;
105 grub_uint8_t bi_bios_dev;
106 grub_uint8_t bi_pad[2];
107 grub_uint32_t bi_basemem;
108 grub_uint32_t bi_extmem;
109 grub_uint32_t bi_symtab;
110 grub_uint32_t bi_esymtab;
111 grub_uint32_t bi_kernend;
112 grub_uint32_t bi_envp;
113 grub_uint32_t bi_modulep;
114 } __attribute__ ((packed));
115
116 #define OPENBSD_RB_ASKNAME (1 << 0) /* ask for file name to reboot from */
117 #define OPENBSD_RB_SINGLE (1 << 1) /* reboot to single user only */
118 #define OPENBSD_RB_NOSYNC (1 << 2) /* dont sync before reboot */
119 #define OPENBSD_RB_HALT (1 << 3) /* don't reboot, just halt */
120 #define OPENBSD_RB_INITNAME (1 << 4) /* name given for /etc/init (unused) */
121 #define OPENBSD_RB_DFLTROOT (1 << 5) /* use compiled-in rootdev */
122 #define OPENBSD_RB_KDB (1 << 6) /* give control to kernel debugger */
123 #define OPENBSD_RB_RDONLY (1 << 7) /* mount root fs read-only */
124 #define OPENBSD_RB_DUMP (1 << 8) /* dump kernel memory before reboot */
125 #define OPENBSD_RB_MINIROOT (1 << 9) /* mini-root present in memory at boot time */
126 #define OPENBSD_RB_CONFIG (1 << 10) /* change configured devices */
127 #define OPENBSD_RB_TIMEBAD (1 << 11) /* don't call resettodr() in boot() */
128 #define OPENBSD_RB_POWERDOWN (1 << 12) /* attempt to power down machine */
129 #define OPENBSD_RB_SERCONS (1 << 13) /* use serial console if available */
130 #define OPENBSD_RB_USERREQ (1 << 14) /* boot() called at user request (e.g. ddb) */
131
132 #define OPENBSD_B_DEVMAGIC 0xa0000000
133 #define OPENBSD_B_ADAPTORSHIFT 24
134 #define OPENBSD_B_CTRLSHIFT 20
135 #define OPENBSD_B_UNITSHIFT 16
136 #define OPENBSD_B_PARTSHIFT 8
137 #define OPENBSD_B_TYPESHIFT 0
138
139 #define OPENBSD_BOOTARG_APIVER (OPENBSD_BAPIV_VECTOR | \
140 OPENBSD_BAPIV_ENV | \
141 OPENBSD_BAPIV_BMEMMAP)
142
143 #define OPENBSD_BAPIV_ANCIENT 0x0 /* MD old i386 bootblocks */
144 #define OPENBSD_BAPIV_VARS 0x1 /* MD structure w/ add info passed */
145 #define OPENBSD_BAPIV_VECTOR 0x2 /* MI vector of MD structures passed */
146 #define OPENBSD_BAPIV_ENV 0x4 /* MI environment vars vector */
147 #define OPENBSD_BAPIV_BMEMMAP 0x8 /* MI memory map passed is in bytes */
148
149 #define OPENBSD_BOOTARG_ENV 0x1000
150 #define OPENBSD_BOOTARG_END -1
151
152 #define OPENBSD_BOOTARG_MMAP 0
153
154 struct grub_openbsd_bios_mmap
155 {
156 grub_uint64_t addr;
157 grub_uint64_t len;
158 #define OPENBSD_MMAP_AVAILABLE 1
159 #define OPENBSD_MMAP_RESERVED 2
160 #define OPENBSD_MMAP_ACPI 3
161 #define OPENBSD_MMAP_NVS 4
162 grub_uint32_t type;
163 };
164
165 struct grub_openbsd_bootargs
166 {
167 int ba_type;
168 int ba_size;
169 struct grub_openbsd_bootargs *ba_next;
170 } __attribute__ ((packed));
171
172 #define NETBSD_RB_AUTOBOOT 0 /* flags for system auto-booting itself */
173
174 #define NETBSD_RB_ASKNAME (1 << 0) /* ask for file name to reboot from */
175 #define NETBSD_RB_SINGLE (1 << 1) /* reboot to single user only */
176 #define NETBSD_RB_NOSYNC (1 << 2) /* dont sync before reboot */
177 #define NETBSD_RB_HALT (1 << 3) /* don't reboot, just halt */
178 #define NETBSD_RB_INITNAME (1 << 4) /* name given for /etc/init (unused) */
179 #define NETBSD_RB_UNUSED1 (1 << 5) /* was RB_DFLTROOT, obsolete */
180 #define NETBSD_RB_KDB (1 << 6) /* give control to kernel debugger */
181 #define NETBSD_RB_RDONLY (1 << 7) /* mount root fs read-only */
182 #define NETBSD_RB_DUMP (1 << 8) /* dump kernel memory before reboot */
183 #define NETBSD_RB_MINIROOT (1 << 9) /* mini-root present in memory at boot time */
184 #define NETBSD_RB_STRING (1 << 10) /* use provided bootstr */
185 #define NETBSD_RB_POWERDOWN ((1 << 11) | RB_HALT) /* turn power off (or at least halt) */
186 #define NETBSD_RB_USERCONFIG (1 << 12) /* change configured devices */
187
188 #define NETBSD_AB_NORMAL 0 /* boot normally (default) */
189
190 #define NETBSD_AB_QUIET (1 << 16) /* boot quietly */
191 #define NETBSD_AB_VERBOSE (1 << 17) /* boot verbosely */
192 #define NETBSD_AB_SILENT (1 << 18) /* boot silently */
193 #define NETBSD_AB_DEBUG (1 << 19) /* boot with debug messages */
194 #define NETBSD_AB_NOSMP (1 << 28) /* Boot without SMP support. */
195 #define NETBSD_AB_NOACPI (1 << 29) /* Boot without ACPI support. */
196
197 struct grub_netbsd_bootinfo
198 {
199 grub_uint32_t bi_count;
200 void *bi_data[1];
201 };
202
203 #define NETBSD_BTINFO_BOOTPATH 0
204 #define NETBSD_BTINFO_ROOTDEVICE 1
205 #define NETBSD_BTINFO_BOOTDISK 3
206
207 struct grub_netbsd_btinfo_common
208 {
209 int len;
210 int type;
211 };
212
213 struct grub_netbsd_btinfo_bootpath
214 {
215 struct grub_netbsd_btinfo_common common;
216 char bootpath[80];
217 };
218
219 struct grub_netbsd_btinfo_rootdevice
220 {
221 struct grub_netbsd_btinfo_common common;
222 char devname[16];
223 };
224
225 struct grub_netbsd_btinfo_bootdisk
226 {
227 struct grub_netbsd_btinfo_common common;
228 int labelsector; /* label valid if != -1 */
229 struct
230 {
231 grub_uint16_t type, checksum;
232 char packname[16];
233 } label;
234 int biosdev;
235 int partition;
236 };
237
238 void grub_unix_real_boot (grub_addr_t entry, ...)
239 __attribute__ ((cdecl,noreturn));
240 grub_err_t grub_freebsd_load_elfmodule32 (grub_file_t file, int argc,
241 char *argv[], grub_addr_t *kern_end);
242 grub_err_t grub_freebsd_load_elfmodule_obj64 (grub_file_t file, int argc,
243 char *argv[],
244 grub_addr_t *kern_end);
245 grub_err_t grub_freebsd_load_elf_meta32 (grub_file_t file,
246 grub_addr_t *kern_end);
247 grub_err_t grub_freebsd_load_elf_meta64 (grub_file_t file,
248 grub_addr_t *kern_end);
249
250 grub_err_t grub_freebsd_add_meta (grub_uint32_t type, void *data,
251 grub_uint32_t len);
252 grub_err_t grub_freebsd_add_meta_module (char *filename, char *type,
253 int argc, char **argv,
254 grub_addr_t addr, grub_uint32_t size);
255
256 extern grub_uint8_t grub_bsd64_trampoline_start, grub_bsd64_trampoline_end;
257 extern grub_uint32_t grub_bsd64_trampoline_selfjump;
258 extern grub_uint32_t grub_bsd64_trampoline_gdt;
259
260 #endif /* ! GRUB_BSD_CPU_HEADER */