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 | * |
| 4 | * Copyright (c) 2002 Omicron Ceti AB, Daniel Engström <denaiel@omicron.se> |
| 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> |
| 28 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 29 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 30 | .section .text |
| 31 | .code32 |
| 32 | .globl _start |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 33 | .type _start, @function |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 34 | .globl _i386boot_start |
| 35 | _i386boot_start: |
Graeme Russ | 077e195 | 2010-04-24 00:05:42 +1000 | [diff] [blame] | 36 | /* |
| 37 | * This is the fail safe 32-bit bootstrap entry point. The |
| 38 | * following code is not executed from a cold-reset (actually, a |
| 39 | * lot of it is, but from real-mode after cold reset. It is |
| 40 | * repeated here to put the board into a state as close to cold |
| 41 | * reset as necessary) |
| 42 | */ |
| 43 | cli |
| 44 | cld |
| 45 | |
| 46 | /* Turn of cache (this might require a 486-class CPU) */ |
| 47 | movl %cr0, %eax |
Graeme Russ | 8ffb2e8 | 2010-10-07 20:03:21 +1100 | [diff] [blame] | 48 | orl $0x60000000, %eax |
Graeme Russ | 077e195 | 2010-04-24 00:05:42 +1000 | [diff] [blame] | 49 | movl %eax, %cr0 |
| 50 | wbinvd |
| 51 | |
| 52 | /* Tell 32-bit code it is being entered from an in-RAM copy */ |
| 53 | movw $0x0000, %bx |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 54 | _start: |
Graeme Russ | 077e195 | 2010-04-24 00:05:42 +1000 | [diff] [blame] | 55 | /* This is the 32-bit cold-reset entry point */ |
| 56 | |
Graeme Russ | 8ffb2e8 | 2010-10-07 20:03:21 +1100 | [diff] [blame] | 57 | movl $0x18, %eax /* Load our segement registes, the |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 58 | * gdt have already been loaded by start16.S */ |
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 | |
Graeme Russ | 077e195 | 2010-04-24 00:05:42 +1000 | [diff] [blame] | 65 | /* Clear the interupt vectors */ |
| 66 | lidt blank_idt_ptr |
| 67 | |
| 68 | /* |
| 69 | * Skip low-level board and memory initialization if not starting |
| 70 | * from cold-reset. This allows us to do a fail safe boot-strap |
| 71 | * into a new build of U-Boot from a known-good boot flash |
| 72 | */ |
| 73 | movw $0x0001, %ax |
| 74 | cmpw %ax, %bx |
| 75 | jne mem_init_ret |
| 76 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 77 | /* We call a few functions in the board support package |
| 78 | * since we have no stack yet we'll have to use %ebp |
| 79 | * to store the return address */ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 80 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 81 | /* Early platform init (setup gpio, etc ) */ |
Graeme Russ | 8ffb2e8 | 2010-10-07 20:03:21 +1100 | [diff] [blame] | 82 | mov $early_board_init_ret, %ebp |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 83 | jmp early_board_init |
| 84 | early_board_init_ret: |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 85 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 86 | /* size memory */ |
| 87 | mov $mem_init_ret, %ebp |
Graeme Russ | 8ffb2e8 | 2010-10-07 20:03:21 +1100 | [diff] [blame] | 88 | jmp mem_init |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 89 | mem_init_ret: |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 90 | |
Graeme Russ | 759598f | 2010-04-24 00:05:41 +1000 | [diff] [blame] | 91 | /* fetch memory size (into %eax) */ |
| 92 | mov $get_mem_size_ret, %ebp |
Graeme Russ | 8ffb2e8 | 2010-10-07 20:03:21 +1100 | [diff] [blame] | 93 | jmp get_mem_size |
Graeme Russ | 759598f | 2010-04-24 00:05:41 +1000 | [diff] [blame] | 94 | get_mem_size_ret: |
| 95 | |
Graeme Russ | 1c409bc | 2009-11-24 20:04:21 +1100 | [diff] [blame] | 96 | /* Check we have enough memory for stack */ |
| 97 | movl $CONFIG_SYS_STACK_SIZE, %ecx |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 98 | cmpl %ecx, %eax |
Graeme Russ | 6ae032a | 2010-10-07 20:03:24 +1100 | [diff] [blame^] | 99 | jb die |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 100 | mem_ok: |
Graeme Russ | 1c409bc | 2009-11-24 20:04:21 +1100 | [diff] [blame] | 101 | /* Set stack pointer to upper memory limit*/ |
Graeme Russ | 8ffb2e8 | 2010-10-07 20:03:21 +1100 | [diff] [blame] | 102 | movl %eax, %esp |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 103 | |
Graeme Russ | 1c409bc | 2009-11-24 20:04:21 +1100 | [diff] [blame] | 104 | /* Test the stack */ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 105 | pushl $0 |
| 106 | popl %eax |
| 107 | cmpl $0, %eax |
| 108 | jne no_stack |
| 109 | push $0x55aa55aa |
| 110 | popl %ebx |
| 111 | cmpl $0x55aa55aa, %ebx |
Graeme Russ | 6ae032a | 2010-10-07 20:03:24 +1100 | [diff] [blame^] | 112 | jne die |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 113 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 114 | wbinvd |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 115 | |
Graeme Russ | 5c16165 | 2010-10-07 20:03:23 +1100 | [diff] [blame] | 116 | /* Set the upper memory limit parameter */ |
| 117 | movl %esp, %eax |
| 118 | subl $CONFIG_SYS_STACK_SIZE, %eax |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 119 | |
Graeme Russ | 1c409bc | 2009-11-24 20:04:21 +1100 | [diff] [blame] | 120 | call board_init_f /* Enter, U-boot! */ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 121 | |
| 122 | /* indicate (lack of) progress */ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 123 | movw $0x85, %ax |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 124 | die: hlt |
| 125 | jmp die |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 126 | hlt |
Graeme Russ | 077e195 | 2010-04-24 00:05:42 +1000 | [diff] [blame] | 127 | |
| 128 | blank_idt_ptr: |
| 129 | .word 0 /* limit */ |
| 130 | .long 0 /* base */ |