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.
30 lines
719 B
30 lines
719 B
19 years ago
|
/*
|
||
|
* armboot - Startup Code for ARM926EJS CPU-core
|
||
|
*
|
||
|
* Copyright (c) 2003 Texas Instruments
|
||
|
*
|
||
|
* ----- Adapted for OMAP1610 OMAP730 from ARM925t code ------
|
||
|
*
|
||
13 years ago
|
* Copyright (c) 2001 Marius Gröger <mag@sysgo.de>
|
||
|
* Copyright (c) 2002 Alex Züpke <azu@sysgo.de>
|
||
16 years ago
|
* Copyright (c) 2002 Gary Jennejohn <garyj@denx.de>
|
||
19 years ago
|
* Copyright (c) 2003 Richard Woodruff <r-woodruff2@ti.com>
|
||
|
* Copyright (c) 2003 Kshitij <kshitij@ti.com>
|
||
|
*
|
||
12 years ago
|
* SPDX-License-Identifier: GPL-2.0+
|
||
19 years ago
|
*/
|
||
|
|
||
|
.align 5
|
||
|
.globl reset_cpu
|
||
|
reset_cpu:
|
||
|
ldr r1, rstctl1 /* get clkm1 reset ctl */
|
||
|
mov r3, #0x0
|
||
|
strh r3, [r1] /* clear it */
|
||
|
mov r3, #0x8
|
||
|
strh r3, [r1] /* force dsp+arm reset */
|
||
|
_loop_forever:
|
||
|
b _loop_forever
|
||
|
|
||
|
rstctl1:
|
||
|
.word 0xfffece10
|