]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/mtd/maps/plat-ram.c
Merge remote-tracking branch 'asoc/fix/intel' into asoc-linus
[mirror_ubuntu-artful-kernel.git] / drivers / mtd / maps / plat-ram.c
CommitLineData
99f2a8ae
BD
1/* drivers/mtd/maps/plat-ram.c
2 *
3 * (c) 2004-2005 Simtec Electronics
4 * http://www.simtec.co.uk/products/SWLINUX/
5 * Ben Dooks <ben@simtec.co.uk>
6 *
947af294 7 * Generic platform device based RAM map
99f2a8ae 8 *
99f2a8ae
BD
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.
13 *
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.
18 *
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
22*/
23
99f2a8ae
BD
24#include <linux/module.h>
25#include <linux/types.h>
99f2a8ae
BD
26#include <linux/kernel.h>
27#include <linux/string.h>
28#include <linux/ioport.h>
29#include <linux/device.h>
4e57b681 30#include <linux/slab.h>
d052d1be 31#include <linux/platform_device.h>
99f2a8ae
BD
32
33#include <linux/mtd/mtd.h>
34#include <linux/mtd/map.h>
35#include <linux/mtd/partitions.h>
36#include <linux/mtd/plat-ram.h>
37
38#include <asm/io.h>
39
40/* private structure for each mtd platform ram device created */
41
42struct platram_info {
43 struct device *dev;
44 struct mtd_info *mtd;
45 struct map_info map;
99f2a8ae
BD
46 struct resource *area;
47 struct platdata_mtd_ram *pdata;
48};
49
50/* to_platram_info()
51 *
52 * device private data to struct platram_info conversion
53*/
54
3ae5eaec 55static inline struct platram_info *to_platram_info(struct platform_device *dev)
99f2a8ae 56{
14ac0785 57 return platform_get_drvdata(dev);
99f2a8ae
BD
58}
59
60/* platram_setrw
61 *
62 * call the platform device's set rw/ro control
63 *
64 * to = 0 => read-only
65 * = 1 => read-write
66*/
67
68static inline void platram_setrw(struct platram_info *info, int to)
69{
70 if (info->pdata == NULL)
71 return;
72
73 if (info->pdata->set_rw != NULL)
74 (info->pdata->set_rw)(info->dev, to);
75}
76
77/* platram_remove
78 *
79 * called to remove the device from the driver's control
80*/
81
3ae5eaec 82static int platram_remove(struct platform_device *pdev)
99f2a8ae 83{
3ae5eaec 84 struct platram_info *info = to_platram_info(pdev);
99f2a8ae 85
3ae5eaec 86 dev_dbg(&pdev->dev, "removing device\n");
99f2a8ae 87
69f34c98 88 if (info == NULL)
99f2a8ae
BD
89 return 0;
90
91 if (info->mtd) {
095dd500 92 mtd_device_unregister(info->mtd);
99f2a8ae
BD
93 map_destroy(info->mtd);
94 }
95
96 /* ensure ram is left read-only */
97
98 platram_setrw(info, PLATRAM_RO);
99
100 /* release resources */
101
102 if (info->area) {
103 release_resource(info->area);
104 kfree(info->area);
105 }
106
107 if (info->map.virt != NULL)
108 iounmap(info->map.virt);
69f34c98 109
99f2a8ae
BD
110 kfree(info);
111
112 return 0;
113}
114
115/* platram_probe
116 *
117 * called from device drive system when a device matching our
118 * driver is found.
119*/
120
3ae5eaec 121static int platram_probe(struct platform_device *pdev)
99f2a8ae 122{
99f2a8ae
BD
123 struct platdata_mtd_ram *pdata;
124 struct platram_info *info;
125 struct resource *res;
126 int err = 0;
127
3ae5eaec 128 dev_dbg(&pdev->dev, "probe entered\n");
69f34c98 129
d20d5a57 130 if (dev_get_platdata(&pdev->dev) == NULL) {
3ae5eaec 131 dev_err(&pdev->dev, "no platform data supplied\n");
99f2a8ae
BD
132 err = -ENOENT;
133 goto exit_error;
134 }
135
d20d5a57 136 pdata = dev_get_platdata(&pdev->dev);
99f2a8ae 137
95b93a0c 138 info = kzalloc(sizeof(*info), GFP_KERNEL);
99f2a8ae 139 if (info == NULL) {
99f2a8ae
BD
140 err = -ENOMEM;
141 goto exit_error;
142 }
143
3ae5eaec 144 platform_set_drvdata(pdev, info);
99f2a8ae 145
3ae5eaec 146 info->dev = &pdev->dev;
99f2a8ae
BD
147 info->pdata = pdata;
148
149 /* get the resource for the memory mapping */
150
3ae5eaec 151 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
99f2a8ae
BD
152
153 if (res == NULL) {
3ae5eaec 154 dev_err(&pdev->dev, "no memory resource specified\n");
99f2a8ae
BD
155 err = -ENOENT;
156 goto exit_free;
157 }
158
06d63cc5
RD
159 dev_dbg(&pdev->dev, "got platform resource %p (0x%llx)\n", res,
160 (unsigned long long)res->start);
99f2a8ae
BD
161
162 /* setup map parameters */
163
164 info->map.phys = res->start;
76d6a479 165 info->map.size = resource_size(res);
75757006
FF
166 info->map.name = pdata->mapname != NULL ?
167 (char *)pdata->mapname : (char *)pdev->name;
99f2a8ae
BD
168 info->map.bankwidth = pdata->bankwidth;
169
170 /* register our usage of the memory area */
171
3ae5eaec 172 info->area = request_mem_region(res->start, info->map.size, pdev->name);
99f2a8ae 173 if (info->area == NULL) {
3ae5eaec 174 dev_err(&pdev->dev, "failed to request memory region\n");
99f2a8ae
BD
175 err = -EIO;
176 goto exit_free;
177 }
178
179 /* remap the memory area */
180
181 info->map.virt = ioremap(res->start, info->map.size);
3ae5eaec 182 dev_dbg(&pdev->dev, "virt %p, %lu bytes\n", info->map.virt, info->map.size);
99f2a8ae
BD
183
184 if (info->map.virt == NULL) {
3ae5eaec 185 dev_err(&pdev->dev, "failed to ioremap() region\n");
99f2a8ae
BD
186 err = -EIO;
187 goto exit_free;
188 }
189
99f2a8ae
BD
190 simple_map_init(&info->map);
191
3ae5eaec 192 dev_dbg(&pdev->dev, "initialised map, probing for mtd\n");
99f2a8ae 193
75757006
FF
194 /* probe for the right mtd map driver
195 * supplied by the platform_data struct */
196
a01e035e 197 if (pdata->map_probes) {
d50dcb1d 198 const char * const *map_probes = pdata->map_probes;
75757006
FF
199
200 for ( ; !info->mtd && *map_probes; map_probes++)
201 info->mtd = do_map_probe(*map_probes , &info->map);
202 }
203 /* fallback to map_ram */
204 else
205 info->mtd = do_map_probe("map_ram", &info->map);
99f2a8ae 206
99f2a8ae 207 if (info->mtd == NULL) {
3ae5eaec 208 dev_err(&pdev->dev, "failed to probe for map_ram\n");
99f2a8ae
BD
209 err = -ENOMEM;
210 goto exit_free;
211 }
212
87f39f04 213 info->mtd->dev.parent = &pdev->dev;
99f2a8ae
BD
214
215 platram_setrw(info, PLATRAM_RW);
216
48fc7f7e 217 /* check to see if there are any available partitions, or whether
99f2a8ae
BD
218 * to add this device whole */
219
42d7fbe2
AB
220 err = mtd_device_parse_register(info->mtd, pdata->probes, NULL,
221 pdata->partitions,
222 pdata->nr_partitions);
75757006
FF
223 if (!err)
224 dev_info(&pdev->dev, "registered mtd device\n");
225
c3298791
IY
226 if (pdata->nr_partitions) {
227 /* add the whole device. */
228 err = mtd_device_register(info->mtd, NULL, 0);
229 if (err) {
230 dev_err(&pdev->dev,
231 "failed to register the entire device\n");
232 }
233 }
095dd500 234
99f2a8ae
BD
235 return err;
236
237 exit_free:
3ae5eaec 238 platram_remove(pdev);
99f2a8ae
BD
239 exit_error:
240 return err;
241}
242
243/* device driver info */
244
41d867c9
KS
245/* work with hotplug and coldplug */
246MODULE_ALIAS("platform:mtd-ram");
247
3ae5eaec 248static struct platform_driver platram_driver = {
99f2a8ae
BD
249 .probe = platram_probe,
250 .remove = platram_remove,
3ae5eaec
RK
251 .driver = {
252 .name = "mtd-ram",
3ae5eaec 253 },
99f2a8ae
BD
254};
255
98a7c747 256module_platform_driver(platram_driver);
99f2a8ae
BD
257
258MODULE_LICENSE("GPL");
259MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>");
260MODULE_DESCRIPTION("MTD platform RAM map driver");