2 * Digital Beep Input Interface for HD-audio codec
4 * Author: Matthew Ranostay <mranostay@embeddedalley.com>
5 * Copyright (c) 2008 Embedded Alley Solutions Inc
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.
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.
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
22 #include <linux/input.h>
23 #include <linux/pci.h>
24 #include <linux/slab.h>
25 #include <linux/workqueue.h>
26 #include <sound/core.h>
28 #include "hda_local.h"
31 DIGBEEP_HZ_STEP
= 46875, /* 46.875 Hz */
32 DIGBEEP_HZ_MIN
= 93750, /* 93.750 Hz */
33 DIGBEEP_HZ_MAX
= 12000000, /* 12 KHz */
36 static void snd_hda_generate_beep(struct work_struct
*work
)
38 struct hda_beep
*beep
=
39 container_of(work
, struct hda_beep
, beep_work
);
40 struct hda_codec
*codec
= beep
->codec
;
46 snd_hda_codec_write(codec
, beep
->nid
, 0,
47 AC_VERB_SET_BEEP_CONTROL
, beep
->tone
);
50 /* (non-standard) Linear beep tone calculation for IDT/STAC codecs
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
55 * that is from 12kHz to 93.75Hz in steps of 46.875 Hz
57 static int beep_linear_tone(struct hda_beep
*beep
, int hz
)
61 hz
*= 1000; /* fixed point */
62 hz
= hz
- DIGBEEP_HZ_MIN
63 + DIGBEEP_HZ_STEP
/ 2; /* round to nearest step */
65 hz
= 0; /* turn off PC beep*/
66 else if (hz
>= (DIGBEEP_HZ_MAX
- DIGBEEP_HZ_MIN
))
67 hz
= 1; /* max frequency */
69 hz
/= DIGBEEP_HZ_STEP
;
75 /* HD-audio standard beep tone parameter calculation
77 * The tone frequency in Hz is calculated as
78 * freq = 48000 / (tone * 4)
81 static int beep_standard_tone(struct hda_beep
*beep
, int hz
)
84 return 0; /* disabled */
93 static int snd_hda_beep_event(struct input_dev
*dev
, unsigned int type
,
94 unsigned int code
, int hz
)
96 struct hda_beep
*beep
= input_get_drvdata(dev
);
103 if (beep
->linear_tone
)
104 beep
->tone
= beep_linear_tone(beep
, hz
);
106 beep
->tone
= beep_standard_tone(beep
, hz
);
112 /* schedule beep event */
113 schedule_work(&beep
->beep_work
);
117 static void snd_hda_do_detach(struct hda_beep
*beep
)
119 input_unregister_device(beep
->dev
);
121 cancel_work_sync(&beep
->beep_work
);
122 /* turn off beep for sure */
123 snd_hda_codec_write(beep
->codec
, beep
->nid
, 0,
124 AC_VERB_SET_BEEP_CONTROL
, 0);
127 static int snd_hda_do_attach(struct hda_beep
*beep
)
129 struct input_dev
*input_dev
;
130 struct hda_codec
*codec
= beep
->codec
;
133 input_dev
= input_allocate_device();
135 printk(KERN_INFO
"hda_beep: unable to allocate input device\n");
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
;
144 input_dev
->id
.vendor
= codec
->vendor_id
>> 16;
145 input_dev
->id
.product
= codec
->vendor_id
& 0xffff;
146 input_dev
->id
.version
= 0x01;
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
);
154 err
= input_register_device(input_dev
);
156 input_free_device(input_dev
);
157 printk(KERN_INFO
"hda_beep: unable to register input device\n");
160 beep
->dev
= input_dev
;
164 static void snd_hda_do_register(struct work_struct
*work
)
166 struct hda_beep
*beep
=
167 container_of(work
, struct hda_beep
, register_work
);
169 mutex_lock(&beep
->mutex
);
170 if (beep
->enabled
&& !beep
->dev
)
171 snd_hda_do_attach(beep
);
172 mutex_unlock(&beep
->mutex
);
175 static void snd_hda_do_unregister(struct work_struct
*work
)
177 struct hda_beep
*beep
=
178 container_of(work
, struct hda_beep
, unregister_work
.work
);
180 mutex_lock(&beep
->mutex
);
181 if (!beep
->enabled
&& beep
->dev
)
182 snd_hda_do_detach(beep
);
183 mutex_unlock(&beep
->mutex
);
186 int snd_hda_enable_beep_device(struct hda_codec
*codec
, int enable
)
188 struct hda_beep
*beep
= codec
->beep
;
192 if (beep
->enabled
!= enable
) {
193 beep
->enabled
= enable
;
196 snd_hda_codec_write(beep
->codec
, beep
->nid
, 0,
197 AC_VERB_SET_BEEP_CONTROL
, 0);
199 if (beep
->mode
== HDA_BEEP_MODE_SWREG
) {
201 cancel_delayed_work(&beep
->unregister_work
);
202 schedule_work(&beep
->register_work
);
204 schedule_delayed_work(&beep
->unregister_work
,
212 EXPORT_SYMBOL_HDA(snd_hda_enable_beep_device
);
214 int snd_hda_attach_beep_device(struct hda_codec
*codec
, int nid
)
216 struct hda_beep
*beep
;
218 if (!snd_hda_get_bool_hint(codec
, "beep"))
219 return 0; /* disabled explicitly by hints */
220 if (codec
->beep_mode
== HDA_BEEP_MODE_OFF
)
221 return 0; /* disabled by module option */
223 beep
= kzalloc(sizeof(*beep
), GFP_KERNEL
);
226 snprintf(beep
->phys
, sizeof(beep
->phys
),
227 "card%d/codec#%d/beep0", codec
->bus
->card
->number
, codec
->addr
);
228 /* enable linear scale */
229 snd_hda_codec_write(codec
, nid
, 0,
230 AC_VERB_SET_DIGI_CONVERT_2
, 0x01);
234 beep
->mode
= codec
->beep_mode
;
237 INIT_WORK(&beep
->register_work
, &snd_hda_do_register
);
238 INIT_DELAYED_WORK(&beep
->unregister_work
, &snd_hda_do_unregister
);
239 INIT_WORK(&beep
->beep_work
, &snd_hda_generate_beep
);
240 mutex_init(&beep
->mutex
);
242 if (beep
->mode
== HDA_BEEP_MODE_ON
) {
243 int err
= snd_hda_do_attach(beep
);
253 EXPORT_SYMBOL_HDA(snd_hda_attach_beep_device
);
255 void snd_hda_detach_beep_device(struct hda_codec
*codec
)
257 struct hda_beep
*beep
= codec
->beep
;
259 cancel_work_sync(&beep
->register_work
);
260 cancel_delayed_work(&beep
->unregister_work
);
262 snd_hda_do_detach(beep
);
267 EXPORT_SYMBOL_HDA(snd_hda_detach_beep_device
);