blob: d3e39206010fbdc378aca3f66040c76f27d77d55 [file] [log] [blame]
John Rigbybe72e0c2011-04-19 10:42:40 +00001/*
2 * (C) Copyright 2011 ST-Ericsson
3 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02004 * SPDX-License-Identifier: GPL-2.0+
John Rigbybe72e0c2011-04-19 10:42:40 +00005 */
6
7#include <config.h>
Aneesh V74236ac2012-03-08 07:20:18 +00008#include <linux/linkage.h>
John Rigbybe72e0c2011-04-19 10:42:40 +00009
Aneesh V74236ac2012-03-08 07:20:18 +000010ENTRY(lowlevel_init)
John Rigbybe72e0c2011-04-19 10:42:40 +000011 mov pc, lr
Aneesh V74236ac2012-03-08 07:20:18 +000012ENDPROC(lowlevel_init)
John Rigbybe72e0c2011-04-19 10:42:40 +000013
14 .align 5
Aneesh V74236ac2012-03-08 07:20:18 +000015ENTRY(reset_cpu)
Wolfgang Denk4c964082011-06-02 23:18:32 +020016 ldr r0, =CFG_PRCMU_BASE
17 ldr r1, =0x1
18 str r1, [r0, #0x228]
John Rigbybe72e0c2011-04-19 10:42:40 +000019_loop_forever:
20 b _loop_forever
Aneesh V74236ac2012-03-08 07:20:18 +000021ENDPROC(reset_cpu)