[f761f1eb] | 1 | #
|
---|
[df4ed85] | 2 | # Copyright (c) 2001-2004 Jakub Jermar
|
---|
| 3 | # Copyright (c) 2005-2006 Martin Decky
|
---|
[f761f1eb] | 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 |
|
---|
[66def8d] | 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"
|
---|
[f761f1eb] | 40 |
|
---|
[5f85c91] | 41 | #ifdef CONFIG_SMP
|
---|
[f761f1eb] | 42 |
|
---|
[66def8d] | 43 | .global unmapped_ap_boot
|
---|
[f761f1eb] | 44 |
|
---|
| 45 | KTEXT=8
|
---|
| 46 | KDATA=16
|
---|
| 47 |
|
---|
[82b71ef1] | 48 | # This piece of code is real-mode and is meant to be aligned at 4K boundary.
|
---|
[f761f1eb] | 49 | # The requirement for such an alignment comes from MP Specification's STARTUP IPI
|
---|
| 50 | # requirements.
|
---|
| 51 |
|
---|
| 52 | .align 4096
|
---|
[66def8d] | 53 | unmapped_ap_boot:
|
---|
[f761f1eb] | 54 | .code16
|
---|
| 55 | cli
|
---|
[f6297e0] | 56 | xorw %ax, %ax
|
---|
| 57 | movw %ax, %ds
|
---|
[f761f1eb] | 58 |
|
---|
[4790dbc] | 59 | lgdtl ap_gdtr # initialize Global Descriptor Table register
|
---|
[f6297e0] | 60 |
|
---|
| 61 | movl %cr0, %eax
|
---|
| 62 | orl $1, %eax
|
---|
[dd80fc6] | 63 | movl %eax, %cr0 # switch to protected mode
|
---|
[66def8d] | 64 | jmpl $KTEXT, $jump_to_kernel - BOOT_OFFSET + AP_BOOT_OFFSET
|
---|
[b52da8d7] | 65 |
|
---|
[f761f1eb] | 66 | jump_to_kernel:
|
---|
| 67 | .code32
|
---|
[f6297e0] | 68 | movw $KDATA, %ax
|
---|
| 69 | movw %ax, %ds
|
---|
| 70 | movw %ax, %es
|
---|
| 71 | movw %ax, %ss
|
---|
[7f1c620] | 72 | movl $KA2PA(ctx), %eax # KA2PA((uintptr_t) &ctx)
|
---|
[f6297e0] | 73 | movl (%eax), %esp
|
---|
| 74 | subl $0x80000000, %esp # KA2PA(ctx.sp)
|
---|
[f761f1eb] | 75 |
|
---|
[f6297e0] | 76 | call map_kernel # map kernel and turn paging on
|
---|
| 77 |
|
---|
[c0b45fa] | 78 | addl $0x80000000, %esp # PA2KA(ctx.sp)
|
---|
| 79 |
|
---|
[bac86377] | 80 | pushl $0 # create the first stack frame
|
---|
| 81 | movl %esp, %ebp
|
---|
| 82 |
|
---|
[f6297e0] | 83 | jmpl $KTEXT, $main_ap
|
---|
[f761f1eb] | 84 |
|
---|
[5f85c91] | 85 | #endif /* CONFIG_SMP */
|
---|
[66def8d] | 86 |
|
---|
| 87 |
|
---|
[4e09712] | 88 | .section K_DATA_START, "aw", @progbits
|
---|
[66def8d] | 89 |
|
---|
| 90 | #ifdef CONFIG_SMP
|
---|
| 91 |
|
---|
| 92 | .global unmapped_ap_gdtr
|
---|
| 93 |
|
---|
| 94 | unmapped_ap_gdtr:
|
---|
| 95 | .word 0
|
---|
| 96 | .long 0
|
---|
| 97 |
|
---|
| 98 | #endif /* CONFIG_SMP */
|
---|