Skip to content

Commit

Permalink
[ALSA] cs4281 - fix DLLRDY not seen problem
Browse files Browse the repository at this point in the history
CS4281 driver
Reset the FPDN bit of the EPPMC register if needed.

Signed-off-by: Arnaud Patard <arnaud.patard@rtp-net.org>
Signed-off-by: Jaroslav Kysela <perex@suse.cz>
  • Loading branch information
Arnaud Patard authored and Jaroslav Kysela committed May 29, 2005
1 parent 22bc30c commit a488e03
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions sound/pci/cs4281.c
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,10 @@ MODULE_PARM_DESC(dual_codec, "Secondary Codec ID (0 = disabled).");

#define BA0_PMCS 0x0344 /* Power Management Control/Status */
#define BA0_CWPR 0x03e0 /* Configuration Write Protect */

#define BA0_EPPMC 0x03e4 /* Extended PCI Power Management Control */
#define BA0_EPPMC_FPDN (1<<14) /* Full Power DowN */

#define BA0_GPIOR 0x03e8 /* GPIO Pin Interface Register */

#define BA0_SPMC 0x03ec /* Serial Port Power Management Control (& ASDIN2 enable) */
Expand Down Expand Up @@ -1461,6 +1464,11 @@ static int snd_cs4281_chip_init(cs4281_t *chip)
int timeout;
int retry_count = 2;

/* Having EPPMC.FPDN=1 prevent proper chip initialisation */
tmp = snd_cs4281_peekBA0(chip, BA0_EPPMC);
if (tmp & BA0_EPPMC_FPDN)
snd_cs4281_pokeBA0(chip, BA0_EPPMC, tmp & ~BA0_EPPMC_FPDN);

__retry:
tmp = snd_cs4281_peekBA0(chip, BA0_CFLR);
if (tmp != BA0_CFLR_DEFAULT) {
Expand Down

0 comments on commit a488e03

Please sign in to comment.