cregit-Linux how code gets into the kernel

Release 4.8 arch/mips/mti-sead3/sead3-reset.c

/*
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file "COPYING" in the main directory of this archive
 * for more details.
 *
 * Copyright (C) 2012 MIPS Technologies, Inc.  All rights reserved.
 */
#include <linux/io.h>
#include <linux/pm.h>

#include <asm/reboot.h>


#define SOFTRES_REG	0x1f000050

#define GORESET		0x4d


static void mips_machine_restart(char *command) { unsigned int __iomem *softres_reg = ioremap(SOFTRES_REG, sizeof(unsigned int)); __raw_writel(GORESET, softres_reg); }

Contributors

PersonTokensPropCommitsCommitProp
steven j. hillsteven j. hill34100.00%1100.00%
Total34100.00%1100.00%


static void mips_machine_halt(void) { unsigned int __iomem *softres_reg = ioremap(SOFTRES_REG, sizeof(unsigned int)); __raw_writel(GORESET, softres_reg); }

Contributors

PersonTokensPropCommitsCommitProp
steven j. hillsteven j. hill32100.00%1100.00%
Total32100.00%1100.00%


static int __init mips_reboot_setup(void) { _machine_restart = mips_machine_restart; _machine_halt = mips_machine_halt; pm_power_off = mips_machine_halt; return 0; }

Contributors

PersonTokensPropCommitsCommitProp
steven j. hillsteven j. hill24100.00%1100.00%
Total24100.00%1100.00%

arch_initcall(mips_reboot_setup);

Overall Contributors

PersonTokensPropCommitsCommitProp
steven j. hillsteven j. hill113100.00%2100.00%
Total113100.00%2100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.