blob: 7e9233c503ab763832fbfead6cb687177f668dc0 [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];
Paul Parsons876fe762012-03-07 14:12:08 +000030 spinlock_t vpp_lock;
31 int vpp_refcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070032};
33
Lennert Buytenhek73566ed2006-05-07 17:16:36 +010034static int physmap_flash_remove(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070035{
Lennert Buytenhek73566ed2006-05-07 17:16:36 +010036 struct physmap_flash_info *info;
37 struct physmap_flash_data *physmap_data;
Stefan Roesedf66e712008-02-01 15:26:54 +010038 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Lennert Buytenhek73566ed2006-05-07 17:16:36 +010040 info = platform_get_drvdata(dev);
41 if (info == NULL)
42 return 0;
43 platform_set_drvdata(dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Lennert Buytenhek73566ed2006-05-07 17:16:36 +010045 physmap_data = dev->dev.platform_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
H Hartley Sweeten8ce110a2009-10-20 12:23:33 -040047 if (info->cmtd) {
Jamie Iles984e6d82011-05-23 10:22:45 +010048 mtd_device_unregister(info->cmtd);
H Hartley Sweeten8ce110a2009-10-20 12:23:33 -040049 if (info->cmtd != info->mtd[0])
50 mtd_concat_destroy(info->cmtd);
H Hartley Sweeten8ce110a2009-10-20 12:23:33 -040051 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Stefan Roesedf66e712008-02-01 15:26:54 +010053 for (i = 0; i < MAX_RESOURCES; i++) {
Atsushi Nemotoe4808142009-02-11 13:12:17 -080054 if (info->mtd[i] != NULL)
Stefan Roesedf66e712008-02-01 15:26:54 +010055 map_destroy(info->mtd[i]);
Stefan Roesedf66e712008-02-01 15:26:54 +010056 }
Marc Zyngierb7281ca2011-05-18 10:51:48 +010057
58 if (physmap_data->exit)
59 physmap_data->exit(dev);
60
Lennert Buytenhek73566ed2006-05-07 17:16:36 +010061 return 0;
62}
63
Marc Zyngier667f3902011-05-18 10:51:55 +010064static void physmap_set_vpp(struct map_info *map, int state)
65{
66 struct platform_device *pdev;
67 struct physmap_flash_data *physmap_data;
Paul Parsons876fe762012-03-07 14:12:08 +000068 struct physmap_flash_info *info;
69 unsigned long flags;
Marc Zyngier667f3902011-05-18 10:51:55 +010070
71 pdev = (struct platform_device *)map->map_priv_1;
72 physmap_data = pdev->dev.platform_data;
73
Paul Parsons876fe762012-03-07 14:12:08 +000074 if (!physmap_data->set_vpp)
75 return;
76
77 info = platform_get_drvdata(pdev);
78
79 spin_lock_irqsave(&info->vpp_lock, flags);
80 if (state) {
81 if (++info->vpp_refcnt == 1) /* first nested 'on' */
82 physmap_data->set_vpp(pdev, 1);
83 } else {
84 if (--info->vpp_refcnt == 0) /* last nested 'off' */
85 physmap_data->set_vpp(pdev, 0);
86 }
87 spin_unlock_irqrestore(&info->vpp_lock, flags);
Marc Zyngier667f3902011-05-18 10:51:55 +010088}
89
Alexey Korolevd8140832008-12-16 18:22:39 +000090static const char *rom_probe_types[] = {
91 "cfi_probe",
92 "jedec_probe",
93 "qinfo_probe",
94 "map_rom",
95 NULL };
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
99static int physmap_flash_probe(struct platform_device *dev)
100{
101 struct physmap_flash_data *physmap_data;
102 struct physmap_flash_info *info;
103 const char **probe_type;
Jonas Gorski529688f2011-12-05 16:08:09 +0100104 const char **part_types;
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
Paul Parsons876fe762012-03-07 14:12:08 +0000191 spin_lock_init(&info->vpp_lock);
192
Jonas Gorski529688f2011-12-05 16:08:09 +0100193 part_types = physmap_data->part_probe_types ? : part_probe_types;
194
195 mtd_device_parse_register(info->cmtd, part_types, 0,
Dmitry Eremin-Solenikovd45fd122011-06-02 17:59:58 +0400196 physmap_data->parts, physmap_data->nr_parts);
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100197 return 0;
198
199err_out:
200 physmap_flash_remove(dev);
201 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202}
203
Lennert Buytenhek17c2dae2006-09-21 23:16:48 +0200204#ifdef CONFIG_PM
Lennert Buytenhek17c2dae2006-09-21 23:16:48 +0200205static void physmap_flash_shutdown(struct platform_device *dev)
206{
207 struct physmap_flash_info *info = platform_get_drvdata(dev);
Stefan Roesedf66e712008-02-01 15:26:54 +0100208 int i;
209
Anton Vorontsov4a5691c2008-03-28 14:16:09 -0700210 for (i = 0; i < MAX_RESOURCES && info->mtd[i]; i++)
Artem Bityutskiy079c9852011-12-30 17:15:59 +0200211 if (mtd_suspend(info->mtd[i]) == 0)
212 mtd_resume(info->mtd[i]);
Lennert Buytenhek17c2dae2006-09-21 23:16:48 +0200213}
akpm@linux-foundation.orgd5476682008-02-03 12:56:03 -0800214#else
akpm@linux-foundation.orgd5476682008-02-03 12:56:03 -0800215#define physmap_flash_shutdown NULL
Lennert Buytenhek17c2dae2006-09-21 23:16:48 +0200216#endif
217
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100218static struct platform_driver physmap_flash_driver = {
219 .probe = physmap_flash_probe,
220 .remove = physmap_flash_remove,
Lennert Buytenhek17c2dae2006-09-21 23:16:48 +0200221 .shutdown = physmap_flash_shutdown,
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100222 .driver = {
223 .name = "physmap-flash",
Kay Sievers41d867c2008-04-18 13:44:26 -0700224 .owner = THIS_MODULE,
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100225 },
226};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228
Mike Frysingerdcb3e132008-12-01 14:23:40 -0800229#ifdef CONFIG_MTD_PHYSMAP_COMPAT
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100230static struct physmap_flash_data physmap_flash_data = {
231 .width = CONFIG_MTD_PHYSMAP_BANKWIDTH,
232};
233
234static struct resource physmap_flash_resource = {
235 .start = CONFIG_MTD_PHYSMAP_START,
Sascha Hauer6d4f8222006-06-27 14:38:15 +0100236 .end = CONFIG_MTD_PHYSMAP_START + CONFIG_MTD_PHYSMAP_LEN - 1,
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100237 .flags = IORESOURCE_MEM,
238};
239
240static struct platform_device physmap_flash = {
241 .name = "physmap-flash",
242 .id = 0,
243 .dev = {
244 .platform_data = &physmap_flash_data,
245 },
246 .num_resources = 1,
247 .resource = &physmap_flash_resource,
248};
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100249#endif
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100250
251static int __init physmap_init(void)
252{
253 int err;
254
255 err = platform_driver_register(&physmap_flash_driver);
Mike Frysingerdcb3e132008-12-01 14:23:40 -0800256#ifdef CONFIG_MTD_PHYSMAP_COMPAT
H Hartley Sweeten1ca5d2f2010-04-02 17:46:30 -0500257 if (err == 0) {
258 err = platform_device_register(&physmap_flash);
259 if (err)
260 platform_driver_unregister(&physmap_flash_driver);
261 }
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100262#endif
263
264 return err;
265}
266
267static void __exit physmap_exit(void)
268{
Mike Frysingerdcb3e132008-12-01 14:23:40 -0800269#ifdef CONFIG_MTD_PHYSMAP_COMPAT
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100270 platform_device_unregister(&physmap_flash);
271#endif
272 platform_driver_unregister(&physmap_flash_driver);
273}
274
275module_init(physmap_init);
276module_exit(physmap_exit);
277
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278MODULE_LICENSE("GPL");
279MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
280MODULE_DESCRIPTION("Generic configurable MTD map driver");
Kay Sievers41d867c2008-04-18 13:44:26 -0700281
282/* legacy platform drivers can't hotplug or coldplg */
Mike Frysingerdcb3e132008-12-01 14:23:40 -0800283#ifndef CONFIG_MTD_PHYSMAP_COMPAT
Kay Sievers41d867c2008-04-18 13:44:26 -0700284/* work with hotplug and coldplug */
285MODULE_ALIAS("platform:physmap-flash");
286#endif