lantiq-flash.c 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  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/err.h>
  10. #include <linux/module.h>
  11. #include <linux/types.h>
  12. #include <linux/kernel.h>
  13. #include <linux/io.h>
  14. #include <linux/slab.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 <linux/of.h>
  22. #include <lantiq_soc.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 const 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
  96. ltq_mtd_probe(struct platform_device *pdev)
  97. {
  98. struct mtd_part_parser_data ppdata;
  99. struct ltq_mtd *ltq_mtd;
  100. struct cfi_private *cfi;
  101. int err;
  102. if (of_machine_is_compatible("lantiq,falcon") &&
  103. (ltq_boot_select() != BS_FLASH)) {
  104. dev_err(&pdev->dev, "invalid bootstrap options\n");
  105. return -ENODEV;
  106. }
  107. ltq_mtd = devm_kzalloc(&pdev->dev, sizeof(struct ltq_mtd), GFP_KERNEL);
  108. if (!ltq_mtd)
  109. return -ENOMEM;
  110. platform_set_drvdata(pdev, ltq_mtd);
  111. ltq_mtd->res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
  112. if (!ltq_mtd->res) {
  113. dev_err(&pdev->dev, "failed to get memory resource\n");
  114. return -ENOENT;
  115. }
  116. ltq_mtd->map = devm_kzalloc(&pdev->dev, sizeof(struct map_info),
  117. GFP_KERNEL);
  118. if (!ltq_mtd->map)
  119. return -ENOMEM;
  120. ltq_mtd->map->phys = ltq_mtd->res->start;
  121. ltq_mtd->map->size = resource_size(ltq_mtd->res);
  122. ltq_mtd->map->virt = devm_ioremap_resource(&pdev->dev, ltq_mtd->res);
  123. if (IS_ERR(ltq_mtd->map->virt))
  124. return PTR_ERR(ltq_mtd->map->virt);
  125. ltq_mtd->map->name = ltq_map_name;
  126. ltq_mtd->map->bankwidth = 2;
  127. ltq_mtd->map->read = ltq_read16;
  128. ltq_mtd->map->write = ltq_write16;
  129. ltq_mtd->map->copy_from = ltq_copy_from;
  130. ltq_mtd->map->copy_to = ltq_copy_to;
  131. ltq_mtd->map->map_priv_1 = LTQ_NOR_PROBING;
  132. ltq_mtd->mtd = do_map_probe("cfi_probe", ltq_mtd->map);
  133. ltq_mtd->map->map_priv_1 = LTQ_NOR_NORMAL;
  134. if (!ltq_mtd->mtd) {
  135. dev_err(&pdev->dev, "probing failed\n");
  136. return -ENXIO;
  137. }
  138. ltq_mtd->mtd->dev.parent = &pdev->dev;
  139. cfi = ltq_mtd->map->fldrv_priv;
  140. cfi->addr_unlock1 ^= 1;
  141. cfi->addr_unlock2 ^= 1;
  142. ppdata.of_node = pdev->dev.of_node;
  143. err = mtd_device_parse_register(ltq_mtd->mtd, NULL, &ppdata, NULL, 0);
  144. if (err) {
  145. dev_err(&pdev->dev, "failed to add partitions\n");
  146. goto err_destroy;
  147. }
  148. return 0;
  149. err_destroy:
  150. map_destroy(ltq_mtd->mtd);
  151. return err;
  152. }
  153. static int
  154. ltq_mtd_remove(struct platform_device *pdev)
  155. {
  156. struct ltq_mtd *ltq_mtd = platform_get_drvdata(pdev);
  157. if (ltq_mtd && ltq_mtd->mtd) {
  158. mtd_device_unregister(ltq_mtd->mtd);
  159. map_destroy(ltq_mtd->mtd);
  160. }
  161. return 0;
  162. }
  163. static const struct of_device_id ltq_mtd_match[] = {
  164. { .compatible = "lantiq,nor" },
  165. {},
  166. };
  167. MODULE_DEVICE_TABLE(of, ltq_mtd_match);
  168. static struct platform_driver ltq_mtd_driver = {
  169. .probe = ltq_mtd_probe,
  170. .remove = ltq_mtd_remove,
  171. .driver = {
  172. .name = "ltq-nor",
  173. .of_match_table = ltq_mtd_match,
  174. },
  175. };
  176. module_platform_driver(ltq_mtd_driver);
  177. MODULE_LICENSE("GPL");
  178. MODULE_AUTHOR("John Crispin <blogic@openwrt.org>");
  179. MODULE_DESCRIPTION("Lantiq SoC NOR");