]> Pileus Git - ~andy/linux/commitdiff
MX27ADS: Add NAND support
authorVladimir Barinov <vova.barinov@gmail.com>
Wed, 29 Apr 2009 00:00:49 +0000 (04:00 +0400)
committerSascha Hauer <s.hauer@pengutronix.de>
Thu, 7 May 2009 14:18:53 +0000 (16:18 +0200)
Add NAND support for MX27ADS board

Signed-off-by: Vladimir Barinov <vbarinov@embeddedalley.com>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
arch/arm/mach-mx2/mx27ads.c

index 13accbed8886347656903ebbe8107c91fc82b8c4..ee8f3d986ff51f1230e1d37cc7c0479b602b58a4 100644 (file)
@@ -33,6 +33,7 @@
 #include <mach/imx-uart.h>
 #include <mach/iomux.h>
 #include <mach/board-mx27ads.h>
+#include <mach/mxc_nand.h>
 
 #include "devices.h"
 
@@ -88,6 +89,11 @@ static unsigned int mx27ads_pins[] = {
        PF23_AIN_FEC_TX_EN,
 };
 
+static struct mxc_nand_platform_data mx27ads_nand_board_info = {
+       .width = 1,
+       .hw_ecc = 1,
+};
+
 /* ADS's NOR flash */
 static struct physmap_flash_data mx27ads_flash_data = {
        .width = 2,
@@ -142,6 +148,7 @@ static void __init mx27ads_board_init(void)
        mxc_register_device(&mxc_uart_device3, &uart_pdata[3]);
        mxc_register_device(&mxc_uart_device4, &uart_pdata[4]);
        mxc_register_device(&mxc_uart_device5, &uart_pdata[5]);
+       mxc_register_device(&mxc_nand_device, &mx27ads_nand_board_info);
 
        platform_add_devices(platform_devices, ARRAY_SIZE(platform_devices));
 }