Lines Matching defs:mode
1639 * Setting the parameter will have physical effect once the PLL mode is set to
1699 * pm_pll_set_mode() - Set the PLL mode.
1701 * @mode: PLL mode to be set.
1703 * If reset mode is set the PM controller will first bypass the PLL and then
1704 * assert the reset. If integer or fractional mode is set the PM controller will
1712 enum pm_ret_status pm_pll_set_mode(enum pm_node_id nid, enum pm_pll_mode mode)
1721 /* Check if PLL mode is valid */
1722 if (mode >= PM_PLL_MODE_MAX) {
1727 PM_PACK_PAYLOAD3(payload, PM_PLL_SET_MODE, nid, mode);
1732 * pm_pll_get_mode() - Get the PLL mode.
1734 * @mode: Location to store the mode of the PLL.
1740 enum pm_ret_status pm_pll_get_mode(enum pm_node_id nid, enum pm_pll_mode *mode)
1751 return pm_ipi_send_sync(primary_proc, payload, mode, 1);