diff options
author | Dima Zavin <dima@android.com> | 2011-01-10 14:00:30 -0500 |
---|---|---|
committer | David Brown <davidb@codeaurora.org> | 2011-01-24 14:05:01 -0500 |
commit | ba5499ebfb7bc7859039d782099c75d92c394016 (patch) | |
tree | 6932774e48f0f3f19372df5217a79f5afcab1989 /arch/arm/mach-msm | |
parent | 1bae4ce27c9c90344f23c65ea6966c50ffeae2f5 (diff) |
ARM: msm: 7x30: don't force a gpiomux table for the whole arch
This is completely board specific and therefore must be provided
on a per-board basis.
Signed-off-by: Dima Zavin <dima@android.com>
Signed-off-by: David Brown <davidb@codeaurora.org>
Diffstat (limited to 'arch/arm/mach-msm')
-rw-r--r-- | arch/arm/mach-msm/Makefile | 2 | ||||
-rw-r--r-- | arch/arm/mach-msm/board-msm7x30.c | 22 | ||||
-rw-r--r-- | arch/arm/mach-msm/gpiomux-7x30.c | 38 |
3 files changed, 23 insertions, 39 deletions
diff --git a/arch/arm/mach-msm/Makefile b/arch/arm/mach-msm/Makefile index 94195c190e13..f4601256f35f 100644 --- a/arch/arm/mach-msm/Makefile +++ b/arch/arm/mach-msm/Makefile | |||
@@ -30,7 +30,7 @@ obj-$(CONFIG_ARCH_MSM7X30) += board-msm7x30.o devices-msm7x30.o | |||
30 | obj-$(CONFIG_ARCH_QSD8X50) += board-qsd8x50.o devices-qsd8x50.o | 30 | obj-$(CONFIG_ARCH_QSD8X50) += board-qsd8x50.o devices-qsd8x50.o |
31 | obj-$(CONFIG_ARCH_MSM8X60) += board-msm8x60.o | 31 | obj-$(CONFIG_ARCH_MSM8X60) += board-msm8x60.o |
32 | 32 | ||
33 | obj-$(CONFIG_ARCH_MSM7X30) += gpiomux-7x30.o gpiomux-v1.o gpiomux.o | 33 | obj-$(CONFIG_ARCH_MSM7X30) += gpiomux-v1.o gpiomux.o |
34 | obj-$(CONFIG_ARCH_QSD8X50) += gpiomux-8x50.o gpiomux-v1.o gpiomux.o | 34 | obj-$(CONFIG_ARCH_QSD8X50) += gpiomux-8x50.o gpiomux-v1.o gpiomux.o |
35 | obj-$(CONFIG_ARCH_MSM8X60) += gpiomux-8x60.o gpiomux-v2.o gpiomux.o | 35 | obj-$(CONFIG_ARCH_MSM8X60) += gpiomux-8x60.o gpiomux-v2.o gpiomux.o |
36 | ifdef CONFIG_MSM_V2_TLMM | 36 | ifdef CONFIG_MSM_V2_TLMM |
diff --git a/arch/arm/mach-msm/board-msm7x30.c b/arch/arm/mach-msm/board-msm7x30.c index 6f3b9735e970..0707cc041f27 100644 --- a/arch/arm/mach-msm/board-msm7x30.c +++ b/arch/arm/mach-msm/board-msm7x30.c | |||
@@ -36,6 +36,7 @@ | |||
36 | 36 | ||
37 | #include <mach/vreg.h> | 37 | #include <mach/vreg.h> |
38 | #include "devices.h" | 38 | #include "devices.h" |
39 | #include "gpiomux.h" | ||
39 | #include "proc_comm.h" | 40 | #include "proc_comm.h" |
40 | 41 | ||
41 | extern struct sys_timer msm_timer; | 42 | extern struct sys_timer msm_timer; |
@@ -52,6 +53,27 @@ static struct msm_otg_platform_data msm_otg_pdata = { | |||
52 | .otg_control = OTG_PHY_CONTROL, | 53 | .otg_control = OTG_PHY_CONTROL, |
53 | }; | 54 | }; |
54 | 55 | ||
56 | struct msm_gpiomux_config msm_gpiomux_configs[GPIOMUX_NGPIOS] = { | ||
57 | #ifdef CONFIG_SERIAL_MSM_CONSOLE | ||
58 | [49] = { /* UART2 RFR */ | ||
59 | .suspended = GPIOMUX_DRV_2MA | GPIOMUX_PULL_DOWN | | ||
60 | GPIOMUX_FUNC_2 | GPIOMUX_VALID, | ||
61 | }, | ||
62 | [50] = { /* UART2 CTS */ | ||
63 | .suspended = GPIOMUX_DRV_2MA | GPIOMUX_PULL_DOWN | | ||
64 | GPIOMUX_FUNC_2 | GPIOMUX_VALID, | ||
65 | }, | ||
66 | [51] = { /* UART2 RX */ | ||
67 | .suspended = GPIOMUX_DRV_2MA | GPIOMUX_PULL_DOWN | | ||
68 | GPIOMUX_FUNC_2 | GPIOMUX_VALID, | ||
69 | }, | ||
70 | [52] = { /* UART2 TX */ | ||
71 | .suspended = GPIOMUX_DRV_2MA | GPIOMUX_PULL_DOWN | | ||
72 | GPIOMUX_FUNC_2 | GPIOMUX_VALID, | ||
73 | }, | ||
74 | #endif | ||
75 | }; | ||
76 | |||
55 | static struct platform_device *devices[] __initdata = { | 77 | static struct platform_device *devices[] __initdata = { |
56 | #if defined(CONFIG_SERIAL_MSM) || defined(CONFIG_MSM_SERIAL_DEBUGGER) | 78 | #if defined(CONFIG_SERIAL_MSM) || defined(CONFIG_MSM_SERIAL_DEBUGGER) |
57 | &msm_device_uart2, | 79 | &msm_device_uart2, |
diff --git a/arch/arm/mach-msm/gpiomux-7x30.c b/arch/arm/mach-msm/gpiomux-7x30.c deleted file mode 100644 index 6ce41c5241a5..000000000000 --- a/arch/arm/mach-msm/gpiomux-7x30.c +++ /dev/null | |||
@@ -1,38 +0,0 @@ | |||
1 | /* Copyright (c) 2010, Code Aurora Forum. All rights reserved. | ||
2 | * | ||
3 | * This program is free software; you can redistribute it and/or modify | ||
4 | * it under the terms of the GNU General Public License version 2 and | ||
5 | * only version 2 as published by the Free Software Foundation. | ||
6 | * | ||
7 | * This program is distributed in the hope that it will be useful, | ||
8 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
9 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
10 | * GNU General Public License for more details. | ||
11 | * | ||
12 | * You should have received a copy of the GNU General Public License | ||
13 | * along with this program; if not, write to the Free Software | ||
14 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA | ||
15 | * 02110-1301, USA. | ||
16 | */ | ||
17 | #include "gpiomux.h" | ||
18 | |||
19 | struct msm_gpiomux_config msm_gpiomux_configs[GPIOMUX_NGPIOS] = { | ||
20 | #ifdef CONFIG_SERIAL_MSM_CONSOLE | ||
21 | [49] = { /* UART2 RFR */ | ||
22 | .suspended = GPIOMUX_DRV_2MA | GPIOMUX_PULL_DOWN | | ||
23 | GPIOMUX_FUNC_2 | GPIOMUX_VALID, | ||
24 | }, | ||
25 | [50] = { /* UART2 CTS */ | ||
26 | .suspended = GPIOMUX_DRV_2MA | GPIOMUX_PULL_DOWN | | ||
27 | GPIOMUX_FUNC_2 | GPIOMUX_VALID, | ||
28 | }, | ||
29 | [51] = { /* UART2 RX */ | ||
30 | .suspended = GPIOMUX_DRV_2MA | GPIOMUX_PULL_DOWN | | ||
31 | GPIOMUX_FUNC_2 | GPIOMUX_VALID, | ||
32 | }, | ||
33 | [52] = { /* UART2 TX */ | ||
34 | .suspended = GPIOMUX_DRV_2MA | GPIOMUX_PULL_DOWN | | ||
35 | GPIOMUX_FUNC_2 | GPIOMUX_VALID, | ||
36 | }, | ||
37 | #endif | ||
38 | }; | ||