blob: 27285143adeb4d8ea988a9c5c3e5d49f381c08bc [file] [log] [blame]
H. Peter Anvin62607312007-07-11 12:18:54 -07001/*
2 * header.S
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 *
6 * Based on bootsect.S and setup.S
7 * modified by more people than can be counted
8 *
9 * Rewritten as a common file by H. Peter Anvin (Apr 2007)
10 *
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.
15 *
16 */
17
18#include <asm/segment.h>
19#include <linux/utsrelease.h>
20#include <asm/boot.h>
21#include <asm/e820.h>
Jeremy Fitzhardinge0341c142009-02-13 11:14:01 -080022#include <asm/page_types.h>
H. Peter Anvin62607312007-07-11 12:18:54 -070023#include <asm/setup.h>
24#include "boot.h"
H. Peter Anvin77d1a492009-05-11 14:21:12 -070025#include "voffset.h"
26#include "zoffset.h"
H. Peter Anvin62607312007-07-11 12:18:54 -070027
H. Peter Anvin62607312007-07-11 12:18:54 -070028BOOTSEG = 0x07C0 /* original address of boot-sector */
H. Peter Anvin5e47c472009-03-11 10:55:33 -070029SYSSEG = 0x1000 /* historical load address >> 4 */
H. Peter Anvin62607312007-07-11 12:18:54 -070030
31#ifndef SVGA_MODE
32#define SVGA_MODE ASK_VGA
33#endif
34
35#ifndef RAMDISK
36#define RAMDISK 0
37#endif
38
39#ifndef ROOT_RDONLY
40#define ROOT_RDONLY 1
41#endif
42
43 .code16
44 .section ".bstext", "ax"
45
46 .global bootsect_start
47bootsect_start:
48
49 # Normalize the start address
50 ljmp $BOOTSEG, $start2
51
52start2:
53 movw %cs, %ax
54 movw %ax, %ds
55 movw %ax, %es
56 movw %ax, %ss
57 xorw %sp, %sp
58 sti
59 cld
60
61 movw $bugger_off_msg, %si
62
63msg_loop:
64 lodsb
65 andb %al, %al
66 jz bs_die
67 movb $0xe, %ah
68 movw $7, %bx
69 int $0x10
70 jmp msg_loop
71
72bs_die:
73 # Allow the user to press a key, then reboot
74 xorw %ax, %ax
75 int $0x16
76 int $0x19
77
78 # int 0x19 should never return. In case it does anyway,
79 # invoke the BIOS reset code...
80 ljmp $0xf000,$0xfff0
81
82 .section ".bsdata", "a"
83bugger_off_msg:
84 .ascii "Direct booting from floppy is no longer supported.\r\n"
85 .ascii "Please use a boot loader program instead.\r\n"
86 .ascii "\n"
87 .ascii "Remove disk and press any key to reboot . . .\r\n"
88 .byte 0
89
90
91 # Kernel attributes; used by setup. This is part 1 of the
92 # header, from the old boot sector.
93
94 .section ".header", "a"
95 .globl hdr
96hdr:
H. Peter Anvin5e47c472009-03-11 10:55:33 -070097setup_sects: .byte 0 /* Filled in by build.c */
H. Peter Anvin62607312007-07-11 12:18:54 -070098root_flags: .word ROOT_RDONLY
H. Peter Anvin5e47c472009-03-11 10:55:33 -070099syssize: .long 0 /* Filled in by build.c */
100ram_size: .word 0 /* Obsolete */
H. Peter Anvin62607312007-07-11 12:18:54 -0700101vid_mode: .word SVGA_MODE
H. Peter Anvin5e47c472009-03-11 10:55:33 -0700102root_dev: .word 0 /* Filled in by build.c */
H. Peter Anvin62607312007-07-11 12:18:54 -0700103boot_flag: .word 0xAA55
104
105 # offset 512, entry point
106
107 .globl _start
108_start:
109 # Explicitly enter this as bytes, or the assembler
110 # tries to generate a 3-byte jump here, which causes
111 # everything else to push off to the wrong offset.
112 .byte 0xeb # short (2-byte) jump
113 .byte start_of_setup-1f
1141:
115
116 # Part 2 of the header, from the old setup.S
117
118 .ascii "HdrS" # header signature
Huang, Ying8b664aa2008-03-28 10:49:44 +0800119 .word 0x0209 # header version number (>= 0x0105)
H. Peter Anvin62607312007-07-11 12:18:54 -0700120 # or else old loadlin-1.5 will fail)
121 .globl realmode_swtch
122realmode_swtch: .word 0, 0 # default_switch, SETUPSEG
H. Peter Anvin5e47c472009-03-11 10:55:33 -0700123start_sys_seg: .word SYSSEG # obsolete and meaningless, but just
124 # in case something decided to "use" it
H. Peter Anvin62607312007-07-11 12:18:54 -0700125 .word kernel_version-512 # pointing to kernel version string
126 # above section of header is compatible
127 # with loadlin-1.5 (header v1.5). Don't
128 # change it.
129
H. Peter Anvin5e47c472009-03-11 10:55:33 -0700130type_of_loader: .byte 0 # 0 means ancient bootloader, newer
131 # bootloaders know to change this.
H. Peter Anvin62607312007-07-11 12:18:54 -0700132 # See Documentation/i386/boot.txt for
133 # assigned ids
134
135# flags, unused bits must be zero (RFU) bit within loadflags
136loadflags:
137LOADED_HIGH = 1 # If set, the kernel is loaded high
138CAN_USE_HEAP = 0x80 # If set, the loader also has set
139 # heap_end_ptr to tell how much
140 # space behind setup.S can be used for
141 # heap purposes.
142 # Only the loader knows what is free
H. Peter Anvin62607312007-07-11 12:18:54 -0700143 .byte LOADED_HIGH
H. Peter Anvin62607312007-07-11 12:18:54 -0700144
145setup_move_size: .word 0x8000 # size to move, when setup is not
146 # loaded at 0x90000. We will move setup
147 # to 0x90000 then just before jumping
148 # into the kernel. However, only the
149 # loader knows how much data behind
150 # us also needs to be loaded.
151
152code32_start: # here loaders can put a different
153 # start address for 32-bit code.
H. Peter Anvin62607312007-07-11 12:18:54 -0700154 .long 0x100000 # 0x100000 = default for big kernel
H. Peter Anvin62607312007-07-11 12:18:54 -0700155
156ramdisk_image: .long 0 # address of loaded ramdisk image
157 # Here the loader puts the 32-bit
158 # address where it loaded the image.
159 # This only will be read by the kernel.
160
161ramdisk_size: .long 0 # its size in bytes
162
163bootsect_kludge:
164 .long 0 # obsolete
165
H. Peter Anvin6b6815c2007-10-25 16:11:33 -0700166heap_end_ptr: .word _end+STACK_SIZE-512
167 # (Header version 0x0201 or later)
H. Peter Anvin62607312007-07-11 12:18:54 -0700168 # space from here (exclusive) down to
169 # end of setup code can be used by setup
170 # for local heap purposes.
171
172pad1: .word 0
173cmd_line_ptr: .long 0 # (Header version 0x0202 or later)
174 # If nonzero, a 32-bit pointer
175 # to the kernel command line.
176 # The command line should be
177 # located between the start of
178 # setup and the end of low
179 # memory (0xa0000), or it may
180 # get overwritten before it
181 # gets read. If this field is
182 # used, there is no longer
183 # anything magical about the
184 # 0x90000 segment; the setup
185 # can be located anywhere in
186 # low memory 0x10000 or higher.
187
H. Peter Anvincf8fa922008-01-30 13:32:51 +0100188ramdisk_max: .long 0x7fffffff
H. Peter Anvin62607312007-07-11 12:18:54 -0700189 # (Header version 0x0203 or later)
190 # The highest safe address for
191 # the contents of an initrd
H. Peter Anvincf8fa922008-01-30 13:32:51 +0100192 # The current kernel allows up to 4 GB,
193 # but leave it at 2 GB to avoid
194 # possible bootloader bugs.
H. Peter Anvin62607312007-07-11 12:18:54 -0700195
196kernel_alignment: .long CONFIG_PHYSICAL_ALIGN #physical addr alignment
197 #required for protected mode
198 #kernel
199#ifdef CONFIG_RELOCATABLE
200relocatable_kernel: .byte 1
201#else
202relocatable_kernel: .byte 0
203#endif
204pad2: .byte 0
205pad3: .word 0
206
207cmdline_size: .long COMMAND_LINE_SIZE-1 #length of the command line,
208 #added with boot protocol
209 #version 2.06
210
Rusty Russella24e7852007-10-21 16:41:35 -0700211hardware_subarch: .long 0 # subarchitecture, added with 2.07
212 # default to 0 for normal x86 PC
213
214hardware_subarch_data: .quad 0
215
H. Peter Anvin77d1a492009-05-11 14:21:12 -0700216payload_offset: .long ZO_input_data
217payload_length: .long ZO_z_input_len
Ian Campbell099e1372008-02-13 20:54:58 +0000218
Huang, Ying8b664aa2008-03-28 10:49:44 +0800219setup_data: .quad 0 # 64-bit physical pointer to
220 # single linked list of
221 # struct setup_data
222
H. Peter Anvin62607312007-07-11 12:18:54 -0700223# End of setup header #####################################################
224
225 .section ".inittext", "ax"
226start_of_setup:
227#ifdef SAFE_RESET_DISK_CONTROLLER
228# Reset the disk controller.
229 movw $0x0000, %ax # Reset disk controller
230 movb $0x80, %dl # All disks
231 int $0x13
232#endif
233
H. Peter Anvin62607312007-07-11 12:18:54 -0700234# Force %es = %ds
235 movw %ds, %ax
236 movw %ax, %es
237 cld
238
Jens Rottmann16252da2007-11-27 12:35:13 +0100239# Apparently some ancient versions of LILO invoked the kernel with %ss != %ds,
240# which happened to work by accident for the old code. Recalculate the stack
241# pointer if %ss is invalid. Otherwise leave it alone, LOADLIN sets up the
242# stack behind its own code, so we can't blindly put it directly past the heap.
H. Peter Anvin6b6815c2007-10-25 16:11:33 -0700243
H. Peter Anvin6b6815c2007-10-25 16:11:33 -0700244 movw %ss, %dx
245 cmpw %ax, %dx # %ds == %ss?
246 movw %sp, %dx
Jens Rottmann16252da2007-11-27 12:35:13 +0100247 je 2f # -> assume %sp is reasonably set
H. Peter Anvin6b6815c2007-10-25 16:11:33 -0700248
Jens Rottmann16252da2007-11-27 12:35:13 +0100249 # Invalid %ss, make up a new stack
250 movw $_end, %dx
251 testb $CAN_USE_HEAP, loadflags
252 jz 1f
253 movw heap_end_ptr, %dx
2541: addw $STACK_SIZE, %dx
255 jnc 2f
256 xorw %dx, %dx # Prevent wraparound
257
2582: # Now %dx should point to the end of our stack space
H. Peter Anvin6b6815c2007-10-25 16:11:33 -0700259 andw $~3, %dx # dword align (might as well...)
260 jnz 3f
261 movw $0xfffc, %dx # Make sure we're not zero
Jens Rottmann16252da2007-11-27 12:35:13 +01002623: movw %ax, %ss
H. Peter Anvin6b6815c2007-10-25 16:11:33 -0700263 movzwl %dx, %esp # Clear upper half of %esp
264 sti # Now we should have a working stack
265
266# We will have entered with %cs = %ds+0x20, normalize %cs so
267# it is on par with the other segments.
268 pushw %ds
269 pushw $6f
270 lretw
2716:
H. Peter Anvin62607312007-07-11 12:18:54 -0700272
273# Check signature at end of setup
274 cmpl $0x5a5aaa55, setup_sig
275 jne setup_bad
276
277# Zero the bss
278 movw $__bss_start, %di
279 movw $_end+3, %cx
280 xorl %eax, %eax
281 subw %di, %cx
282 shrw $2, %cx
283 rep; stosl
284
285# Jump to C code (should not return)
286 calll main
287
288# Setup corrupt somehow...
289setup_bad:
290 movl $setup_corrupt, %eax
291 calll puts
292 # Fall through...
293
294 .globl die
295 .type die, @function
296die:
297 hlt
298 jmp die
299
Paul Bollebbc15f42007-09-10 23:39:02 +0200300 .size die, .-die
H. Peter Anvin62607312007-07-11 12:18:54 -0700301
302 .section ".initdata", "a"
303setup_corrupt:
304 .byte 7
H. Peter Anvin8b608d22007-07-26 16:10:22 -0700305 .string "No setup signature found...\n"