2018-01-11 10:08:40 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2010-10-07 18:20:02 +00:00
|
|
|
/*
|
|
|
|
* originally written by: Kirk Reiser <kirk@braille.uwo.ca>
|
2017-02-12 10:45:58 +00:00
|
|
|
* this version considerably modified by David Borowski, david575@rogers.com
|
2010-10-07 18:20:02 +00:00
|
|
|
*
|
|
|
|
* Copyright (C) 1998-99 Kirk Reiser.
|
|
|
|
* Copyright (C) 2003 David Borowski.
|
|
|
|
*
|
2022-03-29 19:54:01 +00:00
|
|
|
* this code is specifically written as a driver for the speakup screenreview
|
2010-10-07 18:20:02 +00:00
|
|
|
* package and is not a general device driver.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "spk_priv.h"
|
|
|
|
#include "speakup.h"
|
|
|
|
#include "speakup_acnt.h" /* local header file for Accent values */
|
|
|
|
|
|
|
|
#define DRV_VERSION "2.11"
|
|
|
|
#define PROCSPEECH '\r'
|
|
|
|
|
|
|
|
static int synth_probe(struct spk_synth *synth);
|
|
|
|
|
2022-11-09 21:51:08 +00:00
|
|
|
|
|
|
|
enum default_vars_id {
|
|
|
|
CAPS_START_ID = 0, CAPS_STOP_ID,
|
|
|
|
RATE_ID, PITCH_ID,
|
|
|
|
VOL_ID, TONE_ID,
|
|
|
|
DIRECT_ID, V_LAST_VAR_ID,
|
|
|
|
NB_ID
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static struct var_t vars[NB_ID] = {
|
|
|
|
[CAPS_START_ID] = { CAPS_START, .u.s = {"\033P8" } },
|
|
|
|
[CAPS_STOP_ID] = { CAPS_STOP, .u.s = {"\033P5" } },
|
|
|
|
[RATE_ID] = { RATE, .u.n = {"\033R%c", 9, 0, 17, 0, 0, "0123456789abcdefgh" } },
|
|
|
|
[PITCH_ID] = { PITCH, .u.n = {"\033P%d", 5, 0, 9, 0, 0, NULL } },
|
|
|
|
[VOL_ID] = { VOL, .u.n = {"\033A%d", 9, 0, 9, 0, 0, NULL } },
|
|
|
|
[TONE_ID] = { TONE, .u.n = {"\033V%d", 5, 0, 9, 0, 0, NULL } },
|
|
|
|
[DIRECT_ID] = { DIRECT, .u.n = {NULL, 0, 0, 1, 0, 0, NULL } },
|
2010-10-07 18:20:02 +00:00
|
|
|
V_LAST_VAR
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* These attributes will appear in /sys/accessibility/speakup/acntsa.
|
|
|
|
*/
|
|
|
|
static struct kobj_attribute caps_start_attribute =
|
2017-01-28 06:35:01 +00:00
|
|
|
__ATTR(caps_start, 0644, spk_var_show, spk_var_store);
|
2010-10-07 18:20:02 +00:00
|
|
|
static struct kobj_attribute caps_stop_attribute =
|
2017-01-28 06:35:01 +00:00
|
|
|
__ATTR(caps_stop, 0644, spk_var_show, spk_var_store);
|
2010-10-07 18:20:02 +00:00
|
|
|
static struct kobj_attribute pitch_attribute =
|
2017-01-28 06:35:01 +00:00
|
|
|
__ATTR(pitch, 0644, spk_var_show, spk_var_store);
|
2010-10-07 18:20:02 +00:00
|
|
|
static struct kobj_attribute rate_attribute =
|
2017-01-28 06:35:01 +00:00
|
|
|
__ATTR(rate, 0644, spk_var_show, spk_var_store);
|
2010-10-07 18:20:02 +00:00
|
|
|
static struct kobj_attribute tone_attribute =
|
2017-01-28 06:35:01 +00:00
|
|
|
__ATTR(tone, 0644, spk_var_show, spk_var_store);
|
2010-10-07 18:20:02 +00:00
|
|
|
static struct kobj_attribute vol_attribute =
|
2017-01-28 06:35:01 +00:00
|
|
|
__ATTR(vol, 0644, spk_var_show, spk_var_store);
|
2010-10-07 18:20:02 +00:00
|
|
|
|
|
|
|
static struct kobj_attribute delay_time_attribute =
|
2017-01-28 06:35:01 +00:00
|
|
|
__ATTR(delay_time, 0644, spk_var_show, spk_var_store);
|
2010-10-07 18:20:02 +00:00
|
|
|
static struct kobj_attribute direct_attribute =
|
2017-01-28 06:35:01 +00:00
|
|
|
__ATTR(direct, 0644, spk_var_show, spk_var_store);
|
2010-10-07 18:20:02 +00:00
|
|
|
static struct kobj_attribute full_time_attribute =
|
2017-01-28 06:35:01 +00:00
|
|
|
__ATTR(full_time, 0644, spk_var_show, spk_var_store);
|
2010-10-07 18:20:02 +00:00
|
|
|
static struct kobj_attribute jiffy_delta_attribute =
|
2017-01-28 06:35:01 +00:00
|
|
|
__ATTR(jiffy_delta, 0644, spk_var_show, spk_var_store);
|
2010-10-07 18:20:02 +00:00
|
|
|
static struct kobj_attribute trigger_time_attribute =
|
2017-01-28 06:35:01 +00:00
|
|
|
__ATTR(trigger_time, 0644, spk_var_show, spk_var_store);
|
2010-10-07 18:20:02 +00: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,
|
|
|
|
&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_acntsa = {
|
|
|
|
.name = "acntsa",
|
|
|
|
.version = DRV_VERSION,
|
|
|
|
.long_name = "Accent-SA",
|
|
|
|
.init = "\033T2\033=M\033Oi\033N1\n",
|
|
|
|
.procspeech = PROCSPEECH,
|
|
|
|
.clear = SYNTH_CLEAR,
|
|
|
|
.delay = 400,
|
|
|
|
.trigger = 50,
|
|
|
|
.jiffies = 30,
|
|
|
|
.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-25 18:40:02 +00:00
|
|
|
.dev_name = SYNTH_DEFAULT_DEV,
|
2010-10-07 18:20:02 +00:00
|
|
|
.startup = SYNTH_START,
|
|
|
|
.checkval = SYNTH_CHECK,
|
|
|
|
.vars = vars,
|
2017-05-15 17:45:34 +00:00
|
|
|
.io_ops = &spk_ttyio_ops,
|
2010-10-07 18:20:02 +00:00
|
|
|
.probe = synth_probe,
|
2017-05-15 17:45:34 +00:00
|
|
|
.release = spk_ttyio_release,
|
|
|
|
.synth_immediate = spk_ttyio_synth_immediate,
|
2010-10-07 18:20:02 +00:00
|
|
|
.catch_up = spk_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 = "acntsa",
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
static int synth_probe(struct spk_synth *synth)
|
|
|
|
{
|
|
|
|
int failed;
|
|
|
|
|
2017-05-15 17:45:34 +00:00
|
|
|
failed = spk_ttyio_synth_probe(synth);
|
2010-10-07 18:20:02 +00:00
|
|
|
if (failed == 0) {
|
2017-03-16 08:10:17 +00:00
|
|
|
synth->synth_immediate(synth, "\033=R\r");
|
2010-10-07 18:20:02 +00:00
|
|
|
mdelay(100);
|
|
|
|
}
|
|
|
|
synth->alive = !failed;
|
|
|
|
return failed;
|
|
|
|
}
|
|
|
|
|
2017-01-28 06:35:01 +00:00
|
|
|
module_param_named(ser, synth_acntsa.ser, int, 0444);
|
2017-09-10 15:32:17 +00:00
|
|
|
module_param_named(dev, synth_acntsa.dev_name, charp, 0444);
|
2017-01-28 06:35:01 +00:00
|
|
|
module_param_named(start, synth_acntsa.startup, short, 0444);
|
2022-11-09 21:51:08 +00: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(tone, vars[TONE_ID].u.n.default_val, int, 0444);
|
|
|
|
module_param_named(direct, vars[DIRECT_ID].u.n.default_val, int, 0444);
|
2010-10-07 18:20:02 +00: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-25 18:40:02 +00:00
|
|
|
MODULE_PARM_DESC(dev, "Set the device e.g. ttyUSB0, for the synthesizer.");
|
2010-10-07 18:20:02 +00:00
|
|
|
MODULE_PARM_DESC(start, "Start the synthesizer once it is loaded.");
|
2022-11-09 21:51:08 +00: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(tone, "Set the tone variable on load.");
|
|
|
|
MODULE_PARM_DESC(direct, "Set the direct variable on load.");
|
|
|
|
|
2010-10-07 18:20:02 +00:00
|
|
|
|
2015-03-18 17:43:10 +00:00
|
|
|
module_spk_synth(synth_acntsa);
|
2010-10-07 18:20:02 +00:00
|
|
|
|
|
|
|
MODULE_AUTHOR("Kirk Reiser <kirk@braille.uwo.ca>");
|
|
|
|
MODULE_AUTHOR("David Borowski");
|
|
|
|
MODULE_DESCRIPTION("Speakup support for Accent SA synthesizer");
|
|
|
|
MODULE_LICENSE("GPL");
|
|
|
|
MODULE_VERSION(DRV_VERSION);
|
|
|
|
|