2 * $Id: phram.c,v 1.11 2005/01/05 18:05:13 dwmw2 Exp $
4 * Copyright (c) ???? Jochen Schäuble <psionic@psionic.de>
5 * Copyright (c) 2003-2004 Jörn Engel <joern@wh.fh-wedel.de>
9 * one commend line parameter per device, each in the form:
10 * phram=<name>,<start>,<len>
11 * <name> may be up to 63 characters.
12 * <start> and <len> can be octal, decimal or hexadecimal. If followed
13 * by "ki", "Mi" or "Gi", the numbers will be interpreted as kilo, mega or
17 * phram=swap,64Mi,128Mi phram=test,900Mi,1Mi
22 #include <linux/init.h>
23 #include <linux/kernel.h>
24 #include <linux/list.h>
25 #include <linux/module.h>
26 #include <linux/moduleparam.h>
27 #include <linux/mtd/mtd.h>
29 #define ERROR(fmt, args...) printk(KERN_ERR "phram: " fmt , ## args)
31 struct phram_mtd_list
{
33 struct list_head list
;
36 static LIST_HEAD(phram_list
);
40 static int phram_erase(struct mtd_info
*mtd
, struct erase_info
*instr
)
42 u_char
*start
= mtd
->priv
;
44 if (instr
->addr
+ instr
->len
> mtd
->size
)
47 memset(start
+ instr
->addr
, 0xff, instr
->len
);
49 /* This'll catch a few races. Free the thing before returning :)
50 * I don't feel at all ashamed. This kind of thing is possible anyway
51 * with flash, but unlikely.
54 instr
->state
= MTD_ERASE_DONE
;
56 mtd_erase_callback(instr
);
61 static int phram_point(struct mtd_info
*mtd
, loff_t from
, size_t len
,
62 size_t *retlen
, u_char
**mtdbuf
)
64 u_char
*start
= mtd
->priv
;
66 if (from
+ len
> mtd
->size
)
69 *mtdbuf
= start
+ from
;
74 static void phram_unpoint(struct mtd_info
*mtd
, u_char
*addr
, loff_t from
, size_t len
)
78 static int phram_read(struct mtd_info
*mtd
, loff_t from
, size_t len
,
79 size_t *retlen
, u_char
*buf
)
81 u_char
*start
= mtd
->priv
;
83 if (from
+ len
> mtd
->size
)
86 memcpy(buf
, start
+ from
, len
);
92 static int phram_write(struct mtd_info
*mtd
, loff_t to
, size_t len
,
93 size_t *retlen
, const u_char
*buf
)
95 u_char
*start
= mtd
->priv
;
97 if (to
+ len
> mtd
->size
)
100 memcpy(start
+ to
, buf
, len
);
108 static void unregister_devices(void)
110 struct phram_mtd_list
*this;
112 list_for_each_entry(this, &phram_list
, list
) {
113 del_mtd_device(&this->mtd
);
114 iounmap(this->mtd
.priv
);
119 static int register_device(char *name
, unsigned long start
, unsigned long len
)
121 struct phram_mtd_list
*new;
124 new = kmalloc(sizeof(*new), GFP_KERNEL
);
128 memset(new, 0, sizeof(*new));
131 new->mtd
.priv
= ioremap(start
, len
);
132 if (!new->mtd
.priv
) {
133 ERROR("ioremap failed\n");
138 new->mtd
.name
= name
;
140 new->mtd
.flags
= MTD_CAP_RAM
| MTD_ERASEABLE
| MTD_VOLATILE
;
141 new->mtd
.erase
= phram_erase
;
142 new->mtd
.point
= phram_point
;
143 new->mtd
.unpoint
= phram_unpoint
;
144 new->mtd
.read
= phram_read
;
145 new->mtd
.write
= phram_write
;
146 new->mtd
.owner
= THIS_MODULE
;
147 new->mtd
.type
= MTD_RAM
;
148 new->mtd
.erasesize
= 0;
151 if (add_mtd_device(&new->mtd
)) {
152 ERROR("Failed to register new device\n");
156 list_add_tail(&new->list
, &phram_list
);
160 iounmap(new->mtd
.priv
);
167 static int ustrtoul(const char *cp
, char **endp
, unsigned int base
)
169 unsigned long result
= simple_strtoul(cp
, endp
, base
);
178 /* By dwmw2 editorial decree, "ki", "Mi" or "Gi" are to be used. */
179 if ((*endp
)[1] == 'i')
185 static int parse_num32(uint32_t *num32
, const char *token
)
190 n
= ustrtoul(token
, &endp
, 0);
198 static int parse_name(char **pname
, const char *token
)
203 len
= strlen(token
) + 1;
207 name
= kmalloc(len
, GFP_KERNEL
);
217 #define parse_err(fmt, args...) do { \
218 ERROR(fmt , ## args); \
222 static int phram_setup(const char *val
, struct kernel_param
*kp
)
224 char buf
[64+12+12], *str
= buf
;
231 if (strnlen(val
, sizeof(buf
)) >= sizeof(buf
))
232 parse_err("parameter too long\n");
237 token
[i
] = strsep(&str
, ",");
240 parse_err("too many arguments\n");
243 parse_err("not enough arguments\n");
245 ret
= parse_name(&name
, token
[0]);
247 parse_err("out of memory\n");
249 parse_err("name too long\n");
253 ret
= parse_num32(&start
, token
[1]);
255 parse_err("illegal start address\n");
257 ret
= parse_num32(&len
, token
[2]);
259 parse_err("illegal device length\n");
261 register_device(name
, start
, len
);
266 module_param_call(phram
, phram_setup
, NULL
, NULL
, 000);
267 MODULE_PARM_DESC(phram
,"Memory region to map. \"map=<name>,<start>,<length>\"");
270 static int __init
init_phram(void)
275 static void __exit
cleanup_phram(void)
277 unregister_devices();
280 module_init(init_phram
);
281 module_exit(cleanup_phram
);
283 MODULE_LICENSE("GPL");
284 MODULE_AUTHOR("Jörn Engel <joern@wh.fh-wedel.de>");
285 MODULE_DESCRIPTION("MTD driver for physical RAM");