1 /* NOTE: this boot sector contains instructions that need at least an 80186.
2 * Yes, as86 has a bug somewhere in the valid instruction set checks.
6 /* floppyload.S Copyright (C) 1991, 1992 Linus Torvalds
7 * modified by Drew Eckhardt
8 * modified by Bruce Evans (bde)
10 * floppyprefix.S is loaded at 0x0000:0x7c00 by the bios-startup routines.
12 * It then loads the system at SYSSEG<<4, using BIOS interrupts.
14 * The loader has been made as simple as possible, and continuous read errors
15 * will result in a unbreakable loop. Reboot by hand. It loads pretty fast by
16 * getting whole tracks at a time whenever possible.
19 FILE_LICENCE ( GPL2_ONLY )
21 .equ BOOTSEG, 0x07C0 /* original address of boot-sector */
23 .equ SYSSEG, 0x1000 /* system loaded at SYSSEG<<4 */
28 .section ".prefix", "ax", @progbits
31 jmp $BOOTSEG, $go /* reload cs:ip to match relocation addr */
33 movw $0x2000-12, %di /* 0x2000 is arbitrary value >= length */
34 /* of bootsect + room for stack + 12 for */
35 /* saved disk parm block */
40 movw %ax,%ss /* put stack at BOOTSEG:0x4000-12. */
43 /* Many BIOS's default disk parameter tables will not recognize multi-sector
44 * reads beyond the maximum sector number specified in the default diskette
45 * parameter tables - this may mean 7 sectors in some cases.
47 * Since single sector reads are slow and out of the question, we must take care
48 * of this by creating new parameter tables (for the first disk) in RAM. We
49 * will set the maximum sector count to 36 - the most we will encounter on an
50 * ED 2.88. High doesn't hurt. Low does.
52 * Segments are as follows: ds=es=ss=cs - BOOTSEG
56 movw %cx,%es /* access segment 0 */
57 movw $0x78, %bx /* 0:bx is parameter table address */
58 pushw %ds /* save ds */
59 /* 0:bx is parameter table address */
60 ldsw %es:(%bx),%si /* loads ds and si */
62 movw %ax,%es /* ax is BOOTSECT (loaded above) */
63 movb $6, %cl /* copy 12 bytes */
65 pushw %di /* keep a copy for later */
67 movsw /* ds:si is source, es:di is dest */
72 movw %cx,%ds /* access segment 0 */
76 popw %ds /* restore ds */
77 movw %di, dpoff /* save old parameters */
78 movw %si, dpseg /* to restore just before finishing */
80 popw %es /* reload es */
82 /* Note that es is already set up. Also cx is 0 from rep movsw above. */
84 xorb %ah,%ah /* reset FDC */
88 /* Get disk drive parameters, specifically number of sectors/track.
90 * It seems that there is no BIOS call to get the number of sectors. Guess
91 * 36 sectors if sector 36 can be read, 18 sectors if sector 18 can be read,
92 * 15 if sector 15 can be read. Otherwise guess 9.
95 movw $disksizes, %si /* table of sizes to try */
99 cbtw /* extend to word */
101 cmpw $disksizes+4, %si
102 jae got_sectors /* if all else fails, try 9 */
103 xchgw %cx,%ax /* cx = track and sector */
104 xorw %dx,%dx /* drive 0, head 0 */
105 movw $0x0200, %bx /* address after boot sector */
106 /* (512 bytes from origin, es = cs) */
107 movw $0x0201, %ax /* service 2, 1 sector */
109 jc probe_loop /* try next value */
112 movw $msg1end-msg1, %cx
116 /* ok, we've written the Loading... message, now we want to load the system */
119 movw %ax,%es /* segment of SYSSEG<<4 */
123 /* This turns off the floppy drive motor, so that we enter the kernel in a
124 * known state, and don't have to worry about it later.
131 pop %es /* = SYSSEG */
133 /* Restore original disk parameters */
142 /* Everything now loaded. %es = SYSSEG, so %es:0000 points to
143 * start of loaded image.
146 /* Jump to loaded copy */
147 ljmp $SYSSEG, $start_runtime
150 .section ".zinfo.fixup", "a", @progbits /* Compressor fixups */
157 /* This routine loads the system at address SYSSEG<<4, making sure no 64kB
158 * boundaries are crossed. We try to load it as fast as possible, loading whole
159 * tracks whenever we can.
161 * in: es - starting address segment (normally SYSSEG)
164 movw $0,sread /* load whole image including prefix */
167 die: jne die /* es must be at 64kB boundary */
168 xorw %bx,%bx /* bx is starting address within segment */
173 shrw %cl,%dx /* bx is always divisible by 16 */
175 cmpw endseg, %ax /* have we loaded all yet? */
217 pushw %bp /* just in case the BIOS is buggy */
218 movw $0x0e2e, %ax /* 0x2e = . */
234 pushw %dx /* save for error dump */
245 bad_rt: pushw %ax /* save error code */
246 call print_all /* ah = error, al = read */
256 /* print_all is for debugging purposes. It will print out all of the registers.
257 * The assumption is that this is called from a routine, with a stack frame like
267 call print_nl /* nl for readability */
268 movw $5, %cx /* error code + 4 registers */
272 pushw %cx /* save count left */
275 jae no_reg /* see if register name is needed */
277 movw $0x0007, %bx /* page 0, attribute 7 (normal) */
278 movw $0xe05+0x41-1, %ax
282 movb $0x58, %al /* 'X' */
285 movb $0x3A, %al /* ':' */
289 addw $2, %bp /* next register */
290 call print_hex /* print it */
291 movb $0x20, %al /* print a space */
295 call print_nl /* nl for readability */
299 movw $0x0007, %bx /* page 0, attribute 7 (normal) */
300 movb $0x0e, %ah /* write char, tty mode */
308 movw $0x0007, %bx /* page 0, attribute 7 (normal) */
309 movw $0xe0d, %ax /* CR */
311 movb $0xa, %al /* LF */
315 /* print_hex prints the word pointed to by ss:bp in hexadecimal. */
318 movw (%bp),%dx /* load word into dx */
320 movb $0x0e, %ah /* write char, tty mode */
321 movw $0x0007, %bx /* page 0, attribute 7 (normal) */
327 rol %cl,%dx /* rotate so that lowest 4 bits are used */
328 movb $0x0f, %al /* mask for nybble */
330 addb $0x90, %al /* convert al to ascii hex (four instructions) */
337 sread: .word 0 /* sectors read of current track */
338 head: .word 0 /* current head */
339 track: .word 0 /* current track */
351 .ascii "Loading ROM image"
361 /* Set up real-mode stack */
365 /* Jump to .text16 segment */
369 .section ".text16", "awx", @progbits
374 popl %ecx /* discard */
379 /* Boot next device */