mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-06-17 20:25:19 +00:00
Merge branch 'fix/hda' into for-linus
This commit is contained in:
commit
d2f927d42a
8 changed files with 40 additions and 52 deletions
|
@ -589,6 +589,7 @@ int /*__devinit*/ snd_hda_bus_new(struct snd_card *card,
|
||||||
bus->ops = temp->ops;
|
bus->ops = temp->ops;
|
||||||
|
|
||||||
mutex_init(&bus->cmd_mutex);
|
mutex_init(&bus->cmd_mutex);
|
||||||
|
mutex_init(&bus->prepare_mutex);
|
||||||
INIT_LIST_HEAD(&bus->codec_list);
|
INIT_LIST_HEAD(&bus->codec_list);
|
||||||
|
|
||||||
snprintf(bus->workq_name, sizeof(bus->workq_name),
|
snprintf(bus->workq_name, sizeof(bus->workq_name),
|
||||||
|
@ -1068,7 +1069,6 @@ int /*__devinit*/ snd_hda_codec_new(struct hda_bus *bus,
|
||||||
codec->addr = codec_addr;
|
codec->addr = codec_addr;
|
||||||
mutex_init(&codec->spdif_mutex);
|
mutex_init(&codec->spdif_mutex);
|
||||||
mutex_init(&codec->control_mutex);
|
mutex_init(&codec->control_mutex);
|
||||||
mutex_init(&codec->prepare_mutex);
|
|
||||||
init_hda_cache(&codec->amp_cache, sizeof(struct hda_amp_info));
|
init_hda_cache(&codec->amp_cache, sizeof(struct hda_amp_info));
|
||||||
init_hda_cache(&codec->cmd_cache, sizeof(struct hda_cache_head));
|
init_hda_cache(&codec->cmd_cache, sizeof(struct hda_cache_head));
|
||||||
snd_array_init(&codec->mixers, sizeof(struct hda_nid_item), 32);
|
snd_array_init(&codec->mixers, sizeof(struct hda_nid_item), 32);
|
||||||
|
@ -1213,6 +1213,7 @@ void snd_hda_codec_setup_stream(struct hda_codec *codec, hda_nid_t nid,
|
||||||
u32 stream_tag,
|
u32 stream_tag,
|
||||||
int channel_id, int format)
|
int channel_id, int format)
|
||||||
{
|
{
|
||||||
|
struct hda_codec *c;
|
||||||
struct hda_cvt_setup *p;
|
struct hda_cvt_setup *p;
|
||||||
unsigned int oldval, newval;
|
unsigned int oldval, newval;
|
||||||
int i;
|
int i;
|
||||||
|
@ -1253,10 +1254,12 @@ void snd_hda_codec_setup_stream(struct hda_codec *codec, hda_nid_t nid,
|
||||||
p->dirty = 0;
|
p->dirty = 0;
|
||||||
|
|
||||||
/* make other inactive cvts with the same stream-tag dirty */
|
/* make other inactive cvts with the same stream-tag dirty */
|
||||||
for (i = 0; i < codec->cvt_setups.used; i++) {
|
list_for_each_entry(c, &codec->bus->codec_list, list) {
|
||||||
p = snd_array_elem(&codec->cvt_setups, i);
|
for (i = 0; i < c->cvt_setups.used; i++) {
|
||||||
if (!p->active && p->stream_tag == stream_tag)
|
p = snd_array_elem(&c->cvt_setups, i);
|
||||||
p->dirty = 1;
|
if (!p->active && p->stream_tag == stream_tag)
|
||||||
|
p->dirty = 1;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL_HDA(snd_hda_codec_setup_stream);
|
EXPORT_SYMBOL_HDA(snd_hda_codec_setup_stream);
|
||||||
|
@ -1306,12 +1309,16 @@ static void really_cleanup_stream(struct hda_codec *codec,
|
||||||
/* clean up the all conflicting obsolete streams */
|
/* clean up the all conflicting obsolete streams */
|
||||||
static void purify_inactive_streams(struct hda_codec *codec)
|
static void purify_inactive_streams(struct hda_codec *codec)
|
||||||
{
|
{
|
||||||
|
struct hda_codec *c;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
for (i = 0; i < codec->cvt_setups.used; i++) {
|
list_for_each_entry(c, &codec->bus->codec_list, list) {
|
||||||
struct hda_cvt_setup *p = snd_array_elem(&codec->cvt_setups, i);
|
for (i = 0; i < c->cvt_setups.used; i++) {
|
||||||
if (p->dirty)
|
struct hda_cvt_setup *p;
|
||||||
really_cleanup_stream(codec, p);
|
p = snd_array_elem(&c->cvt_setups, i);
|
||||||
|
if (p->dirty)
|
||||||
|
really_cleanup_stream(c, p);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -3502,11 +3509,11 @@ int snd_hda_codec_prepare(struct hda_codec *codec,
|
||||||
struct snd_pcm_substream *substream)
|
struct snd_pcm_substream *substream)
|
||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
mutex_lock(&codec->prepare_mutex);
|
mutex_lock(&codec->bus->prepare_mutex);
|
||||||
ret = hinfo->ops.prepare(hinfo, codec, stream, format, substream);
|
ret = hinfo->ops.prepare(hinfo, codec, stream, format, substream);
|
||||||
if (ret >= 0)
|
if (ret >= 0)
|
||||||
purify_inactive_streams(codec);
|
purify_inactive_streams(codec);
|
||||||
mutex_unlock(&codec->prepare_mutex);
|
mutex_unlock(&codec->bus->prepare_mutex);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL_HDA(snd_hda_codec_prepare);
|
EXPORT_SYMBOL_HDA(snd_hda_codec_prepare);
|
||||||
|
@ -3515,9 +3522,9 @@ void snd_hda_codec_cleanup(struct hda_codec *codec,
|
||||||
struct hda_pcm_stream *hinfo,
|
struct hda_pcm_stream *hinfo,
|
||||||
struct snd_pcm_substream *substream)
|
struct snd_pcm_substream *substream)
|
||||||
{
|
{
|
||||||
mutex_lock(&codec->prepare_mutex);
|
mutex_lock(&codec->bus->prepare_mutex);
|
||||||
hinfo->ops.cleanup(hinfo, codec, substream);
|
hinfo->ops.cleanup(hinfo, codec, substream);
|
||||||
mutex_unlock(&codec->prepare_mutex);
|
mutex_unlock(&codec->bus->prepare_mutex);
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL_HDA(snd_hda_codec_cleanup);
|
EXPORT_SYMBOL_HDA(snd_hda_codec_cleanup);
|
||||||
|
|
||||||
|
|
|
@ -648,6 +648,7 @@ struct hda_bus {
|
||||||
struct hda_codec *caddr_tbl[HDA_MAX_CODEC_ADDRESS + 1];
|
struct hda_codec *caddr_tbl[HDA_MAX_CODEC_ADDRESS + 1];
|
||||||
|
|
||||||
struct mutex cmd_mutex;
|
struct mutex cmd_mutex;
|
||||||
|
struct mutex prepare_mutex;
|
||||||
|
|
||||||
/* unsolicited event queue */
|
/* unsolicited event queue */
|
||||||
struct hda_bus_unsolicited *unsol;
|
struct hda_bus_unsolicited *unsol;
|
||||||
|
@ -826,7 +827,6 @@ struct hda_codec {
|
||||||
|
|
||||||
struct mutex spdif_mutex;
|
struct mutex spdif_mutex;
|
||||||
struct mutex control_mutex;
|
struct mutex control_mutex;
|
||||||
struct mutex prepare_mutex;
|
|
||||||
unsigned int spdif_status; /* IEC958 status bits */
|
unsigned int spdif_status; /* IEC958 status bits */
|
||||||
unsigned short spdif_ctls; /* SPDIF control bits */
|
unsigned short spdif_ctls; /* SPDIF control bits */
|
||||||
unsigned int spdif_in_enable; /* SPDIF input enable? */
|
unsigned int spdif_in_enable; /* SPDIF input enable? */
|
||||||
|
|
|
@ -596,6 +596,8 @@ void snd_hda_eld_proc_free(struct hda_codec *codec, struct hdmi_eld *eld)
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL_HDA(snd_hda_eld_proc_free);
|
EXPORT_SYMBOL_HDA(snd_hda_eld_proc_free);
|
||||||
|
|
||||||
|
#endif /* CONFIG_PROC_FS */
|
||||||
|
|
||||||
/* update PCM info based on ELD */
|
/* update PCM info based on ELD */
|
||||||
void hdmi_eld_update_pcm_info(struct hdmi_eld *eld, struct hda_pcm_stream *pcm,
|
void hdmi_eld_update_pcm_info(struct hdmi_eld *eld, struct hda_pcm_stream *pcm,
|
||||||
struct hda_pcm_stream *codec_pars)
|
struct hda_pcm_stream *codec_pars)
|
||||||
|
@ -644,5 +646,3 @@ void hdmi_eld_update_pcm_info(struct hdmi_eld *eld, struct hda_pcm_stream *pcm,
|
||||||
pcm->maxbps = min(pcm->maxbps, codec_pars->maxbps);
|
pcm->maxbps = min(pcm->maxbps, codec_pars->maxbps);
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL_HDA(hdmi_eld_update_pcm_info);
|
EXPORT_SYMBOL_HDA(hdmi_eld_update_pcm_info);
|
||||||
|
|
||||||
#endif /* CONFIG_PROC_FS */
|
|
||||||
|
|
|
@ -3059,6 +3059,7 @@ static struct snd_pci_quirk cxt5066_cfg_tbl[] = {
|
||||||
SND_PCI_QUIRK(0x17aa, 0x21b4, "Thinkpad Edge", CXT5066_IDEAPAD),
|
SND_PCI_QUIRK(0x17aa, 0x21b4, "Thinkpad Edge", CXT5066_IDEAPAD),
|
||||||
SND_PCI_QUIRK(0x17aa, 0x215e, "Lenovo Thinkpad", CXT5066_THINKPAD),
|
SND_PCI_QUIRK(0x17aa, 0x215e, "Lenovo Thinkpad", CXT5066_THINKPAD),
|
||||||
SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo G series", CXT5066_IDEAPAD),
|
SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo G series", CXT5066_IDEAPAD),
|
||||||
|
SND_PCI_QUIRK(0x17aa, 0x390a, "Lenovo S10-3t", CXT5066_IDEAPAD),
|
||||||
SND_PCI_QUIRK(0x17aa, 0x3938, "Lenovo G series (AMD)", CXT5066_IDEAPAD),
|
SND_PCI_QUIRK(0x17aa, 0x3938, "Lenovo G series (AMD)", CXT5066_IDEAPAD),
|
||||||
SND_PCI_QUIRK(0x17aa, 0x3a0d, "ideapad", CXT5066_IDEAPAD),
|
SND_PCI_QUIRK(0x17aa, 0x3a0d, "ideapad", CXT5066_IDEAPAD),
|
||||||
{}
|
{}
|
||||||
|
|
|
@ -707,8 +707,6 @@ static int hdmi_setup_stream(struct hda_codec *codec, hda_nid_t nid,
|
||||||
u32 stream_tag, int format)
|
u32 stream_tag, int format)
|
||||||
{
|
{
|
||||||
struct hdmi_spec *spec = codec->spec;
|
struct hdmi_spec *spec = codec->spec;
|
||||||
int tag;
|
|
||||||
int fmt;
|
|
||||||
int pinctl;
|
int pinctl;
|
||||||
int new_pinctl = 0;
|
int new_pinctl = 0;
|
||||||
int i;
|
int i;
|
||||||
|
@ -745,24 +743,7 @@ static int hdmi_setup_stream(struct hda_codec *codec, hda_nid_t nid,
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
|
||||||
tag = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_CONV, 0) >> 4;
|
snd_hda_codec_setup_stream(codec, nid, stream_tag, 0, format);
|
||||||
fmt = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_STREAM_FORMAT, 0);
|
|
||||||
|
|
||||||
snd_printdd("hdmi_setup_stream: "
|
|
||||||
"NID=0x%x, %sstream=0x%x, %sformat=0x%x\n",
|
|
||||||
nid,
|
|
||||||
tag == stream_tag ? "" : "new-",
|
|
||||||
stream_tag,
|
|
||||||
fmt == format ? "" : "new-",
|
|
||||||
format);
|
|
||||||
|
|
||||||
if (tag != stream_tag)
|
|
||||||
snd_hda_codec_write(codec, nid, 0,
|
|
||||||
AC_VERB_SET_CHANNEL_STREAMID,
|
|
||||||
stream_tag << 4);
|
|
||||||
if (fmt != format)
|
|
||||||
snd_hda_codec_write(codec, nid, 0,
|
|
||||||
AC_VERB_SET_STREAM_FORMAT, format);
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -69,20 +69,12 @@ static int intel_hdmi_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
|
||||||
return hdmi_setup_stream(codec, hinfo->nid, stream_tag, format);
|
return hdmi_setup_stream(codec, hinfo->nid, stream_tag, format);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int intel_hdmi_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
|
|
||||||
struct hda_codec *codec,
|
|
||||||
struct snd_pcm_substream *substream)
|
|
||||||
{
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
static struct hda_pcm_stream intel_hdmi_pcm_playback = {
|
static struct hda_pcm_stream intel_hdmi_pcm_playback = {
|
||||||
.substreams = 1,
|
.substreams = 1,
|
||||||
.channels_min = 2,
|
.channels_min = 2,
|
||||||
.ops = {
|
.ops = {
|
||||||
.open = hdmi_pcm_open,
|
.open = hdmi_pcm_open,
|
||||||
.prepare = intel_hdmi_playback_pcm_prepare,
|
.prepare = intel_hdmi_playback_pcm_prepare,
|
||||||
.cleanup = intel_hdmi_playback_pcm_cleanup,
|
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -326,13 +326,6 @@ static int nvhdmi_dig_playback_pcm_prepare_8ch(struct hda_pcm_stream *hinfo,
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int nvhdmi_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
|
|
||||||
struct hda_codec *codec,
|
|
||||||
struct snd_pcm_substream *substream)
|
|
||||||
{
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
static int nvhdmi_dig_playback_pcm_prepare_2ch(struct hda_pcm_stream *hinfo,
|
static int nvhdmi_dig_playback_pcm_prepare_2ch(struct hda_pcm_stream *hinfo,
|
||||||
struct hda_codec *codec,
|
struct hda_codec *codec,
|
||||||
unsigned int stream_tag,
|
unsigned int stream_tag,
|
||||||
|
@ -350,7 +343,6 @@ static struct hda_pcm_stream nvhdmi_pcm_digital_playback_8ch_89 = {
|
||||||
.ops = {
|
.ops = {
|
||||||
.open = hdmi_pcm_open,
|
.open = hdmi_pcm_open,
|
||||||
.prepare = nvhdmi_dig_playback_pcm_prepare_8ch_89,
|
.prepare = nvhdmi_dig_playback_pcm_prepare_8ch_89,
|
||||||
.cleanup = nvhdmi_playback_pcm_cleanup,
|
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -6303,6 +6303,21 @@ static struct hda_codec_preset snd_hda_preset_sigmatel[] = {
|
||||||
{ .id = 0x111d76b5, .name = "92HD71B6X", .patch = patch_stac92hd71bxx },
|
{ .id = 0x111d76b5, .name = "92HD71B6X", .patch = patch_stac92hd71bxx },
|
||||||
{ .id = 0x111d76b6, .name = "92HD71B5X", .patch = patch_stac92hd71bxx },
|
{ .id = 0x111d76b6, .name = "92HD71B5X", .patch = patch_stac92hd71bxx },
|
||||||
{ .id = 0x111d76b7, .name = "92HD71B5X", .patch = patch_stac92hd71bxx },
|
{ .id = 0x111d76b7, .name = "92HD71B5X", .patch = patch_stac92hd71bxx },
|
||||||
|
{ .id = 0x111d76c0, .name = "92HD89C3", .patch = patch_stac92hd73xx },
|
||||||
|
{ .id = 0x111d76c1, .name = "92HD89C2", .patch = patch_stac92hd73xx },
|
||||||
|
{ .id = 0x111d76c2, .name = "92HD89C1", .patch = patch_stac92hd73xx },
|
||||||
|
{ .id = 0x111d76c3, .name = "92HD89B3", .patch = patch_stac92hd73xx },
|
||||||
|
{ .id = 0x111d76c4, .name = "92HD89B2", .patch = patch_stac92hd73xx },
|
||||||
|
{ .id = 0x111d76c5, .name = "92HD89B1", .patch = patch_stac92hd73xx },
|
||||||
|
{ .id = 0x111d76c6, .name = "92HD89E3", .patch = patch_stac92hd73xx },
|
||||||
|
{ .id = 0x111d76c7, .name = "92HD89E2", .patch = patch_stac92hd73xx },
|
||||||
|
{ .id = 0x111d76c8, .name = "92HD89E1", .patch = patch_stac92hd73xx },
|
||||||
|
{ .id = 0x111d76c9, .name = "92HD89D3", .patch = patch_stac92hd73xx },
|
||||||
|
{ .id = 0x111d76ca, .name = "92HD89D2", .patch = patch_stac92hd73xx },
|
||||||
|
{ .id = 0x111d76cb, .name = "92HD89D1", .patch = patch_stac92hd73xx },
|
||||||
|
{ .id = 0x111d76cc, .name = "92HD89F3", .patch = patch_stac92hd73xx },
|
||||||
|
{ .id = 0x111d76cd, .name = "92HD89F2", .patch = patch_stac92hd73xx },
|
||||||
|
{ .id = 0x111d76ce, .name = "92HD89F1", .patch = patch_stac92hd73xx },
|
||||||
{} /* terminator */
|
{} /* terminator */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue