Jaya Kumar | 60b59be | 2007-05-08 00:37:37 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/drivers/video/fb_defio.c |
| 3 | * |
| 4 | * Copyright (C) 2006 Jaya Kumar |
| 5 | * |
| 6 | * This file is subject to the terms and conditions of the GNU General Public |
Jaya Kumar | de7c6d1 | 2008-03-19 17:01:10 -0700 | [diff] [blame] | 7 | * License. See the file COPYING in the main directory of this archive |
Jaya Kumar | 60b59be | 2007-05-08 00:37:37 -0700 | [diff] [blame] | 8 | * for more details. |
| 9 | */ |
| 10 | |
| 11 | #include <linux/module.h> |
| 12 | #include <linux/kernel.h> |
| 13 | #include <linux/errno.h> |
| 14 | #include <linux/string.h> |
| 15 | #include <linux/mm.h> |
| 16 | #include <linux/slab.h> |
| 17 | #include <linux/vmalloc.h> |
| 18 | #include <linux/delay.h> |
| 19 | #include <linux/interrupt.h> |
| 20 | #include <linux/fb.h> |
| 21 | #include <linux/list.h> |
Jaya Kumar | 60b59be | 2007-05-08 00:37:37 -0700 | [diff] [blame] | 22 | |
| 23 | /* to support deferred IO */ |
| 24 | #include <linux/rmap.h> |
| 25 | #include <linux/pagemap.h> |
| 26 | |
| 27 | /* this is to find and return the vmalloc-ed fb pages */ |
Nick Piggin | 529e55b | 2008-02-06 01:39:10 -0800 | [diff] [blame] | 28 | static int fb_deferred_io_fault(struct vm_area_struct *vma, |
| 29 | struct vm_fault *vmf) |
Jaya Kumar | 60b59be | 2007-05-08 00:37:37 -0700 | [diff] [blame] | 30 | { |
| 31 | unsigned long offset; |
| 32 | struct page *page; |
| 33 | struct fb_info *info = vma->vm_private_data; |
Jaya Kumar | de7c6d1 | 2008-03-19 17:01:10 -0700 | [diff] [blame] | 34 | /* info->screen_base is virtual memory */ |
Antonino A. Daplas | 98a1153 | 2007-05-08 00:38:44 -0700 | [diff] [blame] | 35 | void *screen_base = (void __force *) info->screen_base; |
Jaya Kumar | 60b59be | 2007-05-08 00:37:37 -0700 | [diff] [blame] | 36 | |
Nick Piggin | 529e55b | 2008-02-06 01:39:10 -0800 | [diff] [blame] | 37 | offset = vmf->pgoff << PAGE_SHIFT; |
Jaya Kumar | 60b59be | 2007-05-08 00:37:37 -0700 | [diff] [blame] | 38 | if (offset >= info->fix.smem_len) |
Nick Piggin | 529e55b | 2008-02-06 01:39:10 -0800 | [diff] [blame] | 39 | return VM_FAULT_SIGBUS; |
Jaya Kumar | 60b59be | 2007-05-08 00:37:37 -0700 | [diff] [blame] | 40 | |
Antonino A. Daplas | 98a1153 | 2007-05-08 00:38:44 -0700 | [diff] [blame] | 41 | page = vmalloc_to_page(screen_base + offset); |
Jaya Kumar | 60b59be | 2007-05-08 00:37:37 -0700 | [diff] [blame] | 42 | if (!page) |
Nick Piggin | 529e55b | 2008-02-06 01:39:10 -0800 | [diff] [blame] | 43 | return VM_FAULT_SIGBUS; |
Jaya Kumar | 60b59be | 2007-05-08 00:37:37 -0700 | [diff] [blame] | 44 | |
| 45 | get_page(page); |
Jaya Kumar | de7c6d1 | 2008-03-19 17:01:10 -0700 | [diff] [blame] | 46 | |
| 47 | if (vma->vm_file) |
| 48 | page->mapping = vma->vm_file->f_mapping; |
| 49 | else |
| 50 | printk(KERN_ERR "no mapping available\n"); |
| 51 | |
| 52 | BUG_ON(!page->mapping); |
| 53 | page->index = vmf->pgoff; |
| 54 | |
Nick Piggin | 529e55b | 2008-02-06 01:39:10 -0800 | [diff] [blame] | 55 | vmf->page = page; |
| 56 | return 0; |
Jaya Kumar | 60b59be | 2007-05-08 00:37:37 -0700 | [diff] [blame] | 57 | } |
| 58 | |
Paul Mundt | 5e841b8 | 2007-05-08 00:37:41 -0700 | [diff] [blame] | 59 | int fb_deferred_io_fsync(struct file *file, struct dentry *dentry, int datasync) |
| 60 | { |
| 61 | struct fb_info *info = file->private_data; |
| 62 | |
| 63 | /* Kill off the delayed work */ |
| 64 | cancel_rearming_delayed_work(&info->deferred_work); |
| 65 | |
| 66 | /* Run it immediately */ |
| 67 | return schedule_delayed_work(&info->deferred_work, 0); |
| 68 | } |
| 69 | EXPORT_SYMBOL_GPL(fb_deferred_io_fsync); |
| 70 | |
Jaya Kumar | 60b59be | 2007-05-08 00:37:37 -0700 | [diff] [blame] | 71 | /* vm_ops->page_mkwrite handler */ |
Adrian Bunk | 7bf1ea3 | 2007-05-08 00:37:38 -0700 | [diff] [blame] | 72 | static int fb_deferred_io_mkwrite(struct vm_area_struct *vma, |
| 73 | struct page *page) |
Jaya Kumar | 60b59be | 2007-05-08 00:37:37 -0700 | [diff] [blame] | 74 | { |
| 75 | struct fb_info *info = vma->vm_private_data; |
| 76 | struct fb_deferred_io *fbdefio = info->fbdefio; |
| 77 | |
| 78 | /* this is a callback we get when userspace first tries to |
| 79 | write to the page. we schedule a workqueue. that workqueue |
| 80 | will eventually mkclean the touched pages and execute the |
| 81 | deferred framebuffer IO. then if userspace touches a page |
| 82 | again, we repeat the same scheme */ |
| 83 | |
| 84 | /* protect against the workqueue changing the page list */ |
| 85 | mutex_lock(&fbdefio->lock); |
| 86 | list_add(&page->lru, &fbdefio->pagelist); |
| 87 | mutex_unlock(&fbdefio->lock); |
| 88 | |
| 89 | /* come back after delay to process the deferred IO */ |
| 90 | schedule_delayed_work(&info->deferred_work, fbdefio->delay); |
| 91 | return 0; |
| 92 | } |
| 93 | |
| 94 | static struct vm_operations_struct fb_deferred_io_vm_ops = { |
Nick Piggin | 529e55b | 2008-02-06 01:39:10 -0800 | [diff] [blame] | 95 | .fault = fb_deferred_io_fault, |
Jaya Kumar | 60b59be | 2007-05-08 00:37:37 -0700 | [diff] [blame] | 96 | .page_mkwrite = fb_deferred_io_mkwrite, |
| 97 | }; |
| 98 | |
| 99 | static int fb_deferred_io_mmap(struct fb_info *info, struct vm_area_struct *vma) |
| 100 | { |
| 101 | vma->vm_ops = &fb_deferred_io_vm_ops; |
| 102 | vma->vm_flags |= ( VM_IO | VM_RESERVED | VM_DONTEXPAND ); |
| 103 | vma->vm_private_data = info; |
| 104 | return 0; |
| 105 | } |
| 106 | |
| 107 | /* workqueue callback */ |
| 108 | static void fb_deferred_io_work(struct work_struct *work) |
| 109 | { |
| 110 | struct fb_info *info = container_of(work, struct fb_info, |
| 111 | deferred_work.work); |
| 112 | struct list_head *node, *next; |
| 113 | struct page *cur; |
| 114 | struct fb_deferred_io *fbdefio = info->fbdefio; |
| 115 | |
| 116 | /* here we mkclean the pages, then do all deferred IO */ |
| 117 | mutex_lock(&fbdefio->lock); |
| 118 | list_for_each_entry(cur, &fbdefio->pagelist, lru) { |
| 119 | lock_page(cur); |
| 120 | page_mkclean(cur); |
| 121 | unlock_page(cur); |
| 122 | } |
| 123 | |
| 124 | /* driver's callback with pagelist */ |
| 125 | fbdefio->deferred_io(info, &fbdefio->pagelist); |
| 126 | |
| 127 | /* clear the list */ |
| 128 | list_for_each_safe(node, next, &fbdefio->pagelist) { |
| 129 | list_del(node); |
| 130 | } |
| 131 | mutex_unlock(&fbdefio->lock); |
| 132 | } |
| 133 | |
| 134 | void fb_deferred_io_init(struct fb_info *info) |
| 135 | { |
| 136 | struct fb_deferred_io *fbdefio = info->fbdefio; |
| 137 | |
| 138 | BUG_ON(!fbdefio); |
| 139 | mutex_init(&fbdefio->lock); |
| 140 | info->fbops->fb_mmap = fb_deferred_io_mmap; |
| 141 | INIT_DELAYED_WORK(&info->deferred_work, fb_deferred_io_work); |
| 142 | INIT_LIST_HEAD(&fbdefio->pagelist); |
| 143 | if (fbdefio->delay == 0) /* set a default of 1 s */ |
| 144 | fbdefio->delay = HZ; |
| 145 | } |
| 146 | EXPORT_SYMBOL_GPL(fb_deferred_io_init); |
| 147 | |
| 148 | void fb_deferred_io_cleanup(struct fb_info *info) |
| 149 | { |
Jaya Kumar | de7c6d1 | 2008-03-19 17:01:10 -0700 | [diff] [blame] | 150 | void *screen_base = (void __force *) info->screen_base; |
Jaya Kumar | 60b59be | 2007-05-08 00:37:37 -0700 | [diff] [blame] | 151 | struct fb_deferred_io *fbdefio = info->fbdefio; |
Jaya Kumar | de7c6d1 | 2008-03-19 17:01:10 -0700 | [diff] [blame] | 152 | struct page *page; |
| 153 | int i; |
Jaya Kumar | 60b59be | 2007-05-08 00:37:37 -0700 | [diff] [blame] | 154 | |
| 155 | BUG_ON(!fbdefio); |
| 156 | cancel_delayed_work(&info->deferred_work); |
| 157 | flush_scheduled_work(); |
Jaya Kumar | de7c6d1 | 2008-03-19 17:01:10 -0700 | [diff] [blame] | 158 | |
| 159 | /* clear out the mapping that we setup */ |
| 160 | for (i = 0 ; i < info->fix.smem_len; i += PAGE_SIZE) { |
| 161 | page = vmalloc_to_page(screen_base + i); |
| 162 | page->mapping = NULL; |
| 163 | } |
Jaya Kumar | 60b59be | 2007-05-08 00:37:37 -0700 | [diff] [blame] | 164 | } |
| 165 | EXPORT_SYMBOL_GPL(fb_deferred_io_cleanup); |
| 166 | |
| 167 | MODULE_LICENSE("GPL"); |