2019-05-27 06:55:01 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2009-07-02 15:26:45 +00:00
|
|
|
/* Board-specific reboot/shutdown routines
|
|
|
|
* Copyright (c) 2009 Philippe Vachon <philippe@cowpig.ca>
|
|
|
|
*
|
2010-01-04 09:16:51 +00:00
|
|
|
* Copyright (C) 2009 Lemote Inc.
|
|
|
|
* Author: Wu Zhangjin, wuzhangjin@gmail.com
|
2009-07-02 15:26:08 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <loongson.h>
|
|
|
|
|
2009-07-02 15:26:45 +00:00
|
|
|
void mach_prepare_reboot(void)
|
2009-07-02 15:26:08 +00:00
|
|
|
{
|
2009-10-16 06:17:19 +00:00
|
|
|
LOONGSON_GENCFG &= ~(1 << 2);
|
|
|
|
LOONGSON_GENCFG |= (1 << 2);
|
2009-07-02 15:26:08 +00:00
|
|
|
}
|
|
|
|
|
2009-07-02 15:26:45 +00:00
|
|
|
void mach_prepare_shutdown(void)
|
2009-07-02 15:26:08 +00:00
|
|
|
{
|
|
|
|
}
|