2 * arch/um/drivers/mmapper_kern.c
4 * BRIEF MODULE DESCRIPTION
6 * Copyright (C) 2000 RidgeRun, Inc.
7 * Author: RidgeRun, Inc.
8 * Greg Lonnon glonnon@ridgerun.com or info@ridgerun.com
12 #include <linux/stddef.h>
13 #include <linux/types.h>
15 #include <linux/init.h>
16 #include <linux/miscdevice.h>
17 #include <linux/module.h>
20 #include <asm/uaccess.h>
23 /* These are set in mmapper_init, which is called at boot time */
24 static unsigned long mmapper_size
;
25 static unsigned long p_buf
;
28 static ssize_t
mmapper_read(struct file
*file
, char __user
*buf
, size_t count
,
31 return simple_read_from_buffer(buf
, count
, ppos
, v_buf
, mmapper_size
);
34 static ssize_t
mmapper_write(struct file
*file
, const char __user
*buf
,
35 size_t count
, loff_t
*ppos
)
37 if (*ppos
> mmapper_size
)
40 if (count
> mmapper_size
- *ppos
)
41 count
= mmapper_size
- *ppos
;
43 if (copy_from_user(&v_buf
[*ppos
], buf
, count
))
49 static long mmapper_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
54 static int mmapper_mmap(struct file
*file
, struct vm_area_struct
*vma
)
59 if (vma
->vm_pgoff
!= 0)
62 size
= vma
->vm_end
- vma
->vm_start
;
63 if (size
> mmapper_size
)
67 * XXX A comment above remap_pfn_range says it should only be
68 * called when the mm semaphore is held
70 if (remap_pfn_range(vma
, vma
->vm_start
, p_buf
>> PAGE_SHIFT
, size
,
78 static int mmapper_open(struct inode
*inode
, struct file
*file
)
83 static int mmapper_release(struct inode
*inode
, struct file
*file
)
88 static const struct file_operations mmapper_fops
= {
91 .write
= mmapper_write
,
92 .unlocked_ioctl
= mmapper_ioctl
,
95 .release
= mmapper_release
,
99 * No locking needed - only used (and modified) by below initcall and exitcall.
101 static struct miscdevice mmapper_dev
= {
102 .minor
= MISC_DYNAMIC_MINOR
,
104 .fops
= &mmapper_fops
107 static int __init
mmapper_init(void)
111 printk(KERN_INFO
"Mapper v0.1\n");
113 v_buf
= (char *) find_iomem("mmapper", &mmapper_size
);
114 if (mmapper_size
== 0) {
115 printk(KERN_ERR
"mmapper_init - find_iomem failed\n");
120 err
= misc_register(&mmapper_dev
);
122 printk(KERN_ERR
"mmapper - misc_register failed, err = %d\n",
129 static void mmapper_exit(void)
131 misc_deregister(&mmapper_dev
);
134 module_init(mmapper_init
);
135 module_exit(mmapper_exit
);
137 MODULE_AUTHOR("Greg Lonnon <glonnon@ridgerun.com>");
138 MODULE_DESCRIPTION("DSPLinux simulator mmapper driver");