Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 1 | /* |
Antonio Nino Diaz | 1f21bcf | 2016-02-01 13:57:25 +0000 | [diff] [blame] | 2 | * Copyright (c) 2013-2016, ARM Limited and Contributors. All rights reserved. |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 3 | * |
| 4 | * Redistribution and use in source and binary forms, with or without |
| 5 | * modification, are permitted provided that the following conditions are met: |
| 6 | * |
| 7 | * Redistributions of source code must retain the above copyright notice, this |
| 8 | * list of conditions and the following disclaimer. |
| 9 | * |
| 10 | * Redistributions in binary form must reproduce the above copyright notice, |
| 11 | * this list of conditions and the following disclaimer in the documentation |
| 12 | * and/or other materials provided with the distribution. |
| 13 | * |
| 14 | * Neither the name of ARM nor the names of its contributors may be used |
| 15 | * to endorse or promote products derived from this software without specific |
| 16 | * prior written permission. |
| 17 | * |
| 18 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| 19 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 20 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 21 | * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE |
| 22 | * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 23 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 24 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 25 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 26 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 27 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 28 | * POSSIBILITY OF SUCH DAMAGE. |
| 29 | */ |
| 30 | |
Sandrine Bailleux | c10bd2c | 2013-11-12 16:41:16 +0000 | [diff] [blame] | 31 | #include <arch.h> |
Andrew Thoelke | 38bde41 | 2014-03-18 13:46:55 +0000 | [diff] [blame] | 32 | #include <asm_macros.S> |
Dan Handley | 2bd4ef2 | 2014-04-09 13:14:54 +0100 | [diff] [blame] | 33 | #include <bl_common.h> |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 34 | |
| 35 | |
| 36 | .globl bl2_entrypoint |
| 37 | |
| 38 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 39 | |
Andrew Thoelke | 38bde41 | 2014-03-18 13:46:55 +0000 | [diff] [blame] | 40 | func bl2_entrypoint |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 41 | /*--------------------------------------------- |
Yatharth Kochar | 57d334c | 2015-10-29 12:47:02 +0000 | [diff] [blame] | 42 | * Save from x1 the extents of the tzram |
| 43 | * available to BL2 for future use. |
| 44 | * x0 is not currently used. |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 45 | * --------------------------------------------- |
Antonio Nino Diaz | 1f21bcf | 2016-02-01 13:57:25 +0000 | [diff] [blame] | 46 | */ |
| 47 | mov x20, x1 |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 48 | |
| 49 | /* --------------------------------------------- |
Sandrine Bailleux | c10bd2c | 2013-11-12 16:41:16 +0000 | [diff] [blame] | 50 | * Set the exception vector to something sane. |
| 51 | * --------------------------------------------- |
| 52 | */ |
| 53 | adr x0, early_exceptions |
| 54 | msr vbar_el1, x0 |
Achin Gupta | ed1744e | 2014-08-04 23:13:10 +0100 | [diff] [blame] | 55 | isb |
| 56 | |
| 57 | /* --------------------------------------------- |
| 58 | * Enable the SError interrupt now that the |
| 59 | * exception vectors have been setup. |
| 60 | * --------------------------------------------- |
| 61 | */ |
| 62 | msr daifclr, #DAIF_ABT_BIT |
Sandrine Bailleux | c10bd2c | 2013-11-12 16:41:16 +0000 | [diff] [blame] | 63 | |
| 64 | /* --------------------------------------------- |
Achin Gupta | 9f09835 | 2014-07-18 18:38:28 +0100 | [diff] [blame] | 65 | * Enable the instruction cache, stack pointer |
| 66 | * and data access alignment checks |
Sandrine Bailleux | c10bd2c | 2013-11-12 16:41:16 +0000 | [diff] [blame] | 67 | * --------------------------------------------- |
| 68 | */ |
Achin Gupta | 9f09835 | 2014-07-18 18:38:28 +0100 | [diff] [blame] | 69 | mov x1, #(SCTLR_I_BIT | SCTLR_A_BIT | SCTLR_SA_BIT) |
Sandrine Bailleux | c10bd2c | 2013-11-12 16:41:16 +0000 | [diff] [blame] | 70 | mrs x0, sctlr_el1 |
Achin Gupta | 9f09835 | 2014-07-18 18:38:28 +0100 | [diff] [blame] | 71 | orr x0, x0, x1 |
Sandrine Bailleux | c10bd2c | 2013-11-12 16:41:16 +0000 | [diff] [blame] | 72 | msr sctlr_el1, x0 |
Sandrine Bailleux | c10bd2c | 2013-11-12 16:41:16 +0000 | [diff] [blame] | 73 | isb |
| 74 | |
Sandrine Bailleux | 65f546a | 2013-11-28 09:43:06 +0000 | [diff] [blame] | 75 | /* --------------------------------------------- |
Achin Gupta | e9c4a64 | 2015-09-11 16:03:13 +0100 | [diff] [blame] | 76 | * Invalidate the RW memory used by the BL2 |
| 77 | * image. This includes the data and NOBITS |
| 78 | * sections. This is done to safeguard against |
| 79 | * possible corruption of this memory by dirty |
| 80 | * cache lines in a system cache as a result of |
| 81 | * use by an earlier boot loader stage. |
| 82 | * --------------------------------------------- |
| 83 | */ |
| 84 | adr x0, __RW_START__ |
| 85 | adr x1, __RW_END__ |
| 86 | sub x1, x1, x0 |
| 87 | bl inv_dcache_range |
| 88 | |
| 89 | /* --------------------------------------------- |
Sandrine Bailleux | 65f546a | 2013-11-28 09:43:06 +0000 | [diff] [blame] | 90 | * Zero out NOBITS sections. There are 2 of them: |
| 91 | * - the .bss section; |
| 92 | * - the coherent memory section. |
| 93 | * --------------------------------------------- |
| 94 | */ |
| 95 | ldr x0, =__BSS_START__ |
| 96 | ldr x1, =__BSS_SIZE__ |
| 97 | bl zeromem16 |
| 98 | |
Soby Mathew | 2ae2043 | 2015-01-08 18:02:44 +0000 | [diff] [blame] | 99 | #if USE_COHERENT_MEM |
Sandrine Bailleux | 65f546a | 2013-11-28 09:43:06 +0000 | [diff] [blame] | 100 | ldr x0, =__COHERENT_RAM_START__ |
| 101 | ldr x1, =__COHERENT_RAM_UNALIGNED_SIZE__ |
| 102 | bl zeromem16 |
Soby Mathew | 2ae2043 | 2015-01-08 18:02:44 +0000 | [diff] [blame] | 103 | #endif |
Sandrine Bailleux | 65f546a | 2013-11-28 09:43:06 +0000 | [diff] [blame] | 104 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 105 | /* -------------------------------------------- |
Achin Gupta | f4a9709 | 2014-06-25 19:26:22 +0100 | [diff] [blame] | 106 | * Allocate a stack whose memory will be marked |
| 107 | * as Normal-IS-WBWA when the MMU is enabled. |
| 108 | * There is no risk of reading stale stack |
| 109 | * memory after enabling the MMU as only the |
| 110 | * primary cpu is running at the moment. |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 111 | * -------------------------------------------- |
| 112 | */ |
Soby Mathew | 3700a92 | 2015-07-13 11:21:11 +0100 | [diff] [blame] | 113 | bl plat_set_my_stack |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 114 | |
| 115 | /* --------------------------------------------- |
| 116 | * Perform early platform setup & platform |
| 117 | * specific early arch. setup e.g. mmu setup |
| 118 | * --------------------------------------------- |
| 119 | */ |
Yatharth Kochar | 57d334c | 2015-10-29 12:47:02 +0000 | [diff] [blame] | 120 | mov x0, x20 |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 121 | bl bl2_early_platform_setup |
| 122 | bl bl2_plat_arch_setup |
| 123 | |
| 124 | /* --------------------------------------------- |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 125 | * Jump to main function. |
| 126 | * --------------------------------------------- |
| 127 | */ |
| 128 | bl bl2_main |
Antonio Nino Diaz | 1f21bcf | 2016-02-01 13:57:25 +0000 | [diff] [blame] | 129 | |
| 130 | /* --------------------------------------------- |
| 131 | * Should never reach this point. |
| 132 | * --------------------------------------------- |
| 133 | */ |
| 134 | bl plat_panic_handler |
| 135 | |
Kévin Petit | a877c25 | 2015-03-24 14:03:57 +0000 | [diff] [blame] | 136 | endfunc bl2_entrypoint |