MX27ADS: Add NAND support
[pandora-kernel.git] / arch / arm / mach-mx2 / mx27ads.c
index 13accbe..ee8f3d9 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));
 }