blob: 092cfd08a9e18d8a274d7e4d14ea5d0a47b1afec [file] [log] [blame]
Greg Kroah-Hartman64969222018-01-11 11:08:40 +01001// SPDX-License-Identifier: GPL-2.0+
William Hubbsc6e3fd22010-10-07 13:20:02 -05002/*
3 * originally written by: Kirk Reiser <kirk@braille.uwo.ca>
Arushi Singhal4d0bdcb2017-02-12 16:15:58 +05304 * this version considerably modified by David Borowski, david575@rogers.com
William Hubbsc6e3fd22010-10-07 13:20:02 -05005 *
6 * Copyright (C) 1998-99 Kirk Reiser.
7 * Copyright (C) 2003 David Borowski.
8 *
William Hubbsc6e3fd22010-10-07 13:20:02 -05009 * specificly written as a driver for the speakup screenreview
10 * s not a general device driver.
11 */
12#include <linux/jiffies.h>
13#include <linux/sched.h>
14#include <linux/timer.h>
15#include <linux/kthread.h>
16
17#include "spk_priv.h"
William Hubbsc6e3fd22010-10-07 13:20:02 -050018#include "speakup.h"
19
20#define DRV_VERSION "2.14"
21#define SYNTH_CLEAR 0x03
22#define PROCSPEECH 0x0b
Okash Khawaja470790e2017-05-15 18:45:36 +010023
Okash Khawajaca693dc2017-04-29 20:52:58 +010024static volatile unsigned char last_char;
Christopher Brannon3d4f7ea2010-10-14 19:23:51 -050025
Okash Khawajaca693dc2017-04-29 20:52:58 +010026static void read_buff_add(u_char ch)
Christopher Brannon3d4f7ea2010-10-14 19:23:51 -050027{
Okash Khawajaca693dc2017-04-29 20:52:58 +010028 last_char = ch;
Christopher Brannon3d4f7ea2010-10-14 19:23:51 -050029}
30
31static inline bool synth_full(void)
32{
Okash Khawajaca693dc2017-04-29 20:52:58 +010033 return last_char == 0x13;
Christopher Brannon3d4f7ea2010-10-14 19:23:51 -050034}
William Hubbsc6e3fd22010-10-07 13:20:02 -050035
36static void do_catch_up(struct spk_synth *synth);
37static void synth_flush(struct spk_synth *synth);
38
39static int in_escape;
40
41static struct var_t vars[] = {
Christopher Brannon3d4f7ea2010-10-14 19:23:51 -050042 { CAPS_START, .u.s = {"[:dv ap 222]" } },
43 { CAPS_STOP, .u.s = {"[:dv ap 100]" } },
44 { RATE, .u.n = {"[:ra %d]", 7, 0, 9, 150, 25, NULL } },
45 { PITCH, .u.n = {"[:dv ap %d]", 100, 0, 100, 0, 0, NULL } },
Samuel Thibaultd97a9d72020-04-25 21:32:26 +020046 { INFLECTION, .u.n = {"[:dv pr %d] ", 100, 0, 10000, 0, 0, NULL } },
Christopher Brannon3d4f7ea2010-10-14 19:23:51 -050047 { VOL, .u.n = {"[:dv gv %d]", 13, 0, 16, 0, 5, NULL } },
48 { PUNCT, .u.n = {"[:pu %c]", 0, 0, 2, 0, 0, "nsa" } },
49 { VOICE, .u.n = {"[:n%c]", 0, 0, 9, 0, 0, "phfdburwkv" } },
50 { DIRECT, .u.n = {NULL, 0, 0, 1, 0, 0, NULL } },
William Hubbsc6e3fd22010-10-07 13:20:02 -050051 V_LAST_VAR
52};
53
54/*
55 * These attributes will appear in /sys/accessibility/speakup/decext.
56 */
57static struct kobj_attribute caps_start_attribute =
Derek Robson73c37002017-01-28 19:35:01 +130058 __ATTR(caps_start, 0644, spk_var_show, spk_var_store);
William Hubbsc6e3fd22010-10-07 13:20:02 -050059static struct kobj_attribute caps_stop_attribute =
Derek Robson73c37002017-01-28 19:35:01 +130060 __ATTR(caps_stop, 0644, spk_var_show, spk_var_store);
William Hubbsc6e3fd22010-10-07 13:20:02 -050061static struct kobj_attribute pitch_attribute =
Derek Robson73c37002017-01-28 19:35:01 +130062 __ATTR(pitch, 0644, spk_var_show, spk_var_store);
Samuel Thibaultd97a9d72020-04-25 21:32:26 +020063static struct kobj_attribute inflection_attribute =
64 __ATTR(inflection, 0644, spk_var_show, spk_var_store);
William Hubbsc6e3fd22010-10-07 13:20:02 -050065static struct kobj_attribute punct_attribute =
Derek Robson73c37002017-01-28 19:35:01 +130066 __ATTR(punct, 0644, spk_var_show, spk_var_store);
William Hubbsc6e3fd22010-10-07 13:20:02 -050067static struct kobj_attribute rate_attribute =
Derek Robson73c37002017-01-28 19:35:01 +130068 __ATTR(rate, 0644, spk_var_show, spk_var_store);
William Hubbsc6e3fd22010-10-07 13:20:02 -050069static struct kobj_attribute voice_attribute =
Derek Robson73c37002017-01-28 19:35:01 +130070 __ATTR(voice, 0644, spk_var_show, spk_var_store);
William Hubbsc6e3fd22010-10-07 13:20:02 -050071static struct kobj_attribute vol_attribute =
Derek Robson73c37002017-01-28 19:35:01 +130072 __ATTR(vol, 0644, spk_var_show, spk_var_store);
William Hubbsc6e3fd22010-10-07 13:20:02 -050073
74static struct kobj_attribute delay_time_attribute =
Derek Robson73c37002017-01-28 19:35:01 +130075 __ATTR(delay_time, 0644, spk_var_show, spk_var_store);
William Hubbsc6e3fd22010-10-07 13:20:02 -050076static struct kobj_attribute direct_attribute =
Derek Robson73c37002017-01-28 19:35:01 +130077 __ATTR(direct, 0644, spk_var_show, spk_var_store);
William Hubbsc6e3fd22010-10-07 13:20:02 -050078static struct kobj_attribute full_time_attribute =
Derek Robson73c37002017-01-28 19:35:01 +130079 __ATTR(full_time, 0644, spk_var_show, spk_var_store);
William Hubbsc6e3fd22010-10-07 13:20:02 -050080static struct kobj_attribute jiffy_delta_attribute =
Derek Robson73c37002017-01-28 19:35:01 +130081 __ATTR(jiffy_delta, 0644, spk_var_show, spk_var_store);
William Hubbsc6e3fd22010-10-07 13:20:02 -050082static struct kobj_attribute trigger_time_attribute =
Derek Robson73c37002017-01-28 19:35:01 +130083 __ATTR(trigger_time, 0644, spk_var_show, spk_var_store);
William Hubbsc6e3fd22010-10-07 13:20:02 -050084
85/*
86 * Create a group of attributes so that we can create and destroy them all
87 * at once.
88 */
89static struct attribute *synth_attrs[] = {
90 &caps_start_attribute.attr,
91 &caps_stop_attribute.attr,
92 &pitch_attribute.attr,
Samuel Thibaultd97a9d72020-04-25 21:32:26 +020093 &inflection_attribute.attr,
William Hubbsc6e3fd22010-10-07 13:20:02 -050094 &punct_attribute.attr,
95 &rate_attribute.attr,
96 &voice_attribute.attr,
97 &vol_attribute.attr,
98 &delay_time_attribute.attr,
99 &direct_attribute.attr,
100 &full_time_attribute.attr,
101 &jiffy_delta_attribute.attr,
102 &trigger_time_attribute.attr,
103 NULL, /* need to NULL terminate the list of attributes */
104};
105
106static struct spk_synth synth_decext = {
107 .name = "decext",
108 .version = DRV_VERSION,
109 .long_name = "Dectalk External",
110 .init = "[:pe -380]",
111 .procspeech = PROCSPEECH,
112 .clear = SYNTH_CLEAR,
113 .delay = 500,
114 .trigger = 50,
115 .jiffies = 50,
116 .full = 40000,
117 .flags = SF_DEC,
Okash Khawaja8a21ff72017-06-25 19:40:02 +0100118 .dev_name = SYNTH_DEFAULT_DEV,
William Hubbsc6e3fd22010-10-07 13:20:02 -0500119 .startup = SYNTH_START,
120 .checkval = SYNTH_CHECK,
121 .vars = vars,
Okash Khawaja470790e2017-05-15 18:45:36 +0100122 .io_ops = &spk_ttyio_ops,
123 .probe = spk_ttyio_synth_probe,
124 .release = spk_ttyio_release,
125 .synth_immediate = spk_ttyio_synth_immediate,
William Hubbsc6e3fd22010-10-07 13:20:02 -0500126 .catch_up = do_catch_up,
127 .flush = synth_flush,
128 .is_alive = spk_synth_is_alive_restart,
129 .synth_adjust = NULL,
Okash Khawajaca693dc2017-04-29 20:52:58 +0100130 .read_buff_add = read_buff_add,
William Hubbsc6e3fd22010-10-07 13:20:02 -0500131 .get_index = NULL,
132 .indexing = {
133 .command = NULL,
134 .lowindex = 0,
135 .highindex = 0,
136 .currindex = 0,
137 },
138 .attributes = {
139 .attrs = synth_attrs,
140 .name = "decext",
141 },
142};
143
144static void do_catch_up(struct spk_synth *synth)
145{
146 u_char ch;
147 static u_char last = '\0';
148 unsigned long flags;
149 unsigned long jiff_max;
150 struct var_t *jiffy_delta;
151 struct var_t *delay_time;
152 int jiffy_delta_val = 0;
153 int delay_time_val = 0;
154
Samuel Thibaultca2beaf2013-01-02 02:37:40 +0100155 jiffy_delta = spk_get_var(JIFFY);
156 delay_time = spk_get_var(DELAY);
William Hubbsc6e3fd22010-10-07 13:20:02 -0500157
William Hubbsb4b93e32013-05-13 00:03:01 -0500158 spin_lock_irqsave(&speakup_info.spinlock, flags);
William Hubbsc6e3fd22010-10-07 13:20:02 -0500159 jiffy_delta_val = jiffy_delta->u.n.value;
William Hubbsb4b93e32013-05-13 00:03:01 -0500160 spin_unlock_irqrestore(&speakup_info.spinlock, flags);
William Hubbsc6e3fd22010-10-07 13:20:02 -0500161 jiff_max = jiffies + jiffy_delta_val;
162
163 while (!kthread_should_stop()) {
William Hubbsb4b93e32013-05-13 00:03:01 -0500164 spin_lock_irqsave(&speakup_info.spinlock, flags);
William Hubbsc6e3fd22010-10-07 13:20:02 -0500165 if (speakup_info.flushing) {
166 speakup_info.flushing = 0;
William Hubbsb4b93e32013-05-13 00:03:01 -0500167 spin_unlock_irqrestore(&speakup_info.spinlock, flags);
William Hubbsc6e3fd22010-10-07 13:20:02 -0500168 synth->flush(synth);
169 continue;
170 }
Samuel Thibault89fc2ae2017-03-04 15:01:55 +0100171 synth_buffer_skip_nonlatin1();
William Hubbsc6e3fd22010-10-07 13:20:02 -0500172 if (synth_buffer_empty()) {
William Hubbsb4b93e32013-05-13 00:03:01 -0500173 spin_unlock_irqrestore(&speakup_info.spinlock, flags);
William Hubbsc6e3fd22010-10-07 13:20:02 -0500174 break;
175 }
176 ch = synth_buffer_peek();
177 set_current_state(TASK_INTERRUPTIBLE);
178 delay_time_val = delay_time->u.n.value;
William Hubbsb4b93e32013-05-13 00:03:01 -0500179 spin_unlock_irqrestore(&speakup_info.spinlock, flags);
William Hubbsc6e3fd22010-10-07 13:20:02 -0500180 if (ch == '\n')
181 ch = 0x0D;
Okash Khawaja1e441592017-03-14 13:41:53 +0000182 if (synth_full() || !synth->io_ops->synth_out(synth, ch)) {
William Hubbsc6e3fd22010-10-07 13:20:02 -0500183 schedule_timeout(msecs_to_jiffies(delay_time_val));
184 continue;
185 }
186 set_current_state(TASK_RUNNING);
William Hubbsb4b93e32013-05-13 00:03:01 -0500187 spin_lock_irqsave(&speakup_info.spinlock, flags);
William Hubbsc6e3fd22010-10-07 13:20:02 -0500188 synth_buffer_getc();
William Hubbsb4b93e32013-05-13 00:03:01 -0500189 spin_unlock_irqrestore(&speakup_info.spinlock, flags);
Arushi Singhal0dcb2122017-03-21 17:12:28 +0530190 if (ch == '[') {
William Hubbsc6e3fd22010-10-07 13:20:02 -0500191 in_escape = 1;
Arushi Singhal0dcb2122017-03-21 17:12:28 +0530192 } else if (ch == ']') {
William Hubbsc6e3fd22010-10-07 13:20:02 -0500193 in_escape = 0;
Arushi Singhal0dcb2122017-03-21 17:12:28 +0530194 } else if (ch <= SPACE) {
William Hubbsc6e3fd22010-10-07 13:20:02 -0500195 if (!in_escape && strchr(",.!?;:", last))
Okash Khawaja1e441592017-03-14 13:41:53 +0000196 synth->io_ops->synth_out(synth, PROCSPEECH);
Tapasweni Pathak89021ec2014-09-21 19:22:51 +0530197 if (time_after_eq(jiffies, jiff_max)) {
Christopher Brannon3d4f7ea2010-10-14 19:23:51 -0500198 if (!in_escape)
Bhagyashri Digholee2d55012019-02-28 17:59:04 +0530199 synth->io_ops->synth_out(synth,
200 PROCSPEECH);
Shirish Gajera63b8ebe2015-03-28 13:21:39 -0700201 spin_lock_irqsave(&speakup_info.spinlock,
Arushi Singhalf239d3d2017-03-24 16:47:27 +0530202 flags);
William Hubbsc6e3fd22010-10-07 13:20:02 -0500203 jiffy_delta_val = jiffy_delta->u.n.value;
204 delay_time_val = delay_time->u.n.value;
Shirish Gajera63b8ebe2015-03-28 13:21:39 -0700205 spin_unlock_irqrestore(&speakup_info.spinlock,
Arushi Singhalf239d3d2017-03-24 16:47:27 +0530206 flags);
Christopher Brannon3d4f7ea2010-10-14 19:23:51 -0500207 schedule_timeout(msecs_to_jiffies
208 (delay_time_val));
William Hubbsc6e3fd22010-10-07 13:20:02 -0500209 jiff_max = jiffies + jiffy_delta_val;
210 }
211 }
212 last = ch;
213 }
214 if (!in_escape)
Okash Khawaja1e441592017-03-14 13:41:53 +0000215 synth->io_ops->synth_out(synth, PROCSPEECH);
William Hubbsc6e3fd22010-10-07 13:20:02 -0500216}
217
218static void synth_flush(struct spk_synth *synth)
219{
220 in_escape = 0;
Samuel Thibault1941ab12021-01-26 23:21:44 +0100221 synth->io_ops->flush_buffer(synth);
Okash Khawaja98c1fda2017-03-16 08:10:17 +0000222 synth->synth_immediate(synth, "\033P;10z\033\\");
William Hubbsc6e3fd22010-10-07 13:20:02 -0500223}
224
Derek Robson73c37002017-01-28 19:35:01 +1300225module_param_named(ser, synth_decext.ser, int, 0444);
Mihaela Murarub5a603d2017-09-24 11:49:41 +0300226module_param_named(dev, synth_decext.dev_name, charp, 0444);
Derek Robson73c37002017-01-28 19:35:01 +1300227module_param_named(start, synth_decext.startup, short, 0444);
William Hubbsc6e3fd22010-10-07 13:20:02 -0500228
229MODULE_PARM_DESC(ser, "Set the serial port for the synthesizer (0-based).");
Okash Khawaja8a21ff72017-06-25 19:40:02 +0100230MODULE_PARM_DESC(dev, "Set the device e.g. ttyUSB0, for the synthesizer.");
William Hubbsc6e3fd22010-10-07 13:20:02 -0500231MODULE_PARM_DESC(start, "Start the synthesizer once it is loaded.");
232
Vaishali Thakkarae89fac2015-03-18 23:13:10 +0530233module_spk_synth(synth_decext);
William Hubbsc6e3fd22010-10-07 13:20:02 -0500234
William Hubbsc6e3fd22010-10-07 13:20:02 -0500235MODULE_AUTHOR("Kirk Reiser <kirk@braille.uwo.ca>");
236MODULE_AUTHOR("David Borowski");
237MODULE_DESCRIPTION("Speakup support for DECtalk External synthesizers");
238MODULE_LICENSE("GPL");
239MODULE_VERSION(DRV_VERSION);
240