Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Sky CPU State Driver |
| 3 | * |
| 4 | * Copyright (C) 2002 Brian Waite |
| 5 | * |
| 6 | * This driver allows use of the CPU state bits |
| 7 | * It exports the /dev/sky_cpustate and also |
| 8 | * /proc/sky_cpustate pseudo-file for status information. |
| 9 | * |
| 10 | * This program is free software; you can redistribute it and/or |
| 11 | * modify it under the terms of the GNU General Public License |
| 12 | * as published by the Free Software Foundation; either version |
| 13 | * 2 of the License, or (at your option) any later version. |
| 14 | * |
| 15 | */ |
| 16 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/module.h> |
| 18 | #include <linux/kernel.h> |
| 19 | #include <linux/spinlock.h> |
Arnd Bergmann | 4a7e79a7d | 2008-05-20 19:15:57 +0200 | [diff] [blame] | 20 | #include <linux/smp_lock.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include <linux/miscdevice.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include <linux/proc_fs.h> |
Cyrill Gorcunov | 3049ea7 | 2007-10-02 13:30:09 -0700 | [diff] [blame] | 23 | #include <linux/hdpu_features.h> |
Russell King | d052d1b | 2005-10-29 19:07:23 +0100 | [diff] [blame] | 24 | #include <linux/platform_device.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include <asm/uaccess.h> |
Cyrill Gorcunov | 3049ea7 | 2007-10-02 13:30:09 -0700 | [diff] [blame] | 26 | #include <linux/seq_file.h> |
Cyrill Gorcunov | d2ceb47a | 2007-10-02 13:30:06 -0700 | [diff] [blame] | 27 | #include <asm/io.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | |
| 29 | #define SKY_CPUSTATE_VERSION "1.1" |
| 30 | |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 31 | static int hdpu_cpustate_probe(struct platform_device *pdev); |
| 32 | static int hdpu_cpustate_remove(struct platform_device *pdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | |
Cyrill Gorcunov | 3049ea7 | 2007-10-02 13:30:09 -0700 | [diff] [blame] | 34 | static unsigned char cpustate_get_state(void); |
| 35 | static int cpustate_proc_open(struct inode *inode, struct file *file); |
| 36 | static int cpustate_proc_read(struct seq_file *seq, void *offset); |
| 37 | |
| 38 | static struct cpustate_t cpustate; |
| 39 | |
| 40 | static const struct file_operations proc_cpustate = { |
| 41 | .open = cpustate_proc_open, |
| 42 | .read = seq_read, |
| 43 | .llseek = seq_lseek, |
| 44 | .release = single_release, |
| 45 | .owner = THIS_MODULE, |
| 46 | }; |
| 47 | |
| 48 | static int cpustate_proc_open(struct inode *inode, struct file *file) |
| 49 | { |
| 50 | return single_open(file, cpustate_proc_read, NULL); |
| 51 | } |
| 52 | |
| 53 | static int cpustate_proc_read(struct seq_file *seq, void *offset) |
| 54 | { |
| 55 | seq_printf(seq, "CPU State: %04x\n", cpustate_get_state()); |
| 56 | return 0; |
| 57 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | |
| 59 | static int cpustate_get_ref(int excl) |
| 60 | { |
| 61 | |
| 62 | int retval = -EBUSY; |
| 63 | |
| 64 | spin_lock(&cpustate.lock); |
| 65 | |
| 66 | if (cpustate.excl) |
| 67 | goto out_busy; |
| 68 | |
| 69 | if (excl) { |
| 70 | if (cpustate.open_count) |
| 71 | goto out_busy; |
| 72 | cpustate.excl = 1; |
| 73 | } |
| 74 | |
| 75 | cpustate.open_count++; |
| 76 | retval = 0; |
| 77 | |
| 78 | out_busy: |
| 79 | spin_unlock(&cpustate.lock); |
| 80 | return retval; |
| 81 | } |
| 82 | |
| 83 | static int cpustate_free_ref(void) |
| 84 | { |
| 85 | |
| 86 | spin_lock(&cpustate.lock); |
| 87 | |
| 88 | cpustate.excl = 0; |
| 89 | cpustate.open_count--; |
| 90 | |
| 91 | spin_unlock(&cpustate.lock); |
| 92 | return 0; |
| 93 | } |
| 94 | |
Cyrill Gorcunov | 3049ea7 | 2007-10-02 13:30:09 -0700 | [diff] [blame] | 95 | static unsigned char cpustate_get_state(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | { |
| 97 | |
| 98 | return cpustate.cached_val; |
| 99 | } |
| 100 | |
Cyrill Gorcunov | 3049ea7 | 2007-10-02 13:30:09 -0700 | [diff] [blame] | 101 | static void cpustate_set_state(unsigned char new_state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | { |
| 103 | unsigned int state = (new_state << 21); |
| 104 | |
| 105 | #ifdef DEBUG_CPUSTATE |
| 106 | printk("CPUSTATE -> 0x%x\n", new_state); |
| 107 | #endif |
| 108 | spin_lock(&cpustate.lock); |
| 109 | cpustate.cached_val = new_state; |
| 110 | writel((0xff << 21), cpustate.clr_addr); |
| 111 | writel(state, cpustate.set_addr); |
| 112 | spin_unlock(&cpustate.lock); |
| 113 | } |
| 114 | |
| 115 | /* |
| 116 | * Now all the various file operations that we export. |
| 117 | */ |
| 118 | |
| 119 | static ssize_t cpustate_read(struct file *file, char *buf, |
| 120 | size_t count, loff_t * ppos) |
| 121 | { |
| 122 | unsigned char data; |
| 123 | |
| 124 | if (count < 0) |
| 125 | return -EFAULT; |
| 126 | if (count == 0) |
| 127 | return 0; |
| 128 | |
| 129 | data = cpustate_get_state(); |
| 130 | if (copy_to_user(buf, &data, sizeof(unsigned char))) |
| 131 | return -EFAULT; |
| 132 | return sizeof(unsigned char); |
| 133 | } |
| 134 | |
| 135 | static ssize_t cpustate_write(struct file *file, const char *buf, |
| 136 | size_t count, loff_t * ppos) |
| 137 | { |
| 138 | unsigned char data; |
| 139 | |
| 140 | if (count < 0) |
| 141 | return -EFAULT; |
| 142 | |
| 143 | if (count == 0) |
| 144 | return 0; |
| 145 | |
| 146 | if (copy_from_user((unsigned char *)&data, buf, sizeof(unsigned char))) |
| 147 | return -EFAULT; |
| 148 | |
| 149 | cpustate_set_state(data); |
| 150 | return sizeof(unsigned char); |
| 151 | } |
| 152 | |
| 153 | static int cpustate_open(struct inode *inode, struct file *file) |
| 154 | { |
Arnd Bergmann | 4a7e79a7d | 2008-05-20 19:15:57 +0200 | [diff] [blame] | 155 | int ret; |
| 156 | |
| 157 | lock_kernel(); |
| 158 | ret = cpustate_get_ref((file->f_flags & O_EXCL)); |
| 159 | unlock_kernel(); |
| 160 | |
| 161 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | } |
| 163 | |
| 164 | static int cpustate_release(struct inode *inode, struct file *file) |
| 165 | { |
| 166 | return cpustate_free_ref(); |
| 167 | } |
| 168 | |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 169 | static struct platform_driver hdpu_cpustate_driver = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | .probe = hdpu_cpustate_probe, |
| 171 | .remove = hdpu_cpustate_remove, |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 172 | .driver = { |
| 173 | .name = HDPU_CPUSTATE_NAME, |
Kay Sievers | d6c2385 | 2008-04-15 14:34:33 -0700 | [diff] [blame] | 174 | .owner = THIS_MODULE, |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 175 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | }; |
| 177 | |
| 178 | /* |
| 179 | * The various file operations we support. |
| 180 | */ |
Arjan van de Ven | d54b1fd | 2007-02-12 00:55:34 -0800 | [diff] [blame] | 181 | static const struct file_operations cpustate_fops = { |
Cyrill Gorcunov | 8b70da1 | 2007-10-02 13:30:08 -0700 | [diff] [blame] | 182 | .owner = THIS_MODULE, |
| 183 | .open = cpustate_open, |
| 184 | .release = cpustate_release, |
| 185 | .read = cpustate_read, |
| 186 | .write = cpustate_write, |
| 187 | .llseek = no_llseek, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | }; |
| 189 | |
| 190 | static struct miscdevice cpustate_dev = { |
Cyrill Gorcunov | 8b70da1 | 2007-10-02 13:30:08 -0700 | [diff] [blame] | 191 | .minor = MISC_DYNAMIC_MINOR, |
| 192 | .name = "sky_cpustate", |
| 193 | .fops = &cpustate_fops, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | }; |
| 195 | |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 196 | static int hdpu_cpustate_probe(struct platform_device *pdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | struct resource *res; |
Christophe Lucas | 1ac19f4 | 2005-09-10 00:26:33 -0700 | [diff] [blame] | 199 | struct proc_dir_entry *proc_de; |
| 200 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | |
| 202 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
Cyrill Gorcunov | 7472fd3 | 2007-10-02 13:30:06 -0700 | [diff] [blame] | 203 | if (!res) { |
| 204 | printk(KERN_ERR "sky_cpustate: " |
| 205 | "Invalid memory resource.\n"); |
| 206 | return -EINVAL; |
| 207 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | cpustate.set_addr = (unsigned long *)res->start; |
| 209 | cpustate.clr_addr = (unsigned long *)res->end - 1; |
| 210 | |
Christophe Lucas | 1ac19f4 | 2005-09-10 00:26:33 -0700 | [diff] [blame] | 211 | ret = misc_register(&cpustate_dev); |
| 212 | if (ret) { |
Cyrill Gorcunov | a4e32b5 | 2007-10-02 13:30:05 -0700 | [diff] [blame] | 213 | printk(KERN_WARNING "sky_cpustate: " |
| 214 | "Unable to register misc device.\n"); |
Christophe Lucas | 1ac19f4 | 2005-09-10 00:26:33 -0700 | [diff] [blame] | 215 | cpustate.set_addr = NULL; |
| 216 | cpustate.clr_addr = NULL; |
| 217 | return ret; |
| 218 | } |
| 219 | |
Denis V. Lunev | c7705f3 | 2008-04-29 01:02:35 -0700 | [diff] [blame] | 220 | proc_de = proc_create("sky_cpustate", 0666, NULL, &proc_cpustate); |
Cyrill Gorcunov | 3049ea7 | 2007-10-02 13:30:09 -0700 | [diff] [blame] | 221 | if (!proc_de) { |
Cyrill Gorcunov | a4e32b5 | 2007-10-02 13:30:05 -0700 | [diff] [blame] | 222 | printk(KERN_WARNING "sky_cpustate: " |
Cyrill Gorcunov | 3049ea7 | 2007-10-02 13:30:09 -0700 | [diff] [blame] | 223 | "Unable to create proc entry\n"); |
Cyrill Gorcunov | 3049ea7 | 2007-10-02 13:30:09 -0700 | [diff] [blame] | 224 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | |
| 226 | printk(KERN_INFO "Sky CPU State Driver v" SKY_CPUSTATE_VERSION "\n"); |
| 227 | return 0; |
| 228 | } |
Christophe Lucas | 1ac19f4 | 2005-09-10 00:26:33 -0700 | [diff] [blame] | 229 | |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 230 | static int hdpu_cpustate_remove(struct platform_device *pdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | { |
Christophe Lucas | 1ac19f4 | 2005-09-10 00:26:33 -0700 | [diff] [blame] | 232 | cpustate.set_addr = NULL; |
| 233 | cpustate.clr_addr = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | |
| 235 | remove_proc_entry("sky_cpustate", NULL); |
| 236 | misc_deregister(&cpustate_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | |
Cyrill Gorcunov | a4e32b5 | 2007-10-02 13:30:05 -0700 | [diff] [blame] | 238 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | } |
| 240 | |
| 241 | static int __init cpustate_init(void) |
| 242 | { |
Cyrill Gorcunov | a4e32b5 | 2007-10-02 13:30:05 -0700 | [diff] [blame] | 243 | return platform_driver_register(&hdpu_cpustate_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | } |
| 245 | |
| 246 | static void __exit cpustate_exit(void) |
| 247 | { |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 248 | platform_driver_unregister(&hdpu_cpustate_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | } |
| 250 | |
| 251 | module_init(cpustate_init); |
| 252 | module_exit(cpustate_exit); |
| 253 | |
| 254 | MODULE_AUTHOR("Brian Waite"); |
| 255 | MODULE_LICENSE("GPL"); |
Kay Sievers | d6c2385 | 2008-04-15 14:34:33 -0700 | [diff] [blame] | 256 | MODULE_ALIAS("platform:" HDPU_CPUSTATE_NAME); |