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/blkdev.h>
35 #include <linux/bitops.h>
37 #include <asm/setup.h>
38 #include <asm/amigahw.h>
39 #include <asm/pgtable.h>
41 #include <linux/zorro.h>
44 extern int m68k_realnum_memory;
45 extern struct mem_info m68k_memory[NUM_MEMINFO];
47 #define Z2MINOR_COMBINED (0)
48 #define Z2MINOR_Z2ONLY (1)
49 #define Z2MINOR_CHIPONLY (2)
50 #define Z2MINOR_MEMLIST1 (4)
51 #define Z2MINOR_MEMLIST2 (5)
52 #define Z2MINOR_MEMLIST3 (6)
53 #define Z2MINOR_MEMLIST4 (7)
54 #define Z2MINOR_COUNT (8) /* Move this down when adding a new minor */
56 #define Z2RAM_CHUNK1024 ( Z2RAM_CHUNKSIZE >> 10 )
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 block_device_operations z2_fops;
68 static struct gendisk *z2ram_gendisk;
70 static void do_z2_request(request_queue_t *q)
73 while ((req = elv_next_request(q)) != NULL) {
74 unsigned long start = req->sector << 9;
75 unsigned long len = req->current_nr_sectors << 9;
77 if (start + len > z2ram_size) {
78 printk( KERN_ERR DEVICE_NAME ": bad access: block=%lu, count=%u\n",
79 req->sector, req->current_nr_sectors);
84 unsigned long addr = start & Z2RAM_CHUNKMASK;
85 unsigned long size = Z2RAM_CHUNKSIZE - addr;
88 addr += z2ram_map[ start >> Z2RAM_CHUNKSHIFT ];
89 if (rq_data_dir(req) == READ)
90 memcpy(req->buffer, (char *)addr, size);
92 memcpy((char *)addr, req->buffer, size);
105 for ( i = 0; i < Z2RAM_SIZE / Z2RAM_CHUNKSIZE; i++ )
107 if ( test_bit( i, zorro_unused_z2ram ) )
110 z2ram_map[ z2ram_size++ ] =
111 ZTWO_VADDR( Z2RAM_START ) + ( i << Z2RAM_CHUNKSHIFT );
112 clear_bit( i, zorro_unused_z2ram );
123 while ( amiga_chip_avail() > ( Z2RAM_CHUNKSIZE * 4 ) )
126 z2ram_map[ z2ram_size ] =
127 (u_long)amiga_chip_alloc( Z2RAM_CHUNKSIZE, "z2ram" );
129 if ( z2ram_map[ z2ram_size ] == 0 )
141 z2_open( struct inode *inode, struct file *filp )
144 int max_z2_map = ( Z2RAM_SIZE / Z2RAM_CHUNKSIZE ) *
145 sizeof( z2ram_map[0] );
146 int max_chip_map = ( amiga_chip_size / Z2RAM_CHUNKSIZE ) *
147 sizeof( z2ram_map[0] );
150 device = iminor(inode);
152 if ( current_device != -1 && current_device != device )
158 if ( current_device == -1 )
165 /* Use a specific list entry. */
166 if (device >= Z2MINOR_MEMLIST1 && device <= Z2MINOR_MEMLIST4) {
167 int index = device - Z2MINOR_MEMLIST1 + 1;
168 unsigned long size, paddr, vaddr;
170 if (index >= m68k_realnum_memory) {
171 printk( KERN_ERR DEVICE_NAME
172 ": no such entry in z2ram_map\n" );
176 paddr = m68k_memory[index].addr;
177 size = m68k_memory[index].size & ~(Z2RAM_CHUNKSIZE-1);
180 /* FIXME: ioremap doesn't build correct memory tables. */
182 vfree(vmalloc (size));
185 vaddr = (unsigned long) __ioremap (paddr, size,
189 vaddr = (unsigned long)z_remap_nocache_nonser(paddr, size);
192 kmalloc((size/Z2RAM_CHUNKSIZE)*sizeof(z2ram_map[0]),
194 if ( z2ram_map == NULL )
196 printk( KERN_ERR DEVICE_NAME
197 ": cannot get mem for z2ram_map\n" );
202 z2ram_map[ z2ram_size++ ] = vaddr;
203 size -= Z2RAM_CHUNKSIZE;
204 vaddr += Z2RAM_CHUNKSIZE;
208 if ( z2ram_size != 0 )
209 printk( KERN_INFO DEVICE_NAME
210 ": using %iK List Entry %d Memory\n",
211 list_count * Z2RAM_CHUNK1024, index );
216 case Z2MINOR_COMBINED:
218 z2ram_map = kmalloc( max_z2_map + max_chip_map, GFP_KERNEL );
219 if ( z2ram_map == NULL )
221 printk( KERN_ERR DEVICE_NAME
222 ": cannot get mem for z2ram_map\n" );
229 if ( z2ram_size != 0 )
230 printk( KERN_INFO DEVICE_NAME
231 ": using %iK Zorro II RAM and %iK Chip RAM (Total %dK)\n",
232 z2_count * Z2RAM_CHUNK1024,
233 chip_count * Z2RAM_CHUNK1024,
234 ( z2_count + chip_count ) * Z2RAM_CHUNK1024 );
239 z2ram_map = kmalloc( max_z2_map, GFP_KERNEL );
240 if ( z2ram_map == NULL )
242 printk( KERN_ERR DEVICE_NAME
243 ": cannot get mem for z2ram_map\n" );
249 if ( z2ram_size != 0 )
250 printk( KERN_INFO DEVICE_NAME
251 ": using %iK of Zorro II RAM\n",
252 z2_count * Z2RAM_CHUNK1024 );
256 case Z2MINOR_CHIPONLY:
257 z2ram_map = kmalloc( max_chip_map, GFP_KERNEL );
258 if ( z2ram_map == NULL )
260 printk( KERN_ERR DEVICE_NAME
261 ": cannot get mem for z2ram_map\n" );
267 if ( z2ram_size != 0 )
268 printk( KERN_INFO DEVICE_NAME
269 ": using %iK Chip RAM\n",
270 chip_count * Z2RAM_CHUNK1024 );
281 if ( z2ram_size == 0 )
283 printk( KERN_NOTICE DEVICE_NAME
284 ": no unused ZII/Chip RAM found\n" );
288 current_device = device;
289 z2ram_size <<= Z2RAM_CHUNKSHIFT;
290 set_capacity(z2ram_gendisk, z2ram_size >> 9);
302 z2_release( struct inode *inode, struct file *filp )
304 if ( current_device == -1 )
308 * FIXME: unmap memory
314 static struct block_device_operations z2_fops =
316 .owner = THIS_MODULE,
318 .release = z2_release,
321 static struct kobject *z2_find(dev_t dev, int *part, void *data)
324 return get_disk(z2ram_gendisk);
327 static struct request_queue *z2_queue;
338 if (register_blkdev(Z2RAM_MAJOR, DEVICE_NAME))
342 z2ram_gendisk = alloc_disk(1);
346 z2_queue = blk_init_queue(do_z2_request, &z2ram_lock);
350 z2ram_gendisk->major = Z2RAM_MAJOR;
351 z2ram_gendisk->first_minor = 0;
352 z2ram_gendisk->fops = &z2_fops;
353 sprintf(z2ram_gendisk->disk_name, "z2ram");
355 z2ram_gendisk->queue = z2_queue;
356 add_disk(z2ram_gendisk);
357 blk_register_region(MKDEV(Z2RAM_MAJOR, 0), Z2MINOR_COUNT, THIS_MODULE,
358 z2_find, NULL, NULL);
363 put_disk(z2ram_gendisk);
365 unregister_blkdev(Z2RAM_MAJOR, DEVICE_NAME);
370 static void __exit z2_exit(void)
373 blk_unregister_region(MKDEV(Z2RAM_MAJOR, 0), 256);
374 unregister_blkdev(Z2RAM_MAJOR, DEVICE_NAME);
375 del_gendisk(z2ram_gendisk);
376 put_disk(z2ram_gendisk);
377 blk_cleanup_queue(z2_queue);
379 if ( current_device != -1 )
383 for ( j = 0 ; j < z2_count; j++ )
385 set_bit( i++, zorro_unused_z2ram );
388 for ( j = 0 ; j < chip_count; j++ )
390 if ( z2ram_map[ i ] )
392 amiga_chip_free( (void *) z2ram_map[ i++ ] );
396 if ( z2ram_map != NULL )
405 module_init(z2_init);
406 module_exit(z2_exit);
407 MODULE_LICENSE("GPL");