2 * Copyright (c) ???? Jochen Schäuble <psionic@psionic.de>
3 * Copyright (c) 2003-2004 Joern Engel <joern@wh.fh-wedel.de>
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
15 * phram=swap,64Mi,128Mi phram=test,900Mi,1Mi
18 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
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>
26 #include <linux/slab.h>
27 #include <linux/mtd/mtd.h>
29 struct phram_mtd_list
{
31 struct list_head list
;
34 static LIST_HEAD(phram_list
);
37 static int phram_erase(struct mtd_info
*mtd
, struct erase_info
*instr
)
39 u_char
*start
= mtd
->priv
;
41 if (instr
->addr
+ instr
->len
> mtd
->size
)
44 memset(start
+ instr
->addr
, 0xff, instr
->len
);
46 /* This'll catch a few races. Free the thing before returning :)
47 * I don't feel at all ashamed. This kind of thing is possible anyway
48 * with flash, but unlikely.
51 instr
->state
= MTD_ERASE_DONE
;
53 mtd_erase_callback(instr
);
58 static int phram_point(struct mtd_info
*mtd
, loff_t from
, size_t len
,
59 size_t *retlen
, void **virt
, resource_size_t
*phys
)
61 if (from
+ len
> mtd
->size
)
64 /* can we return a physical address with this driver? */
68 *virt
= mtd
->priv
+ from
;
73 static void phram_unpoint(struct mtd_info
*mtd
, loff_t from
, size_t len
)
77 static int phram_read(struct mtd_info
*mtd
, loff_t from
, size_t len
,
78 size_t *retlen
, u_char
*buf
)
80 u_char
*start
= mtd
->priv
;
82 if (from
>= mtd
->size
)
85 if (len
> mtd
->size
- from
)
86 len
= mtd
->size
- from
;
88 memcpy(buf
, start
+ from
, len
);
94 static int phram_write(struct mtd_info
*mtd
, loff_t to
, size_t len
,
95 size_t *retlen
, const u_char
*buf
)
97 u_char
*start
= mtd
->priv
;
102 if (len
> mtd
->size
- to
)
103 len
= mtd
->size
- to
;
105 memcpy(start
+ to
, buf
, len
);
113 static void unregister_devices(void)
115 struct phram_mtd_list
*this, *safe
;
117 list_for_each_entry_safe(this, safe
, &phram_list
, list
) {
118 del_mtd_device(&this->mtd
);
119 iounmap(this->mtd
.priv
);
124 static int register_device(char *name
, unsigned long start
, unsigned long len
)
126 struct phram_mtd_list
*new;
129 new = kzalloc(sizeof(*new), GFP_KERNEL
);
134 new->mtd
.priv
= ioremap(start
, len
);
135 if (!new->mtd
.priv
) {
136 pr_err("ioremap failed\n");
141 new->mtd
.name
= name
;
143 new->mtd
.flags
= MTD_CAP_RAM
;
144 new->mtd
.erase
= phram_erase
;
145 new->mtd
.point
= phram_point
;
146 new->mtd
.unpoint
= phram_unpoint
;
147 new->mtd
.read
= phram_read
;
148 new->mtd
.write
= phram_write
;
149 new->mtd
.owner
= THIS_MODULE
;
150 new->mtd
.type
= MTD_RAM
;
151 new->mtd
.erasesize
= PAGE_SIZE
;
152 new->mtd
.writesize
= 1;
155 if (add_mtd_device(&new->mtd
)) {
156 pr_err("Failed to register new device\n");
160 list_add_tail(&new->list
, &phram_list
);
164 iounmap(new->mtd
.priv
);
171 static int ustrtoul(const char *cp
, char **endp
, unsigned int base
)
173 unsigned long result
= simple_strtoul(cp
, endp
, base
);
182 /* By dwmw2 editorial decree, "ki", "Mi" or "Gi" are to be used. */
183 if ((*endp
)[1] == 'i')
189 static int parse_num32(uint32_t *num32
, const char *token
)
194 n
= ustrtoul(token
, &endp
, 0);
202 static int parse_name(char **pname
, const char *token
)
207 len
= strlen(token
) + 1;
211 name
= kmalloc(len
, GFP_KERNEL
);
222 static inline void kill_final_newline(char *str
)
224 char *newline
= strrchr(str
, '\n');
225 if (newline
&& !newline
[1])
230 #define parse_err(fmt, args...) do { \
231 pr_err(fmt , ## args); \
235 static int phram_setup(const char *val
, struct kernel_param
*kp
)
237 char buf
[64+12+12], *str
= buf
;
244 if (strnlen(val
, sizeof(buf
)) >= sizeof(buf
))
245 parse_err("parameter too long\n");
248 kill_final_newline(str
);
251 token
[i
] = strsep(&str
, ",");
254 parse_err("too many arguments\n");
257 parse_err("not enough arguments\n");
259 ret
= parse_name(&name
, token
[0]);
263 ret
= parse_num32(&start
, token
[1]);
266 parse_err("illegal start address\n");
269 ret
= parse_num32(&len
, token
[2]);
272 parse_err("illegal device length\n");
275 ret
= register_device(name
, start
, len
);
277 pr_info("%s device: %#x at %#x\n", name
, len
, start
);
282 module_param_call(phram
, phram_setup
, NULL
, NULL
, 000);
283 MODULE_PARM_DESC(phram
, "Memory region to map. \"phram=<name>,<start>,<length>\"");
286 static int __init
init_phram(void)
291 static void __exit
cleanup_phram(void)
293 unregister_devices();
296 module_init(init_phram
);
297 module_exit(cleanup_phram
);
299 MODULE_LICENSE("GPL");
300 MODULE_AUTHOR("Joern Engel <joern@wh.fh-wedel.de>");
301 MODULE_DESCRIPTION("MTD driver for physical RAM");