Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Generic /dev/nvram driver for architectures providing some |
| 3 | * "generic" hooks, that is : |
| 4 | * |
Martyn Welch | d331d83 | 2009-08-13 09:03:02 +0100 | [diff] [blame] | 5 | * nvram_read_byte, nvram_write_byte, nvram_sync, nvram_get_size |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | * |
| 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 Bergmann | 613655f | 2010-06-02 14:28:52 +0200 | [diff] [blame] | 22 | #include <linux/mutex.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #include <asm/uaccess.h> |
| 24 | #include <asm/nvram.h> |
Benjamin Herrenschmidt | e822250 | 2006-03-28 23:15:54 +1100 | [diff] [blame] | 25 | #ifdef CONFIG_PPC_PMAC |
| 26 | #include <asm/machdep.h> |
| 27 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | |
| 29 | #define NVRAM_SIZE 8192 |
| 30 | |
Arnd Bergmann | 613655f | 2010-06-02 14:28:52 +0200 | [diff] [blame] | 31 | static DEFINE_MUTEX(nvram_mutex); |
Martyn Welch | d331d83 | 2009-08-13 09:03:02 +0100 | [diff] [blame] | 32 | static ssize_t nvram_len; |
| 33 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | static loff_t nvram_llseek(struct file *file, loff_t offset, int origin) |
| 35 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | switch (origin) { |
Josef Bacik | 2273506 | 2011-07-18 13:21:39 -0400 | [diff] [blame] | 37 | case 0: |
| 38 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | case 1: |
| 40 | offset += file->f_pos; |
| 41 | break; |
| 42 | case 2: |
Martyn Welch | d331d83 | 2009-08-13 09:03:02 +0100 | [diff] [blame] | 43 | offset += nvram_len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | break; |
Josef Bacik | 2273506 | 2011-07-18 13:21:39 -0400 | [diff] [blame] | 45 | default: |
| 46 | offset = -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | } |
Frederic Weisbecker | 6783b9c | 2009-10-09 21:20:30 +0200 | [diff] [blame] | 48 | if (offset < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | return -EINVAL; |
Frederic Weisbecker | 6783b9c | 2009-10-09 21:20:30 +0200 | [diff] [blame] | 50 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | file->f_pos = offset; |
Frederic Weisbecker | 6783b9c | 2009-10-09 21:20:30 +0200 | [diff] [blame] | 52 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | return file->f_pos; |
| 54 | } |
| 55 | |
| 56 | static ssize_t read_nvram(struct file *file, char __user *buf, |
| 57 | size_t count, loff_t *ppos) |
| 58 | { |
| 59 | unsigned int i; |
| 60 | char __user *p = buf; |
| 61 | |
| 62 | if (!access_ok(VERIFY_WRITE, buf, count)) |
| 63 | return -EFAULT; |
Martyn Welch | d331d83 | 2009-08-13 09:03:02 +0100 | [diff] [blame] | 64 | if (*ppos >= nvram_len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | return 0; |
Martyn Welch | d331d83 | 2009-08-13 09:03:02 +0100 | [diff] [blame] | 66 | for (i = *ppos; count > 0 && i < nvram_len; ++i, ++p, --count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | if (__put_user(nvram_read_byte(i), p)) |
| 68 | return -EFAULT; |
| 69 | *ppos = i; |
| 70 | return p - buf; |
| 71 | } |
| 72 | |
| 73 | static ssize_t write_nvram(struct file *file, const char __user *buf, |
| 74 | size_t count, loff_t *ppos) |
| 75 | { |
| 76 | unsigned int i; |
| 77 | const char __user *p = buf; |
| 78 | char c; |
| 79 | |
| 80 | if (!access_ok(VERIFY_READ, buf, count)) |
| 81 | return -EFAULT; |
Martyn Welch | d331d83 | 2009-08-13 09:03:02 +0100 | [diff] [blame] | 82 | if (*ppos >= nvram_len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | return 0; |
Martyn Welch | d331d83 | 2009-08-13 09:03:02 +0100 | [diff] [blame] | 84 | for (i = *ppos; count > 0 && i < nvram_len; ++i, ++p, --count) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | if (__get_user(c, p)) |
| 86 | return -EFAULT; |
| 87 | nvram_write_byte(c, i); |
| 88 | } |
| 89 | *ppos = i; |
| 90 | return p - buf; |
| 91 | } |
| 92 | |
Arnd Bergmann | 5592933 | 2010-04-27 00:24:05 +0200 | [diff] [blame] | 93 | static int nvram_ioctl(struct file *file, unsigned int cmd, unsigned long arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | { |
| 95 | switch(cmd) { |
| 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: { |
| 100 | int part, offset; |
| 101 | |
Benjamin Herrenschmidt | e822250 | 2006-03-28 23:15:54 +1100 | [diff] [blame] | 102 | if (!machine_is(powermac)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | return -EINVAL; |
| 104 | if (copy_from_user(&part, (void __user*)arg, sizeof(part)) != 0) |
| 105 | return -EFAULT; |
| 106 | if (part < pmac_nvram_OF || part > pmac_nvram_NR) |
| 107 | return -EINVAL; |
| 108 | offset = pmac_get_partition(part); |
| 109 | if (copy_to_user((void __user*)arg, &offset, sizeof(offset)) != 0) |
| 110 | return -EFAULT; |
| 111 | break; |
| 112 | } |
| 113 | #endif /* CONFIG_PPC_PMAC */ |
| 114 | case IOC_NVRAM_SYNC: |
| 115 | nvram_sync(); |
| 116 | break; |
| 117 | default: |
| 118 | return -EINVAL; |
| 119 | } |
| 120 | |
| 121 | return 0; |
| 122 | } |
| 123 | |
Arnd Bergmann | 5592933 | 2010-04-27 00:24:05 +0200 | [diff] [blame] | 124 | static long nvram_unlocked_ioctl(struct file *file, unsigned int cmd, unsigned long arg) |
| 125 | { |
| 126 | int ret; |
| 127 | |
Arnd Bergmann | 613655f | 2010-06-02 14:28:52 +0200 | [diff] [blame] | 128 | mutex_lock(&nvram_mutex); |
Arnd Bergmann | 5592933 | 2010-04-27 00:24:05 +0200 | [diff] [blame] | 129 | ret = nvram_ioctl(file, cmd, arg); |
Arnd Bergmann | 613655f | 2010-06-02 14:28:52 +0200 | [diff] [blame] | 130 | mutex_unlock(&nvram_mutex); |
Arnd Bergmann | 5592933 | 2010-04-27 00:24:05 +0200 | [diff] [blame] | 131 | |
| 132 | return ret; |
| 133 | } |
| 134 | |
Arjan van de Ven | 2b8693c | 2007-02-12 00:55:32 -0800 | [diff] [blame] | 135 | const struct file_operations nvram_fops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | .owner = THIS_MODULE, |
| 137 | .llseek = nvram_llseek, |
| 138 | .read = read_nvram, |
| 139 | .write = write_nvram, |
Arnd Bergmann | 5592933 | 2010-04-27 00:24:05 +0200 | [diff] [blame] | 140 | .unlocked_ioctl = nvram_unlocked_ioctl, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | }; |
| 142 | |
| 143 | static struct miscdevice nvram_dev = { |
| 144 | NVRAM_MINOR, |
| 145 | "nvram", |
| 146 | &nvram_fops |
| 147 | }; |
| 148 | |
| 149 | int __init nvram_init(void) |
| 150 | { |
Martyn Welch | d331d83 | 2009-08-13 09:03:02 +0100 | [diff] [blame] | 151 | int ret = 0; |
| 152 | |
Philippe De Muyter | cfc53f6 | 2008-06-12 15:21:46 -0700 | [diff] [blame] | 153 | printk(KERN_INFO "Generic non-volatile memory driver v%s\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | NVRAM_VERSION); |
Martyn Welch | d331d83 | 2009-08-13 09:03:02 +0100 | [diff] [blame] | 155 | ret = misc_register(&nvram_dev); |
| 156 | if (ret != 0) |
| 157 | goto out; |
| 158 | |
| 159 | nvram_len = nvram_get_size(); |
| 160 | if (nvram_len < 0) |
| 161 | nvram_len = NVRAM_SIZE; |
| 162 | |
| 163 | out: |
| 164 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | } |
| 166 | |
| 167 | void __exit nvram_cleanup(void) |
| 168 | { |
| 169 | misc_deregister( &nvram_dev ); |
| 170 | } |
| 171 | |
| 172 | module_init(nvram_init); |
| 173 | module_exit(nvram_cleanup); |
| 174 | MODULE_LICENSE("GPL"); |