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