1 // SPDX-License-Identifier: GPL-2.0-only
3 * dtlk.c - DoubleTalk PC driver for Linux
5 * Original author: Chris Pallotta <chris@allmedia.com>
6 * Current maintainer: Jim Van Zandt <jrv@vanzandt.mv.com>
8 * 2000-03-18 Jim Van Zandt: Fix polling.
9 * Eliminate dtlk_timer_active flag and separate dtlk_stop_timer
10 * function. Don't restart timer in dtlk_timer_tick. Restart timer
11 * in dtlk_poll after every poll. dtlk_poll returns mask (duh).
12 * Eliminate unused function dtlk_write_byte. Misc. code cleanups.
15 /* This driver is for the DoubleTalk PC, a speech synthesizer
16 manufactured by RC Systems (http://www.rcsys.com/). It was written
17 based on documentation in their User's Manual file and Developer's
20 The DoubleTalk PC contains four voice synthesizers: text-to-speech
21 (TTS), linear predictive coding (LPC), PCM/ADPCM, and CVSD. It
22 also has a tone generator. Output data for LPC are written to the
23 LPC port, and output data for the other modes are written to the
26 Two kinds of data can be read from the DoubleTalk: status
27 information (in response to the "\001?" interrogation command) is
28 read from the TTS port, and index markers (which mark the progress
29 of the speech) are read from the LPC port. Not all models of the
30 DoubleTalk PC implement index markers. Both the TTS and LPC ports
31 can also display status flags.
33 The DoubleTalk PC generates no interrupts.
35 These characteristics are mapped into the Unix stream I/O model as
38 "write" sends bytes to the TTS port. It is the responsibility of
39 the user program to switch modes among TTS, PCM/ADPCM, and CVSD.
40 This driver was written for use with the text-to-speech
41 synthesizer. If LPC output is needed some day, other minor device
42 numbers can be used to select among output modes.
44 "read" gets index markers from the LPC port. If the device does
45 not implement index markers, the read will fail with error EINVAL.
47 Status information is available using the DTLK_INTERROGATE ioctl.
51 #include <linux/module.h>
54 #include <linux/types.h>
57 #include <linux/errno.h> /* for -EBUSY */
58 #include <linux/ioport.h> /* for request_region */
59 #include <linux/delay.h> /* for loops_per_jiffy */
60 #include <linux/sched.h>
61 #include <linux/mutex.h>
62 #include <asm/io.h> /* for inb_p, outb_p, inb, outb, etc. */
63 #include <linux/uaccess.h> /* for get_user, etc. */
64 #include <linux/wait.h> /* for wait_queue */
65 #include <linux/init.h> /* for __init, module_{init,exit} */
66 #include <linux/poll.h> /* for EPOLLIN, etc. */
67 #include <linux/dtlk.h> /* local header file for DoubleTalk values */
70 #define TRACE_TEXT(str) printk(str);
71 #define TRACE_RET printk(")")
73 #define TRACE_TEXT(str) ((void) 0)
74 #define TRACE_RET ((void) 0)
77 static DEFINE_MUTEX(dtlk_mutex
);
78 static void dtlk_timer_tick(struct timer_list
*unused
);
80 static int dtlk_major
;
81 static int dtlk_port_lpc
;
82 static int dtlk_port_tts
;
84 static int dtlk_has_indexing
;
85 static unsigned int dtlk_portlist
[] =
86 {0x25e, 0x29e, 0x2de, 0x31e, 0x35e, 0x39e, 0};
87 static wait_queue_head_t dtlk_process_list
;
88 static DEFINE_TIMER(dtlk_timer
, dtlk_timer_tick
);
90 /* prototypes for file_operations struct */
91 static ssize_t
dtlk_read(struct file
*, char __user
*,
92 size_t nbytes
, loff_t
* ppos
);
93 static ssize_t
dtlk_write(struct file
*, const char __user
*,
94 size_t nbytes
, loff_t
* ppos
);
95 static __poll_t
dtlk_poll(struct file
*, poll_table
*);
96 static int dtlk_open(struct inode
*, struct file
*);
97 static int dtlk_release(struct inode
*, struct file
*);
98 static long dtlk_ioctl(struct file
*file
,
99 unsigned int cmd
, unsigned long arg
);
101 static const struct file_operations dtlk_fops
=
103 .owner
= THIS_MODULE
,
107 .unlocked_ioctl
= dtlk_ioctl
,
109 .release
= dtlk_release
,
113 /* local prototypes */
114 static int dtlk_dev_probe(void);
115 static struct dtlk_settings
*dtlk_interrogate(void);
116 static int dtlk_readable(void);
117 static char dtlk_read_lpc(void);
118 static char dtlk_read_tts(void);
119 static int dtlk_writeable(void);
120 static char dtlk_write_bytes(const char *buf
, int n
);
121 static char dtlk_write_tts(char);
123 static void dtlk_handle_error(char, char, unsigned int);
126 static ssize_t
dtlk_read(struct file
*file
, char __user
*buf
,
127 size_t count
, loff_t
* ppos
)
129 unsigned int minor
= iminor(file_inode(file
));
133 TRACE_TEXT("(dtlk_read");
134 /* printk("DoubleTalk PC - dtlk_read()\n"); */
136 if (minor
!= DTLK_MINOR
|| !dtlk_has_indexing
)
139 for (retries
= 0; retries
< loops_per_jiffy
; retries
++) {
140 while (i
< count
&& dtlk_readable()) {
141 ch
= dtlk_read_lpc();
142 /* printk("dtlk_read() reads 0x%02x\n", ch); */
143 if (put_user(ch
, buf
++))
149 if (file
->f_flags
& O_NONBLOCK
)
151 msleep_interruptible(100);
153 if (retries
== loops_per_jiffy
)
154 printk(KERN_ERR
"dtlk_read times out\n");
159 static ssize_t
dtlk_write(struct file
*file
, const char __user
*buf
,
160 size_t count
, loff_t
* ppos
)
162 int i
= 0, retries
= 0, ch
;
164 TRACE_TEXT("(dtlk_write");
169 for (i
= 0; i
< count
; i
++) {
170 if (get_user(ch
, buf
+ i
))
172 if (' ' <= ch
&& ch
<= '~')
175 printk("\\%03o", ch
);
181 if (iminor(file_inode(file
)) != DTLK_MINOR
)
185 while (i
< count
&& !get_user(ch
, buf
) &&
186 (ch
== DTLK_CLEAR
|| dtlk_writeable())) {
191 /* We yield our time until scheduled
192 again. This reduces the transfer
193 rate to 500 bytes/sec, but that's
194 still enough to keep up with the
195 speech synthesizer. */
196 msleep_interruptible(1);
198 /* the RDY bit goes zero 2-3 usec
199 after writing, and goes 1 again
200 180-190 usec later. Here, we wait
201 up to 250 usec for the RDY bit to
204 retries
< loops_per_jiffy
/ (4000/HZ
);
206 if (inb_p(dtlk_port_tts
) &
214 if (file
->f_flags
& O_NONBLOCK
)
217 msleep_interruptible(1);
219 if (++retries
> 10 * HZ
) { /* wait no more than 10 sec
221 printk("dtlk: write timeout. "
222 "inb_p(dtlk_port_tts) = 0x%02x\n",
223 inb_p(dtlk_port_tts
));
232 static __poll_t
dtlk_poll(struct file
*file
, poll_table
* wait
)
235 unsigned long expires
;
237 TRACE_TEXT(" dtlk_poll");
241 printk("<%ld>", jiffies-j);
244 poll_wait(file
, &dtlk_process_list
, wait
);
246 if (dtlk_has_indexing
&& dtlk_readable()) {
247 del_timer(&dtlk_timer
);
248 mask
= EPOLLIN
| EPOLLRDNORM
;
250 if (dtlk_writeable()) {
251 del_timer(&dtlk_timer
);
252 mask
|= EPOLLOUT
| EPOLLWRNORM
;
254 /* there are no exception conditions */
256 /* There won't be any interrupts, so we set a timer instead. */
257 expires
= jiffies
+ 3*HZ
/ 100;
258 mod_timer(&dtlk_timer
, expires
);
263 static void dtlk_timer_tick(struct timer_list
*unused
)
265 TRACE_TEXT(" dtlk_timer_tick");
266 wake_up_interruptible(&dtlk_process_list
);
269 static long dtlk_ioctl(struct file
*file
,
273 char __user
*argp
= (char __user
*)arg
;
274 struct dtlk_settings
*sp
;
276 TRACE_TEXT(" dtlk_ioctl");
280 case DTLK_INTERROGATE
:
281 mutex_lock(&dtlk_mutex
);
282 sp
= dtlk_interrogate();
283 mutex_unlock(&dtlk_mutex
);
284 if (copy_to_user(argp
, sp
, sizeof(struct dtlk_settings
)))
289 portval
= inb_p(dtlk_port_tts
);
290 return put_user(portval
, argp
);
297 /* Note that nobody ever sets dtlk_busy... */
298 static int dtlk_open(struct inode
*inode
, struct file
*file
)
300 TRACE_TEXT("(dtlk_open");
302 switch (iminor(inode
)) {
306 return stream_open(inode
, file
);
313 static int dtlk_release(struct inode
*inode
, struct file
*file
)
315 TRACE_TEXT("(dtlk_release");
317 switch (iminor(inode
)) {
326 del_timer_sync(&dtlk_timer
);
331 static int __init
dtlk_init(void)
338 dtlk_major
= register_chrdev(0, "dtlk", &dtlk_fops
);
339 if (dtlk_major
< 0) {
340 printk(KERN_ERR
"DoubleTalk PC - cannot register device\n");
343 err
= dtlk_dev_probe();
345 unregister_chrdev(dtlk_major
, "dtlk");
348 printk(", MAJOR %d\n", dtlk_major
);
350 init_waitqueue_head(&dtlk_process_list
);
355 static void __exit
dtlk_cleanup (void)
357 dtlk_write_bytes("goodbye", 8);
358 msleep_interruptible(500); /* nap 0.50 sec but
363 dtlk_write_tts(DTLK_CLEAR
);
364 unregister_chrdev(dtlk_major
, "dtlk");
365 release_region(dtlk_port_lpc
, DTLK_IO_EXTENT
);
368 module_init(dtlk_init
);
369 module_exit(dtlk_cleanup
);
371 /* ------------------------------------------------------------------------ */
373 static int dtlk_readable(void)
376 printk(" dtlk_readable=%u@%u", inb_p(dtlk_port_lpc
) != 0x7f, jiffies
);
378 return inb_p(dtlk_port_lpc
) != 0x7f;
381 static int dtlk_writeable(void)
383 /* TRACE_TEXT(" dtlk_writeable"); */
385 printk(" dtlk_writeable=%u", (inb_p(dtlk_port_tts
) & TTS_WRITABLE
)!=0);
387 return inb_p(dtlk_port_tts
) & TTS_WRITABLE
;
390 static int __init
dtlk_dev_probe(void)
392 unsigned int testval
= 0;
394 struct dtlk_settings
*sp
;
396 if (dtlk_port_lpc
| dtlk_port_tts
)
399 for (i
= 0; dtlk_portlist
[i
]; i
++) {
401 printk("DoubleTalk PC - Port %03x = %04x\n",
402 dtlk_portlist
[i
], (testval
= inw_p(dtlk_portlist
[i
])));
405 if (!request_region(dtlk_portlist
[i
], DTLK_IO_EXTENT
,
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;
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
] +
418 sp
->rom_version
, sp
->serial_number
);
420 /* put LPC port into known state, so
421 dtlk_readable() gives valid result */
422 outb_p(0xff, dtlk_port_lpc
);
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
429 msleep_interruptible(100);
430 dtlk_has_indexing
= dtlk_readable();
432 printk(", indexing %d\n", dtlk_has_indexing
);
436 /* This macro records ten samples read from the LPC port, for later display */
438 for (i = 0; i < 10; i++) \
440 buffer[b++] = inb_p(dtlk_port_lpc); \
441 __delay(loops_per_jiffy/(1000000/HZ)); \
447 outb_p(0xff, dtlk_port_lpc
);
450 dtlk_write_bytes("\0012I\r", 4);
452 __delay(50 * loops_per_jiffy
/ (1000/HZ
));
453 outb_p(0xff, dtlk_port_lpc
);
458 for (j
= 0; j
< b
; j
++)
459 printk(" %02x", buffer
[j
]);
466 /* This macro records ten samples read from the TTS port, for later display */
468 for (i = 0; i < 10; i++) \
470 buffer[b++] = inb_p(dtlk_port_tts); \
471 __delay(loops_per_jiffy/(1000000/HZ)); /* 1 us */ \
476 mdelay(10); /* 10 ms */
478 outb_p(0x03, dtlk_port_tts
);
484 for (j
= 0; j
< b
; j
++)
485 printk(" %02x", buffer
[j
]);
488 #endif /* OUTSCOPE */
490 dtlk_write_bytes("Double Talk found", 18);
494 release_region(dtlk_portlist
[i
], DTLK_IO_EXTENT
);
497 printk(KERN_INFO
"DoubleTalk PC - not found\n");
502 static void dtlk_handle_error(char op, char rc, unsigned int minor)
504 printk(KERN_INFO"\nDoubleTalk PC - MINOR: %d, OPCODE: %d, ERROR: %d\n",
510 /* interrogate the DoubleTalk PC and return its settings */
511 static struct dtlk_settings
*dtlk_interrogate(void)
514 static char buf
[sizeof(struct dtlk_settings
) + 1];
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)
523 if (total
< sizeof(struct dtlk_settings
))
527 if (i==50) printk("interrogate() read overrun\n");
528 for (i=0; i<sizeof(buf); i++)
529 printk(" %02x", buf[i]);
533 status
.serial_number
= t
[0] + t
[1] * 256; /* serial number is
539 status
.rom_version
[i
] = *t
;
540 if (i
< sizeof(status
.rom_version
) - 1)
544 status
.rom_version
[i
] = 0;
548 status
.punc_level
= *t
++;
549 status
.formant_freq
= *t
++;
552 status
.volume
= *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
++;
561 status
.has_indexing
= dtlk_has_indexing
;
566 static char dtlk_read_tts(void)
568 int portval
, retries
= 0;
570 TRACE_TEXT("(dtlk_read_tts");
572 /* verify DT is ready, read char, wait for ACK */
574 portval
= inb_p(dtlk_port_tts
);
575 } while ((portval
& TTS_READABLE
) == 0 &&
576 retries
++ < DTLK_MAX_RETRIES
);
577 if (retries
> DTLK_MAX_RETRIES
)
578 printk(KERN_ERR
"dtlk_read_tts() timeout\n");
580 ch
= inb_p(dtlk_port_tts
); /* input from TTS port */
582 outb_p(ch
, dtlk_port_tts
);
586 portval
= inb_p(dtlk_port_tts
);
587 } while ((portval
& TTS_READABLE
) != 0 &&
588 retries
++ < DTLK_MAX_RETRIES
);
589 if (retries
> DTLK_MAX_RETRIES
)
590 printk(KERN_ERR
"dtlk_read_tts() timeout\n");
596 static char dtlk_read_lpc(void)
600 TRACE_TEXT("(dtlk_read_lpc");
602 /* no need to test -- this is only called when the port is readable */
604 ch
= inb_p(dtlk_port_lpc
); /* input from LPC port */
606 outb_p(0xff, dtlk_port_lpc
);
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);
614 printk(KERN_ERR
"dtlk_read_lpc() timeout\n");
620 /* write n bytes to tts port */
621 static char dtlk_write_bytes(const char *buf
, int n
)
624 /* printk("dtlk_write_bytes(\"%-*s\", %d)\n", n, buf, n); */
625 TRACE_TEXT("(dtlk_write_bytes");
627 val
= dtlk_write_tts(*buf
++);
632 static char dtlk_write_tts(char ch
)
636 printk(" dtlk_write_tts(");
637 if (' ' <= ch
&& ch
<= '~')
640 printk("0x%02x", ch
);
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? */
646 if (retries
> DTLK_MAX_RETRIES
)
647 printk(KERN_ERR
"dtlk_write_tts() timeout\n");
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)
663 MODULE_LICENSE("GPL");