Commit dfbe642d authored by Pierre-Louis Bossart's avatar Pierre-Louis Bossart Committed by Vinod Koul

soundwire: intel: add helper for initialization

Move code to helper for reuse in power management routines
Signed-off-by: default avatarPierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Link: https://lore.kernel.org/r/20191022235448.17586-4-pierre-louis.bossart@linux.intel.comSigned-off-by: default avatarVinod Koul <vkoul@kernel.org>
parent 675d4c9a
...@@ -897,6 +897,15 @@ static struct sdw_master_ops sdw_intel_ops = { ...@@ -897,6 +897,15 @@ static struct sdw_master_ops sdw_intel_ops = {
.post_bank_switch = intel_post_bank_switch, .post_bank_switch = intel_post_bank_switch,
}; };
static int intel_init(struct sdw_intel *sdw)
{
/* Initialize shim and controller */
intel_link_power_up(sdw);
intel_shim_init(sdw);
return sdw_cdns_init(&sdw->cdns);
}
/* /*
* probe and init * probe and init
*/ */
...@@ -939,11 +948,8 @@ static int intel_probe(struct platform_device *pdev) ...@@ -939,11 +948,8 @@ static int intel_probe(struct platform_device *pdev)
return 0; return 0;
} }
/* Initialize shim and controller */ /* Initialize shim, controller and Cadence IP */
intel_link_power_up(sdw); ret = intel_init(sdw);
intel_shim_init(sdw);
ret = sdw_cdns_init(&sdw->cdns);
if (ret) if (ret)
goto err_init; goto err_init;
......
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