5 * Copyright (C) 1998-99 Kirk Reiser.
6 * Copyright (C) 2003 David Borowski.
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * specificly written as a driver for the speakup screenreview
19 * package it's not a general device driver.
20 * This driver is for the RC Systems DoubleTalk PC internal synthesizer.
22 #include <linux/jiffies.h>
23 #include <linux/sched.h>
24 #include <linux/timer.h>
25 #include <linux/kthread.h>
29 #include "speakup_dtlk.h" /* local header file for DoubleTalk values */
32 #define DRV_VERSION "2.10"
33 #define PROCSPEECH 0x00
35 static int synth_probe(struct spk_synth *synth);
36 static void dtlk_release(void);
37 static const char *synth_immediate(struct spk_synth *synth, const char *buf);
38 static void do_catch_up(struct spk_synth *synth);
39 static void synth_flush(struct spk_synth *synth);
42 static int port_forced;
43 static unsigned int synth_portlist[] = {
44 0x25e, 0x29e, 0x2de, 0x31e, 0x35e, 0x39e, 0
46 static u_char synth_status;
48 static struct var_t vars[] = {
49 { CAPS_START, .u.s = {"\x01+35p" } },
50 { CAPS_STOP, .u.s = {"\x01-35p" } },
51 { RATE, .u.n = {"\x01%ds", 8, 0, 9, 0, 0, NULL } },
52 { PITCH, .u.n = {"\x01%dp", 50, 0, 99, 0, 0, NULL } },
53 { VOL, .u.n = {"\x01%dv", 5, 0, 9, 0, 0, NULL } },
54 { TONE, .u.n = {"\x01%dx", 1, 0, 2, 0, 0, NULL } },
55 { PUNCT, .u.n = {"\x01%db", 7, 0, 15, 0, 0, NULL } },
56 { VOICE, .u.n = {"\x01%do", 0, 0, 7, 0, 0, NULL } },
57 { FREQUENCY, .u.n = {"\x01%df", 5, 0, 9, 0, 0, NULL } },
58 { DIRECT, .u.n = {NULL, 0, 0, 1, 0, 0, NULL } },
63 * These attributes will appear in /sys/accessibility/speakup/dtlk.
65 static struct kobj_attribute caps_start_attribute =
66 __ATTR(caps_start, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
67 static struct kobj_attribute caps_stop_attribute =
68 __ATTR(caps_stop, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
69 static struct kobj_attribute freq_attribute =
70 __ATTR(freq, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
71 static struct kobj_attribute pitch_attribute =
72 __ATTR(pitch, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
73 static struct kobj_attribute punct_attribute =
74 __ATTR(punct, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
75 static struct kobj_attribute rate_attribute =
76 __ATTR(rate, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
77 static struct kobj_attribute tone_attribute =
78 __ATTR(tone, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
79 static struct kobj_attribute voice_attribute =
80 __ATTR(voice, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
81 static struct kobj_attribute vol_attribute =
82 __ATTR(vol, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
84 static struct kobj_attribute delay_time_attribute =
85 __ATTR(delay_time, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
86 static struct kobj_attribute direct_attribute =
87 __ATTR(direct, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
88 static struct kobj_attribute full_time_attribute =
89 __ATTR(full_time, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
90 static struct kobj_attribute jiffy_delta_attribute =
91 __ATTR(jiffy_delta, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
92 static struct kobj_attribute trigger_time_attribute =
93 __ATTR(trigger_time, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
96 * Create a group of attributes so that we can create and destroy them all
99 static struct attribute *synth_attrs[] = {
100 &caps_start_attribute.attr,
101 &caps_stop_attribute.attr,
102 &freq_attribute.attr,
103 &pitch_attribute.attr,
104 &punct_attribute.attr,
105 &rate_attribute.attr,
106 &tone_attribute.attr,
107 &voice_attribute.attr,
109 &delay_time_attribute.attr,
110 &direct_attribute.attr,
111 &full_time_attribute.attr,
112 &jiffy_delta_attribute.attr,
113 &trigger_time_attribute.attr,
114 NULL, /* need to NULL terminate the list of attributes */
117 static struct spk_synth synth_dtlk = {
119 .version = DRV_VERSION,
120 .long_name = "DoubleTalk PC",
121 .init = "\x01@\x01\x31y",
122 .procspeech = PROCSPEECH,
123 .clear = SYNTH_CLEAR,
128 .startup = SYNTH_START,
129 .checkval = SYNTH_CHECK,
131 .probe = synth_probe,
132 .release = dtlk_release,
133 .synth_immediate = synth_immediate,
134 .catch_up = do_catch_up,
135 .flush = synth_flush,
136 .is_alive = spk_synth_is_alive_nop,
137 .synth_adjust = NULL,
138 .read_buff_add = NULL,
139 .get_index = spk_serial_in_nowait,
141 .command = "\x01%di",
147 .attrs = synth_attrs,
152 static inline bool synth_readable(void)
154 synth_status = inb_p(speakup_info.port_tts + UART_RX);
155 return (synth_status & TTS_READABLE) != 0;
158 static inline bool synth_writable(void)
160 synth_status = inb_p(speakup_info.port_tts + UART_RX);
161 return (synth_status & TTS_WRITABLE) != 0;
164 static inline bool synth_full(void)
166 synth_status = inb_p(speakup_info.port_tts + UART_RX);
167 return (synth_status & TTS_ALMOST_FULL) != 0;
170 static void spk_out(const char ch)
172 int timeout = SPK_XMITR_TIMEOUT;
174 while (!synth_writable()) {
179 outb_p(ch, speakup_info.port_tts);
180 timeout = SPK_XMITR_TIMEOUT;
181 while (synth_writable()) {
188 static void do_catch_up(struct spk_synth *synth)
192 unsigned long jiff_max;
193 struct var_t *jiffy_delta;
194 struct var_t *delay_time;
198 jiffy_delta = spk_get_var(JIFFY);
199 delay_time = spk_get_var(DELAY);
200 spin_lock_irqsave(&speakup_info.spinlock, flags);
201 jiffy_delta_val = jiffy_delta->u.n.value;
202 spin_unlock_irqrestore(&speakup_info.spinlock, flags);
203 jiff_max = jiffies + jiffy_delta_val;
204 while (!kthread_should_stop()) {
205 spin_lock_irqsave(&speakup_info.spinlock, flags);
206 if (speakup_info.flushing) {
207 speakup_info.flushing = 0;
208 spin_unlock_irqrestore(&speakup_info.spinlock, flags);
212 if (synth_buffer_empty()) {
213 spin_unlock_irqrestore(&speakup_info.spinlock, flags);
216 set_current_state(TASK_INTERRUPTIBLE);
217 delay_time_val = delay_time->u.n.value;
218 spin_unlock_irqrestore(&speakup_info.spinlock, flags);
220 schedule_timeout(msecs_to_jiffies(delay_time_val));
223 set_current_state(TASK_RUNNING);
224 spin_lock_irqsave(&speakup_info.spinlock, flags);
225 ch = synth_buffer_getc();
226 spin_unlock_irqrestore(&speakup_info.spinlock, flags);
230 if (time_after_eq(jiffies, jiff_max) && (ch == SPACE)) {
232 spin_lock_irqsave(&speakup_info.spinlock, flags);
233 delay_time_val = delay_time->u.n.value;
234 jiffy_delta_val = jiffy_delta->u.n.value;
235 spin_unlock_irqrestore(&speakup_info.spinlock, flags);
236 schedule_timeout(msecs_to_jiffies(delay_time_val));
237 jiff_max = jiffies + jiffy_delta_val;
243 static const char *synth_immediate(struct spk_synth *synth, const char *buf)
247 while ((ch = (u_char)*buf)) {
258 static void synth_flush(struct spk_synth *synth)
260 outb_p(SYNTH_CLEAR, speakup_info.port_tts);
261 while (synth_writable())
265 static char synth_read_tts(void)
269 while (!synth_readable())
271 ch = synth_status & 0x7f;
272 outb_p(ch, speakup_info.port_tts);
273 while (synth_readable())
278 /* interrogate the DoubleTalk PC and return its settings */
279 static struct synth_settings *synth_interrogate(struct spk_synth *synth)
282 static char buf[sizeof(struct synth_settings) + 1];
284 static struct synth_settings status;
286 synth_immediate(synth, "\x18\x01?");
287 for (total = 0, i = 0; i < 50; i++) {
288 buf[total] = synth_read_tts();
289 if (total > 2 && buf[total] == 0x7f)
291 if (total < sizeof(struct synth_settings))
295 /* serial number is little endian */
296 status.serial_number = t[0] + t[1]*256;
298 for (i = 0; *t != '\r'; t++) {
299 status.rom_version[i] = *t;
300 if (i < sizeof(status.rom_version)-1)
303 status.rom_version[i] = 0;
306 status.punc_level = *t++;
307 status.formant_freq = *t++;
310 status.volume = *t++;
312 status.expression = *t++;
313 status.ext_dict_loaded = *t++;
314 status.ext_dict_status = *t++;
315 status.free_ram = *t++;
316 status.articulation = *t++;
317 status.reverb = *t++;
322 static int synth_probe(struct spk_synth *synth)
324 unsigned int port_val = 0;
326 struct synth_settings *sp;
328 pr_info("Probing for DoubleTalk.\n");
330 speakup_info.port_tts = port_forced;
331 pr_info("probe forced to %x by kernel command line\n",
332 speakup_info.port_tts);
333 if ((port_forced & 0xf) != 0xf)
334 pr_info("warning: port base should probably end with f\n");
335 if (synth_request_region(speakup_info.port_tts-1,
337 pr_warn("sorry, port already reserved\n");
340 port_val = inw(speakup_info.port_tts-1);
341 synth_lpc = speakup_info.port_tts-1;
343 for (i = 0; synth_portlist[i]; i++) {
344 if (synth_request_region(synth_portlist[i],
347 port_val = inw(synth_portlist[i]) & 0xfbff;
348 if (port_val == 0x107f) {
349 synth_lpc = synth_portlist[i];
350 speakup_info.port_tts = synth_lpc+1;
353 synth_release_region(synth_portlist[i],
358 if (port_val != 0x107f) {
359 pr_info("DoubleTalk PC: not found\n");
361 synth_release_region(synth_lpc, SYNTH_IO_EXTENT);
364 while (inw_p(synth_lpc) != 0x147f)
365 cpu_relax(); /* wait until it's ready */
366 sp = synth_interrogate(synth);
367 pr_info("%s: %03x-%03x, ROM ver %s, s/n %u, driver: %s\n",
368 synth->long_name, synth_lpc, synth_lpc+SYNTH_IO_EXTENT - 1,
369 sp->rom_version, sp->serial_number, synth->version);
374 static void dtlk_release(void)
376 if (speakup_info.port_tts)
377 synth_release_region(speakup_info.port_tts-1, SYNTH_IO_EXTENT);
378 speakup_info.port_tts = 0;
381 module_param_named(port, port_forced, int, S_IRUGO);
382 module_param_named(start, synth_dtlk.startup, short, S_IRUGO);
384 MODULE_PARM_DESC(port, "Set the port for the synthesizer (override probing).");
385 MODULE_PARM_DESC(start, "Start the synthesizer once it is loaded.");
387 module_spk_synth(synth_dtlk);
390 MODULE_AUTHOR("David Borowski");
391 MODULE_DESCRIPTION("Speakup support for DoubleTalk PC synthesizers");
392 MODULE_LICENSE("GPL");
393 MODULE_VERSION(DRV_VERSION);