speakup_bns.c 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  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. * this code is specificly written as a driver for the speakup screenreview
  23. * package and is not a general device driver.
  24. */
  25. #include "spk_priv.h"
  26. #include "speakup.h"
  27. #define DRV_VERSION "2.11"
  28. #define SYNTH_CLEAR 0x18
  29. #define PROCSPEECH '\r'
  30. static struct var_t vars[] = {
  31. { CAPS_START, .u.s = {"\x05\x31\x32P" } },
  32. { CAPS_STOP, .u.s = {"\x05\x38P" } },
  33. { RATE, .u.n = {"\x05%dE", 8, 1, 16, 0, 0, NULL } },
  34. { PITCH, .u.n = {"\x05%dP", 8, 0, 16, 0, 0, NULL } },
  35. { VOL, .u.n = {"\x05%dV", 8, 0, 16, 0, 0, NULL } },
  36. { TONE, .u.n = {"\x05%dT", 8, 0, 16, 0, 0, NULL } },
  37. { DIRECT, .u.n = {NULL, 0, 0, 1, 0, 0, NULL } },
  38. V_LAST_VAR
  39. };
  40. /*
  41. * These attributes will appear in /sys/accessibility/speakup/bns.
  42. */
  43. static struct kobj_attribute caps_start_attribute =
  44. __ATTR(caps_start, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
  45. static struct kobj_attribute caps_stop_attribute =
  46. __ATTR(caps_stop, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
  47. static struct kobj_attribute pitch_attribute =
  48. __ATTR(pitch, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
  49. static struct kobj_attribute rate_attribute =
  50. __ATTR(rate, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
  51. static struct kobj_attribute tone_attribute =
  52. __ATTR(tone, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
  53. static struct kobj_attribute vol_attribute =
  54. __ATTR(vol, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
  55. static struct kobj_attribute delay_time_attribute =
  56. __ATTR(delay_time, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
  57. static struct kobj_attribute direct_attribute =
  58. __ATTR(direct, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
  59. static struct kobj_attribute full_time_attribute =
  60. __ATTR(full_time, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
  61. static struct kobj_attribute jiffy_delta_attribute =
  62. __ATTR(jiffy_delta, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
  63. static struct kobj_attribute trigger_time_attribute =
  64. __ATTR(trigger_time, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
  65. /*
  66. * Create a group of attributes so that we can create and destroy them all
  67. * at once.
  68. */
  69. static struct attribute *synth_attrs[] = {
  70. &caps_start_attribute.attr,
  71. &caps_stop_attribute.attr,
  72. &pitch_attribute.attr,
  73. &rate_attribute.attr,
  74. &tone_attribute.attr,
  75. &vol_attribute.attr,
  76. &delay_time_attribute.attr,
  77. &direct_attribute.attr,
  78. &full_time_attribute.attr,
  79. &jiffy_delta_attribute.attr,
  80. &trigger_time_attribute.attr,
  81. NULL, /* need to NULL terminate the list of attributes */
  82. };
  83. static struct spk_synth synth_bns = {
  84. .name = "bns",
  85. .version = DRV_VERSION,
  86. .long_name = "Braille 'N Speak",
  87. .init = "\x05Z\x05\x43",
  88. .procspeech = PROCSPEECH,
  89. .clear = SYNTH_CLEAR,
  90. .delay = 500,
  91. .trigger = 50,
  92. .jiffies = 50,
  93. .full = 40000,
  94. .startup = SYNTH_START,
  95. .checkval = SYNTH_CHECK,
  96. .vars = vars,
  97. .probe = spk_serial_synth_probe,
  98. .release = spk_serial_release,
  99. .synth_immediate = spk_synth_immediate,
  100. .catch_up = spk_do_catch_up,
  101. .flush = spk_synth_flush,
  102. .is_alive = spk_synth_is_alive_restart,
  103. .synth_adjust = NULL,
  104. .read_buff_add = NULL,
  105. .get_index = NULL,
  106. .indexing = {
  107. .command = NULL,
  108. .lowindex = 0,
  109. .highindex = 0,
  110. .currindex = 0,
  111. },
  112. .attributes = {
  113. .attrs = synth_attrs,
  114. .name = "bns",
  115. },
  116. };
  117. module_param_named(ser, synth_bns.ser, int, S_IRUGO);
  118. module_param_named(start, synth_bns.startup, short, S_IRUGO);
  119. MODULE_PARM_DESC(ser, "Set the serial port for the synthesizer (0-based).");
  120. MODULE_PARM_DESC(start, "Start the synthesizer once it is loaded.");
  121. module_spk_synth(synth_bns);
  122. MODULE_AUTHOR("Kirk Reiser <kirk@braille.uwo.ca>");
  123. MODULE_AUTHOR("David Borowski");
  124. MODULE_DESCRIPTION("Speakup support for Braille 'n Speak synthesizers");
  125. MODULE_LICENSE("GPL");
  126. MODULE_VERSION(DRV_VERSION);