/* * IP32 basic setup * * 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) 2000 Harald Koerfgen * Copyright (C) 2002, 2003, 2005 Ilya A. Volynets * Copyright (C) 2006 Ralf Baechle <ralf@linux-mips.org> */ #include <linux/console.h> #include <linux/init.h> #include <linux/interrupt.h> #include <linux/mc146818rtc.h> #include <linux/param.h> #include <linux/sched.h> #include <asm/bootinfo.h> #include <asm/mc146818-time.h> #include <asm/mipsregs.h> #include <asm/mmu_context.h> #include <asm/sgialib.h> #include <asm/time.h> #include <asm/traps.h> #include <asm/io.h> #include <asm/ip32/crime.h> #include <asm/ip32/mace.h> #include <asm/ip32/ip32_ints.h> extern void ip32_be_init(void); extern void crime_init(void); #ifdef CONFIG_SGI_O2MACE_ETH /* * This is taken care of in here 'cause they say using Arc later on is * problematic */ extern char o2meth_eaddr[8];
static inline unsigned char str2hexnum(unsigned char c) { if (c >= '0' && c <= '9') return c - '0'; if (c >= 'a' && c <= 'f') return c - 'a' + 10; return 0; /* foo */ }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Ralf Bächle | 48 | 100.00% | 1 | 100.00% |
Total | 48 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Ralf Bächle | 67 | 85.90% | 1 | 50.00% |
Linus Torvalds | 11 | 14.10% | 1 | 50.00% |
Total | 78 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Andrew Morton | 50 | 86.21% | 1 | 33.33% |
Ralf Bächle | 8 | 13.79% | 2 | 66.67% |
Total | 58 | 100.00% | 3 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Andrew Morton | 82 | 70.09% | 2 | 28.57% |
Ralf Bächle | 23 | 19.66% | 3 | 42.86% |
Linus Torvalds | 11 | 9.40% | 1 | 14.29% |
Dmitri Vorobiev | 1 | 0.85% | 1 | 14.29% |
Total | 117 | 100.00% | 7 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Andrew Morton | 172 | 44.68% | 2 | 20.00% |
Ralf Bächle | 162 | 42.08% | 6 | 60.00% |
Linus Torvalds | 50 | 12.99% | 1 | 10.00% |
Dmitri Vorobiev | 1 | 0.26% | 1 | 10.00% |
Total | 385 | 100.00% | 10 | 100.00% |