blob: 9d2bf1741fb2905f346ed88878b469509c925fc5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/**
David Woodhouse151e76592006-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
Linus Torvalds1da177e2005-04-16 15:20:36 -070036static int phram_erase(struct mtd_info *mtd, struct erase_info *instr)
37{
38 u_char *start = mtd->priv;
39
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 memset(start + instr->addr, 0xff, instr->len);
41
Thomas Gleixnere5580fb2005-11-07 11:15:40 +000042 /* This'll catch a few races. Free the thing before returning :)
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 * I don't feel at all ashamed. This kind of thing is possible anyway
44 * with flash, but unlikely.
45 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 instr->state = MTD_ERASE_DONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 mtd_erase_callback(instr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 return 0;
49}
50
51static int phram_point(struct mtd_info *mtd, loff_t from, size_t len,
Jared Hulberta98889f2008-04-29 23:26:49 -070052 size_t *retlen, void **virt, resource_size_t *phys)
Linus Torvalds1da177e2005-04-16 15:20:36 -070053{
Jared Hulberta98889f2008-04-29 23:26:49 -070054 *virt = mtd->priv + from;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 *retlen = len;
56 return 0;
57}
58
Artem Bityutskiy5e4e6e32012-02-03 13:20:43 +020059static int phram_unpoint(struct mtd_info *mtd, loff_t from, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -070060{
Artem Bityutskiy5e4e6e32012-02-03 13:20:43 +020061 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062}
63
64static int phram_read(struct mtd_info *mtd, loff_t from, size_t len,
65 size_t *retlen, u_char *buf)
66{
67 u_char *start = mtd->priv;
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 memcpy(buf, start + from, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 *retlen = len;
71 return 0;
72}
73
74static int phram_write(struct mtd_info *mtd, loff_t to, size_t len,
75 size_t *retlen, const u_char *buf)
76{
77 u_char *start = mtd->priv;
78
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 memcpy(start + to, buf, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 *retlen = len;
81 return 0;
82}
83
Linus Torvalds1da177e2005-04-16 15:20:36 -070084static void unregister_devices(void)
85{
Joern Engeld30f11d2005-02-23 19:37:11 +000086 struct phram_mtd_list *this, *safe;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Joern Engeld30f11d2005-02-23 19:37:11 +000088 list_for_each_entry_safe(this, safe, &phram_list, list) {
Jamie Ilesee0e87b2011-05-23 10:23:40 +010089 mtd_device_unregister(&this->mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 iounmap(this->mtd.priv);
Mathias Krausef17f12c2011-01-30 10:31:48 +010091 kfree(this->mtd.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 kfree(this);
93 }
94}
95
96static int register_device(char *name, unsigned long start, unsigned long len)
97{
98 struct phram_mtd_list *new;
99 int ret = -ENOMEM;
100
Burman Yan95b93a02006-11-15 21:10:29 +0200101 new = kzalloc(sizeof(*new), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 if (!new)
103 goto out0;
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 ret = -EIO;
106 new->mtd.priv = ioremap(start, len);
107 if (!new->mtd.priv) {
Mike Frysinger64da3922009-06-16 19:20:40 +0000108 pr_err("ioremap failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 goto out1;
110 }
111
112
113 new->mtd.name = name;
114 new->mtd.size = len;
Jörn Engela6c591e2006-04-13 18:54:34 +0200115 new->mtd.flags = MTD_CAP_RAM;
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200116 new->mtd._erase = phram_erase;
117 new->mtd._point = phram_point;
118 new->mtd._unpoint = phram_unpoint;
119 new->mtd._read = phram_read;
120 new->mtd._write = phram_write;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 new->mtd.owner = THIS_MODULE;
David Woodhouse21c8db92006-06-14 21:39:48 +0100122 new->mtd.type = MTD_RAM;
Joern Engel663259a2005-03-07 21:43:42 +0000123 new->mtd.erasesize = PAGE_SIZE;
Artem B. Bityutskiy17ffc7b2006-06-22 18:15:48 +0400124 new->mtd.writesize = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126 ret = -EAGAIN;
Jamie Ilesee0e87b2011-05-23 10:23:40 +0100127 if (mtd_device_register(&new->mtd, NULL, 0)) {
Mike Frysinger64da3922009-06-16 19:20:40 +0000128 pr_err("Failed to register new device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 goto out2;
130 }
131
132 list_add_tail(&new->list, &phram_list);
Thomas Gleixnere5580fb2005-11-07 11:15:40 +0000133 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
135out2:
136 iounmap(new->mtd.priv);
137out1:
138 kfree(new);
139out0:
140 return ret;
141}
142
143static int ustrtoul(const char *cp, char **endp, unsigned int base)
144{
145 unsigned long result = simple_strtoul(cp, endp, base);
146
147 switch (**endp) {
148 case 'G':
149 result *= 1024;
150 case 'M':
151 result *= 1024;
152 case 'k':
153 result *= 1024;
154 /* By dwmw2 editorial decree, "ki", "Mi" or "Gi" are to be used. */
155 if ((*endp)[1] == 'i')
156 (*endp) += 2;
157 }
158 return result;
159}
160
161static int parse_num32(uint32_t *num32, const char *token)
162{
163 char *endp;
164 unsigned long n;
165
166 n = ustrtoul(token, &endp, 0);
167 if (*endp)
168 return -EINVAL;
169
170 *num32 = n;
171 return 0;
172}
173
174static int parse_name(char **pname, const char *token)
175{
176 size_t len;
177 char *name;
178
179 len = strlen(token) + 1;
180 if (len > 64)
181 return -ENOSPC;
182
183 name = kmalloc(len, GFP_KERNEL);
184 if (!name)
185 return -ENOMEM;
186
187 strcpy(name, token);
188
189 *pname = name;
190 return 0;
191}
192
Joern Engel663259a2005-03-07 21:43:42 +0000193
194static inline void kill_final_newline(char *str)
195{
196 char *newline = strrchr(str, '\n');
197 if (newline && !newline[1])
198 *newline = 0;
199}
200
201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202#define parse_err(fmt, args...) do { \
Mike Frysinger64da3922009-06-16 19:20:40 +0000203 pr_err(fmt , ## args); \
204 return 1; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205} while (0)
206
207static int phram_setup(const char *val, struct kernel_param *kp)
208{
209 char buf[64+12+12], *str = buf;
210 char *token[3];
211 char *name;
212 uint32_t start;
213 uint32_t len;
214 int i, ret;
215
216 if (strnlen(val, sizeof(buf)) >= sizeof(buf))
217 parse_err("parameter too long\n");
218
219 strcpy(str, val);
Joern Engel663259a2005-03-07 21:43:42 +0000220 kill_final_newline(str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
222 for (i=0; i<3; i++)
223 token[i] = strsep(&str, ",");
224
225 if (str)
226 parse_err("too many arguments\n");
227
228 if (!token[2])
229 parse_err("not enough arguments\n");
230
231 ret = parse_name(&name, token[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 if (ret)
Mike Frysinger64da3922009-06-16 19:20:40 +0000233 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
235 ret = parse_num32(&start, token[1]);
Jesper Juhl4f678a52006-05-14 01:07:18 +0200236 if (ret) {
237 kfree(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 parse_err("illegal start address\n");
Jesper Juhl4f678a52006-05-14 01:07:18 +0200239 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
241 ret = parse_num32(&len, token[2]);
Jesper Juhl4f678a52006-05-14 01:07:18 +0200242 if (ret) {
243 kfree(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 parse_err("illegal device length\n");
Jesper Juhl4f678a52006-05-14 01:07:18 +0200245 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
Mike Frysinger64da3922009-06-16 19:20:40 +0000247 ret = register_device(name, start, len);
248 if (!ret)
249 pr_info("%s device: %#x at %#x\n", name, len, start);
Mathias Krausef17f12c2011-01-30 10:31:48 +0100250 else
251 kfree(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Mike Frysinger64da3922009-06-16 19:20:40 +0000253 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254}
255
256module_param_call(phram, phram_setup, NULL, NULL, 000);
Mark Hindleyf72561cf2008-03-31 14:25:03 +0100257MODULE_PARM_DESC(phram, "Memory region to map. \"phram=<name>,<start>,<length>\"");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
259
260static int __init init_phram(void)
261{
262 return 0;
263}
264
265static void __exit cleanup_phram(void)
266{
267 unregister_devices();
268}
269
270module_init(init_phram);
271module_exit(cleanup_phram);
272
273MODULE_LICENSE("GPL");
Joern Engel2b54aae2008-02-06 01:38:02 -0800274MODULE_AUTHOR("Joern Engel <joern@wh.fh-wedel.de>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275MODULE_DESCRIPTION("MTD driver for physical RAM");