| 1 | #
|
|---|
| 2 | # Copyright (c) 2007 Michal Kebrt
|
|---|
| 3 | # All rights reserved.
|
|---|
| 4 | #
|
|---|
| 5 | # Redistribution and use in source and binary forms, with or without
|
|---|
| 6 | # modification, are permitted provided that the following conditions
|
|---|
| 7 | # are met:
|
|---|
| 8 | #
|
|---|
| 9 | # - Redistributions of source code must retain the above copyright
|
|---|
| 10 | # notice, this list of conditions and the following disclaimer.
|
|---|
| 11 | # - Redistributions in binary form must reproduce the above copyright
|
|---|
| 12 | # notice, this list of conditions and the following disclaimer in the
|
|---|
| 13 | # documentation and/or other materials provided with the distribution.
|
|---|
| 14 | # - The name of the author may not be used to endorse or promote products
|
|---|
| 15 | # derived from this software without specific prior written permission.
|
|---|
| 16 | #
|
|---|
| 17 | # THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|---|
| 18 | # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|---|
| 19 | # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|---|
| 20 | # IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|---|
| 21 | # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|---|
| 22 | # NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|---|
| 23 | # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|---|
| 24 | # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|---|
| 25 | # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|---|
| 26 | # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|---|
| 27 | #
|
|---|
| 28 |
|
|---|
| 29 | #include <abi/asmtool.h>
|
|---|
| 30 | #include <arch/arch.h>
|
|---|
| 31 |
|
|---|
| 32 | .section BOOTSTRAP
|
|---|
| 33 |
|
|---|
| 34 | SYMBOL(start)
|
|---|
| 35 | ldr sp, =boot_stack
|
|---|
| 36 | b bootstrap
|
|---|
| 37 |
|
|---|
| 38 | .section BOOTPT
|
|---|
| 39 | SYMBOL(boot_pt)
|
|---|
| 40 | .space PTL0_ENTRIES * PTL0_ENTRY_SIZE
|
|---|
| 41 |
|
|---|
| 42 | .section BOOTSTACK
|
|---|
| 43 | .space 4096
|
|---|
| 44 | SYMBOL(boot_stack)
|
|---|
| 45 |
|
|---|
| 46 | .text
|
|---|
| 47 |
|
|---|
| 48 | FUNCTION_BEGIN(halt)
|
|---|
| 49 | b halt
|
|---|
| 50 | FUNCTION_END(halt)
|
|---|
| 51 |
|
|---|
| 52 | FUNCTION_BEGIN(jump_to_kernel)
|
|---|
| 53 | #
|
|---|
| 54 | # Make sure that the I-cache, D-cache and memory are mutually coherent
|
|---|
| 55 | # before passing control to the copied code.
|
|---|
| 56 | #
|
|---|
| 57 |
|
|---|
| 58 | #
|
|---|
| 59 | # r0 is kernel entry point
|
|---|
| 60 | # r1 is pointer to the bootinfo structure
|
|---|
| 61 |
|
|---|
| 62 | #define CP15_C1_IC 12
|
|---|
| 63 | #define CP15_C1_BP 11
|
|---|
| 64 | #define CP15_C1_DC 2
|
|---|
| 65 |
|
|---|
| 66 |
|
|---|
| 67 | #ifndef PROCESSOR_ARCH_armv7_a
|
|---|
| 68 | mrc p15, 0, r4, c1, c0, 0
|
|---|
| 69 |
|
|---|
| 70 | # Disable D-cache before the kernel is started.
|
|---|
| 71 | bic r4, r4, #(1 << CP15_C1_DC)
|
|---|
| 72 |
|
|---|
| 73 | # Disable I-cache and Branch predictors.
|
|---|
| 74 | bic r4, r4, #(1 << CP15_C1_IC)
|
|---|
| 75 | #ifdef PROCESSOR_ARCH_armv6
|
|---|
| 76 | bic r4, r4, #(1 << CP15_C1_BP)
|
|---|
| 77 | #endif
|
|---|
| 78 |
|
|---|
| 79 | mcr p15, 0, r4, c1, c0, 0
|
|---|
| 80 | #endif
|
|---|
| 81 |
|
|---|
| 82 | # Wait for the operations to complete
|
|---|
| 83 | #ifdef PROCESSOR_ARCH_armv7_a
|
|---|
| 84 | dsb
|
|---|
| 85 | #else
|
|---|
| 86 | # cp15 dsb, r4 is ignored (should be zero)
|
|---|
| 87 | mov r4, #0
|
|---|
| 88 | mcr p15, 0, r4, c7, c10, 4
|
|---|
| 89 | #endif
|
|---|
| 90 |
|
|---|
| 91 | # Clean ICache and BPredictors, r4 ignored (SBZ)
|
|---|
| 92 | mov r4, #0
|
|---|
| 93 | mcr p15, 0, r4, c7, c5, 0
|
|---|
| 94 | nop
|
|---|
| 95 |
|
|---|
| 96 | # Wait for the operations to complete
|
|---|
| 97 | #ifdef PROCESSOR_ARCH_armv7_a
|
|---|
| 98 | isb
|
|---|
| 99 | nop
|
|---|
| 100 | #elif defined(PROCESSOR_ARCH_armv6)
|
|---|
| 101 | # cp15 isb
|
|---|
| 102 | mcr p15, 0, r4, c7, c5, 4
|
|---|
| 103 | nop
|
|---|
| 104 | #endif
|
|---|
| 105 | mov pc, r0
|
|---|
| 106 | FUNCTION_END(jump_to_kernel)
|
|---|
| 107 |
|
|---|