Commit 4861af80 authored by Ian Minett's avatar Ian Minett Committed by Takashi Iwai

ALSA: hda - Update chipio functions and DSP write wait timeout

Tidy up and condense chipio_write_address|addx() functions.
Improve dspio_write_wait() to use jiffies for timeout calc.
Signed-off-by: default avatarIan Minett <ian_minett@creativelabs.com>
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent a3af4807
...@@ -460,8 +460,12 @@ static int chipio_send(struct hda_codec *codec, ...@@ -460,8 +460,12 @@ static int chipio_send(struct hda_codec *codec,
static int chipio_write_address(struct hda_codec *codec, static int chipio_write_address(struct hda_codec *codec,
unsigned int chip_addx) unsigned int chip_addx)
{ {
struct ca0132_spec *spec = codec->spec;
int res; int res;
if (spec->curr_chip_addx == chip_addx)
return 0;
/* send low 16 bits of the address */ /* send low 16 bits of the address */
res = chipio_send(codec, VENDOR_CHIPIO_ADDRESS_LOW, res = chipio_send(codec, VENDOR_CHIPIO_ADDRESS_LOW,
chip_addx & 0xffff); chip_addx & 0xffff);
...@@ -472,37 +476,14 @@ static int chipio_write_address(struct hda_codec *codec, ...@@ -472,37 +476,14 @@ static int chipio_write_address(struct hda_codec *codec,
chip_addx >> 16); chip_addx >> 16);
} }
return res; spec->curr_chip_addx = (res < 0) ? ~0UL : chip_addx;
}
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;
return status; return res;
} }
/* /*
* Write data through the vendor widget -- NOT protected by the Mutex! * Write data through the vendor widget -- NOT protected by the Mutex!
*/ */
static int chipio_write_data(struct hda_codec *codec, unsigned int data) static int chipio_write_data(struct hda_codec *codec, unsigned int data)
{ {
int res; int res;
...@@ -604,7 +585,7 @@ static int chipio_write_multiple(struct hda_codec *codec, ...@@ -604,7 +585,7 @@ static int chipio_write_multiple(struct hda_codec *codec,
int status; int status;
mutex_lock(&spec->chipio_mutex); mutex_lock(&spec->chipio_mutex);
status = chipio_write_addx(codec, chip_addx); status = chipio_write_address(codec, chip_addx);
if (status < 0) if (status < 0)
goto error; goto error;
...@@ -742,18 +723,17 @@ static int dspio_send(struct hda_codec *codec, unsigned int reg, ...@@ -742,18 +723,17 @@ static int dspio_send(struct hda_codec *codec, unsigned int reg,
*/ */
static void dspio_write_wait(struct hda_codec *codec) static void dspio_write_wait(struct hda_codec *codec)
{ {
int cur_val, prv_val; int status;
int retry = 50; unsigned long timeout = jiffies + msecs_to_jiffies(1000);
cur_val = 0;
do { do {
prv_val = cur_val; status = snd_hda_codec_read(codec, WIDGET_DSP_CTRL, 0,
msleep(20); VENDOR_DSPIO_STATUS, 0);
dspio_send(codec, VENDOR_DSPIO_SCP_POST_COUNT_QUERY, 1); if ((status == VENDOR_STATUS_DSPIO_OK) ||
dspio_send(codec, VENDOR_DSPIO_STATUS, 0); (status == VENDOR_STATUS_DSPIO_SCP_RESPONSE_QUEUE_EMPTY))
cur_val = snd_hda_codec_read(codec, WIDGET_DSP_CTRL, 0, break;
VENDOR_DSPIO_SCP_READ_COUNT, 0); msleep(1);
} while (cur_val && (cur_val == prv_val) && --retry); } while (time_before(jiffies, timeout));
} }
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment