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.
29 lines
529 B
29 lines
529 B
/*
|
|
* Copyright (c) 2014 Google, Inc
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
.globl early_board_init
|
|
early_board_init:
|
|
/* Enable post codes to EC */
|
|
#ifdef CONFIG_EARLY_POST_CROS_EC
|
|
mov $0x1b, %ecx
|
|
rdmsr
|
|
and $0x100, %eax
|
|
test %eax, %eax
|
|
je 1f
|
|
|
|
mov $0x8000f8f0, %eax
|
|
mov $0xcf8, %dx
|
|
out %eax, (%dx)
|
|
mov $0xfed1c001, %eax
|
|
mov $0xcfc, %dx
|
|
out %eax, (%dx)
|
|
mov $0xfed1f410, %esp
|
|
mov (%esp), %eax
|
|
and $0xfffffffb, %eax
|
|
mov %eax, (%esp)
|
|
1:
|
|
#endif
|
|
jmp early_board_init_ret
|
|
|