wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1 | /* |
Bin Meng | fe0c33a | 2014-12-12 21:05:22 +0800 | [diff] [blame] | 2 | * U-Boot - x86 Startup Code |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 3 | * |
Graeme Russ | dbf7115 | 2011-04-13 19:43:26 +1000 | [diff] [blame] | 4 | * (C) Copyright 2008-2011 |
| 5 | * Graeme Russ, <graeme.russ@gmail.com> |
| 6 | * |
| 7 | * (C) Copyright 2002 |
Albert ARIBAUD | fa82f87 | 2011-08-04 18:45:45 +0200 | [diff] [blame] | 8 | * Daniel Engström, Omicron Ceti AB, <daniel@omicron.se> |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 9 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 10 | * SPDX-License-Identifier: GPL-2.0+ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 11 | */ |
| 12 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 13 | #include <config.h> |
| 14 | #include <version.h> |
Graeme Russ | 161b358 | 2010-10-07 20:03:29 +1100 | [diff] [blame] | 15 | #include <asm/global_data.h> |
Simon Glass | d1cd045 | 2014-11-12 22:42:09 -0700 | [diff] [blame] | 16 | #include <asm/post.h> |
Graeme Russ | 109ad14 | 2011-12-31 10:24:36 +1100 | [diff] [blame] | 17 | #include <asm/processor.h> |
Graeme Russ | 0c24c9c | 2011-02-12 15:11:32 +1100 | [diff] [blame] | 18 | #include <asm/processor-flags.h> |
Graeme Russ | 9e6c572 | 2011-12-31 22:58:15 +1100 | [diff] [blame] | 19 | #include <generated/generic-asm-offsets.h> |
Bin Meng | fe0c33a | 2014-12-12 21:05:22 +0800 | [diff] [blame] | 20 | #include <generated/asm-offsets.h> |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 21 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 22 | .section .text |
| 23 | .code32 |
| 24 | .globl _start |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 25 | .type _start, @function |
Graeme Russ | fea2572 | 2011-04-13 19:43:28 +1000 | [diff] [blame] | 26 | .globl _x86boot_start |
| 27 | _x86boot_start: |
Graeme Russ | 077e195 | 2010-04-24 00:05:42 +1000 | [diff] [blame] | 28 | /* |
| 29 | * This is the fail safe 32-bit bootstrap entry point. The |
| 30 | * following code is not executed from a cold-reset (actually, a |
| 31 | * lot of it is, but from real-mode after cold reset. It is |
| 32 | * repeated here to put the board into a state as close to cold |
| 33 | * reset as necessary) |
| 34 | */ |
| 35 | cli |
| 36 | cld |
| 37 | |
Graeme Russ | 2f0e0cd | 2011-11-08 02:33:23 +0000 | [diff] [blame] | 38 | /* Turn off cache (this might require a 486-class CPU) */ |
Graeme Russ | 077e195 | 2010-04-24 00:05:42 +1000 | [diff] [blame] | 39 | movl %cr0, %eax |
Graeme Russ | 0c24c9c | 2011-02-12 15:11:32 +1100 | [diff] [blame] | 40 | orl $(X86_CR0_NW | X86_CR0_CD), %eax |
Graeme Russ | 077e195 | 2010-04-24 00:05:42 +1000 | [diff] [blame] | 41 | movl %eax, %cr0 |
| 42 | wbinvd |
| 43 | |
Gabe Black | 91d82a2 | 2012-11-03 11:41:28 +0000 | [diff] [blame] | 44 | /* Tell 32-bit code it is being entered from an in-RAM copy */ |
| 45 | movw $GD_FLG_WARM_BOOT, %bx |
| 46 | jmp 1f |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 47 | _start: |
Gabe Black | 91d82a2 | 2012-11-03 11:41:28 +0000 | [diff] [blame] | 48 | /* |
| 49 | * This is the 32-bit cold-reset entry point. Initialize %bx to 0 |
| 50 | * in case we're preceeded by some sort of boot stub. |
| 51 | */ |
| 52 | movw $GD_FLG_COLD_BOOT, %bx |
| 53 | 1: |
Simon Glass | f67cd51 | 2014-11-06 13:20:10 -0700 | [diff] [blame] | 54 | /* Save BIST */ |
| 55 | movl %eax, %ebp |
Graeme Russ | 077e195 | 2010-04-24 00:05:42 +1000 | [diff] [blame] | 56 | |
Graeme Russ | dbf7115 | 2011-04-13 19:43:26 +1000 | [diff] [blame] | 57 | /* Load the segement registes to match the gdt loaded in start16.S */ |
Graeme Russ | 109ad14 | 2011-12-31 10:24:36 +1100 | [diff] [blame] | 58 | movl $(X86_GDT_ENTRY_32BIT_DS * X86_GDT_ENTRY_SIZE), %eax |
Graeme Russ | 8ffb2e8 | 2010-10-07 20:03:21 +1100 | [diff] [blame] | 59 | movw %ax, %fs |
| 60 | movw %ax, %ds |
| 61 | movw %ax, %gs |
| 62 | movw %ax, %es |
| 63 | movw %ax, %ss |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 64 | |
Mike Williams | 1626308 | 2011-07-22 04:01:30 +0000 | [diff] [blame] | 65 | /* Clear the interrupt vectors */ |
Graeme Russ | 077e195 | 2010-04-24 00:05:42 +1000 | [diff] [blame] | 66 | lidt blank_idt_ptr |
| 67 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 68 | /* Early platform init (setup gpio, etc ) */ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 69 | jmp early_board_init |
Graeme Russ | 88fa0a6 | 2010-10-07 20:03:27 +1100 | [diff] [blame] | 70 | .globl early_board_init_ret |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 71 | early_board_init_ret: |
Simon Glass | d1cd045 | 2014-11-12 22:42:09 -0700 | [diff] [blame] | 72 | post_code(POST_START) |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 73 | |
Graeme Russ | ed4cba7 | 2011-02-12 15:11:52 +1100 | [diff] [blame] | 74 | /* Initialise Cache-As-RAM */ |
| 75 | jmp car_init |
| 76 | .globl car_init_ret |
| 77 | car_init_ret: |
Bin Meng | bceb9f0 | 2014-12-12 21:05:31 +0800 | [diff] [blame] | 78 | #ifndef CONFIG_HAVE_FSP |
Graeme Russ | ed4cba7 | 2011-02-12 15:11:52 +1100 | [diff] [blame] | 79 | /* |
| 80 | * We now have CONFIG_SYS_CAR_SIZE bytes of Cache-As-RAM (or SRAM, |
| 81 | * or fully initialised SDRAM - we really don't care which) |
| 82 | * starting at CONFIG_SYS_CAR_ADDR to be used as a temporary stack |
Simon Glass | 65dd74a | 2014-11-12 22:42:28 -0700 | [diff] [blame] | 83 | * and early malloc area. The MRC requires some space at the top. |
Simon Glass | 76f90f3 | 2014-11-06 13:20:04 -0700 | [diff] [blame] | 84 | * |
| 85 | * Stack grows down from top of CAR. We have: |
| 86 | * |
| 87 | * top-> CONFIG_SYS_CAR_ADDR + CONFIG_SYS_CAR_SIZE |
Simon Glass | 65dd74a | 2014-11-12 22:42:28 -0700 | [diff] [blame] | 88 | * MRC area |
Simon Glass | 76f90f3 | 2014-11-06 13:20:04 -0700 | [diff] [blame] | 89 | * global_data |
| 90 | * x86 global descriptor table |
| 91 | * early malloc area |
| 92 | * stack |
| 93 | * bottom-> CONFIG_SYS_CAR_ADDR |
Graeme Russ | ed4cba7 | 2011-02-12 15:11:52 +1100 | [diff] [blame] | 94 | */ |
Simon Glass | 65dd74a | 2014-11-12 22:42:28 -0700 | [diff] [blame] | 95 | movl $(CONFIG_SYS_CAR_ADDR + CONFIG_SYS_CAR_SIZE - 4), %esp |
| 96 | #ifdef CONFIG_DCACHE_RAM_MRC_VAR_SIZE |
| 97 | subl $CONFIG_DCACHE_RAM_MRC_VAR_SIZE, %esp |
| 98 | #endif |
Bin Meng | bceb9f0 | 2014-12-12 21:05:31 +0800 | [diff] [blame] | 99 | #else |
| 100 | /* |
| 101 | * When we get here after car_init, esp points to a temporary stack |
| 102 | * and esi holds the HOB list address returned by the FSP. |
| 103 | */ |
| 104 | #endif |
Graeme Russ | 8d61625 | 2012-11-27 15:38:36 +0000 | [diff] [blame] | 105 | |
| 106 | /* Reserve space on stack for global data */ |
| 107 | subl $GENERATED_GBL_DATA_SIZE, %esp |
| 108 | |
| 109 | /* Align global data to 16-byte boundary */ |
| 110 | andl $0xfffffff0, %esp |
Simon Glass | d1cd045 | 2014-11-12 22:42:09 -0700 | [diff] [blame] | 111 | post_code(POST_START_STACK) |
Graeme Russ | 8d61625 | 2012-11-27 15:38:36 +0000 | [diff] [blame] | 112 | |
Simon Glass | fbd7282 | 2014-10-10 07:49:15 -0600 | [diff] [blame] | 113 | /* Zero the global data since it won't happen later */ |
| 114 | xorl %eax, %eax |
| 115 | movl $GENERATED_GBL_DATA_SIZE, %ecx |
| 116 | movl %esp, %edi |
| 117 | rep stosb |
| 118 | |
Bin Meng | bceb9f0 | 2014-12-12 21:05:31 +0800 | [diff] [blame] | 119 | #ifdef CONFIG_HAVE_FSP |
| 120 | /* Store HOB list */ |
| 121 | movl %esp, %edx |
| 122 | addl $GD_HOB_LIST, %edx |
| 123 | movl %esi, (%edx) |
| 124 | #endif |
| 125 | |
Simon Glass | 76f90f3 | 2014-11-06 13:20:04 -0700 | [diff] [blame] | 126 | /* Setup first parameter to setup_gdt, pointer to global_data */ |
Graeme Russ | 8d61625 | 2012-11-27 15:38:36 +0000 | [diff] [blame] | 127 | movl %esp, %eax |
| 128 | |
| 129 | /* Reserve space for global descriptor table */ |
| 130 | subl $X86_GDT_SIZE, %esp |
| 131 | |
Simon Glass | 76f90f3 | 2014-11-06 13:20:04 -0700 | [diff] [blame] | 132 | /* Align temporary global descriptor table to 16-byte boundary */ |
| 133 | andl $0xfffffff0, %esp |
| 134 | movl %esp, %ecx |
| 135 | |
Simon Glass | 5dbcaa2 | 2014-10-10 07:49:16 -0600 | [diff] [blame] | 136 | #if defined(CONFIG_SYS_MALLOC_F_LEN) |
| 137 | subl $CONFIG_SYS_MALLOC_F_LEN, %esp |
| 138 | movl %eax, %edx |
| 139 | addl $GD_MALLOC_BASE, %edx |
| 140 | movl %esp, (%edx) |
| 141 | #endif |
Simon Glass | f67cd51 | 2014-11-06 13:20:10 -0700 | [diff] [blame] | 142 | /* Store BIST */ |
| 143 | movl %eax, %edx |
| 144 | addl $GD_BIST, %edx |
| 145 | movl %ebp, (%edx) |
Graeme Russ | 8d61625 | 2012-11-27 15:38:36 +0000 | [diff] [blame] | 146 | |
| 147 | /* Set second parameter to setup_gdt */ |
Simon Glass | 76f90f3 | 2014-11-06 13:20:04 -0700 | [diff] [blame] | 148 | movl %ecx, %edx |
Graeme Russ | 8d61625 | 2012-11-27 15:38:36 +0000 | [diff] [blame] | 149 | |
Graeme Russ | 8d61625 | 2012-11-27 15:38:36 +0000 | [diff] [blame] | 150 | /* Setup global descriptor table so gd->xyz works */ |
| 151 | call setup_gdt |
Graeme Russ | 9e6c572 | 2011-12-31 22:58:15 +1100 | [diff] [blame] | 152 | |
Graeme Russ | 96cd664 | 2011-02-12 15:11:54 +1100 | [diff] [blame] | 153 | /* Set parameter to board_init_f() to boot flags */ |
Simon Glass | d1cd045 | 2014-11-12 22:42:09 -0700 | [diff] [blame] | 154 | post_code(POST_START_DONE) |
Graeme Russ | dbf7115 | 2011-04-13 19:43:26 +1000 | [diff] [blame] | 155 | xorl %eax, %eax |
Graeme Russ | 161b358 | 2010-10-07 20:03:29 +1100 | [diff] [blame] | 156 | |
Graeme Russ | dbf7115 | 2011-04-13 19:43:26 +1000 | [diff] [blame] | 157 | /* Enter, U-boot! */ |
| 158 | call board_init_f |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 159 | |
| 160 | /* indicate (lack of) progress */ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 161 | movw $0x85, %ax |
Graeme Russ | fb00290 | 2011-02-12 15:11:58 +1100 | [diff] [blame] | 162 | jmp die |
| 163 | |
Graeme Russ | f48dd6f | 2012-01-01 15:06:39 +1100 | [diff] [blame] | 164 | .globl board_init_f_r_trampoline |
| 165 | .type board_init_f_r_trampoline, @function |
| 166 | board_init_f_r_trampoline: |
Graeme Russ | fb00290 | 2011-02-12 15:11:58 +1100 | [diff] [blame] | 167 | /* |
| 168 | * SDRAM has been initialised, U-Boot code has been copied into |
| 169 | * RAM, BSS has been cleared and relocation adjustments have been |
| 170 | * made. It is now time to jump into the in-RAM copy of U-Boot |
| 171 | * |
Graeme Russ | f48dd6f | 2012-01-01 15:06:39 +1100 | [diff] [blame] | 172 | * %eax = Address of top of new stack |
Graeme Russ | fb00290 | 2011-02-12 15:11:58 +1100 | [diff] [blame] | 173 | */ |
| 174 | |
Graeme Russ | 8d61625 | 2012-11-27 15:38:36 +0000 | [diff] [blame] | 175 | /* Stack grows down from top of SDRAM */ |
Graeme Russ | fb00290 | 2011-02-12 15:11:58 +1100 | [diff] [blame] | 176 | movl %eax, %esp |
| 177 | |
Graeme Russ | 8d61625 | 2012-11-27 15:38:36 +0000 | [diff] [blame] | 178 | /* Reserve space on stack for global data */ |
| 179 | subl $GENERATED_GBL_DATA_SIZE, %esp |
| 180 | |
| 181 | /* Align global data to 16-byte boundary */ |
| 182 | andl $0xfffffff0, %esp |
| 183 | |
| 184 | /* Setup first parameter to memcpy (and setup_gdt) */ |
| 185 | movl %esp, %eax |
| 186 | |
| 187 | /* Setup second parameter to memcpy */ |
| 188 | fs movl 0, %edx |
| 189 | |
| 190 | /* Set third parameter to memcpy */ |
| 191 | movl $GENERATED_GBL_DATA_SIZE, %ecx |
| 192 | |
| 193 | /* Copy global data from CAR to SDRAM stack */ |
| 194 | call memcpy |
| 195 | |
| 196 | /* Reserve space for global descriptor table */ |
| 197 | subl $X86_GDT_SIZE, %esp |
| 198 | |
| 199 | /* Align global descriptor table to 16-byte boundary */ |
| 200 | andl $0xfffffff0, %esp |
| 201 | |
| 202 | /* Set second parameter to setup_gdt */ |
| 203 | movl %esp, %edx |
| 204 | |
Graeme Russ | 8d61625 | 2012-11-27 15:38:36 +0000 | [diff] [blame] | 205 | /* Setup global descriptor table so gd->xyz works */ |
| 206 | call setup_gdt |
| 207 | |
Graeme Russ | f48dd6f | 2012-01-01 15:06:39 +1100 | [diff] [blame] | 208 | /* Re-enter U-Boot by calling board_init_f_r */ |
| 209 | call board_init_f_r |
Graeme Russ | fb00290 | 2011-02-12 15:11:58 +1100 | [diff] [blame] | 210 | |
Graeme Russ | 2f0e0cd | 2011-11-08 02:33:23 +0000 | [diff] [blame] | 211 | die: |
| 212 | hlt |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 213 | jmp die |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 214 | hlt |
Graeme Russ | 077e195 | 2010-04-24 00:05:42 +1000 | [diff] [blame] | 215 | |
| 216 | blank_idt_ptr: |
| 217 | .word 0 /* limit */ |
| 218 | .long 0 /* base */ |
Graeme Russ | a206cc2 | 2011-11-08 02:33:19 +0000 | [diff] [blame] | 219 | |
| 220 | .p2align 2 /* force 4-byte alignment */ |
| 221 | |
| 222 | multiboot_header: |
| 223 | /* magic */ |
| 224 | .long 0x1BADB002 |
| 225 | /* flags */ |
| 226 | .long (1 << 16) |
| 227 | /* checksum */ |
| 228 | .long -0x1BADB002 - (1 << 16) |
| 229 | /* header addr */ |
| 230 | .long multiboot_header - _x86boot_start + CONFIG_SYS_TEXT_BASE |
| 231 | /* load addr */ |
| 232 | .long CONFIG_SYS_TEXT_BASE |
| 233 | /* load end addr */ |
| 234 | .long 0 |
| 235 | /* bss end addr */ |
| 236 | .long 0 |
| 237 | /* entry addr */ |
| 238 | .long CONFIG_SYS_TEXT_BASE |