/* * linux/arch/arm/mach-pxa/generic.c * * Author: Nicolas Pitre * Created: Jun 15, 2001 * Copyright: MontaVista Software Inc. * * Code common to all PXA machines. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. * * Since this file should be linked before any other machine specific file, * the __initcall() here will be executed first. This serves as default * initialization stuff for PXA machines which can be overridden later if * need be. */ #include <linux/gpio.h> #include <linux/module.h> #include <linux/kernel.h> #include <linux/init.h> #include <mach/hardware.h> #include <asm/mach/map.h> #include <asm/mach-types.h> #include <mach/irqs.h> #include <mach/reset.h> #include <mach/smemc.h> #include <mach/pxa3xx-regs.h> #include "generic.h" #include <clocksource/pxa.h>
void clear_reset_status(unsigned int mask) { if (cpu_is_pxa2xx()) pxa2xx_clear_reset_status(mask); else { /* RESET_STATUS_* has a 1:1 mapping with ARSR */ ARSR = mask; } }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Eric Miao | 21 | 77.78% | 1 | 50.00% |
Haojian Zhuang | 6 | 22.22% | 1 | 50.00% |
Total | 27 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Robert Jarzmik | 41 | 97.62% | 3 | 75.00% |
Arnd Bergmann | 1 | 2.38% | 1 | 25.00% |
Total | 42 | 100.00% | 4 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Russell King | 26 | 74.29% | 1 | 33.33% |
Eric Miao | 8 | 22.86% | 1 | 33.33% |
Haojian Zhuang | 1 | 2.86% | 1 | 33.33% |
Total | 35 | 100.00% | 3 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Nico Pitre | 11 | 57.89% | 1 | 16.67% |
Russell King | 3 | 15.79% | 3 | 50.00% |
Andrew Ruder | 3 | 15.79% | 1 | 16.67% |
Marek Vašut | 2 | 10.53% | 1 | 16.67% |
Total | 19 | 100.00% | 6 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Robert Jarzmik | 48 | 22.86% | 3 | 12.00% |
Nico Pitre | 45 | 21.43% | 3 | 12.00% |
Russell King | 39 | 18.57% | 6 | 24.00% |
Eric Miao | 33 | 15.71% | 4 | 16.00% |
Deepak Saxena | 16 | 7.62% | 1 | 4.00% |
Haojian Zhuang | 10 | 4.76% | 2 | 8.00% |
Marek Vašut | 7 | 3.33% | 2 | 8.00% |
Laurent Pinchart | 7 | 3.33% | 1 | 4.00% |
Andrew Ruder | 3 | 1.43% | 1 | 4.00% |
Steven Cole | 1 | 0.48% | 1 | 4.00% |
Arnd Bergmann | 1 | 0.48% | 1 | 4.00% |
Total | 210 | 100.00% | 25 | 100.00% |