2018-01-11 18:08:40 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2010-10-08 02:20:02 +08:00
|
|
|
/*
|
|
|
|
* originally written by: Kirk Reiser <kirk@braille.uwo.ca>
|
2017-02-12 18:45:58 +08:00
|
|
|
* this version considerably modified by David Borowski, david575@rogers.com
|
2010-10-08 02:20:02 +08:00
|
|
|
*
|
|
|
|
* Copyright (C) 1998-99 Kirk Reiser.
|
|
|
|
* Copyright (C) 2003 David Borowski.
|
|
|
|
*
|
2022-03-30 03:54:01 +08:00
|
|
|
* this code is specifically written as a driver for the speakup screenreview
|
2010-10-08 02:20:02 +08:00
|
|
|
* package and is not a general device driver.
|
|
|
|
*/
|
|
|
|
#include <linux/jiffies.h>
|
|
|
|
#include <linux/sched.h>
|
|
|
|
#include <linux/timer.h>
|
|
|
|
#include <linux/kthread.h>
|
2017-05-16 01:45:36 +08:00
|
|
|
#include <linux/serial_reg.h> /* for UART_MCR* constants */
|
2010-10-08 02:20:02 +08:00
|
|
|
|
|
|
|
#include "spk_priv.h"
|
|
|
|
#include "speakup.h"
|
|
|
|
|
|
|
|
#define DRV_VERSION "2.21"
|
|
|
|
#define SYNTH_CLEAR 0x18
|
|
|
|
#define PROCSPEECH '\r'
|
|
|
|
|
|
|
|
static void do_catch_up(struct spk_synth *synth);
|
|
|
|
|
2022-11-10 05:50:55 +08:00
|
|
|
|
|
|
|
|
|
|
|
enum default_vars_id {
|
|
|
|
CAPS_START_ID = 0, CAPS_STOP_ID,
|
|
|
|
RATE_ID, PITCH_ID,
|
|
|
|
VOL_ID, VOICE_ID, LANG_ID,
|
|
|
|
DIRECT_ID, V_LAST_VAR_ID,
|
|
|
|
NB_ID
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static struct var_t vars[NB_ID] = {
|
|
|
|
[CAPS_START_ID] = { CAPS_START, .u.s = {"cap, " } },
|
|
|
|
[CAPS_STOP_ID] = { CAPS_STOP, .u.s = {"" } },
|
|
|
|
[RATE_ID] = { RATE, .u.n = {"@W%d", 6, 1, 9, 0, 0, NULL } },
|
|
|
|
[PITCH_ID] = { PITCH, .u.n = {"@F%x", 10, 0, 15, 0, 0, NULL } },
|
|
|
|
[VOL_ID] = { VOL, .u.n = {"@A%x", 10, 0, 15, 0, 0, NULL } },
|
|
|
|
[VOICE_ID] = { VOICE, .u.n = {"@V%d", 1, 1, 6, 0, 0, NULL } },
|
|
|
|
[LANG_ID] = { LANG, .u.n = {"@=%d,", 1, 1, 4, 0, 0, NULL } },
|
|
|
|
[DIRECT_ID] = { DIRECT, .u.n = {NULL, 0, 0, 1, 0, 0, NULL } },
|
2010-10-08 02:20:02 +08:00
|
|
|
V_LAST_VAR
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* These attributes will appear in /sys/accessibility/speakup/apollo.
|
|
|
|
*/
|
|
|
|
static struct kobj_attribute caps_start_attribute =
|
2017-01-28 14:35:01 +08:00
|
|
|
__ATTR(caps_start, 0644, spk_var_show, spk_var_store);
|
2010-10-08 02:20:02 +08:00
|
|
|
static struct kobj_attribute caps_stop_attribute =
|
2017-01-28 14:35:01 +08:00
|
|
|
__ATTR(caps_stop, 0644, spk_var_show, spk_var_store);
|
2010-10-08 02:20:02 +08:00
|
|
|
static struct kobj_attribute lang_attribute =
|
2017-01-28 14:35:01 +08:00
|
|
|
__ATTR(lang, 0644, spk_var_show, spk_var_store);
|
2010-10-08 02:20:02 +08:00
|
|
|
static struct kobj_attribute pitch_attribute =
|
2017-01-28 14:35:01 +08:00
|
|
|
__ATTR(pitch, 0644, spk_var_show, spk_var_store);
|
2010-10-08 02:20:02 +08:00
|
|
|
static struct kobj_attribute rate_attribute =
|
2017-01-28 14:35:01 +08:00
|
|
|
__ATTR(rate, 0644, spk_var_show, spk_var_store);
|
2010-10-08 02:20:02 +08:00
|
|
|
static struct kobj_attribute voice_attribute =
|
2017-01-28 14:35:01 +08:00
|
|
|
__ATTR(voice, 0644, spk_var_show, spk_var_store);
|
2010-10-08 02:20:02 +08:00
|
|
|
static struct kobj_attribute vol_attribute =
|
2017-01-28 14:35:01 +08:00
|
|
|
__ATTR(vol, 0644, spk_var_show, spk_var_store);
|
2010-10-08 02:20:02 +08:00
|
|
|
|
|
|
|
static struct kobj_attribute delay_time_attribute =
|
2017-01-28 14:35:01 +08:00
|
|
|
__ATTR(delay_time, 0644, spk_var_show, spk_var_store);
|
2010-10-08 02:20:02 +08:00
|
|
|
static struct kobj_attribute direct_attribute =
|
2017-01-28 14:35:01 +08:00
|
|
|
__ATTR(direct, 0644, spk_var_show, spk_var_store);
|
2010-10-08 02:20:02 +08:00
|
|
|
static struct kobj_attribute full_time_attribute =
|
2017-01-28 14:35:01 +08:00
|
|
|
__ATTR(full_time, 0644, spk_var_show, spk_var_store);
|
2010-10-08 02:20:02 +08:00
|
|
|
static struct kobj_attribute jiffy_delta_attribute =
|
2017-01-28 14:35:01 +08:00
|
|
|
__ATTR(jiffy_delta, 0644, spk_var_show, spk_var_store);
|
2010-10-08 02:20:02 +08:00
|
|
|
static struct kobj_attribute trigger_time_attribute =
|
2017-01-28 14:35:01 +08:00
|
|
|
__ATTR(trigger_time, 0644, spk_var_show, spk_var_store);
|
2010-10-08 02:20:02 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Create a group of attributes so that we can create and destroy them all
|
|
|
|
* at once.
|
|
|
|
*/
|
|
|
|
static struct attribute *synth_attrs[] = {
|
|
|
|
&caps_start_attribute.attr,
|
|
|
|
&caps_stop_attribute.attr,
|
|
|
|
&lang_attribute.attr,
|
|
|
|
&pitch_attribute.attr,
|
|
|
|
&rate_attribute.attr,
|
|
|
|
&voice_attribute.attr,
|
|
|
|
&vol_attribute.attr,
|
|
|
|
&delay_time_attribute.attr,
|
|
|
|
&direct_attribute.attr,
|
|
|
|
&full_time_attribute.attr,
|
|
|
|
&jiffy_delta_attribute.attr,
|
|
|
|
&trigger_time_attribute.attr,
|
|
|
|
NULL, /* need to NULL terminate the list of attributes */
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct spk_synth synth_apollo = {
|
|
|
|
.name = "apollo",
|
|
|
|
.version = DRV_VERSION,
|
|
|
|
.long_name = "Apollo",
|
|
|
|
.init = "@R3@D0@K1\r",
|
|
|
|
.procspeech = PROCSPEECH,
|
|
|
|
.clear = SYNTH_CLEAR,
|
|
|
|
.delay = 500,
|
|
|
|
.trigger = 50,
|
|
|
|
.jiffies = 50,
|
|
|
|
.full = 40000,
|
staging: speakup: make ttyio synths use device name
This patch introduces new module parameter, dev, which takes a string
representing the device that the external synth is connected to, e.g.
ttyS0, ttyUSB0 etc. This is then used to communicate with the synth.
That way, speakup can support more than ttyS*. As of this patch, it
only supports ttyS*, ttyUSB* and selected synths for lp*. dev parameter
is only available for tty-migrated synths.
Users will either use dev or ser as both serve same purpose. This patch
maintains backward compatility by allowing ser to be specified. When
both are specified, whichever is non-default, i.e. not ttyS0, is used.
If both are non-default then dev is used.
Signed-off-by: Okash Khawaja <okash.khawaja@gmail.com>
Reviewed-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2017-06-26 02:40:02 +08:00
|
|
|
.dev_name = SYNTH_DEFAULT_DEV,
|
2010-10-08 02:20:02 +08:00
|
|
|
.startup = SYNTH_START,
|
|
|
|
.checkval = SYNTH_CHECK,
|
|
|
|
.vars = vars,
|
2017-05-16 01:45:36 +08:00
|
|
|
.io_ops = &spk_ttyio_ops,
|
|
|
|
.probe = spk_ttyio_synth_probe,
|
|
|
|
.release = spk_ttyio_release,
|
|
|
|
.synth_immediate = spk_ttyio_synth_immediate,
|
2010-10-08 02:20:02 +08:00
|
|
|
.catch_up = do_catch_up,
|
|
|
|
.flush = spk_synth_flush,
|
|
|
|
.is_alive = spk_synth_is_alive_restart,
|
|
|
|
.synth_adjust = NULL,
|
|
|
|
.read_buff_add = NULL,
|
|
|
|
.get_index = NULL,
|
|
|
|
.indexing = {
|
|
|
|
.command = NULL,
|
|
|
|
.lowindex = 0,
|
|
|
|
.highindex = 0,
|
|
|
|
.currindex = 0,
|
|
|
|
},
|
|
|
|
.attributes = {
|
|
|
|
.attrs = synth_attrs,
|
|
|
|
.name = "apollo",
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
static void do_catch_up(struct spk_synth *synth)
|
|
|
|
{
|
|
|
|
u_char ch;
|
|
|
|
unsigned long flags;
|
|
|
|
unsigned long jiff_max;
|
|
|
|
struct var_t *jiffy_delta;
|
|
|
|
struct var_t *delay_time;
|
|
|
|
struct var_t *full_time;
|
|
|
|
int full_time_val = 0;
|
|
|
|
int delay_time_val = 0;
|
|
|
|
int jiffy_delta_val = 0;
|
|
|
|
|
2013-01-02 09:37:40 +08:00
|
|
|
jiffy_delta = spk_get_var(JIFFY);
|
|
|
|
delay_time = spk_get_var(DELAY);
|
|
|
|
full_time = spk_get_var(FULL);
|
2013-05-13 13:03:00 +08:00
|
|
|
spin_lock_irqsave(&speakup_info.spinlock, flags);
|
2010-10-08 02:20:02 +08:00
|
|
|
jiffy_delta_val = jiffy_delta->u.n.value;
|
2013-05-13 13:03:00 +08:00
|
|
|
spin_unlock_irqrestore(&speakup_info.spinlock, flags);
|
2010-10-08 02:20:02 +08:00
|
|
|
jiff_max = jiffies + jiffy_delta_val;
|
|
|
|
|
|
|
|
while (!kthread_should_stop()) {
|
2013-05-13 13:03:00 +08:00
|
|
|
spin_lock_irqsave(&speakup_info.spinlock, flags);
|
2010-10-08 02:20:02 +08:00
|
|
|
jiffy_delta_val = jiffy_delta->u.n.value;
|
|
|
|
full_time_val = full_time->u.n.value;
|
|
|
|
delay_time_val = delay_time->u.n.value;
|
|
|
|
if (speakup_info.flushing) {
|
|
|
|
speakup_info.flushing = 0;
|
2013-05-13 13:03:00 +08:00
|
|
|
spin_unlock_irqrestore(&speakup_info.spinlock, flags);
|
2010-10-08 02:20:02 +08:00
|
|
|
synth->flush(synth);
|
|
|
|
continue;
|
|
|
|
}
|
2017-03-04 22:01:55 +08:00
|
|
|
synth_buffer_skip_nonlatin1();
|
2010-10-08 02:20:02 +08:00
|
|
|
if (synth_buffer_empty()) {
|
2013-05-13 13:03:00 +08:00
|
|
|
spin_unlock_irqrestore(&speakup_info.spinlock, flags);
|
2010-10-08 02:20:02 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
ch = synth_buffer_peek();
|
|
|
|
set_current_state(TASK_INTERRUPTIBLE);
|
|
|
|
full_time_val = full_time->u.n.value;
|
2013-05-13 13:03:00 +08:00
|
|
|
spin_unlock_irqrestore(&speakup_info.spinlock, flags);
|
2017-03-14 21:41:53 +08:00
|
|
|
if (!synth->io_ops->synth_out(synth, ch)) {
|
2021-01-27 06:21:44 +08:00
|
|
|
synth->io_ops->tiocmset(synth, 0, UART_MCR_RTS);
|
|
|
|
synth->io_ops->tiocmset(synth, UART_MCR_RTS, 0);
|
2010-10-08 02:20:02 +08:00
|
|
|
schedule_timeout(msecs_to_jiffies(full_time_val));
|
|
|
|
continue;
|
|
|
|
}
|
2013-10-19 11:30:59 +08:00
|
|
|
if (time_after_eq(jiffies, jiff_max) && (ch == SPACE)) {
|
2013-05-13 13:03:00 +08:00
|
|
|
spin_lock_irqsave(&speakup_info.spinlock, flags);
|
2010-10-08 02:20:02 +08:00
|
|
|
jiffy_delta_val = jiffy_delta->u.n.value;
|
|
|
|
full_time_val = full_time->u.n.value;
|
|
|
|
delay_time_val = delay_time->u.n.value;
|
2013-05-13 13:03:00 +08:00
|
|
|
spin_unlock_irqrestore(&speakup_info.spinlock, flags);
|
2017-03-14 21:41:53 +08:00
|
|
|
if (synth->io_ops->synth_out(synth, synth->procspeech))
|
2010-10-15 08:23:48 +08:00
|
|
|
schedule_timeout(msecs_to_jiffies
|
|
|
|
(delay_time_val));
|
2010-10-08 02:20:02 +08:00
|
|
|
else
|
2010-10-15 08:23:48 +08:00
|
|
|
schedule_timeout(msecs_to_jiffies
|
|
|
|
(full_time_val));
|
2010-10-08 02:20:02 +08:00
|
|
|
jiff_max = jiffies + jiffy_delta_val;
|
|
|
|
}
|
|
|
|
set_current_state(TASK_RUNNING);
|
2013-05-13 13:03:00 +08:00
|
|
|
spin_lock_irqsave(&speakup_info.spinlock, flags);
|
2010-10-08 02:20:02 +08:00
|
|
|
synth_buffer_getc();
|
2013-05-13 13:03:00 +08:00
|
|
|
spin_unlock_irqrestore(&speakup_info.spinlock, flags);
|
2010-10-08 02:20:02 +08:00
|
|
|
}
|
2017-03-14 21:41:53 +08:00
|
|
|
synth->io_ops->synth_out(synth, PROCSPEECH);
|
2010-10-08 02:20:02 +08:00
|
|
|
}
|
|
|
|
|
2017-01-28 14:35:01 +08:00
|
|
|
module_param_named(ser, synth_apollo.ser, int, 0444);
|
2017-09-24 16:49:41 +08:00
|
|
|
module_param_named(dev, synth_apollo.dev_name, charp, 0444);
|
2017-01-28 14:35:01 +08:00
|
|
|
module_param_named(start, synth_apollo.startup, short, 0444);
|
2022-11-10 05:50:55 +08:00
|
|
|
module_param_named(rate, vars[RATE_ID].u.n.default_val, int, 0444);
|
|
|
|
module_param_named(pitch, vars[PITCH_ID].u.n.default_val, int, 0444);
|
|
|
|
module_param_named(vol, vars[VOL_ID].u.n.default_val, int, 0444);
|
|
|
|
module_param_named(voice, vars[VOICE_ID].u.n.default_val, int, 0444);
|
|
|
|
module_param_named(lang, vars[LANG_ID].u.n.default_val, int, 0444);
|
|
|
|
module_param_named(direct, vars[DIRECT_ID].u.n.default_val, int, 0444);
|
|
|
|
|
2010-10-08 02:20:02 +08:00
|
|
|
|
|
|
|
MODULE_PARM_DESC(ser, "Set the serial port for the synthesizer (0-based).");
|
staging: speakup: make ttyio synths use device name
This patch introduces new module parameter, dev, which takes a string
representing the device that the external synth is connected to, e.g.
ttyS0, ttyUSB0 etc. This is then used to communicate with the synth.
That way, speakup can support more than ttyS*. As of this patch, it
only supports ttyS*, ttyUSB* and selected synths for lp*. dev parameter
is only available for tty-migrated synths.
Users will either use dev or ser as both serve same purpose. This patch
maintains backward compatility by allowing ser to be specified. When
both are specified, whichever is non-default, i.e. not ttyS0, is used.
If both are non-default then dev is used.
Signed-off-by: Okash Khawaja <okash.khawaja@gmail.com>
Reviewed-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2017-06-26 02:40:02 +08:00
|
|
|
MODULE_PARM_DESC(dev, "Set the device e.g. ttyUSB0, for the synthesizer.");
|
2010-10-08 02:20:02 +08:00
|
|
|
MODULE_PARM_DESC(start, "Start the synthesizer once it is loaded.");
|
2022-11-10 05:50:55 +08:00
|
|
|
MODULE_PARM_DESC(rate, "Set the rate variable on load.");
|
|
|
|
MODULE_PARM_DESC(pitch, "Set the pitch variable on load.");
|
|
|
|
MODULE_PARM_DESC(vol, "Set the vol variable on load.");
|
|
|
|
MODULE_PARM_DESC(voice, "Set the voice variable on load.");
|
|
|
|
MODULE_PARM_DESC(lang, "Set the lang variable on load.");
|
|
|
|
MODULE_PARM_DESC(direct, "Set the direct variable on load.");
|
|
|
|
|
|
|
|
|
2010-10-08 02:20:02 +08:00
|
|
|
|
2015-03-19 01:43:10 +08:00
|
|
|
module_spk_synth(synth_apollo);
|
2010-10-08 02:20:02 +08:00
|
|
|
|
|
|
|
MODULE_AUTHOR("Kirk Reiser <kirk@braille.uwo.ca>");
|
|
|
|
MODULE_AUTHOR("David Borowski");
|
|
|
|
MODULE_DESCRIPTION("Speakup support for Apollo II synthesizer");
|
|
|
|
MODULE_LICENSE("GPL");
|
|
|
|
MODULE_VERSION(DRV_VERSION);
|
|
|
|
|