blob: 0bec7c791d17c6e7a54f19d7ba6d43ff0cfbc47c [file] [log] [blame]
Thomas Gleixner1a59d1b82019-05-27 08:55:05 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Ben Dooks99f2a8aea2005-01-24 00:37:04 +00002/* drivers/mtd/maps/plat-ram.c
3 *
4 * (c) 2004-2005 Simtec Electronics
5 * http://www.simtec.co.uk/products/SWLINUX/
6 * Ben Dooks <ben@simtec.co.uk>
7 *
Stefan Weil947af292010-01-07 00:03:52 +01008 * Generic platform device based RAM map
Ben Dooks99f2a8aea2005-01-24 00:37:04 +00009*/
10
Ben Dooks99f2a8aea2005-01-24 00:37:04 +000011#include <linux/module.h>
12#include <linux/types.h>
Ben Dooks99f2a8aea2005-01-24 00:37:04 +000013#include <linux/kernel.h>
14#include <linux/string.h>
15#include <linux/ioport.h>
16#include <linux/device.h>
Tim Schmielau4e57b682005-10-30 15:03:48 -080017#include <linux/slab.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010018#include <linux/platform_device.h>
Ben Dooks99f2a8aea2005-01-24 00:37:04 +000019
20#include <linux/mtd/mtd.h>
21#include <linux/mtd/map.h>
22#include <linux/mtd/partitions.h>
23#include <linux/mtd/plat-ram.h>
24
25#include <asm/io.h>
26
27/* private structure for each mtd platform ram device created */
28
29struct platram_info {
30 struct device *dev;
31 struct mtd_info *mtd;
32 struct map_info map;
Ben Dooks99f2a8aea2005-01-24 00:37:04 +000033 struct platdata_mtd_ram *pdata;
34};
35
36/* to_platram_info()
37 *
38 * device private data to struct platram_info conversion
39*/
40
Russell King3ae5eae2005-11-09 22:32:44 +000041static inline struct platram_info *to_platram_info(struct platform_device *dev)
Ben Dooks99f2a8aea2005-01-24 00:37:04 +000042{
Jingoo Han14ac0782013-09-09 14:42:52 +090043 return platform_get_drvdata(dev);
Ben Dooks99f2a8aea2005-01-24 00:37:04 +000044}
45
46/* platram_setrw
47 *
48 * call the platform device's set rw/ro control
49 *
50 * to = 0 => read-only
51 * = 1 => read-write
52*/
53
54static inline void platram_setrw(struct platram_info *info, int to)
55{
56 if (info->pdata == NULL)
57 return;
58
59 if (info->pdata->set_rw != NULL)
60 (info->pdata->set_rw)(info->dev, to);
61}
62
63/* platram_remove
64 *
65 * called to remove the device from the driver's control
66*/
67
Russell King3ae5eae2005-11-09 22:32:44 +000068static int platram_remove(struct platform_device *pdev)
Ben Dooks99f2a8aea2005-01-24 00:37:04 +000069{
Russell King3ae5eae2005-11-09 22:32:44 +000070 struct platram_info *info = to_platram_info(pdev);
Ben Dooks99f2a8aea2005-01-24 00:37:04 +000071
Russell King3ae5eae2005-11-09 22:32:44 +000072 dev_dbg(&pdev->dev, "removing device\n");
Ben Dooks99f2a8aea2005-01-24 00:37:04 +000073
Thomas Gleixner69f34c92005-11-07 11:15:40 +000074 if (info == NULL)
Ben Dooks99f2a8aea2005-01-24 00:37:04 +000075 return 0;
76
77 if (info->mtd) {
Jamie Iles095dd502011-05-23 10:23:07 +010078 mtd_device_unregister(info->mtd);
Ben Dooks99f2a8aea2005-01-24 00:37:04 +000079 map_destroy(info->mtd);
80 }
81
82 /* ensure ram is left read-only */
83
84 platram_setrw(info, PLATRAM_RO);
85
Ben Dooks99f2a8aea2005-01-24 00:37:04 +000086 kfree(info);
87
88 return 0;
89}
90
91/* platram_probe
92 *
93 * called from device drive system when a device matching our
94 * driver is found.
95*/
96
Russell King3ae5eae2005-11-09 22:32:44 +000097static int platram_probe(struct platform_device *pdev)
Ben Dooks99f2a8aea2005-01-24 00:37:04 +000098{
Ben Dooks99f2a8aea2005-01-24 00:37:04 +000099 struct platdata_mtd_ram *pdata;
100 struct platram_info *info;
101 struct resource *res;
102 int err = 0;
103
Russell King3ae5eae2005-11-09 22:32:44 +0000104 dev_dbg(&pdev->dev, "probe entered\n");
Thomas Gleixner69f34c92005-11-07 11:15:40 +0000105
Jingoo Hand20d5a52013-07-30 17:18:06 +0900106 if (dev_get_platdata(&pdev->dev) == NULL) {
Russell King3ae5eae2005-11-09 22:32:44 +0000107 dev_err(&pdev->dev, "no platform data supplied\n");
Ben Dooks99f2a8aea2005-01-24 00:37:04 +0000108 err = -ENOENT;
109 goto exit_error;
110 }
111
Jingoo Hand20d5a52013-07-30 17:18:06 +0900112 pdata = dev_get_platdata(&pdev->dev);
Ben Dooks99f2a8aea2005-01-24 00:37:04 +0000113
Burman Yan95b93a02006-11-15 21:10:29 +0200114 info = kzalloc(sizeof(*info), GFP_KERNEL);
Ben Dooks99f2a8aea2005-01-24 00:37:04 +0000115 if (info == NULL) {
Ben Dooks99f2a8aea2005-01-24 00:37:04 +0000116 err = -ENOMEM;
117 goto exit_error;
118 }
119
Russell King3ae5eae2005-11-09 22:32:44 +0000120 platform_set_drvdata(pdev, info);
Ben Dooks99f2a8aea2005-01-24 00:37:04 +0000121
Russell King3ae5eae2005-11-09 22:32:44 +0000122 info->dev = &pdev->dev;
Ben Dooks99f2a8aea2005-01-24 00:37:04 +0000123 info->pdata = pdata;
124
125 /* get the resource for the memory mapping */
Russell King3ae5eae2005-11-09 22:32:44 +0000126 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Anton Vasilyev2e442ae2017-08-22 16:24:11 +0300127 info->map.virt = devm_ioremap_resource(&pdev->dev, res);
128 if (IS_ERR(info->map.virt)) {
129 err = PTR_ERR(info->map.virt);
130 dev_err(&pdev->dev, "failed to ioremap() region\n");
Ben Dooks99f2a8aea2005-01-24 00:37:04 +0000131 goto exit_free;
132 }
133
Randy Dunlap06d63cc2007-04-25 22:41:34 -0700134 dev_dbg(&pdev->dev, "got platform resource %p (0x%llx)\n", res,
135 (unsigned long long)res->start);
Ben Dooks99f2a8aea2005-01-24 00:37:04 +0000136
137 /* setup map parameters */
138
139 info->map.phys = res->start;
Wolfram Sang76d6a472009-07-17 17:47:37 +0200140 info->map.size = resource_size(res);
Florian Fainelli757570062008-03-03 18:30:24 +0100141 info->map.name = pdata->mapname != NULL ?
142 (char *)pdata->mapname : (char *)pdev->name;
Ben Dooks99f2a8aea2005-01-24 00:37:04 +0000143 info->map.bankwidth = pdata->bankwidth;
144
Russell King3ae5eae2005-11-09 22:32:44 +0000145 dev_dbg(&pdev->dev, "virt %p, %lu bytes\n", info->map.virt, info->map.size);
Ben Dooks99f2a8aea2005-01-24 00:37:04 +0000146
Ben Dooks99f2a8aea2005-01-24 00:37:04 +0000147 simple_map_init(&info->map);
148
Russell King3ae5eae2005-11-09 22:32:44 +0000149 dev_dbg(&pdev->dev, "initialised map, probing for mtd\n");
Ben Dooks99f2a8aea2005-01-24 00:37:04 +0000150
Florian Fainelli757570062008-03-03 18:30:24 +0100151 /* probe for the right mtd map driver
152 * supplied by the platform_data struct */
Ben Dooks99f2a8aea2005-01-24 00:37:04 +0000153
Harvey Harrisona01e0352008-04-28 16:50:04 -0700154 if (pdata->map_probes) {
Artem Bityutskiyd50dcb12013-03-12 10:28:31 +0200155 const char * const *map_probes = pdata->map_probes;
Florian Fainelli757570062008-03-03 18:30:24 +0100156
157 for ( ; !info->mtd && *map_probes; map_probes++)
158 info->mtd = do_map_probe(*map_probes , &info->map);
159 }
160 /* fallback to map_ram */
161 else
162 info->mtd = do_map_probe("map_ram", &info->map);
163
Ben Dooks99f2a8aea2005-01-24 00:37:04 +0000164 if (info->mtd == NULL) {
Russell King3ae5eae2005-11-09 22:32:44 +0000165 dev_err(&pdev->dev, "failed to probe for map_ram\n");
Ben Dooks99f2a8aea2005-01-24 00:37:04 +0000166 err = -ENOMEM;
167 goto exit_free;
168 }
169
David Brownell87f39f02009-03-26 00:42:50 -0700170 info->mtd->dev.parent = &pdev->dev;
Ben Dooks99f2a8aea2005-01-24 00:37:04 +0000171
172 platram_setrw(info, PLATRAM_RW);
173
Adam Buchbinder48fc7f72012-09-19 21:48:00 -0400174 /* check to see if there are any available partitions, or whether
Ben Dooks99f2a8aea2005-01-24 00:37:04 +0000175 * to add this device whole */
176
Artem Bityutskiy42d7fbe2012-03-09 19:24:26 +0200177 err = mtd_device_parse_register(info->mtd, pdata->probes, NULL,
178 pdata->partitions,
179 pdata->nr_partitions);
Baskov Evgeiny8c293f52020-11-13 19:05:37 +0300180 if (err) {
181 dev_err(&pdev->dev, "failed to register mtd device\n");
182 goto exit_free;
183 }
184
185 dev_info(&pdev->dev, "registered mtd device\n");
Florian Fainelli757570062008-03-03 18:30:24 +0100186
Ilya Yanokc3298792011-12-13 00:37:56 +0100187 if (pdata->nr_partitions) {
188 /* add the whole device. */
189 err = mtd_device_register(info->mtd, NULL, 0);
190 if (err) {
191 dev_err(&pdev->dev,
192 "failed to register the entire device\n");
Baskov Evgeiny8c293f52020-11-13 19:05:37 +0300193 goto exit_free;
Ilya Yanokc3298792011-12-13 00:37:56 +0100194 }
195 }
Jamie Iles095dd502011-05-23 10:23:07 +0100196
Baskov Evgeiny8c293f52020-11-13 19:05:37 +0300197 return 0;
Ben Dooks99f2a8aea2005-01-24 00:37:04 +0000198
199 exit_free:
Russell King3ae5eae2005-11-09 22:32:44 +0000200 platram_remove(pdev);
Ben Dooks99f2a8aea2005-01-24 00:37:04 +0000201 exit_error:
202 return err;
203}
204
205/* device driver info */
206
Kay Sievers41d867c2008-04-18 13:44:26 -0700207/* work with hotplug and coldplug */
208MODULE_ALIAS("platform:mtd-ram");
209
Russell King3ae5eae2005-11-09 22:32:44 +0000210static struct platform_driver platram_driver = {
Ben Dooks99f2a8aea2005-01-24 00:37:04 +0000211 .probe = platram_probe,
212 .remove = platram_remove,
Russell King3ae5eae2005-11-09 22:32:44 +0000213 .driver = {
214 .name = "mtd-ram",
Russell King3ae5eae2005-11-09 22:32:44 +0000215 },
Ben Dooks99f2a8aea2005-01-24 00:37:04 +0000216};
217
Sachin Kamat98a7c742013-10-11 10:11:23 +0530218module_platform_driver(platram_driver);
Ben Dooks99f2a8aea2005-01-24 00:37:04 +0000219
220MODULE_LICENSE("GPL");
221MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>");
222MODULE_DESCRIPTION("MTD platform RAM map driver");