Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost
[cris-mirror.git] / drivers / staging / speakup / synth.c
blobc06e6a810999bcd07fdac6040b7a64d97bf296fc
1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/types.h>
3 #include <linux/ctype.h> /* for isdigit() and friends */
4 #include <linux/fs.h>
5 #include <linux/mm.h> /* for verify_area */
6 #include <linux/errno.h> /* for -EBUSY */
7 #include <linux/ioport.h> /* for check_region, request_region */
8 #include <linux/interrupt.h>
9 #include <linux/delay.h> /* for loops_per_sec */
10 #include <linux/kmod.h>
11 #include <linux/jiffies.h>
12 #include <linux/uaccess.h> /* for copy_from_user */
13 #include <linux/sched.h>
14 #include <linux/timer.h>
15 #include <linux/kthread.h>
17 #include "spk_priv.h"
18 #include "speakup.h"
19 #include "serialio.h"
21 #define MAXSYNTHS 16 /* Max number of synths in array. */
22 static struct spk_synth *synths[MAXSYNTHS + 1];
23 struct spk_synth *synth;
24 char spk_pitch_buff[32] = "";
25 static int module_status;
26 bool spk_quiet_boot;
28 struct speakup_info_t speakup_info = {
30 * This spinlock is used to protect the entire speakup machinery, and
31 * must be taken at each kernel->speakup transition and released at
32 * each corresponding speakup->kernel transition.
34 * The progression thread only interferes with the speakup machinery
35 * through the synth buffer, so only needs to take the lock
36 * while tinkering with the buffer.
38 * We use spin_lock/trylock_irqsave and spin_unlock_irqrestore with this
39 * spinlock because speakup needs to disable the keyboard IRQ.
41 .spinlock = __SPIN_LOCK_UNLOCKED(speakup_info.spinlock),
42 .flushing = 0,
44 EXPORT_SYMBOL_GPL(speakup_info);
46 static int do_synth_init(struct spk_synth *in_synth);
49 * Main loop of the progression thread: keep eating from the buffer
50 * and push to the serial port, waiting as needed
52 * For devices that have a "full" notification mechanism, the driver can
53 * adapt the loop the way they prefer.
55 void spk_do_catch_up(struct spk_synth *synth)
57 u_char ch;
58 unsigned long flags;
59 unsigned long jiff_max;
60 struct var_t *delay_time;
61 struct var_t *full_time;
62 struct var_t *jiffy_delta;
63 int jiffy_delta_val;
64 int delay_time_val;
65 int full_time_val;
67 jiffy_delta = spk_get_var(JIFFY);
68 full_time = spk_get_var(FULL);
69 delay_time = spk_get_var(DELAY);
71 spin_lock_irqsave(&speakup_info.spinlock, flags);
72 jiffy_delta_val = jiffy_delta->u.n.value;
73 spin_unlock_irqrestore(&speakup_info.spinlock, flags);
75 jiff_max = jiffies + jiffy_delta_val;
76 while (!kthread_should_stop()) {
77 spin_lock_irqsave(&speakup_info.spinlock, flags);
78 if (speakup_info.flushing) {
79 speakup_info.flushing = 0;
80 spin_unlock_irqrestore(&speakup_info.spinlock, flags);
81 synth->flush(synth);
82 continue;
84 synth_buffer_skip_nonlatin1();
85 if (synth_buffer_empty()) {
86 spin_unlock_irqrestore(&speakup_info.spinlock, flags);
87 break;
89 ch = synth_buffer_peek();
90 set_current_state(TASK_INTERRUPTIBLE);
91 full_time_val = full_time->u.n.value;
92 spin_unlock_irqrestore(&speakup_info.spinlock, flags);
93 if (ch == '\n')
94 ch = synth->procspeech;
95 if (!synth->io_ops->synth_out(synth, ch)) {
96 schedule_timeout(msecs_to_jiffies(full_time_val));
97 continue;
99 if (time_after_eq(jiffies, jiff_max) && (ch == SPACE)) {
100 spin_lock_irqsave(&speakup_info.spinlock, flags);
101 jiffy_delta_val = jiffy_delta->u.n.value;
102 delay_time_val = delay_time->u.n.value;
103 full_time_val = full_time->u.n.value;
104 spin_unlock_irqrestore(&speakup_info.spinlock, flags);
105 if (synth->io_ops->synth_out(synth, synth->procspeech))
106 schedule_timeout(
107 msecs_to_jiffies(delay_time_val));
108 else
109 schedule_timeout(
110 msecs_to_jiffies(full_time_val));
111 jiff_max = jiffies + jiffy_delta_val;
113 set_current_state(TASK_RUNNING);
114 spin_lock_irqsave(&speakup_info.spinlock, flags);
115 synth_buffer_getc();
116 spin_unlock_irqrestore(&speakup_info.spinlock, flags);
118 synth->io_ops->synth_out(synth, synth->procspeech);
120 EXPORT_SYMBOL_GPL(spk_do_catch_up);
122 void spk_synth_flush(struct spk_synth *synth)
124 synth->io_ops->flush_buffer();
125 synth->io_ops->synth_out(synth, synth->clear);
127 EXPORT_SYMBOL_GPL(spk_synth_flush);
129 unsigned char spk_synth_get_index(struct spk_synth *synth)
131 return synth->io_ops->synth_in_nowait();
133 EXPORT_SYMBOL_GPL(spk_synth_get_index);
135 int spk_synth_is_alive_nop(struct spk_synth *synth)
137 synth->alive = 1;
138 return 1;
140 EXPORT_SYMBOL_GPL(spk_synth_is_alive_nop);
142 int spk_synth_is_alive_restart(struct spk_synth *synth)
144 if (synth->alive)
145 return 1;
146 if (spk_wait_for_xmitr(synth) > 0) {
147 /* restart */
148 synth->alive = 1;
149 synth_printf("%s", synth->init);
150 return 2; /* reenabled */
152 pr_warn("%s: can't restart synth\n", synth->long_name);
153 return 0;
155 EXPORT_SYMBOL_GPL(spk_synth_is_alive_restart);
157 static void thread_wake_up(struct timer_list *unused)
159 wake_up_interruptible_all(&speakup_event);
162 static DEFINE_TIMER(thread_timer, thread_wake_up);
164 void synth_start(void)
166 struct var_t *trigger_time;
168 if (!synth->alive) {
169 synth_buffer_clear();
170 return;
172 trigger_time = spk_get_var(TRIGGER);
173 if (!timer_pending(&thread_timer))
174 mod_timer(&thread_timer, jiffies +
175 msecs_to_jiffies(trigger_time->u.n.value));
178 void spk_do_flush(void)
180 if (!synth)
181 return;
183 speakup_info.flushing = 1;
184 synth_buffer_clear();
185 if (synth->alive) {
186 if (spk_pitch_shift) {
187 synth_printf("%s", spk_pitch_buff);
188 spk_pitch_shift = 0;
191 wake_up_interruptible_all(&speakup_event);
192 wake_up_process(speakup_task);
195 void synth_write(const char *buf, size_t count)
197 while (count--)
198 synth_buffer_add(*buf++);
199 synth_start();
202 void synth_printf(const char *fmt, ...)
204 va_list args;
205 unsigned char buf[160], *p;
206 int r;
208 va_start(args, fmt);
209 r = vsnprintf(buf, sizeof(buf), fmt, args);
210 va_end(args);
211 if (r > sizeof(buf) - 1)
212 r = sizeof(buf) - 1;
214 p = buf;
215 while (r--)
216 synth_buffer_add(*p++);
217 synth_start();
219 EXPORT_SYMBOL_GPL(synth_printf);
221 void synth_putwc(u16 wc)
223 synth_buffer_add(wc);
225 EXPORT_SYMBOL_GPL(synth_putwc);
227 void synth_putwc_s(u16 wc)
229 synth_buffer_add(wc);
230 synth_start();
232 EXPORT_SYMBOL_GPL(synth_putwc_s);
234 void synth_putws(const u16 *buf)
236 const u16 *p;
238 for (p = buf; *p; p++)
239 synth_buffer_add(*p);
241 EXPORT_SYMBOL_GPL(synth_putws);
243 void synth_putws_s(const u16 *buf)
245 synth_putws(buf);
246 synth_start();
248 EXPORT_SYMBOL_GPL(synth_putws_s);
250 static int index_count;
251 static int sentence_count;
253 void spk_reset_index_count(int sc)
255 static int first = 1;
257 if (first)
258 first = 0;
259 else
260 synth->get_index(synth);
261 index_count = 0;
262 sentence_count = sc;
265 int synth_supports_indexing(void)
267 if (synth->get_index)
268 return 1;
269 return 0;
272 void synth_insert_next_index(int sent_num)
274 int out;
276 if (synth->alive) {
277 if (sent_num == 0) {
278 synth->indexing.currindex++;
279 index_count++;
280 if (synth->indexing.currindex >
281 synth->indexing.highindex)
282 synth->indexing.currindex =
283 synth->indexing.lowindex;
286 out = synth->indexing.currindex * 10 + sent_num;
287 synth_printf(synth->indexing.command, out, out);
291 void spk_get_index_count(int *linecount, int *sentcount)
293 int ind = synth->get_index(synth);
295 if (ind) {
296 sentence_count = ind % 10;
298 if ((ind / 10) <= synth->indexing.currindex)
299 index_count = synth->indexing.currindex - (ind / 10);
300 else
301 index_count = synth->indexing.currindex
302 - synth->indexing.lowindex
303 + synth->indexing.highindex - (ind / 10) + 1;
305 *sentcount = sentence_count;
306 *linecount = index_count;
309 static struct resource synth_res;
311 int synth_request_region(unsigned long start, unsigned long n)
313 struct resource *parent = &ioport_resource;
315 memset(&synth_res, 0, sizeof(synth_res));
316 synth_res.name = synth->name;
317 synth_res.start = start;
318 synth_res.end = start + n - 1;
319 synth_res.flags = IORESOURCE_BUSY;
320 return request_resource(parent, &synth_res);
322 EXPORT_SYMBOL_GPL(synth_request_region);
324 int synth_release_region(unsigned long start, unsigned long n)
326 return release_resource(&synth_res);
328 EXPORT_SYMBOL_GPL(synth_release_region);
330 struct var_t synth_time_vars[] = {
331 { DELAY, .u.n = {NULL, 100, 100, 2000, 0, 0, NULL } },
332 { TRIGGER, .u.n = {NULL, 20, 10, 2000, 0, 0, NULL } },
333 { JIFFY, .u.n = {NULL, 50, 20, 200, 0, 0, NULL } },
334 { FULL, .u.n = {NULL, 400, 200, 60000, 0, 0, NULL } },
335 V_LAST_VAR
338 /* called by: speakup_init() */
339 int synth_init(char *synth_name)
341 int i;
342 int ret = 0;
343 struct spk_synth *synth = NULL;
345 if (!synth_name)
346 return 0;
348 if (strcmp(synth_name, "none") == 0) {
349 mutex_lock(&spk_mutex);
350 synth_release();
351 mutex_unlock(&spk_mutex);
352 return 0;
355 mutex_lock(&spk_mutex);
356 /* First, check if we already have it loaded. */
357 for (i = 0; i < MAXSYNTHS && synths[i]; i++)
358 if (strcmp(synths[i]->name, synth_name) == 0)
359 synth = synths[i];
361 /* If we got one, initialize it now. */
362 if (synth)
363 ret = do_synth_init(synth);
364 else
365 ret = -ENODEV;
366 mutex_unlock(&spk_mutex);
368 return ret;
371 /* called by: synth_add() */
372 static int do_synth_init(struct spk_synth *in_synth)
374 struct var_t *var;
376 synth_release();
377 if (in_synth->checkval != SYNTH_CHECK)
378 return -EINVAL;
379 synth = in_synth;
380 synth->alive = 0;
381 pr_warn("synth probe\n");
382 if (synth->probe(synth) < 0) {
383 pr_warn("%s: device probe failed\n", in_synth->name);
384 synth = NULL;
385 return -ENODEV;
387 synth_time_vars[0].u.n.value =
388 synth_time_vars[0].u.n.default_val = synth->delay;
389 synth_time_vars[1].u.n.value =
390 synth_time_vars[1].u.n.default_val = synth->trigger;
391 synth_time_vars[2].u.n.value =
392 synth_time_vars[2].u.n.default_val = synth->jiffies;
393 synth_time_vars[3].u.n.value =
394 synth_time_vars[3].u.n.default_val = synth->full;
395 synth_printf("%s", synth->init);
396 for (var = synth->vars;
397 (var->var_id >= 0) && (var->var_id < MAXVARS); var++)
398 speakup_register_var(var);
399 if (!spk_quiet_boot)
400 synth_printf("%s found\n", synth->long_name);
401 if (synth->attributes.name &&
402 sysfs_create_group(speakup_kobj, &synth->attributes) < 0)
403 return -ENOMEM;
404 synth_flags = synth->flags;
405 wake_up_interruptible_all(&speakup_event);
406 if (speakup_task)
407 wake_up_process(speakup_task);
408 return 0;
411 void synth_release(void)
413 struct var_t *var;
414 unsigned long flags;
416 if (!synth)
417 return;
418 spin_lock_irqsave(&speakup_info.spinlock, flags);
419 pr_info("releasing synth %s\n", synth->name);
420 synth->alive = 0;
421 del_timer(&thread_timer);
422 spin_unlock_irqrestore(&speakup_info.spinlock, flags);
423 if (synth->attributes.name)
424 sysfs_remove_group(speakup_kobj, &synth->attributes);
425 for (var = synth->vars; var->var_id != MAXVARS; var++)
426 speakup_unregister_var(var->var_id);
427 synth->release();
428 synth = NULL;
431 /* called by: all_driver_init() */
432 int synth_add(struct spk_synth *in_synth)
434 int i;
435 int status = 0;
437 mutex_lock(&spk_mutex);
438 for (i = 0; i < MAXSYNTHS && synths[i]; i++)
439 /* synth_remove() is responsible for rotating the array down */
440 if (in_synth == synths[i]) {
441 mutex_unlock(&spk_mutex);
442 return 0;
444 if (i == MAXSYNTHS) {
445 pr_warn("Error: attempting to add a synth past end of array\n");
446 mutex_unlock(&spk_mutex);
447 return -1;
450 if (in_synth->startup)
451 status = do_synth_init(in_synth);
453 if (!status) {
454 synths[i++] = in_synth;
455 synths[i] = NULL;
458 mutex_unlock(&spk_mutex);
459 return status;
461 EXPORT_SYMBOL_GPL(synth_add);
463 void synth_remove(struct spk_synth *in_synth)
465 int i;
467 mutex_lock(&spk_mutex);
468 if (synth == in_synth)
469 synth_release();
470 for (i = 0; synths[i]; i++) {
471 if (in_synth == synths[i])
472 break;
474 for ( ; synths[i]; i++) /* compress table */
475 synths[i] = synths[i + 1];
476 module_status = 0;
477 mutex_unlock(&spk_mutex);
479 EXPORT_SYMBOL_GPL(synth_remove);
481 short spk_punc_masks[] = { 0, SOME, MOST, PUNC, PUNC | B_SYM };