blob: d3a2acc7e9bea89bc17320e25a1c5ea25b6bcf15 [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;
Lennert Buytenhek73566ed2006-05-07 17:16:36 +010032#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070033};
34
Lennert Buytenhek73566ed2006-05-07 17:16:36 +010035static int physmap_flash_remove(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070036{
Lennert Buytenhek73566ed2006-05-07 17:16:36 +010037 struct physmap_flash_info *info;
38 struct physmap_flash_data *physmap_data;
Stefan Roesedf66e712008-02-01 15:26:54 +010039 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Lennert Buytenhek73566ed2006-05-07 17:16:36 +010041 info = platform_get_drvdata(dev);
42 if (info == NULL)
43 return 0;
44 platform_set_drvdata(dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Lennert Buytenhek73566ed2006-05-07 17:16:36 +010046 physmap_data = dev->dev.platform_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Stefan Roesedf66e712008-02-01 15:26:54 +010048#ifdef CONFIG_MTD_CONCAT
49 if (info->cmtd != info->mtd[0]) {
50 del_mtd_device(info->cmtd);
51 mtd_concat_destroy(info->cmtd);
Lennert Buytenhek73566ed2006-05-07 17:16:36 +010052 }
Stefan Roesedf66e712008-02-01 15:26:54 +010053#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Stefan Roesedf66e712008-02-01 15:26:54 +010055 for (i = 0; i < MAX_RESOURCES; i++) {
56 if (info->mtd[i] != NULL) {
57#ifdef CONFIG_MTD_PARTITIONS
Atsushi Nemoto176bf2e2008-12-01 14:23:39 -080058 if (info->nr_parts || physmap_data->nr_parts)
Stefan Roesedf66e712008-02-01 15:26:54 +010059 del_mtd_partitions(info->mtd[i]);
Atsushi Nemoto176bf2e2008-12-01 14:23:39 -080060 else
Stefan Roesedf66e712008-02-01 15:26:54 +010061 del_mtd_device(info->mtd[i]);
Stefan Roesedf66e712008-02-01 15:26:54 +010062#else
63 del_mtd_device(info->mtd[i]);
64#endif
65 map_destroy(info->mtd[i]);
66 }
Stefan Roesedf66e712008-02-01 15:26:54 +010067 }
Lennert Buytenhek73566ed2006-05-07 17:16:36 +010068 return 0;
69}
70
71static const char *rom_probe_types[] = { "cfi_probe", "jedec_probe", "map_rom", NULL };
72#ifdef CONFIG_MTD_PARTITIONS
73static const char *part_probe_types[] = { "cmdlinepart", "RedBoot", NULL };
74#endif
75
76static int physmap_flash_probe(struct platform_device *dev)
77{
78 struct physmap_flash_data *physmap_data;
79 struct physmap_flash_info *info;
80 const char **probe_type;
Stefan Roesedf66e712008-02-01 15:26:54 +010081 int err = 0;
82 int i;
83 int devices_found = 0;
Atsushi Nemoto176bf2e2008-12-01 14:23:39 -080084#ifdef CONFIG_MTD_PARTITIONS
85 struct mtd_partition *parts;
86#endif
Lennert Buytenhek73566ed2006-05-07 17:16:36 +010087
88 physmap_data = dev->dev.platform_data;
89 if (physmap_data == NULL)
90 return -ENODEV;
91
Atsushi Nemoto3136e902008-11-26 10:26:29 +000092 info = devm_kzalloc(&dev->dev, sizeof(struct physmap_flash_info),
93 GFP_KERNEL);
Lennert Buytenhek73566ed2006-05-07 17:16:36 +010094 if (info == NULL) {
95 err = -ENOMEM;
96 goto err_out;
97 }
Lennert Buytenhek73566ed2006-05-07 17:16:36 +010098
99 platform_set_drvdata(dev, info);
100
Stefan Roesedf66e712008-02-01 15:26:54 +0100101 for (i = 0; i < dev->num_resources; i++) {
102 printk(KERN_NOTICE "physmap platform flash device: %.8llx at %.8llx\n",
103 (unsigned long long)(dev->resource[i].end - dev->resource[i].start + 1),
104 (unsigned long long)dev->resource[i].start);
105
Atsushi Nemoto3136e902008-11-26 10:26:29 +0000106 if (!devm_request_mem_region(&dev->dev,
107 dev->resource[i].start,
108 dev->resource[i].end - dev->resource[i].start + 1,
Kay Sievers160bbab2008-12-23 10:00:14 +0000109 dev_name(&dev->dev))) {
Stefan Roesedf66e712008-02-01 15:26:54 +0100110 dev_err(&dev->dev, "Could not reserve memory region\n");
111 err = -ENOMEM;
112 goto err_out;
113 }
114
Kay Sievers160bbab2008-12-23 10:00:14 +0000115 info->map[i].name = dev_name(&dev->dev);
Stefan Roesedf66e712008-02-01 15:26:54 +0100116 info->map[i].phys = dev->resource[i].start;
117 info->map[i].size = dev->resource[i].end - dev->resource[i].start + 1;
118 info->map[i].bankwidth = physmap_data->width;
119 info->map[i].set_vpp = physmap_data->set_vpp;
120
Atsushi Nemoto3136e902008-11-26 10:26:29 +0000121 info->map[i].virt = devm_ioremap(&dev->dev, info->map[i].phys,
122 info->map[i].size);
Stefan Roesedf66e712008-02-01 15:26:54 +0100123 if (info->map[i].virt == NULL) {
124 dev_err(&dev->dev, "Failed to ioremap flash region\n");
125 err = EIO;
126 goto err_out;
127 }
128
129 simple_map_init(&info->map[i]);
130
131 probe_type = rom_probe_types;
132 for (; info->mtd[i] == NULL && *probe_type != NULL; probe_type++)
133 info->mtd[i] = do_map_probe(*probe_type, &info->map[i]);
134 if (info->mtd[i] == NULL) {
135 dev_err(&dev->dev, "map_probe failed\n");
136 err = -ENXIO;
137 goto err_out;
138 } else {
139 devices_found++;
140 }
141 info->mtd[i]->owner = THIS_MODULE;
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100142 }
143
Stefan Roesedf66e712008-02-01 15:26:54 +0100144 if (devices_found == 1) {
145 info->cmtd = info->mtd[0];
146 } else if (devices_found > 1) {
147 /*
148 * We detected multiple devices. Concatenate them together.
149 */
150#ifdef CONFIG_MTD_CONCAT
Kay Sievers160bbab2008-12-23 10:00:14 +0000151 info->cmtd = mtd_concat_create(info->mtd, devices_found, dev_name(&dev->dev));
Stefan Roesedf66e712008-02-01 15:26:54 +0100152 if (info->cmtd == NULL)
153 err = -ENXIO;
154#else
155 printk(KERN_ERR "physmap-flash: multiple devices "
156 "found but MTD concat support disabled.\n");
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100157 err = -ENXIO;
Stefan Roesedf66e712008-02-01 15:26:54 +0100158#endif
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100159 }
Stefan Roesedf66e712008-02-01 15:26:54 +0100160 if (err)
161 goto err_out;
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100162
163#ifdef CONFIG_MTD_PARTITIONS
Atsushi Nemoto176bf2e2008-12-01 14:23:39 -0800164 err = parse_mtd_partitions(info->cmtd, part_probe_types, &parts, 0);
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100165 if (err > 0) {
Atsushi Nemoto176bf2e2008-12-01 14:23:39 -0800166 add_mtd_partitions(info->cmtd, parts, err);
167 kfree(parts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 return 0;
169 }
170
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100171 if (physmap_data->nr_parts) {
172 printk(KERN_NOTICE "Using physmap partition information\n");
Stefan Roesedf66e712008-02-01 15:26:54 +0100173 add_mtd_partitions(info->cmtd, physmap_data->parts,
174 physmap_data->nr_parts);
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100175 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Stefan Roesedf66e712008-02-01 15:26:54 +0100179 add_mtd_device(info->cmtd);
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100180 return 0;
181
182err_out:
183 physmap_flash_remove(dev);
184 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185}
186
Lennert Buytenhek17c2dae2006-09-21 23:16:48 +0200187#ifdef CONFIG_PM
188static int physmap_flash_suspend(struct platform_device *dev, pm_message_t state)
189{
190 struct physmap_flash_info *info = platform_get_drvdata(dev);
191 int ret = 0;
Stefan Roesedf66e712008-02-01 15:26:54 +0100192 int i;
Lennert Buytenhek17c2dae2006-09-21 23:16:48 +0200193
Anton Vorontsov4a5691c2008-03-28 14:16:09 -0700194 for (i = 0; i < MAX_RESOURCES && info->mtd[i]; i++)
Uwe Kleine-König4b5e33a2008-07-22 09:39:01 +0200195 if (info->mtd[i]->suspend) {
196 ret = info->mtd[i]->suspend(info->mtd[i]);
197 if (ret)
198 goto fail;
199 }
200
201 return 0;
202fail:
203 for (--i; i >= 0; --i)
204 if (info->mtd[i]->suspend) {
205 BUG_ON(!info->mtd[i]->resume);
206 info->mtd[i]->resume(info->mtd[i]);
207 }
Lennert Buytenhek17c2dae2006-09-21 23:16:48 +0200208
209 return ret;
210}
211
212static int physmap_flash_resume(struct platform_device *dev)
213{
214 struct physmap_flash_info *info = platform_get_drvdata(dev);
Stefan Roesedf66e712008-02-01 15:26:54 +0100215 int i;
216
Anton Vorontsov4a5691c2008-03-28 14:16:09 -0700217 for (i = 0; i < MAX_RESOURCES && info->mtd[i]; i++)
Robert Jarzmik7b249192008-07-22 09:39:00 +0200218 if (info->mtd[i]->resume)
219 info->mtd[i]->resume(info->mtd[i]);
Anton Vorontsov4a5691c2008-03-28 14:16:09 -0700220
Lennert Buytenhek17c2dae2006-09-21 23:16:48 +0200221 return 0;
222}
223
224static void physmap_flash_shutdown(struct platform_device *dev)
225{
226 struct physmap_flash_info *info = platform_get_drvdata(dev);
Stefan Roesedf66e712008-02-01 15:26:54 +0100227 int i;
228
Anton Vorontsov4a5691c2008-03-28 14:16:09 -0700229 for (i = 0; i < MAX_RESOURCES && info->mtd[i]; i++)
Robert Jarzmik7b249192008-07-22 09:39:00 +0200230 if (info->mtd[i]->suspend && info->mtd[i]->resume)
231 if (info->mtd[i]->suspend(info->mtd[i]) == 0)
232 info->mtd[i]->resume(info->mtd[i]);
Lennert Buytenhek17c2dae2006-09-21 23:16:48 +0200233}
akpm@linux-foundation.orgd5476682008-02-03 12:56:03 -0800234#else
235#define physmap_flash_suspend NULL
236#define physmap_flash_resume NULL
237#define physmap_flash_shutdown NULL
Lennert Buytenhek17c2dae2006-09-21 23:16:48 +0200238#endif
239
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100240static struct platform_driver physmap_flash_driver = {
241 .probe = physmap_flash_probe,
242 .remove = physmap_flash_remove,
Lennert Buytenhek17c2dae2006-09-21 23:16:48 +0200243 .suspend = physmap_flash_suspend,
244 .resume = physmap_flash_resume,
245 .shutdown = physmap_flash_shutdown,
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100246 .driver = {
247 .name = "physmap-flash",
Kay Sievers41d867c2008-04-18 13:44:26 -0700248 .owner = THIS_MODULE,
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100249 },
250};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
252
Mike Frysingerdcb3e132008-12-01 14:23:40 -0800253#ifdef CONFIG_MTD_PHYSMAP_COMPAT
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100254static struct physmap_flash_data physmap_flash_data = {
255 .width = CONFIG_MTD_PHYSMAP_BANKWIDTH,
256};
257
258static struct resource physmap_flash_resource = {
259 .start = CONFIG_MTD_PHYSMAP_START,
Sascha Hauer6d4f8222006-06-27 14:38:15 +0100260 .end = CONFIG_MTD_PHYSMAP_START + CONFIG_MTD_PHYSMAP_LEN - 1,
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100261 .flags = IORESOURCE_MEM,
262};
263
264static struct platform_device physmap_flash = {
265 .name = "physmap-flash",
266 .id = 0,
267 .dev = {
268 .platform_data = &physmap_flash_data,
269 },
270 .num_resources = 1,
271 .resource = &physmap_flash_resource,
272};
273
274void physmap_configure(unsigned long addr, unsigned long size,
275 int bankwidth, void (*set_vpp)(struct map_info *, int))
276{
277 physmap_flash_resource.start = addr;
278 physmap_flash_resource.end = addr + size - 1;
279 physmap_flash_data.width = bankwidth;
280 physmap_flash_data.set_vpp = set_vpp;
281}
282
283#ifdef CONFIG_MTD_PARTITIONS
284void physmap_set_partitions(struct mtd_partition *parts, int num_parts)
285{
286 physmap_flash_data.nr_parts = num_parts;
287 physmap_flash_data.parts = parts;
288}
289#endif
290#endif
291
292static int __init physmap_init(void)
293{
294 int err;
295
296 err = platform_driver_register(&physmap_flash_driver);
Mike Frysingerdcb3e132008-12-01 14:23:40 -0800297#ifdef CONFIG_MTD_PHYSMAP_COMPAT
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100298 if (err == 0)
299 platform_device_register(&physmap_flash);
300#endif
301
302 return err;
303}
304
305static void __exit physmap_exit(void)
306{
Mike Frysingerdcb3e132008-12-01 14:23:40 -0800307#ifdef CONFIG_MTD_PHYSMAP_COMPAT
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100308 platform_device_unregister(&physmap_flash);
309#endif
310 platform_driver_unregister(&physmap_flash_driver);
311}
312
313module_init(physmap_init);
314module_exit(physmap_exit);
315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316MODULE_LICENSE("GPL");
317MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
318MODULE_DESCRIPTION("Generic configurable MTD map driver");
Kay Sievers41d867c2008-04-18 13:44:26 -0700319
320/* legacy platform drivers can't hotplug or coldplg */
Mike Frysingerdcb3e132008-12-01 14:23:40 -0800321#ifndef CONFIG_MTD_PHYSMAP_COMPAT
Kay Sievers41d867c2008-04-18 13:44:26 -0700322/* work with hotplug and coldplug */
323MODULE_ALIAS("platform:physmap-flash");
324#endif