hda_beep.c 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. /*
  2. * Digital Beep Input Interface for HD-audio codec
  3. *
  4. * Author: Matthew Ranostay <mranostay@embeddedalley.com>
  5. * Copyright (c) 2008 Embedded Alley Solutions Inc
  6. *
  7. * This driver is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This driver is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  20. */
  21. #include <linux/input.h>
  22. #include <linux/pci.h>
  23. #include <linux/workqueue.h>
  24. #include <sound/core.h>
  25. #include "hda_beep.h"
  26. enum {
  27. DIGBEEP_HZ_STEP = 46875, /* 46.875 Hz */
  28. DIGBEEP_HZ_MIN = 93750, /* 93.750 Hz */
  29. DIGBEEP_HZ_MAX = 12000000, /* 12 KHz */
  30. };
  31. static void snd_hda_generate_beep(struct work_struct *work)
  32. {
  33. struct hda_beep *beep =
  34. container_of(work, struct hda_beep, beep_work);
  35. struct hda_codec *codec = beep->codec;
  36. if (!beep->enabled)
  37. return;
  38. /* generate tone */
  39. snd_hda_codec_write_cache(codec, beep->nid, 0,
  40. AC_VERB_SET_BEEP_CONTROL, beep->tone);
  41. }
  42. /* (non-standard) Linear beep tone calculation for IDT/STAC codecs
  43. *
  44. * The tone frequency of beep generator on IDT/STAC codecs is
  45. * defined from the 8bit tone parameter, in Hz,
  46. * freq = 48000 * (257 - tone) / 1024
  47. * that is from 12kHz to 93.75kHz in step of 46.875 hz
  48. */
  49. static int beep_linear_tone(struct hda_beep *beep, int hz)
  50. {
  51. hz *= 1000; /* fixed point */
  52. hz = hz - DIGBEEP_HZ_MIN;
  53. if (hz < 0)
  54. hz = 0; /* turn off PC beep*/
  55. else if (hz >= (DIGBEEP_HZ_MAX - DIGBEEP_HZ_MIN))
  56. hz = 0xff;
  57. else {
  58. hz /= DIGBEEP_HZ_STEP;
  59. hz++;
  60. }
  61. return hz;
  62. }
  63. /* HD-audio standard beep tone parameter calculation
  64. *
  65. * The tone frequency in Hz is calculated as
  66. * freq = 48000 / (tone * 4)
  67. * from 47Hz to 12kHz
  68. */
  69. static int beep_standard_tone(struct hda_beep *beep, int hz)
  70. {
  71. if (hz <= 0)
  72. return 0; /* disabled */
  73. hz = 12000 / hz;
  74. if (hz > 0xff)
  75. return 0xff;
  76. if (hz <= 0)
  77. return 1;
  78. return hz;
  79. }
  80. static int snd_hda_beep_event(struct input_dev *dev, unsigned int type,
  81. unsigned int code, int hz)
  82. {
  83. struct hda_beep *beep = input_get_drvdata(dev);
  84. switch (code) {
  85. case SND_BELL:
  86. if (hz)
  87. hz = 1000;
  88. case SND_TONE:
  89. if (beep->linear_tone)
  90. beep->tone = beep_linear_tone(beep, hz);
  91. else
  92. beep->tone = beep_standard_tone(beep, hz);
  93. break;
  94. default:
  95. return -1;
  96. }
  97. /* schedule beep event */
  98. schedule_work(&beep->beep_work);
  99. return 0;
  100. }
  101. int snd_hda_attach_beep_device(struct hda_codec *codec, int nid)
  102. {
  103. struct input_dev *input_dev;
  104. struct hda_beep *beep;
  105. int err;
  106. beep = kzalloc(sizeof(*beep), GFP_KERNEL);
  107. if (beep == NULL)
  108. return -ENOMEM;
  109. snprintf(beep->phys, sizeof(beep->phys),
  110. "card%d/codec#%d/beep0", codec->bus->card->number, codec->addr);
  111. input_dev = input_allocate_device();
  112. if (!input_dev) {
  113. kfree(beep);
  114. return -ENOMEM;
  115. }
  116. /* setup digital beep device */
  117. input_dev->name = "HDA Digital PCBeep";
  118. input_dev->phys = beep->phys;
  119. input_dev->id.bustype = BUS_PCI;
  120. input_dev->id.vendor = codec->vendor_id >> 16;
  121. input_dev->id.product = codec->vendor_id & 0xffff;
  122. input_dev->id.version = 0x01;
  123. input_dev->evbit[0] = BIT_MASK(EV_SND);
  124. input_dev->sndbit[0] = BIT_MASK(SND_BELL) | BIT_MASK(SND_TONE);
  125. input_dev->event = snd_hda_beep_event;
  126. input_dev->dev.parent = &codec->bus->pci->dev;
  127. input_set_drvdata(input_dev, beep);
  128. err = input_register_device(input_dev);
  129. if (err < 0) {
  130. input_free_device(input_dev);
  131. kfree(beep);
  132. return err;
  133. }
  134. /* enable linear scale */
  135. snd_hda_codec_write(codec, nid, 0,
  136. AC_VERB_SET_DIGI_CONVERT_2, 0x01);
  137. beep->nid = nid;
  138. beep->dev = input_dev;
  139. beep->codec = codec;
  140. beep->enabled = 1;
  141. codec->beep = beep;
  142. INIT_WORK(&beep->beep_work, &snd_hda_generate_beep);
  143. return 0;
  144. }
  145. EXPORT_SYMBOL_HDA(snd_hda_attach_beep_device);
  146. void snd_hda_detach_beep_device(struct hda_codec *codec)
  147. {
  148. struct hda_beep *beep = codec->beep;
  149. if (beep) {
  150. cancel_work_sync(&beep->beep_work);
  151. input_unregister_device(beep->dev);
  152. kfree(beep);
  153. codec->beep = NULL;
  154. }
  155. }
  156. EXPORT_SYMBOL_HDA(snd_hda_detach_beep_device);