blob: 38035551a7d2cdba02702b0b177fdd7b0bcefbe5 [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
Artem Bityutskiy5e4e6e32012-02-03 13:20:43 +020073static int phram_unpoint(struct mtd_info *mtd, loff_t from, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -070074{
Artem Bityutskiy5e4e6e32012-02-03 13:20:43 +020075 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076}
77
78static int phram_read(struct mtd_info *mtd, loff_t from, size_t len,
79 size_t *retlen, u_char *buf)
80{
81 u_char *start = mtd->priv;
82
Joern Engel663259a2005-03-07 21:43:42 +000083 if (from >= mtd->size)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 return -EINVAL;
Joern Engel663259a2005-03-07 21:43:42 +000085
86 if (len > mtd->size - from)
87 len = mtd->size - from;
Thomas Gleixnere5580fb2005-11-07 11:15:40 +000088
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 memcpy(buf, start + from, len);
90
91 *retlen = len;
92 return 0;
93}
94
95static int phram_write(struct mtd_info *mtd, loff_t to, size_t len,
96 size_t *retlen, const u_char *buf)
97{
98 u_char *start = mtd->priv;
99
Joern Engel663259a2005-03-07 21:43:42 +0000100 if (to >= mtd->size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 return -EINVAL;
Joern Engel663259a2005-03-07 21:43:42 +0000102
103 if (len > mtd->size - to)
104 len = mtd->size - to;
Thomas Gleixnere5580fb2005-11-07 11:15:40 +0000105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 memcpy(start + to, buf, len);
107
108 *retlen = len;
109 return 0;
110}
111
112
113
114static void unregister_devices(void)
115{
Joern Engeld30f11d2005-02-23 19:37:11 +0000116 struct phram_mtd_list *this, *safe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Joern Engeld30f11d2005-02-23 19:37:11 +0000118 list_for_each_entry_safe(this, safe, &phram_list, list) {
Jamie Ilesee0e87b2011-05-23 10:23:40 +0100119 mtd_device_unregister(&this->mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 iounmap(this->mtd.priv);
Mathias Krausef17f12c2011-01-30 10:31:48 +0100121 kfree(this->mtd.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 kfree(this);
123 }
124}
125
126static int register_device(char *name, unsigned long start, unsigned long len)
127{
128 struct phram_mtd_list *new;
129 int ret = -ENOMEM;
130
Burman Yan95b93a02006-11-15 21:10:29 +0200131 new = kzalloc(sizeof(*new), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 if (!new)
133 goto out0;
134
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 ret = -EIO;
136 new->mtd.priv = ioremap(start, len);
137 if (!new->mtd.priv) {
Mike Frysinger64da3922009-06-16 19:20:40 +0000138 pr_err("ioremap failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 goto out1;
140 }
141
142
143 new->mtd.name = name;
144 new->mtd.size = len;
Jörn Engela6c591e2006-04-13 18:54:34 +0200145 new->mtd.flags = MTD_CAP_RAM;
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200146 new->mtd._erase = phram_erase;
147 new->mtd._point = phram_point;
148 new->mtd._unpoint = phram_unpoint;
149 new->mtd._read = phram_read;
150 new->mtd._write = phram_write;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 new->mtd.owner = THIS_MODULE;
David Woodhouse21c8db92006-06-14 21:39:48 +0100152 new->mtd.type = MTD_RAM;
Joern Engel663259a2005-03-07 21:43:42 +0000153 new->mtd.erasesize = PAGE_SIZE;
Artem B. Bityutskiy17ffc7b2006-06-22 18:15:48 +0400154 new->mtd.writesize = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
156 ret = -EAGAIN;
Jamie Ilesee0e87b2011-05-23 10:23:40 +0100157 if (mtd_device_register(&new->mtd, NULL, 0)) {
Mike Frysinger64da3922009-06-16 19:20:40 +0000158 pr_err("Failed to register new device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 goto out2;
160 }
161
162 list_add_tail(&new->list, &phram_list);
Thomas Gleixnere5580fb2005-11-07 11:15:40 +0000163 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
165out2:
166 iounmap(new->mtd.priv);
167out1:
168 kfree(new);
169out0:
170 return ret;
171}
172
173static int ustrtoul(const char *cp, char **endp, unsigned int base)
174{
175 unsigned long result = simple_strtoul(cp, endp, base);
176
177 switch (**endp) {
178 case 'G':
179 result *= 1024;
180 case 'M':
181 result *= 1024;
182 case 'k':
183 result *= 1024;
184 /* By dwmw2 editorial decree, "ki", "Mi" or "Gi" are to be used. */
185 if ((*endp)[1] == 'i')
186 (*endp) += 2;
187 }
188 return result;
189}
190
191static int parse_num32(uint32_t *num32, const char *token)
192{
193 char *endp;
194 unsigned long n;
195
196 n = ustrtoul(token, &endp, 0);
197 if (*endp)
198 return -EINVAL;
199
200 *num32 = n;
201 return 0;
202}
203
204static int parse_name(char **pname, const char *token)
205{
206 size_t len;
207 char *name;
208
209 len = strlen(token) + 1;
210 if (len > 64)
211 return -ENOSPC;
212
213 name = kmalloc(len, GFP_KERNEL);
214 if (!name)
215 return -ENOMEM;
216
217 strcpy(name, token);
218
219 *pname = name;
220 return 0;
221}
222
Joern Engel663259a2005-03-07 21:43:42 +0000223
224static inline void kill_final_newline(char *str)
225{
226 char *newline = strrchr(str, '\n');
227 if (newline && !newline[1])
228 *newline = 0;
229}
230
231
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232#define parse_err(fmt, args...) do { \
Mike Frysinger64da3922009-06-16 19:20:40 +0000233 pr_err(fmt , ## args); \
234 return 1; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235} while (0)
236
237static int phram_setup(const char *val, struct kernel_param *kp)
238{
239 char buf[64+12+12], *str = buf;
240 char *token[3];
241 char *name;
242 uint32_t start;
243 uint32_t len;
244 int i, ret;
245
246 if (strnlen(val, sizeof(buf)) >= sizeof(buf))
247 parse_err("parameter too long\n");
248
249 strcpy(str, val);
Joern Engel663259a2005-03-07 21:43:42 +0000250 kill_final_newline(str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
252 for (i=0; i<3; i++)
253 token[i] = strsep(&str, ",");
254
255 if (str)
256 parse_err("too many arguments\n");
257
258 if (!token[2])
259 parse_err("not enough arguments\n");
260
261 ret = parse_name(&name, token[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 if (ret)
Mike Frysinger64da3922009-06-16 19:20:40 +0000263 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
265 ret = parse_num32(&start, token[1]);
Jesper Juhl4f678a52006-05-14 01:07:18 +0200266 if (ret) {
267 kfree(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 parse_err("illegal start address\n");
Jesper Juhl4f678a52006-05-14 01:07:18 +0200269 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
271 ret = parse_num32(&len, token[2]);
Jesper Juhl4f678a52006-05-14 01:07:18 +0200272 if (ret) {
273 kfree(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 parse_err("illegal device length\n");
Jesper Juhl4f678a52006-05-14 01:07:18 +0200275 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
Mike Frysinger64da3922009-06-16 19:20:40 +0000277 ret = register_device(name, start, len);
278 if (!ret)
279 pr_info("%s device: %#x at %#x\n", name, len, start);
Mathias Krausef17f12c2011-01-30 10:31:48 +0100280 else
281 kfree(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
Mike Frysinger64da3922009-06-16 19:20:40 +0000283 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284}
285
286module_param_call(phram, phram_setup, NULL, NULL, 000);
Mark Hindleyf72561cf2008-03-31 14:25:03 +0100287MODULE_PARM_DESC(phram, "Memory region to map. \"phram=<name>,<start>,<length>\"");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
289
290static int __init init_phram(void)
291{
292 return 0;
293}
294
295static void __exit cleanup_phram(void)
296{
297 unregister_devices();
298}
299
300module_init(init_phram);
301module_exit(cleanup_phram);
302
303MODULE_LICENSE("GPL");
Joern Engel2b54aae2008-02-06 01:38:02 -0800304MODULE_AUTHOR("Joern Engel <joern@wh.fh-wedel.de>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305MODULE_DESCRIPTION("MTD driver for physical RAM");