Alsa-Devel Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Takashi Iwai <tiwai@suse.de>
To: Bernhard Urban <lewurm@gmail.com>
Cc: alsa-devel@alsa-project.org
Subject: Re: [PATCH] ALSA: aureon - Patch for suspend/resume for	Terratec Aureon cards.
Date: Tue, 23 Mar 2010 17:35:40 +0100	[thread overview]
Message-ID: <s5hocifro6b.wl%tiwai@suse.de> (raw)
In-Reply-To: <1269313958-25984-1-git-send-email-lewurm@gmail.com>

At Tue, 23 Mar 2010 04:12:38 +0100,
Bernhard Urban wrote:
> 
> Add proper suspend/resume code for Terratec Aureon cards.
> Based on ice1724 suspend/resume work of Igor Chernyshev.
> Fixes bug https://bugtrack.alsa-project.org/alsa-bug/view.php?id=4944
> Tested on linux-2.6.32.9
> 
> Signed-off-by: Bernhard Urban <lewurm@gmail.com>

Applied now (with a minor coding-style fix).

Thanks,

Takashi

> ---
>  sound/pci/ice1712/aureon.c |   90 +++++++++++++++++++++++++++++++------------
>  1 files changed, 65 insertions(+), 25 deletions(-)
> 
> diff --git a/sound/pci/ice1712/aureon.c b/sound/pci/ice1712/aureon.c
> index 110d16e..1772e1a 100644
> --- a/sound/pci/ice1712/aureon.c
> +++ b/sound/pci/ice1712/aureon.c
> @@ -1971,11 +1971,10 @@ static int __devinit aureon_add_controls(struct snd_ice1712 *ice)
>  	return 0;
>  }
>  
> -
>  /*
> - * initialize the chip
> + * reset the chip
>   */
> -static int __devinit aureon_init(struct snd_ice1712 *ice)
> +static int aureon_reset(struct snd_ice1712 *ice)
>  {
>  	static const unsigned short wm_inits_aureon[] = {
>  		/* These come first to reduce init pop noise */
> @@ -2062,30 +2061,10 @@ static int __devinit aureon_init(struct snd_ice1712 *ice)
>  		0x0605, /* slave, 24bit, MSB on second OSCLK, SDOUT for right channel when OLRCK is high */
>  		(unsigned short)-1
>  	};
> -	struct aureon_spec *spec;
>  	unsigned int tmp;
>  	const unsigned short *p;
> -	int err, i;
> -
> -	spec = kzalloc(sizeof(*spec), GFP_KERNEL);
> -	if (!spec)
> -		return -ENOMEM;
> -	ice->spec = spec;
> -
> -	if (ice->eeprom.subvendor == VT1724_SUBDEVICE_AUREON51_SKY) {
> -		ice->num_total_dacs = 6;
> -		ice->num_total_adcs = 2;
> -	} else {
> -		/* aureon 7.1 and prodigy 7.1 */
> -		ice->num_total_dacs = 8;
> -		ice->num_total_adcs = 2;
> -	}
> -
> -	/* to remeber the register values of CS8415 */
> -	ice->akm = kzalloc(sizeof(struct snd_akm4xxx), GFP_KERNEL);
> -	if (!ice->akm)
> -		return -ENOMEM;
> -	ice->akm_codecs = 1;
> +	int err;
> +	struct aureon_spec *spec = ice->spec;
>  
>  	err = aureon_ac97_init(ice);
>  	if (err != 0)
> @@ -2133,6 +2112,62 @@ static int __devinit aureon_init(struct snd_ice1712 *ice)
>  	/* initialize PCA9554 pin directions & set default input */
>  	aureon_pca9554_write(ice, PCA9554_DIR, 0x00);
>  	aureon_pca9554_write(ice, PCA9554_OUT, 0x00);   /* internal AUX */
> +	return 0;
> +}
> +
> +/*
> + * suspend/resume
> + */
> +#ifdef CONFIG_PM
> +static int aureon_resume(struct snd_ice1712 *ice)
> +{
> +	struct aureon_spec *spec = ice->spec;
> +	int err, i;
> +
> +	err = aureon_reset(ice);
> +	if (err != 0)
> +		return err;
> +
> +	/* workaround for poking volume with alsamixer after resume:
> +	 * just set stored volume again */
> +	for (i = 0; i < ice->num_total_dacs; i++) {
> +		wm_set_vol(ice, i, spec->vol[i], spec->master[i % 2]);
> +	}
> +	return 0;
> +}
> +#endif
> +
> +/*
> + * initialize the chip
> + */
> +static int __devinit aureon_init(struct snd_ice1712 *ice)
> +{
> +	struct aureon_spec *spec;
> +	int i, err;
> +
> +	spec = kzalloc(sizeof(*spec), GFP_KERNEL);
> +	if (!spec)
> +		return -ENOMEM;
> +	ice->spec = spec;
> +
> +	if (ice->eeprom.subvendor == VT1724_SUBDEVICE_AUREON51_SKY) {
> +		ice->num_total_dacs = 6;
> +		ice->num_total_adcs = 2;
> +	} else {
> +		/* aureon 7.1 and prodigy 7.1 */
> +		ice->num_total_dacs = 8;
> +		ice->num_total_adcs = 2;
> +	}
> +
> +	/* to remeber the register values of CS8415 */
> +	ice->akm = kzalloc(sizeof(struct snd_akm4xxx), GFP_KERNEL);
> +	if (!ice->akm)
> +		return -ENOMEM;
> +	ice->akm_codecs = 1;
> +
> +	err = aureon_reset(ice);
> +	if (err != 0)
> +		return err;
>  
>  	spec->master[0] = WM_VOL_MUTE;
>  	spec->master[1] = WM_VOL_MUTE;
> @@ -2141,6 +2176,11 @@ static int __devinit aureon_init(struct snd_ice1712 *ice)
>  		wm_set_vol(ice, i, spec->vol[i], spec->master[i % 2]);
>  	}
>  
> +#ifdef CONFIG_PM
> +	ice->pm_resume = aureon_resume;
> +	ice->pm_suspend_enabled = 1;
> +#endif
> +
>  	return 0;
>  }
>  
> -- 
> 1.7.0.1
> 
> _______________________________________________
> Alsa-devel mailing list
> Alsa-devel@alsa-project.org
> http://mailman.alsa-project.org/mailman/listinfo/alsa-devel
> 

      reply	other threads:[~2010-03-23 16:35 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-03-23  3:12 [PATCH] ALSA: aureon - Patch for suspend/resume for Terratec Aureon cards Bernhard Urban
2010-03-23 16:35 ` Takashi Iwai [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=s5hocifro6b.wl%tiwai@suse.de \
    --to=tiwai@suse.de \
    --cc=alsa-devel@alsa-project.org \
    --cc=lewurm@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox