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.
33 lines
566 B
33 lines
566 B
15 years ago
|
/*
|
||
|
* Copyright (c) 2009 Samsung Electronics.
|
||
|
* Minkyu Kang <mk7.kang@samsung.com>
|
||
|
*
|
||
11 years ago
|
* SPDX-License-Identifier: GPL-2.0+
|
||
15 years ago
|
*/
|
||
|
|
||
|
#include <asm/arch/cpu.h>
|
||
13 years ago
|
#include <linux/linkage.h>
|
||
15 years ago
|
|
||
|
#define S5PC100_SWRESET 0xE0200000
|
||
|
#define S5PC110_SWRESET 0xE0102000
|
||
|
|
||
13 years ago
|
ENTRY(reset_cpu)
|
||
14 years ago
|
ldr r1, =S5PC100_PRO_ID
|
||
15 years ago
|
ldr r2, [r1]
|
||
|
ldr r4, =0x00010000
|
||
|
and r4, r2, r4
|
||
|
cmp r4, #0
|
||
|
bne 110f
|
||
|
/* S5PC100 */
|
||
|
ldr r1, =S5PC100_SWRESET
|
||
|
ldr r2, =0xC100
|
||
|
b 200f
|
||
|
110: /* S5PC110 */
|
||
|
ldr r1, =S5PC110_SWRESET
|
||
|
mov r2, #1
|
||
|
200:
|
||
|
str r2, [r1]
|
||
|
_loop_forever:
|
||
|
b _loop_forever
|
||
13 years ago
|
ENDPROC(reset_cpu)
|