blob: ebe5835841722bd6fb27b6c700f75181afd09641 [file] [log] [blame]
wdenk2262cfe2002-11-18 00:14:45 +00001/*
wdenk8bde7f72003-06-27 21:31:46 +00002 * U-boot - i386 Startup Code
wdenk2262cfe2002-11-18 00:14:45 +00003 *
wdenk7a8e9bed2003-05-31 18:35:21 +00004 * Copyright (c) 2002, 2003 Omicron Ceti AB, Daniel Engström <denaiel@omicron.se>
wdenk2262cfe2002-11-18 00:14:45 +00005 *
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#define BOOT_SEG 0xffff0000 /* linear segment of boot code */
27#define a32 .byte 0x67;
28#define o32 .byte 0x66;
29
30.section .start16, "ax"
31.code16
32.globl start16
wdenk8bde7f72003-06-27 21:31:46 +000033start16:
wdenk2262cfe2002-11-18 00:14:45 +000034 /* First we let the BSP do some early initialization
35 * this code have to map the flash to its final position
36 */
37 mov $board_init16_ret, %bp
38 jmp board_init16
wdenk8bde7f72003-06-27 21:31:46 +000039board_init16_ret:
40
wdenk2262cfe2002-11-18 00:14:45 +000041 /* Turn of cache (this might require a 486-class CPU) */
Wolfgang Denk53677ef2008-05-20 16:00:29 +020042 movl %cr0, %eax
43 orl $0x60000000,%eax
44 movl %eax, %cr0
wdenk8bde7f72003-06-27 21:31:46 +000045 wbinvd
46
Graeme Russc14a3662010-04-24 00:05:43 +100047 /* load the temporary Global Descriptor Table */
Graeme Russ797960f2010-08-22 16:25:59 +100048o32 cs lidt idt_ptr
Wolfgang Denk53677ef2008-05-20 16:00:29 +020049o32 cs lgdt gdt_ptr
wdenk2262cfe2002-11-18 00:14:45 +000050
wdenk2262cfe2002-11-18 00:14:45 +000051 /* Now, we enter protected mode */
Wolfgang Denk53677ef2008-05-20 16:00:29 +020052 movl %cr0, %eax
53 orl $1,%eax
54 movl %eax, %cr0
wdenk8bde7f72003-06-27 21:31:46 +000055
wdenk2262cfe2002-11-18 00:14:45 +000056 /* Flush the prefetch queue */
Wolfgang Denk53677ef2008-05-20 16:00:29 +020057 jmp ff
wdenk2262cfe2002-11-18 00:14:45 +000058ff:
Graeme Russ077e1952010-04-24 00:05:42 +100059 /* Tell 32-bit code it is being entered from hard-reset */
60 movw $0x0001, %bx
wdenk2262cfe2002-11-18 00:14:45 +000061
62 /* Finally jump to the 32bit initialization code */
wdenk8bde7f72003-06-27 21:31:46 +000063 movw $code32start, %ax
Wolfgang Denk53677ef2008-05-20 16:00:29 +020064 movw %ax,%bp
wdenk2262cfe2002-11-18 00:14:45 +000065o32 cs ljmp *(%bp)
66
67 /* 48-bit far pointer */
68code32start:
Wolfgang Denk53677ef2008-05-20 16:00:29 +020069 .long _start /* offset */
70 .word 0x10 /* segment */
wdenk2262cfe2002-11-18 00:14:45 +000071
Graeme Russ797960f2010-08-22 16:25:59 +100072idt_ptr:
73 .word 0 /* limit */
74 .long 0 /* base */
75
Graeme Russc14a3662010-04-24 00:05:43 +100076/*
77 * The following Global Descriptor Table is just enough to get us into
78 * 'Flat Protected Mode' - It will be discarded as soon as the final
79 * GDT is setup in a safe location in RAM
80 */
wdenk2262cfe2002-11-18 00:14:45 +000081gdt_ptr:
Graeme Russc14a3662010-04-24 00:05:43 +100082 .word 0x20 /* limit (32 bytes = 4 GDT entries) */
Wolfgang Denk53677ef2008-05-20 16:00:29 +020083 .long BOOT_SEG + gdt /* base */
wdenk2262cfe2002-11-18 00:14:45 +000084
wdenk8bde7f72003-06-27 21:31:46 +000085 /* The GDT table ...
wdenk2262cfe2002-11-18 00:14:45 +000086 *
Wolfgang Denk53677ef2008-05-20 16:00:29 +020087 * Selector Type
88 * 0x00 NULL
89 * 0x08 Unused
wdenk8bde7f72003-06-27 21:31:46 +000090 * 0x10 32bit code
wdenk2262cfe2002-11-18 00:14:45 +000091 * 0x18 32bit data/stack
wdenk2262cfe2002-11-18 00:14:45 +000092 */
93
94gdt:
Wolfgang Denk53677ef2008-05-20 16:00:29 +020095 .word 0, 0, 0, 0 /* NULL */
96 .word 0, 0, 0, 0 /* unused */
wdenk2262cfe2002-11-18 00:14:45 +000097
Wolfgang Denk53677ef2008-05-20 16:00:29 +020098 .word 0xFFFF /* 4Gb - (0x100000*0x1000 = 4Gb) */
99 .word 0 /* base address = 0 */
100 .word 0x9B00 /* code read/exec */
101 .word 0x00CF /* granularity = 4096, 386 (+5th nibble of limit) */
wdenk2262cfe2002-11-18 00:14:45 +0000102
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200103 .word 0xFFFF /* 4Gb - (0x100000*0x1000 = 4Gb) */
104 .word 0x0 /* base address = 0 */
105 .word 0x9300 /* data read/write */
106 .word 0x00CF /* granularity = 4096, 386 (+5th nibble of limit) */