diff options
author | Takashi Iwai <tiwai@suse.de> | 2005-11-17 10:09:43 -0500 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2006-01-03 06:27:38 -0500 |
commit | ded462356886e5f80f6a20b227f7e5cf7cfc5159 (patch) | |
tree | d060b0f123a3bf844246823174bddd7dcfba0a6e /sound/pci/ymfpci/ymfpci_main.c | |
parent | fb0700b4debbf45fb0465b40188bdc5396947bda (diff) |
[ALSA] ymfpci - Fix PM support
Modules: YMFPCI driver
Fix PM support on YMFPCI driver.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/ymfpci/ymfpci_main.c')
-rw-r--r-- | sound/pci/ymfpci/ymfpci_main.c | 23 |
1 files changed, 14 insertions, 9 deletions
diff --git a/sound/pci/ymfpci/ymfpci_main.c b/sound/pci/ymfpci/ymfpci_main.c index 62c9f25e8e71..1dfc7233c6a8 100644 --- a/sound/pci/ymfpci/ymfpci_main.c +++ b/sound/pci/ymfpci/ymfpci_main.c | |||
@@ -2175,11 +2175,13 @@ static int saved_regs_index[] = { | |||
2175 | }; | 2175 | }; |
2176 | #define YDSXGR_NUM_SAVED_REGS ARRAY_SIZE(saved_regs_index) | 2176 | #define YDSXGR_NUM_SAVED_REGS ARRAY_SIZE(saved_regs_index) |
2177 | 2177 | ||
2178 | static int snd_ymfpci_suspend(struct snd_card *card, pm_message_t state) | 2178 | int snd_ymfpci_suspend(struct pci_dev *pci, pm_message_t state) |
2179 | { | 2179 | { |
2180 | struct snd_ymfpci *chip = card->pm_private_data; | 2180 | struct snd_card *card = pci_get_drvdata(pci); |
2181 | struct snd_ymfpci *chip = card->private_data; | ||
2181 | unsigned int i; | 2182 | unsigned int i; |
2182 | 2183 | ||
2184 | snd_power_change_state(card, SNDRV_CTL_POWER_D3hot); | ||
2183 | snd_pcm_suspend_all(chip->pcm); | 2185 | snd_pcm_suspend_all(chip->pcm); |
2184 | snd_pcm_suspend_all(chip->pcm2); | 2186 | snd_pcm_suspend_all(chip->pcm2); |
2185 | snd_pcm_suspend_all(chip->pcm_spdif); | 2187 | snd_pcm_suspend_all(chip->pcm_spdif); |
@@ -2190,18 +2192,21 @@ static int snd_ymfpci_suspend(struct snd_card *card, pm_message_t state) | |||
2190 | chip->saved_ydsxgr_mode = snd_ymfpci_readl(chip, YDSXGR_MODE); | 2192 | chip->saved_ydsxgr_mode = snd_ymfpci_readl(chip, YDSXGR_MODE); |
2191 | snd_ymfpci_writel(chip, YDSXGR_NATIVEDACOUTVOL, 0); | 2193 | snd_ymfpci_writel(chip, YDSXGR_NATIVEDACOUTVOL, 0); |
2192 | snd_ymfpci_disable_dsp(chip); | 2194 | snd_ymfpci_disable_dsp(chip); |
2193 | pci_disable_device(chip->pci); | 2195 | pci_disable_device(pci); |
2196 | pci_save_state(pci); | ||
2194 | return 0; | 2197 | return 0; |
2195 | } | 2198 | } |
2196 | 2199 | ||
2197 | static int snd_ymfpci_resume(struct snd_card *card) | 2200 | int snd_ymfpci_resume(struct pci_dev *pci) |
2198 | { | 2201 | { |
2199 | struct snd_ymfpci *chip = card->pm_private_data; | 2202 | struct snd_card *card = pci_get_drvdata(pci); |
2203 | struct snd_ymfpci *chip = card->private_data; | ||
2200 | unsigned int i; | 2204 | unsigned int i; |
2201 | 2205 | ||
2202 | pci_enable_device(chip->pci); | 2206 | pci_restore_state(pci); |
2203 | pci_set_master(chip->pci); | 2207 | pci_enable_device(pci); |
2204 | snd_ymfpci_aclink_reset(chip->pci); | 2208 | pci_set_master(pci); |
2209 | snd_ymfpci_aclink_reset(pci); | ||
2205 | snd_ymfpci_codec_ready(chip, 0); | 2210 | snd_ymfpci_codec_ready(chip, 0); |
2206 | snd_ymfpci_download_image(chip); | 2211 | snd_ymfpci_download_image(chip); |
2207 | udelay(100); | 2212 | udelay(100); |
@@ -2218,6 +2223,7 @@ static int snd_ymfpci_resume(struct snd_card *card) | |||
2218 | chip->active_bank = snd_ymfpci_readl(chip, YDSXGR_CTRLSELECT); | 2223 | chip->active_bank = snd_ymfpci_readl(chip, YDSXGR_CTRLSELECT); |
2219 | spin_unlock_irq(&chip->reg_lock); | 2224 | spin_unlock_irq(&chip->reg_lock); |
2220 | } | 2225 | } |
2226 | snd_power_change_state(card, SNDRV_CTL_POWER_D0); | ||
2221 | return 0; | 2227 | return 0; |
2222 | } | 2228 | } |
2223 | #endif /* CONFIG_PM */ | 2229 | #endif /* CONFIG_PM */ |
@@ -2296,7 +2302,6 @@ int __devinit snd_ymfpci_create(struct snd_card *card, | |||
2296 | snd_ymfpci_free(chip); | 2302 | snd_ymfpci_free(chip); |
2297 | return -ENOMEM; | 2303 | return -ENOMEM; |
2298 | } | 2304 | } |
2299 | snd_card_set_pm_callback(card, snd_ymfpci_suspend, snd_ymfpci_resume, chip); | ||
2300 | #endif | 2305 | #endif |
2301 | 2306 | ||
2302 | if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops)) < 0) { | 2307 | if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops)) < 0) { |