Provide NAND specific resources and platform data. Signed-off-by: Roger Quadros <rogerq@xxxxxx> --- arch/arm/mach-omap2/gpmc.c | 77 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 77 insertions(+) diff --git a/arch/arm/mach-omap2/gpmc.c b/arch/arm/mach-omap2/gpmc.c index 26b26ec..f4ee6e9 100644 --- a/arch/arm/mach-omap2/gpmc.c +++ b/arch/arm/mach-omap2/gpmc.c @@ -1629,6 +1629,61 @@ static int gpmc_probe_dt(struct platform_device *pdev) } #endif +static int gpmc_nand_setup(struct platform_device *pdev, + struct gpmc_settings *settings) +{ + struct resource *res; + int rc; + struct omap_nand_platform_data *gpmc_nand_data; + + gpmc_nand_data = pdev->dev.platform_data; + if (!gpmc_nand_data) + return -EINVAL; + + res = pdev->resource; + + /* setup IRQ resources */ + res[1].start = gpmc_get_client_irq(GPMC_IRQ_FIFOEVENTENABLE); + + res[2].start = gpmc_get_client_irq(GPMC_IRQ_COUNT_EVENT); + + settings->device_nand = true; + /* + * Not sure why WP is explicitly turned OFF. we just moved it here + * as is from mach-omap2/gpmc-nand.c + */ + rc = gpmc_configure(GPMC_CONFIG_WP, 0); + if (rc < 0) + return rc; + + /* update register addresses in NAND platform data */ + gpmc_update_nand_reg(&gpmc_nand_data->reg, gpmc_nand_data->cs); + + return 0; +} + +static int gpmc_nand_check_csdata(struct gpmc_omap_cs_data *cs) +{ + struct resource *res; + + if (!cs->pdev) + return -EINVAL; + + res = cs->pdev->resource; + + if (cs->pdev->num_resources < 3) + return -EINVAL; + + if (resource_type(&res[1]) != IORESOURCE_IRQ || + resource_type(&res[2]) != IORESOURCE_IRQ) + return -EINVAL; + + if (!cs->settings) + return -EINVAL; + + return 0; +} + static void gpmc_probe_legacy(struct platform_device *pdev) { int i, rc; @@ -1677,6 +1732,28 @@ static void gpmc_probe_legacy(struct platform_device *pdev) /* FIXME: When do we need to call gpmc_cs_remap()? */ skip_mem: + /* Customized setup based on type */ + switch (cs->type) { + case GPMC_OMAP_TYPE_NAND: + if (gpmc_nand_check_csdata(cs)) { + dev_err(dev, "Invalid NAND config on CS %d\n", + i); + continue; + } + + rc = gpmc_nand_setup(cs->pdev, cs->settings); + if (rc) { + dev_err(dev, "Error setting up NAND on CS %d\n", + i); + continue; + } + break; + case GPMC_OMAP_TYPE_NOR: + case GPMC_OMAP_TYPE_ONENAND: + case GPMC_OMAP_TYPE_GENERIC: + break; + } + if (cs->settings) { if (gpmc_cs_program_settings(i, cs->settings)) { dev_err(dev, -- 1.8.3.2 -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html