2 * Generic /dev/nvram driver for architectures providing some
3 * "generic" hooks, that is :
5 * nvram_read_byte, nvram_write_byte, nvram_sync, nvram_get_size
7 * Note that an additional hook is supported for PowerMac only
8 * for getting the nvram "partition" informations
12 #define NVRAM_VERSION "1.1"
14 #include <linux/module.h>
16 #include <linux/types.h>
17 #include <linux/errno.h>
19 #include <linux/miscdevice.h>
20 #include <linux/fcntl.h>
21 #include <linux/init.h>
22 #include <linux/smp_lock.h>
23 #include <asm/uaccess.h>
24 #include <asm/nvram.h>
25 #ifdef CONFIG_PPC_PMAC
26 #include <asm/machdep.h>
29 #define NVRAM_SIZE 8192
31 static ssize_t nvram_len
;
33 static loff_t
nvram_llseek(struct file
*file
, loff_t offset
, int origin
)
38 offset
+= file
->f_pos
;
53 static ssize_t
read_nvram(struct file
*file
, char __user
*buf
,
54 size_t count
, loff_t
*ppos
)
59 if (!access_ok(VERIFY_WRITE
, buf
, count
))
61 if (*ppos
>= nvram_len
)
63 for (i
= *ppos
; count
> 0 && i
< nvram_len
; ++i
, ++p
, --count
)
64 if (__put_user(nvram_read_byte(i
), p
))
70 static ssize_t
write_nvram(struct file
*file
, const char __user
*buf
,
71 size_t count
, loff_t
*ppos
)
74 const char __user
*p
= buf
;
77 if (!access_ok(VERIFY_READ
, buf
, count
))
79 if (*ppos
>= nvram_len
)
81 for (i
= *ppos
; count
> 0 && i
< nvram_len
; ++i
, ++p
, --count
) {
84 nvram_write_byte(c
, i
);
90 static int nvram_ioctl(struct inode
*inode
, struct file
*file
,
91 unsigned int cmd
, unsigned long arg
)
94 #ifdef CONFIG_PPC_PMAC
95 case OBSOLETE_PMAC_NVRAM_GET_OFFSET
:
96 printk(KERN_WARNING
"nvram: Using obsolete PMAC_NVRAM_GET_OFFSET ioctl\n");
97 case IOC_NVRAM_GET_OFFSET
: {
100 if (!machine_is(powermac
))
102 if (copy_from_user(&part
, (void __user
*)arg
, sizeof(part
)) != 0)
104 if (part
< pmac_nvram_OF
|| part
> pmac_nvram_NR
)
106 offset
= pmac_get_partition(part
);
107 if (copy_to_user((void __user
*)arg
, &offset
, sizeof(offset
)) != 0)
111 #endif /* CONFIG_PPC_PMAC */
122 const struct file_operations nvram_fops
= {
123 .owner
= THIS_MODULE
,
124 .llseek
= nvram_llseek
,
126 .write
= write_nvram
,
127 .ioctl
= nvram_ioctl
,
130 static struct miscdevice nvram_dev
= {
136 int __init
nvram_init(void)
140 printk(KERN_INFO
"Generic non-volatile memory driver v%s\n",
142 ret
= misc_register(&nvram_dev
);
146 nvram_len
= nvram_get_size();
148 nvram_len
= NVRAM_SIZE
;
154 void __exit
nvram_cleanup(void)
156 misc_deregister( &nvram_dev
);
159 module_init(nvram_init
);
160 module_exit(nvram_cleanup
);
161 MODULE_LICENSE("GPL");