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