blob: e7a592c8c76591e02257e5c39b891aefbf43d9d3 [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
Artem Bityutskiyf39cf6c2013-03-12 10:32:52 +020090static const char * const rom_probe_types[] = {
91 "cfi_probe", "jedec_probe", "qinfo_probe", "map_rom", NULL };
92
93static const char * const part_probe_types[] = {
94 "cmdlinepart", "RedBoot", "afs", NULL };
Lennert Buytenhek73566ed2006-05-07 17:16:36 +010095
96static int physmap_flash_probe(struct platform_device *dev)
97{
98 struct physmap_flash_data *physmap_data;
99 struct physmap_flash_info *info;
Artem Bityutskiyf39cf6c2013-03-12 10:32:52 +0200100 const char * const *probe_type;
101 const char * const *part_types;
Stefan Roesedf66e712008-02-01 15:26:54 +0100102 int err = 0;
103 int i;
104 int devices_found = 0;
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100105
106 physmap_data = dev->dev.platform_data;
107 if (physmap_data == NULL)
108 return -ENODEV;
109
Atsushi Nemoto3136e902008-11-26 10:26:29 +0000110 info = devm_kzalloc(&dev->dev, sizeof(struct physmap_flash_info),
111 GFP_KERNEL);
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100112 if (info == NULL) {
113 err = -ENOMEM;
114 goto err_out;
115 }
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100116
Marc Zyngierb7281ca2011-05-18 10:51:48 +0100117 if (physmap_data->init) {
118 err = physmap_data->init(dev);
119 if (err)
120 goto err_out;
121 }
122
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100123 platform_set_drvdata(dev, info);
124
Stefan Roesedf66e712008-02-01 15:26:54 +0100125 for (i = 0; i < dev->num_resources; i++) {
126 printk(KERN_NOTICE "physmap platform flash device: %.8llx at %.8llx\n",
H Hartley Sweeten1d90d2c2010-06-14 11:57:54 -0500127 (unsigned long long)resource_size(&dev->resource[i]),
Stefan Roesedf66e712008-02-01 15:26:54 +0100128 (unsigned long long)dev->resource[i].start);
129
Atsushi Nemoto3136e902008-11-26 10:26:29 +0000130 if (!devm_request_mem_region(&dev->dev,
131 dev->resource[i].start,
H Hartley Sweeten1d90d2c2010-06-14 11:57:54 -0500132 resource_size(&dev->resource[i]),
Kay Sievers160bbab2008-12-23 10:00:14 +0000133 dev_name(&dev->dev))) {
Stefan Roesedf66e712008-02-01 15:26:54 +0100134 dev_err(&dev->dev, "Could not reserve memory region\n");
135 err = -ENOMEM;
136 goto err_out;
137 }
138
Kay Sievers160bbab2008-12-23 10:00:14 +0000139 info->map[i].name = dev_name(&dev->dev);
Stefan Roesedf66e712008-02-01 15:26:54 +0100140 info->map[i].phys = dev->resource[i].start;
H Hartley Sweeten1d90d2c2010-06-14 11:57:54 -0500141 info->map[i].size = resource_size(&dev->resource[i]);
Stefan Roesedf66e712008-02-01 15:26:54 +0100142 info->map[i].bankwidth = physmap_data->width;
Marc Zyngier667f3902011-05-18 10:51:55 +0100143 info->map[i].set_vpp = physmap_set_vpp;
Alexey Korolevd8140832008-12-16 18:22:39 +0000144 info->map[i].pfow_base = physmap_data->pfow_base;
Marc Zyngier667f3902011-05-18 10:51:55 +0100145 info->map[i].map_priv_1 = (unsigned long)dev;
Stefan Roesedf66e712008-02-01 15:26:54 +0100146
Atsushi Nemoto3136e902008-11-26 10:26:29 +0000147 info->map[i].virt = devm_ioremap(&dev->dev, info->map[i].phys,
148 info->map[i].size);
Stefan Roesedf66e712008-02-01 15:26:54 +0100149 if (info->map[i].virt == NULL) {
150 dev_err(&dev->dev, "Failed to ioremap flash region\n");
Roel Kluin895fb492009-11-11 21:47:06 +0100151 err = -EIO;
Stefan Roesedf66e712008-02-01 15:26:54 +0100152 goto err_out;
153 }
154
155 simple_map_init(&info->map[i]);
156
157 probe_type = rom_probe_types;
Barry Song78ef7fa2010-01-15 15:50:14 +0800158 if (physmap_data->probe_type == NULL) {
159 for (; info->mtd[i] == NULL && *probe_type != NULL; probe_type++)
160 info->mtd[i] = do_map_probe(*probe_type, &info->map[i]);
161 } else
162 info->mtd[i] = do_map_probe(physmap_data->probe_type, &info->map[i]);
163
Stefan Roesedf66e712008-02-01 15:26:54 +0100164 if (info->mtd[i] == NULL) {
165 dev_err(&dev->dev, "map_probe failed\n");
166 err = -ENXIO;
167 goto err_out;
168 } else {
169 devices_found++;
170 }
171 info->mtd[i]->owner = THIS_MODULE;
David Brownell87f39f02009-03-26 00:42:50 -0700172 info->mtd[i]->dev.parent = &dev->dev;
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100173 }
174
Stefan Roesedf66e712008-02-01 15:26:54 +0100175 if (devices_found == 1) {
176 info->cmtd = info->mtd[0];
177 } else if (devices_found > 1) {
178 /*
179 * We detected multiple devices. Concatenate them together.
180 */
Kay Sievers160bbab2008-12-23 10:00:14 +0000181 info->cmtd = mtd_concat_create(info->mtd, devices_found, dev_name(&dev->dev));
Stefan Roesedf66e712008-02-01 15:26:54 +0100182 if (info->cmtd == NULL)
183 err = -ENXIO;
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100184 }
Stefan Roesedf66e712008-02-01 15:26:54 +0100185 if (err)
186 goto err_out;
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100187
Paul Parsons876fe762012-03-07 14:12:08 +0000188 spin_lock_init(&info->vpp_lock);
189
Jonas Gorski529688f2011-12-05 16:08:09 +0100190 part_types = physmap_data->part_probe_types ? : part_probe_types;
191
Artem Bityutskiy42d7fbe2012-03-09 19:24:26 +0200192 mtd_device_parse_register(info->cmtd, part_types, NULL,
Dmitry Eremin-Solenikovd45fd122011-06-02 17:59:58 +0400193 physmap_data->parts, physmap_data->nr_parts);
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100194 return 0;
195
196err_out:
197 physmap_flash_remove(dev);
198 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199}
200
Lennert Buytenhek17c2dae2006-09-21 23:16:48 +0200201#ifdef CONFIG_PM
Lennert Buytenhek17c2dae2006-09-21 23:16:48 +0200202static void physmap_flash_shutdown(struct platform_device *dev)
203{
204 struct physmap_flash_info *info = platform_get_drvdata(dev);
Stefan Roesedf66e712008-02-01 15:26:54 +0100205 int i;
206
Anton Vorontsov4a5691c2008-03-28 14:16:09 -0700207 for (i = 0; i < MAX_RESOURCES && info->mtd[i]; i++)
Artem Bityutskiy079c9852011-12-30 17:15:59 +0200208 if (mtd_suspend(info->mtd[i]) == 0)
209 mtd_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};
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100246#endif
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100247
248static int __init physmap_init(void)
249{
250 int err;
251
252 err = platform_driver_register(&physmap_flash_driver);
Mike Frysingerdcb3e132008-12-01 14:23:40 -0800253#ifdef CONFIG_MTD_PHYSMAP_COMPAT
H Hartley Sweeten1ca5d2f2010-04-02 17:46:30 -0500254 if (err == 0) {
255 err = platform_device_register(&physmap_flash);
256 if (err)
257 platform_driver_unregister(&physmap_flash_driver);
258 }
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100259#endif
260
261 return err;
262}
263
264static void __exit physmap_exit(void)
265{
Mike Frysingerdcb3e132008-12-01 14:23:40 -0800266#ifdef CONFIG_MTD_PHYSMAP_COMPAT
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100267 platform_device_unregister(&physmap_flash);
268#endif
269 platform_driver_unregister(&physmap_flash_driver);
270}
271
272module_init(physmap_init);
273module_exit(physmap_exit);
274
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275MODULE_LICENSE("GPL");
276MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
277MODULE_DESCRIPTION("Generic configurable MTD map driver");
Kay Sievers41d867c2008-04-18 13:44:26 -0700278
279/* legacy platform drivers can't hotplug or coldplg */
Mike Frysingerdcb3e132008-12-01 14:23:40 -0800280#ifndef CONFIG_MTD_PHYSMAP_COMPAT
Kay Sievers41d867c2008-04-18 13:44:26 -0700281/* work with hotplug and coldplug */
282MODULE_ALIAS("platform:physmap-flash");
283#endif