mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
a65b25d148
This commit introduces the initial U-Boot support for QEMU x86 targets. U-Boot can boot from coreboot as a payload, or directly without coreboot. Signed-off-by: Bin Meng <bmeng.cn@gmail.com> Acked-by: Simon Glass <sjg@chromium.org> Tested-by: Simon Glass <sjg@chromium.org> Merged in patch 'x86: qemu: Add CMD_NET to qemu-x86_defconfig https://patchwork.ozlabs.org/patch/479745/
26 lines
453 B
ArmAsm
26 lines
453 B
ArmAsm
/*
|
|
* Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#include <config.h>
|
|
#include <asm/post.h>
|
|
|
|
.globl car_init
|
|
car_init:
|
|
/* Save the BIST result */
|
|
movl %eax, %ebp
|
|
|
|
post_code(POST_CAR_START)
|
|
|
|
/*
|
|
* Since we know we are running inside emulator,
|
|
* we can do nothing here for CAR initialization.
|
|
*/
|
|
|
|
/* Restore the BIST result */
|
|
movl %ebp, %eax
|
|
|
|
post_code(POST_CAR_CPU_CACHE)
|
|
jmp car_init_ret
|