blob: 073db9558379366dcde41921c059bbf5287b4341 [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 Bergmann613655f2010-06-02 14:28:52 +020022#include <linux/mutex.h>
Al Virob808b1d2015-12-05 21:39:06 -050023#include <linux/pagemap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <asm/uaccess.h>
25#include <asm/nvram.h>
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +110026#ifdef CONFIG_PPC_PMAC
27#include <asm/machdep.h>
28#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
30#define NVRAM_SIZE 8192
31
Arnd Bergmann613655f2010-06-02 14:28:52 +020032static DEFINE_MUTEX(nvram_mutex);
Martyn Welchd331d832009-08-13 09:03:02 +010033static ssize_t nvram_len;
34
Linus Torvalds1da177e2005-04-16 15:20:36 -070035static loff_t nvram_llseek(struct file *file, loff_t offset, int origin)
36{
Al Virob808b1d2015-12-05 21:39:06 -050037 return generic_file_llseek_size(file, offset, origin,
38 MAX_LFS_FILESIZE, nvram_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -070039}
40
41static ssize_t read_nvram(struct file *file, char __user *buf,
42 size_t count, loff_t *ppos)
43{
44 unsigned int i;
45 char __user *p = buf;
46
47 if (!access_ok(VERIFY_WRITE, buf, count))
48 return -EFAULT;
Martyn Welchd331d832009-08-13 09:03:02 +010049 if (*ppos >= nvram_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 return 0;
Martyn Welchd331d832009-08-13 09:03:02 +010051 for (i = *ppos; count > 0 && i < nvram_len; ++i, ++p, --count)
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 if (__put_user(nvram_read_byte(i), p))
53 return -EFAULT;
54 *ppos = i;
55 return p - buf;
56}
57
58static ssize_t write_nvram(struct file *file, const char __user *buf,
59 size_t count, loff_t *ppos)
60{
61 unsigned int i;
62 const char __user *p = buf;
63 char c;
64
65 if (!access_ok(VERIFY_READ, buf, count))
66 return -EFAULT;
Martyn Welchd331d832009-08-13 09:03:02 +010067 if (*ppos >= nvram_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 return 0;
Martyn Welchd331d832009-08-13 09:03:02 +010069 for (i = *ppos; count > 0 && i < nvram_len; ++i, ++p, --count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 if (__get_user(c, p))
71 return -EFAULT;
72 nvram_write_byte(c, i);
73 }
74 *ppos = i;
75 return p - buf;
76}
77
Arnd Bergmann55929332010-04-27 00:24:05 +020078static int nvram_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070079{
80 switch(cmd) {
81#ifdef CONFIG_PPC_PMAC
82 case OBSOLETE_PMAC_NVRAM_GET_OFFSET:
83 printk(KERN_WARNING "nvram: Using obsolete PMAC_NVRAM_GET_OFFSET ioctl\n");
84 case IOC_NVRAM_GET_OFFSET: {
85 int part, offset;
86
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +110087 if (!machine_is(powermac))
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 return -EINVAL;
89 if (copy_from_user(&part, (void __user*)arg, sizeof(part)) != 0)
90 return -EFAULT;
91 if (part < pmac_nvram_OF || part > pmac_nvram_NR)
92 return -EINVAL;
93 offset = pmac_get_partition(part);
94 if (copy_to_user((void __user*)arg, &offset, sizeof(offset)) != 0)
95 return -EFAULT;
96 break;
97 }
98#endif /* CONFIG_PPC_PMAC */
99 case IOC_NVRAM_SYNC:
100 nvram_sync();
101 break;
102 default:
103 return -EINVAL;
104 }
105
106 return 0;
107}
108
Arnd Bergmann55929332010-04-27 00:24:05 +0200109static long nvram_unlocked_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
110{
111 int ret;
112
Arnd Bergmann613655f2010-06-02 14:28:52 +0200113 mutex_lock(&nvram_mutex);
Arnd Bergmann55929332010-04-27 00:24:05 +0200114 ret = nvram_ioctl(file, cmd, arg);
Arnd Bergmann613655f2010-06-02 14:28:52 +0200115 mutex_unlock(&nvram_mutex);
Arnd Bergmann55929332010-04-27 00:24:05 +0200116
117 return ret;
118}
119
Arjan van de Ven2b8693c2007-02-12 00:55:32 -0800120const struct file_operations nvram_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 .owner = THIS_MODULE,
122 .llseek = nvram_llseek,
123 .read = read_nvram,
124 .write = write_nvram,
Arnd Bergmann55929332010-04-27 00:24:05 +0200125 .unlocked_ioctl = nvram_unlocked_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126};
127
128static struct miscdevice nvram_dev = {
129 NVRAM_MINOR,
130 "nvram",
131 &nvram_fops
132};
133
134int __init nvram_init(void)
135{
Martyn Welchd331d832009-08-13 09:03:02 +0100136 int ret = 0;
137
Philippe De Muytercfc53f62008-06-12 15:21:46 -0700138 printk(KERN_INFO "Generic non-volatile memory driver v%s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 NVRAM_VERSION);
Martyn Welchd331d832009-08-13 09:03:02 +0100140 ret = misc_register(&nvram_dev);
141 if (ret != 0)
142 goto out;
143
144 nvram_len = nvram_get_size();
145 if (nvram_len < 0)
146 nvram_len = NVRAM_SIZE;
147
148out:
149 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150}
151
152void __exit nvram_cleanup(void)
153{
154 misc_deregister( &nvram_dev );
155}
156
157module_init(nvram_init);
158module_exit(nvram_cleanup);
159MODULE_LICENSE("GPL");