David S. Miller | a9540d3 | 2008-08-27 01:13:12 -0700 | [diff] [blame] | 1 | /* flash.c: Allow mmap access to the OBP Flash, for OBP updates. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * |
| 3 | * Copyright (C) 1997 Eddie C. Dost (ecd@skynet.be) |
| 4 | */ |
| 5 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | #include <linux/module.h> |
| 7 | #include <linux/types.h> |
| 8 | #include <linux/errno.h> |
| 9 | #include <linux/miscdevice.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | #include <linux/fcntl.h> |
| 11 | #include <linux/poll.h> |
Arnd Bergmann | a3108ca | 2010-07-20 23:36:39 -0700 | [diff] [blame] | 12 | #include <linux/mutex.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include <linux/spinlock.h> |
Horst H. von Brand | 8a73709 | 2007-05-31 01:27:52 -0700 | [diff] [blame] | 14 | #include <linux/mm.h> |
David S. Miller | a9540d3 | 2008-08-27 01:13:12 -0700 | [diff] [blame] | 15 | #include <linux/of.h> |
| 16 | #include <linux/of_device.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <asm/uaccess.h> |
| 19 | #include <asm/pgtable.h> |
| 20 | #include <asm/io.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include <asm/upa.h> |
| 22 | |
Arnd Bergmann | a3108ca | 2010-07-20 23:36:39 -0700 | [diff] [blame] | 23 | static DEFINE_MUTEX(flash_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | static DEFINE_SPINLOCK(flash_lock); |
| 25 | static struct { |
| 26 | unsigned long read_base; /* Physical read address */ |
| 27 | unsigned long write_base; /* Physical write address */ |
| 28 | unsigned long read_size; /* Size of read area */ |
| 29 | unsigned long write_size; /* Size of write area */ |
| 30 | unsigned long busy; /* In use? */ |
| 31 | } flash; |
| 32 | |
| 33 | #define FLASH_MINOR 152 |
| 34 | |
| 35 | static int |
| 36 | flash_mmap(struct file *file, struct vm_area_struct *vma) |
| 37 | { |
| 38 | unsigned long addr; |
| 39 | unsigned long size; |
| 40 | |
| 41 | spin_lock(&flash_lock); |
| 42 | if (flash.read_base == flash.write_base) { |
| 43 | addr = flash.read_base; |
| 44 | size = flash.read_size; |
| 45 | } else { |
| 46 | if ((vma->vm_flags & VM_READ) && |
| 47 | (vma->vm_flags & VM_WRITE)) { |
| 48 | spin_unlock(&flash_lock); |
| 49 | return -EINVAL; |
| 50 | } |
| 51 | if (vma->vm_flags & VM_READ) { |
| 52 | addr = flash.read_base; |
| 53 | size = flash.read_size; |
| 54 | } else if (vma->vm_flags & VM_WRITE) { |
| 55 | addr = flash.write_base; |
| 56 | size = flash.write_size; |
| 57 | } else { |
| 58 | spin_unlock(&flash_lock); |
| 59 | return -ENXIO; |
| 60 | } |
| 61 | } |
| 62 | spin_unlock(&flash_lock); |
| 63 | |
| 64 | if ((vma->vm_pgoff << PAGE_SHIFT) > size) |
| 65 | return -ENXIO; |
| 66 | addr = vma->vm_pgoff + (addr >> PAGE_SHIFT); |
| 67 | |
| 68 | if (vma->vm_end - (vma->vm_start + (vma->vm_pgoff << PAGE_SHIFT)) > size) |
| 69 | size = vma->vm_end - (vma->vm_start + (vma->vm_pgoff << PAGE_SHIFT)); |
| 70 | |
David S. Miller | 14778d9 | 2006-03-21 02:29:39 -0800 | [diff] [blame] | 71 | vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | |
| 73 | if (io_remap_pfn_range(vma, vma->vm_start, addr, size, vma->vm_page_prot)) |
| 74 | return -EAGAIN; |
| 75 | |
| 76 | return 0; |
| 77 | } |
| 78 | |
| 79 | static long long |
| 80 | flash_llseek(struct file *file, long long offset, int origin) |
| 81 | { |
Arnd Bergmann | a3108ca | 2010-07-20 23:36:39 -0700 | [diff] [blame] | 82 | mutex_lock(&flash_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | switch (origin) { |
| 84 | case 0: |
| 85 | file->f_pos = offset; |
| 86 | break; |
| 87 | case 1: |
| 88 | file->f_pos += offset; |
| 89 | if (file->f_pos > flash.read_size) |
| 90 | file->f_pos = flash.read_size; |
| 91 | break; |
| 92 | case 2: |
| 93 | file->f_pos = flash.read_size; |
| 94 | break; |
| 95 | default: |
Arnd Bergmann | a3108ca | 2010-07-20 23:36:39 -0700 | [diff] [blame] | 96 | mutex_unlock(&flash_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | return -EINVAL; |
| 98 | } |
Arnd Bergmann | a3108ca | 2010-07-20 23:36:39 -0700 | [diff] [blame] | 99 | mutex_unlock(&flash_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | return file->f_pos; |
| 101 | } |
| 102 | |
| 103 | static ssize_t |
| 104 | flash_read(struct file * file, char __user * buf, |
| 105 | size_t count, loff_t *ppos) |
| 106 | { |
Jan Blunck | be94bbb | 2010-04-27 18:48:52 -0700 | [diff] [blame] | 107 | loff_t p = *ppos; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | int i; |
Jan Blunck | be94bbb | 2010-04-27 18:48:52 -0700 | [diff] [blame] | 109 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | if (count > flash.read_size - p) |
| 111 | count = flash.read_size - p; |
| 112 | |
| 113 | for (i = 0; i < count; i++) { |
| 114 | u8 data = upa_readb(flash.read_base + p + i); |
| 115 | if (put_user(data, buf)) |
| 116 | return -EFAULT; |
| 117 | buf++; |
| 118 | } |
| 119 | |
Jan Blunck | be94bbb | 2010-04-27 18:48:52 -0700 | [diff] [blame] | 120 | *ppos += count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | return count; |
| 122 | } |
| 123 | |
| 124 | static int |
| 125 | flash_open(struct inode *inode, struct file *file) |
| 126 | { |
Arnd Bergmann | a3108ca | 2010-07-20 23:36:39 -0700 | [diff] [blame] | 127 | mutex_lock(&flash_mutex); |
Arnd Bergmann | 78abb6a | 2008-05-20 19:15:54 +0200 | [diff] [blame] | 128 | if (test_and_set_bit(0, (void *)&flash.busy) != 0) { |
Arnd Bergmann | a3108ca | 2010-07-20 23:36:39 -0700 | [diff] [blame] | 129 | mutex_unlock(&flash_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | return -EBUSY; |
Arnd Bergmann | 78abb6a | 2008-05-20 19:15:54 +0200 | [diff] [blame] | 131 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | |
Arnd Bergmann | a3108ca | 2010-07-20 23:36:39 -0700 | [diff] [blame] | 133 | mutex_unlock(&flash_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | return 0; |
| 135 | } |
| 136 | |
| 137 | static int |
| 138 | flash_release(struct inode *inode, struct file *file) |
| 139 | { |
| 140 | spin_lock(&flash_lock); |
| 141 | flash.busy = 0; |
| 142 | spin_unlock(&flash_lock); |
| 143 | |
| 144 | return 0; |
| 145 | } |
| 146 | |
Arjan van de Ven | 00977a5 | 2007-02-12 00:55:34 -0800 | [diff] [blame] | 147 | static const struct file_operations flash_fops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | /* no write to the Flash, use mmap |
| 149 | * and play flash dependent tricks. |
| 150 | */ |
| 151 | .owner = THIS_MODULE, |
| 152 | .llseek = flash_llseek, |
| 153 | .read = flash_read, |
| 154 | .mmap = flash_mmap, |
| 155 | .open = flash_open, |
| 156 | .release = flash_release, |
| 157 | }; |
| 158 | |
| 159 | static struct miscdevice flash_dev = { FLASH_MINOR, "flash", &flash_fops }; |
| 160 | |
Greg Kroah-Hartman | 082a200 | 2012-12-21 13:24:23 -0800 | [diff] [blame] | 161 | static int flash_probe(struct platform_device *op) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | { |
Grant Likely | 61c7a08 | 2010-04-13 16:12:29 -0700 | [diff] [blame] | 163 | struct device_node *dp = op->dev.of_node; |
David S. Miller | a9540d3 | 2008-08-27 01:13:12 -0700 | [diff] [blame] | 164 | struct device_node *parent; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | |
David S. Miller | a9540d3 | 2008-08-27 01:13:12 -0700 | [diff] [blame] | 166 | parent = dp->parent; |
David S. Miller | 690c8fd | 2006-06-22 19:12:03 -0700 | [diff] [blame] | 167 | |
David S. Miller | a9540d3 | 2008-08-27 01:13:12 -0700 | [diff] [blame] | 168 | if (strcmp(parent->name, "sbus") && |
| 169 | strcmp(parent->name, "sbi") && |
| 170 | strcmp(parent->name, "ebus")) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | |
David S. Miller | a9540d3 | 2008-08-27 01:13:12 -0700 | [diff] [blame] | 173 | flash.read_base = op->resource[0].start; |
| 174 | flash.read_size = resource_size(&op->resource[0]); |
| 175 | if (op->resource[1].flags) { |
| 176 | flash.write_base = op->resource[1].start; |
| 177 | flash.write_size = resource_size(&op->resource[1]); |
| 178 | } else { |
| 179 | flash.write_base = op->resource[0].start; |
| 180 | flash.write_size = resource_size(&op->resource[0]); |
| 181 | } |
| 182 | flash.busy = 0; |
| 183 | |
| 184 | printk(KERN_INFO "%s: OBP Flash, RD %lx[%lx] WR %lx[%lx]\n", |
Grant Likely | 61c7a08 | 2010-04-13 16:12:29 -0700 | [diff] [blame] | 185 | op->dev.of_node->full_name, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | flash.read_base, flash.read_size, |
| 187 | flash.write_base, flash.write_size); |
| 188 | |
David S. Miller | a9540d3 | 2008-08-27 01:13:12 -0700 | [diff] [blame] | 189 | return misc_register(&flash_dev); |
| 190 | } |
| 191 | |
Greg Kroah-Hartman | 082a200 | 2012-12-21 13:24:23 -0800 | [diff] [blame] | 192 | static int flash_remove(struct platform_device *op) |
David S. Miller | a9540d3 | 2008-08-27 01:13:12 -0700 | [diff] [blame] | 193 | { |
| 194 | misc_deregister(&flash_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | |
| 196 | return 0; |
| 197 | } |
| 198 | |
David S. Miller | fd09831 | 2008-08-31 01:23:17 -0700 | [diff] [blame] | 199 | static const struct of_device_id flash_match[] = { |
David S. Miller | a9540d3 | 2008-08-27 01:13:12 -0700 | [diff] [blame] | 200 | { |
| 201 | .name = "flashprom", |
| 202 | }, |
| 203 | {}, |
| 204 | }; |
| 205 | MODULE_DEVICE_TABLE(of, flash_match); |
| 206 | |
Grant Likely | 4ebb24f | 2011-02-22 20:01:33 -0700 | [diff] [blame] | 207 | static struct platform_driver flash_driver = { |
Grant Likely | 4018294 | 2010-04-13 16:13:02 -0700 | [diff] [blame] | 208 | .driver = { |
| 209 | .name = "flash", |
Grant Likely | 4018294 | 2010-04-13 16:13:02 -0700 | [diff] [blame] | 210 | .of_match_table = flash_match, |
| 211 | }, |
David S. Miller | a9540d3 | 2008-08-27 01:13:12 -0700 | [diff] [blame] | 212 | .probe = flash_probe, |
Greg Kroah-Hartman | 082a200 | 2012-12-21 13:24:23 -0800 | [diff] [blame] | 213 | .remove = flash_remove, |
David S. Miller | a9540d3 | 2008-08-27 01:13:12 -0700 | [diff] [blame] | 214 | }; |
| 215 | |
Axel Lin | dbf2b92 | 2011-11-26 19:04:25 +0000 | [diff] [blame] | 216 | module_platform_driver(flash_driver); |
David S. Miller | a9540d3 | 2008-08-27 01:13:12 -0700 | [diff] [blame] | 217 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | MODULE_LICENSE("GPL"); |