This is working up to the ljmpl to protected mode. It has all the
debugging in, using locations 0 and _secondary_start as POST. Calling from initram did not work out, as we have to disable_car in initram to make such a call work (on core2). For now, I am calling this from stage1_phase 3, before stage2 is called. But that has increased the code size of stage1, which is not a great idea. What I am thinking we ought to do: call this from stage2, before phase 1, so that CPUs are nice and set up and quiet. Provide phase2 with an SMP-safe printk. This is here so others may see it and correct my work. The good news is that SMP startup on core2 on v3 is now starting to go. But the better news is that the way this is working is pretty generic and ought to apply to much more than just core2. To really look at object you might want to get ndisasm. Signed-off-by: Ronald G. Minnich <rminnich@gmail.com> Acked-by: Ronald G. Minnich <rminnich@gmail.com> git-svn-id: svn://coreboot.org/repository/coreboot-v3@1143 f3766cd6-281f-0410-b1cd-43a5c92072e9
This commit is contained in:
parent
10c8cd84b2
commit
77407f5341
1 changed files with 26 additions and 2 deletions
|
|
@ -28,28 +28,52 @@ _secondary_start:
|
|||
.code16
|
||||
.balign 4096
|
||||
cli
|
||||
movl $1b, %ebx
|
||||
movw $0xdead, 0
|
||||
movw $0xbeef, 2
|
||||
xorl %eax, %eax
|
||||
movl %eax, %cr3 /* Invalidate TLB*/
|
||||
/* On hyper threaded cpus, invalidating the cache here is
|
||||
* very very bad. Don't.
|
||||
*/
|
||||
movw $0, 0
|
||||
movl $1b, %ebx
|
||||
movw $1, 0
|
||||
movw $2, 0
|
||||
|
||||
/* setup the data segment */
|
||||
movw %cs, %ax
|
||||
movw %ax, 2
|
||||
movw $3, 0
|
||||
movw %ax, %ds
|
||||
movw $4, 0
|
||||
/* past this point, "0" means ds:0, i.e. cs:0, or the
|
||||
* segment part of the address.
|
||||
*/
|
||||
|
||||
data32 lgdt gdtaddr - _secondary_start
|
||||
// data32 lgdt %cs:gdtptr
|
||||
movw $5, 0
|
||||
|
||||
movl %cr0, %eax
|
||||
movw $6, 0
|
||||
andl $0x7FFAFFD1, %eax /* PG,AM,WP,NE,TS,EM,MP = 0 */
|
||||
movw $7, 0
|
||||
orl $0x60000001, %eax /* CD, NW, PE = 1 */
|
||||
movw $8, 0
|
||||
movl %eax, %cr0
|
||||
movw $9, 0
|
||||
hlt
|
||||
/* tested to this point but not past it */
|
||||
|
||||
ljmpl $0x10, $1f
|
||||
/* I am pretty sure this just jumps back into
|
||||
* ROM; it's an abs jump
|
||||
*/
|
||||
data32 ljmp $0x10, $secondary32
|
||||
movw $0xa, 0
|
||||
1:
|
||||
.code32
|
||||
secondary32:
|
||||
hlt
|
||||
movw $0x18, %ax
|
||||
movw %ax, %ds
|
||||
movw %ax, %es
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue