4 * Copyright (C) 1991, 1992 Linus Torvalds
6 * Based on bootsect.S and setup.S
7 * modified by more people than can be counted
9 * Rewritten as a common file by H. Peter Anvin (Apr 2007)
11 * BIG FAT NOTE: We're in real mode using 64k segments. Therefore segment
12 * addresses must be multiplied by 16 to obtain their respective linear
13 * addresses. To avoid confusion, linear addresses are written using leading
14 * hex while segment addresses are written as segment:offset.
18 #include <asm/segment.h>
19 #include <generated/utsrelease.h>
22 #include <asm/page_types.h>
23 #include <asm/setup.h>
28 BOOTSEG = 0x07C0 /* original address of boot-sector */
29 SYSSEG = 0x1000 /* historical load address >> 4 */
32 #define SVGA_MODE ASK_VGA
40 .section ".bstext", "ax"
42 .global bootsect_start
44 #ifdef CONFIG_EFI_STUB
50 # Normalize the start address
51 ljmp $BOOTSEG, $start2
62 movw $bugger_off_msg, %si
74 # Allow the user to press a key, then reboot
79 # int 0x19 should never return. In case it does anyway,
80 # invoke the BIOS reset code...
83 #ifdef CONFIG_EFI_STUB
86 # Offset to the PE header.
89 #endif /* CONFIG_EFI_STUB */
91 .section ".bsdata", "a"
93 .ascii "Direct floppy boot is not supported. "
94 .ascii "Use a boot loader program instead.\r\n"
96 .ascii "Remove disk and press any key to reboot ...\r\n"
99 #ifdef CONFIG_EFI_STUB
108 .word 0x8664 # x86-64
110 .word 3 # nr_sections
111 .long 0 # TimeDateStamp
112 .long 0 # PointerToSymbolTable
113 .long 1 # NumberOfSymbols
114 .word section_table - optional_header # SizeOfOptionalHeader
116 .word 0x306 # Characteristics.
117 # IMAGE_FILE_32BIT_MACHINE |
118 # IMAGE_FILE_DEBUG_STRIPPED |
119 # IMAGE_FILE_EXECUTABLE_IMAGE |
120 # IMAGE_FILE_LINE_NUMS_STRIPPED
122 .word 0x206 # Characteristics
123 # IMAGE_FILE_DEBUG_STRIPPED |
124 # IMAGE_FILE_EXECUTABLE_IMAGE |
125 # IMAGE_FILE_LINE_NUMS_STRIPPED
130 .word 0x10b # PE32 format
132 .word 0x20b # PE32+ format
134 .byte 0x02 # MajorLinkerVersion
135 .byte 0x14 # MinorLinkerVersion
137 # Filled in by build.c
140 .long 0 # SizeOfInitializedData
141 .long 0 # SizeOfUninitializedData
143 # Filled in by build.c
144 .long 0x0000 # AddressOfEntryPoint
146 .long 0x0200 # BaseOfCode
157 .long 0x20 # SectionAlignment
158 .long 0x20 # FileAlignment
159 .word 0 # MajorOperatingSystemVersion
160 .word 0 # MinorOperatingSystemVersion
161 .word 0 # MajorImageVersion
162 .word 0 # MinorImageVersion
163 .word 0 # MajorSubsystemVersion
164 .word 0 # MinorSubsystemVersion
165 .long 0 # Win32VersionValue
168 # The size of the bzImage is written in tools/build.c
170 .long 0 # SizeOfImage
172 .long 0x200 # SizeOfHeaders
174 .word 0xa # Subsystem (EFI application)
175 .word 0 # DllCharacteristics
177 .long 0 # SizeOfStackReserve
178 .long 0 # SizeOfStackCommit
179 .long 0 # SizeOfHeapReserve
180 .long 0 # SizeOfHeapCommit
182 .quad 0 # SizeOfStackReserve
183 .quad 0 # SizeOfStackCommit
184 .quad 0 # SizeOfHeapReserve
185 .quad 0 # SizeOfHeapCommit
187 .long 0 # LoaderFlags
188 .long 0x6 # NumberOfRvaAndSizes
190 .quad 0 # ExportTable
191 .quad 0 # ImportTable
192 .quad 0 # ResourceTable
193 .quad 0 # ExceptionTable
194 .quad 0 # CertificationTable
195 .quad 0 # BaseRelocationTable
200 # The offset & size fields are filled in by build.c.
206 .long 0x0 # startup_{32,64}
207 .long 0 # Size of initialized data
209 .long 0x0 # startup_{32,64}
210 .long 0 # PointerToRelocations
211 .long 0 # PointerToLineNumbers
212 .word 0 # NumberOfRelocations
213 .word 0 # NumberOfLineNumbers
214 .long 0x60500020 # Characteristics (section flags)
217 # The EFI application loader requires a relocation section
218 # because EFI applications must be relocatable. The .reloc
219 # offset & size fields are filled in by build.c.
226 .long 0 # SizeOfRawData
227 .long 0 # PointerToRawData
228 .long 0 # PointerToRelocations
229 .long 0 # PointerToLineNumbers
230 .word 0 # NumberOfRelocations
231 .word 0 # NumberOfLineNumbers
232 .long 0x42100040 # Characteristics (section flags)
235 # The offset & size fields are filled in by build.c.
242 .long 0x0 # startup_{32,64}
243 .long 0 # Size of initialized data
245 .long 0x0 # startup_{32,64}
246 .long 0 # PointerToRelocations
247 .long 0 # PointerToLineNumbers
248 .word 0 # NumberOfRelocations
249 .word 0 # NumberOfLineNumbers
250 .long 0x60500020 # Characteristics (section flags)
252 #endif /* CONFIG_EFI_STUB */
254 # Kernel attributes; used by setup. This is part 1 of the
255 # header, from the old boot sector.
257 .section ".header", "a"
260 setup_sects: .byte 0 /* Filled in by build.c */
261 root_flags: .word ROOT_RDONLY
262 syssize: .long 0 /* Filled in by build.c */
263 ram_size: .word 0 /* Obsolete */
264 vid_mode: .word SVGA_MODE
265 root_dev: .word 0 /* Filled in by build.c */
266 boot_flag: .word 0xAA55
268 # offset 512, entry point
272 # Explicitly enter this as bytes, or the assembler
273 # tries to generate a 3-byte jump here, which causes
274 # everything else to push off to the wrong offset.
275 .byte 0xeb # short (2-byte) jump
276 .byte start_of_setup-1f
279 # Part 2 of the header, from the old setup.S
281 .ascii "HdrS" # header signature
282 .word 0x020b # header version number (>= 0x0105)
283 # or else old loadlin-1.5 will fail)
284 .globl realmode_swtch
285 realmode_swtch: .word 0, 0 # default_switch, SETUPSEG
286 start_sys_seg: .word SYSSEG # obsolete and meaningless, but just
287 # in case something decided to "use" it
288 .word kernel_version-512 # pointing to kernel version string
289 # above section of header is compatible
290 # with loadlin-1.5 (header v1.5). Don't
293 type_of_loader: .byte 0 # 0 means ancient bootloader, newer
294 # bootloaders know to change this.
295 # See Documentation/x86/boot.txt for
298 # flags, unused bits must be zero (RFU) bit within loadflags
300 LOADED_HIGH = 1 # If set, the kernel is loaded high
301 CAN_USE_HEAP = 0x80 # If set, the loader also has set
302 # heap_end_ptr to tell how much
303 # space behind setup.S can be used for
305 # Only the loader knows what is free
308 setup_move_size: .word 0x8000 # size to move, when setup is not
309 # loaded at 0x90000. We will move setup
310 # to 0x90000 then just before jumping
311 # into the kernel. However, only the
312 # loader knows how much data behind
313 # us also needs to be loaded.
315 code32_start: # here loaders can put a different
316 # start address for 32-bit code.
317 .long 0x100000 # 0x100000 = default for big kernel
319 ramdisk_image: .long 0 # address of loaded ramdisk image
320 # Here the loader puts the 32-bit
321 # address where it loaded the image.
322 # This only will be read by the kernel.
324 ramdisk_size: .long 0 # its size in bytes
329 heap_end_ptr: .word _end+STACK_SIZE-512
330 # (Header version 0x0201 or later)
331 # space from here (exclusive) down to
332 # end of setup code can be used by setup
333 # for local heap purposes.
336 .byte 0 # Extended boot loader version
338 .byte 0 # Extended boot loader type
340 cmd_line_ptr: .long 0 # (Header version 0x0202 or later)
341 # If nonzero, a 32-bit pointer
342 # to the kernel command line.
343 # The command line should be
344 # located between the start of
345 # setup and the end of low
346 # memory (0xa0000), or it may
347 # get overwritten before it
348 # gets read. If this field is
349 # used, there is no longer
350 # anything magical about the
351 # 0x90000 segment; the setup
352 # can be located anywhere in
353 # low memory 0x10000 or higher.
355 ramdisk_max: .long 0x7fffffff
356 # (Header version 0x0203 or later)
357 # The highest safe address for
358 # the contents of an initrd
359 # The current kernel allows up to 4 GB,
360 # but leave it at 2 GB to avoid
361 # possible bootloader bugs.
363 kernel_alignment: .long CONFIG_PHYSICAL_ALIGN #physical addr alignment
364 #required for protected mode
366 #ifdef CONFIG_RELOCATABLE
367 relocatable_kernel: .byte 1
369 relocatable_kernel: .byte 0
371 min_alignment: .byte MIN_KERNEL_ALIGN_LG2 # minimum alignment
374 cmdline_size: .long COMMAND_LINE_SIZE-1 #length of the command line,
375 #added with boot protocol
378 hardware_subarch: .long 0 # subarchitecture, added with 2.07
379 # default to 0 for normal x86 PC
381 hardware_subarch_data: .quad 0
383 payload_offset: .long ZO_input_data
384 payload_length: .long ZO_z_input_len
386 setup_data: .quad 0 # 64-bit physical pointer to
387 # single linked list of
390 pref_address: .quad LOAD_PHYSICAL_ADDR # preferred load addr
392 #define ZO_INIT_SIZE (ZO__end - ZO_startup_32 + ZO_z_extract_offset)
393 #define VO_INIT_SIZE (VO__end - VO__text)
394 #if ZO_INIT_SIZE > VO_INIT_SIZE
395 #define INIT_SIZE ZO_INIT_SIZE
397 #define INIT_SIZE VO_INIT_SIZE
399 init_size: .long INIT_SIZE # kernel initialization size
400 handover_offset: .long 0x30 # offset to the handover
401 # protocol entry point
403 # End of setup header #####################################################
405 .section ".entrytext", "ax"
412 # Apparently some ancient versions of LILO invoked the kernel with %ss != %ds,
413 # which happened to work by accident for the old code. Recalculate the stack
414 # pointer if %ss is invalid. Otherwise leave it alone, LOADLIN sets up the
415 # stack behind its own code, so we can't blindly put it directly past the heap.
418 cmpw %ax, %dx # %ds == %ss?
420 je 2f # -> assume %sp is reasonably set
422 # Invalid %ss, make up a new stack
424 testb $CAN_USE_HEAP, loadflags
426 movw heap_end_ptr, %dx
427 1: addw $STACK_SIZE, %dx
429 xorw %dx, %dx # Prevent wraparound
431 2: # Now %dx should point to the end of our stack space
432 andw $~3, %dx # dword align (might as well...)
434 movw $0xfffc, %dx # Make sure we're not zero
436 movzwl %dx, %esp # Clear upper half of %esp
437 sti # Now we should have a working stack
439 # We will have entered with %cs = %ds+0x20, normalize %cs so
440 # it is on par with the other segments.
446 # Check signature at end of setup
447 cmpl $0x5a5aaa55, setup_sig
451 movw $__bss_start, %di
458 # Jump to C code (should not return)
461 # Setup corrupt somehow...
463 movl $setup_corrupt, %eax
475 .section ".initdata", "a"
478 .string "No setup signature found...\n"