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/mutex.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 DEFINE_MUTEX(nvram_mutex);
32 static ssize_t nvram_len;
34 static loff_t nvram_llseek(struct file *file, loff_t offset, int origin)
40 offset += file->f_pos;
56 static ssize_t read_nvram(struct file *file, char __user *buf,
57 size_t count, loff_t *ppos)
62 if (!access_ok(VERIFY_WRITE, buf, count))
64 if (*ppos >= nvram_len)
66 for (i = *ppos; count > 0 && i < nvram_len; ++i, ++p, --count)
67 if (__put_user(nvram_read_byte(i), p))
73 static ssize_t write_nvram(struct file *file, const char __user *buf,
74 size_t count, loff_t *ppos)
77 const char __user *p = buf;
80 if (!access_ok(VERIFY_READ, buf, count))
82 if (*ppos >= nvram_len)
84 for (i = *ppos; count > 0 && i < nvram_len; ++i, ++p, --count) {
87 nvram_write_byte(c, i);
93 static int nvram_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
96 #ifdef CONFIG_PPC_PMAC
97 case OBSOLETE_PMAC_NVRAM_GET_OFFSET:
98 printk(KERN_WARNING "nvram: Using obsolete PMAC_NVRAM_GET_OFFSET ioctl\n");
99 case IOC_NVRAM_GET_OFFSET: {
102 if (!machine_is(powermac))
104 if (copy_from_user(&part, (void __user*)arg, sizeof(part)) != 0)
106 if (part < pmac_nvram_OF || part > pmac_nvram_NR)
108 offset = pmac_get_partition(part);
109 if (copy_to_user((void __user*)arg, &offset, sizeof(offset)) != 0)
113 #endif /* CONFIG_PPC_PMAC */
124 static long nvram_unlocked_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
128 mutex_lock(&nvram_mutex);
129 ret = nvram_ioctl(file, cmd, arg);
130 mutex_unlock(&nvram_mutex);
135 const struct file_operations nvram_fops = {
136 .owner = THIS_MODULE,
137 .llseek = nvram_llseek,
139 .write = write_nvram,
140 .unlocked_ioctl = nvram_unlocked_ioctl,
143 static struct miscdevice nvram_dev = {
149 int __init nvram_init(void)
153 printk(KERN_INFO "Generic non-volatile memory driver v%s\n",
155 ret = misc_register(&nvram_dev);
159 nvram_len = nvram_get_size();
161 nvram_len = NVRAM_SIZE;
167 void __exit nvram_cleanup(void)
169 misc_deregister( &nvram_dev );
172 module_init(nvram_init);
173 module_exit(nvram_cleanup);
174 MODULE_LICENSE("GPL");