1 // SPDX-License-Identifier: GPL-2.0+
3 * written by David Borowski
5 * Copyright (C) 2003 David Borowski.
7 * specifically written as a driver for the speakup screenreview
8 * package it's not a general device driver.
9 * This driver is for the Keynote Gold internal synthesizer.
11 #include <linux/jiffies.h>
12 #include <linux/sched.h>
13 #include <linux/timer.h>
14 #include <linux/kthread.h>
15 #include <linux/serial_reg.h>
20 #define DRV_VERSION "2.10"
21 #define SYNTH_IO_EXTENT 0x04
22 #define SWAIT udelay(70)
23 #define PROCSPEECH 0x1f
24 #define SYNTH_CLEAR 0x03
26 static int synth_probe(struct spk_synth
*synth
);
27 static void keynote_release(struct spk_synth
*synth
);
28 static const char *synth_immediate(struct spk_synth
*synth
, const char *buf
);
29 static void do_catch_up(struct spk_synth
*synth
);
30 static void synth_flush(struct spk_synth
*synth
);
32 static int synth_port
;
33 static int port_forced
;
34 static unsigned int synth_portlist
[] = { 0x2a8, 0 };
37 enum default_vars_id
{
38 CAPS_START_ID
= 0, CAPS_STOP_ID
,
40 DIRECT_ID
, V_LAST_VAR_ID
,
45 static struct var_t vars
[NB_ID
] = {
46 [CAPS_START_ID
] = { CAPS_START
, .u
.s
= {"[f130]" } },
47 [CAPS_STOP_ID
] = { CAPS_STOP
, .u
.s
= {"[f90]" } },
48 [RATE_ID
] = { RATE
, .u
.n
= {"\04%c ", 8, 0, 10, 81, -8, NULL
} },
49 [PITCH_ID
] = { PITCH
, .u
.n
= {"[f%d]", 5, 0, 9, 40, 10, NULL
} },
50 [DIRECT_ID
] = { DIRECT
, .u
.n
= {NULL
, 0, 0, 1, 0, 0, NULL
} },
55 * These attributes will appear in /sys/accessibility/speakup/keypc.
57 static struct kobj_attribute caps_start_attribute
=
58 __ATTR(caps_start
, 0644, spk_var_show
, spk_var_store
);
59 static struct kobj_attribute caps_stop_attribute
=
60 __ATTR(caps_stop
, 0644, spk_var_show
, spk_var_store
);
61 static struct kobj_attribute pitch_attribute
=
62 __ATTR(pitch
, 0644, spk_var_show
, spk_var_store
);
63 static struct kobj_attribute rate_attribute
=
64 __ATTR(rate
, 0644, spk_var_show
, spk_var_store
);
66 static struct kobj_attribute delay_time_attribute
=
67 __ATTR(delay_time
, 0644, spk_var_show
, spk_var_store
);
68 static struct kobj_attribute direct_attribute
=
69 __ATTR(direct
, 0644, spk_var_show
, spk_var_store
);
70 static struct kobj_attribute full_time_attribute
=
71 __ATTR(full_time
, 0644, spk_var_show
, spk_var_store
);
72 static struct kobj_attribute jiffy_delta_attribute
=
73 __ATTR(jiffy_delta
, 0644, spk_var_show
, spk_var_store
);
74 static struct kobj_attribute trigger_time_attribute
=
75 __ATTR(trigger_time
, 0644, spk_var_show
, spk_var_store
);
78 * Create a group of attributes so that we can create and destroy them all
81 static struct attribute
*synth_attrs
[] = {
82 &caps_start_attribute
.attr
,
83 &caps_stop_attribute
.attr
,
84 &pitch_attribute
.attr
,
86 &delay_time_attribute
.attr
,
87 &direct_attribute
.attr
,
88 &full_time_attribute
.attr
,
89 &jiffy_delta_attribute
.attr
,
90 &trigger_time_attribute
.attr
,
91 NULL
, /* need to NULL terminate the list of attributes */
94 static struct spk_synth synth_keypc
= {
96 .version
= DRV_VERSION
,
97 .long_name
= "Keynote PC",
98 .init
= "[t][n7,1][n8,0]",
99 .procspeech
= PROCSPEECH
,
100 .clear
= SYNTH_CLEAR
,
105 .startup
= SYNTH_START
,
106 .checkval
= SYNTH_CHECK
,
108 .io_ops
= &spk_serial_io_ops
,
109 .probe
= synth_probe
,
110 .release
= keynote_release
,
111 .synth_immediate
= synth_immediate
,
112 .catch_up
= do_catch_up
,
113 .flush
= synth_flush
,
114 .is_alive
= spk_synth_is_alive_nop
,
115 .synth_adjust
= NULL
,
116 .read_buff_add
= NULL
,
125 .attrs
= synth_attrs
,
130 static inline bool synth_writable(void)
132 return (inb_p(synth_port
+ UART_RX
) & 0x10) != 0;
135 static inline bool synth_full(void)
137 return (inb_p(synth_port
+ UART_RX
) & 0x80) == 0;
140 static char *oops(void)
144 s1
= inb_p(synth_port
);
145 s2
= inb_p(synth_port
+ 1);
146 s3
= inb_p(synth_port
+ 2);
147 s4
= inb_p(synth_port
+ 3);
148 pr_warn("synth timeout %d %d %d %d\n", s1
, s2
, s3
, s4
);
152 static const char *synth_immediate(struct spk_synth
*synth
, const char *buf
)
157 while ((ch
= *buf
)) {
163 while (synth_writable())
166 outb_p(ch
, synth_port
);
173 static void do_catch_up(struct spk_synth
*synth
)
178 unsigned long jiff_max
;
179 struct var_t
*jiffy_delta
;
180 struct var_t
*delay_time
;
181 struct var_t
*full_time
;
186 jiffy_delta
= spk_get_var(JIFFY
);
187 delay_time
= spk_get_var(DELAY
);
188 full_time
= spk_get_var(FULL
);
189 spin_lock_irqsave(&speakup_info
.spinlock
, flags
);
190 jiffy_delta_val
= jiffy_delta
->u
.n
.value
;
191 spin_unlock_irqrestore(&speakup_info
.spinlock
, flags
);
193 jiff_max
= jiffies
+ jiffy_delta_val
;
194 while (!kthread_should_stop()) {
195 spin_lock_irqsave(&speakup_info
.spinlock
, flags
);
196 if (speakup_info
.flushing
) {
197 speakup_info
.flushing
= 0;
198 spin_unlock_irqrestore(&speakup_info
.spinlock
, flags
);
202 synth_buffer_skip_nonlatin1();
203 if (synth_buffer_empty()) {
204 spin_unlock_irqrestore(&speakup_info
.spinlock
, flags
);
207 set_current_state(TASK_INTERRUPTIBLE
);
208 full_time_val
= full_time
->u
.n
.value
;
209 spin_unlock_irqrestore(&speakup_info
.spinlock
, flags
);
211 schedule_timeout(msecs_to_jiffies(full_time_val
));
214 set_current_state(TASK_RUNNING
);
216 while (synth_writable())
223 spin_lock_irqsave(&speakup_info
.spinlock
, flags
);
224 ch
= synth_buffer_getc();
225 spin_unlock_irqrestore(&speakup_info
.spinlock
, flags
);
228 outb_p(ch
, synth_port
);
230 if (time_after_eq(jiffies
, jiff_max
) && (ch
== SPACE
)) {
232 while (synth_writable())
239 outb_p(PROCSPEECH
, synth_port
);
240 spin_lock_irqsave(&speakup_info
.spinlock
, flags
);
241 jiffy_delta_val
= jiffy_delta
->u
.n
.value
;
242 delay_time_val
= delay_time
->u
.n
.value
;
243 spin_unlock_irqrestore(&speakup_info
.spinlock
, flags
);
244 schedule_timeout(msecs_to_jiffies(delay_time_val
));
245 jiff_max
= jiffies
+ jiffy_delta_val
;
249 while (synth_writable())
255 outb_p(PROCSPEECH
, synth_port
);
258 static void synth_flush(struct spk_synth
*synth
)
260 outb_p(SYNTH_CLEAR
, synth_port
);
263 static int synth_probe(struct spk_synth
*synth
)
265 unsigned int port_val
= 0;
268 pr_info("Probing for %s.\n", synth
->long_name
);
270 synth_port
= port_forced
;
271 pr_info("probe forced to %x by kernel command line\n",
273 if (synth_request_region(synth_port
- 1, SYNTH_IO_EXTENT
)) {
274 pr_warn("sorry, port already reserved\n");
277 port_val
= inb(synth_port
);
279 for (i
= 0; synth_portlist
[i
]; i
++) {
280 if (synth_request_region(synth_portlist
[i
],
283 ("request_region: failed with 0x%x, %d\n",
284 synth_portlist
[i
], SYNTH_IO_EXTENT
);
287 port_val
= inb(synth_portlist
[i
]);
288 if (port_val
== 0x80) {
289 synth_port
= synth_portlist
[i
];
294 if (port_val
!= 0x80) {
295 pr_info("%s: not found\n", synth
->long_name
);
296 synth_release_region(synth_port
, SYNTH_IO_EXTENT
);
300 pr_info("%s: %03x-%03x, driver version %s,\n", synth
->long_name
,
301 synth_port
, synth_port
+ SYNTH_IO_EXTENT
- 1,
307 static void keynote_release(struct spk_synth
*synth
)
309 spk_stop_serial_interrupt();
311 synth_release_region(synth_port
, SYNTH_IO_EXTENT
);
315 module_param_hw_named(port
, port_forced
, int, ioport
, 0444);
316 module_param_named(start
, synth_keypc
.startup
, short, 0444);
317 module_param_named(rate
, vars
[RATE_ID
].u
.n
.default_val
, int, 0444);
318 module_param_named(pitch
, vars
[PITCH_ID
].u
.n
.default_val
, int, 0444);
319 module_param_named(direct
, vars
[DIRECT_ID
].u
.n
.default_val
, int, 0444);
321 MODULE_PARM_DESC(port
, "Set the port for the synthesizer (override probing).");
322 MODULE_PARM_DESC(start
, "Start the synthesizer once it is loaded.");
323 MODULE_PARM_DESC(rate
, "Set the rate variable on load.");
324 MODULE_PARM_DESC(pitch
, "Set the pitch variable on load.");
325 MODULE_PARM_DESC(direct
, "Set the direct variable on load.");
329 module_spk_synth(synth_keypc
);
331 MODULE_AUTHOR("David Borowski");
332 MODULE_DESCRIPTION("Speakup support for Keynote Gold PC synthesizers");
333 MODULE_LICENSE("GPL");
334 MODULE_VERSION(DRV_VERSION
);