Prechádzať zdrojové kódy

Merge "asoc: bolero: force bolero runtime suspend during adsp ssr"

qctecmdr 5 rokov pred
rodič
commit
330f03de80

+ 2 - 0
asoc/codecs/bolero/rx-macro.c

@@ -1235,6 +1235,8 @@ static int rx_macro_event_handler(struct snd_soc_component *component,
 				rx_priv->swr_ctrl_data[0].rx_swr_pdev,
 				SWR_DEVICE_SSR_DOWN, NULL);
 		}
+		if (!pm_runtime_status_suspended(rx_dev))
+			bolero_runtime_suspend(rx_dev);
 		break;
 	case BOLERO_MACRO_EVT_SSR_UP:
 		rx_priv->dev_up = true;

+ 2 - 0
asoc/codecs/bolero/tx-macro.c

@@ -354,6 +354,8 @@ static int tx_macro_event_handler(struct snd_soc_component *component,
 				tx_priv->swr_ctrl_data[0].tx_swr_pdev,
 				SWR_DEVICE_SSR_DOWN, NULL);
 		}
+		if (!pm_runtime_status_suspended(tx_dev))
+			bolero_runtime_suspend(tx_dev);
 		break;
 	case BOLERO_MACRO_EVT_SSR_UP:
 		/* reset swr after ssr/pdr */

+ 4 - 0
asoc/codecs/bolero/va-macro.c

@@ -237,6 +237,10 @@ static int va_macro_event_handler(struct snd_soc_component *component,
 	case BOLERO_MACRO_EVT_CLK_RESET:
 		bolero_rsc_clk_reset(va_dev, VA_CORE_CLK);
 		break;
+	case BOLERO_MACRO_EVT_SSR_DOWN:
+		if (!pm_runtime_status_suspended(va_dev))
+			bolero_runtime_suspend(va_dev);
+		break;
 	default:
 		break;
 	}

+ 2 - 0
asoc/codecs/bolero/wsa-macro.c

@@ -919,6 +919,8 @@ static int wsa_macro_event_handler(struct snd_soc_component *component,
 				wsa_priv->swr_ctrl_data[0].wsa_swr_pdev,
 				SWR_DEVICE_SSR_DOWN, NULL);
 		}
+		if (!pm_runtime_status_suspended(wsa_dev))
+			bolero_runtime_suspend(wsa_dev);
 		break;
 	case BOLERO_MACRO_EVT_SSR_UP:
 		/* reset swr after ssr/pdr */