Lines Matching defs:restart
96 struct reset_control *restart;
232 reset_control_assert(adsp->restart);
234 /* wait after asserting subsystem restart from AOSS */
238 reset_control_deassert(adsp->restart);
305 reset_control_assert(adsp->restart);
306 /* wait after asserting subsystem restart from AOSS */
315 reset_control_deassert(adsp->restart);
316 /* wait after de-asserting subsystem restart from AOSS */
579 adsp->restart = devm_reset_control_get_optional_exclusive(adsp->dev, "restart");
581 /* Fall back to the old "cc_lpass" if "restart" is absent */
582 if (!adsp->restart)
583 adsp->restart = devm_reset_control_get_exclusive(adsp->dev, "cc_lpass");
585 if (IS_ERR(adsp->restart)) {
586 dev_err(adsp->dev, "failed to acquire restart\n");
587 return PTR_ERR(adsp->restart);