2 * Copyright (C) 2010, 2011 Pengutronix,
3 * Marc Kleine-Budde <kernel@pengutronix.de>
5 * This program is free software; you can redistribute it and/or modify it under
6 * the terms of the GNU General Public License version 2 as published by the
7 * Free Software Foundation.
10 #include <mach/mx28.h>
11 #include <mach/devices-common.h>
13 #define mxs_flexcan_data_entry_single(soc, _id, _hwid, _size) \
16 .iobase = soc ## _CAN ## _hwid ## _BASE_ADDR, \
18 .irq = soc ## _INT_CAN ## _hwid, \
21 #define mxs_flexcan_data_entry(soc, _id, _hwid, _size) \
22 [_id] = mxs_flexcan_data_entry_single(soc, _id, _hwid, _size)
24 #ifdef CONFIG_SOC_IMX28
25 const struct mxs_flexcan_data mx28_flexcan_data
[] __initconst
= {
26 #define mx28_flexcan_data_entry(_id, _hwid) \
27 mxs_flexcan_data_entry_single(MX28, _id, _hwid, SZ_8K)
28 mx28_flexcan_data_entry(0, 0),
29 mx28_flexcan_data_entry(1, 1),
31 #endif /* ifdef CONFIG_SOC_IMX28 */
33 struct platform_device
*__init
mxs_add_flexcan(
34 const struct mxs_flexcan_data
*data
,
35 const struct flexcan_platform_data
*pdata
)
37 struct resource res
[] = {
39 .start
= data
->iobase
,
40 .end
= data
->iobase
+ data
->iosize
- 1,
41 .flags
= IORESOURCE_MEM
,
45 .flags
= IORESOURCE_IRQ
,
49 return mxs_add_platform_device("flexcan", data
->id
,
50 res
, ARRAY_SIZE(res
), pdata
, sizeof(*pdata
));