blob: 82b5a88a82d77d5351d1b1d413c4b123a382544f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Generic /dev/nvram driver for architectures providing some
3 * "generic" hooks, that is :
4 *
Martyn Welchd331d832009-08-13 09:03:02 +01005 * nvram_read_byte, nvram_write_byte, nvram_sync, nvram_get_size
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
7 * Note that an additional hook is supported for PowerMac only
8 * for getting the nvram "partition" informations
9 *
10 */
11
12#define NVRAM_VERSION "1.1"
13
14#include <linux/module.h>
15
16#include <linux/types.h>
17#include <linux/errno.h>
18#include <linux/fs.h>
19#include <linux/miscdevice.h>
20#include <linux/fcntl.h>
21#include <linux/init.h>
Arnd Bergmann55929332010-04-27 00:24:05 +020022#include <linux/smp_lock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <asm/uaccess.h>
24#include <asm/nvram.h>
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +110025#ifdef CONFIG_PPC_PMAC
26#include <asm/machdep.h>
27#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29#define NVRAM_SIZE 8192
30
Martyn Welchd331d832009-08-13 09:03:02 +010031static ssize_t nvram_len;
32
Linus Torvalds1da177e2005-04-16 15:20:36 -070033static loff_t nvram_llseek(struct file *file, loff_t offset, int origin)
34{
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 switch (origin) {
36 case 1:
37 offset += file->f_pos;
38 break;
39 case 2:
Martyn Welchd331d832009-08-13 09:03:02 +010040 offset += nvram_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 break;
42 }
Frederic Weisbecker6783b9c2009-10-09 21:20:30 +020043 if (offset < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 return -EINVAL;
Frederic Weisbecker6783b9c2009-10-09 21:20:30 +020045
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 file->f_pos = offset;
Frederic Weisbecker6783b9c2009-10-09 21:20:30 +020047
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 return file->f_pos;
49}
50
51static ssize_t read_nvram(struct file *file, char __user *buf,
52 size_t count, loff_t *ppos)
53{
54 unsigned int i;
55 char __user *p = buf;
56
57 if (!access_ok(VERIFY_WRITE, buf, count))
58 return -EFAULT;
Martyn Welchd331d832009-08-13 09:03:02 +010059 if (*ppos >= nvram_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 return 0;
Martyn Welchd331d832009-08-13 09:03:02 +010061 for (i = *ppos; count > 0 && i < nvram_len; ++i, ++p, --count)
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 if (__put_user(nvram_read_byte(i), p))
63 return -EFAULT;
64 *ppos = i;
65 return p - buf;
66}
67
68static ssize_t write_nvram(struct file *file, const char __user *buf,
69 size_t count, loff_t *ppos)
70{
71 unsigned int i;
72 const char __user *p = buf;
73 char c;
74
75 if (!access_ok(VERIFY_READ, buf, count))
76 return -EFAULT;
Martyn Welchd331d832009-08-13 09:03:02 +010077 if (*ppos >= nvram_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 return 0;
Martyn Welchd331d832009-08-13 09:03:02 +010079 for (i = *ppos; count > 0 && i < nvram_len; ++i, ++p, --count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 if (__get_user(c, p))
81 return -EFAULT;
82 nvram_write_byte(c, i);
83 }
84 *ppos = i;
85 return p - buf;
86}
87
Arnd Bergmann55929332010-04-27 00:24:05 +020088static int nvram_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089{
90 switch(cmd) {
91#ifdef CONFIG_PPC_PMAC
92 case OBSOLETE_PMAC_NVRAM_GET_OFFSET:
93 printk(KERN_WARNING "nvram: Using obsolete PMAC_NVRAM_GET_OFFSET ioctl\n");
94 case IOC_NVRAM_GET_OFFSET: {
95 int part, offset;
96
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +110097 if (!machine_is(powermac))
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 return -EINVAL;
99 if (copy_from_user(&part, (void __user*)arg, sizeof(part)) != 0)
100 return -EFAULT;
101 if (part < pmac_nvram_OF || part > pmac_nvram_NR)
102 return -EINVAL;
103 offset = pmac_get_partition(part);
104 if (copy_to_user((void __user*)arg, &offset, sizeof(offset)) != 0)
105 return -EFAULT;
106 break;
107 }
108#endif /* CONFIG_PPC_PMAC */
109 case IOC_NVRAM_SYNC:
110 nvram_sync();
111 break;
112 default:
113 return -EINVAL;
114 }
115
116 return 0;
117}
118
Arnd Bergmann55929332010-04-27 00:24:05 +0200119static long nvram_unlocked_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
120{
121 int ret;
122
123 lock_kernel();
124 ret = nvram_ioctl(file, cmd, arg);
125 unlock_kernel();
126
127 return ret;
128}
129
Arjan van de Ven2b8693c2007-02-12 00:55:32 -0800130const struct file_operations nvram_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 .owner = THIS_MODULE,
132 .llseek = nvram_llseek,
133 .read = read_nvram,
134 .write = write_nvram,
Arnd Bergmann55929332010-04-27 00:24:05 +0200135 .unlocked_ioctl = nvram_unlocked_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136};
137
138static struct miscdevice nvram_dev = {
139 NVRAM_MINOR,
140 "nvram",
141 &nvram_fops
142};
143
144int __init nvram_init(void)
145{
Martyn Welchd331d832009-08-13 09:03:02 +0100146 int ret = 0;
147
Philippe De Muytercfc53f62008-06-12 15:21:46 -0700148 printk(KERN_INFO "Generic non-volatile memory driver v%s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 NVRAM_VERSION);
Martyn Welchd331d832009-08-13 09:03:02 +0100150 ret = misc_register(&nvram_dev);
151 if (ret != 0)
152 goto out;
153
154 nvram_len = nvram_get_size();
155 if (nvram_len < 0)
156 nvram_len = NVRAM_SIZE;
157
158out:
159 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160}
161
162void __exit nvram_cleanup(void)
163{
164 misc_deregister( &nvram_dev );
165}
166
167module_init(nvram_init);
168module_exit(nvram_cleanup);
169MODULE_LICENSE("GPL");