Lines Matching defs:restart
80 struct reset_control *restart;
149 reset_control_assert(adsp->restart);
150 /* wait after asserting subsystem restart from AOSS */
159 reset_control_deassert(adsp->restart);
160 /* wait after de-asserting subsystem restart from AOSS */
349 adsp->restart = devm_reset_control_get_optional_exclusive(adsp->dev, "restart");
351 /* Fall back to the old "cc_lpass" if "restart" is absent */
352 if (!adsp->restart)
353 adsp->restart = devm_reset_control_get_exclusive(adsp->dev, "cc_lpass");
355 if (IS_ERR(adsp->restart)) {
356 dev_err(adsp->dev, "failed to acquire restart\n");
357 return PTR_ERR(adsp->restart);