blob: 29714c818b53b9387609b67b409e7b15bf9ea2ef [file] [log] [blame]
Matthew Ranostay1cd22242008-07-18 18:20:52 +02001/*
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
22#include <linux/input.h>
23#include <linux/pci.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090024#include <linux/slab.h>
Matthew Ranostay1cd22242008-07-18 18:20:52 +020025#include <linux/workqueue.h>
26#include <sound/core.h>
27#include "hda_beep.h"
Takashi Iwaib7b51142009-06-29 08:34:06 +020028#include "hda_local.h"
Matthew Ranostay1cd22242008-07-18 18:20:52 +020029
30enum {
31 DIGBEEP_HZ_STEP = 46875, /* 46.875 Hz */
32 DIGBEEP_HZ_MIN = 93750, /* 93.750 Hz */
33 DIGBEEP_HZ_MAX = 12000000, /* 12 KHz */
34};
35
36static void snd_hda_generate_beep(struct work_struct *work)
37{
38 struct hda_beep *beep =
39 container_of(work, struct hda_beep, beep_work);
40 struct hda_codec *codec = beep->codec;
41
Takashi Iwai4d4e9bb2008-11-12 16:45:04 +010042 if (!beep->enabled)
43 return;
44
Matthew Ranostay1cd22242008-07-18 18:20:52 +020045 /* generate tone */
Takashi Iwai411fe852009-12-27 10:25:58 +010046 snd_hda_codec_write(codec, beep->nid, 0,
Matthew Ranostay1cd22242008-07-18 18:20:52 +020047 AC_VERB_SET_BEEP_CONTROL, beep->tone);
48}
49
Takashi Iwaifa797962009-05-19 12:50:04 +020050/* (non-standard) Linear beep tone calculation for IDT/STAC codecs
51 *
52 * The tone frequency of beep generator on IDT/STAC codecs is
53 * defined from the 8bit tone parameter, in Hz,
54 * freq = 48000 * (257 - tone) / 1024
Paul Vojta369693d2009-07-08 23:57:46 -070055 * that is from 12kHz to 93.75Hz in steps of 46.875 Hz
Takashi Iwaifa797962009-05-19 12:50:04 +020056 */
57static int beep_linear_tone(struct hda_beep *beep, int hz)
58{
Paul Vojta369693d2009-07-08 23:57:46 -070059 if (hz <= 0)
60 return 0;
Takashi Iwaifa797962009-05-19 12:50:04 +020061 hz *= 1000; /* fixed point */
Paul Vojta369693d2009-07-08 23:57:46 -070062 hz = hz - DIGBEEP_HZ_MIN
63 + DIGBEEP_HZ_STEP / 2; /* round to nearest step */
Takashi Iwaifa797962009-05-19 12:50:04 +020064 if (hz < 0)
65 hz = 0; /* turn off PC beep*/
66 else if (hz >= (DIGBEEP_HZ_MAX - DIGBEEP_HZ_MIN))
Paul Vojta369693d2009-07-08 23:57:46 -070067 hz = 1; /* max frequency */
Takashi Iwaifa797962009-05-19 12:50:04 +020068 else {
69 hz /= DIGBEEP_HZ_STEP;
Paul Vojta369693d2009-07-08 23:57:46 -070070 hz = 255 - hz;
Takashi Iwaifa797962009-05-19 12:50:04 +020071 }
72 return hz;
73}
74
75/* HD-audio standard beep tone parameter calculation
76 *
77 * The tone frequency in Hz is calculated as
78 * freq = 48000 / (tone * 4)
79 * from 47Hz to 12kHz
80 */
81static int beep_standard_tone(struct hda_beep *beep, int hz)
82{
83 if (hz <= 0)
84 return 0; /* disabled */
85 hz = 12000 / hz;
86 if (hz > 0xff)
87 return 0xff;
88 if (hz <= 0)
89 return 1;
90 return hz;
91}
92
Matthew Ranostay1cd22242008-07-18 18:20:52 +020093static int snd_hda_beep_event(struct input_dev *dev, unsigned int type,
94 unsigned int code, int hz)
95{
96 struct hda_beep *beep = input_get_drvdata(dev);
97
98 switch (code) {
99 case SND_BELL:
100 if (hz)
101 hz = 1000;
102 case SND_TONE:
Takashi Iwaifa797962009-05-19 12:50:04 +0200103 if (beep->linear_tone)
104 beep->tone = beep_linear_tone(beep, hz);
105 else
106 beep->tone = beep_standard_tone(beep, hz);
Matthew Ranostay1cd22242008-07-18 18:20:52 +0200107 break;
108 default:
109 return -1;
110 }
Matthew Ranostay1cd22242008-07-18 18:20:52 +0200111
112 /* schedule beep event */
113 schedule_work(&beep->beep_work);
114 return 0;
115}
116
Jaroslav Kysela123c07a2009-10-21 14:48:23 +0200117static void snd_hda_do_detach(struct hda_beep *beep)
118{
119 input_unregister_device(beep->dev);
120 beep->dev = NULL;
121 cancel_work_sync(&beep->beep_work);
122 /* turn off beep for sure */
Takashi Iwai411fe852009-12-27 10:25:58 +0100123 snd_hda_codec_write(beep->codec, beep->nid, 0,
Jaroslav Kysela123c07a2009-10-21 14:48:23 +0200124 AC_VERB_SET_BEEP_CONTROL, 0);
125}
126
127static int snd_hda_do_attach(struct hda_beep *beep)
Matthew Ranostay1cd22242008-07-18 18:20:52 +0200128{
129 struct input_dev *input_dev;
Jaroslav Kysela123c07a2009-10-21 14:48:23 +0200130 struct hda_codec *codec = beep->codec;
Matthew Ranostay1cd22242008-07-18 18:20:52 +0200131 int err;
132
Matthew Ranostay1cd22242008-07-18 18:20:52 +0200133 input_dev = input_allocate_device();
Takashi Iwai6a12afb2008-11-13 13:08:56 +0100134 if (!input_dev) {
Jaroslav Kysela123c07a2009-10-21 14:48:23 +0200135 printk(KERN_INFO "hda_beep: unable to allocate input device\n");
Takashi Iwai6a12afb2008-11-13 13:08:56 +0100136 return -ENOMEM;
137 }
Matthew Ranostay1cd22242008-07-18 18:20:52 +0200138
139 /* setup digital beep device */
140 input_dev->name = "HDA Digital PCBeep";
141 input_dev->phys = beep->phys;
142 input_dev->id.bustype = BUS_PCI;
143
144 input_dev->id.vendor = codec->vendor_id >> 16;
145 input_dev->id.product = codec->vendor_id & 0xffff;
146 input_dev->id.version = 0x01;
147
148 input_dev->evbit[0] = BIT_MASK(EV_SND);
149 input_dev->sndbit[0] = BIT_MASK(SND_BELL) | BIT_MASK(SND_TONE);
150 input_dev->event = snd_hda_beep_event;
151 input_dev->dev.parent = &codec->bus->pci->dev;
152 input_set_drvdata(input_dev, beep);
153
154 err = input_register_device(input_dev);
155 if (err < 0) {
Takashi Iwaif6154d62008-07-29 12:08:16 +0200156 input_free_device(input_dev);
Jaroslav Kysela123c07a2009-10-21 14:48:23 +0200157 printk(KERN_INFO "hda_beep: unable to register input device\n");
Matthew Ranostay1cd22242008-07-18 18:20:52 +0200158 return err;
159 }
Jaroslav Kysela123c07a2009-10-21 14:48:23 +0200160 beep->dev = input_dev;
161 return 0;
162}
Matthew Ranostay1cd22242008-07-18 18:20:52 +0200163
Jaroslav Kysela123c07a2009-10-21 14:48:23 +0200164static void snd_hda_do_register(struct work_struct *work)
165{
166 struct hda_beep *beep =
167 container_of(work, struct hda_beep, register_work);
Jaroslav Kysela123c07a2009-10-21 14:48:23 +0200168
169 mutex_lock(&beep->mutex);
Jaroslav Kysela13dab082009-11-03 14:29:50 +0100170 if (beep->enabled && !beep->dev)
171 snd_hda_do_attach(beep);
172 mutex_unlock(&beep->mutex);
173}
174
175static void snd_hda_do_unregister(struct work_struct *work)
176{
177 struct hda_beep *beep =
178 container_of(work, struct hda_beep, unregister_work.work);
179
180 mutex_lock(&beep->mutex);
181 if (!beep->enabled && beep->dev)
182 snd_hda_do_detach(beep);
Jaroslav Kysela123c07a2009-10-21 14:48:23 +0200183 mutex_unlock(&beep->mutex);
184}
185
186int snd_hda_enable_beep_device(struct hda_codec *codec, int enable)
187{
188 struct hda_beep *beep = codec->beep;
189 enable = !!enable;
Jaroslav Kysela13dab082009-11-03 14:29:50 +0100190 if (beep == NULL)
191 return 0;
192 if (beep->enabled != enable) {
193 beep->enabled = enable;
Jaroslav Kysela2dca0bb2009-11-13 18:41:52 +0100194 if (!enable) {
Jaroslav Kysela13dab082009-11-03 14:29:50 +0100195 /* turn off beep */
Takashi Iwai411fe852009-12-27 10:25:58 +0100196 snd_hda_codec_write(beep->codec, beep->nid, 0,
Jaroslav Kysela13dab082009-11-03 14:29:50 +0100197 AC_VERB_SET_BEEP_CONTROL, 0);
Jaroslav Kysela2dca0bb2009-11-13 18:41:52 +0100198 }
199 if (beep->mode == HDA_BEEP_MODE_SWREG) {
200 if (enable) {
201 cancel_delayed_work(&beep->unregister_work);
202 schedule_work(&beep->register_work);
203 } else {
204 schedule_delayed_work(&beep->unregister_work,
205 HZ);
206 }
Jaroslav Kysela13dab082009-11-03 14:29:50 +0100207 }
Jaroslav Kysela123c07a2009-10-21 14:48:23 +0200208 return 1;
209 }
210 return 0;
211}
212EXPORT_SYMBOL_HDA(snd_hda_enable_beep_device);
213
214int snd_hda_attach_beep_device(struct hda_codec *codec, int nid)
215{
216 struct hda_beep *beep;
217
218 if (!snd_hda_get_bool_hint(codec, "beep"))
Takashi Iwai9bb1fe32009-11-16 15:33:49 +0100219 return 0; /* disabled explicitly by hints */
220 if (codec->beep_mode == HDA_BEEP_MODE_OFF)
221 return 0; /* disabled by module option */
Jaroslav Kysela123c07a2009-10-21 14:48:23 +0200222
223 beep = kzalloc(sizeof(*beep), GFP_KERNEL);
224 if (beep == NULL)
225 return -ENOMEM;
226 snprintf(beep->phys, sizeof(beep->phys),
227 "card%d/codec#%d/beep0", codec->bus->card->number, codec->addr);
Matthew Ranostay1cd22242008-07-18 18:20:52 +0200228 /* enable linear scale */
229 snd_hda_codec_write(codec, nid, 0,
230 AC_VERB_SET_DIGI_CONVERT_2, 0x01);
231
232 beep->nid = nid;
Matthew Ranostay1cd22242008-07-18 18:20:52 +0200233 beep->codec = codec;
Jaroslav Kysela2dca0bb2009-11-13 18:41:52 +0100234 beep->mode = codec->beep_mode;
Matthew Ranostay1cd22242008-07-18 18:20:52 +0200235 codec->beep = beep;
236
Jaroslav Kysela123c07a2009-10-21 14:48:23 +0200237 INIT_WORK(&beep->register_work, &snd_hda_do_register);
Jaroslav Kysela13dab082009-11-03 14:29:50 +0100238 INIT_DELAYED_WORK(&beep->unregister_work, &snd_hda_do_unregister);
Matthew Ranostay1cd22242008-07-18 18:20:52 +0200239 INIT_WORK(&beep->beep_work, &snd_hda_generate_beep);
Jaroslav Kysela123c07a2009-10-21 14:48:23 +0200240 mutex_init(&beep->mutex);
241
Jaroslav Kysela2dca0bb2009-11-13 18:41:52 +0100242 if (beep->mode == HDA_BEEP_MODE_ON) {
Takashi Iwai54f71902009-12-27 13:27:39 +0100243 int err = snd_hda_do_attach(beep);
244 if (err < 0) {
245 kfree(beep);
246 codec->beep = NULL;
247 return err;
248 }
Jaroslav Kysela2dca0bb2009-11-13 18:41:52 +0100249 }
250
Matthew Ranostay1cd22242008-07-18 18:20:52 +0200251 return 0;
252}
Takashi Iwaiff7a3262008-11-28 15:17:06 +0100253EXPORT_SYMBOL_HDA(snd_hda_attach_beep_device);
Matthew Ranostay1cd22242008-07-18 18:20:52 +0200254
255void snd_hda_detach_beep_device(struct hda_codec *codec)
256{
257 struct hda_beep *beep = codec->beep;
258 if (beep) {
Jaroslav Kysela123c07a2009-10-21 14:48:23 +0200259 cancel_work_sync(&beep->register_work);
Jaroslav Kysela5f816692009-11-04 12:46:49 +0100260 cancel_delayed_work(&beep->unregister_work);
Takashi Iwai54f71902009-12-27 13:27:39 +0100261 if (beep->dev)
Jaroslav Kysela123c07a2009-10-21 14:48:23 +0200262 snd_hda_do_detach(beep);
Takashi Iwaic44765b2009-02-06 16:48:10 +0100263 codec->beep = NULL;
Jaroslav Kysela123c07a2009-10-21 14:48:23 +0200264 kfree(beep);
Matthew Ranostay1cd22242008-07-18 18:20:52 +0200265 }
266}
Takashi Iwaiff7a3262008-11-28 15:17:06 +0100267EXPORT_SYMBOL_HDA(snd_hda_detach_beep_device);