speakup_dummy.c 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. /*
  2. * originally written by: Kirk Reiser <kirk@braille.uwo.ca>
  3. * this version considerably modified by David Borowski, david575@rogers.com
  4. * eventually modified by Samuel Thibault <samuel.thibault@ens-lyon.org>
  5. *
  6. * Copyright (C) 1998-99 Kirk Reiser.
  7. * Copyright (C) 2003 David Borowski.
  8. * Copyright (C) 2007 Samuel Thibault.
  9. *
  10. * This program is free software; you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License as published by
  12. * the Free Software Foundation; either version 2 of the License, or
  13. * (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public License
  21. * along with this program; if not, write to the Free Software
  22. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  23. *
  24. * specificly written as a driver for the speakup screenreview
  25. * s not a general device driver.
  26. */
  27. #include "spk_priv.h"
  28. #include "speakup.h"
  29. #define PROCSPEECH '\n'
  30. #define DRV_VERSION "2.11"
  31. #define SYNTH_CLEAR '!'
  32. static struct var_t vars[] = {
  33. { CAPS_START, .u.s = {"CAPS_START\n" } },
  34. { CAPS_STOP, .u.s = {"CAPS_STOP\n" } },
  35. { RATE, .u.n = {"RATE %d\n", 8, 1, 16, 0, 0, NULL } },
  36. { PITCH, .u.n = {"PITCH %d\n", 8, 0, 16, 0, 0, NULL } },
  37. { VOL, .u.n = {"VOL %d\n", 8, 0, 16, 0, 0, NULL } },
  38. { TONE, .u.n = {"TONE %d\n", 8, 0, 16, 0, 0, NULL } },
  39. { DIRECT, .u.n = {NULL, 0, 0, 1, 0, 0, NULL } },
  40. V_LAST_VAR
  41. };
  42. /*
  43. * These attributes will appear in /sys/accessibility/speakup/dummy.
  44. */
  45. static struct kobj_attribute caps_start_attribute =
  46. __ATTR(caps_start, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
  47. static struct kobj_attribute caps_stop_attribute =
  48. __ATTR(caps_stop, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
  49. static struct kobj_attribute pitch_attribute =
  50. __ATTR(pitch, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
  51. static struct kobj_attribute rate_attribute =
  52. __ATTR(rate, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
  53. static struct kobj_attribute tone_attribute =
  54. __ATTR(tone, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
  55. static struct kobj_attribute vol_attribute =
  56. __ATTR(vol, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
  57. static struct kobj_attribute delay_time_attribute =
  58. __ATTR(delay_time, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
  59. static struct kobj_attribute direct_attribute =
  60. __ATTR(direct, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
  61. static struct kobj_attribute full_time_attribute =
  62. __ATTR(full_time, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
  63. static struct kobj_attribute jiffy_delta_attribute =
  64. __ATTR(jiffy_delta, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
  65. static struct kobj_attribute trigger_time_attribute =
  66. __ATTR(trigger_time, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
  67. /*
  68. * Create a group of attributes so that we can create and destroy them all
  69. * at once.
  70. */
  71. static struct attribute *synth_attrs[] = {
  72. &caps_start_attribute.attr,
  73. &caps_stop_attribute.attr,
  74. &pitch_attribute.attr,
  75. &rate_attribute.attr,
  76. &tone_attribute.attr,
  77. &vol_attribute.attr,
  78. &delay_time_attribute.attr,
  79. &direct_attribute.attr,
  80. &full_time_attribute.attr,
  81. &jiffy_delta_attribute.attr,
  82. &trigger_time_attribute.attr,
  83. NULL, /* need to NULL terminate the list of attributes */
  84. };
  85. static struct spk_synth synth_dummy = {
  86. .name = "dummy",
  87. .version = DRV_VERSION,
  88. .long_name = "Dummy",
  89. .init = "Speakup\n",
  90. .procspeech = PROCSPEECH,
  91. .clear = SYNTH_CLEAR,
  92. .delay = 500,
  93. .trigger = 50,
  94. .jiffies = 50,
  95. .full = 40000,
  96. .startup = SYNTH_START,
  97. .checkval = SYNTH_CHECK,
  98. .vars = vars,
  99. .probe = spk_serial_synth_probe,
  100. .release = spk_serial_release,
  101. .synth_immediate = spk_synth_immediate,
  102. .catch_up = spk_do_catch_up,
  103. .flush = spk_synth_flush,
  104. .is_alive = spk_synth_is_alive_restart,
  105. .synth_adjust = NULL,
  106. .read_buff_add = NULL,
  107. .get_index = NULL,
  108. .indexing = {
  109. .command = NULL,
  110. .lowindex = 0,
  111. .highindex = 0,
  112. .currindex = 0,
  113. },
  114. .attributes = {
  115. .attrs = synth_attrs,
  116. .name = "dummy",
  117. },
  118. };
  119. module_param_named(ser, synth_dummy.ser, int, S_IRUGO);
  120. module_param_named(start, synth_dummy.startup, short, S_IRUGO);
  121. MODULE_PARM_DESC(ser, "Set the serial port for the synthesizer (0-based).");
  122. MODULE_PARM_DESC(start, "Start the synthesizer once it is loaded.");
  123. module_spk_synth(synth_dummy);
  124. MODULE_AUTHOR("Samuel Thibault <samuel.thibault@ens-lyon.org>");
  125. MODULE_DESCRIPTION("Speakup support for text console");
  126. MODULE_LICENSE("GPL");
  127. MODULE_VERSION(DRV_VERSION);