cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

reset.c (391B)


      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
     11void mach_prepare_reboot(void)
     12{
     13	LOONGSON_GENCFG &= ~(1 << 2);
     14	LOONGSON_GENCFG |= (1 << 2);
     15}
     16
     17void mach_prepare_shutdown(void)
     18{
     19}