blob: 53a2b89f8983ce4f1e2733d62836f68f09668429 [file] [log] [blame]
Matt Ranostay248a3802018-02-16 21:53:15 -08001// SPDX-License-Identifier: GPL-2.0+
Matthew Ranostay1cd22242008-07-18 18:20:52 +02002/*
3 * Digital Beep Input Interface for HD-audio codec
4 *
Matt Ranostay248a3802018-02-16 21:53:15 -08005 * Author: Matt Ranostay <matt.ranostay@konsulko.com>
Matthew Ranostay1cd22242008-07-18 18:20:52 +02006 * Copyright (c) 2008 Embedded Alley Solutions Inc
Matthew Ranostay1cd22242008-07-18 18:20:52 +02007 */
8
9#include <linux/input.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090010#include <linux/slab.h>
Matthew Ranostay1cd22242008-07-18 18:20:52 +020011#include <linux/workqueue.h>
Paul Gortmakerd81a6d72011-09-22 09:34:58 -040012#include <linux/export.h>
Matthew Ranostay1cd22242008-07-18 18:20:52 +020013#include <sound/core.h>
14#include "hda_beep.h"
Takashi Iwaib7b51142009-06-29 08:34:06 +020015#include "hda_local.h"
Matthew Ranostay1cd22242008-07-18 18:20:52 +020016
17enum {
18 DIGBEEP_HZ_STEP = 46875, /* 46.875 Hz */
19 DIGBEEP_HZ_MIN = 93750, /* 93.750 Hz */
20 DIGBEEP_HZ_MAX = 12000000, /* 12 KHz */
21};
22
Takashi Iwai5ccf8352015-03-18 09:23:10 +010023/* generate or stop tone */
24static void generate_tone(struct hda_beep *beep, int tone)
Matthew Ranostay1cd22242008-07-18 18:20:52 +020025{
Matthew Ranostay1cd22242008-07-18 18:20:52 +020026 struct hda_codec *codec = beep->codec;
27
Takashi Iwaie914b252013-03-18 11:29:56 +010028 if (tone && !beep->playing) {
29 snd_hda_power_up(codec);
Takashi Iwai5ccf8352015-03-18 09:23:10 +010030 if (beep->power_hook)
31 beep->power_hook(beep, true);
Takashi Iwaie914b252013-03-18 11:29:56 +010032 beep->playing = 1;
33 }
Takashi Iwai411fe852009-12-27 10:25:58 +010034 snd_hda_codec_write(codec, beep->nid, 0,
Takashi Iwaie914b252013-03-18 11:29:56 +010035 AC_VERB_SET_BEEP_CONTROL, tone);
36 if (!tone && beep->playing) {
37 beep->playing = 0;
Takashi Iwai5ccf8352015-03-18 09:23:10 +010038 if (beep->power_hook)
39 beep->power_hook(beep, false);
Takashi Iwaie914b252013-03-18 11:29:56 +010040 snd_hda_power_down(codec);
41 }
Matthew Ranostay1cd22242008-07-18 18:20:52 +020042}
43
Takashi Iwai5ccf8352015-03-18 09:23:10 +010044static void snd_hda_generate_beep(struct work_struct *work)
45{
46 struct hda_beep *beep =
47 container_of(work, struct hda_beep, beep_work);
48
49 if (beep->enabled)
50 generate_tone(beep, beep->tone);
51}
52
Takashi Iwaifa797962009-05-19 12:50:04 +020053/* (non-standard) Linear beep tone calculation for IDT/STAC codecs
54 *
55 * The tone frequency of beep generator on IDT/STAC codecs is
56 * defined from the 8bit tone parameter, in Hz,
57 * freq = 48000 * (257 - tone) / 1024
Paul Vojta369693d2009-07-08 23:57:46 -070058 * that is from 12kHz to 93.75Hz in steps of 46.875 Hz
Takashi Iwaifa797962009-05-19 12:50:04 +020059 */
60static int beep_linear_tone(struct hda_beep *beep, int hz)
61{
Paul Vojta369693d2009-07-08 23:57:46 -070062 if (hz <= 0)
63 return 0;
Takashi Iwaifa797962009-05-19 12:50:04 +020064 hz *= 1000; /* fixed point */
Paul Vojta369693d2009-07-08 23:57:46 -070065 hz = hz - DIGBEEP_HZ_MIN
66 + DIGBEEP_HZ_STEP / 2; /* round to nearest step */
Takashi Iwaifa797962009-05-19 12:50:04 +020067 if (hz < 0)
68 hz = 0; /* turn off PC beep*/
69 else if (hz >= (DIGBEEP_HZ_MAX - DIGBEEP_HZ_MIN))
Paul Vojta369693d2009-07-08 23:57:46 -070070 hz = 1; /* max frequency */
Takashi Iwaifa797962009-05-19 12:50:04 +020071 else {
72 hz /= DIGBEEP_HZ_STEP;
Paul Vojta369693d2009-07-08 23:57:46 -070073 hz = 255 - hz;
Takashi Iwaifa797962009-05-19 12:50:04 +020074 }
75 return hz;
76}
77
78/* HD-audio standard beep tone parameter calculation
79 *
80 * The tone frequency in Hz is calculated as
81 * freq = 48000 / (tone * 4)
82 * from 47Hz to 12kHz
83 */
84static int beep_standard_tone(struct hda_beep *beep, int hz)
85{
86 if (hz <= 0)
87 return 0; /* disabled */
88 hz = 12000 / hz;
89 if (hz > 0xff)
90 return 0xff;
91 if (hz <= 0)
92 return 1;
93 return hz;
94}
95
Matthew Ranostay1cd22242008-07-18 18:20:52 +020096static int snd_hda_beep_event(struct input_dev *dev, unsigned int type,
97 unsigned int code, int hz)
98{
99 struct hda_beep *beep = input_get_drvdata(dev);
100
101 switch (code) {
102 case SND_BELL:
103 if (hz)
104 hz = 1000;
Gustavo A. R. Silvac0dbbda2020-07-08 15:32:36 -0500105 fallthrough;
Matthew Ranostay1cd22242008-07-18 18:20:52 +0200106 case SND_TONE:
Takashi Iwaifa797962009-05-19 12:50:04 +0200107 if (beep->linear_tone)
108 beep->tone = beep_linear_tone(beep, hz);
109 else
110 beep->tone = beep_standard_tone(beep, hz);
Matthew Ranostay1cd22242008-07-18 18:20:52 +0200111 break;
112 default:
113 return -1;
114 }
Matthew Ranostay1cd22242008-07-18 18:20:52 +0200115
116 /* schedule beep event */
117 schedule_work(&beep->beep_work);
118 return 0;
119}
120
Takashi Iwaie914b252013-03-18 11:29:56 +0100121static void turn_off_beep(struct hda_beep *beep)
122{
123 cancel_work_sync(&beep->beep_work);
124 if (beep->playing) {
125 /* turn off beep */
Takashi Iwai5ccf8352015-03-18 09:23:10 +0100126 generate_tone(beep, 0);
Takashi Iwaie914b252013-03-18 11:29:56 +0100127 }
128}
129
Takashi Iwai95a962c2014-10-29 16:03:58 +0100130/**
131 * snd_hda_enable_beep_device - Turn on/off beep sound
132 * @codec: the HDA codec
133 * @enable: flag to turn on/off
134 */
Jaroslav Kysela123c07a2009-10-21 14:48:23 +0200135int snd_hda_enable_beep_device(struct hda_codec *codec, int enable)
136{
137 struct hda_beep *beep = codec->beep;
Takashi Iwai3fd877d2012-07-03 17:36:35 +0200138 if (!beep)
Jaroslav Kysela13dab082009-11-03 14:29:50 +0100139 return 0;
Takashi Iwai3fd877d2012-07-03 17:36:35 +0200140 enable = !!enable;
Jaroslav Kysela13dab082009-11-03 14:29:50 +0100141 if (beep->enabled != enable) {
142 beep->enabled = enable;
Takashi Iwaie914b252013-03-18 11:29:56 +0100143 if (!enable)
144 turn_off_beep(beep);
Jaroslav Kysela123c07a2009-10-21 14:48:23 +0200145 return 1;
146 }
147 return 0;
148}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100149EXPORT_SYMBOL_GPL(snd_hda_enable_beep_device);
Jaroslav Kysela123c07a2009-10-21 14:48:23 +0200150
Takashi Iwai45571bb2019-01-24 09:45:36 +0100151static int beep_dev_register(struct snd_device *device)
152{
153 struct hda_beep *beep = device->device_data;
154 int err;
155
156 err = input_register_device(beep->dev);
157 if (!err)
158 beep->registered = true;
159 return err;
160}
161
162static int beep_dev_disconnect(struct snd_device *device)
163{
164 struct hda_beep *beep = device->device_data;
165
166 if (beep->registered)
167 input_unregister_device(beep->dev);
168 else
169 input_free_device(beep->dev);
170 turn_off_beep(beep);
171 return 0;
172}
173
174static int beep_dev_free(struct snd_device *device)
175{
176 struct hda_beep *beep = device->device_data;
177
178 beep->codec->beep = NULL;
179 kfree(beep);
180 return 0;
181}
182
Takashi Iwai95a962c2014-10-29 16:03:58 +0100183/**
184 * snd_hda_attach_beep_device - Attach a beep input device
185 * @codec: the HDA codec
186 * @nid: beep NID
187 *
188 * Attach a beep object to the given widget. If beep hint is turned off
189 * explicitly or beep_mode of the codec is turned off, this doesn't nothing.
190 *
Takashi Iwai95a962c2014-10-29 16:03:58 +0100191 * Currently, only one beep device is allowed to each codec.
192 */
Jaroslav Kysela123c07a2009-10-21 14:48:23 +0200193int snd_hda_attach_beep_device(struct hda_codec *codec, int nid)
194{
Takashi Iwai41f394a2020-01-03 09:16:24 +0100195 static const struct snd_device_ops ops = {
Takashi Iwai45571bb2019-01-24 09:45:36 +0100196 .dev_register = beep_dev_register,
197 .dev_disconnect = beep_dev_disconnect,
198 .dev_free = beep_dev_free,
199 };
200 struct input_dev *input_dev;
Jaroslav Kysela123c07a2009-10-21 14:48:23 +0200201 struct hda_beep *beep;
Takashi Iwai257dfb42012-07-03 17:35:05 +0200202 int err;
Jaroslav Kysela123c07a2009-10-21 14:48:23 +0200203
204 if (!snd_hda_get_bool_hint(codec, "beep"))
Takashi Iwai9bb1fe32009-11-16 15:33:49 +0100205 return 0; /* disabled explicitly by hints */
206 if (codec->beep_mode == HDA_BEEP_MODE_OFF)
207 return 0; /* disabled by module option */
Jaroslav Kysela123c07a2009-10-21 14:48:23 +0200208
209 beep = kzalloc(sizeof(*beep), GFP_KERNEL);
210 if (beep == NULL)
211 return -ENOMEM;
212 snprintf(beep->phys, sizeof(beep->phys),
Takashi Iwai6efdd852015-02-27 16:09:22 +0100213 "card%d/codec#%d/beep0", codec->card->number, codec->addr);
Matthew Ranostay1cd22242008-07-18 18:20:52 +0200214 /* enable linear scale */
Takashi Iwai8bc0a842013-03-18 11:34:45 +0100215 snd_hda_codec_write_cache(codec, nid, 0,
Matthew Ranostay1cd22242008-07-18 18:20:52 +0200216 AC_VERB_SET_DIGI_CONVERT_2, 0x01);
217
218 beep->nid = nid;
Matthew Ranostay1cd22242008-07-18 18:20:52 +0200219 beep->codec = codec;
Matthew Ranostay1cd22242008-07-18 18:20:52 +0200220 codec->beep = beep;
221
222 INIT_WORK(&beep->beep_work, &snd_hda_generate_beep);
Jaroslav Kysela123c07a2009-10-21 14:48:23 +0200223 mutex_init(&beep->mutex);
224
Takashi Iwai45571bb2019-01-24 09:45:36 +0100225 input_dev = input_allocate_device();
226 if (!input_dev) {
227 err = -ENOMEM;
228 goto err_free;
Jaroslav Kysela2dca0bb2009-11-13 18:41:52 +0100229 }
230
Takashi Iwai45571bb2019-01-24 09:45:36 +0100231 /* setup digital beep device */
232 input_dev->name = "HDA Digital PCBeep";
233 input_dev->phys = beep->phys;
234 input_dev->id.bustype = BUS_PCI;
235 input_dev->dev.parent = &codec->card->card_dev;
236
237 input_dev->id.vendor = codec->core.vendor_id >> 16;
238 input_dev->id.product = codec->core.vendor_id & 0xffff;
239 input_dev->id.version = 0x01;
240
241 input_dev->evbit[0] = BIT_MASK(EV_SND);
242 input_dev->sndbit[0] = BIT_MASK(SND_BELL) | BIT_MASK(SND_TONE);
243 input_dev->event = snd_hda_beep_event;
244 input_set_drvdata(input_dev, beep);
245
246 beep->dev = input_dev;
247
248 err = snd_device_new(codec->card, SNDRV_DEV_JACK, beep, &ops);
249 if (err < 0)
250 goto err_input;
251
Matthew Ranostay1cd22242008-07-18 18:20:52 +0200252 return 0;
Takashi Iwai45571bb2019-01-24 09:45:36 +0100253
254 err_input:
255 input_free_device(beep->dev);
256 err_free:
257 kfree(beep);
258 codec->beep = NULL;
259 return err;
Matthew Ranostay1cd22242008-07-18 18:20:52 +0200260}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100261EXPORT_SYMBOL_GPL(snd_hda_attach_beep_device);
Matthew Ranostay1cd22242008-07-18 18:20:52 +0200262
Takashi Iwai95a962c2014-10-29 16:03:58 +0100263/**
264 * snd_hda_detach_beep_device - Detach the beep device
265 * @codec: the HDA codec
266 */
Matthew Ranostay1cd22242008-07-18 18:20:52 +0200267void snd_hda_detach_beep_device(struct hda_codec *codec)
268{
Takashi Iwai45571bb2019-01-24 09:45:36 +0100269 if (!codec->bus->shutdown && codec->beep)
270 snd_device_free(codec->card, codec->beep);
Matthew Ranostay1cd22242008-07-18 18:20:52 +0200271}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100272EXPORT_SYMBOL_GPL(snd_hda_detach_beep_device);
Takashi Iwai0401e852012-07-03 17:27:57 +0200273
David Henningsson265d9312012-08-13 17:10:46 +0200274static bool ctl_has_mute(struct snd_kcontrol *kcontrol)
275{
276 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
277 return query_amp_caps(codec, get_amp_nid(kcontrol),
278 get_amp_direction(kcontrol)) & AC_AMPCAP_MUTE;
279}
280
Takashi Iwai0401e852012-07-03 17:27:57 +0200281/* get/put callbacks for beep mute mixer switches */
Takashi Iwai95a962c2014-10-29 16:03:58 +0100282
283/**
284 * snd_hda_mixer_amp_switch_get_beep - Get callback for beep controls
285 * @kcontrol: ctl element
286 * @ucontrol: pointer to get/store the data
287 */
Takashi Iwai0401e852012-07-03 17:27:57 +0200288int snd_hda_mixer_amp_switch_get_beep(struct snd_kcontrol *kcontrol,
289 struct snd_ctl_elem_value *ucontrol)
290{
291 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
292 struct hda_beep *beep = codec->beep;
Takashi Iwai0ad3f0b2020-04-07 10:44:01 +0200293 int chs = get_amp_channels(kcontrol);
294
David Henningsson265d9312012-08-13 17:10:46 +0200295 if (beep && (!beep->enabled || !ctl_has_mute(kcontrol))) {
Takashi Iwai0ad3f0b2020-04-07 10:44:01 +0200296 if (chs & 1)
297 ucontrol->value.integer.value[0] = beep->enabled;
298 if (chs & 2)
David Henningsson265d9312012-08-13 17:10:46 +0200299 ucontrol->value.integer.value[1] = beep->enabled;
Takashi Iwai0401e852012-07-03 17:27:57 +0200300 return 0;
301 }
302 return snd_hda_mixer_amp_switch_get(kcontrol, ucontrol);
303}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100304EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_switch_get_beep);
Takashi Iwai0401e852012-07-03 17:27:57 +0200305
Takashi Iwai95a962c2014-10-29 16:03:58 +0100306/**
307 * snd_hda_mixer_amp_switch_put_beep - Put callback for beep controls
308 * @kcontrol: ctl element
309 * @ucontrol: pointer to get/store the data
310 */
Takashi Iwai0401e852012-07-03 17:27:57 +0200311int snd_hda_mixer_amp_switch_put_beep(struct snd_kcontrol *kcontrol,
312 struct snd_ctl_elem_value *ucontrol)
313{
314 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
315 struct hda_beep *beep = codec->beep;
David Henningsson14bc9c62012-08-10 13:29:32 +0200316 if (beep) {
317 u8 chs = get_amp_channels(kcontrol);
318 int enable = 0;
319 long *valp = ucontrol->value.integer.value;
320 if (chs & 1) {
321 enable |= *valp;
322 valp++;
323 }
324 if (chs & 2)
325 enable |= *valp;
326 snd_hda_enable_beep_device(codec, enable);
327 }
David Henningsson265d9312012-08-13 17:10:46 +0200328 if (!ctl_has_mute(kcontrol))
329 return 0;
Takashi Iwai0401e852012-07-03 17:27:57 +0200330 return snd_hda_mixer_amp_switch_put(kcontrol, ucontrol);
331}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100332EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_switch_put_beep);