Lines Matching full:reset
9 /* See reset.h for background documentation. */
11 #include <reset.h>
17 * struct reset_ops - The functions that a reset controller driver must
22 * of_xlate - Translate a client's device-tree (OF) reset specifier.
24 * The reset core calls this function as the first step in implementing
27 * If this function pointer is set to NULL, the reset core will use a
28 * default implementation, which assumes #reset-cells = <1>, and that
29 * the DT cell contains a simple integer reset signal ID.
31 * At present, the reset API solely supports device-tree. If this
35 * @reset_ctl: The reset control struct to hold the translation result.
36 * @args: The reset specifier values from device tree.
42 * request - Request a translated reset control.
44 * The reset core calls this function as the second step in
48 * @reset_ctl: The reset control struct to request; this has been
54 * free - Free a previously requested reset control.
58 * @reset_ctl: The reset control to free.
63 * rst_assert - Assert a reset signal.
68 * @reset_ctl: The reset signal to assert.
73 * rst_deassert - Deassert a reset signal.
75 * @reset_ctl: The reset signal to deassert.
80 * rst_status - Check reset signal status.
82 * @reset_ctl: The reset signal to check.