]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - drivers/char/dtlk.c
llseek: automatically add .llseek fop
[mirror_ubuntu-zesty-kernel.git] / drivers / char / dtlk.c
CommitLineData
1da177e4
LT
1/* -*- linux-c -*-
2 * dtlk.c - DoubleTalk PC driver for Linux
3 *
4 * Original author: Chris Pallotta <chris@allmedia.com>
5 * Current maintainer: Jim Van Zandt <jrv@vanzandt.mv.com>
6 *
7 * 2000-03-18 Jim Van Zandt: Fix polling.
8 * Eliminate dtlk_timer_active flag and separate dtlk_stop_timer
9 * function. Don't restart timer in dtlk_timer_tick. Restart timer
10 * in dtlk_poll after every poll. dtlk_poll returns mask (duh).
11 * Eliminate unused function dtlk_write_byte. Misc. code cleanups.
12 */
13
14/* This driver is for the DoubleTalk PC, a speech synthesizer
15 manufactured by RC Systems (http://www.rcsys.com/). It was written
16 based on documentation in their User's Manual file and Developer's
17 Tools disk.
18
19 The DoubleTalk PC contains four voice synthesizers: text-to-speech
20 (TTS), linear predictive coding (LPC), PCM/ADPCM, and CVSD. It
21 also has a tone generator. Output data for LPC are written to the
22 LPC port, and output data for the other modes are written to the
23 TTS port.
24
25 Two kinds of data can be read from the DoubleTalk: status
26 information (in response to the "\001?" interrogation command) is
27 read from the TTS port, and index markers (which mark the progress
28 of the speech) are read from the LPC port. Not all models of the
29 DoubleTalk PC implement index markers. Both the TTS and LPC ports
30 can also display status flags.
31
32 The DoubleTalk PC generates no interrupts.
33
34 These characteristics are mapped into the Unix stream I/O model as
35 follows:
36
37 "write" sends bytes to the TTS port. It is the responsibility of
38 the user program to switch modes among TTS, PCM/ADPCM, and CVSD.
39 This driver was written for use with the text-to-speech
40 synthesizer. If LPC output is needed some day, other minor device
41 numbers can be used to select among output modes.
42
43 "read" gets index markers from the LPC port. If the device does
44 not implement index markers, the read will fail with error EINVAL.
45
46 Status information is available using the DTLK_INTERROGATE ioctl.
47
48 */
49
50#include <linux/module.h>
51
52#define KERNEL
53#include <linux/types.h>
54#include <linux/fs.h>
e49332bd 55#include <linux/mm.h>
1da177e4
LT
56#include <linux/errno.h> /* for -EBUSY */
57#include <linux/ioport.h> /* for request_region */
58#include <linux/delay.h> /* for loops_per_jiffy */
a99bbaf5 59#include <linux/sched.h>
f2b9857e 60#include <linux/smp_lock.h> /* cycle_kernel_lock() */
1da177e4
LT
61#include <asm/io.h> /* for inb_p, outb_p, inb, outb, etc. */
62#include <asm/uaccess.h> /* for get_user, etc. */
63#include <linux/wait.h> /* for wait_queue */
64#include <linux/init.h> /* for __init, module_{init,exit} */
65#include <linux/poll.h> /* for POLLIN, etc. */
66#include <linux/dtlk.h> /* local header file for DoubleTalk values */
1da177e4
LT
67
68#ifdef TRACING
69#define TRACE_TEXT(str) printk(str);
70#define TRACE_RET printk(")")
71#else /* !TRACING */
72#define TRACE_TEXT(str) ((void) 0)
73#define TRACE_RET ((void) 0)
74#endif /* TRACING */
75
40565f19 76static void dtlk_timer_tick(unsigned long data);
1da177e4
LT
77
78static int dtlk_major;
79static int dtlk_port_lpc;
80static int dtlk_port_tts;
81static int dtlk_busy;
82static int dtlk_has_indexing;
83static unsigned int dtlk_portlist[] =
84{0x25e, 0x29e, 0x2de, 0x31e, 0x35e, 0x39e, 0};
85static wait_queue_head_t dtlk_process_list;
40565f19 86static DEFINE_TIMER(dtlk_timer, dtlk_timer_tick, 0, 0);
1da177e4
LT
87
88/* prototypes for file_operations struct */
89static ssize_t dtlk_read(struct file *, char __user *,
90 size_t nbytes, loff_t * ppos);
91static ssize_t dtlk_write(struct file *, const char __user *,
92 size_t nbytes, loff_t * ppos);
93static unsigned int dtlk_poll(struct file *, poll_table *);
94static int dtlk_open(struct inode *, struct file *);
95static int dtlk_release(struct inode *, struct file *);
55929332
AB
96static long dtlk_ioctl(struct file *file,
97 unsigned int cmd, unsigned long arg);
1da177e4 98
62322d25 99static const struct file_operations dtlk_fops =
1da177e4
LT
100{
101 .owner = THIS_MODULE,
102 .read = dtlk_read,
103 .write = dtlk_write,
104 .poll = dtlk_poll,
55929332 105 .unlocked_ioctl = dtlk_ioctl,
1da177e4
LT
106 .open = dtlk_open,
107 .release = dtlk_release,
6038f373 108 .llseek = no_llseek,
1da177e4
LT
109};
110
111/* local prototypes */
112static int dtlk_dev_probe(void);
113static struct dtlk_settings *dtlk_interrogate(void);
114static int dtlk_readable(void);
115static char dtlk_read_lpc(void);
116static char dtlk_read_tts(void);
117static int dtlk_writeable(void);
118static char dtlk_write_bytes(const char *buf, int n);
119static char dtlk_write_tts(char);
120/*
121 static void dtlk_handle_error(char, char, unsigned int);
122 */
1da177e4
LT
123
124static ssize_t dtlk_read(struct file *file, char __user *buf,
125 size_t count, loff_t * ppos)
126{
a7113a96 127 unsigned int minor = iminor(file->f_path.dentry->d_inode);
1da177e4
LT
128 char ch;
129 int i = 0, retries;
130
131 TRACE_TEXT("(dtlk_read");
132 /* printk("DoubleTalk PC - dtlk_read()\n"); */
133
134 if (minor != DTLK_MINOR || !dtlk_has_indexing)
135 return -EINVAL;
136
137 for (retries = 0; retries < loops_per_jiffy; retries++) {
138 while (i < count && dtlk_readable()) {
139 ch = dtlk_read_lpc();
140 /* printk("dtlk_read() reads 0x%02x\n", ch); */
141 if (put_user(ch, buf++))
142 return -EFAULT;
143 i++;
144 }
145 if (i)
146 return i;
147 if (file->f_flags & O_NONBLOCK)
148 break;
149 msleep_interruptible(100);
150 }
151 if (retries == loops_per_jiffy)
152 printk(KERN_ERR "dtlk_read times out\n");
153 TRACE_RET;
154 return -EAGAIN;
155}
156
157static ssize_t dtlk_write(struct file *file, const char __user *buf,
158 size_t count, loff_t * ppos)
159{
160 int i = 0, retries = 0, ch;
161
162 TRACE_TEXT("(dtlk_write");
163#ifdef TRACING
164 printk(" \"");
165 {
166 int i, ch;
167 for (i = 0; i < count; i++) {
168 if (get_user(ch, buf + i))
169 return -EFAULT;
170 if (' ' <= ch && ch <= '~')
171 printk("%c", ch);
172 else
173 printk("\\%03o", ch);
174 }
175 printk("\"");
176 }
177#endif
178
a7113a96 179 if (iminor(file->f_path.dentry->d_inode) != DTLK_MINOR)
1da177e4
LT
180 return -EINVAL;
181
182 while (1) {
183 while (i < count && !get_user(ch, buf) &&
184 (ch == DTLK_CLEAR || dtlk_writeable())) {
185 dtlk_write_tts(ch);
186 buf++;
187 i++;
188 if (i % 5 == 0)
189 /* We yield our time until scheduled
190 again. This reduces the transfer
191 rate to 500 bytes/sec, but that's
192 still enough to keep up with the
193 speech synthesizer. */
194 msleep_interruptible(1);
195 else {
196 /* the RDY bit goes zero 2-3 usec
197 after writing, and goes 1 again
198 180-190 usec later. Here, we wait
199 up to 250 usec for the RDY bit to
200 go nonzero. */
201 for (retries = 0;
202 retries < loops_per_jiffy / (4000/HZ);
203 retries++)
204 if (inb_p(dtlk_port_tts) &
205 TTS_WRITABLE)
206 break;
207 }
208 retries = 0;
209 }
210 if (i == count)
211 return i;
212 if (file->f_flags & O_NONBLOCK)
213 break;
214
215 msleep_interruptible(1);
216
217 if (++retries > 10 * HZ) { /* wait no more than 10 sec
218 from last write */
219 printk("dtlk: write timeout. "
220 "inb_p(dtlk_port_tts) = 0x%02x\n",
221 inb_p(dtlk_port_tts));
222 TRACE_RET;
223 return -EBUSY;
224 }
225 }
226 TRACE_RET;
227 return -EAGAIN;
228}
229
230static unsigned int dtlk_poll(struct file *file, poll_table * wait)
231{
232 int mask = 0;
233 unsigned long expires;
234
235 TRACE_TEXT(" dtlk_poll");
236 /*
237 static long int j;
238 printk(".");
239 printk("<%ld>", jiffies-j);
240 j=jiffies;
241 */
242 poll_wait(file, &dtlk_process_list, wait);
243
244 if (dtlk_has_indexing && dtlk_readable()) {
245 del_timer(&dtlk_timer);
246 mask = POLLIN | POLLRDNORM;
247 }
248 if (dtlk_writeable()) {
249 del_timer(&dtlk_timer);
250 mask |= POLLOUT | POLLWRNORM;
251 }
252 /* there are no exception conditions */
253
254 /* There won't be any interrupts, so we set a timer instead. */
255 expires = jiffies + 3*HZ / 100;
256 mod_timer(&dtlk_timer, expires);
257
258 return mask;
259}
260
261static void dtlk_timer_tick(unsigned long data)
262{
263 TRACE_TEXT(" dtlk_timer_tick");
264 wake_up_interruptible(&dtlk_process_list);
265}
266
55929332
AB
267static long dtlk_ioctl(struct file *file,
268 unsigned int cmd,
269 unsigned long arg)
1da177e4
LT
270{
271 char __user *argp = (char __user *)arg;
272 struct dtlk_settings *sp;
273 char portval;
274 TRACE_TEXT(" dtlk_ioctl");
275
276 switch (cmd) {
277
278 case DTLK_INTERROGATE:
55929332 279 lock_kernel();
1da177e4 280 sp = dtlk_interrogate();
55929332 281 unlock_kernel();
1da177e4
LT
282 if (copy_to_user(argp, sp, sizeof(struct dtlk_settings)))
283 return -EINVAL;
284 return 0;
285
286 case DTLK_STATUS:
287 portval = inb_p(dtlk_port_tts);
288 return put_user(portval, argp);
289
290 default:
291 return -EINVAL;
292 }
293}
294
f2b9857e 295/* Note that nobody ever sets dtlk_busy... */
1da177e4
LT
296static int dtlk_open(struct inode *inode, struct file *file)
297{
298 TRACE_TEXT("(dtlk_open");
299
f2b9857e 300 cycle_kernel_lock();
1da177e4
LT
301 nonseekable_open(inode, file);
302 switch (iminor(inode)) {
303 case DTLK_MINOR:
304 if (dtlk_busy)
305 return -EBUSY;
306 return nonseekable_open(inode, file);
307
308 default:
309 return -ENXIO;
310 }
311}
312
313static int dtlk_release(struct inode *inode, struct file *file)
314{
315 TRACE_TEXT("(dtlk_release");
316
317 switch (iminor(inode)) {
318 case DTLK_MINOR:
319 break;
320
321 default:
322 break;
323 }
324 TRACE_RET;
325
40565f19 326 del_timer_sync(&dtlk_timer);
1da177e4
LT
327
328 return 0;
329}
330
331static int __init dtlk_init(void)
332{
b2bbe383
AM
333 int err;
334
1da177e4
LT
335 dtlk_port_lpc = 0;
336 dtlk_port_tts = 0;
337 dtlk_busy = 0;
338 dtlk_major = register_chrdev(0, "dtlk", &dtlk_fops);
b2bbe383 339 if (dtlk_major < 0) {
1da177e4 340 printk(KERN_ERR "DoubleTalk PC - cannot register device\n");
b2bbe383
AM
341 return dtlk_major;
342 }
343 err = dtlk_dev_probe();
344 if (err) {
345 unregister_chrdev(dtlk_major, "dtlk");
346 return err;
1da177e4 347 }
b2bbe383 348 printk(", MAJOR %d\n", dtlk_major);
1da177e4 349
1da177e4
LT
350 init_waitqueue_head(&dtlk_process_list);
351
352 return 0;
353}
354
355static void __exit dtlk_cleanup (void)
356{
357 dtlk_write_bytes("goodbye", 8);
358 msleep_interruptible(500); /* nap 0.50 sec but
359 could be awakened
360 earlier by
361 signals... */
362
363 dtlk_write_tts(DTLK_CLEAR);
364 unregister_chrdev(dtlk_major, "dtlk");
1da177e4
LT
365 release_region(dtlk_port_lpc, DTLK_IO_EXTENT);
366}
367
368module_init(dtlk_init);
369module_exit(dtlk_cleanup);
370
371/* ------------------------------------------------------------------------ */
372
373static int dtlk_readable(void)
374{
375#ifdef TRACING
376 printk(" dtlk_readable=%u@%u", inb_p(dtlk_port_lpc) != 0x7f, jiffies);
377#endif
378 return inb_p(dtlk_port_lpc) != 0x7f;
379}
380
381static int dtlk_writeable(void)
382{
383 /* TRACE_TEXT(" dtlk_writeable"); */
384#ifdef TRACINGMORE
385 printk(" dtlk_writeable=%u", (inb_p(dtlk_port_tts) & TTS_WRITABLE)!=0);
386#endif
387 return inb_p(dtlk_port_tts) & TTS_WRITABLE;
388}
389
390static int __init dtlk_dev_probe(void)
391{
392 unsigned int testval = 0;
393 int i = 0;
394 struct dtlk_settings *sp;
395
396 if (dtlk_port_lpc | dtlk_port_tts)
397 return -EBUSY;
398
399 for (i = 0; dtlk_portlist[i]; i++) {
400#if 0
401 printk("DoubleTalk PC - Port %03x = %04x\n",
402 dtlk_portlist[i], (testval = inw_p(dtlk_portlist[i])));
403#endif
404
405 if (!request_region(dtlk_portlist[i], DTLK_IO_EXTENT,
406 "dtlk"))
407 continue;
408 testval = inw_p(dtlk_portlist[i]);
409 if ((testval &= 0xfbff) == 0x107f) {
410 dtlk_port_lpc = dtlk_portlist[i];
411 dtlk_port_tts = dtlk_port_lpc + 1;
412
413 sp = dtlk_interrogate();
414 printk("DoubleTalk PC at %03x-%03x, "
415 "ROM version %s, serial number %u",
416 dtlk_portlist[i], dtlk_portlist[i] +
417 DTLK_IO_EXTENT - 1,
418 sp->rom_version, sp->serial_number);
419
420 /* put LPC port into known state, so
421 dtlk_readable() gives valid result */
422 outb_p(0xff, dtlk_port_lpc);
423
424 /* INIT string and index marker */
425 dtlk_write_bytes("\036\1@\0\0012I\r", 8);
426 /* posting an index takes 18 msec. Here, we
427 wait up to 100 msec to see whether it
428 appears. */
429 msleep_interruptible(100);
430 dtlk_has_indexing = dtlk_readable();
431#ifdef TRACING
432 printk(", indexing %d\n", dtlk_has_indexing);
433#endif
434#ifdef INSCOPE
435 {
436/* This macro records ten samples read from the LPC port, for later display */
437#define LOOK \
438for (i = 0; i < 10; i++) \
439 { \
440 buffer[b++] = inb_p(dtlk_port_lpc); \
441 __delay(loops_per_jiffy/(1000000/HZ)); \
442 }
443 char buffer[1000];
444 int b = 0, i, j;
445
446 LOOK
447 outb_p(0xff, dtlk_port_lpc);
448 buffer[b++] = 0;
449 LOOK
450 dtlk_write_bytes("\0012I\r", 4);
451 buffer[b++] = 0;
452 __delay(50 * loops_per_jiffy / (1000/HZ));
453 outb_p(0xff, dtlk_port_lpc);
454 buffer[b++] = 0;
455 LOOK
456
457 printk("\n");
458 for (j = 0; j < b; j++)
459 printk(" %02x", buffer[j]);
460 printk("\n");
461 }
462#endif /* INSCOPE */
463
464#ifdef OUTSCOPE
465 {
466/* This macro records ten samples read from the TTS port, for later display */
467#define LOOK \
468for (i = 0; i < 10; i++) \
469 { \
470 buffer[b++] = inb_p(dtlk_port_tts); \
471 __delay(loops_per_jiffy/(1000000/HZ)); /* 1 us */ \
472 }
473 char buffer[1000];
474 int b = 0, i, j;
475
476 mdelay(10); /* 10 ms */
477 LOOK
478 outb_p(0x03, dtlk_port_tts);
479 buffer[b++] = 0;
480 LOOK
481 LOOK
482
483 printk("\n");
484 for (j = 0; j < b; j++)
485 printk(" %02x", buffer[j]);
486 printk("\n");
487 }
488#endif /* OUTSCOPE */
489
490 dtlk_write_bytes("Double Talk found", 18);
491
492 return 0;
493 }
494 release_region(dtlk_portlist[i], DTLK_IO_EXTENT);
495 }
496
49b6e2ad 497 printk(KERN_INFO "DoubleTalk PC - not found\n");
1da177e4
LT
498 return -ENODEV;
499}
500
501/*
502 static void dtlk_handle_error(char op, char rc, unsigned int minor)
503 {
504 printk(KERN_INFO"\nDoubleTalk PC - MINOR: %d, OPCODE: %d, ERROR: %d\n",
505 minor, op, rc);
506 return;
507 }
508 */
509
510/* interrogate the DoubleTalk PC and return its settings */
511static struct dtlk_settings *dtlk_interrogate(void)
512{
513 unsigned char *t;
514 static char buf[sizeof(struct dtlk_settings) + 1];
515 int total, i;
516 static struct dtlk_settings status;
517 TRACE_TEXT("(dtlk_interrogate");
518 dtlk_write_bytes("\030\001?", 3);
519 for (total = 0, i = 0; i < 50; i++) {
520 buf[total] = dtlk_read_tts();
521 if (total > 2 && buf[total] == 0x7f)
522 break;
523 if (total < sizeof(struct dtlk_settings))
524 total++;
525 }
526 /*
527 if (i==50) printk("interrogate() read overrun\n");
528 for (i=0; i<sizeof(buf); i++)
529 printk(" %02x", buf[i]);
530 printk("\n");
531 */
532 t = buf;
533 status.serial_number = t[0] + t[1] * 256; /* serial number is
534 little endian */
535 t += 2;
536
537 i = 0;
538 while (*t != '\r') {
539 status.rom_version[i] = *t;
540 if (i < sizeof(status.rom_version) - 1)
541 i++;
542 t++;
543 }
544 status.rom_version[i] = 0;
545 t++;
546
547 status.mode = *t++;
548 status.punc_level = *t++;
549 status.formant_freq = *t++;
550 status.pitch = *t++;
551 status.speed = *t++;
552 status.volume = *t++;
553 status.tone = *t++;
554 status.expression = *t++;
555 status.ext_dict_loaded = *t++;
556 status.ext_dict_status = *t++;
557 status.free_ram = *t++;
558 status.articulation = *t++;
559 status.reverb = *t++;
560 status.eob = *t++;
561 status.has_indexing = dtlk_has_indexing;
562 TRACE_RET;
563 return &status;
564}
565
566static char dtlk_read_tts(void)
567{
568 int portval, retries = 0;
569 char ch;
570 TRACE_TEXT("(dtlk_read_tts");
571
572 /* verify DT is ready, read char, wait for ACK */
573 do {
574 portval = inb_p(dtlk_port_tts);
575 } while ((portval & TTS_READABLE) == 0 &&
576 retries++ < DTLK_MAX_RETRIES);
4390b9e0 577 if (retries > DTLK_MAX_RETRIES)
1da177e4
LT
578 printk(KERN_ERR "dtlk_read_tts() timeout\n");
579
580 ch = inb_p(dtlk_port_tts); /* input from TTS port */
581 ch &= 0x7f;
582 outb_p(ch, dtlk_port_tts);
583
584 retries = 0;
585 do {
586 portval = inb_p(dtlk_port_tts);
587 } while ((portval & TTS_READABLE) != 0 &&
588 retries++ < DTLK_MAX_RETRIES);
4390b9e0 589 if (retries > DTLK_MAX_RETRIES)
1da177e4
LT
590 printk(KERN_ERR "dtlk_read_tts() timeout\n");
591
592 TRACE_RET;
593 return ch;
594}
595
596static char dtlk_read_lpc(void)
597{
598 int retries = 0;
599 char ch;
600 TRACE_TEXT("(dtlk_read_lpc");
601
602 /* no need to test -- this is only called when the port is readable */
603
604 ch = inb_p(dtlk_port_lpc); /* input from LPC port */
605
606 outb_p(0xff, dtlk_port_lpc);
607
608 /* acknowledging a read takes 3-4
609 usec. Here, we wait up to 20 usec
610 for the acknowledgement */
611 retries = (loops_per_jiffy * 20) / (1000000/HZ);
612 while (inb_p(dtlk_port_lpc) != 0x7f && --retries > 0);
613 if (retries == 0)
614 printk(KERN_ERR "dtlk_read_lpc() timeout\n");
615
616 TRACE_RET;
617 return ch;
618}
619
620/* write n bytes to tts port */
621static char dtlk_write_bytes(const char *buf, int n)
622{
623 char val = 0;
624 /* printk("dtlk_write_bytes(\"%-*s\", %d)\n", n, buf, n); */
625 TRACE_TEXT("(dtlk_write_bytes");
626 while (n-- > 0)
627 val = dtlk_write_tts(*buf++);
628 TRACE_RET;
629 return val;
630}
631
632static char dtlk_write_tts(char ch)
633{
634 int retries = 0;
635#ifdef TRACINGMORE
636 printk(" dtlk_write_tts(");
637 if (' ' <= ch && ch <= '~')
638 printk("'%c'", ch);
639 else
640 printk("0x%02x", ch);
641#endif
642 if (ch != DTLK_CLEAR) /* no flow control for CLEAR command */
643 while ((inb_p(dtlk_port_tts) & TTS_WRITABLE) == 0 &&
644 retries++ < DTLK_MAX_RETRIES) /* DT ready? */
645 ;
4390b9e0 646 if (retries > DTLK_MAX_RETRIES)
1da177e4
LT
647 printk(KERN_ERR "dtlk_write_tts() timeout\n");
648
649 outb_p(ch, dtlk_port_tts); /* output to TTS port */
650 /* the RDY bit goes zero 2-3 usec after writing, and goes
651 1 again 180-190 usec later. Here, we wait up to 10
652 usec for the RDY bit to go zero. */
653 for (retries = 0; retries < loops_per_jiffy / (100000/HZ); retries++)
654 if ((inb_p(dtlk_port_tts) & TTS_WRITABLE) == 0)
655 break;
656
657#ifdef TRACINGMORE
658 printk(")\n");
659#endif
660 return 0;
661}
662
663MODULE_LICENSE("GPL");