2002-11-18 00:14:45 +00:00
|
|
|
/*
|
2014-12-12 13:05:22 +00:00
|
|
|
* U-Boot - x86 Startup Code
|
2002-11-18 00:14:45 +00:00
|
|
|
*
|
2011-04-13 09:43:26 +00:00
|
|
|
* (C) Copyright 2008-2011
|
|
|
|
* Graeme Russ, <graeme.russ@gmail.com>
|
|
|
|
*
|
|
|
|
* (C) Copyright 2002
|
2011-08-04 16:45:45 +00:00
|
|
|
* Daniel Engström, Omicron Ceti AB, <daniel@omicron.se>
|
2002-11-18 00:14:45 +00:00
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2002-11-18 00:14:45 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
2010-10-07 09:03:29 +00:00
|
|
|
#include <asm/global_data.h>
|
2014-11-13 05:42:09 +00:00
|
|
|
#include <asm/post.h>
|
2011-12-30 23:24:36 +00:00
|
|
|
#include <asm/processor.h>
|
2011-02-12 04:11:32 +00:00
|
|
|
#include <asm/processor-flags.h>
|
2011-12-31 11:58:15 +00:00
|
|
|
#include <generated/generic-asm-offsets.h>
|
2014-12-12 13:05:22 +00:00
|
|
|
#include <generated/asm-offsets.h>
|
2002-11-18 00:14:45 +00:00
|
|
|
|
2016-03-16 13:44:40 +00:00
|
|
|
/*
|
|
|
|
* Define this to boot U-Boot from a 32-bit program which sets the GDT
|
|
|
|
* differently. This can be used to boot directly from any stage of coreboot,
|
|
|
|
* for example, bypassing the normal payload-loading feature.
|
|
|
|
* This is only useful for development.
|
|
|
|
*/
|
|
|
|
#undef LOAD_FROM_32_BIT
|
|
|
|
|
2002-11-18 00:14:45 +00:00
|
|
|
.section .text
|
|
|
|
.code32
|
|
|
|
.globl _start
|
2003-06-27 21:31:46 +00:00
|
|
|
.type _start, @function
|
2011-04-13 09:43:28 +00:00
|
|
|
.globl _x86boot_start
|
|
|
|
_x86boot_start:
|
2010-04-23 14:05:42 +00:00
|
|
|
/*
|
2015-07-31 15:31:25 +00:00
|
|
|
* This is the fail-safe 32-bit bootstrap entry point.
|
|
|
|
*
|
|
|
|
* This code is used when booting from another boot loader like
|
|
|
|
* coreboot or EFI. So we repeat some of the same init found in
|
|
|
|
* start16.
|
2010-04-23 14:05:42 +00:00
|
|
|
*/
|
|
|
|
cli
|
|
|
|
cld
|
|
|
|
|
2011-11-08 02:33:23 +00:00
|
|
|
/* Turn off cache (this might require a 486-class CPU) */
|
2010-04-23 14:05:42 +00:00
|
|
|
movl %cr0, %eax
|
2011-02-12 04:11:32 +00:00
|
|
|
orl $(X86_CR0_NW | X86_CR0_CD), %eax
|
2010-04-23 14:05:42 +00:00
|
|
|
movl %eax, %cr0
|
|
|
|
wbinvd
|
|
|
|
|
2012-11-03 11:41:28 +00:00
|
|
|
/* Tell 32-bit code it is being entered from an in-RAM copy */
|
2015-07-31 15:31:28 +00:00
|
|
|
movl $GD_FLG_WARM_BOOT, %ebx
|
2015-08-04 18:33:57 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Zero the BIST (Built-In Self Test) value since we don't have it.
|
|
|
|
* It must be 0 or the previous loader would have reported an error.
|
|
|
|
*/
|
|
|
|
movl $0, %ebp
|
|
|
|
|
2012-11-03 11:41:28 +00:00
|
|
|
jmp 1f
|
2015-07-31 15:31:28 +00:00
|
|
|
|
|
|
|
/* Add a way for tools to discover the _start entry point */
|
|
|
|
.align 4
|
|
|
|
.long 0x12345678
|
2003-06-27 21:31:46 +00:00
|
|
|
_start:
|
2012-11-03 11:41:28 +00:00
|
|
|
/*
|
2015-07-31 15:31:25 +00:00
|
|
|
* This is the 32-bit cold-reset entry point, coming from start16.
|
2015-07-31 15:31:28 +00:00
|
|
|
* Set %ebx to GD_FLG_COLD_BOOT to indicate this.
|
2012-11-03 11:41:28 +00:00
|
|
|
*/
|
2015-07-31 15:31:28 +00:00
|
|
|
movl $GD_FLG_COLD_BOOT, %ebx
|
2015-08-04 18:33:57 +00:00
|
|
|
|
2014-11-06 20:20:10 +00:00
|
|
|
/* Save BIST */
|
|
|
|
movl %eax, %ebp
|
2015-08-04 18:33:57 +00:00
|
|
|
1:
|
|
|
|
|
|
|
|
/* Save table pointer */
|
|
|
|
movl %ecx, %esi
|
2010-04-23 14:05:42 +00:00
|
|
|
|
2016-03-16 13:44:40 +00:00
|
|
|
#ifdef LOAD_FROM_32_BIT
|
|
|
|
lgdt gdt_ptr2
|
|
|
|
#endif
|
|
|
|
|
2015-07-31 15:31:25 +00:00
|
|
|
/* Load the segement registers to match the GDT loaded in start16.S */
|
2011-12-30 23:24:36 +00:00
|
|
|
movl $(X86_GDT_ENTRY_32BIT_DS * X86_GDT_ENTRY_SIZE), %eax
|
2010-10-07 09:03:21 +00:00
|
|
|
movw %ax, %fs
|
|
|
|
movw %ax, %ds
|
|
|
|
movw %ax, %gs
|
|
|
|
movw %ax, %es
|
|
|
|
movw %ax, %ss
|
2003-06-27 21:31:46 +00:00
|
|
|
|
2011-07-22 04:01:30 +00:00
|
|
|
/* Clear the interrupt vectors */
|
2010-04-23 14:05:42 +00:00
|
|
|
lidt blank_idt_ptr
|
|
|
|
|
2015-07-31 15:31:25 +00:00
|
|
|
/*
|
|
|
|
* Critical early platform init - generally not used, we prefer init
|
|
|
|
* to happen later when we have a console, in case something goes
|
|
|
|
* wrong.
|
|
|
|
*/
|
2002-11-18 00:14:45 +00:00
|
|
|
jmp early_board_init
|
2010-10-07 09:03:27 +00:00
|
|
|
.globl early_board_init_ret
|
2002-11-18 00:14:45 +00:00
|
|
|
early_board_init_ret:
|
2014-11-13 05:42:09 +00:00
|
|
|
post_code(POST_START)
|
2003-06-27 21:31:46 +00:00
|
|
|
|
2011-02-12 04:11:52 +00:00
|
|
|
/* Initialise Cache-As-RAM */
|
|
|
|
jmp car_init
|
|
|
|
.globl car_init_ret
|
|
|
|
car_init_ret:
|
2014-12-12 13:05:31 +00:00
|
|
|
#ifndef CONFIG_HAVE_FSP
|
2011-02-12 04:11:52 +00:00
|
|
|
/*
|
|
|
|
* We now have CONFIG_SYS_CAR_SIZE bytes of Cache-As-RAM (or SRAM,
|
|
|
|
* or fully initialised SDRAM - we really don't care which)
|
|
|
|
* starting at CONFIG_SYS_CAR_ADDR to be used as a temporary stack
|
2015-07-31 15:31:25 +00:00
|
|
|
* and early malloc() area. The MRC requires some space at the top.
|
2014-11-06 20:20:04 +00:00
|
|
|
*
|
|
|
|
* Stack grows down from top of CAR. We have:
|
|
|
|
*
|
|
|
|
* top-> CONFIG_SYS_CAR_ADDR + CONFIG_SYS_CAR_SIZE
|
2014-11-13 05:42:28 +00:00
|
|
|
* MRC area
|
2015-08-11 02:44:32 +00:00
|
|
|
* global_data with x86 global descriptor table
|
2014-11-06 20:20:04 +00:00
|
|
|
* early malloc area
|
|
|
|
* stack
|
|
|
|
* bottom-> CONFIG_SYS_CAR_ADDR
|
2011-02-12 04:11:52 +00:00
|
|
|
*/
|
2014-11-13 05:42:28 +00:00
|
|
|
movl $(CONFIG_SYS_CAR_ADDR + CONFIG_SYS_CAR_SIZE - 4), %esp
|
|
|
|
#ifdef CONFIG_DCACHE_RAM_MRC_VAR_SIZE
|
|
|
|
subl $CONFIG_DCACHE_RAM_MRC_VAR_SIZE, %esp
|
|
|
|
#endif
|
2014-12-12 13:05:31 +00:00
|
|
|
#else
|
|
|
|
/*
|
2015-08-20 13:40:20 +00:00
|
|
|
* U-Boot enters here twice. For the first time it comes from
|
|
|
|
* car_init_done() with esp points to a temporary stack and esi
|
|
|
|
* set to zero. For the second time it comes from fsp_init_done()
|
|
|
|
* with esi holding the HOB list address returned by the FSP.
|
2014-12-12 13:05:31 +00:00
|
|
|
*/
|
|
|
|
#endif
|
2015-08-11 02:44:32 +00:00
|
|
|
/* Set up global data */
|
|
|
|
mov %esp, %eax
|
2015-11-25 16:56:32 +00:00
|
|
|
call board_init_f_alloc_reserve
|
2015-08-11 02:44:32 +00:00
|
|
|
mov %eax, %esp
|
2015-11-25 16:56:32 +00:00
|
|
|
call board_init_f_init_reserve
|
2012-11-27 15:38:36 +00:00
|
|
|
|
2015-10-19 01:51:26 +00:00
|
|
|
#ifdef CONFIG_DEBUG_UART
|
|
|
|
call debug_uart_init
|
|
|
|
#endif
|
2015-08-03 00:07:21 +00:00
|
|
|
|
2015-08-11 02:44:32 +00:00
|
|
|
/* Get address of global_data */
|
|
|
|
mov %fs:0, %edx
|
2014-12-12 13:05:31 +00:00
|
|
|
#ifdef CONFIG_HAVE_FSP
|
2015-08-11 02:44:32 +00:00
|
|
|
/* Store the HOB list if we have one */
|
2015-06-07 03:33:14 +00:00
|
|
|
test %esi, %esi
|
|
|
|
jz skip_hob
|
2015-08-11 02:44:32 +00:00
|
|
|
movl %esi, GD_HOB_LIST(%edx)
|
2014-12-12 13:05:31 +00:00
|
|
|
|
2015-08-20 13:40:19 +00:00
|
|
|
/*
|
|
|
|
* After fsp_init() returns, the stack has already been switched to a
|
|
|
|
* place within system memory as defined by CONFIG_FSP_TEMP_RAM_ADDR.
|
|
|
|
* Enlarge the size of malloc() pool before relocation since we have
|
|
|
|
* plenty of memory now.
|
|
|
|
*/
|
|
|
|
subl $CONFIG_FSP_SYS_MALLOC_F_LEN, %esp
|
|
|
|
movl %esp, GD_MALLOC_BASE(%edx)
|
2015-06-07 03:33:14 +00:00
|
|
|
skip_hob:
|
2015-08-04 18:33:57 +00:00
|
|
|
#else
|
|
|
|
/* Store table pointer */
|
2015-08-11 02:44:32 +00:00
|
|
|
movl %esi, GD_TABLE(%edx)
|
2015-06-07 03:33:14 +00:00
|
|
|
#endif
|
2015-08-11 02:44:32 +00:00
|
|
|
/* Store BIST */
|
|
|
|
movl %ebp, GD_BIST(%edx)
|
2011-12-31 11:58:15 +00:00
|
|
|
|
2011-02-12 04:11:54 +00:00
|
|
|
/* Set parameter to board_init_f() to boot flags */
|
2014-11-13 05:42:09 +00:00
|
|
|
post_code(POST_START_DONE)
|
2011-04-13 09:43:26 +00:00
|
|
|
xorl %eax, %eax
|
2010-10-07 09:03:29 +00:00
|
|
|
|
2015-07-31 15:31:25 +00:00
|
|
|
/* Enter, U-Boot! */
|
2011-04-13 09:43:26 +00:00
|
|
|
call board_init_f
|
2002-11-18 00:14:45 +00:00
|
|
|
|
|
|
|
/* indicate (lack of) progress */
|
2003-06-27 21:31:46 +00:00
|
|
|
movw $0x85, %ax
|
2011-02-12 04:11:58 +00:00
|
|
|
jmp die
|
|
|
|
|
2012-01-01 04:06:39 +00:00
|
|
|
.globl board_init_f_r_trampoline
|
|
|
|
.type board_init_f_r_trampoline, @function
|
|
|
|
board_init_f_r_trampoline:
|
2011-02-12 04:11:58 +00:00
|
|
|
/*
|
|
|
|
* SDRAM has been initialised, U-Boot code has been copied into
|
|
|
|
* RAM, BSS has been cleared and relocation adjustments have been
|
|
|
|
* made. It is now time to jump into the in-RAM copy of U-Boot
|
|
|
|
*
|
2012-01-01 04:06:39 +00:00
|
|
|
* %eax = Address of top of new stack
|
2011-02-12 04:11:58 +00:00
|
|
|
*/
|
|
|
|
|
2012-11-27 15:38:36 +00:00
|
|
|
/* Stack grows down from top of SDRAM */
|
2011-02-12 04:11:58 +00:00
|
|
|
movl %eax, %esp
|
|
|
|
|
2015-08-11 02:44:32 +00:00
|
|
|
/* See if we need to disable CAR */
|
2015-01-01 23:18:13 +00:00
|
|
|
.weak car_uninit
|
|
|
|
movl $car_uninit, %eax
|
|
|
|
cmpl $0, %eax
|
|
|
|
jz 1f
|
|
|
|
|
|
|
|
call car_uninit
|
|
|
|
1:
|
2015-07-31 15:31:25 +00:00
|
|
|
/* Re-enter U-Boot by calling board_init_f_r() */
|
2012-01-01 04:06:39 +00:00
|
|
|
call board_init_f_r
|
2011-02-12 04:11:58 +00:00
|
|
|
|
2011-11-08 02:33:23 +00:00
|
|
|
die:
|
|
|
|
hlt
|
2002-11-18 00:14:45 +00:00
|
|
|
jmp die
|
2003-06-27 21:31:46 +00:00
|
|
|
hlt
|
2010-04-23 14:05:42 +00:00
|
|
|
|
|
|
|
blank_idt_ptr:
|
|
|
|
.word 0 /* limit */
|
|
|
|
.long 0 /* base */
|
2011-11-08 02:33:19 +00:00
|
|
|
|
|
|
|
.p2align 2 /* force 4-byte alignment */
|
|
|
|
|
2015-07-31 15:31:25 +00:00
|
|
|
/* Add a multiboot header so U-Boot can be loaded by GRUB2 */
|
2011-11-08 02:33:19 +00:00
|
|
|
multiboot_header:
|
|
|
|
/* magic */
|
2015-07-31 15:31:25 +00:00
|
|
|
.long 0x1badb002
|
2011-11-08 02:33:19 +00:00
|
|
|
/* flags */
|
|
|
|
.long (1 << 16)
|
|
|
|
/* checksum */
|
|
|
|
.long -0x1BADB002 - (1 << 16)
|
|
|
|
/* header addr */
|
|
|
|
.long multiboot_header - _x86boot_start + CONFIG_SYS_TEXT_BASE
|
|
|
|
/* load addr */
|
|
|
|
.long CONFIG_SYS_TEXT_BASE
|
|
|
|
/* load end addr */
|
|
|
|
.long 0
|
|
|
|
/* bss end addr */
|
|
|
|
.long 0
|
|
|
|
/* entry addr */
|
|
|
|
.long CONFIG_SYS_TEXT_BASE
|
2016-03-16 13:44:40 +00:00
|
|
|
|
|
|
|
#ifdef LOAD_FROM_32_BIT
|
|
|
|
/*
|
|
|
|
* The following Global Descriptor Table is just enough to get us into
|
|
|
|
* 'Flat Protected Mode' - It will be discarded as soon as the final
|
|
|
|
* GDT is setup in a safe location in RAM
|
|
|
|
*/
|
|
|
|
gdt_ptr2:
|
|
|
|
.word 0x1f /* limit (31 bytes = 4 GDT entries - 1) */
|
|
|
|
.long gdt_rom2 /* base */
|
|
|
|
|
|
|
|
/* Some CPUs are picky about GDT alignment... */
|
|
|
|
.align 16
|
|
|
|
.globl gdt_rom2
|
|
|
|
gdt_rom2:
|
|
|
|
/*
|
|
|
|
* The GDT table ...
|
|
|
|
*
|
|
|
|
* Selector Type
|
|
|
|
* 0x00 NULL
|
|
|
|
* 0x08 Unused
|
|
|
|
* 0x10 32bit code
|
|
|
|
* 0x18 32bit data/stack
|
|
|
|
*/
|
|
|
|
/* The NULL Desciptor - Mandatory */
|
|
|
|
.word 0x0000 /* limit_low */
|
|
|
|
.word 0x0000 /* base_low */
|
|
|
|
.byte 0x00 /* base_middle */
|
|
|
|
.byte 0x00 /* access */
|
|
|
|
.byte 0x00 /* flags + limit_high */
|
|
|
|
.byte 0x00 /* base_high */
|
|
|
|
|
|
|
|
/* Unused Desciptor - (matches Linux) */
|
|
|
|
.word 0x0000 /* limit_low */
|
|
|
|
.word 0x0000 /* base_low */
|
|
|
|
.byte 0x00 /* base_middle */
|
|
|
|
.byte 0x00 /* access */
|
|
|
|
.byte 0x00 /* flags + limit_high */
|
|
|
|
.byte 0x00 /* base_high */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The Code Segment Descriptor:
|
|
|
|
* - Base = 0x00000000
|
|
|
|
* - Size = 4GB
|
|
|
|
* - Access = Present, Ring 0, Exec (Code), Readable
|
|
|
|
* - Flags = 4kB Granularity, 32-bit
|
|
|
|
*/
|
|
|
|
.word 0xffff /* limit_low */
|
|
|
|
.word 0x0000 /* base_low */
|
|
|
|
.byte 0x00 /* base_middle */
|
|
|
|
.byte 0x9b /* access */
|
|
|
|
.byte 0xcf /* flags + limit_high */
|
|
|
|
.byte 0x00 /* base_high */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The Data Segment Descriptor:
|
|
|
|
* - Base = 0x00000000
|
|
|
|
* - Size = 4GB
|
|
|
|
* - Access = Present, Ring 0, Non-Exec (Data), Writable
|
|
|
|
* - Flags = 4kB Granularity, 32-bit
|
|
|
|
*/
|
|
|
|
.word 0xffff /* limit_low */
|
|
|
|
.word 0x0000 /* base_low */
|
|
|
|
.byte 0x00 /* base_middle */
|
|
|
|
.byte 0x93 /* access */
|
|
|
|
.byte 0xcf /* flags + limit_high */
|
|
|
|
.byte 0x00 /* base_high */
|
|
|
|
#endif
|