blob: 229718222db710e27fc980fb68ca287d9553e99d [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
Atsushi Nemotod58ab5c2009-03-10 12:55:55 -070049 if (info->cmtd) {
Atsushi Nemotoe4808142009-02-11 13:12:17 -080050#ifdef CONFIG_MTD_PARTITIONS
Atsushi Nemotod58ab5c2009-03-10 12:55:55 -070051 if (info->nr_parts || physmap_data->nr_parts)
52 del_mtd_partitions(info->cmtd);
53 else
54 del_mtd_device(info->cmtd);
Atsushi Nemotoe4808142009-02-11 13:12:17 -080055#else
Atsushi Nemotod58ab5c2009-03-10 12:55:55 -070056 del_mtd_device(info->cmtd);
57#endif
58 }
59#ifdef CONFIG_MTD_PARTITIONS
60 if (info->nr_parts)
61 kfree(info->parts);
Atsushi Nemotoe4808142009-02-11 13:12:17 -080062#endif
63
64#ifdef CONFIG_MTD_CONCAT
65 if (info->cmtd != info->mtd[0])
Stefan Roesedf66e712008-02-01 15:26:54 +010066 mtd_concat_destroy(info->cmtd);
Stefan Roesedf66e712008-02-01 15:26:54 +010067#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Stefan Roesedf66e712008-02-01 15:26:54 +010069 for (i = 0; i < MAX_RESOURCES; i++) {
Atsushi Nemotoe4808142009-02-11 13:12:17 -080070 if (info->mtd[i] != NULL)
Stefan Roesedf66e712008-02-01 15:26:54 +010071 map_destroy(info->mtd[i]);
Stefan Roesedf66e712008-02-01 15:26:54 +010072 }
Lennert Buytenhek73566ed2006-05-07 17:16:36 +010073 return 0;
74}
75
Alexey Korolevd8140832008-12-16 18:22:39 +000076static const char *rom_probe_types[] = {
77 "cfi_probe",
78 "jedec_probe",
79 "qinfo_probe",
80 "map_rom",
81 NULL };
Lennert Buytenhek73566ed2006-05-07 17:16:36 +010082#ifdef CONFIG_MTD_PARTITIONS
83static const char *part_probe_types[] = { "cmdlinepart", "RedBoot", NULL };
84#endif
85
86static int physmap_flash_probe(struct platform_device *dev)
87{
88 struct physmap_flash_data *physmap_data;
89 struct physmap_flash_info *info;
90 const char **probe_type;
Stefan Roesedf66e712008-02-01 15:26:54 +010091 int err = 0;
92 int i;
93 int devices_found = 0;
Lennert Buytenhek73566ed2006-05-07 17:16:36 +010094
95 physmap_data = dev->dev.platform_data;
96 if (physmap_data == NULL)
97 return -ENODEV;
98
Atsushi Nemoto3136e902008-11-26 10:26:29 +000099 info = devm_kzalloc(&dev->dev, sizeof(struct physmap_flash_info),
100 GFP_KERNEL);
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100101 if (info == NULL) {
102 err = -ENOMEM;
103 goto err_out;
104 }
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100105
106 platform_set_drvdata(dev, info);
107
Stefan Roesedf66e712008-02-01 15:26:54 +0100108 for (i = 0; i < dev->num_resources; i++) {
109 printk(KERN_NOTICE "physmap platform flash device: %.8llx at %.8llx\n",
110 (unsigned long long)(dev->resource[i].end - dev->resource[i].start + 1),
111 (unsigned long long)dev->resource[i].start);
112
Atsushi Nemoto3136e902008-11-26 10:26:29 +0000113 if (!devm_request_mem_region(&dev->dev,
114 dev->resource[i].start,
115 dev->resource[i].end - dev->resource[i].start + 1,
Kay Sievers160bbab2008-12-23 10:00:14 +0000116 dev_name(&dev->dev))) {
Stefan Roesedf66e712008-02-01 15:26:54 +0100117 dev_err(&dev->dev, "Could not reserve memory region\n");
118 err = -ENOMEM;
119 goto err_out;
120 }
121
Kay Sievers160bbab2008-12-23 10:00:14 +0000122 info->map[i].name = dev_name(&dev->dev);
Stefan Roesedf66e712008-02-01 15:26:54 +0100123 info->map[i].phys = dev->resource[i].start;
124 info->map[i].size = dev->resource[i].end - dev->resource[i].start + 1;
125 info->map[i].bankwidth = physmap_data->width;
126 info->map[i].set_vpp = physmap_data->set_vpp;
Alexey Korolevd8140832008-12-16 18:22:39 +0000127 info->map[i].pfow_base = physmap_data->pfow_base;
Stefan Roesedf66e712008-02-01 15:26:54 +0100128
Atsushi Nemoto3136e902008-11-26 10:26:29 +0000129 info->map[i].virt = devm_ioremap(&dev->dev, info->map[i].phys,
130 info->map[i].size);
Stefan Roesedf66e712008-02-01 15:26:54 +0100131 if (info->map[i].virt == NULL) {
132 dev_err(&dev->dev, "Failed to ioremap flash region\n");
133 err = EIO;
134 goto err_out;
135 }
136
137 simple_map_init(&info->map[i]);
138
139 probe_type = rom_probe_types;
140 for (; info->mtd[i] == NULL && *probe_type != NULL; probe_type++)
141 info->mtd[i] = do_map_probe(*probe_type, &info->map[i]);
142 if (info->mtd[i] == NULL) {
143 dev_err(&dev->dev, "map_probe failed\n");
144 err = -ENXIO;
145 goto err_out;
146 } else {
147 devices_found++;
148 }
149 info->mtd[i]->owner = THIS_MODULE;
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100150 }
151
Stefan Roesedf66e712008-02-01 15:26:54 +0100152 if (devices_found == 1) {
153 info->cmtd = info->mtd[0];
154 } else if (devices_found > 1) {
155 /*
156 * We detected multiple devices. Concatenate them together.
157 */
158#ifdef CONFIG_MTD_CONCAT
Kay Sievers160bbab2008-12-23 10:00:14 +0000159 info->cmtd = mtd_concat_create(info->mtd, devices_found, dev_name(&dev->dev));
Stefan Roesedf66e712008-02-01 15:26:54 +0100160 if (info->cmtd == NULL)
161 err = -ENXIO;
162#else
163 printk(KERN_ERR "physmap-flash: multiple devices "
164 "found but MTD concat support disabled.\n");
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100165 err = -ENXIO;
Stefan Roesedf66e712008-02-01 15:26:54 +0100166#endif
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100167 }
Stefan Roesedf66e712008-02-01 15:26:54 +0100168 if (err)
169 goto err_out;
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100170
171#ifdef CONFIG_MTD_PARTITIONS
Atsushi Nemotoe4808142009-02-11 13:12:17 -0800172 err = parse_mtd_partitions(info->cmtd, part_probe_types,
173 &info->parts, 0);
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100174 if (err > 0) {
Atsushi Nemotoe4808142009-02-11 13:12:17 -0800175 add_mtd_partitions(info->cmtd, info->parts, err);
176 info->nr_parts = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 return 0;
178 }
179
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100180 if (physmap_data->nr_parts) {
181 printk(KERN_NOTICE "Using physmap partition information\n");
Stefan Roesedf66e712008-02-01 15:26:54 +0100182 add_mtd_partitions(info->cmtd, physmap_data->parts,
183 physmap_data->nr_parts);
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100184 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Stefan Roesedf66e712008-02-01 15:26:54 +0100188 add_mtd_device(info->cmtd);
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100189 return 0;
190
191err_out:
192 physmap_flash_remove(dev);
193 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194}
195
Lennert Buytenhek17c2dae2006-09-21 23:16:48 +0200196#ifdef CONFIG_PM
197static int physmap_flash_suspend(struct platform_device *dev, pm_message_t state)
198{
199 struct physmap_flash_info *info = platform_get_drvdata(dev);
200 int ret = 0;
Stefan Roesedf66e712008-02-01 15:26:54 +0100201 int i;
Lennert Buytenhek17c2dae2006-09-21 23:16:48 +0200202
Anton Vorontsov4a5691c2008-03-28 14:16:09 -0700203 for (i = 0; i < MAX_RESOURCES && info->mtd[i]; i++)
Uwe Kleine-König4b5e33a2008-07-22 09:39:01 +0200204 if (info->mtd[i]->suspend) {
205 ret = info->mtd[i]->suspend(info->mtd[i]);
206 if (ret)
207 goto fail;
208 }
209
210 return 0;
211fail:
212 for (--i; i >= 0; --i)
213 if (info->mtd[i]->suspend) {
214 BUG_ON(!info->mtd[i]->resume);
215 info->mtd[i]->resume(info->mtd[i]);
216 }
Lennert Buytenhek17c2dae2006-09-21 23:16:48 +0200217
218 return ret;
219}
220
221static int physmap_flash_resume(struct platform_device *dev)
222{
223 struct physmap_flash_info *info = platform_get_drvdata(dev);
Stefan Roesedf66e712008-02-01 15:26:54 +0100224 int i;
225
Anton Vorontsov4a5691c2008-03-28 14:16:09 -0700226 for (i = 0; i < MAX_RESOURCES && info->mtd[i]; i++)
Robert Jarzmik7b249192008-07-22 09:39:00 +0200227 if (info->mtd[i]->resume)
228 info->mtd[i]->resume(info->mtd[i]);
Anton Vorontsov4a5691c2008-03-28 14:16:09 -0700229
Lennert Buytenhek17c2dae2006-09-21 23:16:48 +0200230 return 0;
231}
232
233static void physmap_flash_shutdown(struct platform_device *dev)
234{
235 struct physmap_flash_info *info = platform_get_drvdata(dev);
Stefan Roesedf66e712008-02-01 15:26:54 +0100236 int i;
237
Anton Vorontsov4a5691c2008-03-28 14:16:09 -0700238 for (i = 0; i < MAX_RESOURCES && info->mtd[i]; i++)
Robert Jarzmik7b249192008-07-22 09:39:00 +0200239 if (info->mtd[i]->suspend && info->mtd[i]->resume)
240 if (info->mtd[i]->suspend(info->mtd[i]) == 0)
241 info->mtd[i]->resume(info->mtd[i]);
Lennert Buytenhek17c2dae2006-09-21 23:16:48 +0200242}
akpm@linux-foundation.orgd5476682008-02-03 12:56:03 -0800243#else
244#define physmap_flash_suspend NULL
245#define physmap_flash_resume NULL
246#define physmap_flash_shutdown NULL
Lennert Buytenhek17c2dae2006-09-21 23:16:48 +0200247#endif
248
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100249static struct platform_driver physmap_flash_driver = {
250 .probe = physmap_flash_probe,
251 .remove = physmap_flash_remove,
Lennert Buytenhek17c2dae2006-09-21 23:16:48 +0200252 .suspend = physmap_flash_suspend,
253 .resume = physmap_flash_resume,
254 .shutdown = physmap_flash_shutdown,
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100255 .driver = {
256 .name = "physmap-flash",
Kay Sievers41d867c2008-04-18 13:44:26 -0700257 .owner = THIS_MODULE,
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100258 },
259};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
261
Mike Frysingerdcb3e132008-12-01 14:23:40 -0800262#ifdef CONFIG_MTD_PHYSMAP_COMPAT
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100263static struct physmap_flash_data physmap_flash_data = {
264 .width = CONFIG_MTD_PHYSMAP_BANKWIDTH,
265};
266
267static struct resource physmap_flash_resource = {
268 .start = CONFIG_MTD_PHYSMAP_START,
Sascha Hauer6d4f8222006-06-27 14:38:15 +0100269 .end = CONFIG_MTD_PHYSMAP_START + CONFIG_MTD_PHYSMAP_LEN - 1,
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100270 .flags = IORESOURCE_MEM,
271};
272
273static struct platform_device physmap_flash = {
274 .name = "physmap-flash",
275 .id = 0,
276 .dev = {
277 .platform_data = &physmap_flash_data,
278 },
279 .num_resources = 1,
280 .resource = &physmap_flash_resource,
281};
282
283void physmap_configure(unsigned long addr, unsigned long size,
284 int bankwidth, void (*set_vpp)(struct map_info *, int))
285{
286 physmap_flash_resource.start = addr;
287 physmap_flash_resource.end = addr + size - 1;
288 physmap_flash_data.width = bankwidth;
289 physmap_flash_data.set_vpp = set_vpp;
290}
291
292#ifdef CONFIG_MTD_PARTITIONS
293void physmap_set_partitions(struct mtd_partition *parts, int num_parts)
294{
295 physmap_flash_data.nr_parts = num_parts;
296 physmap_flash_data.parts = parts;
297}
298#endif
299#endif
300
301static int __init physmap_init(void)
302{
303 int err;
304
305 err = platform_driver_register(&physmap_flash_driver);
Mike Frysingerdcb3e132008-12-01 14:23:40 -0800306#ifdef CONFIG_MTD_PHYSMAP_COMPAT
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100307 if (err == 0)
308 platform_device_register(&physmap_flash);
309#endif
310
311 return err;
312}
313
314static void __exit physmap_exit(void)
315{
Mike Frysingerdcb3e132008-12-01 14:23:40 -0800316#ifdef CONFIG_MTD_PHYSMAP_COMPAT
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100317 platform_device_unregister(&physmap_flash);
318#endif
319 platform_driver_unregister(&physmap_flash_driver);
320}
321
322module_init(physmap_init);
323module_exit(physmap_exit);
324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325MODULE_LICENSE("GPL");
326MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
327MODULE_DESCRIPTION("Generic configurable MTD map driver");
Kay Sievers41d867c2008-04-18 13:44:26 -0700328
329/* legacy platform drivers can't hotplug or coldplg */
Mike Frysingerdcb3e132008-12-01 14:23:40 -0800330#ifndef CONFIG_MTD_PHYSMAP_COMPAT
Kay Sievers41d867c2008-04-18 13:44:26 -0700331/* work with hotplug and coldplug */
332MODULE_ALIAS("platform:physmap-flash");
333#endif