Home
last modified time | relevance | path

Searched refs:synth (Results 1 – 25 of 65) sorted by relevance

123

/Linux-v4.19/drivers/staging/speakup/
Dsynth.c22 struct spk_synth *synth; variable
54 static void _spk_do_catch_up(struct spk_synth *synth, int unicode) in _spk_do_catch_up() argument
81 synth->flush(synth); in _spk_do_catch_up()
95 ch = synth->procspeech; in _spk_do_catch_up()
97 ret = synth->io_ops->synth_out_unicode(synth, ch); in _spk_do_catch_up()
99 ret = synth->io_ops->synth_out(synth, ch); in _spk_do_catch_up()
110 if (synth->io_ops->synth_out(synth, synth->procspeech)) in _spk_do_catch_up()
123 synth->io_ops->synth_out(synth, synth->procspeech); in _spk_do_catch_up()
126 void spk_do_catch_up(struct spk_synth *synth) in spk_do_catch_up() argument
128 _spk_do_catch_up(synth, 0); in spk_do_catch_up()
[all …]
Dspeakup_audptr.c19 static int synth_probe(struct spk_synth *synth);
20 static void synth_flush(struct spk_synth *synth);
120 static void synth_flush(struct spk_synth *synth) in synth_flush() argument
122 synth->io_ops->flush_buffer(); in synth_flush()
123 synth->io_ops->send_xchar(SYNTH_CLEAR); in synth_flush()
124 synth->io_ops->synth_out(synth, PROCSPEECH); in synth_flush()
127 static void synth_version(struct spk_synth *synth) in synth_version() argument
132 synth->synth_immediate(synth, "\x05[Q]"); in synth_version()
133 synth_id[test] = synth->io_ops->synth_in(); in synth_version()
137 synth_id[++test] = synth->io_ops->synth_in(); in synth_version()
[all …]
Dspeakup_dectlk.c32 static void do_catch_up(struct spk_synth *synth);
33 static void synth_flush(struct spk_synth *synth);
35 static unsigned char get_index(struct spk_synth *synth);
157 static unsigned char get_index(struct spk_synth *synth) in get_index() argument
193 static void do_catch_up(struct spk_synth *synth) in do_catch_up() argument
231 synth->flush(synth); in do_catch_up()
246 if (synth_full_val || !synth->io_ops->synth_out(synth, ch)) { in do_catch_up()
260 synth->io_ops->synth_out(synth, PROCSPEECH); in do_catch_up()
263 synth->io_ops->synth_out(synth, PROCSPEECH); in do_catch_up()
278 synth->io_ops->synth_out(synth, PROCSPEECH); in do_catch_up()
[all …]
Dspk_priv.h55 int spk_serial_synth_probe(struct spk_synth *synth);
56 int spk_ttyio_synth_probe(struct spk_synth *synth);
57 const char *spk_serial_synth_immediate(struct spk_synth *synth, const char *buff);
58 const char *spk_ttyio_synth_immediate(struct spk_synth *synth, const char *buff);
59 void spk_do_catch_up(struct spk_synth *synth);
60 void spk_do_catch_up_unicode(struct spk_synth *synth);
61 void spk_synth_flush(struct spk_synth *synth);
62 unsigned char spk_synth_get_index(struct spk_synth *synth);
63 int spk_synth_is_alive_nop(struct spk_synth *synth);
64 int spk_synth_is_alive_restart(struct spk_synth *synth);
Dspeakup_decext.c36 static void do_catch_up(struct spk_synth *synth);
37 static void synth_flush(struct spk_synth *synth);
140 static void do_catch_up(struct spk_synth *synth) in do_catch_up() argument
164 synth->flush(synth); in do_catch_up()
178 if (synth_full() || !synth->io_ops->synth_out(synth, ch)) { in do_catch_up()
192 synth->io_ops->synth_out(synth, PROCSPEECH); in do_catch_up()
195 synth->io_ops->synth_out(synth, PROCSPEECH); in do_catch_up()
210 synth->io_ops->synth_out(synth, PROCSPEECH); in do_catch_up()
213 static void synth_flush(struct spk_synth *synth) in synth_flush() argument
216 synth->io_ops->flush_buffer(); in synth_flush()
[all …]
Dthread.c34 (synth && synth->catch_up && synth->alive && in speakup_thread()
50 if (synth && synth->catch_up && synth->alive) { in speakup_thread()
55 synth->catch_up(synth); in speakup_thread()
Dserialio.c120 synth->read_buff_add((u_char)c); in synth_readbuf_handler()
130 if (!synth->read_buff_add) in start_serial_interrupt()
170 int spk_serial_synth_probe(struct spk_synth *synth) in spk_serial_synth_probe() argument
175 if ((synth->ser >= SPK_LO_TTY) && (synth->ser <= SPK_HI_TTY)) { in spk_serial_synth_probe()
176 ser = spk_serial_init(synth->ser); in spk_serial_synth_probe()
186 pr_warn("ttyS%i is an invalid port\n", synth->ser); in spk_serial_synth_probe()
189 pr_info("%s: not found\n", synth->long_name); in spk_serial_synth_probe()
193 synth->long_name, synth->ser, synth->version); in spk_serial_synth_probe()
194 synth->alive = 1; in spk_serial_synth_probe()
204 if (!synth->read_buff_add) in spk_stop_serial_interrupt()
[all …]
Dspeakup_keypc.c26 static int synth_probe(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);
143 static const char *synth_immediate(struct spk_synth *synth, const char *buf) in synth_immediate() argument
164 static void do_catch_up(struct spk_synth *synth) in do_catch_up() argument
190 synth->flush(synth); in do_catch_up()
249 static void synth_flush(struct spk_synth *synth) in synth_flush() argument
254 static int synth_probe(struct spk_synth *synth) in synth_probe() argument
259 pr_info("Probing for %s.\n", synth->long_name); in synth_probe()
[all …]
Dspk_ttyio.c36 static int get_dev_to_use(struct spk_synth *synth, dev_t *dev_no) in get_dev_to_use() argument
39 if (strcmp(synth->dev_name, SYNTH_DEFAULT_DEV) || in get_dev_to_use()
40 synth->ser == SYNTH_DEFAULT_SER) in get_dev_to_use()
41 return tty_dev_name_to_number(synth->dev_name, dev_no); in get_dev_to_use()
43 return ser_to_dev(synth->ser, dev_no); in get_dev_to_use()
138 static int spk_ttyio_initialise_ldisc(struct spk_synth *synth) in spk_ttyio_initialise_ldisc() argument
145 ret = get_dev_to_use(synth, &dev); in spk_ttyio_initialise_ldisc()
334 int spk_ttyio_synth_probe(struct spk_synth *synth) in spk_ttyio_synth_probe() argument
336 int rv = spk_ttyio_initialise_ldisc(synth); in spk_ttyio_synth_probe()
341 synth->alive = 1; in spk_ttyio_synth_probe()
[all …]
Dspeakup_apollo.c25 static void do_catch_up(struct spk_synth *synth);
125 static void do_catch_up(struct spk_synth *synth) in do_catch_up() argument
153 synth->flush(synth); in do_catch_up()
165 if (!synth->io_ops->synth_out(synth, ch)) { in do_catch_up()
166 synth->io_ops->tiocmset(0, UART_MCR_RTS); in do_catch_up()
167 synth->io_ops->tiocmset(UART_MCR_RTS, 0); in do_catch_up()
177 if (synth->io_ops->synth_out(synth, synth->procspeech)) in do_catch_up()
190 synth->io_ops->synth_out(synth, PROCSPEECH); in do_catch_up()
Dspeakup_acntpc.c27 static int synth_probe(struct spk_synth *synth);
29 static const char *synth_immediate(struct spk_synth *synth, const char *buf);
30 static void do_catch_up(struct spk_synth *synth);
31 static void synth_flush(struct spk_synth *synth);
140 static const char *synth_immediate(struct spk_synth *synth, const char *buf) in synth_immediate() argument
162 static void do_catch_up(struct spk_synth *synth) in do_catch_up() argument
189 synth->flush(synth); in do_catch_up()
242 static void synth_flush(struct spk_synth *synth) in synth_flush() argument
247 static int synth_probe(struct spk_synth *synth) in synth_probe() argument
252 pr_info("Probing for %s.\n", synth->long_name); in synth_probe()
[all …]
Dspeakup_ltlk.c19 static int synth_probe(struct spk_synth *synth);
128 static void synth_interrogate(struct spk_synth *synth) in synth_interrogate() argument
133 synth->synth_immediate(synth, "\x18\x01?"); in synth_interrogate()
135 buf[i] = synth->io_ops->synth_in(); in synth_interrogate()
146 pr_info("%s: ROM version: %s\n", synth->long_name, rom_v); in synth_interrogate()
149 static int synth_probe(struct spk_synth *synth) in synth_probe() argument
153 failed = spk_ttyio_synth_probe(synth); in synth_probe()
155 synth_interrogate(synth); in synth_probe()
156 synth->alive = !failed; in synth_probe()
Dspeakup_dtlk.c26 static int synth_probe(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);
181 static void do_catch_up(struct spk_synth *synth) in do_catch_up() argument
202 synth->flush(synth); in do_catch_up()
237 static const char *synth_immediate(struct spk_synth *synth, const char *buf) in synth_immediate() argument
252 static void synth_flush(struct spk_synth *synth) in synth_flush() argument
273 static struct synth_settings *synth_interrogate(struct spk_synth *synth) in synth_interrogate() argument
280 synth_immediate(synth, "\x18\x01?"); in synth_interrogate()
[all …]
Dspeakup_decpc.c127 static int synth_probe(struct spk_synth *synth);
129 static const char *synth_immediate(struct spk_synth *synth, const char *buf);
130 static void do_catch_up(struct spk_synth *synth);
131 static void synth_flush(struct spk_synth *synth);
294 static void synth_flush(struct spk_synth *synth) in synth_flush() argument
359 static void do_catch_up(struct spk_synth *synth) in do_catch_up() argument
382 synth->flush(synth); in do_catch_up()
432 static const char *synth_immediate(struct spk_synth *synth, const char *buf) in synth_immediate() argument
446 static int synth_probe(struct spk_synth *synth) in synth_probe() argument
450 pr_info("Probing for %s.\n", synth->long_name); in synth_probe()
[all …]
Dspk_types.h153 int (*synth_out)(struct spk_synth *synth, const char ch);
154 int (*synth_out_unicode)(struct spk_synth *synth, u16 ch);
184 int (*probe)(struct spk_synth *synth);
186 const char *(*synth_immediate)(struct spk_synth *synth,
188 void (*catch_up)(struct spk_synth *synth);
189 void (*flush)(struct spk_synth *synth);
190 int (*is_alive)(struct spk_synth *synth);
193 unsigned char (*get_index)(struct spk_synth *synth);
Dspeakup_acntsa.c20 static int synth_probe(struct spk_synth *synth);
116 static int synth_probe(struct spk_synth *synth) in synth_probe() argument
120 failed = spk_ttyio_synth_probe(synth); in synth_probe()
122 synth->synth_immediate(synth, "\033=R\r"); in synth_probe()
125 synth->alive = !failed; in synth_probe()
Dspeakup_spkout.c19 static void synth_flush(struct spk_synth *synth);
118 static void synth_flush(struct spk_synth *synth) in synth_flush() argument
120 synth->io_ops->flush_buffer(); in synth_flush()
121 synth->io_ops->send_xchar(SYNTH_CLEAR); in synth_flush()
Dspeakup_soft.c26 static int softsynth_probe(struct spk_synth *synth);
28 static int softsynth_is_alive(struct spk_synth *synth);
29 static unsigned char get_index(struct spk_synth *synth);
338 static unsigned char get_index(struct spk_synth *synth) in get_index() argument
365 static int softsynth_probe(struct spk_synth *synth) in softsynth_probe() argument
402 static int softsynth_is_alive(struct spk_synth *synth) in softsynth_is_alive() argument
/Linux-v4.19/drivers/clk/ti/
Dfapll.c283 struct fapll_synth *synth = to_synth(hw); in ti_fapll_synth_enable() local
284 u32 v = readl_relaxed(synth->fd->base + FAPLL_PWD_OFFSET); in ti_fapll_synth_enable()
286 v &= ~(1 << synth->index); in ti_fapll_synth_enable()
287 writel_relaxed(v, synth->fd->base + FAPLL_PWD_OFFSET); in ti_fapll_synth_enable()
294 struct fapll_synth *synth = to_synth(hw); in ti_fapll_synth_disable() local
295 u32 v = readl_relaxed(synth->fd->base + FAPLL_PWD_OFFSET); in ti_fapll_synth_disable()
297 v |= 1 << synth->index; in ti_fapll_synth_disable()
298 writel_relaxed(v, synth->fd->base + FAPLL_PWD_OFFSET); in ti_fapll_synth_disable()
303 struct fapll_synth *synth = to_synth(hw); in ti_fapll_synth_is_enabled() local
304 u32 v = readl_relaxed(synth->fd->base + FAPLL_PWD_OFFSET); in ti_fapll_synth_is_enabled()
[all …]
/Linux-v4.19/sound/synth/emux/
DMakefile7 snd-emux-synth-objs := emux.o emux_synth.o emux_seq.o emux_nrpn.o \
9 snd-emux-synth-$(CONFIG_SND_PROC_FS) += emux_proc.o
11 snd-emux-synth-y += emux_oss.o
14 obj-$(CONFIG_SND_SYNTH_EMUX) += snd-emux-synth.o
/Linux-v4.19/drivers/clk/spear/
DMakefile6 obj-y += clk.o clk-aux-synth.o clk-frac-synth.o clk-gpt-synth.o clk-vco-pll.o
/Linux-v4.19/sound/drivers/opl3/
DMakefile8 snd-opl3-synth-y := opl3_seq.o opl3_midi.o opl3_drums.o
10 snd-opl3-synth-y += opl3_oss.o
15 obj-$(CONFIG_SND_OPL3_LIB_SEQ) += snd-opl3-synth.o
/Linux-v4.19/sound/drivers/opl4/
DMakefile9 snd-opl4-synth-objs := opl4_seq.o opl4_synth.o yrw801.o
12 obj-$(CONFIG_SND_OPL4_LIB_SEQ) += snd-opl4-synth.o
/Linux-v4.19/sound/pci/emu10k1/
Dvoice.c101 voice->synth = 1; in voice_alloc()
138 pvoice->use = pvoice->pcm = pvoice->synth = pvoice->midi = pvoice->efx = 0; in snd_emu10k1_voice_alloc()
161 pvoice->use = pvoice->pcm = pvoice->synth = pvoice->midi = pvoice->efx = 0; in snd_emu10k1_voice_free()
DMakefile11 snd-emu10k1-synth-objs := emu10k1_synth.o emu10k1_callback.o emu10k1_patch.o
16 obj-$(CONFIG_SND_EMU10K1_SEQ) += snd-emu10k1-synth.o

123