Lines Matching +full:de +full:- +full:asserted
21 #include "prcm-common.h"
26 #include "prm-regbits-44xx.h"
37 * omap_prm_base_init - Populates the prm partitions
78 /* Read-modify-write a register in PRM. Caller must lock */
93 * omap4_prminst_is_hardreset_asserted - read the HW reset line state of
98 * Returns 1 if the (sub)module hardreset line is currently asserted,
99 * 0 if the (sub)module hardreset line is not currently asserted, or
100 * -EINVAL upon parameter error.
115 * omap4_prminst_assert_hardreset - assert the HW reset line of a submodule
120 * reset line to be asserted / deasserted in order to fully enable the
121 * IP. These modules may have multiple hard-reset lines that reset
123 * place the submodule into reset. Returns 0 upon success or -EINVAL
137 * omap4_prminst_deassert_hardreset - deassert a submodule hardreset line and
147 * reset line to be asserted / deasserted in order to fully enable the
148 * IP. These modules may have multiple hard-reset lines that reset
152 * -EINVAL upon an argument error, -EEXIST if the submodule was already out
153 * of reset, or -EBUSY if the submodule did not exit reset promptly.
162 /* Check the current status to avoid de-asserting the line twice */ in omap4_prminst_deassert_hardreset()
165 return -EEXIST; in omap4_prminst_deassert_hardreset()
170 /* de-assert the reset control line */ in omap4_prminst_deassert_hardreset()
177 return (c == MAX_MODULE_HARDRESET_WAIT) ? -EBUSY : 0; in omap4_prminst_deassert_hardreset()