void
cpu_reset(void)
{

	psci_reset();

	printf("cpu_reset failed");
	while(1)
		__asm volatile("wfi" ::: "memory");
}
Exemple #2
0
void
cpu_reset(void)
{

#ifdef DEV_PSCI
	psci_reset();
#endif

	printf("cpu_reset failed");
	while(1)
		__asm volatile("wfi" ::: "memory");
}