Browse Source

soc: swr-mstr-ctrl: reset PCM_DP_OUT/IN count when SSR

during SSR, swrm_disable_ports() is not called so the pcm_enable_count
never decreased. Reset the count to 0 when SSR

Change-Id: I937dd309ab9fb2c28c0962053cd1632c891fb598
Signed-off-by: Junkai Cai <[email protected]>
Yuhui Zhao 3 years ago
parent
commit
39e7f936b4
1 changed files with 2 additions and 0 deletions
  1. 2 0
      soc/swr-mstr-ctrl.c

+ 2 - 0
soc/swr-mstr-ctrl.c

@@ -1700,6 +1700,8 @@ static int swrm_slvdev_datapath_control(struct swr_master *master, bool enable)
 		}
 		clear_bit(DISABLE_PENDING, &swrm->port_req_pending);
 		swrm_cleanup_disabled_port_reqs(master);
+		/* reset enable_count to 0 in SSR if master is already down */
+		swrm->pcm_enable_count = 0;
 		if (!swrm_is_port_en(master)) {
 			dev_dbg(&master->dev, "%s: pm_runtime auto suspend triggered\n",
 				__func__);