cregit-Linux how code gets into the kernel

Release 4.15 drivers/mtd/nand/gpio.c

Directory: drivers/mtd/nand
/*
 * drivers/mtd/nand/gpio.c
 *
 * Updated, and converted to generic GPIO based driver by Russell King.
 *
 * Written by Ben Dooks <ben@simtec.co.uk>
 *   Based on 2.4 version by Mark Whittaker
 *
 * © 2004 Simtec Electronics
 *
 * Device driver for NAND flash that uses a memory mapped interface to
 * read/write the NAND commands and data, and GPIO pins for control signals
 * (the DT binding refers to this as "GPIO assisted NAND flash")
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 *
 */

#include <linux/kernel.h>
#include <linux/err.h>
#include <linux/slab.h>
#include <linux/module.h>
#include <linux/platform_device.h>
#include <linux/gpio/consumer.h>
#include <linux/io.h>
#include <linux/mtd/mtd.h>
#include <linux/mtd/rawnand.h>
#include <linux/mtd/partitions.h>
#include <linux/mtd/nand-gpio.h>
#include <linux/of.h>
#include <linux/of_address.h>


struct gpiomtd {
	
void __iomem		*io_sync;
	
struct nand_chip	nand_chip;
	
struct gpio_nand_platdata plat;
	
struct gpio_desc *nce; /* Optional chip enable */
	
struct gpio_desc *cle;
	
struct gpio_desc *ale;
	
struct gpio_desc *rdy;
	
struct gpio_desc *nwp; /* Optional write protection */
};


static inline struct gpiomtd *gpio_nand_getpriv(struct mtd_info *mtd) { return container_of(mtd_to_nand(mtd), struct gpiomtd, nand_chip); }

Contributors

PersonTokensPropCommitsCommitProp
Boris Brezillon2589.29%150.00%
Mike Rapoport310.71%150.00%
Total28100.00%2100.00%

#ifdef CONFIG_ARM /* gpio_nand_dosync() * * Make sure the GPIO state changes occur in-order with writes to NAND * memory region. * Needed on PXA due to bus-reordering within the SoC itself (see section on * I/O ordering in PXA manual (section 2.3, p35) */
static void gpio_nand_dosync(struct gpiomtd *gpiomtd) { unsigned long tmp; if (gpiomtd->io_sync) { /* * Linux memory barriers don't cater for what's required here. * What's required is what's here - a read from a separate * region with a dependency on that read. */ tmp = readl(gpiomtd->io_sync); asm volatile("mov %1, %0\n" : "=r" (tmp) : "r" (tmp)); } }

Contributors

PersonTokensPropCommitsCommitProp
Mike Rapoport36100.00%1100.00%
Total36100.00%1100.00%

#else
static inline void gpio_nand_dosync(struct gpiomtd *gpiomtd) {}

Contributors

PersonTokensPropCommitsCommitProp
Mike Rapoport11100.00%1100.00%
Total11100.00%1100.00%

#endif
static void gpio_nand_cmd_ctrl(struct mtd_info *mtd, int cmd, unsigned int ctrl) { struct gpiomtd *gpiomtd = gpio_nand_getpriv(mtd); gpio_nand_dosync(gpiomtd); if (ctrl & NAND_CTRL_CHANGE) { if (gpiomtd->nce) gpiod_set_value(gpiomtd->nce, !(ctrl & NAND_NCE)); gpiod_set_value(gpiomtd->cle, !!(ctrl & NAND_CLE)); gpiod_set_value(gpiomtd->ale, !!(ctrl & NAND_ALE)); gpio_nand_dosync(gpiomtd); } if (cmd == NAND_CMD_NONE) return; writeb(cmd, gpiomtd->nand_chip.IO_ADDR_W); gpio_nand_dosync(gpiomtd); }

Contributors

PersonTokensPropCommitsCommitProp
Mike Rapoport10789.92%133.33%
Linus Walleij75.88%133.33%
Christophe Leroy54.20%133.33%
Total119100.00%3100.00%


static int gpio_nand_devready(struct mtd_info *mtd) { struct gpiomtd *gpiomtd = gpio_nand_getpriv(mtd); return gpiod_get_value(gpiomtd->rdy); }

Contributors

PersonTokensPropCommitsCommitProp
Mike Rapoport2793.10%150.00%
Linus Walleij26.90%150.00%
Total29100.00%2100.00%

#ifdef CONFIG_OF static const struct of_device_id gpio_nand_id_table[] = { { .compatible = "gpio-control-nand" }, {} }; MODULE_DEVICE_TABLE(of, gpio_nand_id_table);
static int gpio_nand_get_config_of(const struct device *dev, struct gpio_nand_platdata *plat) { u32 val; if (!dev->of_node) return -ENODEV; if (!of_property_read_u32(dev->of_node, "bank-width", &val)) { if (val == 2) { plat->options |= NAND_BUSWIDTH_16; } else if (val != 1) { dev_err(dev, "invalid bank-width %u\n", val); return -EINVAL; } } if (!of_property_read_u32(dev->of_node, "chip-delay", &val)) plat->chip_delay = val; return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Jamie Iles9789.81%150.00%
Alexander Shiyan1110.19%150.00%
Total108100.00%2100.00%


static struct resource *gpio_nand_get_io_sync_of(struct platform_device *pdev) { struct resource *r; u64 addr; if (of_property_read_u64(pdev->dev.of_node, "gpio-control-nand,io-sync-reg", &addr)) return NULL; r = devm_kzalloc(&pdev->dev, sizeof(*r), GFP_KERNEL); if (!r) return NULL; r->start = addr; r->end = r->start + 0x3; r->flags = IORESOURCE_MEM; return r; }

Contributors

PersonTokensPropCommitsCommitProp
Jamie Iles6571.43%150.00%
Brian Norris2628.57%150.00%
Total91100.00%2100.00%

#else /* CONFIG_OF */
static inline int gpio_nand_get_config_of(const struct device *dev, struct gpio_nand_platdata *plat) { return -ENOSYS; }

Contributors

PersonTokensPropCommitsCommitProp
Jamie Iles22100.00%1100.00%
Total22100.00%1100.00%


static inline struct resource * gpio_nand_get_io_sync_of(struct platform_device *pdev) { return NULL; }

Contributors

PersonTokensPropCommitsCommitProp
Jamie Iles17100.00%1100.00%
Total17100.00%1100.00%

#endif /* CONFIG_OF */
static inline int gpio_nand_get_config(const struct device *dev, struct gpio_nand_platdata *plat) { int ret = gpio_nand_get_config_of(dev, plat); if (!ret) return ret; if (dev_get_platdata(dev)) { memcpy(plat, dev_get_platdata(dev), sizeof(*plat)); return 0; } return -EINVAL; }

Contributors

PersonTokensPropCommitsCommitProp
Jamie Iles6291.18%150.00%
Jingoo Han68.82%150.00%
Total68100.00%2100.00%


static inline struct resource * gpio_nand_get_io_sync(struct platform_device *pdev) { struct resource *r = gpio_nand_get_io_sync_of(pdev); if (r) return r; return platform_get_resource(pdev, IORESOURCE_MEM, 1); }

Contributors

PersonTokensPropCommitsCommitProp
Jamie Iles41100.00%1100.00%
Total41100.00%1100.00%


static int gpio_nand_remove(struct platform_device *pdev) { struct gpiomtd *gpiomtd = platform_get_drvdata(pdev); nand_release(nand_to_mtd(&gpiomtd->nand_chip)); /* Enable write protection and disable the chip */ if (gpiomtd->nwp && !IS_ERR(gpiomtd->nwp)) gpiod_set_value(gpiomtd->nwp, 0); if (gpiomtd->nce && !IS_ERR(gpiomtd->nce)) gpiod_set_value(gpiomtd->nce, 0); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Mike Rapoport4959.76%120.00%
Linus Walleij2024.39%120.00%
Christophe Leroy78.54%120.00%
Boris Brezillon44.88%120.00%
Alexander Shiyan22.44%120.00%
Total82100.00%5100.00%


static int gpio_nand_probe(struct platform_device *pdev) { struct gpiomtd *gpiomtd; struct nand_chip *chip; struct mtd_info *mtd; struct resource *res; struct device *dev = &pdev->dev; int ret = 0; if (!dev->of_node && !dev_get_platdata(dev)) return -EINVAL; gpiomtd = devm_kzalloc(dev, sizeof(*gpiomtd), GFP_KERNEL); if (!gpiomtd) return -ENOMEM; chip = &gpiomtd->nand_chip; res = platform_get_resource(pdev, IORESOURCE_MEM, 0); chip->IO_ADDR_R = devm_ioremap_resource(dev, res); if (IS_ERR(chip->IO_ADDR_R)) return PTR_ERR(chip->IO_ADDR_R); res = gpio_nand_get_io_sync(pdev); if (res) { gpiomtd->io_sync = devm_ioremap_resource(dev, res); if (IS_ERR(gpiomtd->io_sync)) return PTR_ERR(gpiomtd->io_sync); } ret = gpio_nand_get_config(dev, &gpiomtd->plat); if (ret) return ret; /* Just enable the chip */ gpiomtd->nce = devm_gpiod_get_optional(dev, "nce", GPIOD_OUT_HIGH); if (IS_ERR(gpiomtd->nce)) return PTR_ERR(gpiomtd->nce); /* We disable write protection once we know probe() will succeed */ gpiomtd->nwp = devm_gpiod_get_optional(dev, "nwp", GPIOD_OUT_LOW); if (IS_ERR(gpiomtd->nwp)) { ret = PTR_ERR(gpiomtd->nwp); goto out_ce; } gpiomtd->ale = devm_gpiod_get(dev, "ale", GPIOD_OUT_LOW); if (IS_ERR(gpiomtd->ale)) { ret = PTR_ERR(gpiomtd->ale); goto out_ce; } gpiomtd->cle = devm_gpiod_get(dev, "cle", GPIOD_OUT_LOW); if (IS_ERR(gpiomtd->cle)) { ret = PTR_ERR(gpiomtd->cle); goto out_ce; } gpiomtd->rdy = devm_gpiod_get_optional(dev, "rdy", GPIOD_IN); if (IS_ERR(gpiomtd->rdy)) { ret = PTR_ERR(gpiomtd->rdy); goto out_ce; } /* Using RDY pin */ if (gpiomtd->rdy) chip->dev_ready = gpio_nand_devready; nand_set_flash_node(chip, pdev->dev.of_node); chip->IO_ADDR_W = chip->IO_ADDR_R; chip->ecc.mode = NAND_ECC_SOFT; chip->ecc.algo = NAND_ECC_HAMMING; chip->options = gpiomtd->plat.options; chip->chip_delay = gpiomtd->plat.chip_delay; chip->cmd_ctrl = gpio_nand_cmd_ctrl; mtd = nand_to_mtd(chip); mtd->dev.parent = dev; platform_set_drvdata(pdev, gpiomtd); /* Disable write protection, if wired up */ if (gpiomtd->nwp && !IS_ERR(gpiomtd->nwp)) gpiod_direction_output(gpiomtd->nwp, 1); ret = nand_scan(mtd, 1); if (ret) goto err_wp; if (gpiomtd->plat.adjust_parts) gpiomtd->plat.adjust_parts(&gpiomtd->plat, mtd->size); ret = mtd_device_register(mtd, gpiomtd->plat.parts, gpiomtd->plat.num_parts); if (!ret) return 0; err_wp: if (gpiomtd->nwp && !IS_ERR(gpiomtd->nwp)) gpiod_set_value(gpiomtd->nwp, 0); out_ce: if (gpiomtd->nce && !IS_ERR(gpiomtd->nce)) gpiod_set_value(gpiomtd->nce, 0); return ret; }

Contributors

PersonTokensPropCommitsCommitProp
Mike Rapoport28947.45%16.25%
Linus Walleij14824.30%16.25%
Alexander Shiyan9415.44%425.00%
Jamie Iles213.45%16.25%
Boris Brezillon162.63%16.25%
Brian Norris121.97%16.25%
Rafał Miłecki81.31%16.25%
Masahiro Yamada60.99%16.25%
Christophe Leroy50.82%212.50%
Frans Klaver40.66%16.25%
Jingoo Han30.49%16.25%
Sachin Kamat30.49%16.25%
Total609100.00%16100.00%

static struct platform_driver gpio_nand_driver = { .probe = gpio_nand_probe, .remove = gpio_nand_remove, .driver = { .name = "gpio-nand", .of_match_table = of_match_ptr(gpio_nand_id_table), }, }; module_platform_driver(gpio_nand_driver); MODULE_LICENSE("GPL"); MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>"); MODULE_DESCRIPTION("GPIO NAND Driver");

Overall Contributors

PersonTokensPropCommitsCommitProp
Mike Rapoport62143.04%14.55%
Jamie Iles37025.64%14.55%
Linus Walleij20514.21%14.55%
Alexander Shiyan1107.62%522.73%
Boris Brezillon463.19%29.09%
Brian Norris382.63%29.09%
Christophe Leroy171.18%29.09%
Jingoo Han90.62%14.55%
Sachin Kamat80.55%313.64%
Rafał Miłecki80.55%14.55%
Masahiro Yamada60.42%14.55%
Frans Klaver40.28%14.55%
Gerhard Sittig10.07%14.55%
Total1443100.00%22100.00%
Directory: drivers/mtd/nand
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.