1 /* flash.c: Allow mmap access to the OBP Flash, for OBP updates.
6 #include <linux/module.h>
7 #include <linux/types.h>
8 #include <linux/errno.h>
9 #include <linux/miscdevice.h>
10 #include <linux/fcntl.h>
11 #include <linux/poll.h>
12 #include <linux/mutex.h>
13 #include <linux/spinlock.h>
16 #include <linux/of_device.h>
18 #include <linux/uaccess.h>
19 #include <asm/pgtable.h>
23 static DEFINE_MUTEX(flash_mutex);
24 static DEFINE_SPINLOCK(flash_lock);
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? */
33 #define FLASH_MINOR 152
36 flash_mmap(struct file *file, struct vm_area_struct *vma)
41 spin_lock(&flash_lock);
42 if (flash.read_base == flash.write_base) {
43 addr = flash.read_base;
44 size = flash.read_size;
46 if ((vma->vm_flags & VM_READ) &&
47 (vma->vm_flags & VM_WRITE)) {
48 spin_unlock(&flash_lock);
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;
58 spin_unlock(&flash_lock);
62 spin_unlock(&flash_lock);
64 if ((vma->vm_pgoff << PAGE_SHIFT) > size)
66 addr = vma->vm_pgoff + (addr >> PAGE_SHIFT);
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));
71 vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
73 if (io_remap_pfn_range(vma, vma->vm_start, addr, size, vma->vm_page_prot))
80 flash_llseek(struct file *file, long long offset, int origin)
82 mutex_lock(&flash_mutex);
88 file->f_pos += offset;
89 if (file->f_pos > flash.read_size)
90 file->f_pos = flash.read_size;
93 file->f_pos = flash.read_size;
96 mutex_unlock(&flash_mutex);
99 mutex_unlock(&flash_mutex);
104 flash_read(struct file * file, char __user * buf,
105 size_t count, loff_t *ppos)
110 if (count > flash.read_size - p)
111 count = flash.read_size - p;
113 for (i = 0; i < count; i++) {
114 u8 data = upa_readb(flash.read_base + p + i);
115 if (put_user(data, buf))
125 flash_open(struct inode *inode, struct file *file)
127 mutex_lock(&flash_mutex);
128 if (test_and_set_bit(0, (void *)&flash.busy) != 0) {
129 mutex_unlock(&flash_mutex);
133 mutex_unlock(&flash_mutex);
138 flash_release(struct inode *inode, struct file *file)
140 spin_lock(&flash_lock);
142 spin_unlock(&flash_lock);
147 static const struct file_operations flash_fops = {
148 /* no write to the Flash, use mmap
149 * and play flash dependent tricks.
151 .owner = THIS_MODULE,
152 .llseek = flash_llseek,
156 .release = flash_release,
159 static struct miscdevice flash_dev = { FLASH_MINOR, "flash", &flash_fops };
161 static int flash_probe(struct platform_device *op)
163 struct device_node *dp = op->dev.of_node;
164 struct device_node *parent;
168 if (strcmp(parent->name, "sbus") &&
169 strcmp(parent->name, "sbi") &&
170 strcmp(parent->name, "ebus"))
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]);
179 flash.write_base = op->resource[0].start;
180 flash.write_size = resource_size(&op->resource[0]);
184 printk(KERN_INFO "%pOF: OBP Flash, RD %lx[%lx] WR %lx[%lx]\n",
186 flash.read_base, flash.read_size,
187 flash.write_base, flash.write_size);
189 return misc_register(&flash_dev);
192 static int flash_remove(struct platform_device *op)
194 misc_deregister(&flash_dev);
199 static const struct of_device_id flash_match[] = {
205 MODULE_DEVICE_TABLE(of, flash_match);
207 static struct platform_driver flash_driver = {
210 .of_match_table = flash_match,
212 .probe = flash_probe,
213 .remove = flash_remove,
216 module_platform_driver(flash_driver);
218 MODULE_LICENSE("GPL");