1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25#include "spk_priv.h"
26#include "speakup.h"
27
28#define DRV_VERSION "2.11"
29#define SYNTH_CLEAR 0x18
30#define PROCSPEECH '\r'
31
32static struct var_t vars[] = {
33 { CAPS_START, .u.s = {"\x05P8" } },
34 { CAPS_STOP, .u.s = {"\x05P5" } },
35 { RATE, .u.n = {"\x05R%d", 5, 0, 9, 0, 0, NULL } },
36 { PITCH, .u.n = {"\x05P%d", 5, 0, 9, 0, 0, NULL } },
37 { VOL, .u.n = {"\x05V%d", 5, 0, 9, 0, 0, NULL } },
38 { TONE, .u.n = {"\x05T%c", 12, 0, 25, 61, 0, NULL } },
39 { DIRECT, .u.n = {NULL, 0, 0, 1, 0, 0, NULL } },
40 V_LAST_VAR
41 };
42
43
44
45
46static struct kobj_attribute caps_start_attribute =
47 __ATTR(caps_start, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
48static struct kobj_attribute caps_stop_attribute =
49 __ATTR(caps_stop, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
50static struct kobj_attribute pitch_attribute =
51 __ATTR(pitch, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
52static struct kobj_attribute rate_attribute =
53 __ATTR(rate, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
54static struct kobj_attribute tone_attribute =
55 __ATTR(tone, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
56static struct kobj_attribute vol_attribute =
57 __ATTR(vol, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
58
59static struct kobj_attribute delay_time_attribute =
60 __ATTR(delay_time, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
61static struct kobj_attribute direct_attribute =
62 __ATTR(direct, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
63static struct kobj_attribute full_time_attribute =
64 __ATTR(full_time, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
65static struct kobj_attribute jiffy_delta_attribute =
66 __ATTR(jiffy_delta, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
67static struct kobj_attribute trigger_time_attribute =
68 __ATTR(trigger_time, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
69
70
71
72
73
74static struct attribute *synth_attrs[] = {
75 &caps_start_attribute.attr,
76 &caps_stop_attribute.attr,
77 &pitch_attribute.attr,
78 &rate_attribute.attr,
79 &tone_attribute.attr,
80 &vol_attribute.attr,
81 &delay_time_attribute.attr,
82 &direct_attribute.attr,
83 &full_time_attribute.attr,
84 &jiffy_delta_attribute.attr,
85 &trigger_time_attribute.attr,
86 NULL,
87};
88
89static struct spk_synth synth_txprt = {
90 .name = "txprt",
91 .version = DRV_VERSION,
92 .long_name = "Transport",
93 .init = "\x05N1",
94 .procspeech = PROCSPEECH,
95 .clear = SYNTH_CLEAR,
96 .delay = 500,
97 .trigger = 50,
98 .jiffies = 50,
99 .full = 40000,
100 .startup = SYNTH_START,
101 .checkval = SYNTH_CHECK,
102 .vars = vars,
103 .probe = spk_serial_synth_probe,
104 .release = spk_serial_release,
105 .synth_immediate = spk_synth_immediate,
106 .catch_up = spk_do_catch_up,
107 .flush = spk_synth_flush,
108 .is_alive = spk_synth_is_alive_restart,
109 .synth_adjust = NULL,
110 .read_buff_add = NULL,
111 .get_index = NULL,
112 .indexing = {
113 .command = NULL,
114 .lowindex = 0,
115 .highindex = 0,
116 .currindex = 0,
117 },
118 .attributes = {
119 .attrs = synth_attrs,
120 .name = "txprt",
121 },
122};
123
124module_param_named(ser, synth_txprt.ser, int, S_IRUGO);
125module_param_named(start, synth_txprt.startup, short, S_IRUGO);
126
127MODULE_PARM_DESC(ser, "Set the serial port for the synthesizer (0-based).");
128MODULE_PARM_DESC(start, "Start the synthesizer once it is loaded.");
129
130module_spk_synth(synth_txprt);
131
132MODULE_AUTHOR("Kirk Reiser <kirk@braille.uwo.ca>");
133MODULE_AUTHOR("David Borowski");
134MODULE_DESCRIPTION("Speakup support for Transport synthesizers");
135MODULE_LICENSE("GPL");
136MODULE_VERSION(DRV_VERSION);
137
138