ams-delta.c 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296
  1. /*
  2. * drivers/mtd/nand/ams-delta.c
  3. *
  4. * Copyright (C) 2006 Jonathan McDowell <noodles@earth.li>
  5. *
  6. * Derived from drivers/mtd/toto.c
  7. * Converted to platform driver by Janusz Krzysztofik <jkrzyszt@tis.icnet.pl>
  8. * Partially stolen from drivers/mtd/nand/plat_nand.c
  9. *
  10. * This program is free software; you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License version 2 as
  12. * published by the Free Software Foundation.
  13. *
  14. * Overview:
  15. * This is a device driver for the NAND flash device found on the
  16. * Amstrad E3 (Delta).
  17. */
  18. #include <linux/slab.h>
  19. #include <linux/module.h>
  20. #include <linux/delay.h>
  21. #include <linux/mtd/mtd.h>
  22. #include <linux/mtd/nand.h>
  23. #include <linux/mtd/partitions.h>
  24. #include <linux/gpio.h>
  25. #include <linux/platform_data/gpio-omap.h>
  26. #include <asm/io.h>
  27. #include <asm/sizes.h>
  28. #include <mach/board-ams-delta.h>
  29. #include <mach/hardware.h>
  30. /*
  31. * MTD structure for E3 (Delta)
  32. */
  33. static struct mtd_info *ams_delta_mtd = NULL;
  34. /*
  35. * Define partitions for flash devices
  36. */
  37. static struct mtd_partition partition_info[] = {
  38. { .name = "Kernel",
  39. .offset = 0,
  40. .size = 3 * SZ_1M + SZ_512K },
  41. { .name = "u-boot",
  42. .offset = 3 * SZ_1M + SZ_512K,
  43. .size = SZ_256K },
  44. { .name = "u-boot params",
  45. .offset = 3 * SZ_1M + SZ_512K + SZ_256K,
  46. .size = SZ_256K },
  47. { .name = "Amstrad LDR",
  48. .offset = 4 * SZ_1M,
  49. .size = SZ_256K },
  50. { .name = "File system",
  51. .offset = 4 * SZ_1M + 1 * SZ_256K,
  52. .size = 27 * SZ_1M },
  53. { .name = "PBL reserved",
  54. .offset = 32 * SZ_1M - 3 * SZ_256K,
  55. .size = 3 * SZ_256K },
  56. };
  57. static void ams_delta_write_byte(struct mtd_info *mtd, u_char byte)
  58. {
  59. struct nand_chip *this = mtd->priv;
  60. void __iomem *io_base = this->priv;
  61. writew(0, io_base + OMAP_MPUIO_IO_CNTL);
  62. writew(byte, this->IO_ADDR_W);
  63. gpio_set_value(AMS_DELTA_GPIO_PIN_NAND_NWE, 0);
  64. ndelay(40);
  65. gpio_set_value(AMS_DELTA_GPIO_PIN_NAND_NWE, 1);
  66. }
  67. static u_char ams_delta_read_byte(struct mtd_info *mtd)
  68. {
  69. u_char res;
  70. struct nand_chip *this = mtd->priv;
  71. void __iomem *io_base = this->priv;
  72. gpio_set_value(AMS_DELTA_GPIO_PIN_NAND_NRE, 0);
  73. ndelay(40);
  74. writew(~0, io_base + OMAP_MPUIO_IO_CNTL);
  75. res = readw(this->IO_ADDR_R);
  76. gpio_set_value(AMS_DELTA_GPIO_PIN_NAND_NRE, 1);
  77. return res;
  78. }
  79. static void ams_delta_write_buf(struct mtd_info *mtd, const u_char *buf,
  80. int len)
  81. {
  82. int i;
  83. for (i=0; i<len; i++)
  84. ams_delta_write_byte(mtd, buf[i]);
  85. }
  86. static void ams_delta_read_buf(struct mtd_info *mtd, u_char *buf, int len)
  87. {
  88. int i;
  89. for (i=0; i<len; i++)
  90. buf[i] = ams_delta_read_byte(mtd);
  91. }
  92. /*
  93. * Command control function
  94. *
  95. * ctrl:
  96. * NAND_NCE: bit 0 -> bit 2
  97. * NAND_CLE: bit 1 -> bit 7
  98. * NAND_ALE: bit 2 -> bit 6
  99. */
  100. static void ams_delta_hwcontrol(struct mtd_info *mtd, int cmd,
  101. unsigned int ctrl)
  102. {
  103. if (ctrl & NAND_CTRL_CHANGE) {
  104. gpio_set_value(AMS_DELTA_GPIO_PIN_NAND_NCE,
  105. (ctrl & NAND_NCE) == 0);
  106. gpio_set_value(AMS_DELTA_GPIO_PIN_NAND_CLE,
  107. (ctrl & NAND_CLE) != 0);
  108. gpio_set_value(AMS_DELTA_GPIO_PIN_NAND_ALE,
  109. (ctrl & NAND_ALE) != 0);
  110. }
  111. if (cmd != NAND_CMD_NONE)
  112. ams_delta_write_byte(mtd, cmd);
  113. }
  114. static int ams_delta_nand_ready(struct mtd_info *mtd)
  115. {
  116. return gpio_get_value(AMS_DELTA_GPIO_PIN_NAND_RB);
  117. }
  118. static const struct gpio _mandatory_gpio[] = {
  119. {
  120. .gpio = AMS_DELTA_GPIO_PIN_NAND_NCE,
  121. .flags = GPIOF_OUT_INIT_HIGH,
  122. .label = "nand_nce",
  123. },
  124. {
  125. .gpio = AMS_DELTA_GPIO_PIN_NAND_NRE,
  126. .flags = GPIOF_OUT_INIT_HIGH,
  127. .label = "nand_nre",
  128. },
  129. {
  130. .gpio = AMS_DELTA_GPIO_PIN_NAND_NWP,
  131. .flags = GPIOF_OUT_INIT_HIGH,
  132. .label = "nand_nwp",
  133. },
  134. {
  135. .gpio = AMS_DELTA_GPIO_PIN_NAND_NWE,
  136. .flags = GPIOF_OUT_INIT_HIGH,
  137. .label = "nand_nwe",
  138. },
  139. {
  140. .gpio = AMS_DELTA_GPIO_PIN_NAND_ALE,
  141. .flags = GPIOF_OUT_INIT_LOW,
  142. .label = "nand_ale",
  143. },
  144. {
  145. .gpio = AMS_DELTA_GPIO_PIN_NAND_CLE,
  146. .flags = GPIOF_OUT_INIT_LOW,
  147. .label = "nand_cle",
  148. },
  149. };
  150. /*
  151. * Main initialization routine
  152. */
  153. static int ams_delta_init(struct platform_device *pdev)
  154. {
  155. struct nand_chip *this;
  156. struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
  157. void __iomem *io_base;
  158. int err = 0;
  159. if (!res)
  160. return -ENXIO;
  161. /* Allocate memory for MTD device structure and private data */
  162. ams_delta_mtd = kzalloc(sizeof(struct mtd_info) +
  163. sizeof(struct nand_chip), GFP_KERNEL);
  164. if (!ams_delta_mtd) {
  165. printk (KERN_WARNING "Unable to allocate E3 NAND MTD device structure.\n");
  166. err = -ENOMEM;
  167. goto out;
  168. }
  169. ams_delta_mtd->owner = THIS_MODULE;
  170. /* Get pointer to private data */
  171. this = (struct nand_chip *) (&ams_delta_mtd[1]);
  172. /* Link the private data with the MTD structure */
  173. ams_delta_mtd->priv = this;
  174. /*
  175. * Don't try to request the memory region from here,
  176. * it should have been already requested from the
  177. * gpio-omap driver and requesting it again would fail.
  178. */
  179. io_base = ioremap(res->start, resource_size(res));
  180. if (io_base == NULL) {
  181. dev_err(&pdev->dev, "ioremap failed\n");
  182. err = -EIO;
  183. goto out_free;
  184. }
  185. this->priv = io_base;
  186. /* Set address of NAND IO lines */
  187. this->IO_ADDR_R = io_base + OMAP_MPUIO_INPUT_LATCH;
  188. this->IO_ADDR_W = io_base + OMAP_MPUIO_OUTPUT;
  189. this->read_byte = ams_delta_read_byte;
  190. this->write_buf = ams_delta_write_buf;
  191. this->read_buf = ams_delta_read_buf;
  192. this->cmd_ctrl = ams_delta_hwcontrol;
  193. if (gpio_request(AMS_DELTA_GPIO_PIN_NAND_RB, "nand_rdy") == 0) {
  194. this->dev_ready = ams_delta_nand_ready;
  195. } else {
  196. this->dev_ready = NULL;
  197. printk(KERN_NOTICE "Couldn't request gpio for Delta NAND ready.\n");
  198. }
  199. /* 25 us command delay time */
  200. this->chip_delay = 30;
  201. this->ecc.mode = NAND_ECC_SOFT;
  202. platform_set_drvdata(pdev, io_base);
  203. /* Set chip enabled, but */
  204. err = gpio_request_array(_mandatory_gpio, ARRAY_SIZE(_mandatory_gpio));
  205. if (err)
  206. goto out_gpio;
  207. /* Scan to find existence of the device */
  208. if (nand_scan(ams_delta_mtd, 1)) {
  209. err = -ENXIO;
  210. goto out_mtd;
  211. }
  212. /* Register the partitions */
  213. mtd_device_register(ams_delta_mtd, partition_info,
  214. ARRAY_SIZE(partition_info));
  215. goto out;
  216. out_mtd:
  217. gpio_free_array(_mandatory_gpio, ARRAY_SIZE(_mandatory_gpio));
  218. out_gpio:
  219. gpio_free(AMS_DELTA_GPIO_PIN_NAND_RB);
  220. iounmap(io_base);
  221. out_free:
  222. kfree(ams_delta_mtd);
  223. out:
  224. return err;
  225. }
  226. /*
  227. * Clean up routine
  228. */
  229. static int ams_delta_cleanup(struct platform_device *pdev)
  230. {
  231. void __iomem *io_base = platform_get_drvdata(pdev);
  232. /* Release resources, unregister device */
  233. nand_release(ams_delta_mtd);
  234. gpio_free_array(_mandatory_gpio, ARRAY_SIZE(_mandatory_gpio));
  235. gpio_free(AMS_DELTA_GPIO_PIN_NAND_RB);
  236. iounmap(io_base);
  237. /* Free the MTD device structure */
  238. kfree(ams_delta_mtd);
  239. return 0;
  240. }
  241. static struct platform_driver ams_delta_nand_driver = {
  242. .probe = ams_delta_init,
  243. .remove = ams_delta_cleanup,
  244. .driver = {
  245. .name = "ams-delta-nand",
  246. },
  247. };
  248. module_platform_driver(ams_delta_nand_driver);
  249. MODULE_LICENSE("GPL");
  250. MODULE_AUTHOR("Jonathan McDowell <noodles@earth.li>");
  251. MODULE_DESCRIPTION("Glue layer for NAND flash on Amstrad E3 (Delta)");