struct regulator_ops — regulator operations.
struct regulator_ops { int (* list_voltage) (struct regulator_dev *, unsigned selector); int (* set_voltage) (struct regulator_dev *, int min_uV, int max_uV,unsigned *selector); int (* set_voltage_sel) (struct regulator_dev *, unsigned selector); int (* get_voltage) (struct regulator_dev *); int (* get_voltage_sel) (struct regulator_dev *); int (* set_current_limit) (struct regulator_dev *,int min_uA, int max_uA); int (* get_current_limit) (struct regulator_dev *); int (* enable) (struct regulator_dev *); int (* disable) (struct regulator_dev *); int (* is_enabled) (struct regulator_dev *); int (* set_mode) (struct regulator_dev *, unsigned int mode); unsigned int (* get_mode) (struct regulator_dev *); int (* enable_time) (struct regulator_dev *); int (* set_voltage_time_sel) (struct regulator_dev *,unsigned int old_selector,unsigned int new_selector); int (* get_status) (struct regulator_dev *); unsigned int (* get_optimum_mode) (struct regulator_dev *, int input_uV,int output_uV, int load_uA); int (* set_suspend_voltage) (struct regulator_dev *, int uV); int (* set_suspend_enable) (struct regulator_dev *); int (* set_suspend_disable) (struct regulator_dev *); int (* set_suspend_mode) (struct regulator_dev *, unsigned int mode); };
Return one of the supported voltages, in microvolts; zero if the selector indicates a voltage that is unusable on this system; or negative errno. Selectors range from zero to one less than regulator_desc.n_voltages. Voltages may be reported in any order.
Set the voltage for the regulator within the range specified. The driver should select the voltage closest to min_uV.
Set the voltage for the regulator using the specified selector.
Return the currently configured voltage for the regulator.
Return the currently configured voltage selector for the regulator.
Configure a limit for a current-limited regulator.
Get the configured limit for a current-limited regulator.
Configure the regulator as enabled.
Configure the regulator as disabled.
Return 1 if the regulator is enabled, 0 if not. May also return negative errno.
Set the configured operating mode for the regulator.
Get the configured operating mode for the regulator.
Time taken for the regulator voltage output voltage to stabilise after being enabled, in microseconds.
Time taken for the regulator voltage output voltage to stabilise after being set to a new value, in microseconds. The function provides the from and to voltage selector, the function should return the worst case.
Return actual (not as-configured) status of regulator, as a REGULATOR_STATUS value (or negative errno)
Get the most efficient operating mode for the regulator when running with the specified parameters.
Set the voltage for the regulator when the system is suspended.
Mark the regulator as enabled when the system is suspended.
Mark the regulator as disabled when the system is suspended.
Set the operating mode for the regulator when the system is suspended.