Skip to content

Commit

Permalink
ALSA: hda - Update chipio functions and DSP write wait timeout
Browse files Browse the repository at this point in the history
Tidy up and condense chipio_write_address|addx() functions.
Improve dspio_write_wait() to use jiffies for timeout calc.

Signed-off-by: Ian Minett <ian_minett@creativelabs.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
  • Loading branch information
Ian Minett authored and Takashi Iwai committed Nov 28, 2012
1 parent a3af480 commit 4861af8
Showing 1 changed file with 16 additions and 36 deletions.
52 changes: 16 additions & 36 deletions sound/pci/hda/patch_ca0132.c
Original file line number Diff line number Diff line change
Expand Up @@ -460,8 +460,12 @@ static int chipio_send(struct hda_codec *codec,
static int chipio_write_address(struct hda_codec *codec,
unsigned int chip_addx)
{
struct ca0132_spec *spec = codec->spec;
int res;

if (spec->curr_chip_addx == chip_addx)
return 0;

/* send low 16 bits of the address */
res = chipio_send(codec, VENDOR_CHIPIO_ADDRESS_LOW,
chip_addx & 0xffff);
Expand All @@ -472,37 +476,14 @@ static int chipio_write_address(struct hda_codec *codec,
chip_addx >> 16);
}

return res;
}

static int chipio_write_addx(struct hda_codec *codec, u32 chip_addx)
{
struct ca0132_spec *spec = codec->spec;
int status;

if (spec->curr_chip_addx == chip_addx)
return 0;

/* send low 16 bits of the address */
status = chipio_send(codec, VENDOR_CHIPIO_ADDRESS_LOW,
chip_addx & 0xffff);

if (status < 0)
return status;

/* send high 16 bits of the address */
status = chipio_send(codec, VENDOR_CHIPIO_ADDRESS_HIGH,
chip_addx >> 16);

spec->curr_chip_addx = (status < 0) ? ~0UL : chip_addx;
spec->curr_chip_addx = (res < 0) ? ~0UL : chip_addx;

return status;
return res;
}

/*
* Write data through the vendor widget -- NOT protected by the Mutex!
*/

static int chipio_write_data(struct hda_codec *codec, unsigned int data)
{
int res;
Expand Down Expand Up @@ -604,7 +585,7 @@ static int chipio_write_multiple(struct hda_codec *codec,
int status;

mutex_lock(&spec->chipio_mutex);
status = chipio_write_addx(codec, chip_addx);
status = chipio_write_address(codec, chip_addx);
if (status < 0)
goto error;

Expand Down Expand Up @@ -742,18 +723,17 @@ static int dspio_send(struct hda_codec *codec, unsigned int reg,
*/
static void dspio_write_wait(struct hda_codec *codec)
{
int cur_val, prv_val;
int retry = 50;
int status;
unsigned long timeout = jiffies + msecs_to_jiffies(1000);

cur_val = 0;
do {
prv_val = cur_val;
msleep(20);
dspio_send(codec, VENDOR_DSPIO_SCP_POST_COUNT_QUERY, 1);
dspio_send(codec, VENDOR_DSPIO_STATUS, 0);
cur_val = snd_hda_codec_read(codec, WIDGET_DSP_CTRL, 0,
VENDOR_DSPIO_SCP_READ_COUNT, 0);
} while (cur_val && (cur_val == prv_val) && --retry);
status = snd_hda_codec_read(codec, WIDGET_DSP_CTRL, 0,
VENDOR_DSPIO_STATUS, 0);
if ((status == VENDOR_STATUS_DSPIO_OK) ||
(status == VENDOR_STATUS_DSPIO_SCP_RESPONSE_QUEUE_EMPTY))
break;
msleep(1);
} while (time_before(jiffies, timeout));
}

/*
Expand Down

0 comments on commit 4861af8

Please sign in to comment.