reset.c 641 字节
Newer Older
1 2 3 4 5 6
/* Board-specific reboot/shutdown routines
 * Copyright (c) 2009 Philippe Vachon <philippe@cowpig.ca>
 *
 * Copyright (C) 2009 Lemote Inc. & Insititute of Computing Technology
 * Author: Wu Zhangjin, wuzj@lemote.com
 *
7 8 9 10 11 12 13 14
 * 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
 * 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 19 20
{
	BONITO_BONGENCFG &= ~(1 << 2);
	BONITO_BONGENCFG |= (1 << 2);
}

21
void mach_prepare_shutdown(void)
22 23
{
}