blob: 9aa8b05181842cbf3d341b322d2fbc258a0c0be3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * setup.S Copyright (C) 1991, 1992 Linus Torvalds
3 *
4 * setup.s is responsible for getting the system data from the BIOS,
5 * and putting them into the appropriate places in system memory.
6 * both setup.s and system has been loaded by the bootblock.
7 *
8 * This code asks the bios for memory/disk/other parameters, and
9 * puts them in a "safe" place: 0x90000-0x901FF, ie where the
10 * boot-block used to be. It is then up to the protected mode
11 * system to read them from there before the area is overwritten
12 * for buffer-blocks.
13 *
14 * Move PS/2 aux init code to psaux.c
15 * (troyer@saifr00.cfsat.Honeywell.COM) 03Oct92
16 *
17 * some changes and additional features by Christoph Niemann,
18 * March 1993/June 1994 (Christoph.Niemann@linux.org)
19 *
20 * add APM BIOS checking by Stephen Rothwell, May 1994
21 * (sfr@canb.auug.org.au)
22 *
23 * High load stuff, initrd support and position independency
24 * by Hans Lermen & Werner Almesberger, February 1996
25 * <lermen@elserv.ffm.fgan.de>, <almesber@lrc.epfl.ch>
26 *
27 * Video handling moved to video.S by Martin Mares, March 1996
28 * <mj@k332.feld.cvut.cz>
29 *
30 * Extended memory detection scheme retwiddled by orc@pell.chi.il.us (david
31 * parsons) to avoid loadlin confusion, July 1997
32 *
33 * Transcribed from Intel (as86) -> AT&T (gas) by Chris Noe, May 1999.
34 * <stiker@northlink.com>
35 *
Domen Puncerf4549442005-06-25 14:58:59 -070036 * Fix to work around buggy BIOSes which don't use carry bit correctly
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 * and/or report extended memory in CX/DX for e801h memory size detection
38 * call. As a result the kernel got wrong figures. The int15/e801h docs
39 * from Ralf Brown interrupt list seem to indicate AX/BX should be used
40 * anyway. So to avoid breaking many machines (presumably there was a reason
41 * to orginally use CX/DX instead of AX/BX), we do a kludge to see
42 * if CX/DX have been changed in the e801 call and if so use AX/BX .
43 * Michael Miller, April 2001 <michaelm@mjmm.org>
44 *
45 * New A20 code ported from SYSLINUX by H. Peter Anvin. AMD Elan bugfixes
46 * by Robert Schwebel, December 2001 <robert@schwebel.de>
47 */
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <asm/segment.h>
Sam Ravnborg63104ee2006-07-03 23:30:54 +020050#include <linux/utsrelease.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <linux/compile.h>
52#include <asm/boot.h>
53#include <asm/e820.h>
54#include <asm/page.h>
55
56/* Signature words to ensure LILO loaded us right */
57#define SIG1 0xAA55
58#define SIG2 0x5A5A
59
60INITSEG = DEF_INITSEG # 0x9000, we move boot here, out of the way
61SYSSEG = DEF_SYSSEG # 0x1000, system loaded at 0x10000 (65536).
62SETUPSEG = DEF_SETUPSEG # 0x9020, this is the current segment
63 # ... and the former contents of CS
64
65DELTA_INITSEG = SETUPSEG - INITSEG # 0x0020
66
67.code16
68.globl begtext, begdata, begbss, endtext, enddata, endbss
69
70.text
71begtext:
72.data
73begdata:
74.bss
75begbss:
76.text
77
78start:
79 jmp trampoline
80
81# This is the setup header, and it must start at %cs:2 (old 0x9020:2)
82
83 .ascii "HdrS" # header signature
H. Peter Anvinf8eeaaf2005-09-06 15:17:24 -070084 .word 0x0204 # header version number (>= 0x0105)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 # or else old loadlin-1.5 will fail)
86realmode_swtch: .word 0, 0 # default_switch, SETUPSEG
87start_sys_seg: .word SYSSEG
88 .word kernel_version # pointing to kernel version string
89 # above section of header is compatible
90 # with loadlin-1.5 (header v1.5). Don't
91 # change it.
92
93type_of_loader: .byte 0 # = 0, old one (LILO, Loadlin,
94 # Bootlin, SYSLX, bootsect...)
95 # See Documentation/i386/boot.txt for
96 # assigned ids
97
98# flags, unused bits must be zero (RFU) bit within loadflags
99loadflags:
100LOADED_HIGH = 1 # If set, the kernel is loaded high
101CAN_USE_HEAP = 0x80 # If set, the loader also has set
102 # heap_end_ptr to tell how much
103 # space behind setup.S can be used for
104 # heap purposes.
105 # Only the loader knows what is free
106#ifndef __BIG_KERNEL__
107 .byte 0
108#else
109 .byte LOADED_HIGH
110#endif
111
112setup_move_size: .word 0x8000 # size to move, when setup is not
113 # loaded at 0x90000. We will move setup
114 # to 0x90000 then just before jumping
115 # into the kernel. However, only the
116 # loader knows how much data behind
117 # us also needs to be loaded.
118
119code32_start: # here loaders can put a different
120 # start address for 32-bit code.
121#ifndef __BIG_KERNEL__
122 .long 0x1000 # 0x1000 = default for zImage
123#else
124 .long 0x100000 # 0x100000 = default for big kernel
125#endif
126
127ramdisk_image: .long 0 # address of loaded ramdisk image
128 # Here the loader puts the 32-bit
129 # address where it loaded the image.
130 # This only will be read by the kernel.
131
132ramdisk_size: .long 0 # its size in bytes
133
134bootsect_kludge:
135 .long 0 # obsolete
136
137heap_end_ptr: .word modelist+1024 # (Header version 0x0201 or later)
138 # space from here (exclusive) down to
139 # end of setup code can be used by setup
140 # for local heap purposes.
141
142pad1: .word 0
143cmd_line_ptr: .long 0 # (Header version 0x0202 or later)
144 # If nonzero, a 32-bit pointer
145 # to the kernel command line.
146 # The command line should be
147 # located between the start of
148 # setup and the end of low
149 # memory (0xa0000), or it may
150 # get overwritten before it
151 # gets read. If this field is
152 # used, there is no longer
153 # anything magical about the
154 # 0x90000 segment; the setup
155 # can be located anywhere in
156 # low memory 0x10000 or higher.
157
158ramdisk_max: .long (-__PAGE_OFFSET-(512 << 20)-1) & 0x7fffffff
159 # (Header version 0x0203 or later)
160 # The highest safe address for
161 # the contents of an initrd
162
163trampoline: call start_of_setup
164 .align 16
165 # The offset at this point is 0x240
Venkatesh Pallipadif9ba7052005-05-01 08:58:51 -0700166 .space (0xeff-0x240+1) # E820 & EDD space (ending at 0xeff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167# End of setup header #####################################################
168
169start_of_setup:
170# Bootlin depends on this being done early
171 movw $0x01500, %ax
172 movb $0x81, %dl
173 int $0x13
174
175#ifdef SAFE_RESET_DISK_CONTROLLER
176# Reset the disk controller.
177 movw $0x0000, %ax
178 movb $0x80, %dl
179 int $0x13
180#endif
181
182# Set %ds = %cs, we know that SETUPSEG = %cs at this point
183 movw %cs, %ax # aka SETUPSEG
184 movw %ax, %ds
185# Check signature at end of setup
186 cmpw $SIG1, setup_sig1
187 jne bad_sig
188
189 cmpw $SIG2, setup_sig2
190 jne bad_sig
191
192 jmp good_sig1
193
194# Routine to print asciiz string at ds:si
195prtstr:
196 lodsb
197 andb %al, %al
198 jz fin
199
200 call prtchr
201 jmp prtstr
202
203fin: ret
204
205# Space printing
206prtsp2: call prtspc # Print double space
207prtspc: movb $0x20, %al # Print single space (note: fall-thru)
208
209# Part of above routine, this one just prints ascii al
210prtchr: pushw %ax
211 pushw %cx
212 movw $7,%bx
213 movw $0x01, %cx
214 movb $0x0e, %ah
215 int $0x10
216 popw %cx
217 popw %ax
218 ret
219
220beep: movb $0x07, %al
221 jmp prtchr
222
223no_sig_mess: .string "No setup signature found ..."
224
225good_sig1:
226 jmp good_sig
227
228# We now have to find the rest of the setup code/data
229bad_sig:
230 movw %cs, %ax # SETUPSEG
231 subw $DELTA_INITSEG, %ax # INITSEG
232 movw %ax, %ds
233 xorb %bh, %bh
234 movb (497), %bl # get setup sect from bootsect
235 subw $4, %bx # LILO loads 4 sectors of setup
236 shlw $8, %bx # convert to words (1sect=2^8 words)
237 movw %bx, %cx
238 shrw $3, %bx # convert to segment
239 addw $SYSSEG, %bx
240 movw %bx, %cs:start_sys_seg
241# Move rest of setup code/data to here
242 movw $2048, %di # four sectors loaded by LILO
243 subw %si, %si
244 pushw %cs
245 popw %es
246 movw $SYSSEG, %ax
247 movw %ax, %ds
248 rep
249 movsw
250 movw %cs, %ax # aka SETUPSEG
251 movw %ax, %ds
252 cmpw $SIG1, setup_sig1
253 jne no_sig
254
255 cmpw $SIG2, setup_sig2
256 jne no_sig
257
258 jmp good_sig
259
260no_sig:
261 lea no_sig_mess, %si
262 call prtstr
263
264no_sig_loop:
265 hlt
266 jmp no_sig_loop
267
268good_sig:
269 movw %cs, %ax # aka SETUPSEG
270 subw $DELTA_INITSEG, %ax # aka INITSEG
271 movw %ax, %ds
272# Check if an old loader tries to load a big-kernel
273 testb $LOADED_HIGH, %cs:loadflags # Do we have a big kernel?
274 jz loader_ok # No, no danger for old loaders.
275
276 cmpb $0, %cs:type_of_loader # Do we have a loader that
277 # can deal with us?
278 jnz loader_ok # Yes, continue.
279
280 pushw %cs # No, we have an old loader,
281 popw %ds # die.
282 lea loader_panic_mess, %si
283 call prtstr
284
285 jmp no_sig_loop
286
287loader_panic_mess: .string "Wrong loader, giving up..."
288
289loader_ok:
290# Get memory size (extended mem, kB)
291
292 xorl %eax, %eax
293 movl %eax, (0x1e0)
294#ifndef STANDARD_MEMORY_BIOS_CALL
295 movb %al, (E820NR)
296# Try three different memory detection schemes. First, try
297# e820h, which lets us assemble a memory map, then try e801h,
298# which returns a 32-bit memory size, and finally 88h, which
299# returns 0-64m
300
301# method E820H:
302# the memory map from hell. e820h returns memory classified into
303# a whole bunch of different types, and allows memory holes and
304# everything. We scan through this memory map and build a list
305# of the first 32 memory areas, which we return at [E820MAP].
306# This is documented at http://www.acpi.info/, in the ACPI 2.0 specification.
307
308#define SMAP 0x534d4150
309
310meme820:
311 xorl %ebx, %ebx # continuation counter
312 movw $E820MAP, %di # point into the whitelist
313 # so we can have the bios
314 # directly write into it.
315
316jmpe820:
317 movl $0x0000e820, %eax # e820, upper word zeroed
318 movl $SMAP, %edx # ascii 'SMAP'
319 movl $20, %ecx # size of the e820rec
320 pushw %ds # data record.
321 popw %es
322 int $0x15 # make the call
323 jc bail820 # fall to e801 if it fails
324
325 cmpl $SMAP, %eax # check the return is `SMAP'
326 jne bail820 # fall to e801 if it fails
327
328# cmpl $1, 16(%di) # is this usable memory?
329# jne again820
330
331 # If this is usable memory, we save it by simply advancing %di by
332 # sizeof(e820rec).
333 #
334good820:
Venkatesh Pallipadif9ba7052005-05-01 08:58:51 -0700335 movb (E820NR), %al # up to 128 entries
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 cmpb $E820MAX, %al
Venkatesh Pallipadif9ba7052005-05-01 08:58:51 -0700337 jae bail820
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
339 incb (E820NR)
340 movw %di, %ax
341 addw $20, %ax
342 movw %ax, %di
343again820:
344 cmpl $0, %ebx # check to see if
345 jne jmpe820 # %ebx is set to EOF
346bail820:
347
348
349# method E801H:
350# memory size is in 1k chunksizes, to avoid confusing loadlin.
351# we store the 0xe801 memory size in a completely different place,
352# because it will most likely be longer than 16 bits.
353# (use 1e0 because that's what Larry Augustine uses in his
354# alternative new memory detection scheme, and it's sensible
355# to write everything into the same place.)
356
357meme801:
358 stc # fix to work around buggy
Domen Puncerf4549442005-06-25 14:58:59 -0700359 xorw %cx,%cx # BIOSes which don't clear/set
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 xorw %dx,%dx # carry on pass/error of
361 # e801h memory size call
362 # or merely pass cx,dx though
363 # without changing them.
364 movw $0xe801, %ax
365 int $0x15
366 jc mem88
367
368 cmpw $0x0, %cx # Kludge to handle BIOSes
369 jne e801usecxdx # which report their extended
370 cmpw $0x0, %dx # memory in AX/BX rather than
371 jne e801usecxdx # CX/DX. The spec I have read
372 movw %ax, %cx # seems to indicate AX/BX
373 movw %bx, %dx # are more reasonable anyway...
374
375e801usecxdx:
376 andl $0xffff, %edx # clear sign extend
377 shll $6, %edx # and go from 64k to 1k chunks
378 movl %edx, (0x1e0) # store extended memory size
379 andl $0xffff, %ecx # clear sign extend
380 addl %ecx, (0x1e0) # and add lower memory into
381 # total size.
382
383# Ye Olde Traditional Methode. Returns the memory size (up to 16mb or
384# 64mb, depending on the bios) in ax.
385mem88:
386
387#endif
388 movb $0x88, %ah
389 int $0x15
390 movw %ax, (2)
391
392# Set the keyboard repeat rate to the max
393 movw $0x0305, %ax
394 xorw %bx, %bx
395 int $0x16
396
397# Check for video adapter and its parameters and allow the
398# user to browse video modes.
399 call video # NOTE: we need %ds pointing
400 # to bootsector
401
402# Get hd0 data...
403 xorw %ax, %ax
404 movw %ax, %ds
405 ldsw (4 * 0x41), %si
406 movw %cs, %ax # aka SETUPSEG
407 subw $DELTA_INITSEG, %ax # aka INITSEG
408 pushw %ax
409 movw %ax, %es
410 movw $0x0080, %di
411 movw $0x10, %cx
412 pushw %cx
413 cld
414 rep
415 movsb
416# Get hd1 data...
417 xorw %ax, %ax
418 movw %ax, %ds
419 ldsw (4 * 0x46), %si
420 popw %cx
421 popw %es
422 movw $0x0090, %di
423 rep
424 movsb
425# Check that there IS a hd1 :-)
426 movw $0x01500, %ax
427 movb $0x81, %dl
428 int $0x13
429 jc no_disk1
430
431 cmpb $3, %ah
432 je is_disk1
433
434no_disk1:
435 movw %cs, %ax # aka SETUPSEG
436 subw $DELTA_INITSEG, %ax # aka INITSEG
437 movw %ax, %es
438 movw $0x0090, %di
439 movw $0x10, %cx
440 xorw %ax, %ax
441 cld
442 rep
443 stosb
444is_disk1:
445# check for Micro Channel (MCA) bus
446 movw %cs, %ax # aka SETUPSEG
447 subw $DELTA_INITSEG, %ax # aka INITSEG
448 movw %ax, %ds
449 xorw %ax, %ax
450 movw %ax, (0xa0) # set table length to 0
451 movb $0xc0, %ah
452 stc
453 int $0x15 # moves feature table to es:bx
454 jc no_mca
455
456 pushw %ds
457 movw %es, %ax
458 movw %ax, %ds
459 movw %cs, %ax # aka SETUPSEG
460 subw $DELTA_INITSEG, %ax # aka INITSEG
461 movw %ax, %es
462 movw %bx, %si
463 movw $0xa0, %di
464 movw (%si), %cx
465 addw $2, %cx # table length is a short
466 cmpw $0x10, %cx
467 jc sysdesc_ok
468
469 movw $0x10, %cx # we keep only first 16 bytes
470sysdesc_ok:
471 rep
472 movsb
473 popw %ds
474no_mca:
475#ifdef CONFIG_X86_VOYAGER
476 movb $0xff, 0x40 # flag on config found
477 movb $0xc0, %al
478 mov $0xff, %ah
479 int $0x15 # put voyager config info at es:di
480 jc no_voyager
481 movw $0x40, %si # place voyager info in apm table
482 cld
483 movw $7, %cx
484voyager_rep:
485 movb %es:(%di), %al
486 movb %al,(%si)
487 incw %di
488 incw %si
489 decw %cx
490 jnz voyager_rep
491no_voyager:
492#endif
493# Check for PS/2 pointing device
494 movw %cs, %ax # aka SETUPSEG
495 subw $DELTA_INITSEG, %ax # aka INITSEG
496 movw %ax, %ds
Diego Calleja606bd582006-09-26 10:52:30 +0200497 movb $0, (0x1ff) # default is no pointing device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 int $0x11 # int 0x11: equipment list
499 testb $0x04, %al # check if mouse installed
500 jz no_psmouse
501
Diego Calleja606bd582006-09-26 10:52:30 +0200502 movb $0xAA, (0x1ff) # device present
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503no_psmouse:
504
505#if defined(CONFIG_X86_SPEEDSTEP_SMI) || defined(CONFIG_X86_SPEEDSTEP_SMI_MODULE)
506 movl $0x0000E980, %eax # IST Support
507 movl $0x47534943, %edx # Request value
508 int $0x15
509
510 movl %eax, (96)
511 movl %ebx, (100)
512 movl %ecx, (104)
513 movl %edx, (108)
514#endif
515
516#if defined(CONFIG_APM) || defined(CONFIG_APM_MODULE)
517# Then check for an APM BIOS...
518 # %ds points to the bootsector
519 movw $0, 0x40 # version = 0 means no APM BIOS
520 movw $0x05300, %ax # APM BIOS installation check
521 xorw %bx, %bx
522 int $0x15
523 jc done_apm_bios # Nope, no APM BIOS
524
525 cmpw $0x0504d, %bx # Check for "PM" signature
526 jne done_apm_bios # No signature, no APM BIOS
527
528 andw $0x02, %cx # Is 32 bit supported?
529 je done_apm_bios # No 32-bit, no (good) APM BIOS
530
531 movw $0x05304, %ax # Disconnect first just in case
532 xorw %bx, %bx
533 int $0x15 # ignore return code
534 movw $0x05303, %ax # 32 bit connect
535 xorl %ebx, %ebx
536 xorw %cx, %cx # paranoia :-)
537 xorw %dx, %dx # ...
538 xorl %esi, %esi # ...
539 xorw %di, %di # ...
540 int $0x15
541 jc no_32_apm_bios # Ack, error.
542
543 movw %ax, (66) # BIOS code segment
544 movl %ebx, (68) # BIOS entry point offset
545 movw %cx, (72) # BIOS 16 bit code segment
546 movw %dx, (74) # BIOS data segment
547 movl %esi, (78) # BIOS code segment lengths
548 movw %di, (82) # BIOS data segment length
549# Redo the installation check as the 32 bit connect
550# modifies the flags returned on some BIOSs
551 movw $0x05300, %ax # APM BIOS installation check
552 xorw %bx, %bx
553 xorw %cx, %cx # paranoia
554 int $0x15
555 jc apm_disconnect # error -> shouldn't happen
556
557 cmpw $0x0504d, %bx # check for "PM" signature
558 jne apm_disconnect # no sig -> shouldn't happen
559
560 movw %ax, (64) # record the APM BIOS version
561 movw %cx, (76) # and flags
562 jmp done_apm_bios
563
564apm_disconnect: # Tidy up
565 movw $0x05304, %ax # Disconnect
566 xorw %bx, %bx
567 int $0x15 # ignore return code
568
569 jmp done_apm_bios
570
571no_32_apm_bios:
572 andw $0xfffd, (76) # remove 32 bit support bit
573done_apm_bios:
574#endif
575
576#include "edd.S"
577
578# Now we want to move to protected mode ...
579 cmpw $0, %cs:realmode_swtch
580 jz rmodeswtch_normal
581
582 lcall *%cs:realmode_swtch
583
584 jmp rmodeswtch_end
585
586rmodeswtch_normal:
587 pushw %cs
588 call default_switch
589
590rmodeswtch_end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591# Now we move the system to its rightful place ... but we check if we have a
592# big-kernel. In that case we *must* not move it ...
593 testb $LOADED_HIGH, %cs:loadflags
594 jz do_move0 # .. then we have a normal low
595 # loaded zImage
596 # .. or else we have a high
597 # loaded bzImage
598 jmp end_move # ... and we skip moving
599
600do_move0:
601 movw $0x100, %ax # start of destination segment
602 movw %cs, %bp # aka SETUPSEG
603 subw $DELTA_INITSEG, %bp # aka INITSEG
604 movw %cs:start_sys_seg, %bx # start of source segment
605 cld
606do_move:
607 movw %ax, %es # destination segment
608 incb %ah # instead of add ax,#0x100
609 movw %bx, %ds # source segment
610 addw $0x100, %bx
611 subw %di, %di
612 subw %si, %si
613 movw $0x800, %cx
614 rep
615 movsw
616 cmpw %bp, %bx # assume start_sys_seg > 0x200,
617 # so we will perhaps read one
618 # page more than needed, but
619 # never overwrite INITSEG
620 # because destination is a
621 # minimum one page below source
622 jb do_move
623
624end_move:
625# then we load the segment descriptors
626 movw %cs, %ax # aka SETUPSEG
627 movw %ax, %ds
628
629# Check whether we need to be downward compatible with version <=201
630 cmpl $0, cmd_line_ptr
631 jne end_move_self # loader uses version >=202 features
632 cmpb $0x20, type_of_loader
633 je end_move_self # bootsect loader, we know of it
634
635# Boot loader doesnt support boot protocol version 2.02.
636# If we have our code not at 0x90000, we need to move it there now.
637# We also then need to move the params behind it (commandline)
638# Because we would overwrite the code on the current IP, we move
639# it in two steps, jumping high after the first one.
640 movw %cs, %ax
641 cmpw $SETUPSEG, %ax
642 je end_move_self
643
644 cli # make sure we really have
645 # interrupts disabled !
646 # because after this the stack
647 # should not be used
648 subw $DELTA_INITSEG, %ax # aka INITSEG
649 movw %ss, %dx
650 cmpw %ax, %dx
651 jb move_self_1
652
653 addw $INITSEG, %dx
654 subw %ax, %dx # this will go into %ss after
655 # the move
656move_self_1:
657 movw %ax, %ds
658 movw $INITSEG, %ax # real INITSEG
659 movw %ax, %es
660 movw %cs:setup_move_size, %cx
661 std # we have to move up, so we use
662 # direction down because the
663 # areas may overlap
664 movw %cx, %di
665 decw %di
666 movw %di, %si
667 subw $move_self_here+0x200, %cx
668 rep
669 movsb
670 ljmp $SETUPSEG, $move_self_here
671
672move_self_here:
673 movw $move_self_here+0x200, %cx
674 rep
675 movsb
676 movw $SETUPSEG, %ax
677 movw %ax, %ds
678 movw %dx, %ss
679end_move_self: # now we are at the right place
680
681#
682# Enable A20. This is at the very best an annoying procedure.
683# A20 code ported from SYSLINUX 1.52-1.63 by H. Peter Anvin.
684# AMD Elan bug fix by Robert Schwebel.
685#
686
687#if defined(CONFIG_X86_ELAN)
688 movb $0x02, %al # alternate A20 gate
689 outb %al, $0x92 # this works on SC410/SC520
690a20_elan_wait:
691 call a20_test
692 jz a20_elan_wait
693 jmp a20_done
694#endif
695
696
697A20_TEST_LOOPS = 32 # Iterations per wait
698A20_ENABLE_LOOPS = 255 # Total loops to try
699
700
701#ifndef CONFIG_X86_VOYAGER
702a20_try_loop:
703
704 # First, see if we are on a system with no A20 gate.
705a20_none:
706 call a20_test
707 jnz a20_done
708
709 # Next, try the BIOS (INT 0x15, AX=0x2401)
710a20_bios:
711 movw $0x2401, %ax
712 pushfl # Be paranoid about flags
713 int $0x15
714 popfl
715
716 call a20_test
717 jnz a20_done
718
719 # Try enabling A20 through the keyboard controller
720#endif /* CONFIG_X86_VOYAGER */
721a20_kbc:
722 call empty_8042
723
724#ifndef CONFIG_X86_VOYAGER
725 call a20_test # Just in case the BIOS worked
726 jnz a20_done # but had a delayed reaction.
727#endif
728
729 movb $0xD1, %al # command write
730 outb %al, $0x64
731 call empty_8042
732
733 movb $0xDF, %al # A20 on
734 outb %al, $0x60
735 call empty_8042
736
737#ifndef CONFIG_X86_VOYAGER
738 # Wait until a20 really *is* enabled; it can take a fair amount of
739 # time on certain systems; Toshiba Tecras are known to have this
740 # problem.
741a20_kbc_wait:
742 xorw %cx, %cx
743a20_kbc_wait_loop:
744 call a20_test
745 jnz a20_done
746 loop a20_kbc_wait_loop
747
748 # Final attempt: use "configuration port A"
749a20_fast:
750 inb $0x92, %al # Configuration Port A
751 orb $0x02, %al # "fast A20" version
752 andb $0xFE, %al # don't accidentally reset
753 outb %al, $0x92
754
755 # Wait for configuration port A to take effect
756a20_fast_wait:
757 xorw %cx, %cx
758a20_fast_wait_loop:
759 call a20_test
760 jnz a20_done
761 loop a20_fast_wait_loop
762
763 # A20 is still not responding. Try frobbing it again.
764 #
765 decb (a20_tries)
766 jnz a20_try_loop
767
768 movw $a20_err_msg, %si
769 call prtstr
770
771a20_die:
772 hlt
773 jmp a20_die
774
775a20_tries:
776 .byte A20_ENABLE_LOOPS
777
778a20_err_msg:
779 .ascii "linux: fatal error: A20 gate not responding!"
780 .byte 13, 10, 0
781
782 # If we get here, all is good
783a20_done:
784
785#endif /* CONFIG_X86_VOYAGER */
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100786# set up gdt and idt and 32bit start address
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 lidt idt_48 # load idt with 0,0
788 xorl %eax, %eax # Compute gdt_base
789 movw %ds, %ax # (Convert %ds:gdt to a linear ptr)
790 shll $4, %eax
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100791 addl %eax, code32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 addl $gdt, %eax
793 movl %eax, (gdt_48+2)
794 lgdt gdt_48 # load gdt with whatever is
795 # appropriate
796
797# make sure any possible coprocessor is properly reset..
798 xorw %ax, %ax
799 outb %al, $0xf0
800 call delay
801
802 outb %al, $0xf1
803 call delay
804
805# well, that went ok, I hope. Now we mask all interrupts - the rest
806# is done in init_IRQ().
807 movb $0xFF, %al # mask all interrupts for now
808 outb %al, $0xA1
809 call delay
810
811 movb $0xFB, %al # mask all irq's but irq2 which
812 outb %al, $0x21 # is cascaded
813
814# Well, that certainly wasn't fun :-(. Hopefully it works, and we don't
815# need no steenking BIOS anyway (except for the initial loading :-).
816# The BIOS-routine wants lots of unnecessary data, and it's less
817# "interesting" anyway. This is how REAL programmers do it.
818#
819# Well, now's the time to actually move into protected mode. To make
820# things as simple as possible, we do no register set-up or anything,
821# we let the gnu-compiled 32-bit programs do that. We just jump to
822# absolute address 0x1000 (or the loader supplied one),
823# in 32-bit protected mode.
824#
825# Note that the short jump isn't strictly needed, although there are
826# reasons why it might be a good idea. It won't hurt in any case.
827 movw $1, %ax # protected mode (PE) bit
828 lmsw %ax # This is it!
829 jmp flush_instr
830
831flush_instr:
832 xorw %bx, %bx # Flag to indicate a boot
833 xorl %esi, %esi # Pointer to real-mode code
834 movw %cs, %si
835 subw $DELTA_INITSEG, %si
836 shll $4, %esi # Convert to 32-bit pointer
837
838# jump to startup_32 in arch/i386/boot/compressed/head.S
839#
840# NOTE: For high loaded big kernels we need a
841# jmpi 0x100000,__BOOT_CS
842#
843# but we yet haven't reloaded the CS register, so the default size
844# of the target offset still is 16 bit.
Domen Puncerf4549442005-06-25 14:58:59 -0700845# However, using an operand prefix (0x66), the CPU will properly
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846# take our 48 bit far pointer. (INTeL 80386 Programmer's Reference
847# Manual, Mixing 16-bit and 32-bit code, page 16-6)
848
849 .byte 0x66, 0xea # prefix + jmpi-opcode
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100850code32: .long startup_32 # will be set to %cs+startup_32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 .word __BOOT_CS
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100852.code32
853startup_32:
854 movl $(__BOOT_DS), %eax
855 movl %eax, %ds
856 movl %eax, %es
857 movl %eax, %fs
858 movl %eax, %gs
859 movl %eax, %ss
860
861 xorl %eax, %eax
8621: incl %eax # check that A20 really IS enabled
863 movl %eax, 0x00000000 # loop forever if it isn't
864 cmpl %eax, 0x00100000
865 je 1b
866
867 # Jump to the 32bit entry point
868 jmpl *(code32_start - start + (DELTA_INITSEG << 4))(%esi)
869.code16
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
871# Here's a bunch of information about your current kernel..
872kernel_version: .ascii UTS_RELEASE
873 .ascii " ("
874 .ascii LINUX_COMPILE_BY
875 .ascii "@"
876 .ascii LINUX_COMPILE_HOST
877 .ascii ") "
878 .ascii UTS_VERSION
879 .byte 0
880
881# This is the default real mode switch routine.
882# to be called just before protected mode transition
883default_switch:
884 cli # no interrupts allowed !
885 movb $0x80, %al # disable NMI for bootup
886 # sequence
887 outb %al, $0x70
888 lret
889
890
891#ifndef CONFIG_X86_VOYAGER
892# This routine tests whether or not A20 is enabled. If so, it
893# exits with zf = 0.
894#
895# The memory address used, 0x200, is the int $0x80 vector, which
896# should be safe.
897
898A20_TEST_ADDR = 4*0x80
899
900a20_test:
901 pushw %cx
902 pushw %ax
903 xorw %cx, %cx
904 movw %cx, %fs # Low memory
905 decw %cx
906 movw %cx, %gs # High memory area
907 movw $A20_TEST_LOOPS, %cx
908 movw %fs:(A20_TEST_ADDR), %ax
909 pushw %ax
910a20_test_wait:
911 incw %ax
912 movw %ax, %fs:(A20_TEST_ADDR)
913 call delay # Serialize and make delay constant
914 cmpw %gs:(A20_TEST_ADDR+0x10), %ax
915 loope a20_test_wait
916
917 popw %fs:(A20_TEST_ADDR)
918 popw %ax
919 popw %cx
920 ret
921
922#endif /* CONFIG_X86_VOYAGER */
923
924# This routine checks that the keyboard command queue is empty
925# (after emptying the output buffers)
926#
927# Some machines have delusions that the keyboard buffer is always full
928# with no keyboard attached...
929#
930# If there is no keyboard controller, we will usually get 0xff
931# to all the reads. With each IO taking a microsecond and
932# a timeout of 100,000 iterations, this can take about half a
933# second ("delay" == outb to port 0x80). That should be ok,
934# and should also be plenty of time for a real keyboard controller
935# to empty.
936#
937
938empty_8042:
939 pushl %ecx
940 movl $100000, %ecx
941
942empty_8042_loop:
943 decl %ecx
944 jz empty_8042_end_loop
945
946 call delay
947
948 inb $0x64, %al # 8042 status port
949 testb $1, %al # output buffer?
950 jz no_output
951
952 call delay
953 inb $0x60, %al # read it
954 jmp empty_8042_loop
955
956no_output:
957 testb $2, %al # is input buffer full?
958 jnz empty_8042_loop # yes - loop
959empty_8042_end_loop:
960 popl %ecx
961 ret
962
963# Read the cmos clock. Return the seconds in al
964gettime:
965 pushw %cx
966 movb $0x02, %ah
967 int $0x1a
968 movb %dh, %al # %dh contains the seconds
969 andb $0x0f, %al
970 movb %dh, %ah
971 movb $0x04, %cl
972 shrb %cl, %ah
973 aad
974 popw %cx
975 ret
976
977# Delay is needed after doing I/O
978delay:
979 outb %al,$0x80
980 ret
981
982# Descriptor tables
983#
984# NOTE: The intel manual says gdt should be sixteen bytes aligned for
985# efficiency reasons. However, there are machines which are known not
986# to boot with misaligned GDTs, so alter this at your peril! If you alter
987# GDT_ENTRY_BOOT_CS (in asm/segment.h) remember to leave at least two
988# empty GDT entries (one for NULL and one reserved).
989#
990# NOTE: On some CPUs, the GDT must be 8 byte aligned. This is
991# true for the Voyager Quad CPU card which will not boot without
992# This directive. 16 byte aligment is recommended by intel.
993#
994 .align 16
995gdt:
996 .fill GDT_ENTRY_BOOT_CS,8,0
997
998 .word 0xFFFF # 4Gb - (0x100000*0x1000 = 4Gb)
999 .word 0 # base address = 0
1000 .word 0x9A00 # code read/exec
1001 .word 0x00CF # granularity = 4096, 386
1002 # (+5th nibble of limit)
1003
1004 .word 0xFFFF # 4Gb - (0x100000*0x1000 = 4Gb)
1005 .word 0 # base address = 0
1006 .word 0x9200 # data read/write
1007 .word 0x00CF # granularity = 4096, 386
1008 # (+5th nibble of limit)
1009gdt_end:
1010 .align 4
1011
1012 .word 0 # alignment byte
1013idt_48:
1014 .word 0 # idt limit = 0
1015 .word 0, 0 # idt base = 0L
1016
1017 .word 0 # alignment byte
1018gdt_48:
1019 .word gdt_end - gdt - 1 # gdt limit
1020 .word 0, 0 # gdt base (filled in later)
1021
1022# Include video setup & detection code
1023
1024#include "video.S"
1025
1026# Setup signature -- must be last
1027setup_sig1: .word SIG1
1028setup_sig2: .word SIG2
1029
1030# After this point, there is some free space which is used by the video mode
1031# handling code to store the temporary mode table (not used by the kernel).
1032
1033modelist:
1034
1035.text
1036endtext:
1037.data
1038enddata:
1039.bss
1040endbss: