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