diff options
author | Sascha Hauer <s.hauer@pengutronix.de> | 2008-09-09 05:30:58 -0400 |
---|---|---|
committer | Sascha Hauer <s.hauer@pengutronix.de> | 2008-12-16 08:57:58 -0500 |
commit | 02870978ea4b0a1bcae201f1b5f3a07344070398 (patch) | |
tree | 37c8ba7c6f9ff668a370323f861d72ee01d6b91e /arch/arm/mach-mx2 | |
parent | 46c3d567af21cba107fef37b88a0d6ec6c35842f (diff) |
[ARM] MX27: Add NAND resources
This patch adds the platform device and resources for NAND
on mx27 boards.
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/mach-mx2')
-rw-r--r-- | arch/arm/mach-mx2/devices.c | 19 | ||||
-rw-r--r-- | arch/arm/mach-mx2/devices.h | 1 |
2 files changed, 20 insertions, 0 deletions
diff --git a/arch/arm/mach-mx2/devices.c b/arch/arm/mach-mx2/devices.c index 092e09baeefa..0bad86527743 100644 --- a/arch/arm/mach-mx2/devices.c +++ b/arch/arm/mach-mx2/devices.c | |||
@@ -205,6 +205,25 @@ struct platform_device mxc_w1_master_device = { | |||
205 | .resource = mxc_w1_master_resources, | 205 | .resource = mxc_w1_master_resources, |
206 | }; | 206 | }; |
207 | 207 | ||
208 | static struct resource mxc_nand_resources[] = { | ||
209 | { | ||
210 | .start = NFC_BASE_ADDR, | ||
211 | .end = NFC_BASE_ADDR + 0xfff, | ||
212 | .flags = IORESOURCE_MEM | ||
213 | }, { | ||
214 | .start = MXC_INT_NANDFC, | ||
215 | .end = MXC_INT_NANDFC, | ||
216 | .flags = IORESOURCE_IRQ | ||
217 | }, | ||
218 | }; | ||
219 | |||
220 | struct platform_device mxc_nand_device = { | ||
221 | .name = "mxc_nand", | ||
222 | .id = 0, | ||
223 | .num_resources = ARRAY_SIZE(mxc_nand_resources), | ||
224 | .resource = mxc_nand_resources, | ||
225 | }; | ||
226 | |||
208 | /* GPIO port description */ | 227 | /* GPIO port description */ |
209 | static struct mxc_gpio_port imx_gpio_ports[] = { | 228 | static struct mxc_gpio_port imx_gpio_ports[] = { |
210 | [0] = { | 229 | [0] = { |
diff --git a/arch/arm/mach-mx2/devices.h b/arch/arm/mach-mx2/devices.h index 5683c4574325..1e8cb577a642 100644 --- a/arch/arm/mach-mx2/devices.h +++ b/arch/arm/mach-mx2/devices.h | |||
@@ -13,3 +13,4 @@ extern struct platform_device mxc_uart_device3; | |||
13 | extern struct platform_device mxc_uart_device4; | 13 | extern struct platform_device mxc_uart_device4; |
14 | extern struct platform_device mxc_uart_device5; | 14 | extern struct platform_device mxc_uart_device5; |
15 | extern struct platform_device mxc_w1_master_device; | 15 | extern struct platform_device mxc_w1_master_device; |
16 | extern struct platform_device mxc_nand_device; | ||