speakup_acntsa.c 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /*
  3. * originally written by: Kirk Reiser <kirk@braille.uwo.ca>
  4. * this version considerably modified by David Borowski, david575@rogers.com
  5. *
  6. * Copyright (C) 1998-99 Kirk Reiser.
  7. * Copyright (C) 2003 David Borowski.
  8. *
  9. * this code is specifically written as a driver for the speakup screenreview
  10. * package and is not a general device driver.
  11. */
  12. #include "spk_priv.h"
  13. #include "speakup.h"
  14. #include "speakup_acnt.h" /* local header file for Accent values */
  15. #define DRV_VERSION "2.11"
  16. #define PROCSPEECH '\r'
  17. static int synth_probe(struct spk_synth *synth);
  18. enum default_vars_id {
  19. CAPS_START_ID = 0, CAPS_STOP_ID,
  20. RATE_ID, PITCH_ID,
  21. VOL_ID, TONE_ID,
  22. DIRECT_ID, V_LAST_VAR_ID,
  23. NB_ID
  24. };
  25. static struct var_t vars[NB_ID] = {
  26. [CAPS_START_ID] = { CAPS_START, .u.s = {"\033P8" } },
  27. [CAPS_STOP_ID] = { CAPS_STOP, .u.s = {"\033P5" } },
  28. [RATE_ID] = { RATE, .u.n = {"\033R%c", 9, 0, 17, 0, 0, "0123456789abcdefgh" } },
  29. [PITCH_ID] = { PITCH, .u.n = {"\033P%d", 5, 0, 9, 0, 0, NULL } },
  30. [VOL_ID] = { VOL, .u.n = {"\033A%d", 9, 0, 9, 0, 0, NULL } },
  31. [TONE_ID] = { TONE, .u.n = {"\033V%d", 5, 0, 9, 0, 0, NULL } },
  32. [DIRECT_ID] = { DIRECT, .u.n = {NULL, 0, 0, 1, 0, 0, NULL } },
  33. V_LAST_VAR
  34. };
  35. /*
  36. * These attributes will appear in /sys/accessibility/speakup/acntsa.
  37. */
  38. static struct kobj_attribute caps_start_attribute =
  39. __ATTR(caps_start, 0644, spk_var_show, spk_var_store);
  40. static struct kobj_attribute caps_stop_attribute =
  41. __ATTR(caps_stop, 0644, spk_var_show, spk_var_store);
  42. static struct kobj_attribute pitch_attribute =
  43. __ATTR(pitch, 0644, spk_var_show, spk_var_store);
  44. static struct kobj_attribute rate_attribute =
  45. __ATTR(rate, 0644, spk_var_show, spk_var_store);
  46. static struct kobj_attribute tone_attribute =
  47. __ATTR(tone, 0644, spk_var_show, spk_var_store);
  48. static struct kobj_attribute vol_attribute =
  49. __ATTR(vol, 0644, spk_var_show, spk_var_store);
  50. static struct kobj_attribute delay_time_attribute =
  51. __ATTR(delay_time, 0644, spk_var_show, spk_var_store);
  52. static struct kobj_attribute direct_attribute =
  53. __ATTR(direct, 0644, spk_var_show, spk_var_store);
  54. static struct kobj_attribute full_time_attribute =
  55. __ATTR(full_time, 0644, spk_var_show, spk_var_store);
  56. static struct kobj_attribute jiffy_delta_attribute =
  57. __ATTR(jiffy_delta, 0644, spk_var_show, spk_var_store);
  58. static struct kobj_attribute trigger_time_attribute =
  59. __ATTR(trigger_time, 0644, spk_var_show, spk_var_store);
  60. /*
  61. * Create a group of attributes so that we can create and destroy them all
  62. * at once.
  63. */
  64. static struct attribute *synth_attrs[] = {
  65. &caps_start_attribute.attr,
  66. &caps_stop_attribute.attr,
  67. &pitch_attribute.attr,
  68. &rate_attribute.attr,
  69. &tone_attribute.attr,
  70. &vol_attribute.attr,
  71. &delay_time_attribute.attr,
  72. &direct_attribute.attr,
  73. &full_time_attribute.attr,
  74. &jiffy_delta_attribute.attr,
  75. &trigger_time_attribute.attr,
  76. NULL, /* need to NULL terminate the list of attributes */
  77. };
  78. static struct spk_synth synth_acntsa = {
  79. .name = "acntsa",
  80. .version = DRV_VERSION,
  81. .long_name = "Accent-SA",
  82. .init = "\033T2\033=M\033Oi\033N1\n",
  83. .procspeech = PROCSPEECH,
  84. .clear = SYNTH_CLEAR,
  85. .delay = 400,
  86. .trigger = 50,
  87. .jiffies = 30,
  88. .full = 40000,
  89. .dev_name = SYNTH_DEFAULT_DEV,
  90. .startup = SYNTH_START,
  91. .checkval = SYNTH_CHECK,
  92. .vars = vars,
  93. .io_ops = &spk_ttyio_ops,
  94. .probe = synth_probe,
  95. .release = spk_ttyio_release,
  96. .synth_immediate = spk_ttyio_synth_immediate,
  97. .catch_up = spk_do_catch_up,
  98. .flush = spk_synth_flush,
  99. .is_alive = spk_synth_is_alive_restart,
  100. .synth_adjust = NULL,
  101. .read_buff_add = NULL,
  102. .get_index = NULL,
  103. .indexing = {
  104. .command = NULL,
  105. .lowindex = 0,
  106. .highindex = 0,
  107. .currindex = 0,
  108. },
  109. .attributes = {
  110. .attrs = synth_attrs,
  111. .name = "acntsa",
  112. },
  113. };
  114. static int synth_probe(struct spk_synth *synth)
  115. {
  116. int failed;
  117. failed = spk_ttyio_synth_probe(synth);
  118. if (failed == 0) {
  119. synth->synth_immediate(synth, "\033=R\r");
  120. mdelay(100);
  121. }
  122. synth->alive = !failed;
  123. return failed;
  124. }
  125. module_param_named(ser, synth_acntsa.ser, int, 0444);
  126. module_param_named(dev, synth_acntsa.dev_name, charp, 0444);
  127. module_param_named(start, synth_acntsa.startup, short, 0444);
  128. module_param_named(rate, vars[RATE_ID].u.n.default_val, int, 0444);
  129. module_param_named(pitch, vars[PITCH_ID].u.n.default_val, int, 0444);
  130. module_param_named(vol, vars[VOL_ID].u.n.default_val, int, 0444);
  131. module_param_named(tone, vars[TONE_ID].u.n.default_val, int, 0444);
  132. module_param_named(direct, vars[DIRECT_ID].u.n.default_val, int, 0444);
  133. MODULE_PARM_DESC(ser, "Set the serial port for the synthesizer (0-based).");
  134. MODULE_PARM_DESC(dev, "Set the device e.g. ttyUSB0, for the synthesizer.");
  135. MODULE_PARM_DESC(start, "Start the synthesizer once it is loaded.");
  136. MODULE_PARM_DESC(rate, "Set the rate variable on load.");
  137. MODULE_PARM_DESC(pitch, "Set the pitch variable on load.");
  138. MODULE_PARM_DESC(vol, "Set the vol variable on load.");
  139. MODULE_PARM_DESC(tone, "Set the tone variable on load.");
  140. MODULE_PARM_DESC(direct, "Set the direct variable on load.");
  141. module_spk_synth(synth_acntsa);
  142. MODULE_AUTHOR("Kirk Reiser <kirk@braille.uwo.ca>");
  143. MODULE_AUTHOR("David Borowski");
  144. MODULE_DESCRIPTION("Speakup support for Accent SA synthesizer");
  145. MODULE_LICENSE("GPL");
  146. MODULE_VERSION(DRV_VERSION);