2 * Xpram.c -- the S/390 expanded memory RAM-disk
4 * significant parts of this code are based on
5 * the sbull device driver presented in
6 * A. Rubini: Linux Device Drivers
8 * Author of XPRAM specific coding: Reinhard Buendgen
10 * Rewrite for 2.5: Martin Schwidefsky <schwidefsky@de.ibm.com>
12 * External interfaces:
13 * Interfaces to linux kernel
14 * xpram_setup: read kernel parameters
15 * Device specific file operations
19 * "ad-hoc" partitioning:
20 * the expanded memory can be partitioned among several devices
21 * (with different minors). The partitioning set up can be
22 * set by kernel or module parameters (int devs & int sizes[])
24 * Potential future improvements:
25 * generic hard disk support to replace ad-hoc partitioning
28 #define KMSG_COMPONENT "xpram"
29 #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
31 #include <linux/module.h>
32 #include <linux/moduleparam.h>
33 #include <linux/ctype.h> /* isdigit, isxdigit */
34 #include <linux/errno.h>
35 #include <linux/init.h>
36 #include <linux/blkdev.h>
37 #include <linux/blkpg.h>
38 #include <linux/hdreg.h> /* HDIO_GETGEO */
39 #include <linux/device.h>
40 #include <linux/bio.h>
41 #include <linux/suspend.h>
42 #include <linux/platform_device.h>
43 #include <linux/gfp.h>
44 #include <asm/uaccess.h>
46 #define XPRAM_NAME "xpram"
47 #define XPRAM_DEVS 1 /* one partition */
48 #define XPRAM_MAX_DEVS 32 /* maximal number of devices (partitions) */
51 unsigned int size
; /* size of xpram segment in pages */
52 unsigned int offset
; /* start page of xpram segment */
55 static xpram_device_t xpram_devices
[XPRAM_MAX_DEVS
];
56 static unsigned int xpram_sizes
[XPRAM_MAX_DEVS
];
57 static struct gendisk
*xpram_disks
[XPRAM_MAX_DEVS
];
58 static struct request_queue
*xpram_queues
[XPRAM_MAX_DEVS
];
59 static unsigned int xpram_pages
;
60 static int xpram_devs
;
63 * Parameter parsing functions.
65 static int devs
= XPRAM_DEVS
;
66 static char *sizes
[XPRAM_MAX_DEVS
];
68 module_param(devs
, int, 0);
69 module_param_array(sizes
, charp
, NULL
, 0);
71 MODULE_PARM_DESC(devs
, "number of devices (\"partitions\"), " \
72 "the default is " __MODULE_STRING(XPRAM_DEVS
) "\n");
73 MODULE_PARM_DESC(sizes
, "list of device (partition) sizes " \
74 "the defaults are 0s \n" \
75 "All devices with size 0 equally partition the "
76 "remaining space on the expanded strorage not "
77 "claimed by explicit sizes\n");
78 MODULE_LICENSE("GPL");
81 * Copy expanded memory page (4kB) into main memory
83 * page_addr: address of target page
84 * xpage_index: index of expandeded memory page
86 * 0: if operation succeeds
87 * -EIO: if pgin failed
88 * -ENXIO: if xpram has vanished
90 static int xpram_page_in (unsigned long page_addr
, unsigned int xpage_index
)
92 int cc
= 2; /* return unused cc 2 if pgin traps */
95 " .insn rre,0xb22e0000,%1,%2\n" /* pgin %1,%2 */
100 : "+d" (cc
) : "a" (__pa(page_addr
)), "d" (xpage_index
) : "cc");
111 * Copy a 4kB page of main memory to an expanded memory page
113 * page_addr: address of source page
114 * xpage_index: index of expandeded memory page
116 * 0: if operation succeeds
117 * -EIO: if pgout failed
118 * -ENXIO: if xpram has vanished
120 static long xpram_page_out (unsigned long page_addr
, unsigned int xpage_index
)
122 int cc
= 2; /* return unused cc 2 if pgin traps */
125 " .insn rre,0xb22f0000,%1,%2\n" /* pgout %1,%2 */
130 : "+d" (cc
) : "a" (__pa(page_addr
)), "d" (xpage_index
) : "cc");
141 * Check if xpram is available.
143 static int xpram_present(void)
145 unsigned long mem_page
;
148 mem_page
= (unsigned long) __get_free_page(GFP_KERNEL
);
151 rc
= xpram_page_in(mem_page
, 0);
153 return rc
? -ENXIO
: 0;
157 * Return index of the last available xpram page.
159 static unsigned long xpram_highest_page_index(void)
161 unsigned int page_index
, add_bit
;
162 unsigned long mem_page
;
164 mem_page
= (unsigned long) __get_free_page(GFP_KERNEL
);
169 add_bit
= 1ULL << (sizeof(unsigned int)*8 - 1);
170 while (add_bit
> 0) {
171 if (xpram_page_in(mem_page
, page_index
| add_bit
) == 0)
172 page_index
|= add_bit
;
176 free_page (mem_page
);
182 * Block device make request function.
184 static blk_qc_t
xpram_make_request(struct request_queue
*q
, struct bio
*bio
)
186 xpram_device_t
*xdev
= bio
->bi_bdev
->bd_disk
->private_data
;
188 struct bvec_iter iter
;
190 unsigned long page_addr
;
193 blk_queue_split(q
, &bio
, q
->bio_split
);
195 if ((bio
->bi_iter
.bi_sector
& 7) != 0 ||
196 (bio
->bi_iter
.bi_size
& 4095) != 0)
197 /* Request is not page-aligned. */
199 if ((bio
->bi_iter
.bi_size
>> 12) > xdev
->size
)
200 /* Request size is no page-aligned. */
202 if ((bio
->bi_iter
.bi_sector
>> 3) > 0xffffffffU
- xdev
->offset
)
204 index
= (bio
->bi_iter
.bi_sector
>> 3) + xdev
->offset
;
205 bio_for_each_segment(bvec
, bio
, iter
) {
206 page_addr
= (unsigned long)
207 kmap(bvec
.bv_page
) + bvec
.bv_offset
;
209 if ((page_addr
& 4095) != 0 || (bytes
& 4095) != 0)
213 if (bio_data_dir(bio
) == READ
) {
214 if (xpram_page_in(page_addr
, index
) != 0)
217 if (xpram_page_out(page_addr
, index
) != 0)
226 return BLK_QC_T_NONE
;
229 return BLK_QC_T_NONE
;
232 static int xpram_getgeo(struct block_device
*bdev
, struct hd_geometry
*geo
)
237 * get geometry: we have to fake one... trim the size to a
238 * multiple of 64 (32k): tell we have 16 sectors, 4 heads,
239 * whatever cylinders. Tell also that data starts at sector. 4.
241 size
= (xpram_pages
* 8) & ~0x3f;
242 geo
->cylinders
= size
>> 6;
249 static const struct block_device_operations xpram_devops
=
251 .owner
= THIS_MODULE
,
252 .getgeo
= xpram_getgeo
,
256 * Setup xpram_sizes array.
258 static int __init
xpram_setup_sizes(unsigned long pages
)
260 unsigned long mem_needed
;
261 unsigned long mem_auto
;
262 unsigned long long size
;
267 /* Check number of devices. */
268 if (devs
<= 0 || devs
> XPRAM_MAX_DEVS
) {
269 pr_err("%d is not a valid number of XPRAM devices\n",devs
);
275 * Copy sizes array to xpram_sizes and align partition
276 * sizes to page boundary.
280 for (i
= 0; i
< xpram_devs
; i
++) {
282 size
= simple_strtoull(sizes
[i
], &sizes_end
, 0);
283 switch (*sizes_end
) {
292 xpram_sizes
[i
] = (size
+ 3) & -4UL;
295 mem_needed
+= xpram_sizes
[i
];
300 pr_info(" number of devices (partitions): %d \n", xpram_devs
);
301 for (i
= 0; i
< xpram_devs
; i
++) {
303 pr_info(" size of partition %d: %u kB\n",
306 pr_info(" size of partition %d to be set "
307 "automatically\n",i
);
309 pr_info(" memory needed (for sized partitions): %lu kB\n",
311 pr_info(" partitions to be sized automatically: %d\n",
314 if (mem_needed
> pages
* 4) {
315 pr_err("Not enough expanded memory available\n");
321 * xpram_sizes[i] != 0; partition i has size xpram_sizes[i] kB
322 * else: ; all partitions with zero xpram_sizes[i]
323 * partition equally the remaining space
326 mem_auto
= ((pages
- mem_needed
/ 4) / mem_auto_no
) * 4;
327 pr_info(" automatically determined "
328 "partition size: %lu kB\n", mem_auto
);
329 for (i
= 0; i
< xpram_devs
; i
++)
330 if (xpram_sizes
[i
] == 0)
331 xpram_sizes
[i
] = mem_auto
;
336 static int __init
xpram_setup_blkdev(void)
338 unsigned long offset
;
341 for (i
= 0; i
< xpram_devs
; i
++) {
342 xpram_disks
[i
] = alloc_disk(1);
345 xpram_queues
[i
] = blk_alloc_queue(GFP_KERNEL
);
346 if (!xpram_queues
[i
]) {
347 put_disk(xpram_disks
[i
]);
350 queue_flag_set_unlocked(QUEUE_FLAG_NONROT
, xpram_queues
[i
]);
351 queue_flag_clear_unlocked(QUEUE_FLAG_ADD_RANDOM
, xpram_queues
[i
]);
352 blk_queue_make_request(xpram_queues
[i
], xpram_make_request
);
353 blk_queue_logical_block_size(xpram_queues
[i
], 4096);
357 * Register xpram major.
359 rc
= register_blkdev(XPRAM_MAJOR
, XPRAM_NAME
);
364 * Setup device structures.
367 for (i
= 0; i
< xpram_devs
; i
++) {
368 struct gendisk
*disk
= xpram_disks
[i
];
370 xpram_devices
[i
].size
= xpram_sizes
[i
] / 4;
371 xpram_devices
[i
].offset
= offset
;
372 offset
+= xpram_devices
[i
].size
;
373 disk
->major
= XPRAM_MAJOR
;
374 disk
->first_minor
= i
;
375 disk
->fops
= &xpram_devops
;
376 disk
->private_data
= &xpram_devices
[i
];
377 disk
->queue
= xpram_queues
[i
];
378 sprintf(disk
->disk_name
, "slram%d", i
);
379 set_capacity(disk
, xpram_sizes
[i
] << 1);
386 blk_cleanup_queue(xpram_queues
[i
]);
387 put_disk(xpram_disks
[i
]);
393 * Resume failed: Print error message and call panic.
395 static void xpram_resume_error(const char *message
)
397 pr_err("Resuming the system failed: %s\n", message
);
398 panic("xpram resume error\n");
402 * Check if xpram setup changed between suspend and resume.
404 static int xpram_restore(struct device
*dev
)
408 if (xpram_present() != 0)
409 xpram_resume_error("xpram disappeared");
410 if (xpram_pages
!= xpram_highest_page_index() + 1)
411 xpram_resume_error("Size of xpram changed");
415 static const struct dev_pm_ops xpram_pm_ops
= {
416 .restore
= xpram_restore
,
419 static struct platform_driver xpram_pdrv
= {
426 static struct platform_device
*xpram_pdev
;
429 * Finally, the init/exit functions.
431 static void __exit
xpram_exit(void)
434 for (i
= 0; i
< xpram_devs
; i
++) {
435 del_gendisk(xpram_disks
[i
]);
436 blk_cleanup_queue(xpram_queues
[i
]);
437 put_disk(xpram_disks
[i
]);
439 unregister_blkdev(XPRAM_MAJOR
, XPRAM_NAME
);
440 platform_device_unregister(xpram_pdev
);
441 platform_driver_unregister(&xpram_pdrv
);
444 static int __init
xpram_init(void)
448 /* Find out size of expanded memory. */
449 if (xpram_present() != 0) {
450 pr_err("No expanded memory available\n");
453 xpram_pages
= xpram_highest_page_index() + 1;
454 pr_info(" %u pages expanded memory found (%lu KB).\n",
455 xpram_pages
, (unsigned long) xpram_pages
*4);
456 rc
= xpram_setup_sizes(xpram_pages
);
459 rc
= platform_driver_register(&xpram_pdrv
);
462 xpram_pdev
= platform_device_register_simple(XPRAM_NAME
, -1, NULL
, 0);
463 if (IS_ERR(xpram_pdev
)) {
464 rc
= PTR_ERR(xpram_pdev
);
465 goto fail_platform_driver_unregister
;
467 rc
= xpram_setup_blkdev();
469 goto fail_platform_device_unregister
;
472 fail_platform_device_unregister
:
473 platform_device_unregister(xpram_pdev
);
474 fail_platform_driver_unregister
:
475 platform_driver_unregister(&xpram_pdrv
);
479 module_init(xpram_init
);
480 module_exit(xpram_exit
);