From 8f16bfc05a35fc7e2cd03f593e3f744f538694bb Mon Sep 17 00:00:00 2001 From: Wolfram Sang Date: Tue, 30 Oct 2012 15:22:10 +0100 Subject: mxs: mx28evk: add nand device While flash layout may be custom, at least the nand0-device is good to have. Signed-off-by: Wolfram Sang Signed-off-by: Sascha Hauer --- arch/arm/boards/freescale-mx28-evk/mx28-evk.c | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'arch/arm/boards/freescale-mx28-evk') diff --git a/arch/arm/boards/freescale-mx28-evk/mx28-evk.c b/arch/arm/boards/freescale-mx28-evk/mx28-evk.c index 7cd61f9e96..0fbb22914f 100644 --- a/arch/arm/boards/freescale-mx28-evk/mx28-evk.c +++ b/arch/arm/boards/freescale-mx28-evk/mx28-evk.c @@ -109,6 +109,23 @@ static const uint32_t mx28evk_pads[] = { LCD_RESET_GPIO | VE_3_3V | GPIO_OUT | GPIO_VALUE(0), /* backlight */ PWM2_GPIO | VE_3_3V | STRENGTH(S4MA) | SE | VE, + + /* GPMI-NAND (blocks mmc1 for now) */ + GPMI_D0 | VE_3_3V, + GPMI_D1 | VE_3_3V, + GPMI_D2 | VE_3_3V, + GPMI_D3 | VE_3_3V, + GPMI_D4 | VE_3_3V, + GPMI_D5 | VE_3_3V, + GPMI_D6 | VE_3_3V, + GPMI_D7 | VE_3_3V, + GPMI_READY0 | VE_3_3V, /* external PU */ + GPMI_CE0N | VE_3_3V, /* external PU */ + GPMI_RDN | VE_3_3V, + GPMI_WRN | VE_3_3V, + GPMI_ALE | VE_3_3V, + GPMI_CLE | VE_3_3V, + GPMI_RESETN, /* act as WP, external PU */ }; static struct mxs_mci_platform_data mci_pdata = { @@ -239,6 +256,9 @@ static int mx28_evk_devices_init(void) add_generic_device("fec_imx", 0, NULL, IMX_FEC0_BASE, 0x4000, IORESOURCE_MEM, &fec_info); + add_generic_device("mxs_nand", 0, NULL, MXS_GPMI_BASE, 0x2000, + IORESOURCE_MEM, NULL); + return 0; } device_initcall(mx28_evk_devices_init); -- cgit v1.2.3