[PATCH] dynticks: fix hrtimer rounding error in next_timer_interrupt
[linux-2.6/mini2440.git] / drivers / char / briq_panel.c
blob8dcf9d20f44985be7cbf707bee14e5e20af6a077
1 /*
2 * Drivers for the Total Impact PPC based computer "BRIQ"
3 * by Dr. Karsten Jeppesen
5 */
7 #include <linux/module.h>
9 #include <linux/types.h>
10 #include <linux/errno.h>
11 #include <linux/tty.h>
12 #include <linux/timer.h>
13 #include <linux/kernel.h>
14 #include <linux/wait.h>
15 #include <linux/string.h>
16 #include <linux/slab.h>
17 #include <linux/ioport.h>
18 #include <linux/delay.h>
19 #include <linux/miscdevice.h>
20 #include <linux/fs.h>
21 #include <linux/mm.h>
22 #include <linux/init.h>
24 #include <asm/uaccess.h>
25 #include <asm/io.h>
26 #include <asm/prom.h>
28 #define BRIQ_PANEL_MINOR 156
29 #define BRIQ_PANEL_VFD_IOPORT 0x0390
30 #define BRIQ_PANEL_LED_IOPORT 0x0398
31 #define BRIQ_PANEL_VER "1.1 (04/20/2002)"
32 #define BRIQ_PANEL_MSG0 "Loading Linux"
34 static int vfd_is_open;
35 static unsigned char vfd[40];
36 static int vfd_cursor;
37 static unsigned char ledpb, led;
39 static void update_vfd(void)
41 int i;
43 /* cursor home */
44 outb(0x02, BRIQ_PANEL_VFD_IOPORT);
45 for (i=0; i<20; i++)
46 outb(vfd[i], BRIQ_PANEL_VFD_IOPORT + 1);
48 /* cursor to next line */
49 outb(0xc0, BRIQ_PANEL_VFD_IOPORT);
50 for (i=20; i<40; i++)
51 outb(vfd[i], BRIQ_PANEL_VFD_IOPORT + 1);
55 static void set_led(char state)
57 if (state == 'R')
58 led = 0x01;
59 else if (state == 'G')
60 led = 0x02;
61 else if (state == 'Y')
62 led = 0x03;
63 else if (state == 'X')
64 led = 0x00;
65 outb(led, BRIQ_PANEL_LED_IOPORT);
68 static int briq_panel_open(struct inode *ino, struct file *filep)
70 /* enforce single access */
71 if (vfd_is_open)
72 return -EBUSY;
73 vfd_is_open = 1;
75 return 0;
78 static int briq_panel_release(struct inode *ino, struct file *filep)
80 if (!vfd_is_open)
81 return -ENODEV;
83 vfd_is_open = 0;
85 return 0;
88 static ssize_t briq_panel_read(struct file *file, char __user *buf, size_t count,
89 loff_t *ppos)
91 unsigned short c;
92 unsigned char cp;
94 #if 0 /* Can't seek (pread) on this device */
95 if (ppos != &file->f_pos)
96 return -ESPIPE;
97 #endif
99 if (!vfd_is_open)
100 return -ENODEV;
102 c = (inb(BRIQ_PANEL_LED_IOPORT) & 0x000c) | (ledpb & 0x0003);
103 set_led(' ');
104 /* upper button released */
105 if ((!(ledpb & 0x0004)) && (c & 0x0004)) {
106 cp = ' ';
107 ledpb = c;
108 if (copy_to_user(buf, &cp, 1))
109 return -EFAULT;
110 return 1;
112 /* lower button released */
113 else if ((!(ledpb & 0x0008)) && (c & 0x0008)) {
114 cp = '\r';
115 ledpb = c;
116 if (copy_to_user(buf, &cp, 1))
117 return -EFAULT;
118 return 1;
119 } else {
120 ledpb = c;
121 return 0;
125 static void scroll_vfd( void )
127 int i;
129 for (i=0; i<20; i++) {
130 vfd[i] = vfd[i+20];
131 vfd[i+20] = ' ';
133 vfd_cursor = 20;
136 static ssize_t briq_panel_write(struct file *file, const char __user *buf, size_t len,
137 loff_t *ppos)
139 size_t indx = len;
140 int i, esc = 0;
142 #if 0 /* Can't seek (pwrite) on this device */
143 if (ppos != &file->f_pos)
144 return -ESPIPE;
145 #endif
147 if (!vfd_is_open)
148 return -EBUSY;
150 for (;;) {
151 char c;
152 if (!indx)
153 break;
154 if (get_user(c, buf))
155 return -EFAULT;
156 if (esc) {
157 set_led(c);
158 esc = 0;
159 } else if (c == 27) {
160 esc = 1;
161 } else if (c == 12) {
162 /* do a form feed */
163 for (i=0; i<40; i++)
164 vfd[i] = ' ';
165 vfd_cursor = 0;
166 } else if (c == 10) {
167 if (vfd_cursor < 20)
168 vfd_cursor = 20;
169 else if (vfd_cursor < 40)
170 vfd_cursor = 40;
171 else if (vfd_cursor < 60)
172 vfd_cursor = 60;
173 if (vfd_cursor > 59)
174 scroll_vfd();
175 } else {
176 /* just a character */
177 if (vfd_cursor > 39)
178 scroll_vfd();
179 vfd[vfd_cursor++] = c;
181 indx--;
182 buf++;
184 update_vfd();
186 return len;
189 static const struct file_operations briq_panel_fops = {
190 .owner = THIS_MODULE,
191 .read = briq_panel_read,
192 .write = briq_panel_write,
193 .open = briq_panel_open,
194 .release = briq_panel_release,
197 static struct miscdevice briq_panel_miscdev = {
198 BRIQ_PANEL_MINOR,
199 "briq_panel",
200 &briq_panel_fops
203 static int __init briq_panel_init(void)
205 struct device_node *root = find_path_device("/");
206 const char *machine;
207 int i;
209 machine = get_property(root, "model", NULL);
210 if (!machine || strncmp(machine, "TotalImpact,BRIQ-1", 18) != 0)
211 return -ENODEV;
213 printk(KERN_INFO
214 "briq_panel: v%s Dr. Karsten Jeppesen (kj@totalimpact.com)\n",
215 BRIQ_PANEL_VER);
217 if (!request_region(BRIQ_PANEL_VFD_IOPORT, 4, "BRIQ Front Panel"))
218 return -EBUSY;
220 if (!request_region(BRIQ_PANEL_LED_IOPORT, 2, "BRIQ Front Panel")) {
221 release_region(BRIQ_PANEL_VFD_IOPORT, 4);
222 return -EBUSY;
224 ledpb = inb(BRIQ_PANEL_LED_IOPORT) & 0x000c;
226 if (misc_register(&briq_panel_miscdev) < 0) {
227 release_region(BRIQ_PANEL_VFD_IOPORT, 4);
228 release_region(BRIQ_PANEL_LED_IOPORT, 2);
229 return -EBUSY;
232 outb(0x38, BRIQ_PANEL_VFD_IOPORT); /* Function set */
233 outb(0x01, BRIQ_PANEL_VFD_IOPORT); /* Clear display */
234 outb(0x0c, BRIQ_PANEL_VFD_IOPORT); /* Display on */
235 outb(0x06, BRIQ_PANEL_VFD_IOPORT); /* Entry normal */
236 for (i=0; i<40; i++)
237 vfd[i]=' ';
238 #ifndef MODULE
239 vfd[0] = 'L';
240 vfd[1] = 'o';
241 vfd[2] = 'a';
242 vfd[3] = 'd';
243 vfd[4] = 'i';
244 vfd[5] = 'n';
245 vfd[6] = 'g';
246 vfd[7] = ' ';
247 vfd[8] = '.';
248 vfd[9] = '.';
249 vfd[10] = '.';
250 #endif /* !MODULE */
252 update_vfd();
254 return 0;
257 static void __exit briq_panel_exit(void)
259 misc_deregister(&briq_panel_miscdev);
260 release_region(BRIQ_PANEL_VFD_IOPORT, 4);
261 release_region(BRIQ_PANEL_LED_IOPORT, 2);
264 module_init(briq_panel_init);
265 module_exit(briq_panel_exit);
267 MODULE_LICENSE("GPL");
268 MODULE_AUTHOR("Karsten Jeppesen <karsten@jeppesens.com>");
269 MODULE_DESCRIPTION("Driver for the Total Impact briQ front panel");