alsa-devel.alsa-project.org archive mirror
 help / color / mirror / Atom feed
* Not able to restart audio after hibernation
@ 2012-01-06 10:47 Rajeev kumar
  2012-01-06 18:32 ` Mark Brown
  0 siblings, 1 reply; 5+ messages in thread
From: Rajeev kumar @ 2012-01-06 10:47 UTC (permalink / raw)
  To: Mark Brown
  Cc: alsa-devel@alsa-project.org, tiwai,
	spear--sw-devel@lists.codex.cro.st.com, Armando VISCONTI,
	Shiraz HASHIM, lrg

Hello Mark,

I am testing my audio driver on spear platform with the linux kernel 
2.6.37. During testing I put my system in hibernation mode and found 
that there is no sound after resume. The steps I am using for 
hibernation are
1. Have audio player on, select some audio, (using aplay utils)
2. Hibernate machine
3. Resume from hibernate

After resume it seems that there is no data available in the buffer to 
play, as application is giving pcm_write error and  exit.

While going through the suspend/resume implementation in the alsa 
framework, get to know that feature to support hibernation is missing.
The suspend/resume implementation for audio is with dev_pm_ops which is 
present in snd-core.c . If we look into the structure, we have only 
suspend, resume and poweroff feature present in it. To support 
hibernation we need freeze,thaw and restore also.
Please correct me if I am wrong?

Just for experiment I modified the structure and added freeze, thaw and 
restore functionality, but the result is same. The new modified 
structure looks like

static const struct dev_pm_ops soc_pm_ops = {
	.suspend = soc_suspend,
	.resume = soc_resume,
	
	.freeze = soc_suspend,
	.thaw = soc_resume,
	.restore = soc_resume,

	.poweroff = soc_poweroff,
}

Just for info audio is working fine in case of suspend-to-ram.

Best Regards
~Rajeev

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2012-01-09  5:54 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-06 10:47 Not able to restart audio after hibernation Rajeev kumar
2012-01-06 18:32 ` Mark Brown
2012-01-06 20:54   ` Tobin Davis
2012-01-06 23:25     ` Mark Brown
     [not found]   ` <20120109031645.GA21422@localhost.localdomain>
2012-01-09  5:53     ` Mark Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).