GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / arch / mips / lasat / picvue_proc.c
blob8e388da1926f2237c673c5dd972d5580b1b65f4e
1 /*
2 * Picvue PVC160206 display driver
4 * Brian Murphy <brian.murphy@eicon.com>
6 */
7 #include <linux/bug.h>
8 #include <linux/kernel.h>
9 #include <linux/module.h>
10 #include <linux/init.h>
11 #include <linux/errno.h>
13 #include <linux/proc_fs.h>
14 #include <linux/seq_file.h>
15 #include <linux/interrupt.h>
17 #include <linux/timer.h>
18 #include <linux/mutex.h>
20 #include "picvue.h"
22 static DEFINE_MUTEX(pvc_mutex);
23 static char pvc_lines[PVC_NLINES][PVC_LINELEN+1];
24 static int pvc_linedata[PVC_NLINES];
25 static struct proc_dir_entry *pvc_display_dir;
26 static char *pvc_linename[PVC_NLINES] = {"line1", "line2"};
27 #define DISPLAY_DIR_NAME "display"
28 static int scroll_dir, scroll_interval;
30 static struct timer_list timer;
32 static void pvc_display(unsigned long data)
34 int i;
36 pvc_clear();
37 for (i = 0; i < PVC_NLINES; i++)
38 pvc_write_string(pvc_lines[i], 0, i);
41 static DECLARE_TASKLET(pvc_display_tasklet, &pvc_display, 0);
43 static int pvc_line_proc_show(struct seq_file *m, void *v)
45 int lineno = *(int *)m->private;
47 if (lineno < 0 || lineno > PVC_NLINES) {
48 printk(KERN_WARNING "proc_read_line: invalid lineno %d\n", lineno);
49 return 0;
52 mutex_lock(&pvc_mutex);
53 seq_printf(m, "%s\n", pvc_lines[lineno]);
54 mutex_unlock(&pvc_mutex);
56 return 0;
59 static int pvc_line_proc_open(struct inode *inode, struct file *file)
61 return single_open(file, pvc_line_proc_show, PDE(inode)->data);
64 static ssize_t pvc_line_proc_write(struct file *file, const char __user *buf,
65 size_t count, loff_t *pos)
67 int lineno = *(int *)PDE(file->f_path.dentry->d_inode)->data;
68 char kbuf[PVC_LINELEN];
69 size_t len;
71 BUG_ON(lineno < 0 || lineno > PVC_NLINES);
73 len = min(count, sizeof(kbuf) - 1);
74 if (copy_from_user(kbuf, buf, len))
75 return -EFAULT;
76 kbuf[len] = '\0';
78 if (len > 0 && kbuf[len - 1] == '\n')
79 len--;
81 mutex_lock(&pvc_mutex);
82 strncpy(pvc_lines[lineno], kbuf, len);
83 pvc_lines[lineno][len] = '\0';
84 mutex_unlock(&pvc_mutex);
86 tasklet_schedule(&pvc_display_tasklet);
88 return count;
91 static const struct file_operations pvc_line_proc_fops = {
92 .owner = THIS_MODULE,
93 .open = pvc_line_proc_open,
94 .read = seq_read,
95 .llseek = seq_lseek,
96 .release = single_release,
97 .write = pvc_line_proc_write,
100 static ssize_t pvc_scroll_proc_write(struct file *file, const char __user *buf,
101 size_t count, loff_t *pos)
103 char kbuf[42];
104 size_t len;
105 int cmd;
107 len = min(count, sizeof(kbuf) - 1);
108 if (copy_from_user(kbuf, buf, len))
109 return -EFAULT;
110 kbuf[len] = '\0';
112 cmd = simple_strtol(kbuf, NULL, 10);
114 mutex_lock(&pvc_mutex);
115 if (scroll_interval != 0)
116 del_timer(&timer);
118 if (cmd == 0) {
119 scroll_dir = 0;
120 scroll_interval = 0;
121 } else {
122 if (cmd < 0) {
123 scroll_dir = -1;
124 scroll_interval = -cmd;
125 } else {
126 scroll_dir = 1;
127 scroll_interval = cmd;
129 add_timer(&timer);
131 mutex_unlock(&pvc_mutex);
133 return count;
136 static int pvc_scroll_proc_show(struct seq_file *m, void *v)
138 mutex_lock(&pvc_mutex);
139 seq_printf(m, "%d\n", scroll_dir * scroll_interval);
140 mutex_unlock(&pvc_mutex);
142 return 0;
145 static int pvc_scroll_proc_open(struct inode *inode, struct file *file)
147 return single_open(file, pvc_scroll_proc_show, NULL);
150 static const struct file_operations pvc_scroll_proc_fops = {
151 .owner = THIS_MODULE,
152 .open = pvc_scroll_proc_open,
153 .read = seq_read,
154 .llseek = seq_lseek,
155 .release = single_release,
156 .write = pvc_scroll_proc_write,
159 void pvc_proc_timerfunc(unsigned long data)
161 if (scroll_dir < 0)
162 pvc_move(DISPLAY|RIGHT);
163 else if (scroll_dir > 0)
164 pvc_move(DISPLAY|LEFT);
166 timer.expires = jiffies + scroll_interval;
167 add_timer(&timer);
170 static void pvc_proc_cleanup(void)
172 int i;
173 for (i = 0; i < PVC_NLINES; i++)
174 remove_proc_entry(pvc_linename[i], pvc_display_dir);
175 remove_proc_entry("scroll", pvc_display_dir);
176 remove_proc_entry(DISPLAY_DIR_NAME, NULL);
178 del_timer(&timer);
181 static int __init pvc_proc_init(void)
183 struct proc_dir_entry *proc_entry;
184 int i;
186 pvc_display_dir = proc_mkdir(DISPLAY_DIR_NAME, NULL);
187 if (pvc_display_dir == NULL)
188 goto error;
190 for (i = 0; i < PVC_NLINES; i++) {
191 strcpy(pvc_lines[i], "");
192 pvc_linedata[i] = i;
194 for (i = 0; i < PVC_NLINES; i++) {
195 proc_entry = proc_create_data(pvc_linename[i], 0644, pvc_display_dir,
196 &pvc_line_proc_fops, &pvc_linedata[i]);
197 if (proc_entry == NULL)
198 goto error;
200 proc_entry = proc_create("scroll", 0644, pvc_display_dir,
201 &pvc_scroll_proc_fops);
202 if (proc_entry == NULL)
203 goto error;
205 init_timer(&timer);
206 timer.function = pvc_proc_timerfunc;
208 return 0;
209 error:
210 pvc_proc_cleanup();
211 return -ENOMEM;
214 module_init(pvc_proc_init);
215 module_exit(pvc_proc_cleanup);
216 MODULE_LICENSE("GPL");