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
430 B
26 lines
430 B
15 years ago
|
/*
|
||
|
* SoC-specific setup info
|
||
|
*
|
||
|
* (C) Copyright 2010,2011
|
||
|
* NVIDIA Corporation <www.nvidia.com>
|
||
|
*
|
||
12 years ago
|
* SPDX-License-Identifier: GPL-2.0+
|
||
15 years ago
|
*/
|
||
|
|
||
|
#include <config.h>
|
||
13 years ago
|
#include <linux/linkage.h>
|
||
15 years ago
|
|
||
|
.align 5
|
||
13 years ago
|
ENTRY(reset_cpu)
|
||
15 years ago
|
ldr r1, rstctl @ get addr for global reset
|
||
|
@ reg
|
||
|
ldr r3, [r1]
|
||
|
orr r3, r3, #0x10
|
||
|
str r3, [r1] @ force reset
|
||
|
mov r0, r0
|
||
|
_loop_forever:
|
||
|
b _loop_forever
|
||
|
rstctl:
|
||
|
.word PRM_RSTCTRL
|
||
13 years ago
|
ENDPROC(reset_cpu)
|