blob: 31d6884f3351cfc7d016c67d524602e27fa60f68 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * dcssblk.c -- the S/390 block driver for dcss memory
3 *
4 * Authors: Carsten Otte, Stefan Weinhuber, Gerald Schaefer
5 */
6
Hongjie Yang93098bf2008-12-25 13:39:45 +01007#define KMSG_COMPONENT "dcssblk"
8#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
9
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/module.h>
11#include <linux/moduleparam.h>
12#include <linux/ctype.h>
13#include <linux/errno.h>
14#include <linux/init.h>
15#include <linux/slab.h>
16#include <linux/blkdev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/completion.h>
18#include <linux/interrupt.h>
Gerald Schaeferc3695272009-06-16 10:30:51 +020019#include <linux/platform_device.h>
20#include <asm/extmem.h>
21#include <asm/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#define DCSSBLK_NAME "dcssblk"
24#define DCSSBLK_MINORS_PER_DISK 1
25#define DCSSBLK_PARM_LEN 400
Kay Sievers98df67b2008-12-25 13:38:55 +010026#define DCSS_BUS_ID_SIZE 20
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Al Viro46d74322008-03-02 10:37:41 -050028static int dcssblk_open(struct block_device *bdev, fmode_t mode);
Al Virodb2a1442013-05-05 21:52:57 -040029static void dcssblk_release(struct gendisk *disk, fmode_t mode);
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +020030static void dcssblk_make_request(struct request_queue *q, struct bio *bio);
Matthew Wilcoxdd22f552015-01-07 18:05:34 +020031static long dcssblk_direct_access(struct block_device *bdev, sector_t secnum,
32 void **kaddr, unsigned long *pfn, long size);
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34static char dcssblk_segments[DCSSBLK_PARM_LEN] = "\0";
35
36static int dcssblk_major;
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -070037static const struct block_device_operations dcssblk_devops = {
Carsten Otte420edbc2005-06-23 22:05:23 -070038 .owner = THIS_MODULE,
Al Viro46d74322008-03-02 10:37:41 -050039 .open = dcssblk_open,
40 .release = dcssblk_release,
Carsten Otte420edbc2005-06-23 22:05:23 -070041 .direct_access = dcssblk_direct_access,
Linus Torvalds1da177e2005-04-16 15:20:36 -070042};
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044struct dcssblk_dev_info {
45 struct list_head lh;
46 struct device dev;
Kay Sievers98df67b2008-12-25 13:38:55 +010047 char segment_name[DCSS_BUS_ID_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 atomic_t use_count;
49 struct gendisk *gd;
50 unsigned long start;
51 unsigned long end;
52 int segment_type;
53 unsigned char save_pending;
54 unsigned char is_shared;
55 struct request_queue *dcssblk_queue;
Hongjie Yangb2300b92008-10-10 21:33:21 +020056 int num_of_segments;
57 struct list_head seg_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058};
59
Hongjie Yangb2300b92008-10-10 21:33:21 +020060struct segment_info {
61 struct list_head lh;
Kay Sievers98df67b2008-12-25 13:38:55 +010062 char segment_name[DCSS_BUS_ID_SIZE];
Hongjie Yangb2300b92008-10-10 21:33:21 +020063 unsigned long start;
64 unsigned long end;
65 int segment_type;
66};
67
68static ssize_t dcssblk_add_store(struct device * dev, struct device_attribute *attr, const char * buf,
69 size_t count);
70static ssize_t dcssblk_remove_store(struct device * dev, struct device_attribute *attr, const char * buf,
71 size_t count);
Hongjie Yangb2300b92008-10-10 21:33:21 +020072
73static DEVICE_ATTR(add, S_IWUSR, NULL, dcssblk_add_store);
74static DEVICE_ATTR(remove, S_IWUSR, NULL, dcssblk_remove_store);
Hongjie Yangb2300b92008-10-10 21:33:21 +020075
76static struct device *dcssblk_root_dev;
77
Denis Chengc11ca972008-01-26 14:11:13 +010078static LIST_HEAD(dcssblk_devices);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079static struct rw_semaphore dcssblk_devices_sem;
80
81/*
82 * release function for segment device.
83 */
84static void
85dcssblk_release_segment(struct device *dev)
86{
Hongjie Yangb2300b92008-10-10 21:33:21 +020087 struct dcssblk_dev_info *dev_info;
88 struct segment_info *entry, *temp;
89
90 dev_info = container_of(dev, struct dcssblk_dev_info, dev);
91 list_for_each_entry_safe(entry, temp, &dev_info->seg_list, lh) {
92 list_del(&entry->lh);
93 kfree(entry);
94 }
95 kfree(dev_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 module_put(THIS_MODULE);
97}
98
99/*
100 * get a minor number. needs to be called with
101 * down_write(&dcssblk_devices_sem) and the
102 * device needs to be enqueued before the semaphore is
103 * freed.
104 */
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100105static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106dcssblk_assign_free_minor(struct dcssblk_dev_info *dev_info)
107{
108 int minor, found;
109 struct dcssblk_dev_info *entry;
110
111 if (dev_info == NULL)
112 return -EINVAL;
113 for (minor = 0; minor < (1<<MINORBITS); minor++) {
114 found = 0;
115 // test if minor available
116 list_for_each_entry(entry, &dcssblk_devices, lh)
Gerald Schaeferd0591482009-06-12 10:26:35 +0200117 if (minor == entry->gd->first_minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 found++;
119 if (!found) break; // got unused minor
120 }
121 if (found)
122 return -EBUSY;
123 dev_info->gd->first_minor = minor;
124 return 0;
125}
126
127/*
128 * get the struct dcssblk_dev_info from dcssblk_devices
129 * for the given name.
130 * down_read(&dcssblk_devices_sem) must be held.
131 */
132static struct dcssblk_dev_info *
133dcssblk_get_device_by_name(char *name)
134{
135 struct dcssblk_dev_info *entry;
136
137 list_for_each_entry(entry, &dcssblk_devices, lh) {
138 if (!strcmp(name, entry->segment_name)) {
139 return entry;
140 }
141 }
142 return NULL;
143}
144
Hongjie Yangb2300b92008-10-10 21:33:21 +0200145/*
146 * get the struct segment_info from seg_list
147 * for the given name.
148 * down_read(&dcssblk_devices_sem) must be held.
149 */
150static struct segment_info *
151dcssblk_get_segment_by_name(char *name)
152{
153 struct dcssblk_dev_info *dev_info;
154 struct segment_info *entry;
155
156 list_for_each_entry(dev_info, &dcssblk_devices, lh) {
157 list_for_each_entry(entry, &dev_info->seg_list, lh) {
158 if (!strcmp(name, entry->segment_name))
159 return entry;
160 }
161 }
162 return NULL;
163}
164
165/*
166 * get the highest address of the multi-segment block.
167 */
168static unsigned long
169dcssblk_find_highest_addr(struct dcssblk_dev_info *dev_info)
170{
171 unsigned long highest_addr;
172 struct segment_info *entry;
173
174 highest_addr = 0;
175 list_for_each_entry(entry, &dev_info->seg_list, lh) {
176 if (highest_addr < entry->end)
177 highest_addr = entry->end;
178 }
179 return highest_addr;
180}
181
182/*
183 * get the lowest address of the multi-segment block.
184 */
185static unsigned long
186dcssblk_find_lowest_addr(struct dcssblk_dev_info *dev_info)
187{
188 int set_first;
189 unsigned long lowest_addr;
190 struct segment_info *entry;
191
192 set_first = 0;
193 lowest_addr = 0;
194 list_for_each_entry(entry, &dev_info->seg_list, lh) {
195 if (set_first == 0) {
196 lowest_addr = entry->start;
197 set_first = 1;
198 } else {
199 if (lowest_addr > entry->start)
200 lowest_addr = entry->start;
201 }
202 }
203 return lowest_addr;
204}
205
206/*
207 * Check continuity of segments.
208 */
209static int
210dcssblk_is_continuous(struct dcssblk_dev_info *dev_info)
211{
212 int i, j, rc;
213 struct segment_info *sort_list, *entry, temp;
214
215 if (dev_info->num_of_segments <= 1)
216 return 0;
217
218 sort_list = kzalloc(
219 sizeof(struct segment_info) * dev_info->num_of_segments,
220 GFP_KERNEL);
221 if (sort_list == NULL)
222 return -ENOMEM;
223 i = 0;
224 list_for_each_entry(entry, &dev_info->seg_list, lh) {
225 memcpy(&sort_list[i], entry, sizeof(struct segment_info));
226 i++;
227 }
228
229 /* sort segments */
230 for (i = 0; i < dev_info->num_of_segments; i++)
231 for (j = 0; j < dev_info->num_of_segments; j++)
232 if (sort_list[j].start > sort_list[i].start) {
233 memcpy(&temp, &sort_list[i],
234 sizeof(struct segment_info));
235 memcpy(&sort_list[i], &sort_list[j],
236 sizeof(struct segment_info));
237 memcpy(&sort_list[j], &temp,
238 sizeof(struct segment_info));
239 }
240
241 /* check continuity */
242 for (i = 0; i < dev_info->num_of_segments - 1; i++) {
243 if ((sort_list[i].end + 1) != sort_list[i+1].start) {
Hongjie Yang93098bf2008-12-25 13:39:45 +0100244 pr_err("Adjacent DCSSs %s and %s are not "
245 "contiguous\n", sort_list[i].segment_name,
246 sort_list[i+1].segment_name);
Hongjie Yangb2300b92008-10-10 21:33:21 +0200247 rc = -EINVAL;
248 goto out;
249 }
250 /* EN and EW are allowed in a block device */
251 if (sort_list[i].segment_type != sort_list[i+1].segment_type) {
252 if (!(sort_list[i].segment_type & SEGMENT_EXCLUSIVE) ||
253 (sort_list[i].segment_type == SEG_TYPE_ER) ||
254 !(sort_list[i+1].segment_type &
255 SEGMENT_EXCLUSIVE) ||
256 (sort_list[i+1].segment_type == SEG_TYPE_ER)) {
Hongjie Yang93098bf2008-12-25 13:39:45 +0100257 pr_err("DCSS %s and DCSS %s have "
258 "incompatible types\n",
259 sort_list[i].segment_name,
260 sort_list[i+1].segment_name);
Hongjie Yangb2300b92008-10-10 21:33:21 +0200261 rc = -EINVAL;
262 goto out;
263 }
264 }
265 }
266 rc = 0;
267out:
268 kfree(sort_list);
269 return rc;
270}
271
272/*
273 * Load a segment
274 */
275static int
276dcssblk_load_segment(char *name, struct segment_info **seg_info)
277{
278 int rc;
279
280 /* already loaded? */
281 down_read(&dcssblk_devices_sem);
282 *seg_info = dcssblk_get_segment_by_name(name);
283 up_read(&dcssblk_devices_sem);
284 if (*seg_info != NULL)
285 return -EEXIST;
286
287 /* get a struct segment_info */
288 *seg_info = kzalloc(sizeof(struct segment_info), GFP_KERNEL);
289 if (*seg_info == NULL)
290 return -ENOMEM;
291
292 strcpy((*seg_info)->segment_name, name);
293
294 /* load the segment */
295 rc = segment_load(name, SEGMENT_SHARED,
296 &(*seg_info)->start, &(*seg_info)->end);
297 if (rc < 0) {
298 segment_warning(rc, (*seg_info)->segment_name);
299 kfree(*seg_info);
300 } else {
301 INIT_LIST_HEAD(&(*seg_info)->lh);
302 (*seg_info)->segment_type = rc;
303 }
304 return rc;
305}
306
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307/*
308 * device attribute for switching shared/nonshared (exclusive)
309 * operation (show + store)
310 */
311static ssize_t
Yani Ioannoue404e272005-05-17 06:42:58 -0400312dcssblk_shared_show(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313{
314 struct dcssblk_dev_info *dev_info;
315
316 dev_info = container_of(dev, struct dcssblk_dev_info, dev);
317 return sprintf(buf, dev_info->is_shared ? "1\n" : "0\n");
318}
319
320static ssize_t
Yani Ioannoue404e272005-05-17 06:42:58 -0400321dcssblk_shared_store(struct device *dev, struct device_attribute *attr, const char *inbuf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322{
323 struct dcssblk_dev_info *dev_info;
Hongjie Yangb2300b92008-10-10 21:33:21 +0200324 struct segment_info *entry, *temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 int rc;
326
Hongjie Yangded77fb2008-07-14 09:59:39 +0200327 if ((count > 1) && (inbuf[1] != '\n') && (inbuf[1] != '\0'))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 down_write(&dcssblk_devices_sem);
330 dev_info = container_of(dev, struct dcssblk_dev_info, dev);
331 if (atomic_read(&dev_info->use_count)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 rc = -EBUSY;
333 goto out;
334 }
335 if (inbuf[0] == '1') {
Hongjie Yangb2300b92008-10-10 21:33:21 +0200336 /* reload segments in shared mode */
337 list_for_each_entry(entry, &dev_info->seg_list, lh) {
338 rc = segment_modify_shared(entry->segment_name,
339 SEGMENT_SHARED);
340 if (rc < 0) {
341 BUG_ON(rc == -EINVAL);
342 if (rc != -EAGAIN)
343 goto removeseg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 }
345 }
Hongjie Yangb2300b92008-10-10 21:33:21 +0200346 dev_info->is_shared = 1;
347 switch (dev_info->segment_type) {
348 case SEG_TYPE_SR:
349 case SEG_TYPE_ER:
350 case SEG_TYPE_SC:
351 set_disk_ro(dev_info->gd, 1);
352 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 } else if (inbuf[0] == '0') {
Hongjie Yangb2300b92008-10-10 21:33:21 +0200354 /* reload segments in exclusive mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 if (dev_info->segment_type == SEG_TYPE_SC) {
Hongjie Yang93098bf2008-12-25 13:39:45 +0100356 pr_err("DCSS %s is of type SC and cannot be "
357 "loaded as exclusive-writable\n",
358 dev_info->segment_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 rc = -EINVAL;
360 goto out;
361 }
Hongjie Yangb2300b92008-10-10 21:33:21 +0200362 list_for_each_entry(entry, &dev_info->seg_list, lh) {
363 rc = segment_modify_shared(entry->segment_name,
364 SEGMENT_EXCLUSIVE);
365 if (rc < 0) {
366 BUG_ON(rc == -EINVAL);
367 if (rc != -EAGAIN)
368 goto removeseg;
369 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 }
Hongjie Yangb2300b92008-10-10 21:33:21 +0200371 dev_info->is_shared = 0;
372 set_disk_ro(dev_info->gd, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 rc = -EINVAL;
375 goto out;
376 }
377 rc = count;
378 goto out;
379
380removeseg:
Hongjie Yang93098bf2008-12-25 13:39:45 +0100381 pr_err("DCSS device %s is removed after a failed access mode "
382 "change\n", dev_info->segment_name);
Hongjie Yangb2300b92008-10-10 21:33:21 +0200383 temp = entry;
384 list_for_each_entry(entry, &dev_info->seg_list, lh) {
385 if (entry != temp)
386 segment_unload(entry->segment_name);
387 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 list_del(&dev_info->lh);
389
390 del_gendisk(dev_info->gd);
Al Viro1312f402006-03-12 11:02:03 -0500391 blk_cleanup_queue(dev_info->dcssblk_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 dev_info->gd->queue = NULL;
393 put_disk(dev_info->gd);
Tejun Heo0b60f9e2014-02-03 14:03:04 -0500394 up_write(&dcssblk_devices_sem);
395
396 if (device_remove_file_self(dev, attr)) {
397 device_unregister(dev);
398 put_device(dev);
399 }
400 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401out:
402 up_write(&dcssblk_devices_sem);
403 return rc;
404}
Sebastian Ott521b3d72012-10-01 09:12:01 +0200405static DEVICE_ATTR(shared, S_IWUSR | S_IRUSR, dcssblk_shared_show,
406 dcssblk_shared_store);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
408/*
409 * device attribute for save operation on current copy
410 * of the segment. If the segment is busy, saving will
411 * become pending until it gets released, which can be
412 * undone by storing a non-true value to this entry.
413 * (show + store)
414 */
415static ssize_t
Yani Ioannoue404e272005-05-17 06:42:58 -0400416dcssblk_save_show(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417{
418 struct dcssblk_dev_info *dev_info;
419
420 dev_info = container_of(dev, struct dcssblk_dev_info, dev);
421 return sprintf(buf, dev_info->save_pending ? "1\n" : "0\n");
422}
423
424static ssize_t
Yani Ioannoue404e272005-05-17 06:42:58 -0400425dcssblk_save_store(struct device *dev, struct device_attribute *attr, const char *inbuf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426{
427 struct dcssblk_dev_info *dev_info;
Hongjie Yangb2300b92008-10-10 21:33:21 +0200428 struct segment_info *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
Hongjie Yangded77fb2008-07-14 09:59:39 +0200430 if ((count > 1) && (inbuf[1] != '\n') && (inbuf[1] != '\0'))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 dev_info = container_of(dev, struct dcssblk_dev_info, dev);
433
434 down_write(&dcssblk_devices_sem);
435 if (inbuf[0] == '1') {
436 if (atomic_read(&dev_info->use_count) == 0) {
437 // device is idle => we save immediately
Hongjie Yang93098bf2008-12-25 13:39:45 +0100438 pr_info("All DCSSs that map to device %s are "
439 "saved\n", dev_info->segment_name);
Hongjie Yangb2300b92008-10-10 21:33:21 +0200440 list_for_each_entry(entry, &dev_info->seg_list, lh) {
441 segment_save(entry->segment_name);
442 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 } else {
444 // device is busy => we save it when it becomes
445 // idle in dcssblk_release
Hongjie Yang93098bf2008-12-25 13:39:45 +0100446 pr_info("Device %s is in use, its DCSSs will be "
447 "saved when it becomes idle\n",
448 dev_info->segment_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 dev_info->save_pending = 1;
450 }
451 } else if (inbuf[0] == '0') {
452 if (dev_info->save_pending) {
453 // device is busy & the user wants to undo his save
454 // request
455 dev_info->save_pending = 0;
Hongjie Yang93098bf2008-12-25 13:39:45 +0100456 pr_info("A pending save request for device %s "
457 "has been canceled\n",
458 dev_info->segment_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 }
460 } else {
461 up_write(&dcssblk_devices_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 return -EINVAL;
463 }
464 up_write(&dcssblk_devices_sem);
465 return count;
466}
Sebastian Ott521b3d72012-10-01 09:12:01 +0200467static DEVICE_ATTR(save, S_IWUSR | S_IRUSR, dcssblk_save_show,
468 dcssblk_save_store);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
470/*
Hongjie Yangb2300b92008-10-10 21:33:21 +0200471 * device attribute for showing all segments in a device
472 */
473static ssize_t
474dcssblk_seglist_show(struct device *dev, struct device_attribute *attr,
475 char *buf)
476{
477 int i;
478
479 struct dcssblk_dev_info *dev_info;
480 struct segment_info *entry;
481
482 down_read(&dcssblk_devices_sem);
483 dev_info = container_of(dev, struct dcssblk_dev_info, dev);
484 i = 0;
485 buf[0] = '\0';
486 list_for_each_entry(entry, &dev_info->seg_list, lh) {
487 strcpy(&buf[i], entry->segment_name);
488 i += strlen(entry->segment_name);
489 buf[i] = '\n';
490 i++;
491 }
492 up_read(&dcssblk_devices_sem);
493 return i;
494}
Sebastian Ott521b3d72012-10-01 09:12:01 +0200495static DEVICE_ATTR(seglist, S_IRUSR, dcssblk_seglist_show, NULL);
496
497static struct attribute *dcssblk_dev_attrs[] = {
498 &dev_attr_shared.attr,
499 &dev_attr_save.attr,
500 &dev_attr_seglist.attr,
501 NULL,
502};
503static struct attribute_group dcssblk_dev_attr_group = {
504 .attrs = dcssblk_dev_attrs,
505};
506static const struct attribute_group *dcssblk_dev_attr_groups[] = {
507 &dcssblk_dev_attr_group,
508 NULL,
509};
Hongjie Yangb2300b92008-10-10 21:33:21 +0200510
511/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 * device attribute for adding devices
513 */
514static ssize_t
Yani Ioannoue404e272005-05-17 06:42:58 -0400515dcssblk_add_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516{
Hongjie Yangb2300b92008-10-10 21:33:21 +0200517 int rc, i, j, num_of_segments;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 struct dcssblk_dev_info *dev_info;
Hongjie Yangb2300b92008-10-10 21:33:21 +0200519 struct segment_info *seg_info, *temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 char *local_buf;
521 unsigned long seg_byte_size;
522
523 dev_info = NULL;
Hongjie Yangb2300b92008-10-10 21:33:21 +0200524 seg_info = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 if (dev != dcssblk_root_dev) {
526 rc = -EINVAL;
527 goto out_nobuf;
528 }
Hongjie Yangb2300b92008-10-10 21:33:21 +0200529 if ((count < 1) || (buf[0] == '\0') || (buf[0] == '\n')) {
530 rc = -ENAMETOOLONG;
531 goto out_nobuf;
532 }
533
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 local_buf = kmalloc(count + 1, GFP_KERNEL);
535 if (local_buf == NULL) {
536 rc = -ENOMEM;
537 goto out_nobuf;
538 }
Hongjie Yangb2300b92008-10-10 21:33:21 +0200539
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 /*
541 * parse input
542 */
Hongjie Yangb2300b92008-10-10 21:33:21 +0200543 num_of_segments = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 for (i = 0; ((buf[i] != '\0') && (buf[i] != '\n') && i < count); i++) {
Hongjie Yangb2300b92008-10-10 21:33:21 +0200545 for (j = i; (buf[j] != ':') &&
546 (buf[j] != '\0') &&
547 (buf[j] != '\n') &&
548 j < count; j++) {
549 local_buf[j-i] = toupper(buf[j]);
550 }
551 local_buf[j-i] = '\0';
552 if (((j - i) == 0) || ((j - i) > 8)) {
553 rc = -ENAMETOOLONG;
554 goto seg_list_del;
555 }
556
557 rc = dcssblk_load_segment(local_buf, &seg_info);
558 if (rc < 0)
559 goto seg_list_del;
560 /*
561 * get a struct dcssblk_dev_info
562 */
563 if (num_of_segments == 0) {
564 dev_info = kzalloc(sizeof(struct dcssblk_dev_info),
565 GFP_KERNEL);
566 if (dev_info == NULL) {
567 rc = -ENOMEM;
568 goto out;
569 }
570 strcpy(dev_info->segment_name, local_buf);
571 dev_info->segment_type = seg_info->segment_type;
572 INIT_LIST_HEAD(&dev_info->seg_list);
573 }
574 list_add_tail(&seg_info->lh, &dev_info->seg_list);
575 num_of_segments++;
576 i = j;
577
578 if ((buf[j] == '\0') || (buf[j] == '\n'))
579 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
Hongjie Yangb2300b92008-10-10 21:33:21 +0200582 /* no trailing colon at the end of the input */
583 if ((i > 0) && (buf[i-1] == ':')) {
584 rc = -ENAMETOOLONG;
585 goto seg_list_del;
586 }
587 strlcpy(local_buf, buf, i + 1);
588 dev_info->num_of_segments = num_of_segments;
589 rc = dcssblk_is_continuous(dev_info);
590 if (rc < 0)
591 goto seg_list_del;
592
593 dev_info->start = dcssblk_find_lowest_addr(dev_info);
594 dev_info->end = dcssblk_find_highest_addr(dev_info);
595
Kees Cookef283688f2014-06-10 10:46:20 -0700596 dev_set_name(&dev_info->dev, "%s", dev_info->segment_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 dev_info->dev.release = dcssblk_release_segment;
Sebastian Ott521b3d72012-10-01 09:12:01 +0200598 dev_info->dev.groups = dcssblk_dev_attr_groups;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 INIT_LIST_HEAD(&dev_info->lh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 dev_info->gd = alloc_disk(DCSSBLK_MINORS_PER_DISK);
601 if (dev_info->gd == NULL) {
602 rc = -ENOMEM;
Hongjie Yangb2300b92008-10-10 21:33:21 +0200603 goto seg_list_del;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 }
605 dev_info->gd->major = dcssblk_major;
606 dev_info->gd->fops = &dcssblk_devops;
607 dev_info->dcssblk_queue = blk_alloc_queue(GFP_KERNEL);
608 dev_info->gd->queue = dev_info->dcssblk_queue;
609 dev_info->gd->private_data = dev_info;
610 dev_info->gd->driverfs_dev = &dev_info->dev;
Heiko Carstensc5411db2008-02-05 16:50:50 +0100611 blk_queue_make_request(dev_info->dcssblk_queue, dcssblk_make_request);
Martin K. Petersene1defc42009-05-22 17:17:49 -0400612 blk_queue_logical_block_size(dev_info->dcssblk_queue, 4096);
Hongjie Yangb2300b92008-10-10 21:33:21 +0200613
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 seg_byte_size = (dev_info->end - dev_info->start + 1);
615 set_capacity(dev_info->gd, seg_byte_size >> 9); // size in sectors
Hongjie Yang93098bf2008-12-25 13:39:45 +0100616 pr_info("Loaded %s with total size %lu bytes and capacity %lu "
617 "sectors\n", local_buf, seg_byte_size, seg_byte_size >> 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 dev_info->save_pending = 0;
620 dev_info->is_shared = 1;
621 dev_info->dev.parent = dcssblk_root_dev;
622
623 /*
Hongjie Yangb2300b92008-10-10 21:33:21 +0200624 *get minor, add to list
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 */
626 down_write(&dcssblk_devices_sem);
Hongjie Yangb2300b92008-10-10 21:33:21 +0200627 if (dcssblk_get_segment_by_name(local_buf)) {
Gerald Schaefer04f64b52008-08-21 19:46:40 +0200628 rc = -EEXIST;
Hongjie Yangb2300b92008-10-10 21:33:21 +0200629 goto release_gd;
Gerald Schaefer04f64b52008-08-21 19:46:40 +0200630 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 rc = dcssblk_assign_free_minor(dev_info);
Hongjie Yangb2300b92008-10-10 21:33:21 +0200632 if (rc)
633 goto release_gd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 sprintf(dev_info->gd->disk_name, "dcssblk%d",
Gerald Schaeferd0591482009-06-12 10:26:35 +0200635 dev_info->gd->first_minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 list_add_tail(&dev_info->lh, &dcssblk_devices);
637
638 if (!try_module_get(THIS_MODULE)) {
639 rc = -ENODEV;
Hongjie Yangb2300b92008-10-10 21:33:21 +0200640 goto dev_list_del;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 }
642 /*
643 * register the device
644 */
645 rc = device_register(&dev_info->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 if (rc)
Sebastian Ott521b3d72012-10-01 09:12:01 +0200647 goto put_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
Sebastian Ott521b3d72012-10-01 09:12:01 +0200649 get_device(&dev_info->dev);
Christian Borntraeger436d1bc2007-12-04 16:09:03 +0100650 add_disk(dev_info->gd);
651
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 switch (dev_info->segment_type) {
653 case SEG_TYPE_SR:
654 case SEG_TYPE_ER:
655 case SEG_TYPE_SC:
656 set_disk_ro(dev_info->gd,1);
657 break;
658 default:
659 set_disk_ro(dev_info->gd,0);
660 break;
661 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 up_write(&dcssblk_devices_sem);
663 rc = count;
664 goto out;
665
Sebastian Ott521b3d72012-10-01 09:12:01 +0200666put_dev:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 list_del(&dev_info->lh);
Al Viro1312f402006-03-12 11:02:03 -0500668 blk_cleanup_queue(dev_info->dcssblk_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 dev_info->gd->queue = NULL;
670 put_disk(dev_info->gd);
Hongjie Yangb2300b92008-10-10 21:33:21 +0200671 list_for_each_entry(seg_info, &dev_info->seg_list, lh) {
672 segment_unload(seg_info->segment_name);
673 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 put_device(&dev_info->dev);
675 up_write(&dcssblk_devices_sem);
676 goto out;
Hongjie Yangb2300b92008-10-10 21:33:21 +0200677dev_list_del:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 list_del(&dev_info->lh);
Hongjie Yangb2300b92008-10-10 21:33:21 +0200679release_gd:
Al Viro1312f402006-03-12 11:02:03 -0500680 blk_cleanup_queue(dev_info->dcssblk_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 dev_info->gd->queue = NULL;
682 put_disk(dev_info->gd);
Hongjie Yangb2300b92008-10-10 21:33:21 +0200683 up_write(&dcssblk_devices_sem);
684seg_list_del:
685 if (dev_info == NULL)
686 goto out;
687 list_for_each_entry_safe(seg_info, temp, &dev_info->seg_list, lh) {
688 list_del(&seg_info->lh);
689 segment_unload(seg_info->segment_name);
690 kfree(seg_info);
691 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 kfree(dev_info);
693out:
694 kfree(local_buf);
695out_nobuf:
696 return rc;
697}
698
699/*
700 * device attribute for removing devices
701 */
702static ssize_t
Yani Ioannoue404e272005-05-17 06:42:58 -0400703dcssblk_remove_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704{
705 struct dcssblk_dev_info *dev_info;
Hongjie Yangb2300b92008-10-10 21:33:21 +0200706 struct segment_info *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 int rc, i;
708 char *local_buf;
709
710 if (dev != dcssblk_root_dev) {
711 return -EINVAL;
712 }
713 local_buf = kmalloc(count + 1, GFP_KERNEL);
714 if (local_buf == NULL) {
715 return -ENOMEM;
716 }
717 /*
718 * parse input
719 */
720 for (i = 0; ((*(buf+i)!='\0') && (*(buf+i)!='\n') && i < count); i++) {
721 local_buf[i] = toupper(buf[i]);
722 }
723 local_buf[i] = '\0';
724 if ((i == 0) || (i > 8)) {
725 rc = -ENAMETOOLONG;
726 goto out_buf;
727 }
728
729 down_write(&dcssblk_devices_sem);
730 dev_info = dcssblk_get_device_by_name(local_buf);
731 if (dev_info == NULL) {
732 up_write(&dcssblk_devices_sem);
Hongjie Yang93098bf2008-12-25 13:39:45 +0100733 pr_warning("Device %s cannot be removed because it is not a "
734 "known device\n", local_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 rc = -ENODEV;
736 goto out_buf;
737 }
738 if (atomic_read(&dev_info->use_count) != 0) {
739 up_write(&dcssblk_devices_sem);
Hongjie Yang93098bf2008-12-25 13:39:45 +0100740 pr_warning("Device %s cannot be removed while it is in "
741 "use\n", local_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 rc = -EBUSY;
743 goto out_buf;
744 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
Hongjie Yangb2300b92008-10-10 21:33:21 +0200746 list_del(&dev_info->lh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 del_gendisk(dev_info->gd);
Al Viro1312f402006-03-12 11:02:03 -0500748 blk_cleanup_queue(dev_info->dcssblk_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 dev_info->gd->queue = NULL;
750 put_disk(dev_info->gd);
751 device_unregister(&dev_info->dev);
Hongjie Yangb2300b92008-10-10 21:33:21 +0200752
753 /* unload all related segments */
754 list_for_each_entry(entry, &dev_info->seg_list, lh)
755 segment_unload(entry->segment_name);
756
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 put_device(&dev_info->dev);
758 up_write(&dcssblk_devices_sem);
759
760 rc = count;
761out_buf:
762 kfree(local_buf);
763 return rc;
764}
765
766static int
Al Viro46d74322008-03-02 10:37:41 -0500767dcssblk_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768{
769 struct dcssblk_dev_info *dev_info;
770 int rc;
771
Al Viro46d74322008-03-02 10:37:41 -0500772 dev_info = bdev->bd_disk->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 if (NULL == dev_info) {
774 rc = -ENODEV;
775 goto out;
776 }
777 atomic_inc(&dev_info->use_count);
Al Viro46d74322008-03-02 10:37:41 -0500778 bdev->bd_block_size = 4096;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 rc = 0;
780out:
781 return rc;
782}
783
Al Virodb2a1442013-05-05 21:52:57 -0400784static void
Al Viro46d74322008-03-02 10:37:41 -0500785dcssblk_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786{
Al Viro46d74322008-03-02 10:37:41 -0500787 struct dcssblk_dev_info *dev_info = disk->private_data;
Hongjie Yangb2300b92008-10-10 21:33:21 +0200788 struct segment_info *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
Al Viro46d74322008-03-02 10:37:41 -0500790 if (!dev_info) {
Al Virodb2a1442013-05-05 21:52:57 -0400791 WARN_ON(1);
792 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 }
794 down_write(&dcssblk_devices_sem);
795 if (atomic_dec_and_test(&dev_info->use_count)
796 && (dev_info->save_pending)) {
Hongjie Yang93098bf2008-12-25 13:39:45 +0100797 pr_info("Device %s has become idle and is being saved "
798 "now\n", dev_info->segment_name);
Hongjie Yangb2300b92008-10-10 21:33:21 +0200799 list_for_each_entry(entry, &dev_info->seg_list, lh) {
800 segment_save(entry->segment_name);
801 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 dev_info->save_pending = 0;
803 }
804 up_write(&dcssblk_devices_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805}
806
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +0200807static void
Jens Axboe165125e2007-07-24 09:28:11 +0200808dcssblk_make_request(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809{
810 struct dcssblk_dev_info *dev_info;
Kent Overstreet79886132013-11-23 17:19:00 -0800811 struct bio_vec bvec;
812 struct bvec_iter iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 unsigned long index;
814 unsigned long page_addr;
815 unsigned long source_addr;
816 unsigned long bytes_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
818 bytes_done = 0;
819 dev_info = bio->bi_bdev->bd_disk->private_data;
820 if (dev_info == NULL)
821 goto fail;
Kent Overstreet4f024f32013-10-11 15:44:27 -0700822 if ((bio->bi_iter.bi_sector & 7) != 0 ||
823 (bio->bi_iter.bi_size & 4095) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 /* Request is not page-aligned. */
825 goto fail;
Kent Overstreetf73a1c72012-09-25 15:05:12 -0700826 if (bio_end_sector(bio) > get_capacity(bio->bi_bdev->bd_disk)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 /* Request beyond end of DCSS segment. */
828 goto fail;
829 }
Carsten Otte420edbc2005-06-23 22:05:23 -0700830 /* verify data transfer direction */
831 if (dev_info->is_shared) {
832 switch (dev_info->segment_type) {
833 case SEG_TYPE_SR:
834 case SEG_TYPE_ER:
835 case SEG_TYPE_SC:
836 /* cannot write to these segments */
837 if (bio_data_dir(bio) == WRITE) {
Hongjie Yang93098bf2008-12-25 13:39:45 +0100838 pr_warning("Writing to %s failed because it "
839 "is a read-only device\n",
Kay Sievers2a0217d2008-10-10 21:33:09 +0200840 dev_name(&dev_info->dev));
Carsten Otte420edbc2005-06-23 22:05:23 -0700841 goto fail;
842 }
843 }
844 }
845
Kent Overstreet4f024f32013-10-11 15:44:27 -0700846 index = (bio->bi_iter.bi_sector >> 3);
Kent Overstreet79886132013-11-23 17:19:00 -0800847 bio_for_each_segment(bvec, bio, iter) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 page_addr = (unsigned long)
Kent Overstreet79886132013-11-23 17:19:00 -0800849 page_address(bvec.bv_page) + bvec.bv_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 source_addr = dev_info->start + (index<<12) + bytes_done;
Kent Overstreet79886132013-11-23 17:19:00 -0800851 if (unlikely((page_addr & 4095) != 0) || (bvec.bv_len & 4095) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 // More paranoia.
853 goto fail;
854 if (bio_data_dir(bio) == READ) {
855 memcpy((void*)page_addr, (void*)source_addr,
Kent Overstreet79886132013-11-23 17:19:00 -0800856 bvec.bv_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 } else {
858 memcpy((void*)source_addr, (void*)page_addr,
Kent Overstreet79886132013-11-23 17:19:00 -0800859 bvec.bv_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 }
Kent Overstreet79886132013-11-23 17:19:00 -0800861 bytes_done += bvec.bv_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 }
NeilBrown6712ecf2007-09-27 12:47:43 +0200863 bio_endio(bio, 0);
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +0200864 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865fail:
NeilBrown6712ecf2007-09-27 12:47:43 +0200866 bio_io_error(bio);
Carsten Otte420edbc2005-06-23 22:05:23 -0700867}
868
Matthew Wilcoxdd22f552015-01-07 18:05:34 +0200869static long
Carsten Otte420edbc2005-06-23 22:05:23 -0700870dcssblk_direct_access (struct block_device *bdev, sector_t secnum,
Matthew Wilcoxdd22f552015-01-07 18:05:34 +0200871 void **kaddr, unsigned long *pfn, long size)
Carsten Otte420edbc2005-06-23 22:05:23 -0700872{
873 struct dcssblk_dev_info *dev_info;
Matthew Wilcoxdd22f552015-01-07 18:05:34 +0200874 unsigned long offset, dev_sz;
Carsten Otte420edbc2005-06-23 22:05:23 -0700875
876 dev_info = bdev->bd_disk->private_data;
877 if (!dev_info)
878 return -ENODEV;
Matthew Wilcoxdd22f552015-01-07 18:05:34 +0200879 dev_sz = dev_info->end - dev_info->start;
880 offset = secnum * 512;
881 *kaddr = (void *) (dev_info->start + offset);
Jared Hulbert30afcb42008-04-28 02:13:02 -0700882 *pfn = virt_to_phys(*kaddr) >> PAGE_SHIFT;
883
Matthew Wilcoxdd22f552015-01-07 18:05:34 +0200884 return dev_sz - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885}
886
887static void
888dcssblk_check_params(void)
889{
890 int rc, i, j, k;
Hongjie Yangb2300b92008-10-10 21:33:21 +0200891 char buf[DCSSBLK_PARM_LEN + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 struct dcssblk_dev_info *dev_info;
893
894 for (i = 0; (i < DCSSBLK_PARM_LEN) && (dcssblk_segments[i] != '\0');
895 i++) {
896 for (j = i; (dcssblk_segments[j] != ',') &&
897 (dcssblk_segments[j] != '\0') &&
898 (dcssblk_segments[j] != '(') &&
Hongjie Yangb2300b92008-10-10 21:33:21 +0200899 (j < DCSSBLK_PARM_LEN); j++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 {
901 buf[j-i] = dcssblk_segments[j];
902 }
903 buf[j-i] = '\0';
Cornelia Huckf901e5d2005-06-25 14:55:29 -0700904 rc = dcssblk_add_store(dcssblk_root_dev, NULL, buf, j-i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 if ((rc >= 0) && (dcssblk_segments[j] == '(')) {
Hongjie Yangb2300b92008-10-10 21:33:21 +0200906 for (k = 0; (buf[k] != ':') && (buf[k] != '\0'); k++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 buf[k] = toupper(buf[k]);
Hongjie Yangb2300b92008-10-10 21:33:21 +0200908 buf[k] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 if (!strncmp(&dcssblk_segments[j], "(local)", 7)) {
910 down_read(&dcssblk_devices_sem);
911 dev_info = dcssblk_get_device_by_name(buf);
912 up_read(&dcssblk_devices_sem);
913 if (dev_info)
914 dcssblk_shared_store(&dev_info->dev,
Cornelia Huckf901e5d2005-06-25 14:55:29 -0700915 NULL, "0\n", 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 }
917 }
918 while ((dcssblk_segments[j] != ',') &&
919 (dcssblk_segments[j] != '\0'))
920 {
921 j++;
922 }
923 if (dcssblk_segments[j] == '\0')
924 break;
925 i = j;
926 }
927}
928
929/*
Gerald Schaeferc3695272009-06-16 10:30:51 +0200930 * Suspend / Resume
931 */
932static int dcssblk_freeze(struct device *dev)
933{
934 struct dcssblk_dev_info *dev_info;
935 int rc = 0;
936
937 list_for_each_entry(dev_info, &dcssblk_devices, lh) {
938 switch (dev_info->segment_type) {
939 case SEG_TYPE_SR:
940 case SEG_TYPE_ER:
941 case SEG_TYPE_SC:
942 if (!dev_info->is_shared)
943 rc = -EINVAL;
944 break;
945 default:
946 rc = -EINVAL;
947 break;
948 }
949 if (rc)
950 break;
951 }
952 if (rc)
Christian Borntraeger2c48c4d2009-07-07 16:37:11 +0200953 pr_err("Suspending the system failed because DCSS device %s "
954 "is writable\n",
Gerald Schaeferc3695272009-06-16 10:30:51 +0200955 dev_info->segment_name);
956 return rc;
957}
958
959static int dcssblk_restore(struct device *dev)
960{
961 struct dcssblk_dev_info *dev_info;
962 struct segment_info *entry;
963 unsigned long start, end;
964 int rc = 0;
965
966 list_for_each_entry(dev_info, &dcssblk_devices, lh) {
967 list_for_each_entry(entry, &dev_info->seg_list, lh) {
968 segment_unload(entry->segment_name);
969 rc = segment_load(entry->segment_name, SEGMENT_SHARED,
970 &start, &end);
971 if (rc < 0) {
972// TODO in_use check ?
973 segment_warning(rc, entry->segment_name);
974 goto out_panic;
975 }
976 if (start != entry->start || end != entry->end) {
Christian Borntraeger2c48c4d2009-07-07 16:37:11 +0200977 pr_err("The address range of DCSS %s changed "
978 "while the system was suspended\n",
Gerald Schaeferc3695272009-06-16 10:30:51 +0200979 entry->segment_name);
980 goto out_panic;
981 }
982 }
983 }
984 return 0;
985out_panic:
986 panic("fatal dcssblk resume error\n");
987}
988
989static int dcssblk_thaw(struct device *dev)
990{
991 return 0;
992}
993
Alexey Dobriyan47145212009-12-14 18:00:08 -0800994static const struct dev_pm_ops dcssblk_pm_ops = {
Gerald Schaeferc3695272009-06-16 10:30:51 +0200995 .freeze = dcssblk_freeze,
996 .thaw = dcssblk_thaw,
997 .restore = dcssblk_restore,
998};
999
1000static struct platform_driver dcssblk_pdrv = {
1001 .driver = {
1002 .name = "dcssblk",
Gerald Schaeferc3695272009-06-16 10:30:51 +02001003 .pm = &dcssblk_pm_ops,
1004 },
1005};
1006
1007static struct platform_device *dcssblk_pdev;
1008
1009
1010/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 * The init/exit functions.
1012 */
1013static void __exit
1014dcssblk_exit(void)
1015{
Gerald Schaeferc3695272009-06-16 10:30:51 +02001016 platform_device_unregister(dcssblk_pdev);
1017 platform_driver_unregister(&dcssblk_pdrv);
Mark McLoughlin035da162008-12-15 12:58:29 +00001018 root_device_unregister(dcssblk_root_dev);
Akinobu Mita00d59402007-07-17 04:03:46 -07001019 unregister_blkdev(dcssblk_major, DCSSBLK_NAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020}
1021
1022static int __init
1023dcssblk_init(void)
1024{
1025 int rc;
1026
Gerald Schaeferc3695272009-06-16 10:30:51 +02001027 rc = platform_driver_register(&dcssblk_pdrv);
1028 if (rc)
1029 return rc;
1030
1031 dcssblk_pdev = platform_device_register_simple("dcssblk", -1, NULL,
1032 0);
1033 if (IS_ERR(dcssblk_pdev)) {
1034 rc = PTR_ERR(dcssblk_pdev);
1035 goto out_pdrv;
1036 }
1037
Mark McLoughlin035da162008-12-15 12:58:29 +00001038 dcssblk_root_dev = root_device_register("dcssblk");
Gerald Schaeferc3695272009-06-16 10:30:51 +02001039 if (IS_ERR(dcssblk_root_dev)) {
1040 rc = PTR_ERR(dcssblk_root_dev);
1041 goto out_pdev;
1042 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 rc = device_create_file(dcssblk_root_dev, &dev_attr_add);
Gerald Schaeferc3695272009-06-16 10:30:51 +02001044 if (rc)
1045 goto out_root;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 rc = device_create_file(dcssblk_root_dev, &dev_attr_remove);
Gerald Schaeferc3695272009-06-16 10:30:51 +02001047 if (rc)
1048 goto out_root;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 rc = register_blkdev(0, DCSSBLK_NAME);
Gerald Schaeferc3695272009-06-16 10:30:51 +02001050 if (rc < 0)
1051 goto out_root;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 dcssblk_major = rc;
1053 init_rwsem(&dcssblk_devices_sem);
1054
1055 dcssblk_check_params();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 return 0;
Gerald Schaeferc3695272009-06-16 10:30:51 +02001057
1058out_root:
1059 root_device_unregister(dcssblk_root_dev);
1060out_pdev:
1061 platform_device_unregister(dcssblk_pdev);
1062out_pdrv:
1063 platform_driver_unregister(&dcssblk_pdrv);
1064 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065}
1066
1067module_init(dcssblk_init);
1068module_exit(dcssblk_exit);
1069
1070module_param_string(segments, dcssblk_segments, DCSSBLK_PARM_LEN, 0444);
1071MODULE_PARM_DESC(segments, "Name of DCSS segment(s) to be loaded, "
Hongjie Yangb2300b92008-10-10 21:33:21 +02001072 "comma-separated list, names in each set separated "
1073 "by commas are separated by colons, each set contains "
1074 "names of contiguous segments and each name max. 8 chars.\n"
1075 "Adding \"(local)\" to the end of each set equals echoing 0 "
1076 "to /sys/devices/dcssblk/<device name>/shared after loading "
1077 "the contiguous segments - \n"
1078 "e.g. segments=\"mydcss1,mydcss2:mydcss3,mydcss4(local)\"");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079
1080MODULE_LICENSE("GPL");