2 * Copyright 2006-2007 Freescale Semiconductor, Inc. All Rights Reserved.
3 * Copyright 2008 Juergen Beisert, kernel@pengutronix.de
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.
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,
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>
27 static struct resource uart0
[] = {
29 .start
= MX2x_UART1_BASE_ADDR
,
30 .end
= MX2x_UART1_BASE_ADDR
+ 0x0B5,
31 .flags
= IORESOURCE_MEM
,
33 .start
= MX2x_INT_UART1
,
34 .end
= MX2x_INT_UART1
,
35 .flags
= IORESOURCE_IRQ
,
39 struct platform_device mxc_uart_device0
= {
43 .num_resources
= ARRAY_SIZE(uart0
),
46 static struct resource uart1
[] = {
48 .start
= MX2x_UART2_BASE_ADDR
,
49 .end
= MX2x_UART2_BASE_ADDR
+ 0x0B5,
50 .flags
= IORESOURCE_MEM
,
52 .start
= MX2x_INT_UART2
,
53 .end
= MX2x_INT_UART2
,
54 .flags
= IORESOURCE_IRQ
,
58 struct platform_device mxc_uart_device1
= {
62 .num_resources
= ARRAY_SIZE(uart1
),
65 static struct resource uart2
[] = {
67 .start
= MX2x_UART3_BASE_ADDR
,
68 .end
= MX2x_UART3_BASE_ADDR
+ 0x0B5,
69 .flags
= IORESOURCE_MEM
,
71 .start
= MX2x_INT_UART3
,
72 .end
= MX2x_INT_UART3
,
73 .flags
= IORESOURCE_IRQ
,
77 struct platform_device mxc_uart_device2
= {
81 .num_resources
= ARRAY_SIZE(uart2
),
84 static struct resource uart3
[] = {
86 .start
= MX2x_UART4_BASE_ADDR
,
87 .end
= MX2x_UART4_BASE_ADDR
+ 0x0B5,
88 .flags
= IORESOURCE_MEM
,
90 .start
= MX2x_INT_UART4
,
91 .end
= MX2x_INT_UART4
,
92 .flags
= IORESOURCE_IRQ
,
96 struct platform_device mxc_uart_device3
= {
100 .num_resources
= ARRAY_SIZE(uart3
),
103 #ifdef CONFIG_MACH_MX27
104 static struct resource uart4
[] = {
106 .start
= MX27_UART5_BASE_ADDR
,
107 .end
= MX27_UART5_BASE_ADDR
+ 0x0B5,
108 .flags
= IORESOURCE_MEM
,
110 .start
= MX27_INT_UART5
,
111 .end
= MX27_INT_UART5
,
112 .flags
= IORESOURCE_IRQ
,
116 struct platform_device mxc_uart_device4
= {
120 .num_resources
= ARRAY_SIZE(uart4
),
123 static struct resource uart5
[] = {
125 .start
= MX27_UART6_BASE_ADDR
,
126 .end
= MX27_UART6_BASE_ADDR
+ 0x0B5,
127 .flags
= IORESOURCE_MEM
,
129 .start
= MX27_INT_UART6
,
130 .end
= MX27_INT_UART6
,
131 .flags
= IORESOURCE_IRQ
,
135 struct platform_device mxc_uart_device5
= {
139 .num_resources
= ARRAY_SIZE(uart5
),