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>
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 extern int m68k_realnum_memory
;
47 extern struct mem_info m68k_memory
[NUM_MEMINFO
];
49 #define Z2MINOR_COMBINED (0)
50 #define Z2MINOR_Z2ONLY (1)
51 #define Z2MINOR_CHIPONLY (2)
52 #define Z2MINOR_MEMLIST1 (4)
53 #define Z2MINOR_MEMLIST2 (5)
54 #define Z2MINOR_MEMLIST3 (6)
55 #define Z2MINOR_MEMLIST4 (7)
56 #define Z2MINOR_COUNT (8) /* Move this down when adding a new minor */
58 #define Z2RAM_CHUNK1024 ( Z2RAM_CHUNKSIZE >> 10 )
60 static DEFINE_MUTEX(z2ram_mutex
);
61 static u_long
*z2ram_map
= NULL
;
62 static u_long z2ram_size
= 0;
63 static int z2_count
= 0;
64 static int chip_count
= 0;
65 static int list_count
= 0;
66 static int current_device
= -1;
68 static DEFINE_SPINLOCK(z2ram_lock
);
70 static struct gendisk
*z2ram_gendisk
;
72 static void do_z2_request(struct request_queue
*q
)
76 req
= blk_fetch_request(q
);
78 unsigned long start
= blk_rq_pos(req
) << 9;
79 unsigned long len
= blk_rq_cur_bytes(req
);
82 if (start
+ len
> z2ram_size
) {
83 printk( KERN_ERR DEVICE_NAME
": bad access: block=%lu, count=%u\n",
84 blk_rq_pos(req
), blk_rq_cur_sectors(req
));
89 unsigned long addr
= start
& Z2RAM_CHUNKMASK
;
90 unsigned long size
= Z2RAM_CHUNKSIZE
- addr
;
93 addr
+= z2ram_map
[ start
>> Z2RAM_CHUNKSHIFT
];
94 if (rq_data_dir(req
) == READ
)
95 memcpy(req
->buffer
, (char *)addr
, size
);
97 memcpy((char *)addr
, req
->buffer
, size
);
102 if (!__blk_end_request_cur(req
, err
))
103 req
= blk_fetch_request(q
);
112 for ( i
= 0; i
< Z2RAM_SIZE
/ Z2RAM_CHUNKSIZE
; i
++ )
114 if ( test_bit( i
, zorro_unused_z2ram
) )
117 z2ram_map
[ z2ram_size
++ ] =
118 ZTWO_VADDR( Z2RAM_START
) + ( i
<< Z2RAM_CHUNKSHIFT
);
119 clear_bit( i
, zorro_unused_z2ram
);
130 while ( amiga_chip_avail() > ( Z2RAM_CHUNKSIZE
* 4 ) )
133 z2ram_map
[ z2ram_size
] =
134 (u_long
)amiga_chip_alloc( Z2RAM_CHUNKSIZE
, "z2ram" );
136 if ( z2ram_map
[ z2ram_size
] == 0 )
147 static int z2_open(struct block_device
*bdev
, fmode_t mode
)
150 int max_z2_map
= ( Z2RAM_SIZE
/ Z2RAM_CHUNKSIZE
) *
151 sizeof( z2ram_map
[0] );
152 int max_chip_map
= ( amiga_chip_size
/ Z2RAM_CHUNKSIZE
) *
153 sizeof( z2ram_map
[0] );
156 device
= MINOR(bdev
->bd_dev
);
158 mutex_lock(&z2ram_mutex
);
159 if ( current_device
!= -1 && current_device
!= device
)
165 if ( current_device
== -1 )
172 /* Use a specific list entry. */
173 if (device
>= Z2MINOR_MEMLIST1
&& device
<= Z2MINOR_MEMLIST4
) {
174 int index
= device
- Z2MINOR_MEMLIST1
+ 1;
175 unsigned long size
, paddr
, vaddr
;
177 if (index
>= m68k_realnum_memory
) {
178 printk( KERN_ERR DEVICE_NAME
179 ": no such entry in z2ram_map\n" );
183 paddr
= m68k_memory
[index
].addr
;
184 size
= m68k_memory
[index
].size
& ~(Z2RAM_CHUNKSIZE
-1);
187 /* FIXME: ioremap doesn't build correct memory tables. */
189 vfree(vmalloc (size
));
192 vaddr
= (unsigned long) __ioremap (paddr
, size
,
196 vaddr
= (unsigned long)z_remap_nocache_nonser(paddr
, size
);
199 kmalloc((size
/Z2RAM_CHUNKSIZE
)*sizeof(z2ram_map
[0]),
201 if ( z2ram_map
== NULL
)
203 printk( KERN_ERR DEVICE_NAME
204 ": cannot get mem for z2ram_map\n" );
209 z2ram_map
[ z2ram_size
++ ] = vaddr
;
210 size
-= Z2RAM_CHUNKSIZE
;
211 vaddr
+= Z2RAM_CHUNKSIZE
;
215 if ( z2ram_size
!= 0 )
216 printk( KERN_INFO DEVICE_NAME
217 ": using %iK List Entry %d Memory\n",
218 list_count
* Z2RAM_CHUNK1024
, index
);
223 case Z2MINOR_COMBINED
:
225 z2ram_map
= kmalloc( max_z2_map
+ max_chip_map
, GFP_KERNEL
);
226 if ( z2ram_map
== NULL
)
228 printk( KERN_ERR DEVICE_NAME
229 ": cannot get mem for z2ram_map\n" );
236 if ( z2ram_size
!= 0 )
237 printk( KERN_INFO DEVICE_NAME
238 ": using %iK Zorro II RAM and %iK Chip RAM (Total %dK)\n",
239 z2_count
* Z2RAM_CHUNK1024
,
240 chip_count
* Z2RAM_CHUNK1024
,
241 ( z2_count
+ chip_count
) * Z2RAM_CHUNK1024
);
246 z2ram_map
= kmalloc( max_z2_map
, GFP_KERNEL
);
247 if ( z2ram_map
== NULL
)
249 printk( KERN_ERR DEVICE_NAME
250 ": cannot get mem for z2ram_map\n" );
256 if ( z2ram_size
!= 0 )
257 printk( KERN_INFO DEVICE_NAME
258 ": using %iK of Zorro II RAM\n",
259 z2_count
* Z2RAM_CHUNK1024
);
263 case Z2MINOR_CHIPONLY
:
264 z2ram_map
= kmalloc( max_chip_map
, GFP_KERNEL
);
265 if ( z2ram_map
== NULL
)
267 printk( KERN_ERR DEVICE_NAME
268 ": cannot get mem for z2ram_map\n" );
274 if ( z2ram_size
!= 0 )
275 printk( KERN_INFO DEVICE_NAME
276 ": using %iK Chip RAM\n",
277 chip_count
* Z2RAM_CHUNK1024
);
288 if ( z2ram_size
== 0 )
290 printk( KERN_NOTICE DEVICE_NAME
291 ": no unused ZII/Chip RAM found\n" );
295 current_device
= device
;
296 z2ram_size
<<= Z2RAM_CHUNKSHIFT
;
297 set_capacity(z2ram_gendisk
, z2ram_size
>> 9);
300 mutex_unlock(&z2ram_mutex
);
306 mutex_unlock(&z2ram_mutex
);
311 z2_release(struct gendisk
*disk
, fmode_t mode
)
313 mutex_lock(&z2ram_mutex
);
314 if ( current_device
== -1 ) {
315 mutex_unlock(&z2ram_mutex
);
318 mutex_unlock(&z2ram_mutex
);
320 * 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(z2ram_gendisk
);
339 static struct request_queue
*z2_queue
;
350 if (register_blkdev(Z2RAM_MAJOR
, DEVICE_NAME
))
354 z2ram_gendisk
= alloc_disk(1);
358 z2_queue
= blk_init_queue(do_z2_request
, &z2ram_lock
);
362 z2ram_gendisk
->major
= Z2RAM_MAJOR
;
363 z2ram_gendisk
->first_minor
= 0;
364 z2ram_gendisk
->fops
= &z2_fops
;
365 sprintf(z2ram_gendisk
->disk_name
, "z2ram");
367 z2ram_gendisk
->queue
= z2_queue
;
368 add_disk(z2ram_gendisk
);
369 blk_register_region(MKDEV(Z2RAM_MAJOR
, 0), Z2MINOR_COUNT
, THIS_MODULE
,
370 z2_find
, NULL
, NULL
);
375 put_disk(z2ram_gendisk
);
377 unregister_blkdev(Z2RAM_MAJOR
, DEVICE_NAME
);
382 static void __exit
z2_exit(void)
385 blk_unregister_region(MKDEV(Z2RAM_MAJOR
, 0), Z2MINOR_COUNT
);
386 unregister_blkdev(Z2RAM_MAJOR
, DEVICE_NAME
);
387 del_gendisk(z2ram_gendisk
);
388 put_disk(z2ram_gendisk
);
389 blk_cleanup_queue(z2_queue
);
391 if ( current_device
!= -1 )
395 for ( j
= 0 ; j
< z2_count
; j
++ )
397 set_bit( i
++, zorro_unused_z2ram
);
400 for ( j
= 0 ; j
< chip_count
; j
++ )
402 if ( z2ram_map
[ i
] )
404 amiga_chip_free( (void *) z2ram_map
[ i
++ ] );
408 if ( z2ram_map
!= NULL
)
417 module_init(z2_init
);
418 module_exit(z2_exit
);
419 MODULE_LICENSE("GPL");