/* * linux/arch/arm/mach-pxa/mfp.c * * PXA3xx Multi-Function Pin Support * * Copyright (C) 2007 Marvell Internation Ltd. * * 2007-08-21: eric miao <eric.miao@marvell.com> * initial version * * 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. */ #include <linux/module.h> #include <linux/kernel.h> #include <linux/init.h> #include <linux/io.h> #include <linux/syscore_ops.h> #include <mach/hardware.h> #include "mfp-pxa3xx.h" #include <mach/pxa3xx-regs.h> #ifdef CONFIG_PM /* * Configure the MFPs appropriately for suspend/resume. * FIXME: this should probably depend on which system state we're * entering - for instance, we might not want to place MFP pins in * a pull-down mode if they're an active low chip select, and we're * just entering standby. */
static int pxa3xx_mfp_suspend(void) { mfp_config_lpm(); return 0; }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Russell King | 11 | 78.57% | 1 | 33.33% |
Eric Miao | 2 | 14.29% | 1 | 33.33% |
Rafael J. Wysocki | 1 | 7.14% | 1 | 33.33% |
Total | 14 | 100.00% | 3 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Eric Miao | 16 | 64.00% | 2 | 50.00% |
Russell King | 7 | 28.00% | 1 | 25.00% |
Rafael J. Wysocki | 2 | 8.00% | 1 | 25.00% |
Total | 25 | 100.00% | 4 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Eric Miao | 50 | 52.08% | 6 | 60.00% |
Russell King | 39 | 40.62% | 2 | 20.00% |
Rafael J. Wysocki | 6 | 6.25% | 1 | 10.00% |
Arnd Bergmann | 1 | 1.04% | 1 | 10.00% |
Total | 96 | 100.00% | 10 | 100.00% |