4 * Copyright (C) 2002 Brian Waite
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.
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.
17 #include <linux/module.h>
18 #include <linux/kernel.h>
19 #include <linux/spinlock.h>
20 #include <linux/miscdevice.h>
21 #include <linux/pci.h>
22 #include <linux/proc_fs.h>
23 #include <linux/platform_device.h>
24 #include <asm/uaccess.h>
25 #include <linux/hdpu_features.h>
27 #define SKY_CPUSTATE_VERSION "1.1"
29 static int hdpu_cpustate_probe(struct platform_device
*pdev
);
30 static int hdpu_cpustate_remove(struct platform_device
*pdev
);
32 struct cpustate_t cpustate
;
34 static int cpustate_get_ref(int excl
)
39 spin_lock(&cpustate
.lock
);
45 if (cpustate
.open_count
)
50 cpustate
.open_count
++;
54 spin_unlock(&cpustate
.lock
);
58 static int cpustate_free_ref(void)
61 spin_lock(&cpustate
.lock
);
64 cpustate
.open_count
--;
66 spin_unlock(&cpustate
.lock
);
70 unsigned char cpustate_get_state(void)
73 return cpustate
.cached_val
;
76 void cpustate_set_state(unsigned char new_state
)
78 unsigned int state
= (new_state
<< 21);
81 printk("CPUSTATE -> 0x%x\n", new_state
);
83 spin_lock(&cpustate
.lock
);
84 cpustate
.cached_val
= new_state
;
85 writel((0xff << 21), cpustate
.clr_addr
);
86 writel(state
, cpustate
.set_addr
);
87 spin_unlock(&cpustate
.lock
);
91 * Now all the various file operations that we export.
94 static ssize_t
cpustate_read(struct file
*file
, char *buf
,
95 size_t count
, loff_t
* ppos
)
104 data
= cpustate_get_state();
105 if (copy_to_user(buf
, &data
, sizeof(unsigned char)))
107 return sizeof(unsigned char);
110 static ssize_t
cpustate_write(struct file
*file
, const char *buf
,
111 size_t count
, loff_t
* ppos
)
121 if (copy_from_user((unsigned char *)&data
, buf
, sizeof(unsigned char)))
124 cpustate_set_state(data
);
125 return sizeof(unsigned char);
128 static int cpustate_open(struct inode
*inode
, struct file
*file
)
130 return cpustate_get_ref((file
->f_flags
& O_EXCL
));
133 static int cpustate_release(struct inode
*inode
, struct file
*file
)
135 return cpustate_free_ref();
139 * Info exported via "/proc/sky_cpustate".
141 static int cpustate_read_proc(char *page
, char **start
, off_t off
,
142 int count
, int *eof
, void *data
)
147 p
+= sprintf(p
, "CPU State: %04x\n", cpustate_get_state());
150 if (len
<= off
+ count
)
161 static struct platform_driver hdpu_cpustate_driver
= {
162 .probe
= hdpu_cpustate_probe
,
163 .remove
= hdpu_cpustate_remove
,
165 .name
= HDPU_CPUSTATE_NAME
,
170 * The various file operations we support.
172 static const struct file_operations cpustate_fops
= {
175 release
:cpustate_release
,
177 write
:cpustate_write
,
185 static struct miscdevice cpustate_dev
= {
191 static int hdpu_cpustate_probe(struct platform_device
*pdev
)
193 struct resource
*res
;
194 struct proc_dir_entry
*proc_de
;
197 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
198 cpustate
.set_addr
= (unsigned long *)res
->start
;
199 cpustate
.clr_addr
= (unsigned long *)res
->end
- 1;
201 ret
= misc_register(&cpustate_dev
);
203 printk(KERN_WARNING
"sky_cpustate: Unable to register misc "
205 cpustate
.set_addr
= NULL
;
206 cpustate
.clr_addr
= NULL
;
210 proc_de
= create_proc_read_entry("sky_cpustate", 0, 0,
211 cpustate_read_proc
, NULL
);
213 printk(KERN_WARNING
"sky_cpustate: Unable to create proc "
216 printk(KERN_INFO
"Sky CPU State Driver v" SKY_CPUSTATE_VERSION
"\n");
220 static int hdpu_cpustate_remove(struct platform_device
*pdev
)
223 cpustate
.set_addr
= NULL
;
224 cpustate
.clr_addr
= NULL
;
226 remove_proc_entry("sky_cpustate", NULL
);
227 misc_deregister(&cpustate_dev
);
232 static int __init
cpustate_init(void)
235 rc
= platform_driver_register(&hdpu_cpustate_driver
);
239 static void __exit
cpustate_exit(void)
241 platform_driver_unregister(&hdpu_cpustate_driver
);
244 module_init(cpustate_init
);
245 module_exit(cpustate_exit
);
247 MODULE_AUTHOR("Brian Waite");
248 MODULE_LICENSE("GPL");