Release 4.14 arch/mips/dec/reset.c
// SPDX-License-Identifier: GPL-2.0
/*
* Reset a DECstation machine.
*
* Copyright (C) 199x the Anonymous
* Copyright (C) 2001, 2002, 2003 Maciej W. Rozycki
*/
#include <linux/interrupt.h>
#include <linux/linkage.h>
#include <asm/addrspace.h>
typedef void __noreturn (* noret_func_t)(void);
static inline void __noreturn back_to_prom(void)
{
noret_func_t func = (void *)CKSEG1ADDR(0x1fc00000);
func();
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Andrew Morton | 22 | 88.00% | 1 | 25.00% |
Robert P. J. Day | 1 | 4.00% | 1 | 25.00% |
Linus Torvalds (pre-git) | 1 | 4.00% | 1 | 25.00% |
Maciej W. Rozycki | 1 | 4.00% | 1 | 25.00% |
Total | 25 | 100.00% | 4 | 100.00% |
void __noreturn dec_machine_restart(char *command)
{
back_to_prom();
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 12 | 92.31% | 1 | 50.00% |
Robert P. J. Day | 1 | 7.69% | 1 | 50.00% |
Total | 13 | 100.00% | 2 | 100.00% |
void __noreturn dec_machine_halt(void)
{
back_to_prom();
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 10 | 90.91% | 1 | 50.00% |
Robert P. J. Day | 1 | 9.09% | 1 | 50.00% |
Total | 11 | 100.00% | 2 | 100.00% |
void __noreturn dec_machine_power_off(void)
{
/* DECstations don't have a software power switch */
back_to_prom();
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 11 | 91.67% | 1 | 50.00% |
Robert P. J. Day | 1 | 8.33% | 1 | 50.00% |
Total | 12 | 100.00% | 2 | 100.00% |
irqreturn_t dec_intr_halt(int irq, void *dev_id)
{
dec_machine_halt();
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds | 14 | 93.33% | 1 | 50.00% |
Andrew Morton | 1 | 6.67% | 1 | 50.00% |
Total | 15 | 100.00% | 2 | 100.00% |
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Andrew Morton | 39 | 39.80% | 1 | 14.29% |
Linus Torvalds (pre-git) | 34 | 34.69% | 1 | 14.29% |
Linus Torvalds | 14 | 14.29% | 1 | 14.29% |
Robert P. J. Day | 5 | 5.10% | 1 | 14.29% |
Ralf Bächle | 4 | 4.08% | 1 | 14.29% |
Maciej W. Rozycki | 1 | 1.02% | 1 | 14.29% |
Greg Kroah-Hartman | 1 | 1.02% | 1 | 14.29% |
Total | 98 | 100.00% | 7 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.