speakup_audptr.c 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. /*
  2. * originally written by: Kirk Reiser <kirk@braille.uwo.ca>
  3. * this version considerably modified by David Borowski, david575@rogers.com
  4. *
  5. * Copyright (C) 1998-99 Kirk Reiser.
  6. * Copyright (C) 2003 David Borowski.
  7. *
  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.
  12. *
  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.
  17. *
  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
  21. *
  22. * specificly written as a driver for the speakup screenreview
  23. * s not a general device driver.
  24. */
  25. #include "spk_priv.h"
  26. #include "speakup.h"
  27. #include "serialio.h"
  28. #define DRV_VERSION "2.11"
  29. #define SYNTH_CLEAR 0x18 /* flush synth buffer */
  30. #define PROCSPEECH '\r' /* start synth processing speech char */
  31. static int synth_probe(struct spk_synth *synth);
  32. static void synth_flush(struct spk_synth *synth);
  33. static struct var_t vars[] = {
  34. { CAPS_START, .u.s = {"\x05[f99]" } },
  35. { CAPS_STOP, .u.s = {"\x05[f80]" } },
  36. { RATE, .u.n = {"\x05[r%d]", 10, 0, 20, 100, -10, NULL } },
  37. { PITCH, .u.n = {"\x05[f%d]", 80, 39, 4500, 0, 0, NULL } },
  38. { VOL, .u.n = {"\x05[g%d]", 21, 0, 40, 0, 0, NULL } },
  39. { TONE, .u.n = {"\x05[s%d]", 9, 0, 63, 0, 0, NULL } },
  40. { PUNCT, .u.n = {"\x05[A%c]", 0, 0, 3, 0, 0, "nmsa" } },
  41. { DIRECT, .u.n = {NULL, 0, 0, 1, 0, 0, NULL } },
  42. V_LAST_VAR
  43. };
  44. /*
  45. * These attributes will appear in /sys/accessibility/speakup/audptr.
  46. */
  47. static struct kobj_attribute caps_start_attribute =
  48. __ATTR(caps_start, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
  49. static struct kobj_attribute caps_stop_attribute =
  50. __ATTR(caps_stop, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
  51. static struct kobj_attribute pitch_attribute =
  52. __ATTR(pitch, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
  53. static struct kobj_attribute punct_attribute =
  54. __ATTR(punct, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
  55. static struct kobj_attribute rate_attribute =
  56. __ATTR(rate, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
  57. static struct kobj_attribute tone_attribute =
  58. __ATTR(tone, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
  59. static struct kobj_attribute vol_attribute =
  60. __ATTR(vol, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
  61. static struct kobj_attribute delay_time_attribute =
  62. __ATTR(delay_time, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
  63. static struct kobj_attribute direct_attribute =
  64. __ATTR(direct, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
  65. static struct kobj_attribute full_time_attribute =
  66. __ATTR(full_time, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
  67. static struct kobj_attribute jiffy_delta_attribute =
  68. __ATTR(jiffy_delta, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
  69. static struct kobj_attribute trigger_time_attribute =
  70. __ATTR(trigger_time, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
  71. /*
  72. * Create a group of attributes so that we can create and destroy them all
  73. * at once.
  74. */
  75. static struct attribute *synth_attrs[] = {
  76. &caps_start_attribute.attr,
  77. &caps_stop_attribute.attr,
  78. &pitch_attribute.attr,
  79. &punct_attribute.attr,
  80. &rate_attribute.attr,
  81. &tone_attribute.attr,
  82. &vol_attribute.attr,
  83. &delay_time_attribute.attr,
  84. &direct_attribute.attr,
  85. &full_time_attribute.attr,
  86. &jiffy_delta_attribute.attr,
  87. &trigger_time_attribute.attr,
  88. NULL, /* need to NULL terminate the list of attributes */
  89. };
  90. static struct spk_synth synth_audptr = {
  91. .name = "audptr",
  92. .version = DRV_VERSION,
  93. .long_name = "Audapter",
  94. .init = "\x05[D1]\x05[Ol]",
  95. .procspeech = PROCSPEECH,
  96. .clear = SYNTH_CLEAR,
  97. .delay = 400,
  98. .trigger = 50,
  99. .jiffies = 30,
  100. .full = 18000,
  101. .startup = SYNTH_START,
  102. .checkval = SYNTH_CHECK,
  103. .vars = vars,
  104. .probe = synth_probe,
  105. .release = spk_serial_release,
  106. .synth_immediate = spk_synth_immediate,
  107. .catch_up = spk_do_catch_up,
  108. .flush = synth_flush,
  109. .is_alive = spk_synth_is_alive_restart,
  110. .synth_adjust = NULL,
  111. .read_buff_add = NULL,
  112. .get_index = NULL,
  113. .indexing = {
  114. .command = NULL,
  115. .lowindex = 0,
  116. .highindex = 0,
  117. .currindex = 0,
  118. },
  119. .attributes = {
  120. .attrs = synth_attrs,
  121. .name = "audptr",
  122. },
  123. };
  124. static void synth_flush(struct spk_synth *synth)
  125. {
  126. int timeout = SPK_XMITR_TIMEOUT;
  127. while (spk_serial_tx_busy()) {
  128. if (!--timeout)
  129. break;
  130. udelay(1);
  131. }
  132. outb(SYNTH_CLEAR, speakup_info.port_tts);
  133. spk_serial_out(PROCSPEECH);
  134. }
  135. static void synth_version(struct spk_synth *synth)
  136. {
  137. unsigned char test = 0;
  138. char synth_id[40] = "";
  139. spk_synth_immediate(synth, "\x05[Q]");
  140. synth_id[test] = spk_serial_in();
  141. if (synth_id[test] == 'A') {
  142. do {
  143. /* read version string from synth */
  144. synth_id[++test] = spk_serial_in();
  145. } while (synth_id[test] != '\n' && test < 32);
  146. synth_id[++test] = 0x00;
  147. }
  148. if (synth_id[0] == 'A')
  149. pr_info("%s version: %s", synth->long_name, synth_id);
  150. }
  151. static int synth_probe(struct spk_synth *synth)
  152. {
  153. int failed;
  154. failed = spk_serial_synth_probe(synth);
  155. if (failed == 0)
  156. synth_version(synth);
  157. synth->alive = !failed;
  158. return 0;
  159. }
  160. module_param_named(ser, synth_audptr.ser, int, S_IRUGO);
  161. module_param_named(start, synth_audptr.startup, short, S_IRUGO);
  162. MODULE_PARM_DESC(ser, "Set the serial port for the synthesizer (0-based).");
  163. MODULE_PARM_DESC(start, "Start the synthesizer once it is loaded.");
  164. module_spk_synth(synth_audptr);
  165. MODULE_AUTHOR("Kirk Reiser <kirk@braille.uwo.ca>");
  166. MODULE_AUTHOR("David Borowski");
  167. MODULE_DESCRIPTION("Speakup support for Audapter synthesizer");
  168. MODULE_LICENSE("GPL");
  169. MODULE_VERSION(DRV_VERSION);