2004-09-16 10:46:44

by Nigel Cunningham

[permalink] [raw]
Subject: [PATCH]: Suspend2 Merge: Device driver fixes 2/2

-----Forwarded Message-----
> From: Bernard Blackham <[email protected]>
> To: Michael Frank <[email protected]>
> Cc: [email protected]
> Subject: Re: [SoftwareSuspend-devel] ALSA ali5451 and sis PM fundamentally broken?
> Date: Sun, 08 Aug 2004 22:33:54 +0800
>
> On Fri, Jul 16, 2004 at 01:24:09PM +0800, Michael Frank wrote:
> > Built the current Gentoo ALSA package 1.05a on 2.4.24.
> >
> > On ali5451 it is difficult to get the driver to work
> > at all - takes several loads. Does not survive suspend.
>
> With the latest 2.6.7 and swsusp 2.0.0.103, my sound card's
> (ali5451) suspend/resume began eratticaly failing again. So I
> started tinkering some more, and I've come up with this patch (in
> addition to the one liner already in 2.0.0.103-for-2.6.7) that makes
> sound reliably suspend and resume every time *and* playback is not
> interrupted! :)
>
> The line "snd_pcm_suspend_all(chip->pcm)" was the culprit for
> stopping playback and requiring it to be restarted. It seems common
> to some other alsa drivers too, so removing it may help with similar
> problems experienced by others.
>
> Bernard.

diff -ruN linux-2.6.9-rc1/sound/core/init.c software-suspend-linux-2.6.9-rc1-rev3/sound/core/init.c
--- linux-2.6.9-rc1/sound/core/init.c 2004-06-18 12:44:25.000000000 +1000
+++ software-suspend-linux-2.6.9-rc1-rev3/sound/core/init.c 2004-09-09 19:36:24.000000000 +1000
@@ -790,7 +790,7 @@
if (card->power_state == SNDRV_CTL_POWER_D3hot)
return 0;
/* FIXME: correct state value? */
- return card->pm_suspend(card, 0);
+ return card->pm_suspend(card, SNDRV_CTL_POWER_D3hot);
}

int snd_card_pci_resume(struct pci_dev *dev)
@@ -801,7 +801,7 @@
if (card->power_state == SNDRV_CTL_POWER_D0)
return 0;
/* FIXME: correct state value? */
- return card->pm_resume(card, 0);
+ return card->pm_resume(card, SNDRV_CTL_POWER_D0);
}
#endif

diff -ruN linux-2.6.9-rc1/sound/pci/ali5451/ali5451.c software-suspend-linux-2.6.9-rc1-rev3/sound/pci/ali5451/ali5451.c
--- linux-2.6.9-rc1/sound/pci/ali5451/ali5451.c 2004-06-18 12:44:26.000000000 +1000
+++ software-suspend-linux-2.6.9-rc1-rev3/sound/pci/ali5451/ali5451.c 2004-09-09 19:36:24.000000000 +1000
@@ -286,6 +286,7 @@
static void snd_ali_clear_voices(ali_t *, unsigned int, unsigned int);
static unsigned short snd_ali_codec_peek(ali_t *, int, unsigned short);
static void snd_ali_codec_poke(ali_t *, int, unsigned short, unsigned short);
+static int snd_ali_chip_init(ali_t *codec);

/*
* Debug Part
@@ -1915,7 +1916,6 @@
if (! im)
return 0;

- snd_pcm_suspend_all(chip->pcm);
snd_ac97_suspend(chip->ac97);

spin_lock_irq(&chip->reg_lock);
@@ -1957,6 +1957,7 @@
return 0;

pci_enable_device(chip->pci);
+ snd_ali_chip_init(chip);

spin_lock_irq(&chip->reg_lock);

@@ -1981,6 +1982,7 @@

snd_ac97_resume(chip->ac97);

+ snd_power_change_state(card, state);
return 0;
}
#endif /* CONFIG_PM */
--
Nigel Cunningham
Pastoral Worker
Christian Reformed Church of Tuggeranong
PO Box 1004, Tuggeranong, ACT 2901

Many today claim to be tolerant. True tolerance, however, can cope with others
being intolerant.


2004-09-16 16:37:11

by Takashi Iwai

[permalink] [raw]
Subject: Re: [PATCH]: Suspend2 Merge: Device driver fixes 2/2


[Mistakenly posted to alsa-devel, now resent to the correct addreses]

At Thu, 16 Sep 2004 20:45:36 +1000,
Nigel Cunningham wrote:
>
> -----Forwarded Message-----
> > From: Bernard Blackham <[email protected]>
> > To: Michael Frank <[email protected]>
> > Cc: [email protected]
> > Subject: Re: [SoftwareSuspend-devel] ALSA ali5451 and sis PM fundamentally broken?
> > Date: Sun, 08 Aug 2004 22:33:54 +0800
> >
> > On Fri, Jul 16, 2004 at 01:24:09PM +0800, Michael Frank wrote:
> > > Built the current Gentoo ALSA package 1.05a on 2.4.24.
> > >
> > > On ali5451 it is difficult to get the driver to work
> > > at all - takes several loads. Does not survive suspend.
> >
> > With the latest 2.6.7 and swsusp 2.0.0.103, my sound card's
> > (ali5451) suspend/resume began eratticaly failing again. So I
> > started tinkering some more, and I've come up with this patch (in
> > addition to the one liner already in 2.0.0.103-for-2.6.7) that makes
> > sound reliably suspend and resume every time *and* playback is not
> > interrupted! :)
> >
> > The line "snd_pcm_suspend_all(chip->pcm)" was the culprit for
> > stopping playback and requiring it to be restarted. It seems common
> > to some other alsa drivers too, so removing it may help with similar
> > problems experienced by others.

No, snd_pcm_suspend_all() must be called. All PCM streams are
supposed to be moved to SUSPENDED state when the suspend happens.
Keeping other states doesn't guaratee the proper resume process.

The problem of ali5451 driver was that it forgot to call
snd_power_change_state() at the end of suspend callback.
This was already fixed.

So, don't apply this patch, please.


Takashi

2004-09-16 22:07:31

by Nigel Cunningham

[permalink] [raw]
Subject: Re: [PATCH]: Suspend2 Merge: Device driver fixes 2/2

Hi.

On Fri, 2004-09-17 at 02:29, Takashi Iwai wrote:
> No, snd_pcm_suspend_all() must be called. All PCM streams are
> supposed to be moved to SUSPENDED state when the suspend happens.
> Keeping other states doesn't guaratee the proper resume process.
>
> The problem of ali5451 driver was that it forgot to call
> snd_power_change_state() at the end of suspend callback.
> This was already fixed.

Is it merged to Andy or Linus yet? If so, I could drop the patch.

Regards,

Nigel

--
Nigel Cunningham
Pastoral Worker
Christian Reformed Church of Tuggeranong
PO Box 1004, Tuggeranong, ACT 2901

Many today claim to be tolerant. True tolerance, however, can cope with others
being intolerant.

2004-09-17 12:09:57

by Takashi Iwai

[permalink] [raw]
Subject: Re: [PATCH]: Suspend2 Merge: Device driver fixes 2/2

At Fri, 17 Sep 2004 08:08:16 +1000,
Nigel Cunningham wrote:
>
> Hi.
>
> On Fri, 2004-09-17 at 02:29, Takashi Iwai wrote:
> > No, snd_pcm_suspend_all() must be called. All PCM streams are
> > supposed to be moved to SUSPENDED state when the suspend happens.
> > Keeping other states doesn't guaratee the proper resume process.
> >
> > The problem of ali5451 driver was that it forgot to call
> > snd_power_change_state() at the end of suspend callback.
> > This was already fixed.
>
> Is it merged to Andy or Linus yet?

Yes, it's already in 2.6.9-rc2 (at least).

If the resume problem still persists, the culprit must be somewhere
else...


Takashi