1 // SPDX-License-Identifier: GPL-2.0-or-later 2 /* Board-specific reboot/shutdown routines 3 * Copyright (c) 2009 Philippe Vachon <philippe@cowpig.ca> 4 * 5 * Copyright (C) 2009 Lemote Inc. 6 * Author: Wu Zhangjin, wuzhangjin@gmail.com 7 */ 8 9 #include <loongson.h> 10 11 void mach_prepare_reboot(void) 12 { 13 LOONGSON_GENCFG &= ~(1 << 2); 14 LOONGSON_GENCFG |= (1 << 2); 15 } 16 17 void mach_prepare_shutdown(void) 18 { 19 } 20
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.