2019-05-29 00:10:04 +07:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2011-06-07 22:02:55 +07:00
|
|
|
/*
|
|
|
|
* Copyright 2011 Calxeda, Inc.
|
|
|
|
*/
|
|
|
|
#include <linux/io.h>
|
|
|
|
#include <asm/proc-fns.h>
|
2013-07-09 06:01:40 +07:00
|
|
|
#include <linux/reboot.h>
|
2011-06-07 22:02:55 +07:00
|
|
|
|
|
|
|
#include "core.h"
|
|
|
|
#include "sysregs.h"
|
|
|
|
|
2013-07-09 06:01:40 +07:00
|
|
|
void highbank_restart(enum reboot_mode mode, const char *cmd)
|
2011-06-07 22:02:55 +07:00
|
|
|
{
|
2013-07-09 06:01:40 +07:00
|
|
|
if (mode == REBOOT_HARD)
|
2012-12-30 23:15:04 +07:00
|
|
|
highbank_set_pwr_hard_reset();
|
2011-06-07 22:02:55 +07:00
|
|
|
else
|
2012-12-30 23:15:04 +07:00
|
|
|
highbank_set_pwr_soft_reset();
|
2011-06-07 22:02:55 +07:00
|
|
|
|
2012-10-26 10:20:37 +07:00
|
|
|
while (1)
|
|
|
|
cpu_do_idle();
|
2011-06-07 22:02:55 +07:00
|
|
|
}
|
|
|
|
|