blob: f66811269475a6864a64062ce93bf6191ef103ae [file] [log] [blame]
William Hubbsc6e3fd22010-10-07 13:20:02 -05001/*
2 * originally written by: Kirk Reiser <kirk@braille.uwo.ca>
3 * this version considerably modified by David Borowski, david575@rogers.com
4 * eventually modified by Samuel Thibault <samuel.thibault@ens-lyon.org>
5 *
6 * Copyright (C) 1998-99 Kirk Reiser.
7 * Copyright (C) 2003 David Borowski.
8 * Copyright (C) 2007 Samuel Thibault.
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 *
24 * specificly written as a driver for the speakup screenreview
25 * s not a general device driver.
26 */
27#include "spk_priv.h"
28#include "speakup.h"
29
30#define PROCSPEECH '\n'
31#define DRV_VERSION "2.11"
32#define SYNTH_CLEAR '!'
33
34static struct var_t vars[] = {
Christopher Brannon9d096af2010-10-14 19:23:54 -050035 { CAPS_START, .u.s = {"CAPS_START\n" } },
36 { CAPS_STOP, .u.s = {"CAPS_STOP\n" } },
37 { RATE, .u.n = {"RATE %d\n", 8, 1, 16, 0, 0, NULL } },
38 { PITCH, .u.n = {"PITCH %d\n", 8, 0, 16, 0, 0, NULL } },
39 { VOL, .u.n = {"VOL %d\n", 8, 0, 16, 0, 0, NULL } },
40 { TONE, .u.n = {"TONE %d\n", 8, 0, 16, 0, 0, NULL } },
41 { DIRECT, .u.n = {NULL, 0, 0, 1, 0, 0, NULL } },
William Hubbsc6e3fd22010-10-07 13:20:02 -050042 V_LAST_VAR
43};
44
45/*
46 * These attributes will appear in /sys/accessibility/speakup/dummy.
47 */
48static struct kobj_attribute caps_start_attribute =
Rusty Russelld901aaa2014-04-24 13:57:49 +093049 __ATTR(caps_start, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
William Hubbsc6e3fd22010-10-07 13:20:02 -050050static struct kobj_attribute caps_stop_attribute =
Rusty Russelld901aaa2014-04-24 13:57:49 +093051 __ATTR(caps_stop, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
William Hubbsc6e3fd22010-10-07 13:20:02 -050052static struct kobj_attribute pitch_attribute =
Rusty Russelld901aaa2014-04-24 13:57:49 +093053 __ATTR(pitch, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
William Hubbsc6e3fd22010-10-07 13:20:02 -050054static struct kobj_attribute rate_attribute =
Rusty Russelld901aaa2014-04-24 13:57:49 +093055 __ATTR(rate, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
William Hubbsc6e3fd22010-10-07 13:20:02 -050056static struct kobj_attribute tone_attribute =
Rusty Russelld901aaa2014-04-24 13:57:49 +093057 __ATTR(tone, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
William Hubbsc6e3fd22010-10-07 13:20:02 -050058static struct kobj_attribute vol_attribute =
Rusty Russelld901aaa2014-04-24 13:57:49 +093059 __ATTR(vol, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
William Hubbsc6e3fd22010-10-07 13:20:02 -050060
61static struct kobj_attribute delay_time_attribute =
Rusty Russell22c9bca2014-04-01 13:30:05 +103062 __ATTR(delay_time, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
William Hubbsc6e3fd22010-10-07 13:20:02 -050063static struct kobj_attribute direct_attribute =
Rusty Russelld901aaa2014-04-24 13:57:49 +093064 __ATTR(direct, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
William Hubbsc6e3fd22010-10-07 13:20:02 -050065static struct kobj_attribute full_time_attribute =
Rusty Russell22c9bca2014-04-01 13:30:05 +103066 __ATTR(full_time, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
William Hubbsc6e3fd22010-10-07 13:20:02 -050067static struct kobj_attribute jiffy_delta_attribute =
Rusty Russell22c9bca2014-04-01 13:30:05 +103068 __ATTR(jiffy_delta, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
William Hubbsc6e3fd22010-10-07 13:20:02 -050069static struct kobj_attribute trigger_time_attribute =
Rusty Russell22c9bca2014-04-01 13:30:05 +103070 __ATTR(trigger_time, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
William Hubbsc6e3fd22010-10-07 13:20:02 -050071
72/*
73 * Create a group of attributes so that we can create and destroy them all
74 * at once.
75 */
76static struct attribute *synth_attrs[] = {
77 &caps_start_attribute.attr,
78 &caps_stop_attribute.attr,
79 &pitch_attribute.attr,
80 &rate_attribute.attr,
81 &tone_attribute.attr,
82 &vol_attribute.attr,
83 &delay_time_attribute.attr,
84 &direct_attribute.attr,
85 &full_time_attribute.attr,
86 &jiffy_delta_attribute.attr,
87 &trigger_time_attribute.attr,
88 NULL, /* need to NULL terminate the list of attributes */
89};
90
91static struct spk_synth synth_dummy = {
92 .name = "dummy",
93 .version = DRV_VERSION,
94 .long_name = "Dummy",
95 .init = "Speakup\n",
96 .procspeech = PROCSPEECH,
97 .clear = SYNTH_CLEAR,
98 .delay = 500,
99 .trigger = 50,
100 .jiffies = 50,
101 .full = 40000,
102 .startup = SYNTH_START,
103 .checkval = SYNTH_CHECK,
104 .vars = vars,
Samuel Thibaultca2beaf2013-01-02 02:37:40 +0100105 .probe = spk_serial_synth_probe,
William Hubbsc6e3fd22010-10-07 13:20:02 -0500106 .release = spk_serial_release,
107 .synth_immediate = spk_synth_immediate,
108 .catch_up = spk_do_catch_up,
109 .flush = spk_synth_flush,
110 .is_alive = spk_synth_is_alive_restart,
111 .synth_adjust = NULL,
112 .read_buff_add = NULL,
113 .get_index = NULL,
114 .indexing = {
115 .command = NULL,
116 .lowindex = 0,
117 .highindex = 0,
118 .currindex = 0,
119 },
120 .attributes = {
121 .attrs = synth_attrs,
122 .name = "dummy",
123 },
124};
125
126module_param_named(ser, synth_dummy.ser, int, S_IRUGO);
127module_param_named(start, synth_dummy.startup, short, S_IRUGO);
128
129MODULE_PARM_DESC(ser, "Set the serial port for the synthesizer (0-based).");
130MODULE_PARM_DESC(start, "Start the synthesizer once it is loaded.");
131
Vaishali Thakkarae89fac2015-03-18 23:13:10 +0530132module_spk_synth(synth_dummy);
William Hubbsc6e3fd22010-10-07 13:20:02 -0500133
William Hubbsc6e3fd22010-10-07 13:20:02 -0500134MODULE_AUTHOR("Samuel Thibault <samuel.thibault@ens-lyon.org>");
135MODULE_DESCRIPTION("Speakup support for text console");
136MODULE_LICENSE("GPL");
137MODULE_VERSION(DRV_VERSION);
138