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