Lines Matching refs:reset
21 #include <linux/reset.h>
48 * @reset: reset control handle
61 struct reset_control *reset;
69 /* Put the DSP processor into reset */
72 reset_control_assert(ksproc->reset);
93 reset_control_deassert(ksproc->reset);
210 * This function puts the DSP processor into reset, and finishes processing
405 ksproc->reset = devm_reset_control_get_exclusive(dev, NULL);
406 if (IS_ERR(ksproc->reset)) {
407 ret = PTR_ERR(ksproc->reset);
446 /* ensure the DSP is in reset before loading firmware */
447 ret = reset_control_status(ksproc->reset);
449 dev_err(dev, "failed to get reset status, status = %d\n", ret);
452 WARN(1, "device is not in reset\n");