2 * originally written by: Kirk Reiser <kirk@braille.uwo.ca>
3 * this version considerably modified by David Borowski, david575@rogers.com
5 * Copyright (C) 1998-99 Kirk Reiser.
6 * Copyright (C) 2003 David Borowski.
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 * specificly written as a driver for the speakup screenreview
23 * s not a general device driver.
25 #include <linux/jiffies.h>
26 #include <linux/sched.h>
27 #include <linux/timer.h>
28 #include <linux/kthread.h>
34 #define DRV_VERSION "2.14"
35 #define SYNTH_CLEAR 0x03
36 #define PROCSPEECH 0x0b
37 static unsigned char last_char
;
39 static inline u_char
get_last_char(void)
41 u_char avail
= inb_p(speakup_info
.port_tts
+ UART_LSR
) & UART_LSR_DR
;
43 last_char
= inb_p(speakup_info
.port_tts
+ UART_RX
);
47 static inline bool synth_full(void)
49 return get_last_char() == 0x13;
52 static void do_catch_up(struct spk_synth
*synth
);
53 static void synth_flush(struct spk_synth
*synth
);
57 static struct var_t vars
[] = {
58 { CAPS_START
, .u
.s
= {"[:dv ap 222]" } },
59 { CAPS_STOP
, .u
.s
= {"[:dv ap 100]" } },
60 { RATE
, .u
.n
= {"[:ra %d]", 7, 0, 9, 150, 25, NULL
} },
61 { PITCH
, .u
.n
= {"[:dv ap %d]", 100, 0, 100, 0, 0, NULL
} },
62 { VOL
, .u
.n
= {"[:dv gv %d]", 13, 0, 16, 0, 5, NULL
} },
63 { PUNCT
, .u
.n
= {"[:pu %c]", 0, 0, 2, 0, 0, "nsa" } },
64 { VOICE
, .u
.n
= {"[:n%c]", 0, 0, 9, 0, 0, "phfdburwkv" } },
65 { DIRECT
, .u
.n
= {NULL
, 0, 0, 1, 0, 0, NULL
} },
70 * These attributes will appear in /sys/accessibility/speakup/decext.
72 static struct kobj_attribute caps_start_attribute
=
73 __ATTR(caps_start
, USER_RW
, spk_var_show
, spk_var_store
);
74 static struct kobj_attribute caps_stop_attribute
=
75 __ATTR(caps_stop
, USER_RW
, spk_var_show
, spk_var_store
);
76 static struct kobj_attribute pitch_attribute
=
77 __ATTR(pitch
, USER_RW
, spk_var_show
, spk_var_store
);
78 static struct kobj_attribute punct_attribute
=
79 __ATTR(punct
, USER_RW
, spk_var_show
, spk_var_store
);
80 static struct kobj_attribute rate_attribute
=
81 __ATTR(rate
, USER_RW
, spk_var_show
, spk_var_store
);
82 static struct kobj_attribute voice_attribute
=
83 __ATTR(voice
, USER_RW
, spk_var_show
, spk_var_store
);
84 static struct kobj_attribute vol_attribute
=
85 __ATTR(vol
, USER_RW
, spk_var_show
, spk_var_store
);
87 static struct kobj_attribute delay_time_attribute
=
88 __ATTR(delay_time
, ROOT_W
, spk_var_show
, spk_var_store
);
89 static struct kobj_attribute direct_attribute
=
90 __ATTR(direct
, USER_RW
, spk_var_show
, spk_var_store
);
91 static struct kobj_attribute full_time_attribute
=
92 __ATTR(full_time
, ROOT_W
, spk_var_show
, spk_var_store
);
93 static struct kobj_attribute jiffy_delta_attribute
=
94 __ATTR(jiffy_delta
, ROOT_W
, spk_var_show
, spk_var_store
);
95 static struct kobj_attribute trigger_time_attribute
=
96 __ATTR(trigger_time
, ROOT_W
, spk_var_show
, spk_var_store
);
99 * Create a group of attributes so that we can create and destroy them all
102 static struct attribute
*synth_attrs
[] = {
103 &caps_start_attribute
.attr
,
104 &caps_stop_attribute
.attr
,
105 &pitch_attribute
.attr
,
106 &punct_attribute
.attr
,
107 &rate_attribute
.attr
,
108 &voice_attribute
.attr
,
110 &delay_time_attribute
.attr
,
111 &direct_attribute
.attr
,
112 &full_time_attribute
.attr
,
113 &jiffy_delta_attribute
.attr
,
114 &trigger_time_attribute
.attr
,
115 NULL
, /* need to NULL terminate the list of attributes */
118 static struct spk_synth synth_decext
= {
120 .version
= DRV_VERSION
,
121 .long_name
= "Dectalk External",
122 .init
= "[:pe -380]",
123 .procspeech
= PROCSPEECH
,
124 .clear
= SYNTH_CLEAR
,
130 .startup
= SYNTH_START
,
131 .checkval
= SYNTH_CHECK
,
133 .probe
= serial_synth_probe
,
134 .release
= spk_serial_release
,
135 .synth_immediate
= spk_synth_immediate
,
136 .catch_up
= do_catch_up
,
137 .flush
= synth_flush
,
138 .is_alive
= spk_synth_is_alive_restart
,
139 .synth_adjust
= NULL
,
140 .read_buff_add
= NULL
,
149 .attrs
= synth_attrs
,
154 static void do_catch_up(struct spk_synth
*synth
)
157 static u_char last
= '\0';
159 unsigned long jiff_max
;
160 struct var_t
*jiffy_delta
;
161 struct var_t
*delay_time
;
162 int jiffy_delta_val
= 0;
163 int delay_time_val
= 0;
165 jiffy_delta
= get_var(JIFFY
);
166 delay_time
= get_var(DELAY
);
169 jiffy_delta_val
= jiffy_delta
->u
.n
.value
;
171 jiff_max
= jiffies
+ jiffy_delta_val
;
173 while (!kthread_should_stop()) {
175 if (speakup_info
.flushing
) {
176 speakup_info
.flushing
= 0;
181 if (synth_buffer_empty()) {
185 ch
= synth_buffer_peek();
186 set_current_state(TASK_INTERRUPTIBLE
);
187 delay_time_val
= delay_time
->u
.n
.value
;
191 if (synth_full() || !spk_serial_out(ch
)) {
192 schedule_timeout(msecs_to_jiffies(delay_time_val
));
195 set_current_state(TASK_RUNNING
);
203 else if (ch
<= SPACE
) {
204 if (!in_escape
&& strchr(",.!?;:", last
))
205 spk_serial_out(PROCSPEECH
);
206 if (jiffies
>= jiff_max
) {
208 spk_serial_out(PROCSPEECH
);
210 jiffy_delta_val
= jiffy_delta
->u
.n
.value
;
211 delay_time_val
= delay_time
->u
.n
.value
;
213 schedule_timeout(msecs_to_jiffies
215 jiff_max
= jiffies
+ jiffy_delta_val
;
221 spk_serial_out(PROCSPEECH
);
224 static void synth_flush(struct spk_synth
*synth
)
227 spk_synth_immediate(synth
, "\033P;10z\033\\");
230 module_param_named(ser
, synth_decext
.ser
, int, S_IRUGO
);
231 module_param_named(start
, synth_decext
.startup
, short, S_IRUGO
);
233 MODULE_PARM_DESC(ser
, "Set the serial port for the synthesizer (0-based).");
234 MODULE_PARM_DESC(start
, "Start the synthesizer once it is loaded.");
236 static int __init
decext_init(void)
238 return synth_add(&synth_decext
);
241 static void __exit
decext_exit(void)
243 synth_remove(&synth_decext
);
246 module_init(decext_init
);
247 module_exit(decext_exit
);
248 MODULE_AUTHOR("Kirk Reiser <kirk@braille.uwo.ca>");
249 MODULE_AUTHOR("David Borowski");
250 MODULE_DESCRIPTION("Speakup support for DECtalk External synthesizers");
251 MODULE_LICENSE("GPL");
252 MODULE_VERSION(DRV_VERSION
);