1 | #
|
---|
2 | # Copyright (c) 2001-2004 Jakub Jermar
|
---|
3 | # Copyright (c) 2005-2006 Martin Decky
|
---|
4 | # All rights reserved.
|
---|
5 | #
|
---|
6 | # Redistribution and use in source and binary forms, with or without
|
---|
7 | # modification, are permitted provided that the following conditions
|
---|
8 | # are met:
|
---|
9 | #
|
---|
10 | # - Redistributions of source code must retain the above copyright
|
---|
11 | # notice, this list of conditions and the following disclaimer.
|
---|
12 | # - Redistributions in binary form must reproduce the above copyright
|
---|
13 | # notice, this list of conditions and the following disclaimer in the
|
---|
14 | # documentation and/or other materials provided with the distribution.
|
---|
15 | # - The name of the author may not be used to endorse or promote products
|
---|
16 | # derived from this software without specific prior written permission.
|
---|
17 | #
|
---|
18 | # THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
19 | # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
20 | # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
21 | # IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
22 | # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
23 | # NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
24 | # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
25 | # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
26 | # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
27 | # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
28 | #
|
---|
29 |
|
---|
30 | /*
|
---|
31 | * Init code for application processors.
|
---|
32 | */
|
---|
33 |
|
---|
34 | #include <arch/boot/boot.h>
|
---|
35 | #include <arch/boot/memmap.h>
|
---|
36 | #include <arch/mm/page.h>
|
---|
37 | #include <arch/pm.h>
|
---|
38 |
|
---|
39 | .section K_TEXT_START, "ax"
|
---|
40 |
|
---|
41 | #ifdef CONFIG_SMP
|
---|
42 |
|
---|
43 | .global unmapped_ap_boot
|
---|
44 |
|
---|
45 | KTEXT=8
|
---|
46 | KDATA=16
|
---|
47 |
|
---|
48 | /*
|
---|
49 | * This piece of code is real-mode and is meant to be aligned at 4K boundary.
|
---|
50 | * The requirement for such an alignment comes from MP Specification's
|
---|
51 | * STARTUP IPI requirements.
|
---|
52 | */
|
---|
53 |
|
---|
54 | .align 4096
|
---|
55 | unmapped_ap_boot:
|
---|
56 | .code16
|
---|
57 | cli
|
---|
58 | xorw %ax, %ax
|
---|
59 | movw %ax, %ds
|
---|
60 |
|
---|
61 | /* initialize Global Descriptor Table register */
|
---|
62 | lgdtl ap_gdtr
|
---|
63 |
|
---|
64 | /* switch to protected mode */
|
---|
65 | movl %cr0, %eax
|
---|
66 | orl $1, %eax
|
---|
67 | movl %eax, %cr0
|
---|
68 | jmpl $KTEXT, $jump_to_kernel - BOOT_OFFSET + AP_BOOT_OFFSET
|
---|
69 |
|
---|
70 | jump_to_kernel:
|
---|
71 | .code32
|
---|
72 | movw $KDATA, %ax
|
---|
73 | movw %ax, %ds
|
---|
74 | movw %ax, %es
|
---|
75 | movw %ax, %ss
|
---|
76 | movl $KA2PA(ctx), %eax /* KA2PA((uintptr_t) &ctx) */
|
---|
77 | movl (%eax), %esp
|
---|
78 | subl $0x80000000, %esp /* KA2PA(ctx.sp) */
|
---|
79 |
|
---|
80 | /*
|
---|
81 | * Map kernel and turn paging on.
|
---|
82 | * We assume that when using SMP, PSE is always available
|
---|
83 | */
|
---|
84 | call map_kernel_pse
|
---|
85 |
|
---|
86 | addl $0x80000000, %esp /* PA2KA(ctx.sp) */
|
---|
87 |
|
---|
88 | /* create the first stack frame */
|
---|
89 | pushl $0
|
---|
90 | movl %esp, %ebp
|
---|
91 |
|
---|
92 | jmpl $KTEXT, $main_ap
|
---|
93 |
|
---|
94 | #endif /* CONFIG_SMP */
|
---|
95 |
|
---|
96 |
|
---|
97 | .section K_DATA_START, "aw", @progbits
|
---|
98 |
|
---|
99 | #ifdef CONFIG_SMP
|
---|
100 |
|
---|
101 | .global unmapped_ap_gdtr
|
---|
102 |
|
---|
103 | unmapped_ap_gdtr:
|
---|
104 | .word 0
|
---|
105 | .long 0
|
---|
106 |
|
---|
107 | #endif /* CONFIG_SMP */
|
---|