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.
21 lines
370 B
21 lines
370 B
9 years ago
|
/*
|
||
|
* Save nvtboot-related boot-time CPU state
|
||
|
*
|
||
|
* (C) Copyright 2015-2016 NVIDIA Corporation <www.nvidia.com>
|
||
|
*
|
||
|
* SPDX-License-Identifier: GPL-2.0+
|
||
|
*/
|
||
|
|
||
|
#include <config.h>
|
||
|
#include <linux/linkage.h>
|
||
|
|
||
|
.globl nvtboot_boot_x0
|
||
|
nvtboot_boot_x0:
|
||
|
.dword 0
|
||
|
|
||
|
ENTRY(save_boot_params)
|
||
|
adr x8, nvtboot_boot_x0
|
||
|
str x0, [x8]
|
||
|
b save_boot_params_ret
|
||
|
ENDPROC(save_boot_params)
|