[alsa-devel] LSI HDA Modem is not working on HP new Laptop which has IDT 7605 HDA codec and REDHAT installed on it with ALSA ver 1.0.24.

suresh gupta sureshgupta189 at gmail.com
Thu Sep 29 09:18:56 CEST 2011


LSI Modem always checks the “opened” bit of “azx_dev” before opening the
stream. Modem sets “opened” bit and use stream if and only if that “opened”
bit was not set otherwise move to next stream “azx_dev”.



I found that the ALSA unset this "opened" bit on close but do not
reset  AC_VERB_SET_CHANNEL_STREAMID
of IDC codec.

Due to which IDC Codec always get active and always sending data to stream
0. Now when LSI modem check the "opened"

bit of stream 0, it found it is not set and open the stream 0 and start
reading data from stream 0. As IDC codec still sending data on stream 0 the
LSI Modem get this unexpected data and stop working.



I believe the Code (below) which checks "no_sticky_stream" is the culprit
due to which "really_cleanup_stream"

function is not called. I found the Analog devices codec set
"no_sticky_stream" while probing their codec.

This is the reason, our modem works on HP laptop with Analog device codec.



According to me the IDC codec should stop sending data after closing the
stream or otherwise they should always acquire the stream which is not
right.



I don’t know why "no_sticky_stream" come into new code and what’s it
significance. Why only Analog devices use this "no_sticky_stream".



Thanks

SuresH



void __snd_hda_codec_cleanup_stream(struct hda_codec *codec, hda_nid_t nid,

                            int do_now)

{

      struct hda_cvt_setup *p;

      if (!nid)

            return;



      if (codec->no_sticky_stream)

            do_now = 1;



      snd_printdd("hda_codec_cleanup_stream: NID=0x%x\n", nid);

      p = get_hda_cvt_setup(codec, nid);

      if (p) {

            /* here we just clear the active flag when do_now isn't set;

             * actual clean-ups will be done later in

             * purify_inactive_streams() called from snd_hda_codec_prpapre()

             */

            if (do_now)

                  really_cleanup_stream(codec, p);

            else

                  p->active = 0;

      }

}


On Thu, Sep 29, 2011 at 11:50 AM, Takashi Iwai <tiwai at suse.de> wrote:

> At Thu, 29 Sep 2011 10:51:28 +0530,
> Gupta, Suresh wrote:
> >
> > Modem receive unwanted data on stream 0 even stream is not open by any
> device.
> > Stream 0 was acquired by IDC 7605 and this codec keep sending something
> even after closing the stream.
>
> Why does the LSI modem device receive from the stream of IDT codec at
> all?  In other words, how does LSI modem driver manage the allocation
> of streams?
>
>
> Takashi
> _______________________________________________
> Alsa-devel mailing list
> Alsa-devel at alsa-project.org
> http://mailman.alsa-project.org/mailman/listinfo/alsa-devel
>


More information about the Alsa-devel mailing list