blob: 1a9b94f0ee54fb3fab12975cc6fcad08235b61fe [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 if (info->cmtd != info->mtd[0])
63 mtd_concat_destroy(info->cmtd);
H Hartley Sweeten8ce110a2009-10-20 12:23:33 -040064 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Stefan Roesedf66e712008-02-01 15:26:54 +010066 for (i = 0; i < MAX_RESOURCES; i++) {
Atsushi Nemotoe4808142009-02-11 13:12:17 -080067 if (info->mtd[i] != NULL)
Stefan Roesedf66e712008-02-01 15:26:54 +010068 map_destroy(info->mtd[i]);
Stefan Roesedf66e712008-02-01 15:26:54 +010069 }
Marc Zyngierb7281ca2011-05-18 10:51:48 +010070
71 if (physmap_data->exit)
72 physmap_data->exit(dev);
73
Lennert Buytenhek73566ed2006-05-07 17:16:36 +010074 return 0;
75}
76
Marc Zyngier667f3902011-05-18 10:51:55 +010077static void physmap_set_vpp(struct map_info *map, int state)
78{
79 struct platform_device *pdev;
80 struct physmap_flash_data *physmap_data;
81
82 pdev = (struct platform_device *)map->map_priv_1;
83 physmap_data = pdev->dev.platform_data;
84
85 if (physmap_data->set_vpp)
86 physmap_data->set_vpp(pdev, state);
87}
88
Alexey Korolevd8140832008-12-16 18:22:39 +000089static const char *rom_probe_types[] = {
90 "cfi_probe",
91 "jedec_probe",
92 "qinfo_probe",
93 "map_rom",
94 NULL };
Lennert Buytenhek73566ed2006-05-07 17:16:36 +010095#ifdef CONFIG_MTD_PARTITIONS
Marc Zyngier667f3902011-05-18 10:51:55 +010096static const char *part_probe_types[] = { "cmdlinepart", "RedBoot", "afs",
Marc Zyngierb7281ca2011-05-18 10:51:48 +010097 NULL };
Lennert Buytenhek73566ed2006-05-07 17:16:36 +010098#endif
99
100static int physmap_flash_probe(struct platform_device *dev)
101{
102 struct physmap_flash_data *physmap_data;
103 struct physmap_flash_info *info;
104 const char **probe_type;
Stefan Roesedf66e712008-02-01 15:26:54 +0100105 int err = 0;
106 int i;
107 int devices_found = 0;
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100108
109 physmap_data = dev->dev.platform_data;
110 if (physmap_data == NULL)
111 return -ENODEV;
112
Atsushi Nemoto3136e902008-11-26 10:26:29 +0000113 info = devm_kzalloc(&dev->dev, sizeof(struct physmap_flash_info),
114 GFP_KERNEL);
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100115 if (info == NULL) {
116 err = -ENOMEM;
117 goto err_out;
118 }
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100119
Marc Zyngierb7281ca2011-05-18 10:51:48 +0100120 if (physmap_data->init) {
121 err = physmap_data->init(dev);
122 if (err)
123 goto err_out;
124 }
125
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100126 platform_set_drvdata(dev, info);
127
Stefan Roesedf66e712008-02-01 15:26:54 +0100128 for (i = 0; i < dev->num_resources; i++) {
129 printk(KERN_NOTICE "physmap platform flash device: %.8llx at %.8llx\n",
H Hartley Sweeten1d90d2c2010-06-14 11:57:54 -0500130 (unsigned long long)resource_size(&dev->resource[i]),
Stefan Roesedf66e712008-02-01 15:26:54 +0100131 (unsigned long long)dev->resource[i].start);
132
Atsushi Nemoto3136e902008-11-26 10:26:29 +0000133 if (!devm_request_mem_region(&dev->dev,
134 dev->resource[i].start,
H Hartley Sweeten1d90d2c2010-06-14 11:57:54 -0500135 resource_size(&dev->resource[i]),
Kay Sievers160bbab2008-12-23 10:00:14 +0000136 dev_name(&dev->dev))) {
Stefan Roesedf66e712008-02-01 15:26:54 +0100137 dev_err(&dev->dev, "Could not reserve memory region\n");
138 err = -ENOMEM;
139 goto err_out;
140 }
141
Kay Sievers160bbab2008-12-23 10:00:14 +0000142 info->map[i].name = dev_name(&dev->dev);
Stefan Roesedf66e712008-02-01 15:26:54 +0100143 info->map[i].phys = dev->resource[i].start;
H Hartley Sweeten1d90d2c2010-06-14 11:57:54 -0500144 info->map[i].size = resource_size(&dev->resource[i]);
Stefan Roesedf66e712008-02-01 15:26:54 +0100145 info->map[i].bankwidth = physmap_data->width;
Marc Zyngier667f3902011-05-18 10:51:55 +0100146 info->map[i].set_vpp = physmap_set_vpp;
Alexey Korolevd8140832008-12-16 18:22:39 +0000147 info->map[i].pfow_base = physmap_data->pfow_base;
Marc Zyngier667f3902011-05-18 10:51:55 +0100148 info->map[i].map_priv_1 = (unsigned long)dev;
Stefan Roesedf66e712008-02-01 15:26:54 +0100149
Atsushi Nemoto3136e902008-11-26 10:26:29 +0000150 info->map[i].virt = devm_ioremap(&dev->dev, info->map[i].phys,
151 info->map[i].size);
Stefan Roesedf66e712008-02-01 15:26:54 +0100152 if (info->map[i].virt == NULL) {
153 dev_err(&dev->dev, "Failed to ioremap flash region\n");
Roel Kluin895fb492009-11-11 21:47:06 +0100154 err = -EIO;
Stefan Roesedf66e712008-02-01 15:26:54 +0100155 goto err_out;
156 }
157
158 simple_map_init(&info->map[i]);
159
160 probe_type = rom_probe_types;
Barry Song78ef7fa2010-01-15 15:50:14 +0800161 if (physmap_data->probe_type == NULL) {
162 for (; info->mtd[i] == NULL && *probe_type != NULL; probe_type++)
163 info->mtd[i] = do_map_probe(*probe_type, &info->map[i]);
164 } else
165 info->mtd[i] = do_map_probe(physmap_data->probe_type, &info->map[i]);
166
Stefan Roesedf66e712008-02-01 15:26:54 +0100167 if (info->mtd[i] == NULL) {
168 dev_err(&dev->dev, "map_probe failed\n");
169 err = -ENXIO;
170 goto err_out;
171 } else {
172 devices_found++;
173 }
174 info->mtd[i]->owner = THIS_MODULE;
David Brownell87f39f02009-03-26 00:42:50 -0700175 info->mtd[i]->dev.parent = &dev->dev;
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100176 }
177
Stefan Roesedf66e712008-02-01 15:26:54 +0100178 if (devices_found == 1) {
179 info->cmtd = info->mtd[0];
180 } else if (devices_found > 1) {
181 /*
182 * We detected multiple devices. Concatenate them together.
183 */
Kay Sievers160bbab2008-12-23 10:00:14 +0000184 info->cmtd = mtd_concat_create(info->mtd, devices_found, dev_name(&dev->dev));
Stefan Roesedf66e712008-02-01 15:26:54 +0100185 if (info->cmtd == NULL)
186 err = -ENXIO;
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100187 }
Stefan Roesedf66e712008-02-01 15:26:54 +0100188 if (err)
189 goto err_out;
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100190
H Hartley Sweeten8ce110a2009-10-20 12:23:33 -0400191#ifdef CONFIG_MTD_PARTITIONS
192 err = parse_mtd_partitions(info->cmtd, part_probe_types,
193 &info->parts, 0);
194 if (err > 0) {
195 add_mtd_partitions(info->cmtd, info->parts, err);
196 info->nr_parts = err;
197 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
H Hartley Sweeten8ce110a2009-10-20 12:23:33 -0400200 if (physmap_data->nr_parts) {
201 printk(KERN_NOTICE "Using physmap partition information\n");
202 add_mtd_partitions(info->cmtd, physmap_data->parts,
203 physmap_data->nr_parts);
204 return 0;
205 }
206#endif
207
Stefan Roesedf66e712008-02-01 15:26:54 +0100208 add_mtd_device(info->cmtd);
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100209 return 0;
210
211err_out:
212 physmap_flash_remove(dev);
213 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214}
215
Lennert Buytenhek17c2dae2006-09-21 23:16:48 +0200216#ifdef CONFIG_PM
Lennert Buytenhek17c2dae2006-09-21 23:16:48 +0200217static void physmap_flash_shutdown(struct platform_device *dev)
218{
219 struct physmap_flash_info *info = platform_get_drvdata(dev);
Stefan Roesedf66e712008-02-01 15:26:54 +0100220 int i;
221
Anton Vorontsov4a5691c2008-03-28 14:16:09 -0700222 for (i = 0; i < MAX_RESOURCES && info->mtd[i]; i++)
Robert Jarzmik7b249192008-07-22 09:39:00 +0200223 if (info->mtd[i]->suspend && info->mtd[i]->resume)
224 if (info->mtd[i]->suspend(info->mtd[i]) == 0)
225 info->mtd[i]->resume(info->mtd[i]);
Lennert Buytenhek17c2dae2006-09-21 23:16:48 +0200226}
akpm@linux-foundation.orgd5476682008-02-03 12:56:03 -0800227#else
akpm@linux-foundation.orgd5476682008-02-03 12:56:03 -0800228#define physmap_flash_shutdown NULL
Lennert Buytenhek17c2dae2006-09-21 23:16:48 +0200229#endif
230
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100231static struct platform_driver physmap_flash_driver = {
232 .probe = physmap_flash_probe,
233 .remove = physmap_flash_remove,
Lennert Buytenhek17c2dae2006-09-21 23:16:48 +0200234 .shutdown = physmap_flash_shutdown,
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100235 .driver = {
236 .name = "physmap-flash",
Kay Sievers41d867c2008-04-18 13:44:26 -0700237 .owner = THIS_MODULE,
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100238 },
239};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
241
Mike Frysingerdcb3e132008-12-01 14:23:40 -0800242#ifdef CONFIG_MTD_PHYSMAP_COMPAT
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100243static struct physmap_flash_data physmap_flash_data = {
244 .width = CONFIG_MTD_PHYSMAP_BANKWIDTH,
245};
246
247static struct resource physmap_flash_resource = {
248 .start = CONFIG_MTD_PHYSMAP_START,
Sascha Hauer6d4f8222006-06-27 14:38:15 +0100249 .end = CONFIG_MTD_PHYSMAP_START + CONFIG_MTD_PHYSMAP_LEN - 1,
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100250 .flags = IORESOURCE_MEM,
251};
252
253static struct platform_device physmap_flash = {
254 .name = "physmap-flash",
255 .id = 0,
256 .dev = {
257 .platform_data = &physmap_flash_data,
258 },
259 .num_resources = 1,
260 .resource = &physmap_flash_resource,
261};
262
263void physmap_configure(unsigned long addr, unsigned long size,
264 int bankwidth, void (*set_vpp)(struct map_info *, int))
265{
266 physmap_flash_resource.start = addr;
267 physmap_flash_resource.end = addr + size - 1;
268 physmap_flash_data.width = bankwidth;
269 physmap_flash_data.set_vpp = set_vpp;
270}
271
272#ifdef CONFIG_MTD_PARTITIONS
273void physmap_set_partitions(struct mtd_partition *parts, int num_parts)
274{
275 physmap_flash_data.nr_parts = num_parts;
276 physmap_flash_data.parts = parts;
277}
278#endif
279#endif
280
281static int __init physmap_init(void)
282{
283 int err;
284
285 err = platform_driver_register(&physmap_flash_driver);
Mike Frysingerdcb3e132008-12-01 14:23:40 -0800286#ifdef CONFIG_MTD_PHYSMAP_COMPAT
H Hartley Sweeten1ca5d2f2010-04-02 17:46:30 -0500287 if (err == 0) {
288 err = platform_device_register(&physmap_flash);
289 if (err)
290 platform_driver_unregister(&physmap_flash_driver);
291 }
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100292#endif
293
294 return err;
295}
296
297static void __exit physmap_exit(void)
298{
Mike Frysingerdcb3e132008-12-01 14:23:40 -0800299#ifdef CONFIG_MTD_PHYSMAP_COMPAT
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100300 platform_device_unregister(&physmap_flash);
301#endif
302 platform_driver_unregister(&physmap_flash_driver);
303}
304
305module_init(physmap_init);
306module_exit(physmap_exit);
307
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308MODULE_LICENSE("GPL");
309MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
310MODULE_DESCRIPTION("Generic configurable MTD map driver");
Kay Sievers41d867c2008-04-18 13:44:26 -0700311
312/* legacy platform drivers can't hotplug or coldplg */
Mike Frysingerdcb3e132008-12-01 14:23:40 -0800313#ifndef CONFIG_MTD_PHYSMAP_COMPAT
Kay Sievers41d867c2008-04-18 13:44:26 -0700314/* work with hotplug and coldplug */
315MODULE_ALIAS("platform:physmap-flash");
316#endif