Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /** |
David Woodhouse | 151e765 | 2006-05-14 01:51:54 +0100 | [diff] [blame] | 2 | * Copyright (c) ???? Jochen Schäuble <psionic@psionic.de> |
Joern Engel | 2b54aae | 2008-02-06 01:38:02 -0800 | [diff] [blame] | 3 | * Copyright (c) 2003-2004 Joern Engel <joern@wh.fh-wedel.de> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | */ |
Mike Frysinger | 64da392 | 2009-06-16 19:20:40 +0000 | [diff] [blame] | 17 | |
Joe Perches | 1cd844f | 2010-10-20 10:39:22 -0700 | [diff] [blame] | 18 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
Mike Frysinger | 64da392 | 2009-06-16 19:20:40 +0000 | [diff] [blame] | 19 | |
Rob Ward | b85b8d9 | 2014-10-21 20:01:09 +0100 | [diff] [blame] | 20 | #include <linux/io.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 Schmielau | 4e57b68 | 2005-10-30 15:03:48 -0800 | [diff] [blame] | 26 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | #include <linux/mtd/mtd.h> |
| 28 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | struct phram_mtd_list { |
| 30 | struct mtd_info mtd; |
| 31 | struct list_head list; |
| 32 | }; |
| 33 | |
| 34 | static LIST_HEAD(phram_list); |
| 35 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | static int phram_erase(struct mtd_info *mtd, struct erase_info *instr) |
| 37 | { |
| 38 | u_char *start = mtd->priv; |
| 39 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | memset(start + instr->addr, 0xff, instr->len); |
| 41 | |
Hervé Fache | b2a2a84 | 2012-03-13 16:07:53 +0100 | [diff] [blame] | 42 | /* |
| 43 | * This'll catch a few races. Free the thing before returning :) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | * I don't feel at all ashamed. This kind of thing is possible anyway |
| 45 | * with flash, but unlikely. |
| 46 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | instr->state = MTD_ERASE_DONE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | mtd_erase_callback(instr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | return 0; |
| 50 | } |
| 51 | |
| 52 | static int phram_point(struct mtd_info *mtd, loff_t from, size_t len, |
Jared Hulbert | a98889f | 2008-04-29 23:26:49 -0700 | [diff] [blame] | 53 | size_t *retlen, void **virt, resource_size_t *phys) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | { |
Jared Hulbert | a98889f | 2008-04-29 23:26:49 -0700 | [diff] [blame] | 55 | *virt = mtd->priv + from; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | *retlen = len; |
| 57 | return 0; |
| 58 | } |
| 59 | |
Artem Bityutskiy | 5e4e6e3 | 2012-02-03 13:20:43 +0200 | [diff] [blame] | 60 | static int phram_unpoint(struct mtd_info *mtd, loff_t from, size_t len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | { |
Artem Bityutskiy | 5e4e6e3 | 2012-02-03 13:20:43 +0200 | [diff] [blame] | 62 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | } |
| 64 | |
| 65 | static int phram_read(struct mtd_info *mtd, loff_t from, size_t len, |
| 66 | size_t *retlen, u_char *buf) |
| 67 | { |
| 68 | u_char *start = mtd->priv; |
| 69 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | memcpy(buf, start + from, len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | *retlen = len; |
| 72 | return 0; |
| 73 | } |
| 74 | |
| 75 | static int phram_write(struct mtd_info *mtd, loff_t to, size_t len, |
| 76 | size_t *retlen, const u_char *buf) |
| 77 | { |
| 78 | u_char *start = mtd->priv; |
| 79 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | memcpy(start + to, buf, len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | *retlen = len; |
| 82 | return 0; |
| 83 | } |
| 84 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | static void unregister_devices(void) |
| 86 | { |
Joern Engel | d30f11d | 2005-02-23 19:37:11 +0000 | [diff] [blame] | 87 | struct phram_mtd_list *this, *safe; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | |
Joern Engel | d30f11d | 2005-02-23 19:37:11 +0000 | [diff] [blame] | 89 | list_for_each_entry_safe(this, safe, &phram_list, list) { |
Jamie Iles | ee0e87b | 2011-05-23 10:23:40 +0100 | [diff] [blame] | 90 | mtd_device_unregister(&this->mtd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | iounmap(this->mtd.priv); |
Mathias Krause | f17f12c | 2011-01-30 10:31:48 +0100 | [diff] [blame] | 92 | kfree(this->mtd.name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | kfree(this); |
| 94 | } |
| 95 | } |
| 96 | |
Alexander Sverdlin | 2a46f83 | 2013-10-02 18:42:29 +0200 | [diff] [blame] | 97 | static int register_device(char *name, phys_addr_t start, size_t len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | { |
| 99 | struct phram_mtd_list *new; |
| 100 | int ret = -ENOMEM; |
| 101 | |
Burman Yan | 95b93a0 | 2006-11-15 21:10:29 +0200 | [diff] [blame] | 102 | new = kzalloc(sizeof(*new), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | if (!new) |
| 104 | goto out0; |
| 105 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | ret = -EIO; |
| 107 | new->mtd.priv = ioremap(start, len); |
| 108 | if (!new->mtd.priv) { |
Mike Frysinger | 64da392 | 2009-06-16 19:20:40 +0000 | [diff] [blame] | 109 | pr_err("ioremap failed\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | goto out1; |
| 111 | } |
| 112 | |
| 113 | |
| 114 | new->mtd.name = name; |
| 115 | new->mtd.size = len; |
Jörn Engel | a6c591e | 2006-04-13 18:54:34 +0200 | [diff] [blame] | 116 | new->mtd.flags = MTD_CAP_RAM; |
Artem Bityutskiy | 3c3c10b | 2012-01-30 14:58:32 +0200 | [diff] [blame] | 117 | new->mtd._erase = phram_erase; |
| 118 | new->mtd._point = phram_point; |
| 119 | new->mtd._unpoint = phram_unpoint; |
| 120 | new->mtd._read = phram_read; |
| 121 | new->mtd._write = phram_write; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | new->mtd.owner = THIS_MODULE; |
David Woodhouse | 21c8db9 | 2006-06-14 21:39:48 +0100 | [diff] [blame] | 123 | new->mtd.type = MTD_RAM; |
Joern Engel | 663259a | 2005-03-07 21:43:42 +0000 | [diff] [blame] | 124 | new->mtd.erasesize = PAGE_SIZE; |
Artem B. Bityutskiy | 17ffc7b | 2006-06-22 18:15:48 +0400 | [diff] [blame] | 125 | new->mtd.writesize = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | |
| 127 | ret = -EAGAIN; |
Jamie Iles | ee0e87b | 2011-05-23 10:23:40 +0100 | [diff] [blame] | 128 | if (mtd_device_register(&new->mtd, NULL, 0)) { |
Mike Frysinger | 64da392 | 2009-06-16 19:20:40 +0000 | [diff] [blame] | 129 | pr_err("Failed to register new device\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | goto out2; |
| 131 | } |
| 132 | |
| 133 | list_add_tail(&new->list, &phram_list); |
Thomas Gleixner | e5580fb | 2005-11-07 11:15:40 +0000 | [diff] [blame] | 134 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | |
| 136 | out2: |
| 137 | iounmap(new->mtd.priv); |
| 138 | out1: |
| 139 | kfree(new); |
| 140 | out0: |
| 141 | return ret; |
| 142 | } |
| 143 | |
Alexander Sverdlin | 2a46f83 | 2013-10-02 18:42:29 +0200 | [diff] [blame] | 144 | static int parse_num64(uint64_t *num64, char *token) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | { |
Alexander Sverdlin | 2a46f83 | 2013-10-02 18:42:29 +0200 | [diff] [blame] | 146 | size_t len; |
| 147 | int shift = 0; |
| 148 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | |
Alexander Sverdlin | 2a46f83 | 2013-10-02 18:42:29 +0200 | [diff] [blame] | 150 | len = strlen(token); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | /* By dwmw2 editorial decree, "ki", "Mi" or "Gi" are to be used. */ |
Alexander Sverdlin | 2a46f83 | 2013-10-02 18:42:29 +0200 | [diff] [blame] | 152 | if (len > 2) { |
| 153 | if (token[len - 1] == 'i') { |
| 154 | switch (token[len - 2]) { |
| 155 | case 'G': |
| 156 | shift += 10; |
| 157 | case 'M': |
| 158 | shift += 10; |
| 159 | case 'k': |
| 160 | shift += 10; |
| 161 | token[len - 2] = 0; |
| 162 | break; |
| 163 | default: |
| 164 | return -EINVAL; |
| 165 | } |
| 166 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | |
Alexander Sverdlin | 2a46f83 | 2013-10-02 18:42:29 +0200 | [diff] [blame] | 169 | ret = kstrtou64(token, 0, num64); |
| 170 | *num64 <<= shift; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | |
Alexander Sverdlin | 2a46f83 | 2013-10-02 18:42:29 +0200 | [diff] [blame] | 172 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | } |
| 174 | |
| 175 | static int parse_name(char **pname, const char *token) |
| 176 | { |
| 177 | size_t len; |
| 178 | char *name; |
| 179 | |
| 180 | len = strlen(token) + 1; |
| 181 | if (len > 64) |
| 182 | return -ENOSPC; |
| 183 | |
Fabian Frederick | 89384f6 | 2014-05-28 22:31:28 +0200 | [diff] [blame] | 184 | name = kstrdup(token, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | if (!name) |
| 186 | return -ENOMEM; |
| 187 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | *pname = name; |
| 189 | return 0; |
| 190 | } |
| 191 | |
Joern Engel | 663259a | 2005-03-07 21:43:42 +0000 | [diff] [blame] | 192 | |
| 193 | static inline void kill_final_newline(char *str) |
| 194 | { |
| 195 | char *newline = strrchr(str, '\n'); |
Rob Ward | c95777a | 2014-07-13 20:39:01 +0100 | [diff] [blame] | 196 | |
Joern Engel | 663259a | 2005-03-07 21:43:42 +0000 | [diff] [blame] | 197 | if (newline && !newline[1]) |
| 198 | *newline = 0; |
| 199 | } |
| 200 | |
| 201 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | #define parse_err(fmt, args...) do { \ |
Mike Frysinger | 64da392 | 2009-06-16 19:20:40 +0000 | [diff] [blame] | 203 | pr_err(fmt , ## args); \ |
| 204 | return 1; \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | } while (0) |
| 206 | |
Alexander Sverdlin | 6f6b9fe | 2013-10-14 18:52:23 +0200 | [diff] [blame] | 207 | #ifndef MODULE |
| 208 | static int phram_init_called; |
Hervé Fache | b2a2a84 | 2012-03-13 16:07:53 +0100 | [diff] [blame] | 209 | /* |
| 210 | * This shall contain the module parameter if any. It is of the form: |
| 211 | * - phram=<device>,<address>,<size> for module case |
| 212 | * - phram.phram=<device>,<address>,<size> for built-in case |
Alexander Sverdlin | 2a46f83 | 2013-10-02 18:42:29 +0200 | [diff] [blame] | 213 | * We leave 64 bytes for the device name, 20 for the address and 20 for the |
Hervé Fache | b2a2a84 | 2012-03-13 16:07:53 +0100 | [diff] [blame] | 214 | * size. |
| 215 | * Example: phram.phram=rootfs,0xa0000000,512Mi |
| 216 | */ |
Alexander Sverdlin | 6f6b9fe | 2013-10-14 18:52:23 +0200 | [diff] [blame] | 217 | static char phram_paramline[64 + 20 + 20]; |
| 218 | #endif |
Hervé Fache | b2a2a84 | 2012-03-13 16:07:53 +0100 | [diff] [blame] | 219 | |
Alexander Sverdlin | 6f6b9fe | 2013-10-14 18:52:23 +0200 | [diff] [blame] | 220 | static int phram_setup(const char *val) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | { |
Alexander Sverdlin | 2a46f83 | 2013-10-02 18:42:29 +0200 | [diff] [blame] | 222 | char buf[64 + 20 + 20], *str = buf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | char *token[3]; |
| 224 | char *name; |
Alexander Sverdlin | 2a46f83 | 2013-10-02 18:42:29 +0200 | [diff] [blame] | 225 | uint64_t start; |
| 226 | uint64_t len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | int i, ret; |
| 228 | |
| 229 | if (strnlen(val, sizeof(buf)) >= sizeof(buf)) |
| 230 | parse_err("parameter too long\n"); |
| 231 | |
| 232 | strcpy(str, val); |
Joern Engel | 663259a | 2005-03-07 21:43:42 +0000 | [diff] [blame] | 233 | kill_final_newline(str); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | |
Rob Ward | c95777a | 2014-07-13 20:39:01 +0100 | [diff] [blame] | 235 | for (i = 0; i < 3; i++) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | token[i] = strsep(&str, ","); |
| 237 | |
| 238 | if (str) |
| 239 | parse_err("too many arguments\n"); |
| 240 | |
| 241 | if (!token[2]) |
| 242 | parse_err("not enough arguments\n"); |
| 243 | |
| 244 | ret = parse_name(&name, token[0]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | if (ret) |
Mike Frysinger | 64da392 | 2009-06-16 19:20:40 +0000 | [diff] [blame] | 246 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | |
Alexander Sverdlin | 2a46f83 | 2013-10-02 18:42:29 +0200 | [diff] [blame] | 248 | ret = parse_num64(&start, token[1]); |
Jesper Juhl | 4f678a5 | 2006-05-14 01:07:18 +0200 | [diff] [blame] | 249 | if (ret) { |
| 250 | kfree(name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | parse_err("illegal start address\n"); |
Jesper Juhl | 4f678a5 | 2006-05-14 01:07:18 +0200 | [diff] [blame] | 252 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | |
Alexander Sverdlin | 2a46f83 | 2013-10-02 18:42:29 +0200 | [diff] [blame] | 254 | ret = parse_num64(&len, token[2]); |
Jesper Juhl | 4f678a5 | 2006-05-14 01:07:18 +0200 | [diff] [blame] | 255 | if (ret) { |
| 256 | kfree(name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | parse_err("illegal device length\n"); |
Jesper Juhl | 4f678a5 | 2006-05-14 01:07:18 +0200 | [diff] [blame] | 258 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | |
Mike Frysinger | 64da392 | 2009-06-16 19:20:40 +0000 | [diff] [blame] | 260 | ret = register_device(name, start, len); |
| 261 | if (!ret) |
Alexander Sverdlin | 2a46f83 | 2013-10-02 18:42:29 +0200 | [diff] [blame] | 262 | pr_info("%s device: %#llx at %#llx\n", name, len, start); |
Mathias Krause | f17f12c | 2011-01-30 10:31:48 +0100 | [diff] [blame] | 263 | else |
| 264 | kfree(name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | |
Mike Frysinger | 64da392 | 2009-06-16 19:20:40 +0000 | [diff] [blame] | 266 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | } |
| 268 | |
Alexander Sverdlin | 6f6b9fe | 2013-10-14 18:52:23 +0200 | [diff] [blame] | 269 | static int phram_param_call(const char *val, struct kernel_param *kp) |
Hervé Fache | b2a2a84 | 2012-03-13 16:07:53 +0100 | [diff] [blame] | 270 | { |
Alexander Sverdlin | 6f6b9fe | 2013-10-14 18:52:23 +0200 | [diff] [blame] | 271 | #ifdef MODULE |
| 272 | return phram_setup(val); |
| 273 | #else |
Hervé Fache | b2a2a84 | 2012-03-13 16:07:53 +0100 | [diff] [blame] | 274 | /* |
Alexander Sverdlin | 6f6b9fe | 2013-10-14 18:52:23 +0200 | [diff] [blame] | 275 | * If more parameters are later passed in via |
| 276 | * /sys/module/phram/parameters/phram |
| 277 | * and init_phram() has already been called, |
| 278 | * we can parse the argument now. |
Hervé Fache | b2a2a84 | 2012-03-13 16:07:53 +0100 | [diff] [blame] | 279 | */ |
Alexander Sverdlin | 6f6b9fe | 2013-10-14 18:52:23 +0200 | [diff] [blame] | 280 | |
| 281 | if (phram_init_called) |
| 282 | return phram_setup(val); |
| 283 | |
| 284 | /* |
| 285 | * During early boot stage, we only save the parameters |
| 286 | * here. We must parse them later: if the param passed |
| 287 | * from kernel boot command line, phram_param_call() is |
| 288 | * called so early that it is not possible to resolve |
| 289 | * the device (even kmalloc() fails). Defer that work to |
| 290 | * phram_setup(). |
| 291 | */ |
| 292 | |
Hervé Fache | b2a2a84 | 2012-03-13 16:07:53 +0100 | [diff] [blame] | 293 | if (strlen(val) >= sizeof(phram_paramline)) |
| 294 | return -ENOSPC; |
| 295 | strcpy(phram_paramline, val); |
| 296 | |
| 297 | return 0; |
Alexander Sverdlin | 6f6b9fe | 2013-10-14 18:52:23 +0200 | [diff] [blame] | 298 | #endif |
Hervé Fache | b2a2a84 | 2012-03-13 16:07:53 +0100 | [diff] [blame] | 299 | } |
| 300 | |
| 301 | module_param_call(phram, phram_param_call, NULL, NULL, 000); |
Mark Hindley | f72561cf | 2008-03-31 14:25:03 +0100 | [diff] [blame] | 302 | MODULE_PARM_DESC(phram, "Memory region to map. \"phram=<name>,<start>,<length>\""); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | |
| 304 | |
| 305 | static int __init init_phram(void) |
| 306 | { |
Alexander Sverdlin | 6f6b9fe | 2013-10-14 18:52:23 +0200 | [diff] [blame] | 307 | int ret = 0; |
Hervé Fache | b2a2a84 | 2012-03-13 16:07:53 +0100 | [diff] [blame] | 308 | |
Alexander Sverdlin | 6f6b9fe | 2013-10-14 18:52:23 +0200 | [diff] [blame] | 309 | #ifndef MODULE |
| 310 | if (phram_paramline[0]) |
| 311 | ret = phram_setup(phram_paramline); |
| 312 | phram_init_called = 1; |
| 313 | #endif |
| 314 | |
| 315 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | } |
| 317 | |
| 318 | static void __exit cleanup_phram(void) |
| 319 | { |
| 320 | unregister_devices(); |
| 321 | } |
| 322 | |
| 323 | module_init(init_phram); |
| 324 | module_exit(cleanup_phram); |
| 325 | |
| 326 | MODULE_LICENSE("GPL"); |
Joern Engel | 2b54aae | 2008-02-06 01:38:02 -0800 | [diff] [blame] | 327 | MODULE_AUTHOR("Joern Engel <joern@wh.fh-wedel.de>"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | MODULE_DESCRIPTION("MTD driver for physical RAM"); |