Skip to content

Commit a866a04

Browse files
Srinivas-Kandagatlavinodkoul
authored andcommitted
soundwire: qcom: start the clock during initialization
Start the clock during initialization, doing this explicitly will add more clarity when we are adding clock stop feature. Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org> Reviewed-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> Link: https://lore.kernel.org/r/20210330144719.13284-5-srinivas.kandagatla@linaro.org Signed-off-by: Vinod Koul <vkoul@kernel.org>
1 parent 542d349 commit a866a04

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

drivers/soundwire/qcom.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@
4747
#define SWRM_MCP_FRAME_CTRL_BANK_ADDR(m) (0x101C + 0x40 * (m))
4848
#define SWRM_MCP_FRAME_CTRL_BANK_COL_CTRL_BMSK GENMASK(2, 0)
4949
#define SWRM_MCP_FRAME_CTRL_BANK_ROW_CTRL_BMSK GENMASK(7, 3)
50+
#define SWRM_MCP_BUS_CTRL 0x1044
51+
#define SWRM_MCP_BUS_CLK_START BIT(1)
5052
#define SWRM_MCP_CFG_ADDR 0x1048
5153
#define SWRM_MCP_CFG_MAX_NUM_OF_CMD_NO_PINGS_BMSK GENMASK(21, 17)
5254
#define SWRM_DEF_CMD_NO_PINGS 0x1f
@@ -343,6 +345,7 @@ static int qcom_swrm_init(struct qcom_swrm_ctrl *ctrl)
343345
u32p_replace_bits(&val, SWRM_DEF_CMD_NO_PINGS, SWRM_MCP_CFG_MAX_NUM_OF_CMD_NO_PINGS_BMSK);
344346
ctrl->reg_write(ctrl, SWRM_MCP_CFG_ADDR, val);
345347

348+
ctrl->reg_write(ctrl, SWRM_MCP_BUS_CTRL, SWRM_MCP_BUS_CLK_START);
346349
/* Configure number of retries of a read/write cmd */
347350
if (ctrl->version > 0x01050001) {
348351
/* Only for versions >= 1.5.1 */

0 commit comments

Comments
 (0)