blob: c467286ca007175d3f48e01b8b1e2f9f54f57f9c [file] [log] [blame]
Thomas Gleixner09c434b2019-05-19 13:08:20 +01001// SPDX-License-Identifier: GPL-2.0-only
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/**
David Woodhouse151e76592006-05-14 01:51:54 +01003 * Copyright (c) ???? Jochen Schäuble <psionic@psionic.de>
Joern Engel2b54aae2008-02-06 01:38:02 -08004 * Copyright (c) 2003-2004 Joern Engel <joern@wh.fh-wedel.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * Usage:
7 *
8 * one commend line parameter per device, each in the form:
9 * phram=<name>,<start>,<len>
10 * <name> may be up to 63 characters.
11 * <start> and <len> can be octal, decimal or hexadecimal. If followed
12 * by "ki", "Mi" or "Gi", the numbers will be interpreted as kilo, mega or
13 * gigabytes.
14 *
15 * Example:
16 * phram=swap,64Mi,128Mi phram=test,900Mi,1Mi
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
Mike Frysinger64da3922009-06-16 19:20:40 +000018
Joe Perches1cd844f2010-10-20 10:39:22 -070019#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
Mike Frysinger64da3922009-06-16 19:20:40 +000020
Rob Wardb85b8d92014-10-21 20:01:09 +010021#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/init.h>
23#include <linux/kernel.h>
24#include <linux/list.h>
25#include <linux/module.h>
26#include <linux/moduleparam.h>
Tim Schmielau4e57b682005-10-30 15:03:48 -080027#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/mtd/mtd.h>
29
Linus Torvalds1da177e2005-04-16 15:20:36 -070030struct phram_mtd_list {
31 struct mtd_info mtd;
32 struct list_head list;
33};
34
35static LIST_HEAD(phram_list);
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 memset(start + instr->addr, 0xff, instr->len);
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 return 0;
44}
45
46static int phram_point(struct mtd_info *mtd, loff_t from, size_t len,
Jared Hulberta98889f2008-04-29 23:26:49 -070047 size_t *retlen, void **virt, resource_size_t *phys)
Linus Torvalds1da177e2005-04-16 15:20:36 -070048{
Jared Hulberta98889f2008-04-29 23:26:49 -070049 *virt = mtd->priv + from;
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 *retlen = len;
51 return 0;
52}
53
Artem Bityutskiy5e4e6e32012-02-03 13:20:43 +020054static int phram_unpoint(struct mtd_info *mtd, loff_t from, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -070055{
Artem Bityutskiy5e4e6e32012-02-03 13:20:43 +020056 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057}
58
59static int phram_read(struct mtd_info *mtd, loff_t from, size_t len,
60 size_t *retlen, u_char *buf)
61{
62 u_char *start = mtd->priv;
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 memcpy(buf, start + from, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 *retlen = len;
66 return 0;
67}
68
69static int phram_write(struct mtd_info *mtd, loff_t to, size_t len,
70 size_t *retlen, const u_char *buf)
71{
72 u_char *start = mtd->priv;
73
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 memcpy(start + to, buf, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 *retlen = len;
76 return 0;
77}
78
Linus Torvalds1da177e2005-04-16 15:20:36 -070079static void unregister_devices(void)
80{
Joern Engeld30f11d2005-02-23 19:37:11 +000081 struct phram_mtd_list *this, *safe;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
Joern Engeld30f11d2005-02-23 19:37:11 +000083 list_for_each_entry_safe(this, safe, &phram_list, list) {
Jamie Ilesee0e87b2011-05-23 10:23:40 +010084 mtd_device_unregister(&this->mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 iounmap(this->mtd.priv);
Mathias Krausef17f12c2011-01-30 10:31:48 +010086 kfree(this->mtd.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 kfree(this);
88 }
89}
90
Alexander Sverdlin2a46f832013-10-02 18:42:29 +020091static int register_device(char *name, phys_addr_t start, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -070092{
93 struct phram_mtd_list *new;
94 int ret = -ENOMEM;
95
Burman Yan95b93a02006-11-15 21:10:29 +020096 new = kzalloc(sizeof(*new), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 if (!new)
98 goto out0;
99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 ret = -EIO;
101 new->mtd.priv = ioremap(start, len);
102 if (!new->mtd.priv) {
Mike Frysinger64da3922009-06-16 19:20:40 +0000103 pr_err("ioremap failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 goto out1;
105 }
106
107
108 new->mtd.name = name;
109 new->mtd.size = len;
Jörn Engela6c591e2006-04-13 18:54:34 +0200110 new->mtd.flags = MTD_CAP_RAM;
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200111 new->mtd._erase = phram_erase;
112 new->mtd._point = phram_point;
113 new->mtd._unpoint = phram_unpoint;
114 new->mtd._read = phram_read;
115 new->mtd._write = phram_write;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 new->mtd.owner = THIS_MODULE;
David Woodhouse21c8db92006-06-14 21:39:48 +0100117 new->mtd.type = MTD_RAM;
Joern Engel663259a2005-03-07 21:43:42 +0000118 new->mtd.erasesize = PAGE_SIZE;
Artem B. Bityutskiy17ffc7b2006-06-22 18:15:48 +0400119 new->mtd.writesize = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
121 ret = -EAGAIN;
Jamie Ilesee0e87b2011-05-23 10:23:40 +0100122 if (mtd_device_register(&new->mtd, NULL, 0)) {
Mike Frysinger64da3922009-06-16 19:20:40 +0000123 pr_err("Failed to register new device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 goto out2;
125 }
126
127 list_add_tail(&new->list, &phram_list);
Thomas Gleixnere5580fb2005-11-07 11:15:40 +0000128 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130out2:
131 iounmap(new->mtd.priv);
132out1:
133 kfree(new);
134out0:
135 return ret;
136}
137
Alexander Sverdlin2a46f832013-10-02 18:42:29 +0200138static int parse_num64(uint64_t *num64, char *token)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139{
Alexander Sverdlin2a46f832013-10-02 18:42:29 +0200140 size_t len;
141 int shift = 0;
142 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Alexander Sverdlin2a46f832013-10-02 18:42:29 +0200144 len = strlen(token);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 /* By dwmw2 editorial decree, "ki", "Mi" or "Gi" are to be used. */
Alexander Sverdlin2a46f832013-10-02 18:42:29 +0200146 if (len > 2) {
147 if (token[len - 1] == 'i') {
148 switch (token[len - 2]) {
149 case 'G':
150 shift += 10;
Gustavo A. R. Silva098d74b2019-02-08 12:09:11 -0600151 /* fall through */
Alexander Sverdlin2a46f832013-10-02 18:42:29 +0200152 case 'M':
153 shift += 10;
Gustavo A. R. Silva098d74b2019-02-08 12:09:11 -0600154 /* fall through */
Alexander Sverdlin2a46f832013-10-02 18:42:29 +0200155 case 'k':
156 shift += 10;
157 token[len - 2] = 0;
158 break;
159 default:
160 return -EINVAL;
161 }
162 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Alexander Sverdlin2a46f832013-10-02 18:42:29 +0200165 ret = kstrtou64(token, 0, num64);
166 *num64 <<= shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Alexander Sverdlin2a46f832013-10-02 18:42:29 +0200168 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169}
170
171static int parse_name(char **pname, const char *token)
172{
173 size_t len;
174 char *name;
175
176 len = strlen(token) + 1;
177 if (len > 64)
178 return -ENOSPC;
179
Fabian Frederick89384f62014-05-28 22:31:28 +0200180 name = kstrdup(token, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 if (!name)
182 return -ENOMEM;
183
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 *pname = name;
185 return 0;
186}
187
Joern Engel663259a2005-03-07 21:43:42 +0000188
189static inline void kill_final_newline(char *str)
190{
191 char *newline = strrchr(str, '\n');
Rob Wardc95777a2014-07-13 20:39:01 +0100192
Joern Engel663259a2005-03-07 21:43:42 +0000193 if (newline && !newline[1])
194 *newline = 0;
195}
196
197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198#define parse_err(fmt, args...) do { \
Mike Frysinger64da3922009-06-16 19:20:40 +0000199 pr_err(fmt , ## args); \
200 return 1; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201} while (0)
202
Alexander Sverdlin6f6b9fe2013-10-14 18:52:23 +0200203#ifndef MODULE
204static int phram_init_called;
Hervé Facheb2a2a842012-03-13 16:07:53 +0100205/*
206 * This shall contain the module parameter if any. It is of the form:
207 * - phram=<device>,<address>,<size> for module case
208 * - phram.phram=<device>,<address>,<size> for built-in case
Alexander Sverdlin2a46f832013-10-02 18:42:29 +0200209 * We leave 64 bytes for the device name, 20 for the address and 20 for the
Hervé Facheb2a2a842012-03-13 16:07:53 +0100210 * size.
211 * Example: phram.phram=rootfs,0xa0000000,512Mi
212 */
Alexander Sverdlin6f6b9fe2013-10-14 18:52:23 +0200213static char phram_paramline[64 + 20 + 20];
214#endif
Hervé Facheb2a2a842012-03-13 16:07:53 +0100215
Alexander Sverdlin6f6b9fe2013-10-14 18:52:23 +0200216static int phram_setup(const char *val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217{
Alexander Sverdlin2a46f832013-10-02 18:42:29 +0200218 char buf[64 + 20 + 20], *str = buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 char *token[3];
220 char *name;
Alexander Sverdlin2a46f832013-10-02 18:42:29 +0200221 uint64_t start;
222 uint64_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 int i, ret;
224
225 if (strnlen(val, sizeof(buf)) >= sizeof(buf))
226 parse_err("parameter too long\n");
227
228 strcpy(str, val);
Joern Engel663259a2005-03-07 21:43:42 +0000229 kill_final_newline(str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
Rob Wardc95777a2014-07-13 20:39:01 +0100231 for (i = 0; i < 3; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 token[i] = strsep(&str, ",");
233
234 if (str)
235 parse_err("too many arguments\n");
236
237 if (!token[2])
238 parse_err("not enough arguments\n");
239
240 ret = parse_name(&name, token[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 if (ret)
Mike Frysinger64da3922009-06-16 19:20:40 +0000242 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Alexander Sverdlin2a46f832013-10-02 18:42:29 +0200244 ret = parse_num64(&start, token[1]);
Jesper Juhl4f678a52006-05-14 01:07:18 +0200245 if (ret) {
246 kfree(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 parse_err("illegal start address\n");
Jesper Juhl4f678a52006-05-14 01:07:18 +0200248 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
Alexander Sverdlin2a46f832013-10-02 18:42:29 +0200250 ret = parse_num64(&len, token[2]);
Jesper Juhl4f678a52006-05-14 01:07:18 +0200251 if (ret) {
252 kfree(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 parse_err("illegal device length\n");
Jesper Juhl4f678a52006-05-14 01:07:18 +0200254 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Mike Frysinger64da3922009-06-16 19:20:40 +0000256 ret = register_device(name, start, len);
257 if (!ret)
Alexander Sverdlin2a46f832013-10-02 18:42:29 +0200258 pr_info("%s device: %#llx at %#llx\n", name, len, start);
Mathias Krausef17f12c2011-01-30 10:31:48 +0100259 else
260 kfree(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
Mike Frysinger64da3922009-06-16 19:20:40 +0000262 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263}
264
Kees Cooke4dca7b2017-10-17 19:04:42 -0700265static int phram_param_call(const char *val, const struct kernel_param *kp)
Hervé Facheb2a2a842012-03-13 16:07:53 +0100266{
Alexander Sverdlin6f6b9fe2013-10-14 18:52:23 +0200267#ifdef MODULE
268 return phram_setup(val);
269#else
Hervé Facheb2a2a842012-03-13 16:07:53 +0100270 /*
Alexander Sverdlin6f6b9fe2013-10-14 18:52:23 +0200271 * If more parameters are later passed in via
272 * /sys/module/phram/parameters/phram
273 * and init_phram() has already been called,
274 * we can parse the argument now.
Hervé Facheb2a2a842012-03-13 16:07:53 +0100275 */
Alexander Sverdlin6f6b9fe2013-10-14 18:52:23 +0200276
277 if (phram_init_called)
278 return phram_setup(val);
279
280 /*
281 * During early boot stage, we only save the parameters
282 * here. We must parse them later: if the param passed
283 * from kernel boot command line, phram_param_call() is
284 * called so early that it is not possible to resolve
285 * the device (even kmalloc() fails). Defer that work to
286 * phram_setup().
287 */
288
Hervé Facheb2a2a842012-03-13 16:07:53 +0100289 if (strlen(val) >= sizeof(phram_paramline))
290 return -ENOSPC;
291 strcpy(phram_paramline, val);
292
293 return 0;
Alexander Sverdlin6f6b9fe2013-10-14 18:52:23 +0200294#endif
Hervé Facheb2a2a842012-03-13 16:07:53 +0100295}
296
297module_param_call(phram, phram_param_call, NULL, NULL, 000);
Mark Hindleyf72561cf2008-03-31 14:25:03 +0100298MODULE_PARM_DESC(phram, "Memory region to map. \"phram=<name>,<start>,<length>\"");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
300
301static int __init init_phram(void)
302{
Alexander Sverdlin6f6b9fe2013-10-14 18:52:23 +0200303 int ret = 0;
Hervé Facheb2a2a842012-03-13 16:07:53 +0100304
Alexander Sverdlin6f6b9fe2013-10-14 18:52:23 +0200305#ifndef MODULE
306 if (phram_paramline[0])
307 ret = phram_setup(phram_paramline);
308 phram_init_called = 1;
309#endif
310
311 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312}
313
314static void __exit cleanup_phram(void)
315{
316 unregister_devices();
317}
318
319module_init(init_phram);
320module_exit(cleanup_phram);
321
322MODULE_LICENSE("GPL");
Joern Engel2b54aae2008-02-06 01:38:02 -0800323MODULE_AUTHOR("Joern Engel <joern@wh.fh-wedel.de>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324MODULE_DESCRIPTION("MTD driver for physical RAM");