diff options
author | Uwe Kleine-König <u.kleine-koenig@pengutronix.de> | 2010-06-10 11:34:59 -0400 |
---|---|---|
committer | Uwe Kleine-König <u.kleine-koenig@pengutronix.de> | 2010-06-24 09:40:41 -0400 |
commit | e9ec2a17eea971f1af91a37a1c685afad0f5a8b4 (patch) | |
tree | ec3ce4a2fda3ee46762ed2ea5980c46436c5b3c4 /arch/arm/mach-imx | |
parent | 9a763bfbe45d8d4afe953993907188322a49a4ec (diff) |
ARM: imx: fold serial.c into devices.c
... and use cpp magic to reduce repetition.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Diffstat (limited to 'arch/arm/mach-imx')
-rw-r--r-- | arch/arm/mach-imx/Makefile | 2 | ||||
-rw-r--r-- | arch/arm/mach-imx/devices.c | 32 | ||||
-rw-r--r-- | arch/arm/mach-imx/serial.c | 141 |
3 files changed, 33 insertions, 142 deletions
diff --git a/arch/arm/mach-imx/Makefile b/arch/arm/mach-imx/Makefile index 068f4937debd..9d57ba65d973 100644 --- a/arch/arm/mach-imx/Makefile +++ b/arch/arm/mach-imx/Makefile | |||
@@ -4,7 +4,7 @@ | |||
4 | 4 | ||
5 | # Object file lists. | 5 | # Object file lists. |
6 | 6 | ||
7 | obj-y := devices.o serial.o | 7 | obj-y := devices.o |
8 | 8 | ||
9 | obj-$(CONFIG_MACH_MX21) += clock-imx21.o mm-imx21.o | 9 | obj-$(CONFIG_MACH_MX21) += clock-imx21.o mm-imx21.o |
10 | 10 | ||
diff --git a/arch/arm/mach-imx/devices.c b/arch/arm/mach-imx/devices.c index e708bfd9aabc..08ae763d9db0 100644 --- a/arch/arm/mach-imx/devices.c +++ b/arch/arm/mach-imx/devices.c | |||
@@ -32,11 +32,13 @@ | |||
32 | #include <linux/platform_device.h> | 32 | #include <linux/platform_device.h> |
33 | #include <linux/gpio.h> | 33 | #include <linux/gpio.h> |
34 | #include <linux/dma-mapping.h> | 34 | #include <linux/dma-mapping.h> |
35 | #include <linux/serial.h> | ||
35 | 36 | ||
36 | #include <mach/irqs.h> | 37 | #include <mach/irqs.h> |
37 | #include <mach/hardware.h> | 38 | #include <mach/hardware.h> |
38 | #include <mach/common.h> | 39 | #include <mach/common.h> |
39 | #include <mach/mmc.h> | 40 | #include <mach/mmc.h> |
41 | #include <mach/imx-uart.h> | ||
40 | 42 | ||
41 | #include "devices.h" | 43 | #include "devices.h" |
42 | 44 | ||
@@ -424,6 +426,36 @@ struct platform_device mxc_usbh2 = { | |||
424 | DEFINE_IMX_SSI_DEVICE(0, 1, MX2x_SSI1_BASE_ADDR, MX2x_INT_SSI1); | 426 | DEFINE_IMX_SSI_DEVICE(0, 1, MX2x_SSI1_BASE_ADDR, MX2x_INT_SSI1); |
425 | DEFINE_IMX_SSI_DEVICE(1, 2, MX2x_SSI1_BASE_ADDR, MX2x_INT_SSI1); | 427 | DEFINE_IMX_SSI_DEVICE(1, 2, MX2x_SSI1_BASE_ADDR, MX2x_INT_SSI1); |
426 | 428 | ||
429 | #define DEFINE_IMX_UART_DEVICE(n, baseaddr, irq) \ | ||
430 | static struct resource imx2x_uart_resources ## n[] = { \ | ||
431 | { \ | ||
432 | .start = baseaddr, \ | ||
433 | .end = baseaddr + 0xb5, \ | ||
434 | .flags = IORESOURCE_MEM, \ | ||
435 | }, { \ | ||
436 | .start = irq, \ | ||
437 | .end = irq, \ | ||
438 | .flags = IORESOURCE_IRQ, \ | ||
439 | }, \ | ||
440 | }; \ | ||
441 | \ | ||
442 | struct platform_device mxc_uart_device ## n = { \ | ||
443 | .name = "imx-uart", \ | ||
444 | .id = n, \ | ||
445 | .num_resources = ARRAY_SIZE(imx2x_uart_resources ## n), \ | ||
446 | .resource = imx2x_uart_resources ## n, \ | ||
447 | } | ||
448 | |||
449 | DEFINE_IMX_UART_DEVICE(0, MX2x_UART1_BASE_ADDR, MX2x_INT_UART1); | ||
450 | DEFINE_IMX_UART_DEVICE(1, MX2x_UART2_BASE_ADDR, MX2x_INT_UART2); | ||
451 | DEFINE_IMX_UART_DEVICE(2, MX2x_UART3_BASE_ADDR, MX2x_INT_UART3); | ||
452 | DEFINE_IMX_UART_DEVICE(3, MX2x_UART4_BASE_ADDR, MX2x_INT_UART4); | ||
453 | |||
454 | #ifdef CONFIG_MACH_MX27 | ||
455 | DEFINE_IMX_UART_DEVICE(4, MX27_UART5_BASE_ADDR, MX27_INT_UART5); | ||
456 | DEFINE_IMX_UART_DEVICE(5, MX27_UART6_BASE_ADDR, MX27_INT_UART6); | ||
457 | #endif | ||
458 | |||
427 | /* GPIO port description */ | 459 | /* GPIO port description */ |
428 | #define DEFINE_MXC_GPIO_PORT_IRQ(SOC, n, _irq) \ | 460 | #define DEFINE_MXC_GPIO_PORT_IRQ(SOC, n, _irq) \ |
429 | { \ | 461 | { \ |
diff --git a/arch/arm/mach-imx/serial.c b/arch/arm/mach-imx/serial.c deleted file mode 100644 index 1c0c835b2252..000000000000 --- a/arch/arm/mach-imx/serial.c +++ /dev/null | |||
@@ -1,141 +0,0 @@ | |||
1 | /* | ||
2 | * Copyright 2006-2007 Freescale Semiconductor, Inc. All Rights Reserved. | ||
3 | * Copyright 2008 Juergen Beisert, kernel@pengutronix.de | ||
4 | * | ||
5 | * This program is free software; you can redistribute it and/or | ||
6 | * modify it under the terms of the GNU General Public License | ||
7 | * as published by the Free Software Foundation; either version 2 | ||
8 | * of the License, or (at your option) any later version. | ||
9 | * This program is distributed in the hope that it will be useful, | ||
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
12 | * GNU General Public License for more details. | ||
13 | * | ||
14 | * You should have received a copy of the GNU General Public License | ||
15 | * along with this program; if not, write to the Free Software | ||
16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, | ||
17 | * MA 02110-1301, USA. | ||
18 | */ | ||
19 | |||
20 | #include <linux/module.h> | ||
21 | #include <linux/platform_device.h> | ||
22 | #include <linux/serial.h> | ||
23 | #include <mach/hardware.h> | ||
24 | #include <mach/imx-uart.h> | ||
25 | #include "devices.h" | ||
26 | |||
27 | static struct resource uart0[] = { | ||
28 | { | ||
29 | .start = MX2x_UART1_BASE_ADDR, | ||
30 | .end = MX2x_UART1_BASE_ADDR + 0x0B5, | ||
31 | .flags = IORESOURCE_MEM, | ||
32 | }, { | ||
33 | .start = MX2x_INT_UART1, | ||
34 | .end = MX2x_INT_UART1, | ||
35 | .flags = IORESOURCE_IRQ, | ||
36 | }, | ||
37 | }; | ||
38 | |||
39 | struct platform_device mxc_uart_device0 = { | ||
40 | .name = "imx-uart", | ||
41 | .id = 0, | ||
42 | .resource = uart0, | ||
43 | .num_resources = ARRAY_SIZE(uart0), | ||
44 | }; | ||
45 | |||
46 | static struct resource uart1[] = { | ||
47 | { | ||
48 | .start = MX2x_UART2_BASE_ADDR, | ||
49 | .end = MX2x_UART2_BASE_ADDR + 0x0B5, | ||
50 | .flags = IORESOURCE_MEM, | ||
51 | }, { | ||
52 | .start = MX2x_INT_UART2, | ||
53 | .end = MX2x_INT_UART2, | ||
54 | .flags = IORESOURCE_IRQ, | ||
55 | }, | ||
56 | }; | ||
57 | |||
58 | struct platform_device mxc_uart_device1 = { | ||
59 | .name = "imx-uart", | ||
60 | .id = 1, | ||
61 | .resource = uart1, | ||
62 | .num_resources = ARRAY_SIZE(uart1), | ||
63 | }; | ||
64 | |||
65 | static struct resource uart2[] = { | ||
66 | { | ||
67 | .start = MX2x_UART3_BASE_ADDR, | ||
68 | .end = MX2x_UART3_BASE_ADDR + 0x0B5, | ||
69 | .flags = IORESOURCE_MEM, | ||
70 | }, { | ||
71 | .start = MX2x_INT_UART3, | ||
72 | .end = MX2x_INT_UART3, | ||
73 | .flags = IORESOURCE_IRQ, | ||
74 | }, | ||
75 | }; | ||
76 | |||
77 | struct platform_device mxc_uart_device2 = { | ||
78 | .name = "imx-uart", | ||
79 | .id = 2, | ||
80 | .resource = uart2, | ||
81 | .num_resources = ARRAY_SIZE(uart2), | ||
82 | }; | ||
83 | |||
84 | static struct resource uart3[] = { | ||
85 | { | ||
86 | .start = MX2x_UART4_BASE_ADDR, | ||
87 | .end = MX2x_UART4_BASE_ADDR + 0x0B5, | ||
88 | .flags = IORESOURCE_MEM, | ||
89 | }, { | ||
90 | .start = MX2x_INT_UART4, | ||
91 | .end = MX2x_INT_UART4, | ||
92 | .flags = IORESOURCE_IRQ, | ||
93 | }, | ||
94 | }; | ||
95 | |||
96 | struct platform_device mxc_uart_device3 = { | ||
97 | .name = "imx-uart", | ||
98 | .id = 3, | ||
99 | .resource = uart3, | ||
100 | .num_resources = ARRAY_SIZE(uart3), | ||
101 | }; | ||
102 | |||
103 | #ifdef CONFIG_MACH_MX27 | ||
104 | static struct resource uart4[] = { | ||
105 | { | ||
106 | .start = MX27_UART5_BASE_ADDR, | ||
107 | .end = MX27_UART5_BASE_ADDR + 0x0B5, | ||
108 | .flags = IORESOURCE_MEM, | ||
109 | }, { | ||
110 | .start = MX27_INT_UART5, | ||
111 | .end = MX27_INT_UART5, | ||
112 | .flags = IORESOURCE_IRQ, | ||
113 | }, | ||
114 | }; | ||
115 | |||
116 | struct platform_device mxc_uart_device4 = { | ||
117 | .name = "imx-uart", | ||
118 | .id = 4, | ||
119 | .resource = uart4, | ||
120 | .num_resources = ARRAY_SIZE(uart4), | ||
121 | }; | ||
122 | |||
123 | static struct resource uart5[] = { | ||
124 | { | ||
125 | .start = MX27_UART6_BASE_ADDR, | ||
126 | .end = MX27_UART6_BASE_ADDR + 0x0B5, | ||
127 | .flags = IORESOURCE_MEM, | ||
128 | }, { | ||
129 | .start = MX27_INT_UART6, | ||
130 | .end = MX27_INT_UART6, | ||
131 | .flags = IORESOURCE_IRQ, | ||
132 | }, | ||
133 | }; | ||
134 | |||
135 | struct platform_device mxc_uart_device5 = { | ||
136 | .name = "imx-uart", | ||
137 | .id = 5, | ||
138 | .resource = uart5, | ||
139 | .num_resources = ARRAY_SIZE(uart5), | ||
140 | }; | ||
141 | #endif | ||