2006-06-22 01:28:57 +00:00
|
|
|
#include "asm.h"
|
2011-08-08 17:30:08 +00:00
|
|
|
#include "memlayout.h"
|
|
|
|
#include "mmu.h"
|
2006-09-06 17:27:19 +00:00
|
|
|
|
2007-08-24 18:52:59 +00:00
|
|
|
# Start the first CPU: switch to 32-bit protected mode, jump into C.
|
|
|
|
# The BIOS loads this code from the first sector of the hard disk into
|
|
|
|
# memory at physical address 0x7c00 and starts executing in real mode
|
|
|
|
# with %cs=0 %ip=7c00.
|
2006-09-06 17:27:19 +00:00
|
|
|
|
2009-03-08 21:41:30 +00:00
|
|
|
.code16 # Assemble for 16-bit mode
|
2007-08-24 19:25:52 +00:00
|
|
|
.globl start
|
2006-09-06 17:04:06 +00:00
|
|
|
start:
|
2011-02-20 02:17:55 +00:00
|
|
|
cli # BIOS enabled interrupts; disable
|
2006-06-12 15:22:12 +00:00
|
|
|
|
2006-09-06 17:04:06 +00:00
|
|
|
# Set up the important data segment registers (DS, ES, SS).
|
2007-08-24 19:25:52 +00:00
|
|
|
xorw %ax,%ax # Segment number zero
|
|
|
|
movw %ax,%ds # -> Data Segment
|
|
|
|
movw %ax,%es # -> Extra Segment
|
|
|
|
movw %ax,%ss # -> Stack Segment
|
2006-06-12 15:22:12 +00:00
|
|
|
|
2011-02-20 02:17:55 +00:00
|
|
|
# Physical address line A20 is tied to zero so that the first PCs
|
|
|
|
# with 2 MB would run software that assumed 1 MB. Undo that.
|
2006-09-06 17:04:06 +00:00
|
|
|
seta20.1:
|
2007-08-24 18:52:59 +00:00
|
|
|
inb $0x64,%al # Wait for not busy
|
|
|
|
testb $0x2,%al
|
|
|
|
jnz seta20.1
|
|
|
|
|
|
|
|
movb $0xd1,%al # 0xd1 -> port 0x64
|
|
|
|
outb %al,$0x64
|
2006-06-12 15:22:12 +00:00
|
|
|
|
2006-09-06 17:04:06 +00:00
|
|
|
seta20.2:
|
2007-08-24 18:52:59 +00:00
|
|
|
inb $0x64,%al # Wait for not busy
|
|
|
|
testb $0x2,%al
|
|
|
|
jnz seta20.2
|
|
|
|
|
|
|
|
movb $0xdf,%al # 0xdf -> port 0x60
|
|
|
|
outb %al,$0x60
|
2006-09-06 17:04:06 +00:00
|
|
|
|
2011-02-20 02:17:55 +00:00
|
|
|
# Switch from real to protected mode. Use a bootstrap GDT that makes
|
|
|
|
# virtual addresses map dierctly to physical addresses so that the
|
|
|
|
# effective memory map doesn't change during the transition.
|
2007-08-24 19:25:52 +00:00
|
|
|
lgdt gdtdesc
|
|
|
|
movl %cr0, %eax
|
2009-03-08 21:41:30 +00:00
|
|
|
orl $CR0_PE, %eax
|
2007-08-24 19:25:52 +00:00
|
|
|
movl %eax, %cr0
|
2006-09-06 17:27:19 +00:00
|
|
|
|
2011-02-20 02:17:55 +00:00
|
|
|
//PAGEBREAK!
|
|
|
|
# Complete transition to 32-bit protected mode by using long jmp
|
2011-08-26 10:47:13 +00:00
|
|
|
# to reload %cs and %eip. The segment descriptors are set up with no
|
2011-02-20 02:17:55 +00:00
|
|
|
# translation, so that the mapping is still the identity mapping.
|
|
|
|
ljmp $(SEG_KCODE<<3), $start32
|
2010-09-13 19:34:44 +00:00
|
|
|
|
2011-02-20 02:17:55 +00:00
|
|
|
.code32 # Tell assembler to generate 32-bit code now.
|
2009-03-08 21:41:30 +00:00
|
|
|
start32:
|
2006-09-06 17:04:06 +00:00
|
|
|
# Set up the protected-mode data segment registers
|
2009-05-31 01:00:38 +00:00
|
|
|
movw $(SEG_KDATA<<3), %ax # Our data segment selector
|
2006-09-06 17:04:06 +00:00
|
|
|
movw %ax, %ds # -> DS: Data Segment
|
|
|
|
movw %ax, %es # -> ES: Extra Segment
|
2009-05-31 01:00:38 +00:00
|
|
|
movw %ax, %ss # -> SS: Stack Segment
|
2009-05-31 01:12:08 +00:00
|
|
|
movw $0, %ax # Zero segments not ready for use
|
2006-09-06 17:04:06 +00:00
|
|
|
movw %ax, %fs # -> FS
|
|
|
|
movw %ax, %gs # -> GS
|
2009-05-31 01:00:38 +00:00
|
|
|
|
2007-08-24 19:25:52 +00:00
|
|
|
# Set up the stack pointer and call into C.
|
2007-08-24 18:52:59 +00:00
|
|
|
movl $start, %esp
|
2007-08-28 19:25:04 +00:00
|
|
|
call bootmain
|
2007-08-24 18:52:59 +00:00
|
|
|
|
2009-03-08 21:41:30 +00:00
|
|
|
# If bootmain returns (it shouldn't), trigger a Bochs
|
|
|
|
# breakpoint if running under Bochs, then loop.
|
|
|
|
movw $0x8a00, %ax # 0x8a00 -> port 0x8a00
|
|
|
|
movw %ax, %dx
|
|
|
|
outw %ax, %dx
|
2009-12-01 19:07:12 +00:00
|
|
|
movw $0x8ae0, %ax # 0x8ae0 -> port 0x8a00
|
2009-03-08 21:41:30 +00:00
|
|
|
outw %ax, %dx
|
2006-09-06 17:04:06 +00:00
|
|
|
spin:
|
2007-08-28 19:25:04 +00:00
|
|
|
jmp spin
|
2006-09-06 17:04:06 +00:00
|
|
|
|
2007-08-24 18:52:59 +00:00
|
|
|
# Bootstrap GDT
|
2006-09-06 17:04:06 +00:00
|
|
|
.p2align 2 # force 4 byte alignment
|
2006-06-12 15:22:12 +00:00
|
|
|
gdt:
|
2006-09-06 17:04:06 +00:00
|
|
|
SEG_NULLASM # null seg
|
|
|
|
SEG_ASM(STA_X|STA_R, 0x0, 0xffffffff) # code seg
|
|
|
|
SEG_ASM(STA_W, 0x0, 0xffffffff) # data seg
|
2007-08-24 18:52:59 +00:00
|
|
|
|
2006-06-12 15:22:12 +00:00
|
|
|
gdtdesc:
|
2010-07-02 18:51:53 +00:00
|
|
|
.word (gdtdesc - gdt - 1) # sizeof(gdt) - 1
|
2006-09-06 17:04:06 +00:00
|
|
|
.long gdt # address gdt
|
2011-08-08 17:30:08 +00:00
|
|
|
|