reset.c 605 字节
Newer Older
1 2 3
/* Board-specific reboot/shutdown routines
 * Copyright (c) 2009 Philippe Vachon <philippe@cowpig.ca>
 *
4 5
 * Copyright (C) 2009 Lemote Inc.
 * Author: Wu Zhangjin, wuzhangjin@gmail.com
6
 *
R
Ralf Baechle 已提交
7 8
 * This program is free software; you can redistribute	it and/or modify it
 * under  the terms of	the GNU General	 Public License as published by the
9 10 11 12 13 14
 * Free Software Foundation;  either version 2 of the  License, or (at your
 * option) any later version.
 */

#include <loongson.h>

15
void mach_prepare_reboot(void)
16
{
17 18
	LOONGSON_GENCFG &= ~(1 << 2);
	LOONGSON_GENCFG |= (1 << 2);
19 20
}

21
void mach_prepare_shutdown(void)
22 23
{
}