-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ARM: mxs: dynamically register flexcan devices for mx28
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de> Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
- Loading branch information
Marc Kleine-Budde
authored and
Sascha Hauer
committed
Feb 3, 2011
1 parent
6ea038a
commit 22cbba1
Showing
5 changed files
with
74 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
obj-$(CONFIG_MXS_HAVE_AMBA_DUART) += amba-duart.o | ||
obj-$(CONFIG_MXS_HAVE_PLATFORM_AUART) += platform-auart.o | ||
obj-$(CONFIG_MXS_HAVE_PLATFORM_FEC) += platform-fec.o | ||
obj-$(CONFIG_MXS_HAVE_PLATFORM_FLEXCAN) += platform-flexcan.o |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
/* | ||
* Copyright (C) 2010, 2011 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. | ||
*/ | ||
#include <asm/sizes.h> | ||
#include <mach/mx28.h> | ||
#include <mach/devices-common.h> | ||
|
||
#define mxs_flexcan_data_entry_single(soc, _id, _hwid, _size) \ | ||
{ \ | ||
.id = _id, \ | ||
.iobase = soc ## _CAN ## _hwid ## _BASE_ADDR, \ | ||
.iosize = _size, \ | ||
.irq = soc ## _INT_CAN ## _hwid, \ | ||
} | ||
|
||
#define mxs_flexcan_data_entry(soc, _id, _hwid, _size) \ | ||
[_id] = mxs_flexcan_data_entry_single(soc, _id, _hwid, _size) | ||
|
||
#ifdef CONFIG_SOC_IMX28 | ||
const struct mxs_flexcan_data mx28_flexcan_data[] __initconst = { | ||
#define mx28_flexcan_data_entry(_id, _hwid) \ | ||
mxs_flexcan_data_entry_single(MX28, _id, _hwid, SZ_8K) | ||
mx28_flexcan_data_entry(0, 0), | ||
mx28_flexcan_data_entry(1, 1), | ||
}; | ||
#endif /* ifdef CONFIG_SOC_IMX28 */ | ||
|
||
struct platform_device *__init mxs_add_flexcan( | ||
const struct mxs_flexcan_data *data, | ||
const struct flexcan_platform_data *pdata) | ||
{ | ||
struct resource res[] = { | ||
{ | ||
.start = data->iobase, | ||
.end = data->iobase + data->iosize - 1, | ||
.flags = IORESOURCE_MEM, | ||
}, { | ||
.start = data->irq, | ||
.end = data->irq, | ||
.flags = IORESOURCE_IRQ, | ||
}, | ||
}; | ||
|
||
return mxs_add_platform_device("flexcan", data->id, | ||
res, ARRAY_SIZE(res), pdata, sizeof(*pdata)); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters