2 * setup.S Copyright (C) 1991, 1992 Linus Torvalds
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.
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
14 * Move PS/2 aux init code to psaux.c
15 * (troyer@saifr00.cfsat.Honeywell.COM) 03Oct92
17 * some changes and additional features by Christoph Niemann,
18 * March 1993/June 1994 (Christoph.Niemann@linux.org)
20 * add APM BIOS checking by Stephen Rothwell, May 1994
21 * (sfr@canb.auug.org.au)
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>
27 * Video handling moved to video.S by Martin Mares, March 1996
28 * <mj@k332.feld.cvut.cz>
30 * Extended memory detection scheme retwiddled by orc@pell.chi.il.us (david
31 * parsons) to avoid loadlin confusion, July 1997
33 * Transcribed from Intel (as86) -> AT&T (gas) by Chris Noe, May 1999.
34 * <stiker@northlink.com>
36 * Fix to work around buggy BIOSes which don't use carry bit correctly
37 * 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>
45 * New A20 code ported from SYSLINUX by H. Peter Anvin. AMD Elan bugfixes
46 * by Robert Schwebel, December 2001 <robert@schwebel.de>
49 #include <asm/segment.h>
50 #include <linux/utsrelease.h>
51 #include <linux/compile.h>
55 #include <asm/setup.h>
57 /* Signature words to ensure LILO loaded us right */
61 INITSEG = DEF_INITSEG # 0x9000, we move boot here, out of the way
62 SYSSEG = DEF_SYSSEG # 0x1000, system loaded at 0x10000 (65536).
63 SETUPSEG = DEF_SETUPSEG # 0x9020, this is the current segment
64 # ... and the former contents of CS
66 DELTA_INITSEG = SETUPSEG - INITSEG # 0x0020
69 .globl begtext, begdata, begbss, endtext, enddata, endbss
82 # This is the setup header, and it must start at %cs:2 (old 0x9020:2)
84 .ascii "HdrS" # header signature
85 .word 0x0206 # header version number (>= 0x0105)
86 # or else old loadlin-1.5 will fail)
87 realmode_swtch: .word 0, 0 # default_switch, SETUPSEG
88 start_sys_seg: .word SYSSEG
89 .word kernel_version # pointing to kernel version string
90 # above section of header is compatible
91 # with loadlin-1.5 (header v1.5). Don't
94 type_of_loader: .byte 0 # = 0, old one (LILO, Loadlin,
95 # Bootlin, SYSLX, bootsect...)
96 # See Documentation/i386/boot.txt for
99 # flags, unused bits must be zero (RFU) bit within loadflags
101 LOADED_HIGH = 1 # If set, the kernel is loaded high
102 CAN_USE_HEAP = 0x80 # If set, the loader also has set
103 # heap_end_ptr to tell how much
104 # space behind setup.S can be used for
106 # Only the loader knows what is free
107 #ifndef __BIG_KERNEL__
113 setup_move_size: .word 0x8000 # size to move, when setup is not
114 # loaded at 0x90000. We will move setup
115 # to 0x90000 then just before jumping
116 # into the kernel. However, only the
117 # loader knows how much data behind
118 # us also needs to be loaded.
120 code32_start: # here loaders can put a different
121 # start address for 32-bit code.
122 #ifndef __BIG_KERNEL__
123 .long 0x1000 # 0x1000 = default for zImage
125 .long 0x100000 # 0x100000 = default for big kernel
128 ramdisk_image: .long 0 # address of loaded ramdisk image
129 # Here the loader puts the 32-bit
130 # address where it loaded the image.
131 # This only will be read by the kernel.
133 ramdisk_size: .long 0 # its size in bytes
138 heap_end_ptr: .word modelist+1024 # (Header version 0x0201 or later)
139 # space from here (exclusive) down to
140 # end of setup code can be used by setup
141 # for local heap purposes.
144 cmd_line_ptr: .long 0 # (Header version 0x0202 or later)
145 # If nonzero, a 32-bit pointer
146 # to the kernel command line.
147 # The command line should be
148 # located between the start of
149 # setup and the end of low
150 # memory (0xa0000), or it may
151 # get overwritten before it
152 # gets read. If this field is
153 # used, there is no longer
154 # anything magical about the
155 # 0x90000 segment; the setup
156 # can be located anywhere in
157 # low memory 0x10000 or higher.
159 ramdisk_max: .long (-__PAGE_OFFSET-(512 << 20)-1) & 0x7fffffff
160 # (Header version 0x0203 or later)
161 # The highest safe address for
162 # the contents of an initrd
164 kernel_alignment: .long CONFIG_PHYSICAL_ALIGN #physical addr alignment
165 #required for protected mode
167 #ifdef CONFIG_RELOCATABLE
168 relocatable_kernel: .byte 1
170 relocatable_kernel: .byte 0
175 cmdline_size: .long COMMAND_LINE_SIZE-1 #length of the command line,
176 #added with boot protocol
179 trampoline: call start_of_setup
181 # The offset at this point is 0x240
182 .space (0xeff-0x240+1) # E820 & EDD space (ending at 0xeff)
183 # End of setup header #####################################################
186 # Bootlin depends on this being done early
191 #ifdef SAFE_RESET_DISK_CONTROLLER
192 # Reset the disk controller.
198 # Set %ds = %cs, we know that SETUPSEG = %cs at this point
199 movw %cs, %ax # aka SETUPSEG
201 # Check signature at end of setup
202 cmpw $SIG1, setup_sig1
205 cmpw $SIG2, setup_sig2
210 # Routine to print asciiz string at ds:si
222 prtsp2: call prtspc # Print double space
223 prtspc: movb $0x20, %al # Print single space (note: fall-thru)
225 # Part of above routine, this one just prints ascii al
236 beep: movb $0x07, %al
239 no_sig_mess: .string "No setup signature found ..."
244 # We now have to find the rest of the setup code/data
246 movw %cs, %ax # SETUPSEG
247 subw $DELTA_INITSEG, %ax # INITSEG
250 movb (497), %bl # get setup sect from bootsect
251 subw $4, %bx # LILO loads 4 sectors of setup
252 shlw $8, %bx # convert to words (1sect=2^8 words)
254 shrw $3, %bx # convert to segment
256 movw %bx, %cs:start_sys_seg
257 # Move rest of setup code/data to here
258 movw $2048, %di # four sectors loaded by LILO
266 movw %cs, %ax # aka SETUPSEG
268 cmpw $SIG1, setup_sig1
271 cmpw $SIG2, setup_sig2
285 movw %cs, %ax # aka SETUPSEG
286 subw $DELTA_INITSEG, %ax # aka INITSEG
288 # Check if an old loader tries to load a big-kernel
289 testb $LOADED_HIGH, %cs:loadflags # Do we have a big kernel?
290 jz loader_ok # No, no danger for old loaders.
292 cmpb $0, %cs:type_of_loader # Do we have a loader that
294 jnz loader_ok # Yes, continue.
296 pushw %cs # No, we have an old loader,
298 lea loader_panic_mess, %si
303 loader_panic_mess: .string "Wrong loader, giving up..."
305 # check minimum cpuid
306 # we do this here because it is the last place we can actually
307 # show a user visible error message. Later the video modus
308 # might be already messed up.
313 movw %cs,%ax # aka SETUPSEG
315 lea cpu_panic_mess,%si
320 .asciz "PANIC: CPU too old for this kernel."
322 #include "../kernel/verify_cpu.S"
325 # Get memory size (extended mem, kB)
329 #ifndef STANDARD_MEMORY_BIOS_CALL
331 # Try three different memory detection schemes. First, try
332 # e820h, which lets us assemble a memory map, then try e801h,
333 # which returns a 32-bit memory size, and finally 88h, which
337 # the memory map from hell. e820h returns memory classified into
338 # a whole bunch of different types, and allows memory holes and
339 # everything. We scan through this memory map and build a list
340 # of the first 32 memory areas, which we return at [E820MAP].
341 # This is documented at http://www.acpi.info/, in the ACPI 2.0 specification.
343 #define SMAP 0x534d4150
346 xorl %ebx, %ebx # continuation counter
347 movw $E820MAP, %di # point into the whitelist
348 # so we can have the bios
349 # directly write into it.
352 movl $0x0000e820, %eax # e820, upper word zeroed
353 movl $SMAP, %edx # ascii 'SMAP'
354 movl $20, %ecx # size of the e820rec
355 pushw %ds # data record.
357 int $0x15 # make the call
358 jc bail820 # fall to e801 if it fails
360 cmpl $SMAP, %eax # check the return is `SMAP'
361 jne bail820 # fall to e801 if it fails
363 # cmpl $1, 16(%di) # is this usable memory?
366 # If this is usable memory, we save it by simply advancing %di by
370 movb (E820NR), %al # up to 128 entries
379 cmpl $0, %ebx # check to see if
380 jne jmpe820 # %ebx is set to EOF
385 # memory size is in 1k chunksizes, to avoid confusing loadlin.
386 # we store the 0xe801 memory size in a completely different place,
387 # because it will most likely be longer than 16 bits.
388 # (use 1e0 because that's what Larry Augustine uses in his
389 # alternative new memory detection scheme, and it's sensible
390 # to write everything into the same place.)
393 stc # fix to work around buggy
394 xorw %cx,%cx # BIOSes which don't clear/set
395 xorw %dx,%dx # carry on pass/error of
396 # e801h memory size call
397 # or merely pass cx,dx though
398 # without changing them.
403 cmpw $0x0, %cx # Kludge to handle BIOSes
404 jne e801usecxdx # which report their extended
405 cmpw $0x0, %dx # memory in AX/BX rather than
406 jne e801usecxdx # CX/DX. The spec I have read
407 movw %ax, %cx # seems to indicate AX/BX
408 movw %bx, %dx # are more reasonable anyway...
411 andl $0xffff, %edx # clear sign extend
412 shll $6, %edx # and go from 64k to 1k chunks
413 movl %edx, (0x1e0) # store extended memory size
414 andl $0xffff, %ecx # clear sign extend
415 addl %ecx, (0x1e0) # and add lower memory into
418 # Ye Olde Traditional Methode. Returns the memory size (up to 16mb or
419 # 64mb, depending on the bios) in ax.
427 # Set the keyboard repeat rate to the max
432 #ifndef CONFIG_VGA_NOPROBE
434 # Check for video adapter and its parameters and allow the
435 # user to browse video modes.
436 call video # NOTE: we need %ds pointing
444 movw %cs, %ax # aka SETUPSEG
445 subw $DELTA_INITSEG, %ax # aka INITSEG
463 # Check that there IS a hd1 :-)
473 movw %cs, %ax # aka SETUPSEG
474 subw $DELTA_INITSEG, %ax # aka INITSEG
483 # check for Micro Channel (MCA) bus
484 movw %cs, %ax # aka SETUPSEG
485 subw $DELTA_INITSEG, %ax # aka INITSEG
488 movw %ax, (0xa0) # set table length to 0
491 int $0x15 # moves feature table to es:bx
497 movw %cs, %ax # aka SETUPSEG
498 subw $DELTA_INITSEG, %ax # aka INITSEG
503 addw $2, %cx # table length is a short
507 movw $0x10, %cx # we keep only first 16 bytes
513 #ifdef CONFIG_X86_VOYAGER
514 movb $0xff, 0x40 # flag on config found
517 int $0x15 # put voyager config info at es:di
519 movw $0x40, %si # place voyager info in apm table
531 # Check for PS/2 pointing device
532 movw %cs, %ax # aka SETUPSEG
533 subw $DELTA_INITSEG, %ax # aka INITSEG
535 movb $0, (0x1ff) # default is no pointing device
536 int $0x11 # int 0x11: equipment list
537 testb $0x04, %al # check if mouse installed
540 movb $0xAA, (0x1ff) # device present
543 #if defined(CONFIG_X86_SPEEDSTEP_SMI) || defined(CONFIG_X86_SPEEDSTEP_SMI_MODULE)
544 movl $0x0000E980, %eax # IST Support
545 movl $0x47534943, %edx # Request value
554 #if defined(CONFIG_APM) || defined(CONFIG_APM_MODULE)
555 # Then check for an APM BIOS...
556 # %ds points to the bootsector
557 movw $0, 0x40 # version = 0 means no APM BIOS
558 movw $0x05300, %ax # APM BIOS installation check
561 jc done_apm_bios # Nope, no APM BIOS
563 cmpw $0x0504d, %bx # Check for "PM" signature
564 jne done_apm_bios # No signature, no APM BIOS
566 andw $0x02, %cx # Is 32 bit supported?
567 je done_apm_bios # No 32-bit, no (good) APM BIOS
569 movw $0x05304, %ax # Disconnect first just in case
571 int $0x15 # ignore return code
572 movw $0x05303, %ax # 32 bit connect
574 xorw %cx, %cx # paranoia :-)
576 xorl %esi, %esi # ...
579 jc no_32_apm_bios # Ack, error.
581 movw %ax, (66) # BIOS code segment
582 movl %ebx, (68) # BIOS entry point offset
583 movw %cx, (72) # BIOS 16 bit code segment
584 movw %dx, (74) # BIOS data segment
585 movl %esi, (78) # BIOS code segment lengths
586 movw %di, (82) # BIOS data segment length
587 # Redo the installation check as the 32 bit connect
588 # modifies the flags returned on some BIOSs
589 movw $0x05300, %ax # APM BIOS installation check
591 xorw %cx, %cx # paranoia
593 jc apm_disconnect # error -> shouldn't happen
595 cmpw $0x0504d, %bx # check for "PM" signature
596 jne apm_disconnect # no sig -> shouldn't happen
598 movw %ax, (64) # record the APM BIOS version
599 movw %cx, (76) # and flags
602 apm_disconnect: # Tidy up
603 movw $0x05304, %ax # Disconnect
605 int $0x15 # ignore return code
610 andw $0xfffd, (76) # remove 32 bit support bit
616 # Now we want to move to protected mode ...
617 cmpw $0, %cs:realmode_swtch
620 lcall *%cs:realmode_swtch
629 # Now we move the system to its rightful place ... but we check if we have a
630 # big-kernel. In that case we *must* not move it ...
631 testb $LOADED_HIGH, %cs:loadflags
632 jz do_move0 # .. then we have a normal low
634 # .. or else we have a high
636 jmp end_move # ... and we skip moving
639 movw $0x100, %ax # start of destination segment
640 movw %cs, %bp # aka SETUPSEG
641 subw $DELTA_INITSEG, %bp # aka INITSEG
642 movw %cs:start_sys_seg, %bx # start of source segment
645 movw %ax, %es # destination segment
646 incb %ah # instead of add ax,#0x100
647 movw %bx, %ds # source segment
654 cmpw %bp, %bx # assume start_sys_seg > 0x200,
655 # so we will perhaps read one
656 # page more than needed, but
657 # never overwrite INITSEG
658 # because destination is a
659 # minimum one page below source
663 # then we load the segment descriptors
664 movw %cs, %ax # aka SETUPSEG
667 # Check whether we need to be downward compatible with version <=201
668 cmpl $0, cmd_line_ptr
669 jne end_move_self # loader uses version >=202 features
670 cmpb $0x20, type_of_loader
671 je end_move_self # bootsect loader, we know of it
673 # Boot loader doesnt support boot protocol version 2.02.
674 # If we have our code not at 0x90000, we need to move it there now.
675 # We also then need to move the params behind it (commandline)
676 # Because we would overwrite the code on the current IP, we move
677 # it in two steps, jumping high after the first one.
682 cli # make sure we really have
683 # interrupts disabled !
684 # because after this the stack
686 subw $DELTA_INITSEG, %ax # aka INITSEG
692 subw %ax, %dx # this will go into %ss after
696 movw $INITSEG, %ax # real INITSEG
698 movw %cs:setup_move_size, %cx
699 std # we have to move up, so we use
700 # direction down because the
705 subw $move_self_here+0x200, %cx
708 ljmp $SETUPSEG, $move_self_here
711 movw $move_self_here+0x200, %cx
717 end_move_self: # now we are at the right place
720 # Enable A20. This is at the very best an annoying procedure.
721 # A20 code ported from SYSLINUX 1.52-1.63 by H. Peter Anvin.
722 # AMD Elan bug fix by Robert Schwebel.
725 #if defined(CONFIG_X86_ELAN)
726 movb $0x02, %al # alternate A20 gate
727 outb %al, $0x92 # this works on SC410/SC520
735 A20_TEST_LOOPS = 32 # Iterations per wait
736 A20_ENABLE_LOOPS = 255 # Total loops to try
739 #ifndef CONFIG_X86_VOYAGER
742 # First, see if we are on a system with no A20 gate.
747 # Next, try the BIOS (INT 0x15, AX=0x2401)
750 pushfl # Be paranoid about flags
757 # Try enabling A20 through the keyboard controller
758 #endif /* CONFIG_X86_VOYAGER */
762 #ifndef CONFIG_X86_VOYAGER
763 call a20_test # Just in case the BIOS worked
764 jnz a20_done # but had a delayed reaction.
767 movb $0xD1, %al # command write
771 movb $0xDF, %al # A20 on
775 #ifndef CONFIG_X86_VOYAGER
776 # Wait until a20 really *is* enabled; it can take a fair amount of
777 # time on certain systems; Toshiba Tecras are known to have this
784 loop a20_kbc_wait_loop
786 # Final attempt: use "configuration port A"
788 inb $0x92, %al # Configuration Port A
789 orb $0x02, %al # "fast A20" version
790 andb $0xFE, %al # don't accidentally reset
793 # Wait for configuration port A to take effect
799 loop a20_fast_wait_loop
801 # A20 is still not responding. Try frobbing it again.
806 movw $a20_err_msg, %si
814 .byte A20_ENABLE_LOOPS
817 .ascii "linux: fatal error: A20 gate not responding!"
820 # If we get here, all is good
823 #endif /* CONFIG_X86_VOYAGER */
824 # set up gdt and idt and 32bit start address
825 lidt idt_48 # load idt with 0,0
826 xorl %eax, %eax # Compute gdt_base
827 movw %ds, %ax # (Convert %ds:gdt to a linear ptr)
831 movl %eax, (gdt_48+2)
832 lgdt gdt_48 # load gdt with whatever is
835 # make sure any possible coprocessor is properly reset..
843 # well, that went ok, I hope. Now we mask all interrupts - the rest
844 # is done in init_IRQ().
845 movb $0xFF, %al # mask all interrupts for now
849 movb $0xFB, %al # mask all irq's but irq2 which
850 outb %al, $0x21 # is cascaded
852 # Well, that certainly wasn't fun :-(. Hopefully it works, and we don't
853 # need no steenking BIOS anyway (except for the initial loading :-).
854 # The BIOS-routine wants lots of unnecessary data, and it's less
855 # "interesting" anyway. This is how REAL programmers do it.
857 # Well, now's the time to actually move into protected mode. To make
858 # things as simple as possible, we do no register set-up or anything,
859 # we let the gnu-compiled 32-bit programs do that. We just jump to
860 # absolute address 0x1000 (or the loader supplied one),
861 # in 32-bit protected mode.
863 # Note that the short jump isn't strictly needed, although there are
864 # reasons why it might be a good idea. It won't hurt in any case.
865 movw $1, %ax # protected mode (PE) bit
866 lmsw %ax # This is it!
870 xorw %bx, %bx # Flag to indicate a boot
871 xorl %esi, %esi # Pointer to real-mode code
873 subw $DELTA_INITSEG, %si
874 shll $4, %esi # Convert to 32-bit pointer
876 # jump to startup_32 in arch/i386/boot/compressed/head.S
878 # NOTE: For high loaded big kernels we need a
879 # jmpi 0x100000,__BOOT_CS
881 # but we yet haven't reloaded the CS register, so the default size
882 # of the target offset still is 16 bit.
883 # However, using an operand prefix (0x66), the CPU will properly
884 # take our 48 bit far pointer. (INTeL 80386 Programmer's Reference
885 # Manual, Mixing 16-bit and 32-bit code, page 16-6)
887 .byte 0x66, 0xea # prefix + jmpi-opcode
888 code32: .long startup_32 # will be set to %cs+startup_32
892 movl $(__BOOT_DS), %eax
900 1: incl %eax # check that A20 really IS enabled
901 movl %eax, 0x00000000 # loop forever if it isn't
902 cmpl %eax, 0x00100000
905 # Jump to the 32bit entry point
906 jmpl *(code32_start - start + (DELTA_INITSEG << 4))(%esi)
909 # Here's a bunch of information about your current kernel..
910 kernel_version: .ascii UTS_RELEASE
912 .ascii LINUX_COMPILE_BY
914 .ascii LINUX_COMPILE_HOST
919 # This is the default real mode switch routine.
920 # to be called just before protected mode transition
922 cli # no interrupts allowed !
923 movb $0x80, %al # disable NMI for bootup
929 #ifndef CONFIG_X86_VOYAGER
930 # This routine tests whether or not A20 is enabled. If so, it
933 # The memory address used, 0x200, is the int $0x80 vector, which
936 A20_TEST_ADDR = 4*0x80
942 movw %cx, %fs # Low memory
944 movw %cx, %gs # High memory area
945 movw $A20_TEST_LOOPS, %cx
946 movw %fs:(A20_TEST_ADDR), %ax
950 movw %ax, %fs:(A20_TEST_ADDR)
951 call delay # Serialize and make delay constant
952 cmpw %gs:(A20_TEST_ADDR+0x10), %ax
955 popw %fs:(A20_TEST_ADDR)
960 #endif /* CONFIG_X86_VOYAGER */
962 # This routine checks that the keyboard command queue is empty
963 # (after emptying the output buffers)
965 # Some machines have delusions that the keyboard buffer is always full
966 # with no keyboard attached...
968 # If there is no keyboard controller, we will usually get 0xff
969 # to all the reads. With each IO taking a microsecond and
970 # a timeout of 100,000 iterations, this can take about half a
971 # second ("delay" == outb to port 0x80). That should be ok,
972 # and should also be plenty of time for a real keyboard controller
982 jz empty_8042_end_loop
986 inb $0x64, %al # 8042 status port
987 testb $1, %al # output buffer?
991 inb $0x60, %al # read it
995 testb $2, %al # is input buffer full?
996 jnz empty_8042_loop # yes - loop
1001 # Read the cmos clock. Return the seconds in al
1006 movb %dh, %al # %dh contains the seconds
1015 # Delay is needed after doing I/O
1022 # NOTE: The intel manual says gdt should be sixteen bytes aligned for
1023 # efficiency reasons. However, there are machines which are known not
1024 # to boot with misaligned GDTs, so alter this at your peril! If you alter
1025 # GDT_ENTRY_BOOT_CS (in asm/segment.h) remember to leave at least two
1026 # empty GDT entries (one for NULL and one reserved).
1028 # NOTE: On some CPUs, the GDT must be 8 byte aligned. This is
1029 # true for the Voyager Quad CPU card which will not boot without
1030 # This directive. 16 byte aligment is recommended by intel.
1034 .fill GDT_ENTRY_BOOT_CS,8,0
1036 .word 0xFFFF # 4Gb - (0x100000*0x1000 = 4Gb)
1037 .word 0 # base address = 0
1038 .word 0x9A00 # code read/exec
1039 .word 0x00CF # granularity = 4096, 386
1040 # (+5th nibble of limit)
1042 .word 0xFFFF # 4Gb - (0x100000*0x1000 = 4Gb)
1043 .word 0 # base address = 0
1044 .word 0x9200 # data read/write
1045 .word 0x00CF # granularity = 4096, 386
1046 # (+5th nibble of limit)
1050 .word 0 # alignment byte
1052 .word 0 # idt limit = 0
1053 .word 0, 0 # idt base = 0L
1055 .word 0 # alignment byte
1057 .word gdt_end - gdt - 1 # gdt limit
1058 .word 0, 0 # gdt base (filled in later)
1060 #ifndef CONFIG_VGA_NOPROBE
1061 # Include video setup & detection code
1066 # Setup signature -- must be last
1067 setup_sig1: .word SIG1
1068 setup_sig2: .word SIG2
1070 # After this point, there is some free space which is used by the video mode
1071 # handling code to store the temporary mode table (not used by the kernel).