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/smp_lock.h>
21 #include <linux/miscdevice.h>
22 #include <linux/proc_fs.h>
23 #include <linux/hdpu_features.h>
24 #include <linux/platform_device.h>
25 #include <asm/uaccess.h>
26 #include <linux/seq_file.h>
29 #define SKY_CPUSTATE_VERSION "1.1"
31 static int hdpu_cpustate_probe(struct platform_device
*pdev
);
32 static int hdpu_cpustate_remove(struct platform_device
*pdev
);
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
);
38 static struct cpustate_t cpustate
;
40 static const struct file_operations proc_cpustate
= {
41 .open
= cpustate_proc_open
,
44 .release
= single_release
,
48 static int cpustate_proc_open(struct inode
*inode
, struct file
*file
)
50 return single_open(file
, cpustate_proc_read
, NULL
);
53 static int cpustate_proc_read(struct seq_file
*seq
, void *offset
)
55 seq_printf(seq
, "CPU State: %04x\n", cpustate_get_state());
59 static int cpustate_get_ref(int excl
)
64 spin_lock(&cpustate
.lock
);
70 if (cpustate
.open_count
)
75 cpustate
.open_count
++;
79 spin_unlock(&cpustate
.lock
);
83 static int cpustate_free_ref(void)
86 spin_lock(&cpustate
.lock
);
89 cpustate
.open_count
--;
91 spin_unlock(&cpustate
.lock
);
95 static unsigned char cpustate_get_state(void)
98 return cpustate
.cached_val
;
101 static void cpustate_set_state(unsigned char new_state
)
103 unsigned int state
= (new_state
<< 21);
105 #ifdef DEBUG_CPUSTATE
106 printk("CPUSTATE -> 0x%x\n", new_state
);
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
);
116 * Now all the various file operations that we export.
119 static ssize_t
cpustate_read(struct file
*file
, char *buf
,
120 size_t count
, loff_t
* ppos
)
127 data
= cpustate_get_state();
128 if (copy_to_user(buf
, &data
, sizeof(unsigned char)))
130 return sizeof(unsigned char);
133 static ssize_t
cpustate_write(struct file
*file
, const char *buf
,
134 size_t count
, loff_t
* ppos
)
141 if (copy_from_user((unsigned char *)&data
, buf
, sizeof(unsigned char)))
144 cpustate_set_state(data
);
145 return sizeof(unsigned char);
148 static int cpustate_open(struct inode
*inode
, struct file
*file
)
153 ret
= cpustate_get_ref((file
->f_flags
& O_EXCL
));
159 static int cpustate_release(struct inode
*inode
, struct file
*file
)
161 return cpustate_free_ref();
164 static struct platform_driver hdpu_cpustate_driver
= {
165 .probe
= hdpu_cpustate_probe
,
166 .remove
= hdpu_cpustate_remove
,
168 .name
= HDPU_CPUSTATE_NAME
,
169 .owner
= THIS_MODULE
,
174 * The various file operations we support.
176 static const struct file_operations cpustate_fops
= {
177 .owner
= THIS_MODULE
,
178 .open
= cpustate_open
,
179 .release
= cpustate_release
,
180 .read
= cpustate_read
,
181 .write
= cpustate_write
,
185 static struct miscdevice cpustate_dev
= {
186 .minor
= MISC_DYNAMIC_MINOR
,
187 .name
= "sky_cpustate",
188 .fops
= &cpustate_fops
,
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);
199 printk(KERN_ERR
"sky_cpustate: "
200 "Invalid memory resource.\n");
203 cpustate
.set_addr
= (unsigned long *)res
->start
;
204 cpustate
.clr_addr
= (unsigned long *)res
->end
- 1;
206 ret
= misc_register(&cpustate_dev
);
208 printk(KERN_WARNING
"sky_cpustate: "
209 "Unable to register misc device.\n");
210 cpustate
.set_addr
= NULL
;
211 cpustate
.clr_addr
= NULL
;
215 proc_de
= proc_create("sky_cpustate", 0666, NULL
, &proc_cpustate
);
217 printk(KERN_WARNING
"sky_cpustate: "
218 "Unable to create proc entry\n");
221 printk(KERN_INFO
"Sky CPU State Driver v" SKY_CPUSTATE_VERSION
"\n");
225 static int hdpu_cpustate_remove(struct platform_device
*pdev
)
227 cpustate
.set_addr
= NULL
;
228 cpustate
.clr_addr
= NULL
;
230 remove_proc_entry("sky_cpustate", NULL
);
231 misc_deregister(&cpustate_dev
);
236 static int __init
cpustate_init(void)
238 return platform_driver_register(&hdpu_cpustate_driver
);
241 static void __exit
cpustate_exit(void)
243 platform_driver_unregister(&hdpu_cpustate_driver
);
246 module_init(cpustate_init
);
247 module_exit(cpustate_exit
);
249 MODULE_AUTHOR("Brian Waite");
250 MODULE_LICENSE("GPL");
251 MODULE_ALIAS("platform:" HDPU_CPUSTATE_NAME
);