lantiq-flash.c 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  1. /*
  2. * This program is free software; you can redistribute it and/or modify it
  3. * under the terms of the GNU General Public License version 2 as published
  4. * by the Free Software Foundation.
  5. *
  6. * Copyright (C) 2004 Liu Peng Infineon IFAP DC COM CPE
  7. * Copyright (C) 2010 John Crispin <blogic@openwrt.org>
  8. */
  9. #include <linux/module.h>
  10. #include <linux/types.h>
  11. #include <linux/kernel.h>
  12. #include <linux/io.h>
  13. #include <linux/slab.h>
  14. #include <linux/init.h>
  15. #include <linux/mtd/mtd.h>
  16. #include <linux/mtd/map.h>
  17. #include <linux/mtd/partitions.h>
  18. #include <linux/mtd/cfi.h>
  19. #include <linux/platform_device.h>
  20. #include <linux/mtd/physmap.h>
  21. #include <lantiq_soc.h>
  22. #include <lantiq_platform.h>
  23. /*
  24. * The NOR flash is connected to the same external bus unit (EBU) as PCI.
  25. * To make PCI work we need to enable the endianness swapping for the address
  26. * written to the EBU. This endianness swapping works for PCI correctly but
  27. * fails for attached NOR devices. To workaround this we need to use a complex
  28. * map. The workaround involves swapping all addresses whilst probing the chip.
  29. * Once probing is complete we stop swapping the addresses but swizzle the
  30. * unlock addresses to ensure that access to the NOR device works correctly.
  31. */
  32. enum {
  33. LTQ_NOR_PROBING,
  34. LTQ_NOR_NORMAL
  35. };
  36. struct ltq_mtd {
  37. struct resource *res;
  38. struct mtd_info *mtd;
  39. struct map_info *map;
  40. };
  41. static char ltq_map_name[] = "ltq_nor";
  42. static map_word
  43. ltq_read16(struct map_info *map, unsigned long adr)
  44. {
  45. unsigned long flags;
  46. map_word temp;
  47. if (map->map_priv_1 == LTQ_NOR_PROBING)
  48. adr ^= 2;
  49. spin_lock_irqsave(&ebu_lock, flags);
  50. temp.x[0] = *(u16 *)(map->virt + adr);
  51. spin_unlock_irqrestore(&ebu_lock, flags);
  52. return temp;
  53. }
  54. static void
  55. ltq_write16(struct map_info *map, map_word d, unsigned long adr)
  56. {
  57. unsigned long flags;
  58. if (map->map_priv_1 == LTQ_NOR_PROBING)
  59. adr ^= 2;
  60. spin_lock_irqsave(&ebu_lock, flags);
  61. *(u16 *)(map->virt + adr) = d.x[0];
  62. spin_unlock_irqrestore(&ebu_lock, flags);
  63. }
  64. /*
  65. * The following 2 functions copy data between iomem and a cached memory
  66. * section. As memcpy() makes use of pre-fetching we cannot use it here.
  67. * The normal alternative of using memcpy_{to,from}io also makes use of
  68. * memcpy() on MIPS so it is not applicable either. We are therefore stuck
  69. * with having to use our own loop.
  70. */
  71. static void
  72. ltq_copy_from(struct map_info *map, void *to,
  73. unsigned long from, ssize_t len)
  74. {
  75. unsigned char *f = (unsigned char *)map->virt + from;
  76. unsigned char *t = (unsigned char *)to;
  77. unsigned long flags;
  78. spin_lock_irqsave(&ebu_lock, flags);
  79. while (len--)
  80. *t++ = *f++;
  81. spin_unlock_irqrestore(&ebu_lock, flags);
  82. }
  83. static void
  84. ltq_copy_to(struct map_info *map, unsigned long to,
  85. const void *from, ssize_t len)
  86. {
  87. unsigned char *f = (unsigned char *)from;
  88. unsigned char *t = (unsigned char *)map->virt + to;
  89. unsigned long flags;
  90. spin_lock_irqsave(&ebu_lock, flags);
  91. while (len--)
  92. *t++ = *f++;
  93. spin_unlock_irqrestore(&ebu_lock, flags);
  94. }
  95. static int __init
  96. ltq_mtd_probe(struct platform_device *pdev)
  97. {
  98. struct physmap_flash_data *ltq_mtd_data = dev_get_platdata(&pdev->dev);
  99. struct ltq_mtd *ltq_mtd;
  100. struct resource *res;
  101. struct cfi_private *cfi;
  102. int err;
  103. ltq_mtd = kzalloc(sizeof(struct ltq_mtd), GFP_KERNEL);
  104. platform_set_drvdata(pdev, ltq_mtd);
  105. ltq_mtd->res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
  106. if (!ltq_mtd->res) {
  107. dev_err(&pdev->dev, "failed to get memory resource");
  108. err = -ENOENT;
  109. goto err_out;
  110. }
  111. res = devm_request_mem_region(&pdev->dev, ltq_mtd->res->start,
  112. resource_size(ltq_mtd->res), dev_name(&pdev->dev));
  113. if (!ltq_mtd->res) {
  114. dev_err(&pdev->dev, "failed to request mem resource");
  115. err = -EBUSY;
  116. goto err_out;
  117. }
  118. ltq_mtd->map = kzalloc(sizeof(struct map_info), GFP_KERNEL);
  119. ltq_mtd->map->phys = res->start;
  120. ltq_mtd->map->size = resource_size(res);
  121. ltq_mtd->map->virt = devm_ioremap_nocache(&pdev->dev,
  122. ltq_mtd->map->phys, ltq_mtd->map->size);
  123. if (!ltq_mtd->map->virt) {
  124. dev_err(&pdev->dev, "failed to ioremap!\n");
  125. err = -ENOMEM;
  126. goto err_free;
  127. }
  128. ltq_mtd->map->name = ltq_map_name;
  129. ltq_mtd->map->bankwidth = 2;
  130. ltq_mtd->map->read = ltq_read16;
  131. ltq_mtd->map->write = ltq_write16;
  132. ltq_mtd->map->copy_from = ltq_copy_from;
  133. ltq_mtd->map->copy_to = ltq_copy_to;
  134. ltq_mtd->map->map_priv_1 = LTQ_NOR_PROBING;
  135. ltq_mtd->mtd = do_map_probe("cfi_probe", ltq_mtd->map);
  136. ltq_mtd->map->map_priv_1 = LTQ_NOR_NORMAL;
  137. if (!ltq_mtd->mtd) {
  138. dev_err(&pdev->dev, "probing failed\n");
  139. err = -ENXIO;
  140. goto err_unmap;
  141. }
  142. ltq_mtd->mtd->owner = THIS_MODULE;
  143. cfi = ltq_mtd->map->fldrv_priv;
  144. cfi->addr_unlock1 ^= 1;
  145. cfi->addr_unlock2 ^= 1;
  146. err = mtd_device_parse_register(ltq_mtd->mtd, NULL, 0,
  147. ltq_mtd_data->parts, ltq_mtd_data->nr_parts);
  148. if (err) {
  149. dev_err(&pdev->dev, "failed to add partitions\n");
  150. goto err_destroy;
  151. }
  152. return 0;
  153. err_destroy:
  154. map_destroy(ltq_mtd->mtd);
  155. err_unmap:
  156. iounmap(ltq_mtd->map->virt);
  157. err_free:
  158. kfree(ltq_mtd->map);
  159. err_out:
  160. kfree(ltq_mtd);
  161. return err;
  162. }
  163. static int __devexit
  164. ltq_mtd_remove(struct platform_device *pdev)
  165. {
  166. struct ltq_mtd *ltq_mtd = platform_get_drvdata(pdev);
  167. if (ltq_mtd) {
  168. if (ltq_mtd->mtd) {
  169. mtd_device_unregister(ltq_mtd->mtd);
  170. map_destroy(ltq_mtd->mtd);
  171. }
  172. if (ltq_mtd->map->virt)
  173. iounmap(ltq_mtd->map->virt);
  174. kfree(ltq_mtd->map);
  175. kfree(ltq_mtd);
  176. }
  177. return 0;
  178. }
  179. static struct platform_driver ltq_mtd_driver = {
  180. .remove = __devexit_p(ltq_mtd_remove),
  181. .driver = {
  182. .name = "ltq_nor",
  183. .owner = THIS_MODULE,
  184. },
  185. };
  186. static int __init
  187. init_ltq_mtd(void)
  188. {
  189. int ret = platform_driver_probe(&ltq_mtd_driver, ltq_mtd_probe);
  190. if (ret)
  191. pr_err("ltq_nor: error registering platform driver");
  192. return ret;
  193. }
  194. static void __exit
  195. exit_ltq_mtd(void)
  196. {
  197. platform_driver_unregister(&ltq_mtd_driver);
  198. }
  199. module_init(init_ltq_mtd);
  200. module_exit(exit_ltq_mtd);
  201. MODULE_LICENSE("GPL");
  202. MODULE_AUTHOR("John Crispin <blogic@openwrt.org>");
  203. MODULE_DESCRIPTION("Lantiq SoC NOR");