blob: 0fac3465f2e38e5612a31cfa83e83cdcad95e83e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001 THE LINUX/I386 BOOT PROTOCOL
2 ----------------------------
3
4 H. Peter Anvin <hpa@zytor.com>
H. Peter Anvindb2668f2007-05-23 16:59:27 -07005 Last update 2007-05-23
Linus Torvalds1da177e2005-04-16 15:20:36 -07006
7On the i386 platform, the Linux kernel uses a rather complicated boot
8convention. This has evolved partially due to historical aspects, as
9well as the desire in the early days to have the kernel itself be a
10bootable image, the complicated PC memory model and due to changed
11expectations in the PC industry caused by the effective demise of
12real-mode DOS as a mainstream operating system.
13
H. Peter Anvinde372ec2007-05-08 20:37:02 -070014Currently, the following versions of the Linux/i386 boot protocol exist.
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
16Old kernels: zImage/Image support only. Some very early kernels
17 may not even support a command line.
18
19Protocol 2.00: (Kernel 1.3.73) Added bzImage and initrd support, as
20 well as a formalized way to communicate between the
21 boot loader and the kernel. setup.S made relocatable,
22 although the traditional setup area still assumed
23 writable.
24
25Protocol 2.01: (Kernel 1.3.76) Added a heap overrun warning.
26
27Protocol 2.02: (Kernel 2.4.0-test3-pre3) New command line protocol.
28 Lower the conventional memory ceiling. No overwrite
29 of the traditional setup area, thus making booting
30 safe for systems which use the EBDA from SMM or 32-bit
31 BIOS entry points. zImage deprecated but still
32 supported.
33
34Protocol 2.03: (Kernel 2.4.18-pre1) Explicitly makes the highest possible
35 initrd address available to the bootloader.
36
H. Peter Anvinf8eeaaf2005-09-06 15:17:24 -070037Protocol 2.04: (Kernel 2.6.14) Extend the syssize field to four bytes.
Bernhard Walle8f9aeca2007-05-02 19:27:10 +020038
Vivek Goyalbe274ee2006-12-07 02:14:04 +010039Protocol 2.05: (Kernel 2.6.20) Make protected mode kernel relocatable.
40 Introduce relocatable_kernel and kernel_alignment fields.
H. Peter Anvinf8eeaaf2005-09-06 15:17:24 -070041
Bernhard Walle8f9aeca2007-05-02 19:27:10 +020042Protocol 2.06: (Kernel 2.6.22) Added a field that contains the size of
43 the boot command line
44
Huang, Yingfb884382008-03-28 10:49:50 +080045Protocol 2.09: (kernel 2.6.26) Added a field of 64-bit physical
46 pointer to single linked list of struct setup_data.
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48**** MEMORY LAYOUT
49
50The traditional memory map for the kernel loader, used for Image or
51zImage kernels, typically looks like:
52
53 | |
540A0000 +------------------------+
55 | Reserved for BIOS | Do not use. Reserved for BIOS EBDA.
5609A000 +------------------------+
H. Peter Anvindec04cf2007-05-17 15:50:47 -070057 | Command line |
58 | Stack/heap | For use by the kernel real-mode code.
Linus Torvalds1da177e2005-04-16 15:20:36 -070059098000 +------------------------+
60 | Kernel setup | The kernel real-mode code.
61090200 +------------------------+
62 | Kernel boot sector | The kernel legacy boot sector.
63090000 +------------------------+
64 | Protected-mode kernel | The bulk of the kernel image.
65010000 +------------------------+
66 | Boot loader | <- Boot sector entry point 0000:7C00
67001000 +------------------------+
68 | Reserved for MBR/BIOS |
69000800 +------------------------+
70 | Typically used by MBR |
71000600 +------------------------+
72 | BIOS use only |
73000000 +------------------------+
74
75
76When using bzImage, the protected-mode kernel was relocated to
770x100000 ("high memory"), and the kernel real-mode block (boot sector,
78setup, and stack/heap) was made relocatable to any address between
H. Peter Anvindec04cf2007-05-17 15:50:47 -0700790x10000 and end of low memory. Unfortunately, in protocols 2.00 and
802.01 the 0x90000+ memory range is still used internally by the kernel;
81the 2.02 protocol resolves that problem.
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83It is desirable to keep the "memory ceiling" -- the highest point in
84low memory touched by the boot loader -- as low as possible, since
85some newer BIOSes have begun to allocate some rather large amounts of
86memory, called the Extended BIOS Data Area, near the top of low
87memory. The boot loader should use the "INT 12h" BIOS call to verify
88how much low memory is available.
89
90Unfortunately, if INT 12h reports that the amount of memory is too
91low, there is usually nothing the boot loader can do but to report an
92error to the user. The boot loader should therefore be designed to
93take up as little space in low memory as it reasonably can. For
94zImage or old bzImage kernels, which need data written into the
950x90000 segment, the boot loader should make sure not to use memory
96above the 0x9A000 point; too many BIOSes will break above that point.
97
H. Peter Anvindec04cf2007-05-17 15:50:47 -070098For a modern bzImage kernel with boot protocol version >= 2.02, a
99memory layout like the following is suggested:
100
101 ~ ~
102 | Protected-mode kernel |
103100000 +------------------------+
104 | I/O memory hole |
1050A0000 +------------------------+
106 | Reserved for BIOS | Leave as much as possible unused
107 ~ ~
108 | Command line | (Can also be below the X+10000 mark)
109X+10000 +------------------------+
110 | Stack/heap | For use by the kernel real-mode code.
111X+08000 +------------------------+
112 | Kernel setup | The kernel real-mode code.
113 | Kernel boot sector | The kernel legacy boot sector.
114X +------------------------+
115 | Boot loader | <- Boot sector entry point 0000:7C00
116001000 +------------------------+
117 | Reserved for MBR/BIOS |
118000800 +------------------------+
119 | Typically used by MBR |
120000600 +------------------------+
121 | BIOS use only |
122000000 +------------------------+
123
124... where the address X is as low as the design of the boot loader
125permits.
126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
128**** THE REAL-MODE KERNEL HEADER
129
130In the following text, and anywhere in the kernel boot sequence, "a
131sector" refers to 512 bytes. It is independent of the actual sector
132size of the underlying medium.
133
134The first step in loading a Linux kernel should be to load the
135real-mode code (boot sector and setup code) and then examine the
136following header at offset 0x01f1. The real-mode code can total up to
13732K, although the boot loader may choose to load only the first two
138sectors (1K) and then examine the bootup sector size.
139
140The header looks like:
141
142Offset Proto Name Meaning
143/Size
144
H. Peter Anvinf8eeaaf2005-09-06 15:17:24 -070014501F1/1 ALL(1 setup_sects The size of the setup in sectors
Linus Torvalds1da177e2005-04-16 15:20:36 -070014601F2/2 ALL root_flags If set, the root is mounted readonly
H. Peter Anvinf8eeaaf2005-09-06 15:17:24 -070014701F4/4 2.04+(2 syssize The size of the 32-bit code in 16-byte paras
Linus Torvalds1da177e2005-04-16 15:20:36 -070014801F8/2 ALL ram_size DO NOT USE - for bootsect.S use only
14901FA/2 ALL vid_mode Video mode control
15001FC/2 ALL root_dev Default root device number
15101FE/2 ALL boot_flag 0xAA55 magic number
1520200/2 2.00+ jump Jump instruction
1530202/4 2.00+ header Magic signature "HdrS"
1540206/2 2.00+ version Boot protocol version supported
1550208/4 2.00+ realmode_swtch Boot loader hook (see below)
156020C/2 2.00+ start_sys The load-low segment (0x1000) (obsolete)
157020E/2 2.00+ kernel_version Pointer to kernel version string
1580210/1 2.00+ type_of_loader Boot loader identifier
1590211/1 2.00+ loadflags Boot protocol option flags
1600212/2 2.00+ setup_move_size Move to high memory size (used with hooks)
1610214/4 2.00+ code32_start Boot loader hook (see below)
1620218/4 2.00+ ramdisk_image initrd load address (set by boot loader)
163021C/4 2.00+ ramdisk_size initrd size (set by boot loader)
1640220/4 2.00+ bootsect_kludge DO NOT USE - for bootsect.S use only
1650224/2 2.01+ heap_end_ptr Free memory after setup end
1660226/2 N/A pad1 Unused
1670228/4 2.02+ cmd_line_ptr 32-bit pointer to the kernel command line
168022C/4 2.03+ initrd_addr_max Highest legal initrd address
Vivek Goyald263b212006-12-07 02:14:13 +01001690230/4 2.05+ kernel_alignment Physical addr alignment required for kernel
1700234/1 2.05+ relocatable_kernel Whether kernel is relocatable or not
Bernhard Walle8f9aeca2007-05-02 19:27:10 +02001710235/3 N/A pad2 Unused
1720238/4 2.06+ cmdline_size Maximum size of the kernel command line
Rusty Russelle5371ac2007-10-21 16:41:33 -0700173023C/4 2.07+ hardware_subarch Hardware subarchitecture
1740240/8 2.07+ hardware_subarch_data Subarchitecture-specific data
Ian Campbell87253d12008-02-19 11:12:30 +00001750248/4 2.08+ payload_offset Offset of kernel payload
176024C/4 2.08+ payload_length Length of kernel payload
Huang, Yingfb884382008-03-28 10:49:50 +08001770250/8 2.09+ setup_data 64-bit physical pointer to linked list
178 of struct setup_data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
H. Peter Anvinf8eeaaf2005-09-06 15:17:24 -0700180(1) For backwards compatibility, if the setup_sects field contains 0, the
181 real value is 4.
182
183(2) For boot protocol prior to 2.04, the upper two bytes of the syssize
184 field are unusable, which means the size of a bzImage kernel
185 cannot be determined.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
187If the "HdrS" (0x53726448) magic number is not found at offset 0x202,
188the boot protocol version is "old". Loading an old kernel, the
189following parameters should be assumed:
190
191 Image type = zImage
192 initrd not supported
193 Real-mode kernel must be located at 0x90000.
194
195Otherwise, the "version" field contains the protocol version,
196e.g. protocol version 2.01 will contain 0x0201 in this field. When
197setting fields in the header, you must make sure only to set fields
198supported by the protocol version in use.
199
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
H. Peter Anvindec04cf2007-05-17 15:50:47 -0700201**** DETAILS OF HEADER FIELDS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
H. Peter Anvindec04cf2007-05-17 15:50:47 -0700203For each field, some are information from the kernel to the bootloader
204("read"), some are expected to be filled out by the bootloader
205("write"), and some are expected to be read and modified by the
206bootloader ("modify").
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
H. Peter Anvindec04cf2007-05-17 15:50:47 -0700208All general purpose boot loaders should write the fields marked
209(obligatory). Boot loaders who want to load the kernel at a
210nonstandard address should fill in the fields marked (reloc); other
211boot loaders can ignore those fields.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
H. Peter Anvindb2668f2007-05-23 16:59:27 -0700213The byte order of all fields is littleendian (this is x86, after all.)
214
Rusty Russelle5371ac2007-10-21 16:41:33 -0700215Field name: setup_sects
H. Peter Anvindec04cf2007-05-17 15:50:47 -0700216Type: read
217Offset/size: 0x1f1/1
218Protocol: ALL
219
220 The size of the setup code in 512-byte sectors. If this field is
221 0, the real value is 4. The real-mode code consists of the boot
222 sector (always one 512-byte sector) plus the setup code.
223
224Field name: root_flags
225Type: modify (optional)
226Offset/size: 0x1f2/2
227Protocol: ALL
228
229 If this field is nonzero, the root defaults to readonly. The use of
230 this field is deprecated; use the "ro" or "rw" options on the
231 command line instead.
232
233Field name: syssize
234Type: read
235Offset/size: 0x1f4/4 (protocol 2.04+) 0x1f4/2 (protocol ALL)
236Protocol: 2.04+
237
238 The size of the protected-mode code in units of 16-byte paragraphs.
239 For protocol versions older than 2.04 this field is only two bytes
240 wide, and therefore cannot be trusted for the size of a kernel if
241 the LOAD_HIGH flag is set.
242
243Field name: ram_size
244Type: kernel internal
245Offset/size: 0x1f8/2
246Protocol: ALL
247
248 This field is obsolete.
249
250Field name: vid_mode
251Type: modify (obligatory)
252Offset/size: 0x1fa/2
253
254 Please see the section on SPECIAL COMMAND LINE OPTIONS.
255
256Field name: root_dev
257Type: modify (optional)
258Offset/size: 0x1fc/2
259Protocol: ALL
260
261 The default root device device number. The use of this field is
262 deprecated, use the "root=" option on the command line instead.
263
264Field name: boot_flag
265Type: read
266Offset/size: 0x1fe/2
267Protocol: ALL
268
269 Contains 0xAA55. This is the closest thing old Linux kernels have
270 to a magic number.
271
272Field name: jump
273Type: read
274Offset/size: 0x200/2
275Protocol: 2.00+
276
277 Contains an x86 jump instruction, 0xEB followed by a signed offset
278 relative to byte 0x202. This can be used to determine the size of
279 the header.
280
281Field name: header
282Type: read
283Offset/size: 0x202/4
284Protocol: 2.00+
285
286 Contains the magic number "HdrS" (0x53726448).
287
288Field name: version
289Type: read
290Offset/size: 0x206/2
291Protocol: 2.00+
292
H. Peter Anvindb2668f2007-05-23 16:59:27 -0700293 Contains the boot protocol version, in (major << 8)+minor format,
294 e.g. 0x0204 for version 2.04, and 0x0a11 for a hypothetical version
295 10.17.
H. Peter Anvindec04cf2007-05-17 15:50:47 -0700296
297Field name: readmode_swtch
298Type: modify (optional)
299Offset/size: 0x208/4
300Protocol: 2.00+
301
H. Peter Anvindb2668f2007-05-23 16:59:27 -0700302 Boot loader hook (see ADVANCED BOOT LOADER HOOKS below.)
H. Peter Anvindec04cf2007-05-17 15:50:47 -0700303
304Field name: start_sys
305Type: read
306Offset/size: 0x20c/4
307Protocol: 2.00+
308
309 The load low segment (0x1000). Obsolete.
310
311Field name: kernel_version
312Type: read
313Offset/size: 0x20e/2
314Protocol: 2.00+
315
316 If set to a nonzero value, contains a pointer to a NUL-terminated
317 human-readable kernel version number string, less 0x200. This can
318 be used to display the kernel version to the user. This value
H. Peter Anvindb2668f2007-05-23 16:59:27 -0700319 should be less than (0x200*setup_sects).
320
321 For example, if this value is set to 0x1c00, the kernel version
322 number string can be found at offset 0x1e00 in the kernel file.
323 This is a valid value if and only if the "setup_sects" field
324 contains the value 15 or higher, as:
325
326 0x1c00 < 15*0x200 (= 0x1e00) but
327 0x1c00 >= 14*0x200 (= 0x1c00)
328
329 0x1c00 >> 9 = 14, so the minimum value for setup_secs is 15.
H. Peter Anvindec04cf2007-05-17 15:50:47 -0700330
331Field name: type_of_loader
332Type: write (obligatory)
333Offset/size: 0x210/1
334Protocol: 2.00+
335
336 If your boot loader has an assigned id (see table below), enter
337 0xTV here, where T is an identifier for the boot loader and V is
338 a version number. Otherwise, enter 0xFF here.
339
340 Assigned boot loader ids:
H. Peter Anvinde372ec2007-05-08 20:37:02 -0700341 0 LILO (0x00 reserved for pre-2.00 bootloader)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 1 Loadlin
H. Peter Anvinde372ec2007-05-08 20:37:02 -0700343 2 bootsect-loader (0x20, all other values reserved)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 3 SYSLINUX
345 4 EtherBoot
346 5 ELILO
347 7 GRuB
348 8 U-BOOT
Jeremy Fitzhardinge354332e2006-09-12 20:35:57 -0700349 9 Xen
H. Peter Anvinc229ec52007-01-26 09:15:47 -0800350 A Gujin
H. Peter Anvindec04cf2007-05-17 15:50:47 -0700351 B Qemu
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
H. Peter Anvindec04cf2007-05-17 15:50:47 -0700353 Please contact <hpa@zytor.com> if you need a bootloader ID
354 value assigned.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
H. Peter Anvindec04cf2007-05-17 15:50:47 -0700356Field name: loadflags
357Type: modify (obligatory)
358Offset/size: 0x211/1
359Protocol: 2.00+
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
H. Peter Anvindec04cf2007-05-17 15:50:47 -0700361 This field is a bitmask.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
H. Peter Anvindec04cf2007-05-17 15:50:47 -0700363 Bit 0 (read): LOADED_HIGH
364 - If 0, the protected-mode code is loaded at 0x10000.
365 - If 1, the protected-mode code is loaded at 0x100000.
H. Peter Anvinde372ec2007-05-08 20:37:02 -0700366
Rusty Russelle5371ac2007-10-21 16:41:33 -0700367 Bit 6 (write): KEEP_SEGMENTS
368 Protocol: 2.07+
369 - if 0, reload the segment registers in the 32bit entry point.
370 - if 1, do not reload the segment registers in the 32bit entry point.
371 Assume that %cs %ds %ss %es are all set to flat segments with
372 a base of 0 (or the equivalent for their environment).
373
H. Peter Anvindec04cf2007-05-17 15:50:47 -0700374 Bit 7 (write): CAN_USE_HEAP
375 Set this bit to 1 to indicate that the value entered in the
376 heap_end_ptr is valid. If this field is clear, some setup code
377 functionality will be disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
H. Peter Anvindec04cf2007-05-17 15:50:47 -0700379Field name: setup_move_size
380Type: modify (obligatory)
381Offset/size: 0x212/2
382Protocol: 2.00-2.01
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
H. Peter Anvindec04cf2007-05-17 15:50:47 -0700384 When using protocol 2.00 or 2.01, if the real mode kernel is not
385 loaded at 0x90000, it gets moved there later in the loading
386 sequence. Fill in this field if you want additional data (such as
387 the kernel command line) moved in addition to the real-mode kernel
388 itself.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
H. Peter Anvindec04cf2007-05-17 15:50:47 -0700390 The unit is bytes starting with the beginning of the boot sector.
391
392 This field is can be ignored when the protocol is 2.02 or higher, or
393 if the real-mode code is loaded at 0x90000.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
H. Peter Anvindec04cf2007-05-17 15:50:47 -0700395Field name: code32_start
396Type: modify (optional, reloc)
397Offset/size: 0x214/4
398Protocol: 2.00+
399
400 The address to jump to in protected mode. This defaults to the load
401 address of the kernel, and can be used by the boot loader to
402 determine the proper load address.
403
404 This field can be modified for two purposes:
405
H. Peter Anvindb2668f2007-05-23 16:59:27 -0700406 1. as a boot loader hook (see ADVANCED BOOT LOADER HOOKS below.)
H. Peter Anvindec04cf2007-05-17 15:50:47 -0700407
408 2. if a bootloader which does not install a hook loads a
409 relocatable kernel at a nonstandard address it will have to modify
410 this field to point to the load address.
411
412Field name: ramdisk_image
413Type: write (obligatory)
414Offset/size: 0x218/4
415Protocol: 2.00+
416
417 The 32-bit linear address of the initial ramdisk or ramfs. Leave at
418 zero if there is no initial ramdisk/ramfs.
419
420Field name: ramdisk_size
421Type: write (obligatory)
422Offset/size: 0x21c/4
423Protocol: 2.00+
424
425 Size of the initial ramdisk or ramfs. Leave at zero if there is no
426 initial ramdisk/ramfs.
427
428Field name: bootsect_kludge
429Type: kernel internal
430Offset/size: 0x220/4
431Protocol: 2.00+
432
433 This field is obsolete.
434
435Field name: heap_end_ptr
436Type: write (obligatory)
437Offset/size: 0x224/2
438Protocol: 2.01+
439
440 Set this field to the offset (from the beginning of the real-mode
441 code) of the end of the setup stack/heap, minus 0x0200.
442
443Field name: cmd_line_ptr
444Type: write (obligatory)
445Offset/size: 0x228/4
446Protocol: 2.02+
447
448 Set this field to the linear address of the kernel command line.
449 The kernel command line can be located anywhere between the end of
450 the setup heap and 0xA0000; it does not have to be located in the
451 same 64K segment as the real-mode code itself.
452
453 Fill in this field even if your boot loader does not support a
454 command line, in which case you can point this to an empty string
455 (or better yet, to the string "auto".) If this field is left at
456 zero, the kernel will assume that your boot loader does not support
457 the 2.02+ protocol.
458
459Field name: initrd_addr_max
460Type: read
461Offset/size: 0x22c/4
462Protocol: 2.03+
463
464 The maximum address that may be occupied by the initial
465 ramdisk/ramfs contents. For boot protocols 2.02 or earlier, this
466 field is not present, and the maximum address is 0x37FFFFFF. (This
467 address is defined as the address of the highest safe byte, so if
468 your ramdisk is exactly 131072 bytes long and this field is
469 0x37FFFFFF, you can start your ramdisk at 0x37FE0000.)
470
471Field name: kernel_alignment
472Type: read (reloc)
473Offset/size: 0x230/4
474Protocol: 2.05+
475
476 Alignment unit required by the kernel (if relocatable_kernel is true.)
477
478Field name: relocatable_kernel
479Type: read (reloc)
480Offset/size: 0x234/1
481Protocol: 2.05+
482
483 If this field is nonzero, the protected-mode part of the kernel can
484 be loaded at any address that satisfies the kernel_alignment field.
485 After loading, the boot loader must set the code32_start field to
486 point to the loaded code, or to a boot loader hook.
487
488Field name: cmdline_size
489Type: read
490Offset/size: 0x238/4
491Protocol: 2.06+
492
493 The maximum size of the command line without the terminating
494 zero. This means that the command line can contain at most
495 cmdline_size characters. With protocol version 2.05 and earlier, the
496 maximum size was 255.
Bernhard Walle8f9aeca2007-05-02 19:27:10 +0200497
Rusty Russelle5371ac2007-10-21 16:41:33 -0700498Field name: hardware_subarch
499Type: write
500Offset/size: 0x23c/4
501Protocol: 2.07+
502
503 In a paravirtualized environment the hardware low level architectural
504 pieces such as interrupt handling, page table handling, and
505 accessing process control registers needs to be done differently.
506
507 This field allows the bootloader to inform the kernel we are in one
508 one of those environments.
509
510 0x00000000 The default x86/PC environment
511 0x00000001 lguest
512 0x00000002 Xen
513
514Field name: hardware_subarch_data
515Type: write
516Offset/size: 0x240/8
517Protocol: 2.07+
518
519 A pointer to data that is specific to hardware subarch
520
Ian Campbell87253d12008-02-19 11:12:30 +0000521Field name: payload_offset
Ian Campbell099e1372008-02-13 20:54:58 +0000522Type: read
523Offset/size: 0x248/4
524Protocol: 2.08+
525
526 If non-zero then this field contains the offset from the end of the
Ian Campbell87253d12008-02-19 11:12:30 +0000527 real-mode code to the payload.
528
529 The payload may be compressed. The format of both the compressed and
530 uncompressed data should be determined using the standard magic
531 numbers. Currently only gzip compressed ELF is used.
Ian Campbell099e1372008-02-13 20:54:58 +0000532
Ian Campbell87253d12008-02-19 11:12:30 +0000533Field name: payload_length
Ian Campbell099e1372008-02-13 20:54:58 +0000534Type: read
535Offset/size: 0x24c/4
536Protocol: 2.08+
537
Ian Campbell87253d12008-02-19 11:12:30 +0000538 The length of the payload.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
Ian Campbell7d6e7372008-02-17 20:06:35 +0100540**** THE IMAGE CHECKSUM
541
542From boot protocol version 2.08 onwards the CRC-32 is calculated over
543the entire file using the characteristic polynomial 0x04C11DB7 and an
544initial remainder of 0xffffffff. The checksum is appended to the
545file; therefore the CRC of the file up to the limit specified in the
546syssize field of the header is always 0.
547
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548**** THE KERNEL COMMAND LINE
549
550The kernel command line has become an important way for the boot
551loader to communicate with the kernel. Some of its options are also
552relevant to the boot loader itself, see "special command line options"
553below.
554
Bernhard Walle8f9aeca2007-05-02 19:27:10 +0200555The kernel command line is a null-terminated string. The maximum
556length can be retrieved from the field cmdline_size. Before protocol
557version 2.06, the maximum was 255 characters. A string that is too
558long will be automatically truncated by the kernel.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
560If the boot protocol version is 2.02 or later, the address of the
561kernel command line is given by the header field cmd_line_ptr (see
H. Peter Anvinf8eeaaf2005-09-06 15:17:24 -0700562above.) This address can be anywhere between the end of the setup
563heap and 0xA0000.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
565If the protocol version is *not* 2.02 or higher, the kernel
566command line is entered using the following protocol:
567
568 At offset 0x0020 (word), "cmd_line_magic", enter the magic
569 number 0xA33F.
570
571 At offset 0x0022 (word), "cmd_line_offset", enter the offset
572 of the kernel command line (relative to the start of the
573 real-mode kernel).
574
575 The kernel command line *must* be within the memory region
576 covered by setup_move_size, so you may need to adjust this
577 field.
578
Huang, Yingfb884382008-03-28 10:49:50 +0800579Field name: setup_data
580Type: write (obligatory)
581Offset/size: 0x250/8
582Protocol: 2.09+
583
584 The 64-bit physical pointer to NULL terminated single linked list of
585 struct setup_data. This is used to define a more extensible boot
586 parameters passing mechanism. The definition of struct setup_data is
587 as follow:
588
589 struct setup_data {
590 u64 next;
591 u32 type;
592 u32 len;
593 u8 data[0];
594 };
595
596 Where, the next is a 64-bit physical pointer to the next node of
597 linked list, the next field of the last node is 0; the type is used
598 to identify the contents of data; the len is the length of data
599 field; the data holds the real payload.
600
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
H. Peter Anvinde372ec2007-05-08 20:37:02 -0700602**** MEMORY LAYOUT OF THE REAL-MODE CODE
603
604The real-mode code requires a stack/heap to be set up, as well as
605memory allocated for the kernel command line. This needs to be done
606in the real-mode accessible memory in bottom megabyte.
607
608It should be noted that modern machines often have a sizable Extended
609BIOS Data Area (EBDA). As a result, it is advisable to use as little
610of the low megabyte as possible.
611
612Unfortunately, under the following circumstances the 0x90000 memory
613segment has to be used:
614
615 - When loading a zImage kernel ((loadflags & 0x01) == 0).
616 - When loading a 2.01 or earlier boot protocol kernel.
617
618 -> For the 2.00 and 2.01 boot protocols, the real-mode code
619 can be loaded at another address, but it is internally
620 relocated to 0x90000. For the "old" protocol, the
621 real-mode code must be loaded at 0x90000.
622
623When loading at 0x90000, avoid using memory above 0x9a000.
624
625For boot protocol 2.02 or higher, the command line does not have to be
626located in the same 64K segment as the real-mode setup code; it is
627thus permitted to give the stack/heap the full 64K segment and locate
628the command line above it.
629
630The kernel command line should not be located below the real-mode
631code, nor should it be located in high memory.
632
633
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634**** SAMPLE BOOT CONFIGURATION
635
636As a sample configuration, assume the following layout of the real
H. Peter Anvinde372ec2007-05-08 20:37:02 -0700637mode segment:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
H. Peter Anvinde372ec2007-05-08 20:37:02 -0700639 When loading below 0x90000, use the entire segment:
640
641 0x0000-0x7fff Real mode kernel
642 0x8000-0xdfff Stack and heap
643 0xe000-0xffff Kernel command line
644
645 When loading at 0x90000 OR the protocol version is 2.01 or earlier:
646
647 0x0000-0x7fff Real mode kernel
648 0x8000-0x97ff Stack and heap
649 0x9800-0x9fff Kernel command line
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
651Such a boot loader should enter the following fields in the header:
652
653 unsigned long base_ptr; /* base address for real-mode segment */
654
655 if ( setup_sects == 0 ) {
656 setup_sects = 4;
657 }
658
659 if ( protocol >= 0x0200 ) {
660 type_of_loader = <type code>;
661 if ( loading_initrd ) {
662 ramdisk_image = <initrd_address>;
663 ramdisk_size = <initrd_size>;
664 }
H. Peter Anvinde372ec2007-05-08 20:37:02 -0700665
666 if ( protocol >= 0x0202 && loadflags & 0x01 )
667 heap_end = 0xe000;
668 else
669 heap_end = 0x9800;
670
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 if ( protocol >= 0x0201 ) {
H. Peter Anvinde372ec2007-05-08 20:37:02 -0700672 heap_end_ptr = heap_end - 0x200;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 loadflags |= 0x80; /* CAN_USE_HEAP */
674 }
H. Peter Anvinde372ec2007-05-08 20:37:02 -0700675
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 if ( protocol >= 0x0202 ) {
H. Peter Anvinde372ec2007-05-08 20:37:02 -0700677 cmd_line_ptr = base_ptr + heap_end;
678 strcpy(cmd_line_ptr, cmdline);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 } else {
680 cmd_line_magic = 0xA33F;
H. Peter Anvinde372ec2007-05-08 20:37:02 -0700681 cmd_line_offset = heap_end;
682 setup_move_size = heap_end + strlen(cmdline)+1;
683 strcpy(base_ptr+cmd_line_offset, cmdline);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 }
685 } else {
686 /* Very old kernel */
687
H. Peter Anvinde372ec2007-05-08 20:37:02 -0700688 heap_end = 0x9800;
689
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 cmd_line_magic = 0xA33F;
H. Peter Anvinde372ec2007-05-08 20:37:02 -0700691 cmd_line_offset = heap_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
693 /* A very old kernel MUST have its real-mode code
694 loaded at 0x90000 */
695
696 if ( base_ptr != 0x90000 ) {
697 /* Copy the real-mode kernel */
698 memcpy(0x90000, base_ptr, (setup_sects+1)*512);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 base_ptr = 0x90000; /* Relocated */
700 }
701
H. Peter Anvinde372ec2007-05-08 20:37:02 -0700702 strcpy(0x90000+cmd_line_offset, cmdline);
703
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 /* It is recommended to clear memory up to the 32K mark */
705 memset(0x90000 + (setup_sects+1)*512, 0,
706 (64-(setup_sects+1))*512);
707 }
708
709
710**** LOADING THE REST OF THE KERNEL
711
H. Peter Anvinf8eeaaf2005-09-06 15:17:24 -0700712The 32-bit (non-real-mode) kernel starts at offset (setup_sects+1)*512
713in the kernel file (again, if setup_sects == 0 the real value is 4.)
714It should be loaded at address 0x10000 for Image/zImage kernels and
Linus Torvalds1da177e2005-04-16 15:20:36 -07007150x100000 for bzImage kernels.
716
717The kernel is a bzImage kernel if the protocol >= 2.00 and the 0x01
718bit (LOAD_HIGH) in the loadflags field is set:
719
720 is_bzImage = (protocol >= 0x0200) && (loadflags & 0x01);
721 load_address = is_bzImage ? 0x100000 : 0x10000;
722
723Note that Image/zImage kernels can be up to 512K in size, and thus use
724the entire 0x10000-0x90000 range of memory. This means it is pretty
725much a requirement for these kernels to load the real-mode part at
7260x90000. bzImage kernels allow much more flexibility.
727
728
729**** SPECIAL COMMAND LINE OPTIONS
730
731If the command line provided by the boot loader is entered by the
732user, the user may expect the following command line options to work.
733They should normally not be deleted from the kernel command line even
734though not all of them are actually meaningful to the kernel. Boot
735loader authors who need additional command line options for the boot
736loader itself should get them registered in
737Documentation/kernel-parameters.txt to make sure they will not
738conflict with actual kernel options now or in the future.
739
740 vga=<mode>
741 <mode> here is either an integer (in C notation, either
742 decimal, octal, or hexadecimal) or one of the strings
743 "normal" (meaning 0xFFFF), "ext" (meaning 0xFFFE) or "ask"
744 (meaning 0xFFFD). This value should be entered into the
745 vid_mode field, as it is used by the kernel before the command
746 line is parsed.
747
748 mem=<size>
H. Peter Anvinde372ec2007-05-08 20:37:02 -0700749 <size> is an integer in C notation optionally followed by
750 (case insensitive) K, M, G, T, P or E (meaning << 10, << 20,
751 << 30, << 40, << 50 or << 60). This specifies the end of
752 memory to the kernel. This affects the possible placement of
753 an initrd, since an initrd should be placed near end of
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 memory. Note that this is an option to *both* the kernel and
755 the bootloader!
756
757 initrd=<file>
758 An initrd should be loaded. The meaning of <file> is
759 obviously bootloader-dependent, and some boot loaders
760 (e.g. LILO) do not have such a command.
761
762In addition, some boot loaders add the following options to the
763user-specified command line:
764
765 BOOT_IMAGE=<file>
766 The boot image which was loaded. Again, the meaning of <file>
767 is obviously bootloader-dependent.
768
769 auto
770 The kernel was booted without explicit user intervention.
771
772If these options are added by the boot loader, it is highly
773recommended that they are located *first*, before the user-specified
774or configuration-specified command line. Otherwise, "init=/bin/sh"
775gets confused by the "auto" option.
776
777
778**** RUNNING THE KERNEL
779
780The kernel is started by jumping to the kernel entry point, which is
781located at *segment* offset 0x20 from the start of the real mode
782kernel. This means that if you loaded your real-mode kernel code at
7830x90000, the kernel entry point is 9020:0000.
784
785At entry, ds = es = ss should point to the start of the real-mode
786kernel code (0x9000 if the code is loaded at 0x90000), sp should be
787set up properly, normally pointing to the top of the heap, and
788interrupts should be disabled. Furthermore, to guard against bugs in
789the kernel, it is recommended that the boot loader sets fs = gs = ds =
790es = ss.
791
792In our example from above, we would do:
793
794 /* Note: in the case of the "old" kernel protocol, base_ptr must
795 be == 0x90000 at this point; see the previous sample code */
796
797 seg = base_ptr >> 4;
798
799 cli(); /* Enter with interrupts disabled! */
800
801 /* Set up the real-mode kernel stack */
802 _SS = seg;
H. Peter Anvinde372ec2007-05-08 20:37:02 -0700803 _SP = heap_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
805 _DS = _ES = _FS = _GS = seg;
806 jmp_far(seg+0x20, 0); /* Run the kernel */
807
808If your boot sector accesses a floppy drive, it is recommended to
809switch off the floppy motor before running the kernel, since the
810kernel boot leaves interrupts off and thus the motor will not be
811switched off, especially if the loaded kernel has the floppy driver as
812a demand-loaded module!
813
814
H. Peter Anvindb2668f2007-05-23 16:59:27 -0700815**** ADVANCED BOOT LOADER HOOKS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
817If the boot loader runs in a particularly hostile environment (such as
818LOADLIN, which runs under DOS) it may be impossible to follow the
819standard memory location requirements. Such a boot loader may use the
820following hooks that, if set, are invoked by the kernel at the
821appropriate time. The use of these hooks should probably be
822considered an absolutely last resort!
823
824IMPORTANT: All the hooks are required to preserve %esp, %ebp, %esi and
825%edi across invocation.
826
827 realmode_swtch:
828 A 16-bit real mode far subroutine invoked immediately before
829 entering protected mode. The default routine disables NMI, so
830 your routine should probably do so, too.
831
832 code32_start:
833 A 32-bit flat-mode routine *jumped* to immediately after the
834 transition to protected mode, but before the kernel is
H. Peter Anvinde372ec2007-05-08 20:37:02 -0700835 uncompressed. No segments, except CS, are guaranteed to be
836 set up (current kernels do, but older ones do not); you should
837 set them up to BOOT_DS (0x18) yourself.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
839 After completing your hook, you should jump to the address
H. Peter Anvindb2668f2007-05-23 16:59:27 -0700840 that was in this field before your boot loader overwrote it
841 (relocated, if appropriate.)
Huang, Yingaa694322007-10-24 10:18:49 +0800842
843
844**** 32-bit BOOT PROTOCOL
845
846For machine with some new BIOS other than legacy BIOS, such as EFI,
847LinuxBIOS, etc, and kexec, the 16-bit real mode setup code in kernel
848based on legacy BIOS can not be used, so a 32-bit boot protocol needs
849to be defined.
850
851In 32-bit boot protocol, the first step in loading a Linux kernel
852should be to setup the boot parameters (struct boot_params,
853traditionally known as "zero page"). The memory for struct boot_params
854should be allocated and initialized to all zero. Then the setup header
855from offset 0x01f1 of kernel image on should be loaded into struct
856boot_params and examined. The end of setup header can be calculated as
857follow:
858
859 0x0202 + byte value at offset 0x0201
860
861In addition to read/modify/write the setup header of the struct
862boot_params as that of 16-bit boot protocol, the boot loader should
863also fill the additional fields of the struct boot_params as that
864described in zero-page.txt.
865
866After setupping the struct boot_params, the boot loader can load the
86732/64-bit kernel in the same way as that of 16-bit boot protocol.
868
869In 32-bit boot protocol, the kernel is started by jumping to the
87032-bit kernel entry point, which is the start address of loaded
87132/64-bit kernel.
872
873At entry, the CPU must be in 32-bit protected mode with paging
874disabled; a GDT must be loaded with the descriptors for selectors
875__BOOT_CS(0x10) and __BOOT_DS(0x18); both descriptors must be 4G flat
876segment; __BOOS_CS must have execute/read permission, and __BOOT_DS
877must have read/write permission; CS must be __BOOT_CS and DS, ES, SS
878must be __BOOT_DS; interrupt must be disabled; %esi must hold the base
879address of the struct boot_params; %ebp, %edi and %ebx must be zero.