1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/types.h>
3 #include <linux/ctype.h> /* for isdigit() and friends */
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>
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
;
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
),
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
)
59 unsigned long jiff_max
;
60 struct var_t
*delay_time
;
61 struct var_t
*full_time
;
62 struct var_t
*jiffy_delta
;
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
);
84 synth_buffer_skip_nonlatin1();
85 if (synth_buffer_empty()) {
86 spin_unlock_irqrestore(&speakup_info
.spinlock
, flags
);
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
);
94 ch
= synth
->procspeech
;
95 if (!synth
->io_ops
->synth_out(synth
, ch
)) {
96 schedule_timeout(msecs_to_jiffies(full_time_val
));
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
))
107 msecs_to_jiffies(delay_time_val
));
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
);
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
)
140 EXPORT_SYMBOL_GPL(spk_synth_is_alive_nop
);
142 int spk_synth_is_alive_restart(struct spk_synth
*synth
)
146 if (spk_wait_for_xmitr(synth
) > 0) {
149 synth_printf("%s", synth
->init
);
150 return 2; /* reenabled */
152 pr_warn("%s: can't restart synth\n", synth
->long_name
);
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
;
169 synth_buffer_clear();
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)
183 speakup_info
.flushing
= 1;
184 synth_buffer_clear();
186 if (spk_pitch_shift
) {
187 synth_printf("%s", spk_pitch_buff
);
191 wake_up_interruptible_all(&speakup_event
);
192 wake_up_process(speakup_task
);
195 void synth_write(const char *buf
, size_t count
)
198 synth_buffer_add(*buf
++);
202 void synth_printf(const char *fmt
, ...)
205 unsigned char buf
[160], *p
;
209 r
= vsnprintf(buf
, sizeof(buf
), fmt
, args
);
211 if (r
> sizeof(buf
) - 1)
216 synth_buffer_add(*p
++);
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
);
232 EXPORT_SYMBOL_GPL(synth_putwc_s
);
234 void synth_putws(const u16
*buf
)
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
)
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;
260 synth
->get_index(synth
);
265 int synth_supports_indexing(void)
267 if (synth
->get_index
)
272 void synth_insert_next_index(int sent_num
)
278 synth
->indexing
.currindex
++;
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
);
296 sentence_count
= ind
% 10;
298 if ((ind
/ 10) <= synth
->indexing
.currindex
)
299 index_count
= synth
->indexing
.currindex
- (ind
/ 10);
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
} },
338 /* called by: speakup_init() */
339 int synth_init(char *synth_name
)
343 struct spk_synth
*synth
= NULL
;
348 if (strcmp(synth_name
, "none") == 0) {
349 mutex_lock(&spk_mutex
);
351 mutex_unlock(&spk_mutex
);
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)
361 /* If we got one, initialize it now. */
363 ret
= do_synth_init(synth
);
366 mutex_unlock(&spk_mutex
);
371 /* called by: synth_add() */
372 static int do_synth_init(struct spk_synth
*in_synth
)
377 if (in_synth
->checkval
!= SYNTH_CHECK
)
381 pr_warn("synth probe\n");
382 if (synth
->probe(synth
) < 0) {
383 pr_warn("%s: device probe failed\n", in_synth
->name
);
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
);
400 synth_printf("%s found\n", synth
->long_name
);
401 if (synth
->attributes
.name
&&
402 sysfs_create_group(speakup_kobj
, &synth
->attributes
) < 0)
404 synth_flags
= synth
->flags
;
405 wake_up_interruptible_all(&speakup_event
);
407 wake_up_process(speakup_task
);
411 void synth_release(void)
418 spin_lock_irqsave(&speakup_info
.spinlock
, flags
);
419 pr_info("releasing synth %s\n", synth
->name
);
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
);
431 /* called by: all_driver_init() */
432 int synth_add(struct spk_synth
*in_synth
)
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
);
444 if (i
== MAXSYNTHS
) {
445 pr_warn("Error: attempting to add a synth past end of array\n");
446 mutex_unlock(&spk_mutex
);
450 if (in_synth
->startup
)
451 status
= do_synth_init(in_synth
);
454 synths
[i
++] = in_synth
;
458 mutex_unlock(&spk_mutex
);
461 EXPORT_SYMBOL_GPL(synth_add
);
463 void synth_remove(struct spk_synth
*in_synth
)
467 mutex_lock(&spk_mutex
);
468 if (synth
== in_synth
)
470 for (i
= 0; synths
[i
]; i
++) {
471 if (in_synth
== synths
[i
])
474 for ( ; synths
[i
]; i
++) /* compress table */
475 synths
[i
] = synths
[i
+ 1];
477 mutex_unlock(&spk_mutex
);
479 EXPORT_SYMBOL_GPL(synth_remove
);
481 short spk_punc_masks
[] = { 0, SOME
, MOST
, PUNC
, PUNC
| B_SYM
};