Merge git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-unstable
[deliverable/linux.git] / drivers / mtd / maps / physmap.c
CommitLineData
1da177e4 1/*
1da177e4
LT
2 * 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>
73566edf
LB
15#include <linux/device.h>
16#include <linux/platform_device.h>
1da177e4
LT
17#include <linux/mtd/mtd.h>
18#include <linux/mtd/map.h>
1da177e4 19#include <linux/mtd/partitions.h>
2b9175c1 20#include <linux/mtd/physmap.h>
df66e716 21#include <linux/mtd/concat.h>
3136e903 22#include <linux/io.h>
1da177e4 23
df66e716
SR
24#define MAX_RESOURCES 4
25
73566edf 26struct physmap_flash_info {
df66e716
SR
27 struct mtd_info *mtd[MAX_RESOURCES];
28 struct mtd_info *cmtd;
29 struct map_info map[MAX_RESOURCES];
73566edf
LB
30#ifdef CONFIG_MTD_PARTITIONS
31 int nr_parts;
e480814f 32 struct mtd_partition *parts;
73566edf 33#endif
1da177e4
LT
34};
35
73566edf
LB
36static int physmap_flash_remove(struct platform_device *dev)
37{
38 struct physmap_flash_info *info;
39 struct physmap_flash_data *physmap_data;
df66e716 40 int i;
73566edf
LB
41
42 info = platform_get_drvdata(dev);
43 if (info == NULL)
44 return 0;
45 platform_set_drvdata(dev, NULL);
46
47 physmap_data = dev->dev.platform_data;
48
8ce110ac
HS
49 if (info->cmtd) {
50#ifdef CONFIG_MTD_PARTITIONS
4b56ffca 51 if (info->nr_parts || physmap_data->nr_parts) {
d58ab5cf 52 del_mtd_partitions(info->cmtd);
4b56ffca
HS
53
54 if (info->nr_parts)
55 kfree(info->parts);
56 } else {
d58ab5cf 57 del_mtd_device(info->cmtd);
4b56ffca 58 }
8ce110ac 59#else
d58ab5cf 60 del_mtd_device(info->cmtd);
8ce110ac 61#endif
e480814f 62#ifdef CONFIG_MTD_CONCAT
8ce110ac
HS
63 if (info->cmtd != info->mtd[0])
64 mtd_concat_destroy(info->cmtd);
df66e716 65#endif
8ce110ac 66 }
df66e716
SR
67
68 for (i = 0; i < MAX_RESOURCES; i++) {
e480814f 69 if (info->mtd[i] != NULL)
df66e716 70 map_destroy(info->mtd[i]);
73566edf 71 }
73566edf 72 return 0;
1da177e4 73}
1da177e4 74
d8140830
AK
75static const char *rom_probe_types[] = {
76 "cfi_probe",
77 "jedec_probe",
78 "qinfo_probe",
79 "map_rom",
80 NULL };
73566edf
LB
81#ifdef CONFIG_MTD_PARTITIONS
82static const char *part_probe_types[] = { "cmdlinepart", "RedBoot", NULL };
83#endif
84
85static int physmap_flash_probe(struct platform_device *dev)
1da177e4 86{
73566edf
LB
87 struct physmap_flash_data *physmap_data;
88 struct physmap_flash_info *info;
89 const char **probe_type;
df66e716
SR
90 int err = 0;
91 int i;
92 int devices_found = 0;
73566edf
LB
93
94 physmap_data = dev->dev.platform_data;
95 if (physmap_data == NULL)
96 return -ENODEV;
97
3136e903
AN
98 info = devm_kzalloc(&dev->dev, sizeof(struct physmap_flash_info),
99 GFP_KERNEL);
73566edf
LB
100 if (info == NULL) {
101 err = -ENOMEM;
102 goto err_out;
103 }
1da177e4 104
73566edf 105 platform_set_drvdata(dev, info);
1da177e4 106
df66e716
SR
107 for (i = 0; i < dev->num_resources; i++) {
108 printk(KERN_NOTICE "physmap platform flash device: %.8llx at %.8llx\n",
1d90d2c3 109 (unsigned long long)resource_size(&dev->resource[i]),
df66e716
SR
110 (unsigned long long)dev->resource[i].start);
111
3136e903
AN
112 if (!devm_request_mem_region(&dev->dev,
113 dev->resource[i].start,
1d90d2c3 114 resource_size(&dev->resource[i]),
160bbab3 115 dev_name(&dev->dev))) {
df66e716
SR
116 dev_err(&dev->dev, "Could not reserve memory region\n");
117 err = -ENOMEM;
118 goto err_out;
119 }
1da177e4 120
160bbab3 121 info->map[i].name = dev_name(&dev->dev);
df66e716 122 info->map[i].phys = dev->resource[i].start;
1d90d2c3 123 info->map[i].size = resource_size(&dev->resource[i]);
df66e716
SR
124 info->map[i].bankwidth = physmap_data->width;
125 info->map[i].set_vpp = physmap_data->set_vpp;
d8140830 126 info->map[i].pfow_base = physmap_data->pfow_base;
df66e716 127
3136e903
AN
128 info->map[i].virt = devm_ioremap(&dev->dev, info->map[i].phys,
129 info->map[i].size);
df66e716
SR
130 if (info->map[i].virt == NULL) {
131 dev_err(&dev->dev, "Failed to ioremap flash region\n");
895fb494 132 err = -EIO;
df66e716
SR
133 goto err_out;
134 }
73566edf 135
df66e716 136 simple_map_init(&info->map[i]);
1da177e4 137
df66e716 138 probe_type = rom_probe_types;
78ef7fab
BS
139 if (physmap_data->probe_type == NULL) {
140 for (; info->mtd[i] == NULL && *probe_type != NULL; probe_type++)
141 info->mtd[i] = do_map_probe(*probe_type, &info->map[i]);
142 } else
143 info->mtd[i] = do_map_probe(physmap_data->probe_type, &info->map[i]);
144
df66e716
SR
145 if (info->mtd[i] == NULL) {
146 dev_err(&dev->dev, "map_probe failed\n");
147 err = -ENXIO;
148 goto err_out;
149 } else {
150 devices_found++;
151 }
152 info->mtd[i]->owner = THIS_MODULE;
87f39f04 153 info->mtd[i]->dev.parent = &dev->dev;
df66e716 154 }
73566edf 155
df66e716
SR
156 if (devices_found == 1) {
157 info->cmtd = info->mtd[0];
158 } else if (devices_found > 1) {
159 /*
160 * We detected multiple devices. Concatenate them together.
161 */
162#ifdef CONFIG_MTD_CONCAT
160bbab3 163 info->cmtd = mtd_concat_create(info->mtd, devices_found, dev_name(&dev->dev));
df66e716
SR
164 if (info->cmtd == NULL)
165 err = -ENXIO;
166#else
167 printk(KERN_ERR "physmap-flash: multiple devices "
168 "found but MTD concat support disabled.\n");
73566edf 169 err = -ENXIO;
df66e716 170#endif
1da177e4 171 }
df66e716
SR
172 if (err)
173 goto err_out;
1da177e4 174
8ce110ac
HS
175#ifdef CONFIG_MTD_PARTITIONS
176 err = parse_mtd_partitions(info->cmtd, part_probe_types,
177 &info->parts, 0);
178 if (err > 0) {
179 add_mtd_partitions(info->cmtd, info->parts, err);
180 info->nr_parts = err;
181 return 0;
182 }
1da177e4 183
8ce110ac
HS
184 if (physmap_data->nr_parts) {
185 printk(KERN_NOTICE "Using physmap partition information\n");
186 add_mtd_partitions(info->cmtd, physmap_data->parts,
187 physmap_data->nr_parts);
188 return 0;
73566edf 189 }
8ce110ac 190#endif
73566edf 191
df66e716 192 add_mtd_device(info->cmtd);
73566edf
LB
193 return 0;
194
195err_out:
196 physmap_flash_remove(dev);
197 return err;
198}
199
17c2dae3 200#ifdef CONFIG_PM
17c2dae3
LB
201static void physmap_flash_shutdown(struct platform_device *dev)
202{
203 struct physmap_flash_info *info = platform_get_drvdata(dev);
df66e716
SR
204 int i;
205
4a5691c0 206 for (i = 0; i < MAX_RESOURCES && info->mtd[i]; i++)
7b249191
RJ
207 if (info->mtd[i]->suspend && info->mtd[i]->resume)
208 if (info->mtd[i]->suspend(info->mtd[i]) == 0)
209 info->mtd[i]->resume(info->mtd[i]);
17c2dae3 210}
d5476689 211#else
d5476689 212#define physmap_flash_shutdown NULL
17c2dae3
LB
213#endif
214
73566edf
LB
215static struct platform_driver physmap_flash_driver = {
216 .probe = physmap_flash_probe,
217 .remove = physmap_flash_remove,
17c2dae3 218 .shutdown = physmap_flash_shutdown,
73566edf
LB
219 .driver = {
220 .name = "physmap-flash",
41d867c9 221 .owner = THIS_MODULE,
73566edf
LB
222 },
223};
1da177e4 224
1da177e4 225
dcb3e137 226#ifdef CONFIG_MTD_PHYSMAP_COMPAT
73566edf
LB
227static struct physmap_flash_data physmap_flash_data = {
228 .width = CONFIG_MTD_PHYSMAP_BANKWIDTH,
229};
1da177e4 230
73566edf
LB
231static struct resource physmap_flash_resource = {
232 .start = CONFIG_MTD_PHYSMAP_START,
6d4f8224 233 .end = CONFIG_MTD_PHYSMAP_START + CONFIG_MTD_PHYSMAP_LEN - 1,
73566edf
LB
234 .flags = IORESOURCE_MEM,
235};
1da177e4 236
73566edf
LB
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};
246
247void physmap_configure(unsigned long addr, unsigned long size,
248 int bankwidth, void (*set_vpp)(struct map_info *, int))
1da177e4 249{
73566edf
LB
250 physmap_flash_resource.start = addr;
251 physmap_flash_resource.end = addr + size - 1;
252 physmap_flash_data.width = bankwidth;
253 physmap_flash_data.set_vpp = set_vpp;
254}
255
1da177e4 256#ifdef CONFIG_MTD_PARTITIONS
73566edf
LB
257void physmap_set_partitions(struct mtd_partition *parts, int num_parts)
258{
259 physmap_flash_data.nr_parts = num_parts;
260 physmap_flash_data.parts = parts;
261}
262#endif
1da177e4 263#endif
1da177e4 264
73566edf
LB
265static int __init physmap_init(void)
266{
267 int err;
268
269 err = platform_driver_register(&physmap_flash_driver);
dcb3e137 270#ifdef CONFIG_MTD_PHYSMAP_COMPAT
1ca5d2f0
HS
271 if (err == 0) {
272 err = platform_device_register(&physmap_flash);
273 if (err)
274 platform_driver_unregister(&physmap_flash_driver);
275 }
73566edf
LB
276#endif
277
278 return err;
1da177e4
LT
279}
280
73566edf
LB
281static void __exit physmap_exit(void)
282{
dcb3e137 283#ifdef CONFIG_MTD_PHYSMAP_COMPAT
73566edf
LB
284 platform_device_unregister(&physmap_flash);
285#endif
286 platform_driver_unregister(&physmap_flash_driver);
287}
1da177e4 288
73566edf
LB
289module_init(physmap_init);
290module_exit(physmap_exit);
1da177e4
LT
291
292MODULE_LICENSE("GPL");
293MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
294MODULE_DESCRIPTION("Generic configurable MTD map driver");
41d867c9
KS
295
296/* legacy platform drivers can't hotplug or coldplg */
dcb3e137 297#ifndef CONFIG_MTD_PHYSMAP_COMPAT
41d867c9
KS
298/* work with hotplug and coldplug */
299MODULE_ALIAS("platform:physmap-flash");
300#endif
This page took 0.716754 seconds and 5 git commands to generate.