Commit 1448099d authored by Jeeja KP's avatar Jeeja KP Committed by Mark Brown

ASoC: Intel: bxtn: Use DSP poll API to poll FW status

Use the optimized dsp_register_poll API to poll the DSP firmware
status register rather than open coding it.
Signed-off-by: default avatarJeeja KP <jeeja.kp@intel.com>
Acked-by: default avatarVinod Koul <vinod.koul@intel.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 9cc8f9fe
...@@ -151,23 +151,13 @@ static int sst_bxt_prepare_fw(struct sst_dsp *ctx, ...@@ -151,23 +151,13 @@ static int sst_bxt_prepare_fw(struct sst_dsp *ctx,
} }
/* Step 4: Wait for DONE Bit */ /* Step 4: Wait for DONE Bit */
for (i = BXT_INIT_TIMEOUT; i > 0; --i) { ret = sst_dsp_register_poll(ctx, SKL_ADSP_REG_HIPCIE,
reg = sst_dsp_shim_read(ctx, SKL_ADSP_REG_HIPCIE);
if (reg & SKL_ADSP_REG_HIPCIE_DONE) {
sst_dsp_shim_update_bits_forced(ctx,
SKL_ADSP_REG_HIPCIE,
SKL_ADSP_REG_HIPCIE_DONE, SKL_ADSP_REG_HIPCIE_DONE,
SKL_ADSP_REG_HIPCIE_DONE); SKL_ADSP_REG_HIPCIE_DONE,
break; BXT_INIT_TIMEOUT, "HIPCIE Done");
} if (ret < 0) {
mdelay(1); dev_err(ctx->dev, "Timout for Purge Request%d\n", ret);
} goto base_fw_load_failed;
if (!i) {
dev_info(ctx->dev, "Waiting for HIPCIE done, reg: 0x%x\n", reg);
sst_dsp_shim_update_bits(ctx, SKL_ADSP_REG_HIPCIE,
SKL_ADSP_REG_HIPCIE_DONE,
SKL_ADSP_REG_HIPCIE_DONE);
} }
/* Step 5: power down core1 */ /* Step 5: power down core1 */
...@@ -182,19 +172,10 @@ static int sst_bxt_prepare_fw(struct sst_dsp *ctx, ...@@ -182,19 +172,10 @@ static int sst_bxt_prepare_fw(struct sst_dsp *ctx,
skl_ipc_op_int_enable(ctx); skl_ipc_op_int_enable(ctx);
/* Step 7: Wait for ROM init */ /* Step 7: Wait for ROM init */
for (i = BXT_INIT_TIMEOUT; i > 0; --i) { ret = sst_dsp_register_poll(ctx, BXT_ADSP_FW_STATUS, SKL_FW_STS_MASK,
if (SKL_FW_INIT == SKL_FW_INIT, BXT_INIT_TIMEOUT, "ROM Load");
(sst_dsp_shim_read(ctx, BXT_ADSP_FW_STATUS) & if (ret < 0) {
SKL_FW_STS_MASK)) { dev_err(ctx->dev, "Timeout for ROM init, ret:%d\n", ret);
dev_info(ctx->dev, "ROM loaded, continue FW loading\n");
break;
}
mdelay(1);
}
if (!i) {
dev_err(ctx->dev, "Timeout for ROM init, HIPCIE: 0x%x\n", reg);
ret = -EIO;
goto base_fw_load_failed; goto base_fw_load_failed;
} }
......
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