2 * Generic /dev/nvram driver for architectures providing some
3 * "generic" hooks, that is :
5 * nvram_read_byte, nvram_write_byte, nvram_sync
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 loff_t
nvram_llseek(struct file
*file
, loff_t offset
, int origin
)
36 offset
+= file
->f_pos
;
51 static ssize_t
read_nvram(struct file
*file
, char __user
*buf
,
52 size_t count
, loff_t
*ppos
)
57 if (!access_ok(VERIFY_WRITE
, buf
, count
))
59 if (*ppos
>= NVRAM_SIZE
)
61 for (i
= *ppos
; count
> 0 && i
< NVRAM_SIZE
; ++i
, ++p
, --count
)
62 if (__put_user(nvram_read_byte(i
), p
))
68 static ssize_t
write_nvram(struct file
*file
, const char __user
*buf
,
69 size_t count
, loff_t
*ppos
)
72 const char __user
*p
= buf
;
75 if (!access_ok(VERIFY_READ
, buf
, count
))
77 if (*ppos
>= NVRAM_SIZE
)
79 for (i
= *ppos
; count
> 0 && i
< NVRAM_SIZE
; ++i
, ++p
, --count
) {
82 nvram_write_byte(c
, i
);
88 static int nvram_ioctl(struct inode
*inode
, struct file
*file
,
89 unsigned int cmd
, unsigned long arg
)
92 #ifdef CONFIG_PPC_PMAC
93 case OBSOLETE_PMAC_NVRAM_GET_OFFSET
:
94 printk(KERN_WARNING
"nvram: Using obsolete PMAC_NVRAM_GET_OFFSET ioctl\n");
95 case IOC_NVRAM_GET_OFFSET
: {
98 if (!machine_is(powermac
))
100 if (copy_from_user(&part
, (void __user
*)arg
, sizeof(part
)) != 0)
102 if (part
< pmac_nvram_OF
|| part
> pmac_nvram_NR
)
104 offset
= pmac_get_partition(part
);
105 if (copy_to_user((void __user
*)arg
, &offset
, sizeof(offset
)) != 0)
109 #endif /* CONFIG_PPC_PMAC */
120 const struct file_operations nvram_fops
= {
121 .owner
= THIS_MODULE
,
122 .llseek
= nvram_llseek
,
124 .write
= write_nvram
,
125 .ioctl
= nvram_ioctl
,
128 static struct miscdevice nvram_dev
= {
134 int __init
nvram_init(void)
136 printk(KERN_INFO
"Generic non-volatile memory driver v%s\n",
138 return misc_register(&nvram_dev
);
141 void __exit
nvram_cleanup(void)
143 misc_deregister( &nvram_dev
);
146 module_init(nvram_init
);
147 module_exit(nvram_cleanup
);
148 MODULE_LICENSE("GPL");