1 /* $Id: flash.c,v 1.25 2001/12/21 04:56:16 davem Exp $
2 * flash.c: Allow mmap access to the OBP Flash, for OBP updates.
4 * Copyright (C) 1997 Eddie C. Dost (ecd@skynet.be)
7 #include <linux/module.h>
8 #include <linux/types.h>
9 #include <linux/errno.h>
10 #include <linux/miscdevice.h>
11 #include <linux/slab.h>
12 #include <linux/fcntl.h>
13 #include <linux/poll.h>
14 #include <linux/init.h>
15 #include <linux/smp_lock.h>
16 #include <linux/spinlock.h>
18 #include <asm/system.h>
19 #include <asm/uaccess.h>
20 #include <asm/pgtable.h>
26 static DEFINE_SPINLOCK(flash_lock
);
28 unsigned long read_base
; /* Physical read address */
29 unsigned long write_base
; /* Physical write address */
30 unsigned long read_size
; /* Size of read area */
31 unsigned long write_size
; /* Size of write area */
32 unsigned long busy
; /* In use? */
35 #define FLASH_MINOR 152
38 flash_mmap(struct file
*file
, struct vm_area_struct
*vma
)
43 spin_lock(&flash_lock
);
44 if (flash
.read_base
== flash
.write_base
) {
45 addr
= flash
.read_base
;
46 size
= flash
.read_size
;
48 if ((vma
->vm_flags
& VM_READ
) &&
49 (vma
->vm_flags
& VM_WRITE
)) {
50 spin_unlock(&flash_lock
);
53 if (vma
->vm_flags
& VM_READ
) {
54 addr
= flash
.read_base
;
55 size
= flash
.read_size
;
56 } else if (vma
->vm_flags
& VM_WRITE
) {
57 addr
= flash
.write_base
;
58 size
= flash
.write_size
;
60 spin_unlock(&flash_lock
);
64 spin_unlock(&flash_lock
);
66 if ((vma
->vm_pgoff
<< PAGE_SHIFT
) > size
)
68 addr
= vma
->vm_pgoff
+ (addr
>> PAGE_SHIFT
);
70 if (vma
->vm_end
- (vma
->vm_start
+ (vma
->vm_pgoff
<< PAGE_SHIFT
)) > size
)
71 size
= vma
->vm_end
- (vma
->vm_start
+ (vma
->vm_pgoff
<< PAGE_SHIFT
));
73 vma
->vm_page_prot
= pgprot_noncached(vma
->vm_page_prot
);
75 if (io_remap_pfn_range(vma
, vma
->vm_start
, addr
, size
, vma
->vm_page_prot
))
82 flash_llseek(struct file
*file
, long long offset
, int origin
)
90 file
->f_pos
+= offset
;
91 if (file
->f_pos
> flash
.read_size
)
92 file
->f_pos
= flash
.read_size
;
95 file
->f_pos
= flash
.read_size
;
106 flash_read(struct file
* file
, char __user
* buf
,
107 size_t count
, loff_t
*ppos
)
109 unsigned long p
= file
->f_pos
;
112 if (count
> flash
.read_size
- p
)
113 count
= flash
.read_size
- p
;
115 for (i
= 0; i
< count
; i
++) {
116 u8 data
= upa_readb(flash
.read_base
+ p
+ i
);
117 if (put_user(data
, buf
))
122 file
->f_pos
+= count
;
127 flash_open(struct inode
*inode
, struct file
*file
)
129 if (test_and_set_bit(0, (void *)&flash
.busy
) != 0)
136 flash_release(struct inode
*inode
, struct file
*file
)
138 spin_lock(&flash_lock
);
140 spin_unlock(&flash_lock
);
145 static struct file_operations flash_fops
= {
146 /* no write to the Flash, use mmap
147 * and play flash dependent tricks.
149 .owner
= THIS_MODULE
,
150 .llseek
= flash_llseek
,
154 .release
= flash_release
,
157 static struct miscdevice flash_dev
= { FLASH_MINOR
, "flash", &flash_fops
};
159 static int __init
flash_init(void)
161 struct sbus_bus
*sbus
;
162 struct sbus_dev
*sdev
= NULL
;
164 struct linux_ebus
*ebus
;
165 struct linux_ebus_device
*edev
= NULL
;
166 struct linux_prom_registers regs
[2];
171 for_all_sbusdev(sdev
, sbus
) {
172 if (!strcmp(sdev
->prom_name
, "flashprom")) {
173 if (sdev
->reg_addrs
[0].phys_addr
== sdev
->reg_addrs
[1].phys_addr
) {
174 flash
.read_base
= ((unsigned long)sdev
->reg_addrs
[0].phys_addr
) |
175 (((unsigned long)sdev
->reg_addrs
[0].which_io
)<<32UL);
176 flash
.read_size
= sdev
->reg_addrs
[0].reg_size
;
177 flash
.write_base
= flash
.read_base
;
178 flash
.write_size
= flash
.read_size
;
180 flash
.read_base
= ((unsigned long)sdev
->reg_addrs
[0].phys_addr
) |
181 (((unsigned long)sdev
->reg_addrs
[0].which_io
)<<32UL);
182 flash
.read_size
= sdev
->reg_addrs
[0].reg_size
;
183 flash
.write_base
= ((unsigned long)sdev
->reg_addrs
[1].phys_addr
) |
184 (((unsigned long)sdev
->reg_addrs
[1].which_io
)<<32UL);
185 flash
.write_size
= sdev
->reg_addrs
[1].reg_size
;
193 struct linux_prom_registers
*ebus_regs
;
195 for_each_ebus(ebus
) {
196 for_each_ebusdev(edev
, ebus
) {
197 if (!strcmp(edev
->prom_node
->name
, "flashprom"))
205 ebus_regs
= of_get_property(edev
->prom_node
, "reg", &len
);
206 if (!ebus_regs
|| (len
% sizeof(regs
[0])) != 0) {
207 printk("flash: Strange reg property size %d\n", len
);
211 nregs
= len
/ sizeof(ebus_regs
[0]);
213 flash
.read_base
= edev
->resource
[0].start
;
214 flash
.read_size
= ebus_regs
[0].reg_size
;
217 flash
.write_base
= edev
->resource
[0].start
;
218 flash
.write_size
= ebus_regs
[0].reg_size
;
219 } else if (nregs
== 2) {
220 flash
.write_base
= edev
->resource
[1].start
;
221 flash
.write_size
= ebus_regs
[1].reg_size
;
223 printk("flash: Strange number of regs %d\n", nregs
);
234 printk("OBP Flash: RD %lx[%lx] WR %lx[%lx]\n",
235 flash
.read_base
, flash
.read_size
,
236 flash
.write_base
, flash
.write_size
);
238 err
= misc_register(&flash_dev
);
240 printk(KERN_ERR
"flash: unable to get misc minor\n");
247 static void __exit
flash_cleanup(void)
249 misc_deregister(&flash_dev
);
252 module_init(flash_init
);
253 module_exit(flash_cleanup
);
254 MODULE_LICENSE("GPL");