]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/mtd/maps/physmap.c
mtd: do not use plain 0 as NULL
[mirror_ubuntu-artful-kernel.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];
876fe76d
PP
30 spinlock_t vpp_lock;
31 int vpp_refcnt;
1da177e4
LT
32};
33
73566edf
LB
34static int physmap_flash_remove(struct platform_device *dev)
35{
36 struct physmap_flash_info *info;
37 struct physmap_flash_data *physmap_data;
df66e716 38 int i;
73566edf
LB
39
40 info = platform_get_drvdata(dev);
41 if (info == NULL)
42 return 0;
43 platform_set_drvdata(dev, NULL);
44
45 physmap_data = dev->dev.platform_data;
46
8ce110ac 47 if (info->cmtd) {
984e6d8e 48 mtd_device_unregister(info->cmtd);
8ce110ac
HS
49 if (info->cmtd != info->mtd[0])
50 mtd_concat_destroy(info->cmtd);
8ce110ac 51 }
df66e716
SR
52
53 for (i = 0; i < MAX_RESOURCES; i++) {
e480814f 54 if (info->mtd[i] != NULL)
df66e716 55 map_destroy(info->mtd[i]);
73566edf 56 }
b7281ca2
MZ
57
58 if (physmap_data->exit)
59 physmap_data->exit(dev);
60
73566edf 61 return 0;
1da177e4 62}
1da177e4 63
667f390b
MZ
64static void physmap_set_vpp(struct map_info *map, int state)
65{
66 struct platform_device *pdev;
67 struct physmap_flash_data *physmap_data;
876fe76d
PP
68 struct physmap_flash_info *info;
69 unsigned long flags;
667f390b
MZ
70
71 pdev = (struct platform_device *)map->map_priv_1;
72 physmap_data = pdev->dev.platform_data;
73
876fe76d
PP
74 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);
667f390b
MZ
88}
89
d8140830
AK
90static const char *rom_probe_types[] = {
91 "cfi_probe",
92 "jedec_probe",
93 "qinfo_probe",
94 "map_rom",
95 NULL };
667f390b 96static const char *part_probe_types[] = { "cmdlinepart", "RedBoot", "afs",
b7281ca2 97 NULL };
73566edf
LB
98
99static int physmap_flash_probe(struct platform_device *dev)
1da177e4 100{
73566edf
LB
101 struct physmap_flash_data *physmap_data;
102 struct physmap_flash_info *info;
103 const char **probe_type;
529688fe 104 const char **part_types;
df66e716
SR
105 int err = 0;
106 int i;
107 int devices_found = 0;
73566edf
LB
108
109 physmap_data = dev->dev.platform_data;
110 if (physmap_data == NULL)
111 return -ENODEV;
112
3136e903
AN
113 info = devm_kzalloc(&dev->dev, sizeof(struct physmap_flash_info),
114 GFP_KERNEL);
73566edf
LB
115 if (info == NULL) {
116 err = -ENOMEM;
117 goto err_out;
118 }
1da177e4 119
b7281ca2
MZ
120 if (physmap_data->init) {
121 err = physmap_data->init(dev);
122 if (err)
123 goto err_out;
124 }
125
73566edf 126 platform_set_drvdata(dev, info);
1da177e4 127
df66e716
SR
128 for (i = 0; i < dev->num_resources; i++) {
129 printk(KERN_NOTICE "physmap platform flash device: %.8llx at %.8llx\n",
1d90d2c3 130 (unsigned long long)resource_size(&dev->resource[i]),
df66e716
SR
131 (unsigned long long)dev->resource[i].start);
132
3136e903
AN
133 if (!devm_request_mem_region(&dev->dev,
134 dev->resource[i].start,
1d90d2c3 135 resource_size(&dev->resource[i]),
160bbab3 136 dev_name(&dev->dev))) {
df66e716
SR
137 dev_err(&dev->dev, "Could not reserve memory region\n");
138 err = -ENOMEM;
139 goto err_out;
140 }
1da177e4 141
160bbab3 142 info->map[i].name = dev_name(&dev->dev);
df66e716 143 info->map[i].phys = dev->resource[i].start;
1d90d2c3 144 info->map[i].size = resource_size(&dev->resource[i]);
df66e716 145 info->map[i].bankwidth = physmap_data->width;
667f390b 146 info->map[i].set_vpp = physmap_set_vpp;
d8140830 147 info->map[i].pfow_base = physmap_data->pfow_base;
667f390b 148 info->map[i].map_priv_1 = (unsigned long)dev;
df66e716 149
3136e903
AN
150 info->map[i].virt = devm_ioremap(&dev->dev, info->map[i].phys,
151 info->map[i].size);
df66e716
SR
152 if (info->map[i].virt == NULL) {
153 dev_err(&dev->dev, "Failed to ioremap flash region\n");
895fb494 154 err = -EIO;
df66e716
SR
155 goto err_out;
156 }
73566edf 157
df66e716 158 simple_map_init(&info->map[i]);
1da177e4 159
df66e716 160 probe_type = rom_probe_types;
78ef7fab
BS
161 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
df66e716
SR
167 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;
87f39f04 175 info->mtd[i]->dev.parent = &dev->dev;
df66e716 176 }
73566edf 177
df66e716
SR
178 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 */
160bbab3 184 info->cmtd = mtd_concat_create(info->mtd, devices_found, dev_name(&dev->dev));
df66e716
SR
185 if (info->cmtd == NULL)
186 err = -ENXIO;
1da177e4 187 }
df66e716
SR
188 if (err)
189 goto err_out;
1da177e4 190
876fe76d
PP
191 spin_lock_init(&info->vpp_lock);
192
529688fe
JG
193 part_types = physmap_data->part_probe_types ? : part_probe_types;
194
42d7fbe2 195 mtd_device_parse_register(info->cmtd, part_types, NULL,
d45fd121 196 physmap_data->parts, physmap_data->nr_parts);
73566edf
LB
197 return 0;
198
199err_out:
200 physmap_flash_remove(dev);
201 return err;
202}
203
17c2dae3 204#ifdef CONFIG_PM
17c2dae3
LB
205static void physmap_flash_shutdown(struct platform_device *dev)
206{
207 struct physmap_flash_info *info = platform_get_drvdata(dev);
df66e716
SR
208 int i;
209
4a5691c0 210 for (i = 0; i < MAX_RESOURCES && info->mtd[i]; i++)
079c985e
AB
211 if (mtd_suspend(info->mtd[i]) == 0)
212 mtd_resume(info->mtd[i]);
17c2dae3 213}
d5476689 214#else
d5476689 215#define physmap_flash_shutdown NULL
17c2dae3
LB
216#endif
217
73566edf
LB
218static struct platform_driver physmap_flash_driver = {
219 .probe = physmap_flash_probe,
220 .remove = physmap_flash_remove,
17c2dae3 221 .shutdown = physmap_flash_shutdown,
73566edf
LB
222 .driver = {
223 .name = "physmap-flash",
41d867c9 224 .owner = THIS_MODULE,
73566edf
LB
225 },
226};
1da177e4 227
1da177e4 228
dcb3e137 229#ifdef CONFIG_MTD_PHYSMAP_COMPAT
73566edf
LB
230static struct physmap_flash_data physmap_flash_data = {
231 .width = CONFIG_MTD_PHYSMAP_BANKWIDTH,
232};
1da177e4 233
73566edf
LB
234static struct resource physmap_flash_resource = {
235 .start = CONFIG_MTD_PHYSMAP_START,
6d4f8224 236 .end = CONFIG_MTD_PHYSMAP_START + CONFIG_MTD_PHYSMAP_LEN - 1,
73566edf
LB
237 .flags = IORESOURCE_MEM,
238};
1da177e4 239
73566edf
LB
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};
73566edf 249#endif
1da177e4 250
73566edf
LB
251static int __init physmap_init(void)
252{
253 int err;
254
255 err = platform_driver_register(&physmap_flash_driver);
dcb3e137 256#ifdef CONFIG_MTD_PHYSMAP_COMPAT
1ca5d2f0
HS
257 if (err == 0) {
258 err = platform_device_register(&physmap_flash);
259 if (err)
260 platform_driver_unregister(&physmap_flash_driver);
261 }
73566edf
LB
262#endif
263
264 return err;
1da177e4
LT
265}
266
73566edf
LB
267static void __exit physmap_exit(void)
268{
dcb3e137 269#ifdef CONFIG_MTD_PHYSMAP_COMPAT
73566edf
LB
270 platform_device_unregister(&physmap_flash);
271#endif
272 platform_driver_unregister(&physmap_flash_driver);
273}
1da177e4 274
73566edf
LB
275module_init(physmap_init);
276module_exit(physmap_exit);
1da177e4
LT
277
278MODULE_LICENSE("GPL");
279MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
280MODULE_DESCRIPTION("Generic configurable MTD map driver");
41d867c9
KS
281
282/* legacy platform drivers can't hotplug or coldplg */
dcb3e137 283#ifndef CONFIG_MTD_PHYSMAP_COMPAT
41d867c9
KS
284/* work with hotplug and coldplug */
285MODULE_ALIAS("platform:physmap-flash");
286#endif