wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1 | /* |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 2 | * U-boot - i386 Startup Code |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 3 | * |
Graeme Russ | 9963a82 | 2011-02-12 15:11:26 +1100 | [diff] [blame] | 4 | * Copyright (c) 2002 Omicron Ceti AB, Daniel Engström <denaiel@omicron.se> |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 5 | * |
| 6 | * See file CREDITS for list of people who contributed to this |
| 7 | * project. |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or |
| 10 | * modify it under the terms of the GNU General Public License as |
| 11 | * published by the Free Software Foundation; either version 2 of |
| 12 | * the License, or (at your option) any later version. |
| 13 | * |
| 14 | * This program is distributed in the hope that it will be useful, |
| 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 17 | * GNU General Public License for more details. |
| 18 | * |
| 19 | * You should have received a copy of the GNU General Public License |
| 20 | * along with this program; if not, write to the Free Software |
| 21 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 22 | * MA 02111-1307 USA |
| 23 | */ |
| 24 | |
| 25 | |
| 26 | #include <config.h> |
| 27 | #include <version.h> |
Graeme Russ | 161b358 | 2010-10-07 20:03:29 +1100 | [diff] [blame] | 28 | #include <asm/global_data.h> |
Graeme Russ | 0c24c9c | 2011-02-12 15:11:32 +1100 | [diff] [blame] | 29 | #include <asm/processor-flags.h> |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 30 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 31 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 32 | .section .text |
| 33 | .code32 |
| 34 | .globl _start |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 35 | .type _start, @function |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 36 | .globl _i386boot_start |
| 37 | _i386boot_start: |
Graeme Russ | 077e195 | 2010-04-24 00:05:42 +1000 | [diff] [blame] | 38 | /* |
| 39 | * This is the fail safe 32-bit bootstrap entry point. The |
| 40 | * following code is not executed from a cold-reset (actually, a |
| 41 | * lot of it is, but from real-mode after cold reset. It is |
| 42 | * repeated here to put the board into a state as close to cold |
| 43 | * reset as necessary) |
| 44 | */ |
| 45 | cli |
| 46 | cld |
| 47 | |
| 48 | /* Turn of cache (this might require a 486-class CPU) */ |
| 49 | movl %cr0, %eax |
Graeme Russ | 0c24c9c | 2011-02-12 15:11:32 +1100 | [diff] [blame] | 50 | orl $(X86_CR0_NW | X86_CR0_CD), %eax |
Graeme Russ | 077e195 | 2010-04-24 00:05:42 +1000 | [diff] [blame] | 51 | movl %eax, %cr0 |
| 52 | wbinvd |
| 53 | |
| 54 | /* Tell 32-bit code it is being entered from an in-RAM copy */ |
Graeme Russ | c81b26b | 2010-10-07 20:03:30 +1100 | [diff] [blame] | 55 | movw $GD_FLG_WARM_BOOT, %bx |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 56 | _start: |
Graeme Russ | 077e195 | 2010-04-24 00:05:42 +1000 | [diff] [blame] | 57 | /* This is the 32-bit cold-reset entry point */ |
| 58 | |
Graeme Russ | 8ffb2e8 | 2010-10-07 20:03:21 +1100 | [diff] [blame] | 59 | movl $0x18, %eax /* Load our segement registes, the |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 60 | * gdt have already been loaded by start16.S */ |
Graeme Russ | 8ffb2e8 | 2010-10-07 20:03:21 +1100 | [diff] [blame] | 61 | movw %ax, %fs |
| 62 | movw %ax, %ds |
| 63 | movw %ax, %gs |
| 64 | movw %ax, %es |
| 65 | movw %ax, %ss |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 66 | |
Graeme Russ | 077e195 | 2010-04-24 00:05:42 +1000 | [diff] [blame] | 67 | /* Clear the interupt vectors */ |
| 68 | lidt blank_idt_ptr |
| 69 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 70 | /* Early platform init (setup gpio, etc ) */ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 71 | jmp early_board_init |
Graeme Russ | 88fa0a6 | 2010-10-07 20:03:27 +1100 | [diff] [blame] | 72 | .globl early_board_init_ret |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 73 | early_board_init_ret: |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 74 | |
Graeme Russ | ed4cba7 | 2011-02-12 15:11:52 +1100 | [diff] [blame^] | 75 | /* Initialise Cache-As-RAM */ |
| 76 | jmp car_init |
| 77 | .globl car_init_ret |
| 78 | car_init_ret: |
| 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 |
| 83 | */ |
| 84 | movl $CONFIG_SYS_INIT_SP_ADDR, %esp |
| 85 | |
Graeme Russ | 4e33467 | 2011-02-12 15:11:33 +1100 | [diff] [blame] | 86 | /* Skip memory initialization if not starting from cold-reset */ |
| 87 | movl %ebx, %ecx |
| 88 | andl $GD_FLG_COLD_BOOT, %ecx |
| 89 | jz skip_mem_init |
| 90 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 91 | /* size memory */ |
Graeme Russ | ed4cba7 | 2011-02-12 15:11:52 +1100 | [diff] [blame^] | 92 | call mem_init |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 93 | |
Graeme Russ | c81b26b | 2010-10-07 20:03:30 +1100 | [diff] [blame] | 94 | skip_mem_init: |
Graeme Russ | 759598f | 2010-04-24 00:05:41 +1000 | [diff] [blame] | 95 | /* fetch memory size (into %eax) */ |
Graeme Russ | ed4cba7 | 2011-02-12 15:11:52 +1100 | [diff] [blame^] | 96 | call get_mem_size |
| 97 | movl %eax, %esp |
Graeme Russ | 759598f | 2010-04-24 00:05:41 +1000 | [diff] [blame] | 98 | |
Graeme Russ | 00940a2 | 2010-10-07 20:03:26 +1100 | [diff] [blame] | 99 | #if CONFIG_SYS_SDRAM_ECC_ENABLE |
| 100 | /* Skip ECC initialization if not starting from cold-reset */ |
| 101 | movl %ebx, %ecx |
| 102 | andl $GD_FLG_COLD_BOOT, %ecx |
Graeme Russ | ed4cba7 | 2011-02-12 15:11:52 +1100 | [diff] [blame^] | 103 | jz skip_ecc_init |
| 104 | call init_ecc |
Graeme Russ | 00940a2 | 2010-10-07 20:03:26 +1100 | [diff] [blame] | 105 | |
Graeme Russ | ed4cba7 | 2011-02-12 15:11:52 +1100 | [diff] [blame^] | 106 | skip_init_ecc: |
Graeme Russ | 00940a2 | 2010-10-07 20:03:26 +1100 | [diff] [blame] | 107 | #endif |
| 108 | |
Graeme Russ | 1c409bc | 2009-11-24 20:04:21 +1100 | [diff] [blame] | 109 | /* Test the stack */ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 110 | pushl $0 |
Graeme Russ | 5a3876d | 2010-10-07 20:03:28 +1100 | [diff] [blame] | 111 | popl %ecx |
| 112 | cmpl $0, %ecx |
Graeme Russ | 88fa0a6 | 2010-10-07 20:03:27 +1100 | [diff] [blame] | 113 | jne die |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 114 | push $0x55aa55aa |
Graeme Russ | 5f26790 | 2010-10-07 20:03:28 +1100 | [diff] [blame] | 115 | popl %ecx |
| 116 | cmpl $0x55aa55aa, %ecx |
Graeme Russ | 6ae032a | 2010-10-07 20:03:24 +1100 | [diff] [blame] | 117 | jne die |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 118 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 119 | wbinvd |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 120 | |
Graeme Russ | c868af3 | 2010-10-07 20:03:33 +1100 | [diff] [blame] | 121 | /* Determine our load offset */ |
| 122 | call 1f |
| 123 | 1: popl %ecx |
| 124 | subl $1b, %ecx |
| 125 | |
Graeme Russ | 5c16165 | 2010-10-07 20:03:23 +1100 | [diff] [blame] | 126 | /* Set the upper memory limit parameter */ |
Graeme Russ | 5c16165 | 2010-10-07 20:03:23 +1100 | [diff] [blame] | 127 | subl $CONFIG_SYS_STACK_SIZE, %eax |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 128 | |
Graeme Russ | 2e2613d | 2011-02-12 15:11:50 +1100 | [diff] [blame] | 129 | /* Pointer to temporary global data */ |
| 130 | movl $CONFIG_SYS_INIT_GD_ADDR, %edx |
Graeme Russ | 161b358 | 2010-10-07 20:03:29 +1100 | [diff] [blame] | 131 | |
Graeme Russ | 2e2613d | 2011-02-12 15:11:50 +1100 | [diff] [blame] | 132 | /* %edx points to the global data structure */ |
| 133 | movl %esp, (GD_RAM_SIZE * 4)(%edx) |
| 134 | movl %ebx, (GD_FLAGS * 4)(%edx) |
| 135 | movl %ecx, (GD_LOAD_OFF * 4)(%edx) |
Graeme Russ | 161b358 | 2010-10-07 20:03:29 +1100 | [diff] [blame] | 136 | |
Graeme Russ | 1c409bc | 2009-11-24 20:04:21 +1100 | [diff] [blame] | 137 | call board_init_f /* Enter, U-boot! */ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 138 | |
| 139 | /* indicate (lack of) progress */ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 140 | movw $0x85, %ax |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 141 | die: hlt |
| 142 | jmp die |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 143 | hlt |
Graeme Russ | 077e195 | 2010-04-24 00:05:42 +1000 | [diff] [blame] | 144 | |
| 145 | blank_idt_ptr: |
| 146 | .word 0 /* limit */ |
| 147 | .long 0 /* base */ |