| 
									
										
										
										
											2010-06-22 14:49:20 +02:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright (C) 2009-2010 Pengutronix | 
					
						
							|  |  |  |  * Uwe Kleine-Koenig <u.kleine-koenig@pengutronix.de> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * 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. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2012-09-14 14:14:45 +08:00
										 |  |  | #include "../hardware.h"
 | 
					
						
							| 
									
										
										
										
											2012-09-13 15:51:15 +08:00
										 |  |  | #include "devices-common.h"
 | 
					
						
							| 
									
										
										
										
											2010-06-22 14:49:20 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-10 22:57:24 +02:00
										 |  |  | #define imx_imx_uart_3irq_data_entry(soc, _id, _hwid, _size)		\
 | 
					
						
							|  |  |  | 	[_id] = {							\ | 
					
						
							|  |  |  | 		.id = _id,						\ | 
					
						
							|  |  |  | 		.iobase = soc ## _UART ## _hwid ## _BASE_ADDR,		\ | 
					
						
							|  |  |  | 		.iosize = _size,					\ | 
					
						
							|  |  |  | 		.irqrx = soc ## _INT_UART ## _hwid ## RX,		\ | 
					
						
							|  |  |  | 		.irqtx = soc ## _INT_UART ## _hwid ## TX,		\ | 
					
						
							|  |  |  | 		.irqrts = soc ## _INT_UART ## _hwid ## RTS,		\ | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define imx_imx_uart_1irq_data_entry(soc, _id, _hwid, _size)		\
 | 
					
						
							|  |  |  | 	[_id] = {							\ | 
					
						
							|  |  |  | 		.id = _id,						\ | 
					
						
							|  |  |  | 		.iobase = soc ## _UART ## _hwid ## _BASE_ADDR,		\ | 
					
						
							|  |  |  | 		.iosize = _size,					\ | 
					
						
							|  |  |  | 		.irq = soc ## _INT_UART ## _hwid,			\ | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef CONFIG_SOC_IMX1
 | 
					
						
							|  |  |  | const struct imx_imx_uart_3irq_data imx1_imx_uart_data[] __initconst = { | 
					
						
							|  |  |  | #define imx1_imx_uart_data_entry(_id, _hwid)				\
 | 
					
						
							|  |  |  | 	imx_imx_uart_3irq_data_entry(MX1, _id, _hwid, 0xd0) | 
					
						
							|  |  |  | 	imx1_imx_uart_data_entry(0, 1), | 
					
						
							|  |  |  | 	imx1_imx_uart_data_entry(1, 2), | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | #endif /* ifdef CONFIG_SOC_IMX1 */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef CONFIG_SOC_IMX21
 | 
					
						
							|  |  |  | const struct imx_imx_uart_1irq_data imx21_imx_uart_data[] __initconst = { | 
					
						
							|  |  |  | #define imx21_imx_uart_data_entry(_id, _hwid)				\
 | 
					
						
							|  |  |  | 	imx_imx_uart_1irq_data_entry(MX21, _id, _hwid, SZ_4K) | 
					
						
							|  |  |  | 	imx21_imx_uart_data_entry(0, 1), | 
					
						
							|  |  |  | 	imx21_imx_uart_data_entry(1, 2), | 
					
						
							|  |  |  | 	imx21_imx_uart_data_entry(2, 3), | 
					
						
							|  |  |  | 	imx21_imx_uart_data_entry(3, 4), | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-11 18:35:01 +01:00
										 |  |  | #ifdef CONFIG_SOC_IMX25
 | 
					
						
							| 
									
										
										
										
											2010-08-10 22:57:24 +02:00
										 |  |  | const struct imx_imx_uart_1irq_data imx25_imx_uart_data[] __initconst = { | 
					
						
							|  |  |  | #define imx25_imx_uart_data_entry(_id, _hwid)				\
 | 
					
						
							|  |  |  | 	imx_imx_uart_1irq_data_entry(MX25, _id, _hwid, SZ_16K) | 
					
						
							|  |  |  | 	imx25_imx_uart_data_entry(0, 1), | 
					
						
							|  |  |  | 	imx25_imx_uart_data_entry(1, 2), | 
					
						
							|  |  |  | 	imx25_imx_uart_data_entry(2, 3), | 
					
						
							|  |  |  | 	imx25_imx_uart_data_entry(3, 4), | 
					
						
							|  |  |  | 	imx25_imx_uart_data_entry(4, 5), | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2010-11-11 18:35:01 +01:00
										 |  |  | #endif /* ifdef CONFIG_SOC_IMX25 */
 | 
					
						
							| 
									
										
										
										
											2010-08-10 22:57:24 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifdef CONFIG_SOC_IMX27
 | 
					
						
							|  |  |  | const struct imx_imx_uart_1irq_data imx27_imx_uart_data[] __initconst = { | 
					
						
							|  |  |  | #define imx27_imx_uart_data_entry(_id, _hwid)				\
 | 
					
						
							|  |  |  | 	imx_imx_uart_1irq_data_entry(MX27, _id, _hwid, SZ_4K) | 
					
						
							|  |  |  | 	imx27_imx_uart_data_entry(0, 1), | 
					
						
							|  |  |  | 	imx27_imx_uart_data_entry(1, 2), | 
					
						
							|  |  |  | 	imx27_imx_uart_data_entry(2, 3), | 
					
						
							|  |  |  | 	imx27_imx_uart_data_entry(3, 4), | 
					
						
							|  |  |  | 	imx27_imx_uart_data_entry(4, 5), | 
					
						
							|  |  |  | 	imx27_imx_uart_data_entry(5, 6), | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | #endif /* ifdef CONFIG_SOC_IMX27 */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-12 10:11:42 +01:00
										 |  |  | #ifdef CONFIG_SOC_IMX31
 | 
					
						
							| 
									
										
										
										
											2010-08-10 22:57:24 +02:00
										 |  |  | const struct imx_imx_uart_1irq_data imx31_imx_uart_data[] __initconst = { | 
					
						
							|  |  |  | #define imx31_imx_uart_data_entry(_id, _hwid)				\
 | 
					
						
							|  |  |  | 	imx_imx_uart_1irq_data_entry(MX31, _id, _hwid, SZ_4K) | 
					
						
							|  |  |  | 	imx31_imx_uart_data_entry(0, 1), | 
					
						
							|  |  |  | 	imx31_imx_uart_data_entry(1, 2), | 
					
						
							|  |  |  | 	imx31_imx_uart_data_entry(2, 3), | 
					
						
							|  |  |  | 	imx31_imx_uart_data_entry(3, 4), | 
					
						
							|  |  |  | 	imx31_imx_uart_data_entry(4, 5), | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2010-11-12 10:11:42 +01:00
										 |  |  | #endif /* ifdef CONFIG_SOC_IMX31 */
 | 
					
						
							| 
									
										
										
										
											2010-08-10 22:57:24 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-12 10:11:42 +01:00
										 |  |  | #ifdef CONFIG_SOC_IMX35
 | 
					
						
							| 
									
										
										
										
											2010-08-10 22:57:24 +02:00
										 |  |  | const struct imx_imx_uart_1irq_data imx35_imx_uart_data[] __initconst = { | 
					
						
							|  |  |  | #define imx35_imx_uart_data_entry(_id, _hwid)				\
 | 
					
						
							| 
									
										
										
										
											2012-09-10 09:19:35 +00:00
										 |  |  | 	imx_imx_uart_1irq_data_entry(MX35, _id, _hwid, SZ_16K) | 
					
						
							| 
									
										
										
										
											2010-08-10 22:57:24 +02:00
										 |  |  | 	imx35_imx_uart_data_entry(0, 1), | 
					
						
							|  |  |  | 	imx35_imx_uart_data_entry(1, 2), | 
					
						
							|  |  |  | 	imx35_imx_uart_data_entry(2, 3), | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2010-11-12 10:11:42 +01:00
										 |  |  | #endif /* ifdef CONFIG_SOC_IMX35 */
 | 
					
						
							| 
									
										
										
										
											2010-08-10 22:57:24 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-26 12:25:58 -02:00
										 |  |  | #ifdef CONFIG_SOC_IMX51
 | 
					
						
							| 
									
										
										
										
											2010-08-11 22:23:06 +02:00
										 |  |  | const struct imx_imx_uart_1irq_data imx51_imx_uart_data[] __initconst = { | 
					
						
							|  |  |  | #define imx51_imx_uart_data_entry(_id, _hwid)				\
 | 
					
						
							|  |  |  | 	imx_imx_uart_1irq_data_entry(MX51, _id, _hwid, SZ_4K) | 
					
						
							|  |  |  | 	imx51_imx_uart_data_entry(0, 1), | 
					
						
							|  |  |  | 	imx51_imx_uart_data_entry(1, 2), | 
					
						
							|  |  |  | 	imx51_imx_uart_data_entry(2, 3), | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2010-11-26 12:25:58 -02:00
										 |  |  | #endif /* ifdef CONFIG_SOC_IMX51 */
 | 
					
						
							| 
									
										
										
										
											2010-08-11 22:23:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-04 14:22:56 +08:00
										 |  |  | #ifdef CONFIG_SOC_IMX53
 | 
					
						
							|  |  |  | const struct imx_imx_uart_1irq_data imx53_imx_uart_data[] __initconst = { | 
					
						
							|  |  |  | #define imx53_imx_uart_data_entry(_id, _hwid)				\
 | 
					
						
							|  |  |  | 	imx_imx_uart_1irq_data_entry(MX53, _id, _hwid, SZ_4K) | 
					
						
							|  |  |  | 	imx53_imx_uart_data_entry(0, 1), | 
					
						
							|  |  |  | 	imx53_imx_uart_data_entry(1, 2), | 
					
						
							|  |  |  | 	imx53_imx_uart_data_entry(2, 3), | 
					
						
							| 
									
										
										
										
											2011-06-27 17:12:08 -03:00
										 |  |  | 	imx53_imx_uart_data_entry(3, 4), | 
					
						
							|  |  |  | 	imx53_imx_uart_data_entry(4, 5), | 
					
						
							| 
									
										
										
										
											2011-01-04 14:22:56 +08:00
										 |  |  | }; | 
					
						
							|  |  |  | #endif /* ifdef CONFIG_SOC_IMX53 */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-10 22:57:24 +02:00
										 |  |  | struct platform_device *__init imx_add_imx_uart_3irq( | 
					
						
							|  |  |  | 		const struct imx_imx_uart_3irq_data *data, | 
					
						
							| 
									
										
										
										
											2010-06-22 14:49:20 +02:00
										 |  |  | 		const struct imxuart_platform_data *pdata) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct resource res[] = { | 
					
						
							|  |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2010-08-10 22:57:24 +02:00
										 |  |  | 			.start = data->iobase, | 
					
						
							|  |  |  | 			.end = data->iobase + data->iosize - 1, | 
					
						
							| 
									
										
										
										
											2010-06-22 14:49:20 +02:00
										 |  |  | 			.flags = IORESOURCE_MEM, | 
					
						
							|  |  |  | 		}, { | 
					
						
							| 
									
										
										
										
											2010-08-10 22:57:24 +02:00
										 |  |  | 			.start = data->irqrx, | 
					
						
							|  |  |  | 			.end = data->irqrx, | 
					
						
							| 
									
										
										
										
											2010-06-22 14:49:20 +02:00
										 |  |  | 			.flags = IORESOURCE_IRQ, | 
					
						
							|  |  |  | 		}, { | 
					
						
							| 
									
										
										
										
											2010-08-10 22:57:24 +02:00
										 |  |  | 			.start = data->irqtx, | 
					
						
							|  |  |  | 			.end = data->irqtx, | 
					
						
							| 
									
										
										
										
											2010-06-22 14:49:20 +02:00
										 |  |  | 			.flags = IORESOURCE_IRQ, | 
					
						
							|  |  |  | 		}, { | 
					
						
							| 
									
										
										
										
											2010-08-10 22:57:24 +02:00
										 |  |  | 			.start = data->irqrts, | 
					
						
							|  |  |  | 			.end = data->irqrx, | 
					
						
							| 
									
										
										
										
											2010-06-22 14:49:20 +02:00
										 |  |  | 			.flags = IORESOURCE_IRQ, | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-25 02:04:33 +08:00
										 |  |  | 	return imx_add_platform_device("imx1-uart", data->id, res, | 
					
						
							| 
									
										
										
										
											2010-08-10 22:57:24 +02:00
										 |  |  | 			ARRAY_SIZE(res), pdata, sizeof(*pdata)); | 
					
						
							| 
									
										
										
										
											2010-06-22 14:49:20 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-10 22:57:24 +02:00
										 |  |  | struct platform_device *__init imx_add_imx_uart_1irq( | 
					
						
							|  |  |  | 		const struct imx_imx_uart_1irq_data *data, | 
					
						
							| 
									
										
										
										
											2010-06-22 14:49:20 +02:00
										 |  |  | 		const struct imxuart_platform_data *pdata) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct resource res[] = { | 
					
						
							|  |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2010-08-10 22:57:24 +02:00
										 |  |  | 			.start = data->iobase, | 
					
						
							|  |  |  | 			.end = data->iobase + data->iosize - 1, | 
					
						
							| 
									
										
										
										
											2010-06-22 14:49:20 +02:00
										 |  |  | 			.flags = IORESOURCE_MEM, | 
					
						
							|  |  |  | 		}, { | 
					
						
							| 
									
										
										
										
											2010-08-10 22:57:24 +02:00
										 |  |  | 			.start = data->irq, | 
					
						
							|  |  |  | 			.end = data->irq, | 
					
						
							| 
									
										
										
										
											2010-06-22 14:49:20 +02:00
										 |  |  | 			.flags = IORESOURCE_IRQ, | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-25 02:04:33 +08:00
										 |  |  | 	/* i.mx21 type uart runs on all i.mx except i.mx1 */ | 
					
						
							|  |  |  | 	return imx_add_platform_device("imx21-uart", data->id, | 
					
						
							|  |  |  | 			res, ARRAY_SIZE(res), pdata, sizeof(*pdata)); | 
					
						
							| 
									
										
										
										
											2010-06-22 14:49:20 +02:00
										 |  |  | } |