physmap.c 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316
  1. /*
  2. * Normal mappings of chips in physical memory
  3. *
  4. * Copyright (C) 2003 MontaVista Software Inc.
  5. * Author: Jun Sun, jsun@mvista.com or jsun@junsun.net
  6. *
  7. * 031022 - [jsun] add run-time configure and partition setup
  8. */
  9. #include <linux/module.h>
  10. #include <linux/types.h>
  11. #include <linux/kernel.h>
  12. #include <linux/init.h>
  13. #include <linux/slab.h>
  14. #include <linux/device.h>
  15. #include <linux/platform_device.h>
  16. #include <linux/mtd/mtd.h>
  17. #include <linux/mtd/map.h>
  18. #include <linux/mtd/partitions.h>
  19. #include <linux/mtd/physmap.h>
  20. #include <linux/mtd/concat.h>
  21. #include <linux/io.h>
  22. #define MAX_RESOURCES 4
  23. struct physmap_flash_info {
  24. struct mtd_info *mtd[MAX_RESOURCES];
  25. struct mtd_info *cmtd;
  26. struct map_info map[MAX_RESOURCES];
  27. #ifdef CONFIG_MTD_PARTITIONS
  28. int nr_parts;
  29. struct mtd_partition *parts;
  30. #endif
  31. };
  32. static int physmap_flash_remove(struct platform_device *dev)
  33. {
  34. struct physmap_flash_info *info;
  35. struct physmap_flash_data *physmap_data;
  36. int i;
  37. info = platform_get_drvdata(dev);
  38. if (info == NULL)
  39. return 0;
  40. platform_set_drvdata(dev, NULL);
  41. physmap_data = dev->dev.platform_data;
  42. if (info->cmtd) {
  43. #ifdef CONFIG_MTD_PARTITIONS
  44. if (info->nr_parts || physmap_data->nr_parts) {
  45. del_mtd_partitions(info->cmtd);
  46. if (info->nr_parts)
  47. kfree(info->parts);
  48. } else {
  49. del_mtd_device(info->cmtd);
  50. }
  51. #else
  52. del_mtd_device(info->cmtd);
  53. #endif
  54. if (info->cmtd != info->mtd[0])
  55. mtd_concat_destroy(info->cmtd);
  56. }
  57. for (i = 0; i < MAX_RESOURCES; i++) {
  58. if (info->mtd[i] != NULL)
  59. map_destroy(info->mtd[i]);
  60. }
  61. if (physmap_data->exit)
  62. physmap_data->exit(dev);
  63. return 0;
  64. }
  65. static void physmap_set_vpp(struct map_info *map, int state)
  66. {
  67. struct platform_device *pdev;
  68. struct physmap_flash_data *physmap_data;
  69. pdev = (struct platform_device *)map->map_priv_1;
  70. physmap_data = pdev->dev.platform_data;
  71. if (physmap_data->set_vpp)
  72. physmap_data->set_vpp(pdev, state);
  73. }
  74. static const char *rom_probe_types[] = {
  75. "cfi_probe",
  76. "jedec_probe",
  77. "qinfo_probe",
  78. "map_rom",
  79. NULL };
  80. #ifdef CONFIG_MTD_PARTITIONS
  81. static const char *part_probe_types[] = { "cmdlinepart", "RedBoot", "afs",
  82. NULL };
  83. #endif
  84. static int physmap_flash_probe(struct platform_device *dev)
  85. {
  86. struct physmap_flash_data *physmap_data;
  87. struct physmap_flash_info *info;
  88. const char **probe_type;
  89. int err = 0;
  90. int i;
  91. int devices_found = 0;
  92. physmap_data = dev->dev.platform_data;
  93. if (physmap_data == NULL)
  94. return -ENODEV;
  95. info = devm_kzalloc(&dev->dev, sizeof(struct physmap_flash_info),
  96. GFP_KERNEL);
  97. if (info == NULL) {
  98. err = -ENOMEM;
  99. goto err_out;
  100. }
  101. if (physmap_data->init) {
  102. err = physmap_data->init(dev);
  103. if (err)
  104. goto err_out;
  105. }
  106. platform_set_drvdata(dev, info);
  107. for (i = 0; i < dev->num_resources; i++) {
  108. printk(KERN_NOTICE "physmap platform flash device: %.8llx at %.8llx\n",
  109. (unsigned long long)resource_size(&dev->resource[i]),
  110. (unsigned long long)dev->resource[i].start);
  111. if (!devm_request_mem_region(&dev->dev,
  112. dev->resource[i].start,
  113. resource_size(&dev->resource[i]),
  114. dev_name(&dev->dev))) {
  115. dev_err(&dev->dev, "Could not reserve memory region\n");
  116. err = -ENOMEM;
  117. goto err_out;
  118. }
  119. info->map[i].name = dev_name(&dev->dev);
  120. info->map[i].phys = dev->resource[i].start;
  121. info->map[i].size = resource_size(&dev->resource[i]);
  122. info->map[i].bankwidth = physmap_data->width;
  123. info->map[i].set_vpp = physmap_set_vpp;
  124. info->map[i].pfow_base = physmap_data->pfow_base;
  125. info->map[i].map_priv_1 = (unsigned long)dev;
  126. info->map[i].virt = devm_ioremap(&dev->dev, info->map[i].phys,
  127. info->map[i].size);
  128. if (info->map[i].virt == NULL) {
  129. dev_err(&dev->dev, "Failed to ioremap flash region\n");
  130. err = -EIO;
  131. goto err_out;
  132. }
  133. simple_map_init(&info->map[i]);
  134. probe_type = rom_probe_types;
  135. if (physmap_data->probe_type == NULL) {
  136. for (; info->mtd[i] == NULL && *probe_type != NULL; probe_type++)
  137. info->mtd[i] = do_map_probe(*probe_type, &info->map[i]);
  138. } else
  139. info->mtd[i] = do_map_probe(physmap_data->probe_type, &info->map[i]);
  140. if (info->mtd[i] == NULL) {
  141. dev_err(&dev->dev, "map_probe failed\n");
  142. err = -ENXIO;
  143. goto err_out;
  144. } else {
  145. devices_found++;
  146. }
  147. info->mtd[i]->owner = THIS_MODULE;
  148. info->mtd[i]->dev.parent = &dev->dev;
  149. }
  150. if (devices_found == 1) {
  151. info->cmtd = info->mtd[0];
  152. } else if (devices_found > 1) {
  153. /*
  154. * We detected multiple devices. Concatenate them together.
  155. */
  156. info->cmtd = mtd_concat_create(info->mtd, devices_found, dev_name(&dev->dev));
  157. if (info->cmtd == NULL)
  158. err = -ENXIO;
  159. }
  160. if (err)
  161. goto err_out;
  162. #ifdef CONFIG_MTD_PARTITIONS
  163. err = parse_mtd_partitions(info->cmtd, part_probe_types,
  164. &info->parts, 0);
  165. if (err > 0) {
  166. add_mtd_partitions(info->cmtd, info->parts, err);
  167. info->nr_parts = err;
  168. return 0;
  169. }
  170. if (physmap_data->nr_parts) {
  171. printk(KERN_NOTICE "Using physmap partition information\n");
  172. add_mtd_partitions(info->cmtd, physmap_data->parts,
  173. physmap_data->nr_parts);
  174. return 0;
  175. }
  176. #endif
  177. add_mtd_device(info->cmtd);
  178. return 0;
  179. err_out:
  180. physmap_flash_remove(dev);
  181. return err;
  182. }
  183. #ifdef CONFIG_PM
  184. static void physmap_flash_shutdown(struct platform_device *dev)
  185. {
  186. struct physmap_flash_info *info = platform_get_drvdata(dev);
  187. int i;
  188. for (i = 0; i < MAX_RESOURCES && info->mtd[i]; i++)
  189. if (info->mtd[i]->suspend && info->mtd[i]->resume)
  190. if (info->mtd[i]->suspend(info->mtd[i]) == 0)
  191. info->mtd[i]->resume(info->mtd[i]);
  192. }
  193. #else
  194. #define physmap_flash_shutdown NULL
  195. #endif
  196. static struct platform_driver physmap_flash_driver = {
  197. .probe = physmap_flash_probe,
  198. .remove = physmap_flash_remove,
  199. .shutdown = physmap_flash_shutdown,
  200. .driver = {
  201. .name = "physmap-flash",
  202. .owner = THIS_MODULE,
  203. },
  204. };
  205. #ifdef CONFIG_MTD_PHYSMAP_COMPAT
  206. static struct physmap_flash_data physmap_flash_data = {
  207. .width = CONFIG_MTD_PHYSMAP_BANKWIDTH,
  208. };
  209. static struct resource physmap_flash_resource = {
  210. .start = CONFIG_MTD_PHYSMAP_START,
  211. .end = CONFIG_MTD_PHYSMAP_START + CONFIG_MTD_PHYSMAP_LEN - 1,
  212. .flags = IORESOURCE_MEM,
  213. };
  214. static struct platform_device physmap_flash = {
  215. .name = "physmap-flash",
  216. .id = 0,
  217. .dev = {
  218. .platform_data = &physmap_flash_data,
  219. },
  220. .num_resources = 1,
  221. .resource = &physmap_flash_resource,
  222. };
  223. void physmap_configure(unsigned long addr, unsigned long size,
  224. int bankwidth, void (*set_vpp)(struct map_info *, int))
  225. {
  226. physmap_flash_resource.start = addr;
  227. physmap_flash_resource.end = addr + size - 1;
  228. physmap_flash_data.width = bankwidth;
  229. physmap_flash_data.set_vpp = set_vpp;
  230. }
  231. #ifdef CONFIG_MTD_PARTITIONS
  232. void physmap_set_partitions(struct mtd_partition *parts, int num_parts)
  233. {
  234. physmap_flash_data.nr_parts = num_parts;
  235. physmap_flash_data.parts = parts;
  236. }
  237. #endif
  238. #endif
  239. static int __init physmap_init(void)
  240. {
  241. int err;
  242. err = platform_driver_register(&physmap_flash_driver);
  243. #ifdef CONFIG_MTD_PHYSMAP_COMPAT
  244. if (err == 0) {
  245. err = platform_device_register(&physmap_flash);
  246. if (err)
  247. platform_driver_unregister(&physmap_flash_driver);
  248. }
  249. #endif
  250. return err;
  251. }
  252. static void __exit physmap_exit(void)
  253. {
  254. #ifdef CONFIG_MTD_PHYSMAP_COMPAT
  255. platform_device_unregister(&physmap_flash);
  256. #endif
  257. platform_driver_unregister(&physmap_flash_driver);
  258. }
  259. module_init(physmap_init);
  260. module_exit(physmap_exit);
  261. MODULE_LICENSE("GPL");
  262. MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
  263. MODULE_DESCRIPTION("Generic configurable MTD map driver");
  264. /* legacy platform drivers can't hotplug or coldplg */
  265. #ifndef CONFIG_MTD_PHYSMAP_COMPAT
  266. /* work with hotplug and coldplug */
  267. MODULE_ALIAS("platform:physmap-flash");
  268. #endif