2019-06-04 08:11:33 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2008-04-30 14:10:07 +00:00
|
|
|
/*
|
|
|
|
* consumer.h -- SoC Regulator consumer support.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007, 2008 Wolfson Microelectronics PLC.
|
|
|
|
*
|
2009-02-02 21:43:31 +00:00
|
|
|
* Author: Liam Girdwood <lrg@slimlogic.co.uk>
|
2008-04-30 14:10:07 +00:00
|
|
|
*
|
|
|
|
* Regulator Consumer Interface.
|
|
|
|
*
|
|
|
|
* A Power Management Regulator framework for SoC based devices.
|
|
|
|
* Features:-
|
|
|
|
* o Voltage and current level control.
|
|
|
|
* o Operating mode control.
|
|
|
|
* o Regulator status.
|
|
|
|
* o sysfs entries for showing client devices and status
|
|
|
|
*
|
|
|
|
* EXPERIMENTAL FEATURES:
|
|
|
|
* Dynamic Regulator operating Mode Switching (DRMS) - allows regulators
|
|
|
|
* to use most efficient operating mode depending upon voltage and load and
|
|
|
|
* is transparent to client drivers.
|
|
|
|
*
|
|
|
|
* e.g. Devices x,y,z share regulator r. Device x and y draw 20mA each during
|
|
|
|
* IO and 1mA at idle. Device z draws 100mA when under load and 5mA when
|
|
|
|
* idling. Regulator r has > 90% efficiency in NORMAL mode at loads > 100mA
|
|
|
|
* but this drops rapidly to 60% when below 100mA. Regulator r has > 90%
|
|
|
|
* efficiency in IDLE mode at loads < 10mA. Thus regulator r will operate
|
|
|
|
* in normal mode for loads > 10mA and in IDLE mode for load <= 10mA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __LINUX_REGULATOR_CONSUMER_H_
|
|
|
|
#define __LINUX_REGULATOR_CONSUMER_H_
|
|
|
|
|
2014-10-09 19:43:27 +00:00
|
|
|
#include <linux/err.h>
|
2020-06-25 16:36:05 +00:00
|
|
|
#include <linux/suspend.h>
|
2014-10-09 19:43:27 +00:00
|
|
|
|
2012-01-30 16:46:54 +00:00
|
|
|
struct device;
|
|
|
|
struct notifier_block;
|
2014-07-21 15:38:48 +00:00
|
|
|
struct regmap;
|
2020-06-25 16:36:05 +00:00
|
|
|
struct regulator_dev;
|
2009-11-11 14:16:10 +00:00
|
|
|
|
2008-04-30 14:10:07 +00:00
|
|
|
/*
|
|
|
|
* Regulator operating modes.
|
|
|
|
*
|
|
|
|
* Regulators can run in a variety of different operating modes depending on
|
|
|
|
* output load. This allows further system power savings by selecting the
|
|
|
|
* best (and most efficient) regulator mode for a desired load.
|
|
|
|
*
|
|
|
|
* Most drivers will only care about NORMAL. The modes below are generic and
|
|
|
|
* will probably not match the naming convention of your regulator data sheet
|
|
|
|
* but should match the use cases in the datasheet.
|
|
|
|
*
|
|
|
|
* In order of power efficiency (least efficient at top).
|
|
|
|
*
|
|
|
|
* Mode Description
|
|
|
|
* FAST Regulator can handle fast changes in it's load.
|
|
|
|
* e.g. useful in CPU voltage & frequency scaling where
|
|
|
|
* load can quickly increase with CPU frequency increases.
|
|
|
|
*
|
|
|
|
* NORMAL Normal regulator power supply mode. Most drivers will
|
|
|
|
* use this mode.
|
|
|
|
*
|
|
|
|
* IDLE Regulator runs in a more efficient mode for light
|
|
|
|
* loads. Can be used for devices that have a low power
|
|
|
|
* requirement during periods of inactivity. This mode
|
|
|
|
* may be more noisy than NORMAL and may not be able
|
|
|
|
* to handle fast load switching.
|
|
|
|
*
|
|
|
|
* STANDBY Regulator runs in the most efficient mode for very
|
|
|
|
* light loads. Can be used by devices when they are
|
|
|
|
* in a sleep/standby state. This mode is likely to be
|
|
|
|
* the most noisy and may not be able to handle fast load
|
|
|
|
* switching.
|
|
|
|
*
|
|
|
|
* NOTE: Most regulators will only support a subset of these modes. Some
|
|
|
|
* will only just support NORMAL.
|
|
|
|
*
|
|
|
|
* These modes can be OR'ed together to make up a mask of valid register modes.
|
|
|
|
*/
|
|
|
|
|
2018-04-18 15:54:18 +00:00
|
|
|
#define REGULATOR_MODE_INVALID 0x0
|
2008-04-30 14:10:07 +00:00
|
|
|
#define REGULATOR_MODE_FAST 0x1
|
|
|
|
#define REGULATOR_MODE_NORMAL 0x2
|
|
|
|
#define REGULATOR_MODE_IDLE 0x4
|
|
|
|
#define REGULATOR_MODE_STANDBY 0x8
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Regulator notifier events.
|
|
|
|
*
|
|
|
|
* UNDER_VOLTAGE Regulator output is under voltage.
|
|
|
|
* OVER_CURRENT Regulator output current is too high.
|
|
|
|
* REGULATION_OUT Regulator output is out of regulation.
|
|
|
|
* FAIL Regulator output has failed.
|
|
|
|
* OVER_TEMP Regulator over temp.
|
2009-12-01 21:12:27 +00:00
|
|
|
* FORCE_DISABLE Regulator forcibly shut down by software.
|
2009-01-19 18:20:58 +00:00
|
|
|
* VOLTAGE_CHANGE Regulator voltage changed.
|
2014-08-28 19:36:04 +00:00
|
|
|
* Data passed is old voltage cast to (void *).
|
2009-12-01 21:12:27 +00:00
|
|
|
* DISABLE Regulator was disabled.
|
2014-08-28 19:36:04 +00:00
|
|
|
* PRE_VOLTAGE_CHANGE Regulator is about to have voltage changed.
|
|
|
|
* Data passed is "struct pre_voltage_change_data"
|
|
|
|
* ABORT_VOLTAGE_CHANGE Regulator voltage change failed for some reason.
|
|
|
|
* Data passed is old voltage cast to (void *).
|
2014-11-24 14:10:52 +00:00
|
|
|
* PRE_DISABLE Regulator is about to be disabled
|
|
|
|
* ABORT_DISABLE Regulator disable failed for some reason
|
2008-04-30 14:10:07 +00:00
|
|
|
*
|
|
|
|
* NOTE: These events can be OR'ed together when passed into handler.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define REGULATOR_EVENT_UNDER_VOLTAGE 0x01
|
|
|
|
#define REGULATOR_EVENT_OVER_CURRENT 0x02
|
|
|
|
#define REGULATOR_EVENT_REGULATION_OUT 0x04
|
|
|
|
#define REGULATOR_EVENT_FAIL 0x08
|
|
|
|
#define REGULATOR_EVENT_OVER_TEMP 0x10
|
|
|
|
#define REGULATOR_EVENT_FORCE_DISABLE 0x20
|
2009-01-19 18:20:58 +00:00
|
|
|
#define REGULATOR_EVENT_VOLTAGE_CHANGE 0x40
|
2015-02-23 16:10:03 +00:00
|
|
|
#define REGULATOR_EVENT_DISABLE 0x80
|
2014-08-28 19:36:04 +00:00
|
|
|
#define REGULATOR_EVENT_PRE_VOLTAGE_CHANGE 0x100
|
|
|
|
#define REGULATOR_EVENT_ABORT_VOLTAGE_CHANGE 0x200
|
2014-11-24 14:10:52 +00:00
|
|
|
#define REGULATOR_EVENT_PRE_DISABLE 0x400
|
|
|
|
#define REGULATOR_EVENT_ABORT_DISABLE 0x800
|
2017-02-23 17:06:52 +00:00
|
|
|
#define REGULATOR_EVENT_ENABLE 0x1000
|
2021-06-03 05:41:21 +00:00
|
|
|
/*
|
|
|
|
* Following notifications should be emitted only if detected condition
|
|
|
|
* is such that the HW is likely to still be working but consumers should
|
|
|
|
* take a recovery action to prevent problems esacalating into errors.
|
|
|
|
*/
|
|
|
|
#define REGULATOR_EVENT_UNDER_VOLTAGE_WARN 0x2000
|
|
|
|
#define REGULATOR_EVENT_OVER_CURRENT_WARN 0x4000
|
|
|
|
#define REGULATOR_EVENT_OVER_VOLTAGE_WARN 0x8000
|
|
|
|
#define REGULATOR_EVENT_OVER_TEMP_WARN 0x10000
|
|
|
|
#define REGULATOR_EVENT_WARN_MASK 0x1E000
|
2014-08-28 19:36:04 +00:00
|
|
|
|
2016-11-03 11:11:42 +00:00
|
|
|
/*
|
|
|
|
* Regulator errors that can be queried using regulator_get_error_flags
|
|
|
|
*
|
|
|
|
* UNDER_VOLTAGE Regulator output is under voltage.
|
|
|
|
* OVER_CURRENT Regulator output current is too high.
|
|
|
|
* REGULATION_OUT Regulator output is out of regulation.
|
|
|
|
* FAIL Regulator output has failed.
|
|
|
|
* OVER_TEMP Regulator over temp.
|
|
|
|
*
|
|
|
|
* NOTE: These errors can be OR'ed together.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define REGULATOR_ERROR_UNDER_VOLTAGE BIT(1)
|
|
|
|
#define REGULATOR_ERROR_OVER_CURRENT BIT(2)
|
|
|
|
#define REGULATOR_ERROR_REGULATION_OUT BIT(3)
|
|
|
|
#define REGULATOR_ERROR_FAIL BIT(4)
|
|
|
|
#define REGULATOR_ERROR_OVER_TEMP BIT(5)
|
|
|
|
|
2021-06-03 05:41:21 +00:00
|
|
|
#define REGULATOR_ERROR_UNDER_VOLTAGE_WARN BIT(6)
|
|
|
|
#define REGULATOR_ERROR_OVER_CURRENT_WARN BIT(7)
|
|
|
|
#define REGULATOR_ERROR_OVER_VOLTAGE_WARN BIT(8)
|
|
|
|
#define REGULATOR_ERROR_OVER_TEMP_WARN BIT(9)
|
2016-11-03 11:11:42 +00:00
|
|
|
|
2014-08-28 19:36:04 +00:00
|
|
|
/**
|
|
|
|
* struct pre_voltage_change_data - Data sent with PRE_VOLTAGE_CHANGE event
|
|
|
|
*
|
|
|
|
* @old_uV: Current voltage before change.
|
|
|
|
* @min_uV: Min voltage we'll change to.
|
|
|
|
* @max_uV: Max voltage we'll change to.
|
|
|
|
*/
|
|
|
|
struct pre_voltage_change_data {
|
|
|
|
unsigned long old_uV;
|
|
|
|
unsigned long min_uV;
|
|
|
|
unsigned long max_uV;
|
|
|
|
};
|
2008-04-30 14:10:07 +00:00
|
|
|
|
|
|
|
struct regulator;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* struct regulator_bulk_data - Data used for bulk regulator operations.
|
|
|
|
*
|
2008-12-31 12:52:41 +00:00
|
|
|
* @supply: The name of the supply. Initialised by the user before
|
|
|
|
* using the bulk regulator APIs.
|
|
|
|
* @consumer: The regulator consumer for the supply. This will be managed
|
|
|
|
* by the bulk API.
|
2008-04-30 14:10:07 +00:00
|
|
|
*
|
|
|
|
* The regulator APIs provide a series of regulator_bulk_() API calls as
|
|
|
|
* a convenience to consumers which require multiple supplies. This
|
|
|
|
* structure is used to manage data for these calls.
|
|
|
|
*/
|
|
|
|
struct regulator_bulk_data {
|
|
|
|
const char *supply;
|
|
|
|
struct regulator *consumer;
|
2011-05-24 00:12:40 +00:00
|
|
|
|
2011-09-08 17:16:47 +00:00
|
|
|
/* private: Internal use */
|
2011-05-24 00:12:40 +00:00
|
|
|
int ret;
|
2008-04-30 14:10:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#if defined(CONFIG_REGULATOR)
|
|
|
|
|
|
|
|
/* regulator get and put */
|
|
|
|
struct regulator *__must_check regulator_get(struct device *dev,
|
|
|
|
const char *id);
|
2012-01-17 03:39:58 +00:00
|
|
|
struct regulator *__must_check devm_regulator_get(struct device *dev,
|
|
|
|
const char *id);
|
2009-07-21 15:00:23 +00:00
|
|
|
struct regulator *__must_check regulator_get_exclusive(struct device *dev,
|
|
|
|
const char *id);
|
2013-08-25 15:54:13 +00:00
|
|
|
struct regulator *__must_check devm_regulator_get_exclusive(struct device *dev,
|
|
|
|
const char *id);
|
2013-07-29 20:42:42 +00:00
|
|
|
struct regulator *__must_check regulator_get_optional(struct device *dev,
|
|
|
|
const char *id);
|
|
|
|
struct regulator *__must_check devm_regulator_get_optional(struct device *dev,
|
|
|
|
const char *id);
|
2008-04-30 14:10:07 +00:00
|
|
|
void regulator_put(struct regulator *regulator);
|
2012-01-29 09:52:37 +00:00
|
|
|
void devm_regulator_put(struct regulator *regulator);
|
2008-04-30 14:10:07 +00:00
|
|
|
|
2013-10-15 19:14:20 +00:00
|
|
|
int regulator_register_supply_alias(struct device *dev, const char *id,
|
|
|
|
struct device *alias_dev,
|
|
|
|
const char *alias_id);
|
|
|
|
void regulator_unregister_supply_alias(struct device *dev, const char *id);
|
|
|
|
|
2014-05-23 15:44:10 +00:00
|
|
|
int regulator_bulk_register_supply_alias(struct device *dev,
|
|
|
|
const char *const *id,
|
2013-10-15 19:14:20 +00:00
|
|
|
struct device *alias_dev,
|
2014-05-23 15:44:10 +00:00
|
|
|
const char *const *alias_id,
|
|
|
|
int num_id);
|
2013-10-15 19:14:20 +00:00
|
|
|
void regulator_bulk_unregister_supply_alias(struct device *dev,
|
2014-05-23 15:44:10 +00:00
|
|
|
const char * const *id, int num_id);
|
2013-10-15 19:14:20 +00:00
|
|
|
|
|
|
|
int devm_regulator_register_supply_alias(struct device *dev, const char *id,
|
|
|
|
struct device *alias_dev,
|
|
|
|
const char *alias_id);
|
|
|
|
|
|
|
|
int devm_regulator_bulk_register_supply_alias(struct device *dev,
|
2014-05-23 15:44:10 +00:00
|
|
|
const char *const *id,
|
2013-10-15 19:14:20 +00:00
|
|
|
struct device *alias_dev,
|
2014-05-23 15:44:10 +00:00
|
|
|
const char *const *alias_id,
|
2013-10-15 19:14:20 +00:00
|
|
|
int num_id);
|
|
|
|
|
2008-04-30 14:10:07 +00:00
|
|
|
/* regulator output control and status */
|
2012-03-19 16:35:48 +00:00
|
|
|
int __must_check regulator_enable(struct regulator *regulator);
|
2008-04-30 14:10:07 +00:00
|
|
|
int regulator_disable(struct regulator *regulator);
|
|
|
|
int regulator_force_disable(struct regulator *regulator);
|
|
|
|
int regulator_is_enabled(struct regulator *regulator);
|
2011-09-11 08:53:50 +00:00
|
|
|
int regulator_disable_deferred(struct regulator *regulator, int ms);
|
2008-04-30 14:10:07 +00:00
|
|
|
|
2012-03-19 16:35:48 +00:00
|
|
|
int __must_check regulator_bulk_get(struct device *dev, int num_consumers,
|
|
|
|
struct regulator_bulk_data *consumers);
|
|
|
|
int __must_check devm_regulator_bulk_get(struct device *dev, int num_consumers,
|
|
|
|
struct regulator_bulk_data *consumers);
|
|
|
|
int __must_check regulator_bulk_enable(int num_consumers,
|
|
|
|
struct regulator_bulk_data *consumers);
|
2008-04-30 14:10:07 +00:00
|
|
|
int regulator_bulk_disable(int num_consumers,
|
|
|
|
struct regulator_bulk_data *consumers);
|
2012-01-03 07:22:03 +00:00
|
|
|
int regulator_bulk_force_disable(int num_consumers,
|
|
|
|
struct regulator_bulk_data *consumers);
|
2008-04-30 14:10:07 +00:00
|
|
|
void regulator_bulk_free(int num_consumers,
|
|
|
|
struct regulator_bulk_data *consumers);
|
|
|
|
|
2009-02-26 19:48:36 +00:00
|
|
|
int regulator_count_voltages(struct regulator *regulator);
|
|
|
|
int regulator_list_voltage(struct regulator *regulator, unsigned selector);
|
2009-07-21 15:00:24 +00:00
|
|
|
int regulator_is_supported_voltage(struct regulator *regulator,
|
|
|
|
int min_uV, int max_uV);
|
2013-06-07 08:06:56 +00:00
|
|
|
unsigned int regulator_get_linear_step(struct regulator *regulator);
|
2008-04-30 14:10:07 +00:00
|
|
|
int regulator_set_voltage(struct regulator *regulator, int min_uV, int max_uV);
|
2011-03-17 12:24:52 +00:00
|
|
|
int regulator_set_voltage_time(struct regulator *regulator,
|
|
|
|
int old_uV, int new_uV);
|
2008-04-30 14:10:07 +00:00
|
|
|
int regulator_get_voltage(struct regulator *regulator);
|
2010-12-16 15:49:36 +00:00
|
|
|
int regulator_sync_voltage(struct regulator *regulator);
|
2008-04-30 14:10:07 +00:00
|
|
|
int regulator_set_current_limit(struct regulator *regulator,
|
|
|
|
int min_uA, int max_uA);
|
|
|
|
int regulator_get_current_limit(struct regulator *regulator);
|
|
|
|
|
|
|
|
int regulator_set_mode(struct regulator *regulator, unsigned int mode);
|
|
|
|
unsigned int regulator_get_mode(struct regulator *regulator);
|
2016-11-03 11:11:42 +00:00
|
|
|
int regulator_get_error_flags(struct regulator *regulator,
|
|
|
|
unsigned int *flags);
|
2015-02-12 03:35:27 +00:00
|
|
|
int regulator_set_load(struct regulator *regulator, int load_uA);
|
2008-04-30 14:10:07 +00:00
|
|
|
|
2012-08-31 17:36:37 +00:00
|
|
|
int regulator_allow_bypass(struct regulator *regulator, bool allow);
|
|
|
|
|
2014-07-21 15:38:48 +00:00
|
|
|
struct regmap *regulator_get_regmap(struct regulator *regulator);
|
|
|
|
int regulator_get_hardware_vsel_register(struct regulator *regulator,
|
|
|
|
unsigned *vsel_reg,
|
|
|
|
unsigned *vsel_mask);
|
|
|
|
int regulator_list_hardware_vsel(struct regulator *regulator,
|
|
|
|
unsigned selector);
|
|
|
|
|
2008-04-30 14:10:07 +00:00
|
|
|
/* regulator notifier block */
|
|
|
|
int regulator_register_notifier(struct regulator *regulator,
|
|
|
|
struct notifier_block *nb);
|
2015-03-05 15:39:20 +00:00
|
|
|
int devm_regulator_register_notifier(struct regulator *regulator,
|
|
|
|
struct notifier_block *nb);
|
2008-04-30 14:10:07 +00:00
|
|
|
int regulator_unregister_notifier(struct regulator *regulator,
|
|
|
|
struct notifier_block *nb);
|
2015-03-05 15:39:20 +00:00
|
|
|
void devm_regulator_unregister_notifier(struct regulator *regulator,
|
|
|
|
struct notifier_block *nb);
|
2008-04-30 14:10:07 +00:00
|
|
|
|
2020-06-25 16:36:05 +00:00
|
|
|
/* regulator suspend */
|
|
|
|
int regulator_suspend_enable(struct regulator_dev *rdev,
|
|
|
|
suspend_state_t state);
|
|
|
|
int regulator_suspend_disable(struct regulator_dev *rdev,
|
|
|
|
suspend_state_t state);
|
|
|
|
int regulator_set_suspend_voltage(struct regulator *regulator, int min_uV,
|
|
|
|
int max_uV, suspend_state_t state);
|
|
|
|
|
2008-04-30 14:10:07 +00:00
|
|
|
/* driver data - core doesn't touch */
|
|
|
|
void *regulator_get_drvdata(struct regulator *regulator);
|
|
|
|
void regulator_set_drvdata(struct regulator *regulator, void *data);
|
|
|
|
|
2019-08-30 07:17:37 +00:00
|
|
|
/* misc helpers */
|
|
|
|
|
|
|
|
void regulator_bulk_set_supply_names(struct regulator_bulk_data *consumers,
|
|
|
|
const char *const *supply_names,
|
|
|
|
unsigned int num_supplies);
|
|
|
|
|
2019-12-20 16:44:49 +00:00
|
|
|
bool regulator_is_equal(struct regulator *reg1, struct regulator *reg2);
|
|
|
|
|
2008-04-30 14:10:07 +00:00
|
|
|
#else
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Make sure client drivers will still build on systems with no software
|
|
|
|
* controllable voltage or current regulators.
|
|
|
|
*/
|
|
|
|
static inline struct regulator *__must_check regulator_get(struct device *dev,
|
|
|
|
const char *id)
|
|
|
|
{
|
|
|
|
/* Nothing except the stubbed out regulator API should be
|
|
|
|
* looking at the value except to check if it is an error
|
2010-04-03 15:37:45 +00:00
|
|
|
* value. Drivers are free to handle NULL specifically by
|
|
|
|
* skipping all regulator API calls, but they don't have to.
|
|
|
|
* Drivers which don't, should make sure they properly handle
|
|
|
|
* corner cases of the API, such as regulator_get_voltage()
|
|
|
|
* returning 0.
|
2008-04-30 14:10:07 +00:00
|
|
|
*/
|
2010-04-03 15:37:45 +00:00
|
|
|
return NULL;
|
2008-04-30 14:10:07 +00:00
|
|
|
}
|
2012-01-17 03:39:58 +00:00
|
|
|
|
|
|
|
static inline struct regulator *__must_check
|
|
|
|
devm_regulator_get(struct device *dev, const char *id)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2013-07-29 20:00:53 +00:00
|
|
|
static inline struct regulator *__must_check
|
|
|
|
regulator_get_exclusive(struct device *dev, const char *id)
|
|
|
|
{
|
2014-10-24 20:56:58 +00:00
|
|
|
return ERR_PTR(-ENODEV);
|
2013-07-29 20:00:53 +00:00
|
|
|
}
|
|
|
|
|
2021-01-20 20:58:44 +00:00
|
|
|
static inline struct regulator *__must_check
|
|
|
|
devm_regulator_get_exclusive(struct device *dev, const char *id)
|
|
|
|
{
|
|
|
|
return ERR_PTR(-ENODEV);
|
|
|
|
}
|
|
|
|
|
2013-07-29 20:42:42 +00:00
|
|
|
static inline struct regulator *__must_check
|
|
|
|
regulator_get_optional(struct device *dev, const char *id)
|
|
|
|
{
|
2014-04-17 18:55:24 +00:00
|
|
|
return ERR_PTR(-ENODEV);
|
2013-07-29 20:42:42 +00:00
|
|
|
}
|
|
|
|
|
2013-07-29 20:00:53 +00:00
|
|
|
|
2012-01-17 03:39:58 +00:00
|
|
|
static inline struct regulator *__must_check
|
2013-07-29 20:42:42 +00:00
|
|
|
devm_regulator_get_optional(struct device *dev, const char *id)
|
2012-01-17 03:39:58 +00:00
|
|
|
{
|
2014-04-17 18:55:24 +00:00
|
|
|
return ERR_PTR(-ENODEV);
|
2012-01-17 03:39:58 +00:00
|
|
|
}
|
|
|
|
|
2008-04-30 14:10:07 +00:00
|
|
|
static inline void regulator_put(struct regulator *regulator)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2012-01-29 09:52:37 +00:00
|
|
|
static inline void devm_regulator_put(struct regulator *regulator)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-10-15 19:14:20 +00:00
|
|
|
static inline int regulator_register_supply_alias(struct device *dev,
|
|
|
|
const char *id,
|
|
|
|
struct device *alias_dev,
|
|
|
|
const char *alias_id)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void regulator_unregister_supply_alias(struct device *dev,
|
|
|
|
const char *id)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int regulator_bulk_register_supply_alias(struct device *dev,
|
2014-05-23 15:44:10 +00:00
|
|
|
const char *const *id,
|
|
|
|
struct device *alias_dev,
|
|
|
|
const char * const *alias_id,
|
|
|
|
int num_id)
|
2013-10-15 19:14:20 +00:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void regulator_bulk_unregister_supply_alias(struct device *dev,
|
2014-05-23 15:44:10 +00:00
|
|
|
const char * const *id,
|
|
|
|
int num_id)
|
2013-10-15 19:14:20 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int devm_regulator_register_supply_alias(struct device *dev,
|
|
|
|
const char *id,
|
|
|
|
struct device *alias_dev,
|
|
|
|
const char *alias_id)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-05-23 15:44:10 +00:00
|
|
|
static inline int devm_regulator_bulk_register_supply_alias(struct device *dev,
|
|
|
|
const char *const *id,
|
|
|
|
struct device *alias_dev,
|
|
|
|
const char *const *alias_id,
|
|
|
|
int num_id)
|
2013-10-15 19:14:20 +00:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-04-30 14:10:07 +00:00
|
|
|
static inline int regulator_enable(struct regulator *regulator)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int regulator_disable(struct regulator *regulator)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-01-02 09:49:32 +00:00
|
|
|
static inline int regulator_force_disable(struct regulator *regulator)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-09-11 08:53:50 +00:00
|
|
|
static inline int regulator_disable_deferred(struct regulator *regulator,
|
|
|
|
int ms)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-04-30 14:10:07 +00:00
|
|
|
static inline int regulator_is_enabled(struct regulator *regulator)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int regulator_bulk_get(struct device *dev,
|
|
|
|
int num_consumers,
|
|
|
|
struct regulator_bulk_data *consumers)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-01-27 04:55:28 +00:00
|
|
|
static inline int devm_regulator_bulk_get(struct device *dev, int num_consumers,
|
|
|
|
struct regulator_bulk_data *consumers)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-04-30 14:10:07 +00:00
|
|
|
static inline int regulator_bulk_enable(int num_consumers,
|
|
|
|
struct regulator_bulk_data *consumers)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int regulator_bulk_disable(int num_consumers,
|
|
|
|
struct regulator_bulk_data *consumers)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-01-03 07:22:03 +00:00
|
|
|
static inline int regulator_bulk_force_disable(int num_consumers,
|
|
|
|
struct regulator_bulk_data *consumers)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-04-30 14:10:07 +00:00
|
|
|
static inline void regulator_bulk_free(int num_consumers,
|
|
|
|
struct regulator_bulk_data *consumers)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int regulator_set_voltage(struct regulator *regulator,
|
|
|
|
int min_uV, int max_uV)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-05-27 12:07:29 +00:00
|
|
|
static inline int regulator_set_voltage_time(struct regulator *regulator,
|
|
|
|
int old_uV, int new_uV)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-04-30 14:10:07 +00:00
|
|
|
static inline int regulator_get_voltage(struct regulator *regulator)
|
|
|
|
{
|
2012-06-11 12:14:24 +00:00
|
|
|
return -EINVAL;
|
2008-04-30 14:10:07 +00:00
|
|
|
}
|
|
|
|
|
2021-01-20 20:58:44 +00:00
|
|
|
static inline int regulator_sync_voltage(struct regulator *regulator)
|
|
|
|
{
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2012-06-30 23:05:36 +00:00
|
|
|
static inline int regulator_is_supported_voltage(struct regulator *regulator,
|
|
|
|
int min_uV, int max_uV)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-03-04 19:38:29 +00:00
|
|
|
static inline unsigned int regulator_get_linear_step(struct regulator *regulator)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-04-30 14:10:07 +00:00
|
|
|
static inline int regulator_set_current_limit(struct regulator *regulator,
|
|
|
|
int min_uA, int max_uA)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int regulator_get_current_limit(struct regulator *regulator)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int regulator_set_mode(struct regulator *regulator,
|
|
|
|
unsigned int mode)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline unsigned int regulator_get_mode(struct regulator *regulator)
|
|
|
|
{
|
|
|
|
return REGULATOR_MODE_NORMAL;
|
|
|
|
}
|
|
|
|
|
2016-12-04 22:52:31 +00:00
|
|
|
static inline int regulator_get_error_flags(struct regulator *regulator,
|
|
|
|
unsigned int *flags)
|
2016-11-03 11:11:42 +00:00
|
|
|
{
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2015-02-12 03:35:27 +00:00
|
|
|
static inline int regulator_set_load(struct regulator *regulator, int load_uA)
|
2008-04-30 14:10:07 +00:00
|
|
|
{
|
2018-11-17 03:19:30 +00:00
|
|
|
return 0;
|
2008-04-30 14:10:07 +00:00
|
|
|
}
|
|
|
|
|
2012-08-31 17:36:37 +00:00
|
|
|
static inline int regulator_allow_bypass(struct regulator *regulator,
|
|
|
|
bool allow)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-07-25 18:07:11 +00:00
|
|
|
static inline struct regmap *regulator_get_regmap(struct regulator *regulator)
|
2014-07-21 15:38:48 +00:00
|
|
|
{
|
|
|
|
return ERR_PTR(-EOPNOTSUPP);
|
|
|
|
}
|
|
|
|
|
2014-07-25 18:07:11 +00:00
|
|
|
static inline int regulator_get_hardware_vsel_register(struct regulator *regulator,
|
|
|
|
unsigned *vsel_reg,
|
|
|
|
unsigned *vsel_mask)
|
2014-07-21 15:38:48 +00:00
|
|
|
{
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
}
|
|
|
|
|
2014-07-25 18:07:11 +00:00
|
|
|
static inline int regulator_list_hardware_vsel(struct regulator *regulator,
|
|
|
|
unsigned selector)
|
2014-07-21 15:38:48 +00:00
|
|
|
{
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
}
|
|
|
|
|
2008-04-30 14:10:07 +00:00
|
|
|
static inline int regulator_register_notifier(struct regulator *regulator,
|
|
|
|
struct notifier_block *nb)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-03-05 15:39:20 +00:00
|
|
|
static inline int devm_regulator_register_notifier(struct regulator *regulator,
|
|
|
|
struct notifier_block *nb)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-04-30 14:10:07 +00:00
|
|
|
static inline int regulator_unregister_notifier(struct regulator *regulator,
|
|
|
|
struct notifier_block *nb)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-03-05 15:39:20 +00:00
|
|
|
static inline int devm_regulator_unregister_notifier(struct regulator *regulator,
|
|
|
|
struct notifier_block *nb)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-01-20 20:58:44 +00:00
|
|
|
static inline int regulator_suspend_enable(struct regulator_dev *rdev,
|
|
|
|
suspend_state_t state)
|
|
|
|
{
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int regulator_suspend_disable(struct regulator_dev *rdev,
|
|
|
|
suspend_state_t state)
|
|
|
|
{
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int regulator_set_suspend_voltage(struct regulator *regulator,
|
|
|
|
int min_uV, int max_uV,
|
|
|
|
suspend_state_t state)
|
|
|
|
{
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2008-04-30 14:10:07 +00:00
|
|
|
static inline void *regulator_get_drvdata(struct regulator *regulator)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void regulator_set_drvdata(struct regulator *regulator,
|
|
|
|
void *data)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2012-11-20 17:07:41 +00:00
|
|
|
static inline int regulator_count_voltages(struct regulator *regulator)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2015-07-10 15:26:38 +00:00
|
|
|
|
|
|
|
static inline int regulator_list_voltage(struct regulator *regulator, unsigned selector)
|
|
|
|
{
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2019-09-02 15:13:32 +00:00
|
|
|
static inline void
|
|
|
|
regulator_bulk_set_supply_names(struct regulator_bulk_data *consumers,
|
|
|
|
const char *const *supply_names,
|
|
|
|
unsigned int num_supplies)
|
2019-08-30 07:17:37 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2019-12-20 16:44:49 +00:00
|
|
|
static inline bool
|
2020-01-15 01:02:58 +00:00
|
|
|
regulator_is_equal(struct regulator *reg1, struct regulator *reg2)
|
2019-12-20 16:44:49 +00:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2008-04-30 14:10:07 +00:00
|
|
|
#endif
|
|
|
|
|
2015-08-17 02:46:51 +00:00
|
|
|
static inline int regulator_set_voltage_triplet(struct regulator *regulator,
|
|
|
|
int min_uV, int target_uV,
|
|
|
|
int max_uV)
|
|
|
|
{
|
|
|
|
if (regulator_set_voltage(regulator, target_uV, max_uV) == 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return regulator_set_voltage(regulator, min_uV, max_uV);
|
|
|
|
}
|
|
|
|
|
2012-08-05 15:05:20 +00:00
|
|
|
static inline int regulator_set_voltage_tol(struct regulator *regulator,
|
|
|
|
int new_uV, int tol_uV)
|
|
|
|
{
|
2013-07-04 16:27:14 +00:00
|
|
|
if (regulator_set_voltage(regulator, new_uV, new_uV + tol_uV) == 0)
|
|
|
|
return 0;
|
|
|
|
else
|
|
|
|
return regulator_set_voltage(regulator,
|
|
|
|
new_uV - tol_uV, new_uV + tol_uV);
|
2012-08-05 15:05:20 +00:00
|
|
|
}
|
|
|
|
|
2012-11-14 07:47:10 +00:00
|
|
|
static inline int regulator_is_supported_voltage_tol(struct regulator *regulator,
|
|
|
|
int target_uV, int tol_uV)
|
|
|
|
{
|
|
|
|
return regulator_is_supported_voltage(regulator,
|
|
|
|
target_uV - tol_uV,
|
|
|
|
target_uV + tol_uV);
|
|
|
|
}
|
|
|
|
|
2008-04-30 14:10:07 +00:00
|
|
|
#endif
|