2 ** z2ram - Amiga pseudo-driver to access 16bit-RAM in ZorroII space
3 ** as a block device, to be used as a RAM disk or swap space
5 ** Copyright (C) 1994 by Ingo Wilken (Ingo.Wilken@informatik.uni-oldenburg.de)
7 ** ++Geert: support for zorro_unused_z2ram, better range checking
8 ** ++roman: translate accesses via an array
9 ** ++Milan: support for ChipRAM usage
10 ** ++yambo: converted to 2.0 kernel
11 ** ++yambo: modularized and support added for 3 minor devices including:
12 ** MAJOR MINOR DESCRIPTION
13 ** ----- ----- ----------------------------------------------
14 ** 37 0 Use Zorro II and Chip ram
15 ** 37 1 Use only Zorro II ram
16 ** 37 2 Use only Chip ram
17 ** 37 4-7 Use memory list entry 1-4 (first is 0)
18 ** ++jskov: support for 1-4th memory list entry.
20 ** Permission to use, copy, modify, and distribute this software and its
21 ** documentation for any purpose and without fee is hereby granted, provided
22 ** that the above copyright notice appear in all copies and that both that
23 ** copyright notice and this permission notice appear in supporting
24 ** documentation. This software is provided "as is" without express or
28 #define DEVICE_NAME "Z2RAM"
30 #include <linux/major.h>
31 #include <linux/vmalloc.h>
32 #include <linux/init.h>
33 #include <linux/module.h>
34 #include <linux/blk-mq.h>
35 #include <linux/bitops.h>
36 #include <linux/mutex.h>
37 #include <linux/slab.h>
39 #include <asm/setup.h>
40 #include <asm/amigahw.h>
41 #include <asm/pgtable.h>
43 #include <linux/zorro.h>
46 #define Z2MINOR_COMBINED (0)
47 #define Z2MINOR_Z2ONLY (1)
48 #define Z2MINOR_CHIPONLY (2)
49 #define Z2MINOR_MEMLIST1 (4)
50 #define Z2MINOR_MEMLIST2 (5)
51 #define Z2MINOR_MEMLIST3 (6)
52 #define Z2MINOR_MEMLIST4 (7)
53 #define Z2MINOR_COUNT (8) /* Move this down when adding a new minor */
55 #define Z2RAM_CHUNK1024 ( Z2RAM_CHUNKSIZE >> 10 )
57 static DEFINE_MUTEX(z2ram_mutex);
58 static u_long *z2ram_map = NULL;
59 static u_long z2ram_size = 0;
60 static int z2_count = 0;
61 static int chip_count = 0;
62 static int list_count = 0;
63 static int current_device = -1;
65 static DEFINE_SPINLOCK(z2ram_lock);
67 static struct gendisk *z2ram_gendisk;
69 static blk_status_t z2_queue_rq(struct blk_mq_hw_ctx *hctx,
70 const struct blk_mq_queue_data *bd)
72 struct request *req = bd->rq;
73 unsigned long start = blk_rq_pos(req) << 9;
74 unsigned long len = blk_rq_cur_bytes(req);
76 blk_mq_start_request(req);
78 if (start + len > z2ram_size) {
79 pr_err(DEVICE_NAME ": bad access: block=%llu, "
81 (unsigned long long)blk_rq_pos(req),
82 blk_rq_cur_sectors(req));
86 spin_lock_irq(&z2ram_lock);
89 unsigned long addr = start & Z2RAM_CHUNKMASK;
90 unsigned long size = Z2RAM_CHUNKSIZE - addr;
91 void *buffer = bio_data(req->bio);
95 addr += z2ram_map[ start >> Z2RAM_CHUNKSHIFT ];
96 if (rq_data_dir(req) == READ)
97 memcpy(buffer, (char *)addr, size);
99 memcpy((char *)addr, buffer, size);
104 spin_unlock_irq(&z2ram_lock);
105 blk_mq_end_request(req, BLK_STS_OK);
114 for ( i = 0; i < Z2RAM_SIZE / Z2RAM_CHUNKSIZE; i++ )
116 if ( test_bit( i, zorro_unused_z2ram ) )
119 z2ram_map[z2ram_size++] = (unsigned long)ZTWO_VADDR(Z2RAM_START) +
120 (i << Z2RAM_CHUNKSHIFT);
121 clear_bit( i, zorro_unused_z2ram );
132 while ( amiga_chip_avail() > ( Z2RAM_CHUNKSIZE * 4 ) )
135 z2ram_map[ z2ram_size ] =
136 (u_long)amiga_chip_alloc( Z2RAM_CHUNKSIZE, "z2ram" );
138 if ( z2ram_map[ z2ram_size ] == 0 )
149 static int z2_open(struct block_device *bdev, fmode_t mode)
152 int max_z2_map = ( Z2RAM_SIZE / Z2RAM_CHUNKSIZE ) *
153 sizeof( z2ram_map[0] );
154 int max_chip_map = ( amiga_chip_size / Z2RAM_CHUNKSIZE ) *
155 sizeof( z2ram_map[0] );
158 device = MINOR(bdev->bd_dev);
160 mutex_lock(&z2ram_mutex);
161 if ( current_device != -1 && current_device != device )
167 if ( current_device == -1 )
174 /* Use a specific list entry. */
175 if (device >= Z2MINOR_MEMLIST1 && device <= Z2MINOR_MEMLIST4) {
176 int index = device - Z2MINOR_MEMLIST1 + 1;
177 unsigned long size, paddr, vaddr;
179 if (index >= m68k_realnum_memory) {
180 printk( KERN_ERR DEVICE_NAME
181 ": no such entry in z2ram_map\n" );
185 paddr = m68k_memory[index].addr;
186 size = m68k_memory[index].size & ~(Z2RAM_CHUNKSIZE-1);
189 /* FIXME: ioremap doesn't build correct memory tables. */
191 vfree(vmalloc (size));
194 vaddr = (unsigned long)ioremap_wt(paddr, size);
197 vaddr = (unsigned long)z_remap_nocache_nonser(paddr, size);
200 kmalloc_array(size / Z2RAM_CHUNKSIZE,
201 sizeof(z2ram_map[0]),
203 if ( z2ram_map == NULL )
205 printk( KERN_ERR DEVICE_NAME
206 ": cannot get mem for z2ram_map\n" );
211 z2ram_map[ z2ram_size++ ] = vaddr;
212 size -= Z2RAM_CHUNKSIZE;
213 vaddr += Z2RAM_CHUNKSIZE;
217 if ( z2ram_size != 0 )
218 printk( KERN_INFO DEVICE_NAME
219 ": using %iK List Entry %d Memory\n",
220 list_count * Z2RAM_CHUNK1024, index );
225 case Z2MINOR_COMBINED:
227 z2ram_map = kmalloc( max_z2_map + max_chip_map, GFP_KERNEL );
228 if ( z2ram_map == NULL )
230 printk( KERN_ERR DEVICE_NAME
231 ": cannot get mem for z2ram_map\n" );
238 if ( z2ram_size != 0 )
239 printk( KERN_INFO DEVICE_NAME
240 ": using %iK Zorro II RAM and %iK Chip RAM (Total %dK)\n",
241 z2_count * Z2RAM_CHUNK1024,
242 chip_count * Z2RAM_CHUNK1024,
243 ( z2_count + chip_count ) * Z2RAM_CHUNK1024 );
248 z2ram_map = kmalloc( max_z2_map, GFP_KERNEL );
249 if ( z2ram_map == NULL )
251 printk( KERN_ERR DEVICE_NAME
252 ": cannot get mem for z2ram_map\n" );
258 if ( z2ram_size != 0 )
259 printk( KERN_INFO DEVICE_NAME
260 ": using %iK of Zorro II RAM\n",
261 z2_count * Z2RAM_CHUNK1024 );
265 case Z2MINOR_CHIPONLY:
266 z2ram_map = kmalloc( max_chip_map, GFP_KERNEL );
267 if ( z2ram_map == NULL )
269 printk( KERN_ERR DEVICE_NAME
270 ": cannot get mem for z2ram_map\n" );
276 if ( z2ram_size != 0 )
277 printk( KERN_INFO DEVICE_NAME
278 ": using %iK Chip RAM\n",
279 chip_count * Z2RAM_CHUNK1024 );
290 if ( z2ram_size == 0 )
292 printk( KERN_NOTICE DEVICE_NAME
293 ": no unused ZII/Chip RAM found\n" );
297 current_device = device;
298 z2ram_size <<= Z2RAM_CHUNKSHIFT;
299 set_capacity(z2ram_gendisk, z2ram_size >> 9);
302 mutex_unlock(&z2ram_mutex);
308 mutex_unlock(&z2ram_mutex);
313 z2_release(struct gendisk *disk, fmode_t mode)
315 mutex_lock(&z2ram_mutex);
316 if ( current_device == -1 ) {
317 mutex_unlock(&z2ram_mutex);
320 mutex_unlock(&z2ram_mutex);
322 * FIXME: unmap memory
326 static const struct block_device_operations z2_fops =
328 .owner = THIS_MODULE,
330 .release = z2_release,
333 static struct kobject *z2_find(dev_t dev, int *part, void *data)
336 return get_disk_and_module(z2ram_gendisk);
339 static struct request_queue *z2_queue;
340 static struct blk_mq_tag_set tag_set;
342 static const struct blk_mq_ops z2_mq_ops = {
343 .queue_rq = z2_queue_rq,
355 if (register_blkdev(Z2RAM_MAJOR, DEVICE_NAME))
359 z2ram_gendisk = alloc_disk(1);
363 z2_queue = blk_mq_init_sq_queue(&tag_set, &z2_mq_ops, 16,
364 BLK_MQ_F_SHOULD_MERGE);
365 if (IS_ERR(z2_queue)) {
366 ret = PTR_ERR(z2_queue);
371 z2ram_gendisk->major = Z2RAM_MAJOR;
372 z2ram_gendisk->first_minor = 0;
373 z2ram_gendisk->fops = &z2_fops;
374 sprintf(z2ram_gendisk->disk_name, "z2ram");
376 z2ram_gendisk->queue = z2_queue;
377 add_disk(z2ram_gendisk);
378 blk_register_region(MKDEV(Z2RAM_MAJOR, 0), Z2MINOR_COUNT, THIS_MODULE,
379 z2_find, NULL, NULL);
384 put_disk(z2ram_gendisk);
386 unregister_blkdev(Z2RAM_MAJOR, DEVICE_NAME);
391 static void __exit z2_exit(void)
394 blk_unregister_region(MKDEV(Z2RAM_MAJOR, 0), Z2MINOR_COUNT);
395 unregister_blkdev(Z2RAM_MAJOR, DEVICE_NAME);
396 del_gendisk(z2ram_gendisk);
397 put_disk(z2ram_gendisk);
398 blk_cleanup_queue(z2_queue);
399 blk_mq_free_tag_set(&tag_set);
401 if ( current_device != -1 )
405 for ( j = 0 ; j < z2_count; j++ )
407 set_bit( i++, zorro_unused_z2ram );
410 for ( j = 0 ; j < chip_count; j++ )
412 if ( z2ram_map[ i ] )
414 amiga_chip_free( (void *) z2ram_map[ i++ ] );
418 if ( z2ram_map != NULL )
427 module_init(z2_init);
428 module_exit(z2_exit);
429 MODULE_LICENSE("GPL");