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>
|
2016-11-21 23:17:52 +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
|
|
|
* specifically written as a driver for the speakup screenreview
|
2010-10-08 02:20:02 +08:00
|
|
|
* s not a general device driver.
|
|
|
|
*/
|
|
|
|
#include "spk_priv.h"
|
|
|
|
#include "speakup.h"
|
|
|
|
|
|
|
|
#define DRV_VERSION "2.11"
|
|
|
|
#define SYNTH_CLEAR 0x18
|
|
|
|
#define PROCSPEECH '\r'
|
|
|
|
|
|
|
|
static void synth_flush(struct spk_synth *synth);
|
|
|
|
|
2022-11-10 05:51:05 +08:00
|
|
|
|
|
|
|
|
|
|
|
enum default_vars_id {
|
|
|
|
CAPS_START_ID = 0, CAPS_STOP_ID,
|
|
|
|
RATE_ID, PITCH_ID,
|
|
|
|
VOL_ID, TONE_ID, PUNCT_ID,
|
|
|
|
DIRECT_ID, V_LAST_VAR_ID,
|
|
|
|
NB_ID
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static struct var_t vars[NB_ID] = {
|
|
|
|
[CAPS_START_ID] = { CAPS_START, .u.s = {"\x05P+" } },
|
|
|
|
[CAPS_STOP_ID] = { CAPS_STOP, .u.s = {"\x05P-" } },
|
|
|
|
[RATE_ID] = { RATE, .u.n = {"\x05R%d", 7, 0, 9, 0, 0, NULL } },
|
|
|
|
[PITCH_ID] = { PITCH, .u.n = {"\x05P%d", 3, 0, 9, 0, 0, NULL } },
|
|
|
|
[VOL_ID] = { VOL, .u.n = {"\x05V%d", 9, 0, 9, 0, 0, NULL } },
|
|
|
|
[TONE_ID] = { TONE, .u.n = {"\x05T%c", 8, 0, 25, 65, 0, NULL } },
|
|
|
|
[PUNCT_ID] = { PUNCT, .u.n = {"\x05M%c", 0, 0, 3, 0, 0, "nsma" } },
|
|
|
|
[DIRECT_ID] = { DIRECT, .u.n = {NULL, 0, 0, 1, 0, 0, NULL } },
|
2010-10-08 02:20:02 +08:00
|
|
|
V_LAST_VAR
|
|
|
|
};
|
|
|
|
|
2016-11-21 23:17:52 +08:00
|
|
|
/* These attributes will appear in /sys/accessibility/speakup/spkout. */
|
|
|
|
|
2010-10-08 02:20:02 +08:00
|
|
|
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 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 punct_attribute =
|
2017-01-28 14:35:01 +08:00
|
|
|
__ATTR(punct, 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 tone_attribute =
|
2017-01-28 14:35:01 +08:00
|
|
|
__ATTR(tone, 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,
|
|
|
|
&pitch_attribute.attr,
|
|
|
|
&punct_attribute.attr,
|
|
|
|
&rate_attribute.attr,
|
|
|
|
&tone_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_spkout = {
|
|
|
|
.name = "spkout",
|
|
|
|
.version = DRV_VERSION,
|
|
|
|
.long_name = "Speakout",
|
|
|
|
.init = "\005W1\005I2\005C3",
|
|
|
|
.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 = spk_do_catch_up,
|
|
|
|
.flush = synth_flush,
|
|
|
|
.is_alive = spk_synth_is_alive_restart,
|
|
|
|
.synth_adjust = NULL,
|
|
|
|
.read_buff_add = NULL,
|
2017-04-30 03:52:58 +08:00
|
|
|
.get_index = spk_synth_get_index,
|
2010-10-08 02:20:02 +08:00
|
|
|
.indexing = {
|
|
|
|
.command = "\x05[%c",
|
|
|
|
.lowindex = 1,
|
|
|
|
.highindex = 5,
|
|
|
|
.currindex = 1,
|
|
|
|
},
|
|
|
|
.attributes = {
|
|
|
|
.attrs = synth_attrs,
|
|
|
|
.name = "spkout",
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
static void synth_flush(struct spk_synth *synth)
|
|
|
|
{
|
2021-01-27 06:21:44 +08:00
|
|
|
synth->io_ops->flush_buffer(synth);
|
|
|
|
synth->io_ops->send_xchar(synth, SYNTH_CLEAR);
|
2010-10-08 02:20:02 +08:00
|
|
|
}
|
|
|
|
|
2017-01-28 14:35:01 +08:00
|
|
|
module_param_named(ser, synth_spkout.ser, int, 0444);
|
2017-09-24 16:49:41 +08:00
|
|
|
module_param_named(dev, synth_spkout.dev_name, charp, 0444);
|
2017-01-28 14:35:01 +08:00
|
|
|
module_param_named(start, synth_spkout.startup, short, 0444);
|
2022-11-10 05:51:05 +08:00
|
|
|
module_param_named(rate, vars[RATE_ID].u.n.default_val, int, 0444);
|
|
|
|
module_param_named(vol, vars[PITCH_ID].u.n.default_val, int, 0444);
|
|
|
|
module_param_named(tone, vars[TONE_ID].u.n.default_val, int, 0444);
|
|
|
|
module_param_named(punct, vars[PUNCT_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:51:05 +08:00
|
|
|
MODULE_PARM_DESC(rate, "Set the rate variable on load.");
|
|
|
|
MODULE_PARM_DESC(vol, "Set the vol variable on load.");
|
|
|
|
MODULE_PARM_DESC(tone, "Set the tone variable on load.");
|
|
|
|
MODULE_PARM_DESC(punct, "Set the punct 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_spkout);
|
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 Speak Out synthesizers");
|
|
|
|
MODULE_LICENSE("GPL");
|
|
|
|
MODULE_VERSION(DRV_VERSION);
|
|
|
|
|