blob: 4c18b98a3110872f8648fcf8526f46fd19c162f3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * 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
10#include <linux/module.h>
11#include <linux/types.h>
12#include <linux/kernel.h>
13#include <linux/init.h>
14#include <linux/slab.h>
Lennert Buytenhek73566ed2006-05-07 17:16:36 +010015#include <linux/device.h>
16#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/mtd/mtd.h>
18#include <linux/mtd/map.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/mtd/partitions.h>
Adrian Bunk2b9175c2005-11-29 14:49:38 +000020#include <linux/mtd/physmap.h>
Stefan Roesedf66e712008-02-01 15:26:54 +010021#include <linux/mtd/concat.h>
Atsushi Nemoto3136e902008-11-26 10:26:29 +000022#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
Stefan Roesedf66e712008-02-01 15:26:54 +010024#define MAX_RESOURCES 4
25
Lennert Buytenhek73566ed2006-05-07 17:16:36 +010026struct physmap_flash_info {
Stefan Roesedf66e712008-02-01 15:26:54 +010027 struct mtd_info *mtd[MAX_RESOURCES];
28 struct mtd_info *cmtd;
29 struct map_info map[MAX_RESOURCES];
Lennert Buytenhek73566ed2006-05-07 17:16:36 +010030#ifdef CONFIG_MTD_PARTITIONS
31 int nr_parts;
Atsushi Nemotoe4808142009-02-11 13:12:17 -080032 struct mtd_partition *parts;
Lennert Buytenhek73566ed2006-05-07 17:16:36 +010033#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070034};
35
Lennert Buytenhek73566ed2006-05-07 17:16:36 +010036static int physmap_flash_remove(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070037{
Lennert Buytenhek73566ed2006-05-07 17:16:36 +010038 struct physmap_flash_info *info;
39 struct physmap_flash_data *physmap_data;
Stefan Roesedf66e712008-02-01 15:26:54 +010040 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Lennert Buytenhek73566ed2006-05-07 17:16:36 +010042 info = platform_get_drvdata(dev);
43 if (info == NULL)
44 return 0;
45 platform_set_drvdata(dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Lennert Buytenhek73566ed2006-05-07 17:16:36 +010047 physmap_data = dev->dev.platform_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
H Hartley Sweeten8ce110a2009-10-20 12:23:33 -040049 if (info->cmtd) {
50#ifdef CONFIG_MTD_PARTITIONS
H Hartley Sweeten4b56ffc2009-10-19 13:31:46 -040051 if (info->nr_parts || physmap_data->nr_parts) {
Atsushi Nemotod58ab5c2009-03-10 12:55:55 -070052 del_mtd_partitions(info->cmtd);
H Hartley Sweeten4b56ffc2009-10-19 13:31:46 -040053
54 if (info->nr_parts)
55 kfree(info->parts);
56 } else {
Atsushi Nemotod58ab5c2009-03-10 12:55:55 -070057 del_mtd_device(info->cmtd);
H Hartley Sweeten4b56ffc2009-10-19 13:31:46 -040058 }
H Hartley Sweeten8ce110a2009-10-20 12:23:33 -040059#else
Atsushi Nemotod58ab5c2009-03-10 12:55:55 -070060 del_mtd_device(info->cmtd);
Stefan Roesedf66e712008-02-01 15:26:54 +010061#endif
H Hartley Sweeten8ce110a2009-10-20 12:23:33 -040062#ifdef CONFIG_MTD_CONCAT
63 if (info->cmtd != info->mtd[0])
64 mtd_concat_destroy(info->cmtd);
65#endif
66 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Stefan Roesedf66e712008-02-01 15:26:54 +010068 for (i = 0; i < MAX_RESOURCES; i++) {
Atsushi Nemotoe4808142009-02-11 13:12:17 -080069 if (info->mtd[i] != NULL)
Stefan Roesedf66e712008-02-01 15:26:54 +010070 map_destroy(info->mtd[i]);
Stefan Roesedf66e712008-02-01 15:26:54 +010071 }
Lennert Buytenhek73566ed2006-05-07 17:16:36 +010072 return 0;
73}
74
Alexey Korolevd8140832008-12-16 18:22:39 +000075static const char *rom_probe_types[] = {
76 "cfi_probe",
77 "jedec_probe",
78 "qinfo_probe",
79 "map_rom",
80 NULL };
Lennert Buytenhek73566ed2006-05-07 17:16:36 +010081#ifdef CONFIG_MTD_PARTITIONS
82static const char *part_probe_types[] = { "cmdlinepart", "RedBoot", NULL };
83#endif
84
85static int physmap_flash_probe(struct platform_device *dev)
86{
87 struct physmap_flash_data *physmap_data;
88 struct physmap_flash_info *info;
89 const char **probe_type;
Stefan Roesedf66e712008-02-01 15:26:54 +010090 int err = 0;
91 int i;
92 int devices_found = 0;
Lennert Buytenhek73566ed2006-05-07 17:16:36 +010093
94 physmap_data = dev->dev.platform_data;
95 if (physmap_data == NULL)
96 return -ENODEV;
97
Atsushi Nemoto3136e902008-11-26 10:26:29 +000098 info = devm_kzalloc(&dev->dev, sizeof(struct physmap_flash_info),
99 GFP_KERNEL);
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100100 if (info == NULL) {
101 err = -ENOMEM;
102 goto err_out;
103 }
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100104
105 platform_set_drvdata(dev, info);
106
Stefan Roesedf66e712008-02-01 15:26:54 +0100107 for (i = 0; i < dev->num_resources; i++) {
108 printk(KERN_NOTICE "physmap platform flash device: %.8llx at %.8llx\n",
H Hartley Sweeten1d90d2c2010-06-14 11:57:54 -0500109 (unsigned long long)resource_size(&dev->resource[i]),
Stefan Roesedf66e712008-02-01 15:26:54 +0100110 (unsigned long long)dev->resource[i].start);
111
Atsushi Nemoto3136e902008-11-26 10:26:29 +0000112 if (!devm_request_mem_region(&dev->dev,
113 dev->resource[i].start,
H Hartley Sweeten1d90d2c2010-06-14 11:57:54 -0500114 resource_size(&dev->resource[i]),
Kay Sievers160bbab2008-12-23 10:00:14 +0000115 dev_name(&dev->dev))) {
Stefan Roesedf66e712008-02-01 15:26:54 +0100116 dev_err(&dev->dev, "Could not reserve memory region\n");
117 err = -ENOMEM;
118 goto err_out;
119 }
120
Kay Sievers160bbab2008-12-23 10:00:14 +0000121 info->map[i].name = dev_name(&dev->dev);
Stefan Roesedf66e712008-02-01 15:26:54 +0100122 info->map[i].phys = dev->resource[i].start;
H Hartley Sweeten1d90d2c2010-06-14 11:57:54 -0500123 info->map[i].size = resource_size(&dev->resource[i]);
Stefan Roesedf66e712008-02-01 15:26:54 +0100124 info->map[i].bankwidth = physmap_data->width;
125 info->map[i].set_vpp = physmap_data->set_vpp;
Alexey Korolevd8140832008-12-16 18:22:39 +0000126 info->map[i].pfow_base = physmap_data->pfow_base;
Stefan Roesedf66e712008-02-01 15:26:54 +0100127
Atsushi Nemoto3136e902008-11-26 10:26:29 +0000128 info->map[i].virt = devm_ioremap(&dev->dev, info->map[i].phys,
129 info->map[i].size);
Stefan Roesedf66e712008-02-01 15:26:54 +0100130 if (info->map[i].virt == NULL) {
131 dev_err(&dev->dev, "Failed to ioremap flash region\n");
Roel Kluin895fb492009-11-11 21:47:06 +0100132 err = -EIO;
Stefan Roesedf66e712008-02-01 15:26:54 +0100133 goto err_out;
134 }
135
136 simple_map_init(&info->map[i]);
137
138 probe_type = rom_probe_types;
Barry Song78ef7fa2010-01-15 15:50:14 +0800139 if (physmap_data->probe_type == NULL) {
140 for (; info->mtd[i] == NULL && *probe_type != NULL; probe_type++)
141 info->mtd[i] = do_map_probe(*probe_type, &info->map[i]);
142 } else
143 info->mtd[i] = do_map_probe(physmap_data->probe_type, &info->map[i]);
144
Stefan Roesedf66e712008-02-01 15:26:54 +0100145 if (info->mtd[i] == NULL) {
146 dev_err(&dev->dev, "map_probe failed\n");
147 err = -ENXIO;
148 goto err_out;
149 } else {
150 devices_found++;
151 }
152 info->mtd[i]->owner = THIS_MODULE;
David Brownell87f39f02009-03-26 00:42:50 -0700153 info->mtd[i]->dev.parent = &dev->dev;
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100154 }
155
Stefan Roesedf66e712008-02-01 15:26:54 +0100156 if (devices_found == 1) {
157 info->cmtd = info->mtd[0];
158 } else if (devices_found > 1) {
159 /*
160 * We detected multiple devices. Concatenate them together.
161 */
162#ifdef CONFIG_MTD_CONCAT
Kay Sievers160bbab2008-12-23 10:00:14 +0000163 info->cmtd = mtd_concat_create(info->mtd, devices_found, dev_name(&dev->dev));
Stefan Roesedf66e712008-02-01 15:26:54 +0100164 if (info->cmtd == NULL)
165 err = -ENXIO;
166#else
167 printk(KERN_ERR "physmap-flash: multiple devices "
168 "found but MTD concat support disabled.\n");
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100169 err = -ENXIO;
Stefan Roesedf66e712008-02-01 15:26:54 +0100170#endif
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100171 }
Stefan Roesedf66e712008-02-01 15:26:54 +0100172 if (err)
173 goto err_out;
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100174
H Hartley Sweeten8ce110a2009-10-20 12:23:33 -0400175#ifdef CONFIG_MTD_PARTITIONS
176 err = parse_mtd_partitions(info->cmtd, part_probe_types,
177 &info->parts, 0);
178 if (err > 0) {
179 add_mtd_partitions(info->cmtd, info->parts, err);
180 info->nr_parts = err;
181 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
H Hartley Sweeten8ce110a2009-10-20 12:23:33 -0400184 if (physmap_data->nr_parts) {
185 printk(KERN_NOTICE "Using physmap partition information\n");
186 add_mtd_partitions(info->cmtd, physmap_data->parts,
187 physmap_data->nr_parts);
188 return 0;
189 }
190#endif
191
Stefan Roesedf66e712008-02-01 15:26:54 +0100192 add_mtd_device(info->cmtd);
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100193 return 0;
194
195err_out:
196 physmap_flash_remove(dev);
197 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198}
199
Lennert Buytenhek17c2dae2006-09-21 23:16:48 +0200200#ifdef CONFIG_PM
Lennert Buytenhek17c2dae2006-09-21 23:16:48 +0200201static void physmap_flash_shutdown(struct platform_device *dev)
202{
203 struct physmap_flash_info *info = platform_get_drvdata(dev);
Stefan Roesedf66e712008-02-01 15:26:54 +0100204 int i;
205
Anton Vorontsov4a5691c2008-03-28 14:16:09 -0700206 for (i = 0; i < MAX_RESOURCES && info->mtd[i]; i++)
Robert Jarzmik7b249192008-07-22 09:39:00 +0200207 if (info->mtd[i]->suspend && info->mtd[i]->resume)
208 if (info->mtd[i]->suspend(info->mtd[i]) == 0)
209 info->mtd[i]->resume(info->mtd[i]);
Lennert Buytenhek17c2dae2006-09-21 23:16:48 +0200210}
akpm@linux-foundation.orgd5476682008-02-03 12:56:03 -0800211#else
akpm@linux-foundation.orgd5476682008-02-03 12:56:03 -0800212#define physmap_flash_shutdown NULL
Lennert Buytenhek17c2dae2006-09-21 23:16:48 +0200213#endif
214
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100215static struct platform_driver physmap_flash_driver = {
216 .probe = physmap_flash_probe,
217 .remove = physmap_flash_remove,
Lennert Buytenhek17c2dae2006-09-21 23:16:48 +0200218 .shutdown = physmap_flash_shutdown,
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100219 .driver = {
220 .name = "physmap-flash",
Kay Sievers41d867c2008-04-18 13:44:26 -0700221 .owner = THIS_MODULE,
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100222 },
223};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
225
Mike Frysingerdcb3e132008-12-01 14:23:40 -0800226#ifdef CONFIG_MTD_PHYSMAP_COMPAT
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100227static struct physmap_flash_data physmap_flash_data = {
228 .width = CONFIG_MTD_PHYSMAP_BANKWIDTH,
229};
230
231static struct resource physmap_flash_resource = {
232 .start = CONFIG_MTD_PHYSMAP_START,
Sascha Hauer6d4f8222006-06-27 14:38:15 +0100233 .end = CONFIG_MTD_PHYSMAP_START + CONFIG_MTD_PHYSMAP_LEN - 1,
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100234 .flags = IORESOURCE_MEM,
235};
236
237static struct platform_device physmap_flash = {
238 .name = "physmap-flash",
239 .id = 0,
240 .dev = {
241 .platform_data = &physmap_flash_data,
242 },
243 .num_resources = 1,
244 .resource = &physmap_flash_resource,
245};
246
247void physmap_configure(unsigned long addr, unsigned long size,
248 int bankwidth, void (*set_vpp)(struct map_info *, int))
249{
250 physmap_flash_resource.start = addr;
251 physmap_flash_resource.end = addr + size - 1;
252 physmap_flash_data.width = bankwidth;
253 physmap_flash_data.set_vpp = set_vpp;
254}
255
256#ifdef CONFIG_MTD_PARTITIONS
257void physmap_set_partitions(struct mtd_partition *parts, int num_parts)
258{
259 physmap_flash_data.nr_parts = num_parts;
260 physmap_flash_data.parts = parts;
261}
262#endif
263#endif
264
265static int __init physmap_init(void)
266{
267 int err;
268
269 err = platform_driver_register(&physmap_flash_driver);
Mike Frysingerdcb3e132008-12-01 14:23:40 -0800270#ifdef CONFIG_MTD_PHYSMAP_COMPAT
H Hartley Sweeten1ca5d2f2010-04-02 17:46:30 -0500271 if (err == 0) {
272 err = platform_device_register(&physmap_flash);
273 if (err)
274 platform_driver_unregister(&physmap_flash_driver);
275 }
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100276#endif
277
278 return err;
279}
280
281static void __exit physmap_exit(void)
282{
Mike Frysingerdcb3e132008-12-01 14:23:40 -0800283#ifdef CONFIG_MTD_PHYSMAP_COMPAT
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100284 platform_device_unregister(&physmap_flash);
285#endif
286 platform_driver_unregister(&physmap_flash_driver);
287}
288
289module_init(physmap_init);
290module_exit(physmap_exit);
291
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292MODULE_LICENSE("GPL");
293MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
294MODULE_DESCRIPTION("Generic configurable MTD map driver");
Kay Sievers41d867c2008-04-18 13:44:26 -0700295
296/* legacy platform drivers can't hotplug or coldplg */
Mike Frysingerdcb3e132008-12-01 14:23:40 -0800297#ifndef CONFIG_MTD_PHYSMAP_COMPAT
Kay Sievers41d867c2008-04-18 13:44:26 -0700298/* work with hotplug and coldplug */
299MODULE_ALIAS("platform:physmap-flash");
300#endif