blkcg: fix blkg_alloc() failure path
[linux-2.6.git] / drivers / mtd / maps / plat-ram.c
blob891558de3ec19d1ef67ca69751be8f06e21e480f
1 /* drivers/mtd/maps/plat-ram.c
3 * (c) 2004-2005 Simtec Electronics
4 * http://www.simtec.co.uk/products/SWLINUX/
5 * Ben Dooks <ben@simtec.co.uk>
7 * Generic platform device based RAM map
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 #include <linux/module.h>
25 #include <linux/types.h>
26 #include <linux/init.h>
27 #include <linux/kernel.h>
28 #include <linux/string.h>
29 #include <linux/ioport.h>
30 #include <linux/device.h>
31 #include <linux/slab.h>
32 #include <linux/platform_device.h>
34 #include <linux/mtd/mtd.h>
35 #include <linux/mtd/map.h>
36 #include <linux/mtd/partitions.h>
37 #include <linux/mtd/plat-ram.h>
39 #include <asm/io.h>
41 /* private structure for each mtd platform ram device created */
43 struct platram_info {
44 struct device *dev;
45 struct mtd_info *mtd;
46 struct map_info map;
47 struct resource *area;
48 struct platdata_mtd_ram *pdata;
51 /* to_platram_info()
53 * device private data to struct platram_info conversion
56 static inline struct platram_info *to_platram_info(struct platform_device *dev)
58 return (struct platram_info *)platform_get_drvdata(dev);
61 /* platram_setrw
63 * call the platform device's set rw/ro control
65 * to = 0 => read-only
66 * = 1 => read-write
69 static inline void platram_setrw(struct platram_info *info, int to)
71 if (info->pdata == NULL)
72 return;
74 if (info->pdata->set_rw != NULL)
75 (info->pdata->set_rw)(info->dev, to);
78 /* platram_remove
80 * called to remove the device from the driver's control
83 static int platram_remove(struct platform_device *pdev)
85 struct platram_info *info = to_platram_info(pdev);
87 platform_set_drvdata(pdev, NULL);
89 dev_dbg(&pdev->dev, "removing device\n");
91 if (info == NULL)
92 return 0;
94 if (info->mtd) {
95 mtd_device_unregister(info->mtd);
96 map_destroy(info->mtd);
99 /* ensure ram is left read-only */
101 platram_setrw(info, PLATRAM_RO);
103 /* release resources */
105 if (info->area) {
106 release_resource(info->area);
107 kfree(info->area);
110 if (info->map.virt != NULL)
111 iounmap(info->map.virt);
113 kfree(info);
115 return 0;
118 /* platram_probe
120 * called from device drive system when a device matching our
121 * driver is found.
124 static int platram_probe(struct platform_device *pdev)
126 struct platdata_mtd_ram *pdata;
127 struct platram_info *info;
128 struct resource *res;
129 int err = 0;
131 dev_dbg(&pdev->dev, "probe entered\n");
133 if (pdev->dev.platform_data == NULL) {
134 dev_err(&pdev->dev, "no platform data supplied\n");
135 err = -ENOENT;
136 goto exit_error;
139 pdata = pdev->dev.platform_data;
141 info = kzalloc(sizeof(*info), GFP_KERNEL);
142 if (info == NULL) {
143 dev_err(&pdev->dev, "no memory for flash info\n");
144 err = -ENOMEM;
145 goto exit_error;
148 platform_set_drvdata(pdev, info);
150 info->dev = &pdev->dev;
151 info->pdata = pdata;
153 /* get the resource for the memory mapping */
155 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
157 if (res == NULL) {
158 dev_err(&pdev->dev, "no memory resource specified\n");
159 err = -ENOENT;
160 goto exit_free;
163 dev_dbg(&pdev->dev, "got platform resource %p (0x%llx)\n", res,
164 (unsigned long long)res->start);
166 /* setup map parameters */
168 info->map.phys = res->start;
169 info->map.size = resource_size(res);
170 info->map.name = pdata->mapname != NULL ?
171 (char *)pdata->mapname : (char *)pdev->name;
172 info->map.bankwidth = pdata->bankwidth;
174 /* register our usage of the memory area */
176 info->area = request_mem_region(res->start, info->map.size, pdev->name);
177 if (info->area == NULL) {
178 dev_err(&pdev->dev, "failed to request memory region\n");
179 err = -EIO;
180 goto exit_free;
183 /* remap the memory area */
185 info->map.virt = ioremap(res->start, info->map.size);
186 dev_dbg(&pdev->dev, "virt %p, %lu bytes\n", info->map.virt, info->map.size);
188 if (info->map.virt == NULL) {
189 dev_err(&pdev->dev, "failed to ioremap() region\n");
190 err = -EIO;
191 goto exit_free;
194 simple_map_init(&info->map);
196 dev_dbg(&pdev->dev, "initialised map, probing for mtd\n");
198 /* probe for the right mtd map driver
199 * supplied by the platform_data struct */
201 if (pdata->map_probes) {
202 const char **map_probes = pdata->map_probes;
204 for ( ; !info->mtd && *map_probes; map_probes++)
205 info->mtd = do_map_probe(*map_probes , &info->map);
207 /* fallback to map_ram */
208 else
209 info->mtd = do_map_probe("map_ram", &info->map);
211 if (info->mtd == NULL) {
212 dev_err(&pdev->dev, "failed to probe for map_ram\n");
213 err = -ENOMEM;
214 goto exit_free;
217 info->mtd->owner = THIS_MODULE;
218 info->mtd->dev.parent = &pdev->dev;
220 platram_setrw(info, PLATRAM_RW);
222 /* check to see if there are any available partitions, or wether
223 * to add this device whole */
225 err = mtd_device_parse_register(info->mtd, pdata->probes, NULL,
226 pdata->partitions,
227 pdata->nr_partitions);
228 if (!err)
229 dev_info(&pdev->dev, "registered mtd device\n");
231 if (pdata->nr_partitions) {
232 /* add the whole device. */
233 err = mtd_device_register(info->mtd, NULL, 0);
234 if (err) {
235 dev_err(&pdev->dev,
236 "failed to register the entire device\n");
240 return err;
242 exit_free:
243 platram_remove(pdev);
244 exit_error:
245 return err;
248 /* device driver info */
250 /* work with hotplug and coldplug */
251 MODULE_ALIAS("platform:mtd-ram");
253 static struct platform_driver platram_driver = {
254 .probe = platram_probe,
255 .remove = platram_remove,
256 .driver = {
257 .name = "mtd-ram",
258 .owner = THIS_MODULE,
262 /* module init/exit */
264 static int __init platram_init(void)
266 printk("Generic platform RAM MTD, (c) 2004 Simtec Electronics\n");
267 return platform_driver_register(&platram_driver);
270 static void __exit platram_exit(void)
272 platform_driver_unregister(&platram_driver);
275 module_init(platram_init);
276 module_exit(platram_exit);
278 MODULE_LICENSE("GPL");
279 MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>");
280 MODULE_DESCRIPTION("MTD platform RAM map driver");