upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
453 B
26 lines
453 B
/*
|
|
* 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
|
|
|