blob: 65f52d4804a28b07aa691175e5a26818c3277ac5 [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
H Hartley Sweeten4b56ffc2009-10-19 13:31:46 -040047 if (info->cmtd == NULL)
48 return 0;
49
Lennert Buytenhek73566ed2006-05-07 17:16:36 +010050 physmap_data = dev->dev.platform_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
H Hartley Sweeten4b56ffc2009-10-19 13:31:46 -040052 if (mtd_has_partitions()) {
53 if (info->nr_parts || physmap_data->nr_parts) {
Atsushi Nemotod58ab5c2009-03-10 12:55:55 -070054 del_mtd_partitions(info->cmtd);
H Hartley Sweeten4b56ffc2009-10-19 13:31:46 -040055
56 if (info->nr_parts)
57 kfree(info->parts);
58 } else {
Atsushi Nemotod58ab5c2009-03-10 12:55:55 -070059 del_mtd_device(info->cmtd);
H Hartley Sweeten4b56ffc2009-10-19 13:31:46 -040060 }
61 } else {
Atsushi Nemotod58ab5c2009-03-10 12:55:55 -070062 del_mtd_device(info->cmtd);
Atsushi Nemotod58ab5c2009-03-10 12:55:55 -070063 }
Atsushi Nemotoe4808142009-02-11 13:12:17 -080064
65#ifdef CONFIG_MTD_CONCAT
66 if (info->cmtd != info->mtd[0])
Stefan Roesedf66e712008-02-01 15:26:54 +010067 mtd_concat_destroy(info->cmtd);
Stefan Roesedf66e712008-02-01 15:26:54 +010068#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Stefan Roesedf66e712008-02-01 15:26:54 +010070 for (i = 0; i < MAX_RESOURCES; i++) {
Atsushi Nemotoe4808142009-02-11 13:12:17 -080071 if (info->mtd[i] != NULL)
Stefan Roesedf66e712008-02-01 15:26:54 +010072 map_destroy(info->mtd[i]);
Stefan Roesedf66e712008-02-01 15:26:54 +010073 }
Lennert Buytenhek73566ed2006-05-07 17:16:36 +010074 return 0;
75}
76
Alexey Korolevd8140832008-12-16 18:22:39 +000077static const char *rom_probe_types[] = {
78 "cfi_probe",
79 "jedec_probe",
80 "qinfo_probe",
81 "map_rom",
82 NULL };
Lennert Buytenhek73566ed2006-05-07 17:16:36 +010083#ifdef CONFIG_MTD_PARTITIONS
84static const char *part_probe_types[] = { "cmdlinepart", "RedBoot", NULL };
85#endif
86
87static int physmap_flash_probe(struct platform_device *dev)
88{
89 struct physmap_flash_data *physmap_data;
90 struct physmap_flash_info *info;
91 const char **probe_type;
Stefan Roesedf66e712008-02-01 15:26:54 +010092 int err = 0;
93 int i;
94 int devices_found = 0;
Lennert Buytenhek73566ed2006-05-07 17:16:36 +010095
96 physmap_data = dev->dev.platform_data;
97 if (physmap_data == NULL)
98 return -ENODEV;
99
Atsushi Nemoto3136e902008-11-26 10:26:29 +0000100 info = devm_kzalloc(&dev->dev, sizeof(struct physmap_flash_info),
101 GFP_KERNEL);
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100102 if (info == NULL) {
103 err = -ENOMEM;
104 goto err_out;
105 }
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100106
107 platform_set_drvdata(dev, info);
108
Stefan Roesedf66e712008-02-01 15:26:54 +0100109 for (i = 0; i < dev->num_resources; i++) {
110 printk(KERN_NOTICE "physmap platform flash device: %.8llx at %.8llx\n",
111 (unsigned long long)(dev->resource[i].end - dev->resource[i].start + 1),
112 (unsigned long long)dev->resource[i].start);
113
Atsushi Nemoto3136e902008-11-26 10:26:29 +0000114 if (!devm_request_mem_region(&dev->dev,
115 dev->resource[i].start,
116 dev->resource[i].end - dev->resource[i].start + 1,
Kay Sievers160bbab2008-12-23 10:00:14 +0000117 dev_name(&dev->dev))) {
Stefan Roesedf66e712008-02-01 15:26:54 +0100118 dev_err(&dev->dev, "Could not reserve memory region\n");
119 err = -ENOMEM;
120 goto err_out;
121 }
122
Kay Sievers160bbab2008-12-23 10:00:14 +0000123 info->map[i].name = dev_name(&dev->dev);
Stefan Roesedf66e712008-02-01 15:26:54 +0100124 info->map[i].phys = dev->resource[i].start;
125 info->map[i].size = dev->resource[i].end - dev->resource[i].start + 1;
126 info->map[i].bankwidth = physmap_data->width;
127 info->map[i].set_vpp = physmap_data->set_vpp;
Alexey Korolevd8140832008-12-16 18:22:39 +0000128 info->map[i].pfow_base = physmap_data->pfow_base;
Stefan Roesedf66e712008-02-01 15:26:54 +0100129
Atsushi Nemoto3136e902008-11-26 10:26:29 +0000130 info->map[i].virt = devm_ioremap(&dev->dev, info->map[i].phys,
131 info->map[i].size);
Stefan Roesedf66e712008-02-01 15:26:54 +0100132 if (info->map[i].virt == NULL) {
133 dev_err(&dev->dev, "Failed to ioremap flash region\n");
134 err = EIO;
135 goto err_out;
136 }
137
138 simple_map_init(&info->map[i]);
139
140 probe_type = rom_probe_types;
141 for (; info->mtd[i] == NULL && *probe_type != NULL; probe_type++)
142 info->mtd[i] = do_map_probe(*probe_type, &info->map[i]);
143 if (info->mtd[i] == NULL) {
144 dev_err(&dev->dev, "map_probe failed\n");
145 err = -ENXIO;
146 goto err_out;
147 } else {
148 devices_found++;
149 }
150 info->mtd[i]->owner = THIS_MODULE;
David Brownell87f39f02009-03-26 00:42:50 -0700151 info->mtd[i]->dev.parent = &dev->dev;
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100152 }
153
Stefan Roesedf66e712008-02-01 15:26:54 +0100154 if (devices_found == 1) {
155 info->cmtd = info->mtd[0];
156 } else if (devices_found > 1) {
157 /*
158 * We detected multiple devices. Concatenate them together.
159 */
160#ifdef CONFIG_MTD_CONCAT
Kay Sievers160bbab2008-12-23 10:00:14 +0000161 info->cmtd = mtd_concat_create(info->mtd, devices_found, dev_name(&dev->dev));
Stefan Roesedf66e712008-02-01 15:26:54 +0100162 if (info->cmtd == NULL)
163 err = -ENXIO;
164#else
165 printk(KERN_ERR "physmap-flash: multiple devices "
166 "found but MTD concat support disabled.\n");
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100167 err = -ENXIO;
Stefan Roesedf66e712008-02-01 15:26:54 +0100168#endif
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100169 }
Stefan Roesedf66e712008-02-01 15:26:54 +0100170 if (err)
171 goto err_out;
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100172
H Hartley Sweeten4b56ffc2009-10-19 13:31:46 -0400173 if (mtd_has_partitions()) {
174 err = parse_mtd_partitions(info->cmtd, part_probe_types,
175 &info->parts, 0);
176 if (err > 0) {
177 add_mtd_partitions(info->cmtd, info->parts, err);
178 info->nr_parts = err;
179 return 0;
180 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
H Hartley Sweeten4b56ffc2009-10-19 13:31:46 -0400182 if (physmap_data->nr_parts) {
183 printk(KERN_NOTICE "Using physmap partition information\n");
184 add_mtd_partitions(info->cmtd, physmap_data->parts,
185 physmap_data->nr_parts);
186 return 0;
187 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Stefan Roesedf66e712008-02-01 15:26:54 +0100190 add_mtd_device(info->cmtd);
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100191 return 0;
192
193err_out:
194 physmap_flash_remove(dev);
195 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196}
197
Lennert Buytenhek17c2dae2006-09-21 23:16:48 +0200198#ifdef CONFIG_PM
Lennert Buytenhek17c2dae2006-09-21 23:16:48 +0200199static void physmap_flash_shutdown(struct platform_device *dev)
200{
201 struct physmap_flash_info *info = platform_get_drvdata(dev);
Stefan Roesedf66e712008-02-01 15:26:54 +0100202 int i;
203
Anton Vorontsov4a5691c2008-03-28 14:16:09 -0700204 for (i = 0; i < MAX_RESOURCES && info->mtd[i]; i++)
Robert Jarzmik7b249192008-07-22 09:39:00 +0200205 if (info->mtd[i]->suspend && info->mtd[i]->resume)
206 if (info->mtd[i]->suspend(info->mtd[i]) == 0)
207 info->mtd[i]->resume(info->mtd[i]);
Lennert Buytenhek17c2dae2006-09-21 23:16:48 +0200208}
akpm@linux-foundation.orgd5476682008-02-03 12:56:03 -0800209#else
akpm@linux-foundation.orgd5476682008-02-03 12:56:03 -0800210#define physmap_flash_shutdown NULL
Lennert Buytenhek17c2dae2006-09-21 23:16:48 +0200211#endif
212
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100213static struct platform_driver physmap_flash_driver = {
214 .probe = physmap_flash_probe,
215 .remove = physmap_flash_remove,
Lennert Buytenhek17c2dae2006-09-21 23:16:48 +0200216 .shutdown = physmap_flash_shutdown,
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100217 .driver = {
218 .name = "physmap-flash",
Kay Sievers41d867c2008-04-18 13:44:26 -0700219 .owner = THIS_MODULE,
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100220 },
221};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
223
Mike Frysingerdcb3e132008-12-01 14:23:40 -0800224#ifdef CONFIG_MTD_PHYSMAP_COMPAT
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100225static struct physmap_flash_data physmap_flash_data = {
226 .width = CONFIG_MTD_PHYSMAP_BANKWIDTH,
227};
228
229static struct resource physmap_flash_resource = {
230 .start = CONFIG_MTD_PHYSMAP_START,
Sascha Hauer6d4f8222006-06-27 14:38:15 +0100231 .end = CONFIG_MTD_PHYSMAP_START + CONFIG_MTD_PHYSMAP_LEN - 1,
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100232 .flags = IORESOURCE_MEM,
233};
234
235static struct platform_device physmap_flash = {
236 .name = "physmap-flash",
237 .id = 0,
238 .dev = {
239 .platform_data = &physmap_flash_data,
240 },
241 .num_resources = 1,
242 .resource = &physmap_flash_resource,
243};
244
245void physmap_configure(unsigned long addr, unsigned long size,
246 int bankwidth, void (*set_vpp)(struct map_info *, int))
247{
248 physmap_flash_resource.start = addr;
249 physmap_flash_resource.end = addr + size - 1;
250 physmap_flash_data.width = bankwidth;
251 physmap_flash_data.set_vpp = set_vpp;
252}
253
254#ifdef CONFIG_MTD_PARTITIONS
255void physmap_set_partitions(struct mtd_partition *parts, int num_parts)
256{
257 physmap_flash_data.nr_parts = num_parts;
258 physmap_flash_data.parts = parts;
259}
260#endif
261#endif
262
263static int __init physmap_init(void)
264{
265 int err;
266
267 err = platform_driver_register(&physmap_flash_driver);
Mike Frysingerdcb3e132008-12-01 14:23:40 -0800268#ifdef CONFIG_MTD_PHYSMAP_COMPAT
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100269 if (err == 0)
270 platform_device_register(&physmap_flash);
271#endif
272
273 return err;
274}
275
276static void __exit physmap_exit(void)
277{
Mike Frysingerdcb3e132008-12-01 14:23:40 -0800278#ifdef CONFIG_MTD_PHYSMAP_COMPAT
Lennert Buytenhek73566ed2006-05-07 17:16:36 +0100279 platform_device_unregister(&physmap_flash);
280#endif
281 platform_driver_unregister(&physmap_flash_driver);
282}
283
284module_init(physmap_init);
285module_exit(physmap_exit);
286
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287MODULE_LICENSE("GPL");
288MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
289MODULE_DESCRIPTION("Generic configurable MTD map driver");
Kay Sievers41d867c2008-04-18 13:44:26 -0700290
291/* legacy platform drivers can't hotplug or coldplg */
Mike Frysingerdcb3e132008-12-01 14:23:40 -0800292#ifndef CONFIG_MTD_PHYSMAP_COMPAT
Kay Sievers41d867c2008-04-18 13:44:26 -0700293/* work with hotplug and coldplug */
294MODULE_ALIAS("platform:physmap-flash");
295#endif