2011-10-27 20:12:46 +00:00
|
|
|
/*
|
|
|
|
* Jack-detection handling for HD-audio
|
|
|
|
*
|
|
|
|
* Copyright (c) 2011 Takashi Iwai <tiwai@suse.de>
|
|
|
|
*
|
|
|
|
* This driver is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __SOUND_HDA_JACK_H
|
|
|
|
#define __SOUND_HDA_JACK_H
|
|
|
|
|
2014-09-23 07:04:49 +00:00
|
|
|
#include <linux/err.h>
|
|
|
|
|
2012-05-07 15:42:31 +00:00
|
|
|
struct auto_pin_cfg;
|
2012-09-25 09:30:59 +00:00
|
|
|
struct hda_jack_tbl;
|
2014-09-11 13:22:46 +00:00
|
|
|
struct hda_jack_callback;
|
2012-09-25 09:30:59 +00:00
|
|
|
|
2014-09-11 13:22:46 +00:00
|
|
|
typedef void (*hda_jack_callback_fn) (struct hda_codec *, struct hda_jack_callback *);
|
|
|
|
|
|
|
|
struct hda_jack_callback {
|
2016-02-09 09:23:52 +00:00
|
|
|
hda_nid_t nid;
|
2014-09-11 13:22:46 +00:00
|
|
|
hda_jack_callback_fn func;
|
|
|
|
unsigned int private_data; /* arbitrary data */
|
|
|
|
struct hda_jack_callback *next;
|
|
|
|
};
|
2012-05-07 15:42:31 +00:00
|
|
|
|
2011-10-27 20:12:46 +00:00
|
|
|
struct hda_jack_tbl {
|
|
|
|
hda_nid_t nid;
|
2011-10-27 23:16:55 +00:00
|
|
|
unsigned char tag; /* unsol event tag */
|
2014-09-11 13:22:46 +00:00
|
|
|
struct hda_jack_callback *callback;
|
2011-10-27 23:16:55 +00:00
|
|
|
/* jack-detection stuff */
|
2011-10-27 20:12:46 +00:00
|
|
|
unsigned int pin_sense; /* cached pin-sense value */
|
2011-10-27 23:16:55 +00:00
|
|
|
unsigned int jack_detect:1; /* capable of jack-detection? */
|
2011-10-27 20:12:46 +00:00
|
|
|
unsigned int jack_dirty:1; /* needs to update? */
|
2012-06-04 07:33:51 +00:00
|
|
|
unsigned int phantom_jack:1; /* a fixed, always present port? */
|
2013-11-07 12:38:24 +00:00
|
|
|
unsigned int block_report:1; /* in a transitional state - do not report to userspace */
|
2012-11-19 18:48:07 +00:00
|
|
|
hda_nid_t gating_jack; /* valid when gating jack plugged */
|
|
|
|
hda_nid_t gated_jack; /* gated is dependent on this jack */
|
2011-11-02 07:54:51 +00:00
|
|
|
int type;
|
|
|
|
struct snd_jack *jack;
|
2011-10-27 20:12:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct hda_jack_tbl *
|
|
|
|
snd_hda_jack_tbl_get(struct hda_codec *codec, hda_nid_t nid);
|
2011-10-27 23:16:55 +00:00
|
|
|
struct hda_jack_tbl *
|
|
|
|
snd_hda_jack_tbl_get_from_tag(struct hda_codec *codec, unsigned char tag);
|
2011-10-27 20:12:46 +00:00
|
|
|
|
|
|
|
void snd_hda_jack_tbl_clear(struct hda_codec *codec);
|
|
|
|
|
|
|
|
void snd_hda_jack_set_dirty_all(struct hda_codec *codec);
|
|
|
|
|
2014-09-11 12:06:53 +00:00
|
|
|
int snd_hda_jack_detect_enable(struct hda_codec *codec, hda_nid_t nid);
|
2014-09-11 13:22:46 +00:00
|
|
|
struct hda_jack_callback *
|
2014-09-11 12:39:09 +00:00
|
|
|
snd_hda_jack_detect_enable_callback(struct hda_codec *codec, hda_nid_t nid,
|
2014-09-11 13:22:46 +00:00
|
|
|
hda_jack_callback_fn cb);
|
2012-09-25 09:30:59 +00:00
|
|
|
|
2012-11-19 18:48:07 +00:00
|
|
|
int snd_hda_jack_set_gating_jack(struct hda_codec *codec, hda_nid_t gated_nid,
|
|
|
|
hda_nid_t gating_nid);
|
2011-10-27 20:12:46 +00:00
|
|
|
|
|
|
|
u32 snd_hda_pin_sense(struct hda_codec *codec, hda_nid_t nid);
|
ALSA: hda - Add snd_hda_jack_detect_state() helper function
snd_hda_jack_detect() function returns a boolean value for a jack
plugged in or not, but it also returns always true when the
corresponding pin is phantom (i.e. fixed). This is OK in most cases,
but it makes the generic parser misbehaving about the auto-mute or
auto-mic switching, e.g. when one of headphone pins is a fixed.
Namely, the driver decides whether to mute the speaker or not, just
depending on the headphone plug state: if one of the headphone jacks
is seen as active, then the speaker is muted. Thus this will result
always in the muted speaker output.
So, the problem is the function returns a boolean, after all, although
we need to think of "phantom" jack. Now a new function,
snd_hda_jack_detect_state() is introduced to return these tristates.
The generic parser uses this function for checking the headphone or
mic jack states.
Meanwhile, the behavior of snd_hda_jack_detect() is kept as is, for
keeping compatibility in other driver codes.
Acked-by: David Henningsson <david.henningsson@canonical.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
2013-07-19 14:59:46 +00:00
|
|
|
|
|
|
|
/* the jack state returned from snd_hda_jack_detect_state() */
|
|
|
|
enum {
|
|
|
|
HDA_JACK_NOT_PRESENT, HDA_JACK_PRESENT, HDA_JACK_PHANTOM,
|
|
|
|
};
|
|
|
|
|
|
|
|
int snd_hda_jack_detect_state(struct hda_codec *codec, hda_nid_t nid);
|
|
|
|
|
2014-10-29 15:03:58 +00:00
|
|
|
/**
|
|
|
|
* snd_hda_jack_detect - Detect the jack
|
|
|
|
* @codec: the HDA codec
|
|
|
|
* @nid: pin NID to check jack detection
|
|
|
|
*/
|
ALSA: hda - Add snd_hda_jack_detect_state() helper function
snd_hda_jack_detect() function returns a boolean value for a jack
plugged in or not, but it also returns always true when the
corresponding pin is phantom (i.e. fixed). This is OK in most cases,
but it makes the generic parser misbehaving about the auto-mute or
auto-mic switching, e.g. when one of headphone pins is a fixed.
Namely, the driver decides whether to mute the speaker or not, just
depending on the headphone plug state: if one of the headphone jacks
is seen as active, then the speaker is muted. Thus this will result
always in the muted speaker output.
So, the problem is the function returns a boolean, after all, although
we need to think of "phantom" jack. Now a new function,
snd_hda_jack_detect_state() is introduced to return these tristates.
The generic parser uses this function for checking the headphone or
mic jack states.
Meanwhile, the behavior of snd_hda_jack_detect() is kept as is, for
keeping compatibility in other driver codes.
Acked-by: David Henningsson <david.henningsson@canonical.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
2013-07-19 14:59:46 +00:00
|
|
|
static inline bool snd_hda_jack_detect(struct hda_codec *codec, hda_nid_t nid)
|
|
|
|
{
|
|
|
|
return snd_hda_jack_detect_state(codec, nid) != HDA_JACK_NOT_PRESENT;
|
|
|
|
}
|
2011-10-27 20:12:46 +00:00
|
|
|
|
2012-02-13 10:41:42 +00:00
|
|
|
bool is_jack_detectable(struct hda_codec *codec, hda_nid_t nid);
|
2011-10-27 20:12:46 +00:00
|
|
|
|
2011-10-27 22:03:22 +00:00
|
|
|
int snd_hda_jack_add_kctl(struct hda_codec *codec, hda_nid_t nid,
|
2015-11-12 10:52:13 +00:00
|
|
|
const char *name, bool phantom_jack);
|
2011-10-27 22:03:22 +00:00
|
|
|
int snd_hda_jack_add_kctls(struct hda_codec *codec,
|
|
|
|
const struct auto_pin_cfg *cfg);
|
|
|
|
|
|
|
|
void snd_hda_jack_report_sync(struct hda_codec *codec);
|
|
|
|
|
2012-09-25 09:30:59 +00:00
|
|
|
void snd_hda_jack_unsol_event(struct hda_codec *codec, unsigned int res);
|
2011-10-27 22:03:22 +00:00
|
|
|
|
2012-10-09 13:04:21 +00:00
|
|
|
void snd_hda_jack_poll_all(struct hda_codec *codec);
|
|
|
|
|
2011-10-27 20:12:46 +00:00
|
|
|
#endif /* __SOUND_HDA_JACK_H */
|