summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-highbank/reset.c
blob: b9664e41bb77b98179890832257b7ecfdd47fc27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
 * Copyright (C) 2013 Jean-Christophe PLAGNIOL-VILLARD <plagnio@jcrosoft.com>
 *
 * GPLv2 only
 */

#include <common.h>
#include <io.h>

#include <mach/devices.h>
#include <mach/sysregs.h>

void __noreturn reset_cpu(ulong addr)
{
	hingbank_set_pwr_hard_reset();
	asm("	wfi");

	while(1);
}

void __noreturn poweroff()
{
	shutdown_barebox();

	hingbank_set_pwr_shutdown();
	asm("	wfi");

	while(1);
}