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