blob: c397e7da0eacf9808d136ccdb8ef40e583e58b19 [file] [log] [blame]
Matthew Ranostay1cd22242008-07-18 18:20:52 +02001/*
2 * Digital Beep Input Interface for HD-audio codec
3 *
Matt Ranostay70a38872015-06-12 21:47:46 -07004 * Author: Matt Ranostay <mranostay@gmail.com>
Matthew Ranostay1cd22242008-07-18 18:20:52 +02005 * 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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090023#include <linux/slab.h>
Matthew Ranostay1cd22242008-07-18 18:20:52 +020024#include <linux/workqueue.h>
Paul Gortmakerd81a6d72011-09-22 09:34:58 -040025#include <linux/export.h>
Matthew Ranostay1cd22242008-07-18 18:20:52 +020026#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
Takashi Iwai5ccf8352015-03-18 09:23:10 +010036/* generate or stop tone */
37static void generate_tone(struct hda_beep *beep, int tone)
Matthew Ranostay1cd22242008-07-18 18:20:52 +020038{
Matthew Ranostay1cd22242008-07-18 18:20:52 +020039 struct hda_codec *codec = beep->codec;
40
Takashi Iwaie914b252013-03-18 11:29:56 +010041 if (tone && !beep->playing) {
42 snd_hda_power_up(codec);
Takashi Iwai5ccf8352015-03-18 09:23:10 +010043 if (beep->power_hook)
44 beep->power_hook(beep, true);
Takashi Iwaie914b252013-03-18 11:29:56 +010045 beep->playing = 1;
46 }
Takashi Iwai411fe852009-12-27 10:25:58 +010047 snd_hda_codec_write(codec, beep->nid, 0,
Takashi Iwaie914b252013-03-18 11:29:56 +010048 AC_VERB_SET_BEEP_CONTROL, tone);
49 if (!tone && beep->playing) {
50 beep->playing = 0;
Takashi Iwai5ccf8352015-03-18 09:23:10 +010051 if (beep->power_hook)
52 beep->power_hook(beep, false);
Takashi Iwaie914b252013-03-18 11:29:56 +010053 snd_hda_power_down(codec);
54 }
Matthew Ranostay1cd22242008-07-18 18:20:52 +020055}
56
Takashi Iwai5ccf8352015-03-18 09:23:10 +010057static void snd_hda_generate_beep(struct work_struct *work)
58{
59 struct hda_beep *beep =
60 container_of(work, struct hda_beep, beep_work);
61
62 if (beep->enabled)
63 generate_tone(beep, beep->tone);
64}
65
Takashi Iwaifa797962009-05-19 12:50:04 +020066/* (non-standard) Linear beep tone calculation for IDT/STAC codecs
67 *
68 * The tone frequency of beep generator on IDT/STAC codecs is
69 * defined from the 8bit tone parameter, in Hz,
70 * freq = 48000 * (257 - tone) / 1024
Paul Vojta369693d2009-07-08 23:57:46 -070071 * that is from 12kHz to 93.75Hz in steps of 46.875 Hz
Takashi Iwaifa797962009-05-19 12:50:04 +020072 */
73static int beep_linear_tone(struct hda_beep *beep, int hz)
74{
Paul Vojta369693d2009-07-08 23:57:46 -070075 if (hz <= 0)
76 return 0;
Takashi Iwaifa797962009-05-19 12:50:04 +020077 hz *= 1000; /* fixed point */
Paul Vojta369693d2009-07-08 23:57:46 -070078 hz = hz - DIGBEEP_HZ_MIN
79 + DIGBEEP_HZ_STEP / 2; /* round to nearest step */
Takashi Iwaifa797962009-05-19 12:50:04 +020080 if (hz < 0)
81 hz = 0; /* turn off PC beep*/
82 else if (hz >= (DIGBEEP_HZ_MAX - DIGBEEP_HZ_MIN))
Paul Vojta369693d2009-07-08 23:57:46 -070083 hz = 1; /* max frequency */
Takashi Iwaifa797962009-05-19 12:50:04 +020084 else {
85 hz /= DIGBEEP_HZ_STEP;
Paul Vojta369693d2009-07-08 23:57:46 -070086 hz = 255 - hz;
Takashi Iwaifa797962009-05-19 12:50:04 +020087 }
88 return hz;
89}
90
91/* HD-audio standard beep tone parameter calculation
92 *
93 * The tone frequency in Hz is calculated as
94 * freq = 48000 / (tone * 4)
95 * from 47Hz to 12kHz
96 */
97static int beep_standard_tone(struct hda_beep *beep, int hz)
98{
99 if (hz <= 0)
100 return 0; /* disabled */
101 hz = 12000 / hz;
102 if (hz > 0xff)
103 return 0xff;
104 if (hz <= 0)
105 return 1;
106 return hz;
107}
108
Matthew Ranostay1cd22242008-07-18 18:20:52 +0200109static int snd_hda_beep_event(struct input_dev *dev, unsigned int type,
110 unsigned int code, int hz)
111{
112 struct hda_beep *beep = input_get_drvdata(dev);
113
114 switch (code) {
115 case SND_BELL:
116 if (hz)
117 hz = 1000;
Takashi Iwai57d8ff62013-10-28 11:42:56 +0100118 /* fallthru */
Matthew Ranostay1cd22242008-07-18 18:20:52 +0200119 case SND_TONE:
Takashi Iwaifa797962009-05-19 12:50:04 +0200120 if (beep->linear_tone)
121 beep->tone = beep_linear_tone(beep, hz);
122 else
123 beep->tone = beep_standard_tone(beep, hz);
Matthew Ranostay1cd22242008-07-18 18:20:52 +0200124 break;
125 default:
126 return -1;
127 }
Matthew Ranostay1cd22242008-07-18 18:20:52 +0200128
129 /* schedule beep event */
130 schedule_work(&beep->beep_work);
131 return 0;
132}
133
Takashi Iwaie914b252013-03-18 11:29:56 +0100134static void turn_off_beep(struct hda_beep *beep)
135{
136 cancel_work_sync(&beep->beep_work);
137 if (beep->playing) {
138 /* turn off beep */
Takashi Iwai5ccf8352015-03-18 09:23:10 +0100139 generate_tone(beep, 0);
Takashi Iwaie914b252013-03-18 11:29:56 +0100140 }
141}
142
Jaroslav Kysela123c07a2009-10-21 14:48:23 +0200143static void snd_hda_do_detach(struct hda_beep *beep)
144{
Takashi Iwaid604b392014-02-28 13:42:09 +0100145 if (beep->registered)
146 input_unregister_device(beep->dev);
147 else
148 input_free_device(beep->dev);
Jaroslav Kysela123c07a2009-10-21 14:48:23 +0200149 beep->dev = NULL;
Takashi Iwaie914b252013-03-18 11:29:56 +0100150 turn_off_beep(beep);
Jaroslav Kysela123c07a2009-10-21 14:48:23 +0200151}
152
153static int snd_hda_do_attach(struct hda_beep *beep)
Matthew Ranostay1cd22242008-07-18 18:20:52 +0200154{
155 struct input_dev *input_dev;
Jaroslav Kysela123c07a2009-10-21 14:48:23 +0200156 struct hda_codec *codec = beep->codec;
Matthew Ranostay1cd22242008-07-18 18:20:52 +0200157
Matthew Ranostay1cd22242008-07-18 18:20:52 +0200158 input_dev = input_allocate_device();
Joe Perchesb7baa9a2013-10-23 12:14:54 -0700159 if (!input_dev)
Takashi Iwai6a12afb2008-11-13 13:08:56 +0100160 return -ENOMEM;
Matthew Ranostay1cd22242008-07-18 18:20:52 +0200161
162 /* setup digital beep device */
163 input_dev->name = "HDA Digital PCBeep";
164 input_dev->phys = beep->phys;
165 input_dev->id.bustype = BUS_PCI;
Takashi Iwai6efdd852015-02-27 16:09:22 +0100166 input_dev->dev.parent = &codec->card->card_dev;
Matthew Ranostay1cd22242008-07-18 18:20:52 +0200167
Takashi Iwai7639a062015-03-03 10:07:24 +0100168 input_dev->id.vendor = codec->core.vendor_id >> 16;
169 input_dev->id.product = codec->core.vendor_id & 0xffff;
Matthew Ranostay1cd22242008-07-18 18:20:52 +0200170 input_dev->id.version = 0x01;
171
172 input_dev->evbit[0] = BIT_MASK(EV_SND);
173 input_dev->sndbit[0] = BIT_MASK(SND_BELL) | BIT_MASK(SND_TONE);
174 input_dev->event = snd_hda_beep_event;
Matthew Ranostay1cd22242008-07-18 18:20:52 +0200175 input_set_drvdata(input_dev, beep);
176
Jaroslav Kysela123c07a2009-10-21 14:48:23 +0200177 beep->dev = input_dev;
178 return 0;
179}
Matthew Ranostay1cd22242008-07-18 18:20:52 +0200180
Takashi Iwai95a962c2014-10-29 16:03:58 +0100181/**
182 * snd_hda_enable_beep_device - Turn on/off beep sound
183 * @codec: the HDA codec
184 * @enable: flag to turn on/off
185 */
Jaroslav Kysela123c07a2009-10-21 14:48:23 +0200186int snd_hda_enable_beep_device(struct hda_codec *codec, int enable)
187{
188 struct hda_beep *beep = codec->beep;
Takashi Iwai3fd877d2012-07-03 17:36:35 +0200189 if (!beep)
Jaroslav Kysela13dab082009-11-03 14:29:50 +0100190 return 0;
Takashi Iwai3fd877d2012-07-03 17:36:35 +0200191 enable = !!enable;
Jaroslav Kysela13dab082009-11-03 14:29:50 +0100192 if (beep->enabled != enable) {
193 beep->enabled = enable;
Takashi Iwaie914b252013-03-18 11:29:56 +0100194 if (!enable)
195 turn_off_beep(beep);
Jaroslav Kysela123c07a2009-10-21 14:48:23 +0200196 return 1;
197 }
198 return 0;
199}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100200EXPORT_SYMBOL_GPL(snd_hda_enable_beep_device);
Jaroslav Kysela123c07a2009-10-21 14:48:23 +0200201
Takashi Iwai95a962c2014-10-29 16:03:58 +0100202/**
203 * snd_hda_attach_beep_device - Attach a beep input device
204 * @codec: the HDA codec
205 * @nid: beep NID
206 *
207 * Attach a beep object to the given widget. If beep hint is turned off
208 * explicitly or beep_mode of the codec is turned off, this doesn't nothing.
209 *
210 * The attached beep device has to be registered via
211 * snd_hda_register_beep_device() and released via snd_hda_detach_beep_device()
212 * appropriately.
213 *
214 * Currently, only one beep device is allowed to each codec.
215 */
Jaroslav Kysela123c07a2009-10-21 14:48:23 +0200216int snd_hda_attach_beep_device(struct hda_codec *codec, int nid)
217{
218 struct hda_beep *beep;
Takashi Iwai257dfb42012-07-03 17:35:05 +0200219 int err;
Jaroslav Kysela123c07a2009-10-21 14:48:23 +0200220
221 if (!snd_hda_get_bool_hint(codec, "beep"))
Takashi Iwai9bb1fe32009-11-16 15:33:49 +0100222 return 0; /* disabled explicitly by hints */
223 if (codec->beep_mode == HDA_BEEP_MODE_OFF)
224 return 0; /* disabled by module option */
Jaroslav Kysela123c07a2009-10-21 14:48:23 +0200225
226 beep = kzalloc(sizeof(*beep), GFP_KERNEL);
227 if (beep == NULL)
228 return -ENOMEM;
229 snprintf(beep->phys, sizeof(beep->phys),
Takashi Iwai6efdd852015-02-27 16:09:22 +0100230 "card%d/codec#%d/beep0", codec->card->number, codec->addr);
Matthew Ranostay1cd22242008-07-18 18:20:52 +0200231 /* enable linear scale */
Takashi Iwai8bc0a842013-03-18 11:34:45 +0100232 snd_hda_codec_write_cache(codec, nid, 0,
Matthew Ranostay1cd22242008-07-18 18:20:52 +0200233 AC_VERB_SET_DIGI_CONVERT_2, 0x01);
234
235 beep->nid = nid;
Matthew Ranostay1cd22242008-07-18 18:20:52 +0200236 beep->codec = codec;
Matthew Ranostay1cd22242008-07-18 18:20:52 +0200237 codec->beep = beep;
238
239 INIT_WORK(&beep->beep_work, &snd_hda_generate_beep);
Jaroslav Kysela123c07a2009-10-21 14:48:23 +0200240 mutex_init(&beep->mutex);
241
Takashi Iwai257dfb42012-07-03 17:35:05 +0200242 err = snd_hda_do_attach(beep);
243 if (err < 0) {
244 kfree(beep);
245 codec->beep = NULL;
246 return err;
Jaroslav Kysela2dca0bb2009-11-13 18:41:52 +0100247 }
248
Matthew Ranostay1cd22242008-07-18 18:20:52 +0200249 return 0;
250}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100251EXPORT_SYMBOL_GPL(snd_hda_attach_beep_device);
Matthew Ranostay1cd22242008-07-18 18:20:52 +0200252
Takashi Iwai95a962c2014-10-29 16:03:58 +0100253/**
254 * snd_hda_detach_beep_device - Detach the beep device
255 * @codec: the HDA codec
256 */
Matthew Ranostay1cd22242008-07-18 18:20:52 +0200257void snd_hda_detach_beep_device(struct hda_codec *codec)
258{
259 struct hda_beep *beep = codec->beep;
260 if (beep) {
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 Iwai2698ea92013-12-18 07:45:52 +0100267EXPORT_SYMBOL_GPL(snd_hda_detach_beep_device);
Takashi Iwai0401e852012-07-03 17:27:57 +0200268
Takashi Iwai95a962c2014-10-29 16:03:58 +0100269/**
270 * snd_hda_register_beep_device - Register the beep device
271 * @codec: the HDA codec
272 */
Takashi Iwaid604b392014-02-28 13:42:09 +0100273int snd_hda_register_beep_device(struct hda_codec *codec)
274{
275 struct hda_beep *beep = codec->beep;
276 int err;
277
278 if (!beep || !beep->dev)
279 return 0;
280
281 err = input_register_device(beep->dev);
282 if (err < 0) {
283 codec_err(codec, "hda_beep: unable to register input device\n");
284 input_free_device(beep->dev);
285 codec->beep = NULL;
286 kfree(beep);
287 return err;
288 }
289 beep->registered = true;
290 return 0;
291}
292EXPORT_SYMBOL_GPL(snd_hda_register_beep_device);
293
David Henningsson265d9312012-08-13 17:10:46 +0200294static bool ctl_has_mute(struct snd_kcontrol *kcontrol)
295{
296 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
297 return query_amp_caps(codec, get_amp_nid(kcontrol),
298 get_amp_direction(kcontrol)) & AC_AMPCAP_MUTE;
299}
300
Takashi Iwai0401e852012-07-03 17:27:57 +0200301/* get/put callbacks for beep mute mixer switches */
Takashi Iwai95a962c2014-10-29 16:03:58 +0100302
303/**
304 * snd_hda_mixer_amp_switch_get_beep - Get callback for beep controls
305 * @kcontrol: ctl element
306 * @ucontrol: pointer to get/store the data
307 */
Takashi Iwai0401e852012-07-03 17:27:57 +0200308int snd_hda_mixer_amp_switch_get_beep(struct snd_kcontrol *kcontrol,
309 struct snd_ctl_elem_value *ucontrol)
310{
311 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
312 struct hda_beep *beep = codec->beep;
David Henningsson265d9312012-08-13 17:10:46 +0200313 if (beep && (!beep->enabled || !ctl_has_mute(kcontrol))) {
Takashi Iwai0401e852012-07-03 17:27:57 +0200314 ucontrol->value.integer.value[0] =
David Henningsson265d9312012-08-13 17:10:46 +0200315 ucontrol->value.integer.value[1] = beep->enabled;
Takashi Iwai0401e852012-07-03 17:27:57 +0200316 return 0;
317 }
318 return snd_hda_mixer_amp_switch_get(kcontrol, ucontrol);
319}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100320EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_switch_get_beep);
Takashi Iwai0401e852012-07-03 17:27:57 +0200321
Takashi Iwai95a962c2014-10-29 16:03:58 +0100322/**
323 * snd_hda_mixer_amp_switch_put_beep - Put callback for beep controls
324 * @kcontrol: ctl element
325 * @ucontrol: pointer to get/store the data
326 */
Takashi Iwai0401e852012-07-03 17:27:57 +0200327int snd_hda_mixer_amp_switch_put_beep(struct snd_kcontrol *kcontrol,
328 struct snd_ctl_elem_value *ucontrol)
329{
330 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
331 struct hda_beep *beep = codec->beep;
David Henningsson14bc9c62012-08-10 13:29:32 +0200332 if (beep) {
333 u8 chs = get_amp_channels(kcontrol);
334 int enable = 0;
335 long *valp = ucontrol->value.integer.value;
336 if (chs & 1) {
337 enable |= *valp;
338 valp++;
339 }
340 if (chs & 2)
341 enable |= *valp;
342 snd_hda_enable_beep_device(codec, enable);
343 }
David Henningsson265d9312012-08-13 17:10:46 +0200344 if (!ctl_has_mute(kcontrol))
345 return 0;
Takashi Iwai0401e852012-07-03 17:27:57 +0200346 return snd_hda_mixer_amp_switch_put(kcontrol, ucontrol);
347}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100348EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_switch_put_beep);