2006-06-22 01:28:57 +00:00
|
|
|
#include "asm.h"
|
2011-07-29 11:31:27 +00:00
|
|
|
#include "memlayout.h"
|
2006-09-06 17:27:19 +00:00
|
|
|
|
2008-08-28 00:52:05 +00:00
|
|
|
# Each non-boot CPU ("AP") is started up in response to a STARTUP
|
|
|
|
# IPI from the boot CPU. Section B.4.2 of the Multi-Processor
|
|
|
|
# Specification says that the AP will start in real mode with CS:IP
|
|
|
|
# set to XY00:0000, where XY is an 8-bit value sent with the
|
|
|
|
# STARTUP. Thus this code must start at a 4096-byte boundary.
|
2006-09-06 19:08:14 +00:00
|
|
|
#
|
2008-08-28 00:52:05 +00:00
|
|
|
# Because this code sets DS to zero, it must sit
|
|
|
|
# at an address in the low 2^16 bytes.
|
|
|
|
#
|
2010-09-13 19:34:44 +00:00
|
|
|
# Bootothers (in main.c) sends the STARTUPs one at a time.
|
|
|
|
# It copies this code (start) at 0x7000.
|
|
|
|
# It puts the address of a newly allocated per-core stack in start-4,
|
|
|
|
# and the address of the place to jump to (mpmain) in start-8.
|
2007-08-24 19:25:52 +00:00
|
|
|
#
|
|
|
|
# This code is identical to bootasm.S except:
|
|
|
|
# - it does not need to enable A20
|
2007-08-27 12:48:20 +00:00
|
|
|
# - it uses the address at start-4 for the %esp
|
2007-08-28 18:02:49 +00:00
|
|
|
# - it jumps to the address at start-8 instead of calling bootmain
|
2006-06-22 01:28:57 +00:00
|
|
|
|
2010-09-13 19:34:44 +00:00
|
|
|
#define SEG_KCODE 1
|
|
|
|
#define SEG_KDATA 2
|
2006-06-22 01:28:57 +00:00
|
|
|
|
2010-09-13 19:34:44 +00:00
|
|
|
#define CR0_PE 1
|
2009-07-12 02:15:32 +00:00
|
|
|
|
2011-07-29 11:31:27 +00:00
|
|
|
#define RELOC1(x) ((x) + KERNBASE) // same as V2P, but without casts
|
|
|
|
|
2010-09-13 19:34:44 +00:00
|
|
|
.code16
|
2006-06-22 01:28:57 +00:00
|
|
|
.globl start
|
2006-09-06 17:04:06 +00:00
|
|
|
start:
|
2010-09-13 19:34:44 +00:00
|
|
|
cli
|
2006-06-22 01:28:57 +00:00
|
|
|
|
2010-09-13 19:34:44 +00:00
|
|
|
xorw %ax,%ax
|
|
|
|
movw %ax,%ds
|
|
|
|
movw %ax,%es
|
|
|
|
movw %ax,%ss
|
2006-06-22 01:28:57 +00:00
|
|
|
|
2007-08-24 19:25:52 +00:00
|
|
|
lgdt gdtdesc
|
|
|
|
movl %cr0, %eax
|
2009-07-12 02:15:32 +00:00
|
|
|
orl $CR0_PE, %eax
|
2007-08-24 19:25:52 +00:00
|
|
|
movl %eax, %cr0
|
2006-09-06 19:08:14 +00:00
|
|
|
|
2011-02-20 02:17:55 +00:00
|
|
|
//PAGEBREAK!
|
2011-07-29 11:31:27 +00:00
|
|
|
ljmpl $(SEG_KCODE<<3), $(start32+KERNBASE)
|
2006-09-06 17:04:06 +00:00
|
|
|
|
2010-09-13 19:34:44 +00:00
|
|
|
.code32
|
2009-08-08 08:07:30 +00:00
|
|
|
start32:
|
2010-09-13 19:34:44 +00:00
|
|
|
movw $(SEG_KDATA<<3), %ax
|
|
|
|
movw %ax, %ds
|
|
|
|
movw %ax, %es
|
|
|
|
movw %ax, %ss
|
|
|
|
movw $0, %ax
|
|
|
|
movw %ax, %fs
|
|
|
|
movw %ax, %gs
|
2006-06-22 01:28:57 +00:00
|
|
|
|
2010-09-13 19:34:44 +00:00
|
|
|
# switch to the stack allocated by bootothers()
|
2011-07-29 11:31:27 +00:00
|
|
|
movl RELOC1(start-4), %esp
|
2010-09-13 19:34:44 +00:00
|
|
|
|
|
|
|
# call mpmain()
|
2011-07-29 11:31:27 +00:00
|
|
|
call *(RELOC1(start)-8)
|
2009-03-08 21:41:30 +00:00
|
|
|
|
2010-09-13 19:34:44 +00:00
|
|
|
movw $0x8a00, %ax
|
2009-03-08 21:41:30 +00:00
|
|
|
movw %ax, %dx
|
|
|
|
outw %ax, %dx
|
2010-09-13 19:34:44 +00:00
|
|
|
movw $0x8ae0, %ax
|
2009-03-08 21:41:30 +00:00
|
|
|
outw %ax, %dx
|
|
|
|
spin:
|
|
|
|
jmp spin
|
2006-09-06 17:27:19 +00:00
|
|
|
|
2010-09-13 19:34:44 +00:00
|
|
|
.p2align 2
|
2006-06-22 01:28:57 +00:00
|
|
|
gdt:
|
2010-09-13 19:34:44 +00:00
|
|
|
SEG_NULLASM
|
2011-07-29 11:31:27 +00:00
|
|
|
SEG_ASM(STA_X|STA_R, -KERNBASE, 0xffffffff)
|
|
|
|
SEG_ASM(STA_W, -KERNBASE, 0xffffffff)
|
|
|
|
|
2006-09-06 17:27:19 +00:00
|
|
|
|
2006-06-22 01:28:57 +00:00
|
|
|
gdtdesc:
|
2010-09-13 19:34:44 +00:00
|
|
|
.word (gdtdesc - gdt - 1)
|
|
|
|
.long gdt
|