blob: 23423bd00b069da5266d72cbfa6353f21ec775dd [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/**
David Woodhouse151e7652006-05-14 01:51:54 +01002 * Copyright (c) ???? Jochen Schäuble <psionic@psionic.de>
Joern Engel2b54aae2008-02-06 01:38:02 -08003 * Copyright (c) 2003-2004 Joern Engel <joern@wh.fh-wedel.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * Usage:
6 *
7 * one commend line parameter per device, each in the form:
8 * phram=<name>,<start>,<len>
9 * <name> may be up to 63 characters.
10 * <start> and <len> can be octal, decimal or hexadecimal. If followed
11 * by "ki", "Mi" or "Gi", the numbers will be interpreted as kilo, mega or
12 * gigabytes.
13 *
14 * Example:
15 * phram=swap,64Mi,128Mi phram=test,900Mi,1Mi
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 */
Mike Frysinger64da3922009-06-16 19:20:40 +000017
Joe Perches1cd844f2010-10-20 10:39:22 -070018#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
Mike Frysinger64da3922009-06-16 19:20:40 +000019
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <asm/io.h>
21#include <linux/init.h>
22#include <linux/kernel.h>
23#include <linux/list.h>
24#include <linux/module.h>
25#include <linux/moduleparam.h>
Tim Schmielau4e57b682005-10-30 15:03:48 -080026#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/mtd/mtd.h>
28
Linus Torvalds1da177e2005-04-16 15:20:36 -070029struct phram_mtd_list {
30 struct mtd_info mtd;
31 struct list_head list;
32};
33
34static LIST_HEAD(phram_list);
35
36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037static int phram_erase(struct mtd_info *mtd, struct erase_info *instr)
38{
39 u_char *start = mtd->priv;
40
41 if (instr->addr + instr->len > mtd->size)
42 return -EINVAL;
Thomas Gleixnere5580fb2005-11-07 11:15:40 +000043
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 memset(start + instr->addr, 0xff, instr->len);
45
Thomas Gleixnere5580fb2005-11-07 11:15:40 +000046 /* This'll catch a few races. Free the thing before returning :)
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 * I don't feel at all ashamed. This kind of thing is possible anyway
48 * with flash, but unlikely.
49 */
50
51 instr->state = MTD_ERASE_DONE;
52
53 mtd_erase_callback(instr);
54
55 return 0;
56}
57
58static int phram_point(struct mtd_info *mtd, loff_t from, size_t len,
Jared Hulberta98889f2008-04-29 23:26:49 -070059 size_t *retlen, void **virt, resource_size_t *phys)
Linus Torvalds1da177e2005-04-16 15:20:36 -070060{
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 if (from + len > mtd->size)
62 return -EINVAL;
Thomas Gleixnere5580fb2005-11-07 11:15:40 +000063
Jared Hulberta98889f2008-04-29 23:26:49 -070064 /* can we return a physical address with this driver? */
65 if (phys)
66 return -EINVAL;
67
68 *virt = mtd->priv + from;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 *retlen = len;
70 return 0;
71}
72
Jared Hulberta98889f2008-04-29 23:26:49 -070073static void phram_unpoint(struct mtd_info *mtd, loff_t from, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -070074{
75}
76
77static int phram_read(struct mtd_info *mtd, loff_t from, size_t len,
78 size_t *retlen, u_char *buf)
79{
80 u_char *start = mtd->priv;
81
Joern Engel663259a2005-03-07 21:43:42 +000082 if (from >= mtd->size)
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 return -EINVAL;
Joern Engel663259a2005-03-07 21:43:42 +000084
85 if (len > mtd->size - from)
86 len = mtd->size - from;
Thomas Gleixnere5580fb2005-11-07 11:15:40 +000087
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 memcpy(buf, start + from, len);
89
90 *retlen = len;
91 return 0;
92}
93
94static int phram_write(struct mtd_info *mtd, loff_t to, size_t len,
95 size_t *retlen, const u_char *buf)
96{
97 u_char *start = mtd->priv;
98
Joern Engel663259a2005-03-07 21:43:42 +000099 if (to >= mtd->size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 return -EINVAL;
Joern Engel663259a2005-03-07 21:43:42 +0000101
102 if (len > mtd->size - to)
103 len = mtd->size - to;
Thomas Gleixnere5580fb2005-11-07 11:15:40 +0000104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 memcpy(start + to, buf, len);
106
107 *retlen = len;
108 return 0;
109}
110
111
112
113static void unregister_devices(void)
114{
Joern Engeld30f11d2005-02-23 19:37:11 +0000115 struct phram_mtd_list *this, *safe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Joern Engeld30f11d2005-02-23 19:37:11 +0000117 list_for_each_entry_safe(this, safe, &phram_list, list) {
Jamie Ilesee0e87b2011-05-23 10:23:40 +0100118 mtd_device_unregister(&this->mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 iounmap(this->mtd.priv);
Mathias Krausef17f12c2011-01-30 10:31:48 +0100120 kfree(this->mtd.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 kfree(this);
122 }
123}
124
125static int register_device(char *name, unsigned long start, unsigned long len)
126{
127 struct phram_mtd_list *new;
128 int ret = -ENOMEM;
129
Burman Yan95b93a02006-11-15 21:10:29 +0200130 new = kzalloc(sizeof(*new), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 if (!new)
132 goto out0;
133
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 ret = -EIO;
135 new->mtd.priv = ioremap(start, len);
136 if (!new->mtd.priv) {
Mike Frysinger64da3922009-06-16 19:20:40 +0000137 pr_err("ioremap failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 goto out1;
139 }
140
141
142 new->mtd.name = name;
143 new->mtd.size = len;
Jörn Engela6c591e2006-04-13 18:54:34 +0200144 new->mtd.flags = MTD_CAP_RAM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 new->mtd.erase = phram_erase;
146 new->mtd.point = phram_point;
147 new->mtd.unpoint = phram_unpoint;
148 new->mtd.read = phram_read;
149 new->mtd.write = phram_write;
150 new->mtd.owner = THIS_MODULE;
David Woodhouse21c8db92006-06-14 21:39:48 +0100151 new->mtd.type = MTD_RAM;
Joern Engel663259a2005-03-07 21:43:42 +0000152 new->mtd.erasesize = PAGE_SIZE;
Artem B. Bityutskiy17ffc7b2006-06-22 18:15:48 +0400153 new->mtd.writesize = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
155 ret = -EAGAIN;
Jamie Ilesee0e87b2011-05-23 10:23:40 +0100156 if (mtd_device_register(&new->mtd, NULL, 0)) {
Mike Frysinger64da3922009-06-16 19:20:40 +0000157 pr_err("Failed to register new device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 goto out2;
159 }
160
161 list_add_tail(&new->list, &phram_list);
Thomas Gleixnere5580fb2005-11-07 11:15:40 +0000162 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
164out2:
165 iounmap(new->mtd.priv);
166out1:
167 kfree(new);
168out0:
169 return ret;
170}
171
172static int ustrtoul(const char *cp, char **endp, unsigned int base)
173{
174 unsigned long result = simple_strtoul(cp, endp, base);
175
176 switch (**endp) {
177 case 'G':
178 result *= 1024;
179 case 'M':
180 result *= 1024;
181 case 'k':
182 result *= 1024;
183 /* By dwmw2 editorial decree, "ki", "Mi" or "Gi" are to be used. */
184 if ((*endp)[1] == 'i')
185 (*endp) += 2;
186 }
187 return result;
188}
189
190static int parse_num32(uint32_t *num32, const char *token)
191{
192 char *endp;
193 unsigned long n;
194
195 n = ustrtoul(token, &endp, 0);
196 if (*endp)
197 return -EINVAL;
198
199 *num32 = n;
200 return 0;
201}
202
203static int parse_name(char **pname, const char *token)
204{
205 size_t len;
206 char *name;
207
208 len = strlen(token) + 1;
209 if (len > 64)
210 return -ENOSPC;
211
212 name = kmalloc(len, GFP_KERNEL);
213 if (!name)
214 return -ENOMEM;
215
216 strcpy(name, token);
217
218 *pname = name;
219 return 0;
220}
221
Joern Engel663259a2005-03-07 21:43:42 +0000222
223static inline void kill_final_newline(char *str)
224{
225 char *newline = strrchr(str, '\n');
226 if (newline && !newline[1])
227 *newline = 0;
228}
229
230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231#define parse_err(fmt, args...) do { \
Mike Frysinger64da3922009-06-16 19:20:40 +0000232 pr_err(fmt , ## args); \
233 return 1; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234} while (0)
235
236static int phram_setup(const char *val, struct kernel_param *kp)
237{
238 char buf[64+12+12], *str = buf;
239 char *token[3];
240 char *name;
241 uint32_t start;
242 uint32_t len;
243 int i, ret;
244
245 if (strnlen(val, sizeof(buf)) >= sizeof(buf))
246 parse_err("parameter too long\n");
247
248 strcpy(str, val);
Joern Engel663259a2005-03-07 21:43:42 +0000249 kill_final_newline(str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
251 for (i=0; i<3; i++)
252 token[i] = strsep(&str, ",");
253
254 if (str)
255 parse_err("too many arguments\n");
256
257 if (!token[2])
258 parse_err("not enough arguments\n");
259
260 ret = parse_name(&name, token[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 if (ret)
Mike Frysinger64da3922009-06-16 19:20:40 +0000262 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
264 ret = parse_num32(&start, token[1]);
Jesper Juhl4f678a52006-05-14 01:07:18 +0200265 if (ret) {
266 kfree(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 parse_err("illegal start address\n");
Jesper Juhl4f678a52006-05-14 01:07:18 +0200268 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
270 ret = parse_num32(&len, token[2]);
Jesper Juhl4f678a52006-05-14 01:07:18 +0200271 if (ret) {
272 kfree(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 parse_err("illegal device length\n");
Jesper Juhl4f678a52006-05-14 01:07:18 +0200274 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
Mike Frysinger64da3922009-06-16 19:20:40 +0000276 ret = register_device(name, start, len);
277 if (!ret)
278 pr_info("%s device: %#x at %#x\n", name, len, start);
Mathias Krausef17f12c2011-01-30 10:31:48 +0100279 else
280 kfree(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Mike Frysinger64da3922009-06-16 19:20:40 +0000282 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283}
284
285module_param_call(phram, phram_setup, NULL, NULL, 000);
Mark Hindleyf72561cf2008-03-31 14:25:03 +0100286MODULE_PARM_DESC(phram, "Memory region to map. \"phram=<name>,<start>,<length>\"");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
288
289static int __init init_phram(void)
290{
291 return 0;
292}
293
294static void __exit cleanup_phram(void)
295{
296 unregister_devices();
297}
298
299module_init(init_phram);
300module_exit(cleanup_phram);
301
302MODULE_LICENSE("GPL");
Joern Engel2b54aae2008-02-06 01:38:02 -0800303MODULE_AUTHOR("Joern Engel <joern@wh.fh-wedel.de>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304MODULE_DESCRIPTION("MTD driver for physical RAM");