| 
									
										
										
										
											2010-07-22 11:45:34 +02:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright (C) 2010 Pengutronix, Marc Kleine-Budde <kernel@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-07-22 11:45:34 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-04 12:02:35 +01:00
										 |  |  | #define imx_flexcan_data_entry_single(soc, _id, _hwid, _size)		\
 | 
					
						
							|  |  |  | 	{								\ | 
					
						
							|  |  |  | 		.id = _id,						\ | 
					
						
							|  |  |  | 		.iobase = soc ## _CAN ## _hwid ## _BASE_ADDR,		\ | 
					
						
							|  |  |  | 		.iosize = _size,					\ | 
					
						
							|  |  |  | 		.irq = soc ## _INT_CAN ## _hwid,			\ | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define imx_flexcan_data_entry(soc, _id, _hwid, _size)			\
 | 
					
						
							|  |  |  | 	[_id] = imx_flexcan_data_entry_single(soc, _id, _hwid, _size) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-11 18:35:01 +01:00
										 |  |  | #ifdef CONFIG_SOC_IMX25
 | 
					
						
							| 
									
										
										
										
											2010-11-04 12:02:35 +01:00
										 |  |  | const struct imx_flexcan_data imx25_flexcan_data[] __initconst = { | 
					
						
							|  |  |  | #define imx25_flexcan_data_entry(_id, _hwid)				\
 | 
					
						
							|  |  |  | 	imx_flexcan_data_entry(MX25, _id, _hwid, SZ_16K) | 
					
						
							|  |  |  | 	imx25_flexcan_data_entry(0, 1), | 
					
						
							|  |  |  | 	imx25_flexcan_data_entry(1, 2), | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2010-11-11 18:35:01 +01:00
										 |  |  | #endif /* ifdef CONFIG_SOC_IMX25 */
 | 
					
						
							| 
									
										
										
										
											2010-11-04 12:02:35 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-12 10:11:42 +01:00
										 |  |  | #ifdef CONFIG_SOC_IMX35
 | 
					
						
							| 
									
										
										
										
											2010-11-04 12:02:35 +01:00
										 |  |  | const struct imx_flexcan_data imx35_flexcan_data[] __initconst = { | 
					
						
							|  |  |  | #define imx35_flexcan_data_entry(_id, _hwid)				\
 | 
					
						
							|  |  |  | 	imx_flexcan_data_entry(MX35, _id, _hwid, SZ_16K) | 
					
						
							|  |  |  | 	imx35_flexcan_data_entry(0, 1), | 
					
						
							|  |  |  | 	imx35_flexcan_data_entry(1, 2), | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2010-11-12 10:11:42 +01:00
										 |  |  | #endif /* ifdef CONFIG_SOC_IMX35 */
 | 
					
						
							| 
									
										
										
										
											2010-11-04 12:02:35 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | struct platform_device *__init imx_add_flexcan( | 
					
						
							| 
									
										
										
										
											2013-06-10 23:12:56 -03:00
										 |  |  | 		const struct imx_flexcan_data *data) | 
					
						
							| 
									
										
										
										
											2010-07-22 11:45:34 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct resource res[] = { | 
					
						
							|  |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2010-11-04 12:02:35 +01:00
										 |  |  | 			.start = data->iobase, | 
					
						
							|  |  |  | 			.end = data->iobase + data->iosize - 1, | 
					
						
							| 
									
										
										
										
											2010-07-22 11:45:34 +02:00
										 |  |  | 			.flags = IORESOURCE_MEM, | 
					
						
							|  |  |  | 		}, { | 
					
						
							| 
									
										
										
										
											2010-11-04 12:02:35 +01:00
										 |  |  | 			.start = data->irq, | 
					
						
							|  |  |  | 			.end = data->irq, | 
					
						
							| 
									
										
										
										
											2010-07-22 11:45:34 +02:00
										 |  |  | 			.flags = IORESOURCE_IRQ, | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-04 12:02:35 +01:00
										 |  |  | 	return imx_add_platform_device("flexcan", data->id, | 
					
						
							| 
									
										
										
										
											2013-06-10 23:12:56 -03:00
										 |  |  | 			res, ARRAY_SIZE(res), NULL, 0); | 
					
						
							| 
									
										
										
										
											2010-07-22 11:45:34 +02:00
										 |  |  | } |