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 | * |
wdenk | 7a8e9bed | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 4 | * Copyright (c) 2002, 2003 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 | |
Graeme Russ | c81b26b | 2010-10-07 20:03:30 +1100 | [diff] [blame] | 25 | #include <asm/global_data.h> |
Graeme Russ | 0c24c9c | 2011-02-12 15:11:32 +1100 | [diff] [blame] | 26 | #include <asm/processor-flags.h> |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 27 | |
| 28 | #define BOOT_SEG 0xffff0000 /* linear segment of boot code */ |
| 29 | #define a32 .byte 0x67; |
| 30 | #define o32 .byte 0x66; |
| 31 | |
| 32 | .section .start16, "ax" |
| 33 | .code16 |
| 34 | .globl start16 |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 35 | start16: |
Graeme Russ | c81b26b | 2010-10-07 20:03:30 +1100 | [diff] [blame] | 36 | /* Set the Cold Boot / Hard Reset flag */ |
| 37 | movl $GD_FLG_COLD_BOOT, %ebx |
| 38 | |
Graeme Russ | 8ffb2e8 | 2010-10-07 20:03:21 +1100 | [diff] [blame] | 39 | /* |
| 40 | * First we let the BSP do some early initialization |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 41 | * this code have to map the flash to its final position |
| 42 | */ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 43 | jmp board_init16 |
Graeme Russ | 88fa0a6 | 2010-10-07 20:03:27 +1100 | [diff] [blame] | 44 | .globl board_init16_ret |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 45 | board_init16_ret: |
| 46 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 47 | /* Turn of cache (this might require a 486-class CPU) */ |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 48 | movl %cr0, %eax |
Graeme Russ | 0c24c9c | 2011-02-12 15:11:32 +1100 | [diff] [blame] | 49 | orl $(X86_CR0_NW & X86_CR0_CD), %eax |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 50 | movl %eax, %cr0 |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 51 | wbinvd |
| 52 | |
Graeme Russ | c14a366 | 2010-04-24 00:05:43 +1000 | [diff] [blame] | 53 | /* load the temporary Global Descriptor Table */ |
Graeme Russ | 797960f | 2010-08-22 16:25:59 +1000 | [diff] [blame] | 54 | o32 cs lidt idt_ptr |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 55 | o32 cs lgdt gdt_ptr |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 56 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 57 | /* Now, we enter protected mode */ |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 58 | movl %cr0, %eax |
Graeme Russ | 0c24c9c | 2011-02-12 15:11:32 +1100 | [diff] [blame] | 59 | orl $X86_CR0_PE, %eax |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 60 | movl %eax, %cr0 |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 61 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 62 | /* Flush the prefetch queue */ |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 63 | jmp ff |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 64 | ff: |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 65 | /* Finally jump to the 32bit initialization code */ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 66 | movw $code32start, %ax |
Graeme Russ | 8ffb2e8 | 2010-10-07 20:03:21 +1100 | [diff] [blame] | 67 | movw %ax, %bp |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 68 | o32 cs ljmp *(%bp) |
| 69 | |
| 70 | /* 48-bit far pointer */ |
| 71 | code32start: |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 72 | .long _start /* offset */ |
| 73 | .word 0x10 /* segment */ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 74 | |
Graeme Russ | 797960f | 2010-08-22 16:25:59 +1000 | [diff] [blame] | 75 | idt_ptr: |
| 76 | .word 0 /* limit */ |
| 77 | .long 0 /* base */ |
| 78 | |
Graeme Russ | c14a366 | 2010-04-24 00:05:43 +1000 | [diff] [blame] | 79 | /* |
| 80 | * The following Global Descriptor Table is just enough to get us into |
| 81 | * 'Flat Protected Mode' - It will be discarded as soon as the final |
| 82 | * GDT is setup in a safe location in RAM |
| 83 | */ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 84 | gdt_ptr: |
Graeme Russ | c14a366 | 2010-04-24 00:05:43 +1000 | [diff] [blame] | 85 | .word 0x20 /* limit (32 bytes = 4 GDT entries) */ |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 86 | .long BOOT_SEG + gdt /* base */ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 87 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 88 | /* The GDT table ... |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 89 | * |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 90 | * Selector Type |
| 91 | * 0x00 NULL |
| 92 | * 0x08 Unused |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 93 | * 0x10 32bit code |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 94 | * 0x18 32bit data/stack |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 95 | */ |
| 96 | |
| 97 | gdt: |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 98 | .word 0, 0, 0, 0 /* NULL */ |
| 99 | .word 0, 0, 0, 0 /* unused */ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 100 | |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 101 | .word 0xFFFF /* 4Gb - (0x100000*0x1000 = 4Gb) */ |
| 102 | .word 0 /* base address = 0 */ |
| 103 | .word 0x9B00 /* code read/exec */ |
| 104 | .word 0x00CF /* granularity = 4096, 386 (+5th nibble of limit) */ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 105 | |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 106 | .word 0xFFFF /* 4Gb - (0x100000*0x1000 = 4Gb) */ |
| 107 | .word 0x0 /* base address = 0 */ |
| 108 | .word 0x9300 /* data read/write */ |
| 109 | .word 0x00CF /* granularity = 4096, 386 (+5th nibble of limit) */ |