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