#include <linux/module.h>
#include <linux/slab.h>
#include <linux/i2c.h>
#include <linux/regmap.h>
#include <linux/err.h>
#include <linux/gpio.h>
#include <linux/regulator/lp872x.h>
#include <linux/regulator/driver.h>
#include <linux/platform_device.h>
Go to the source code of this file.
#define EXT_R 0 /* external resistor divider */ |
#define EXTERN_DVS_USED 0 |
#define LP8720_BUCK_FPWM_M BIT(5) |
#define LP8720_BUCK_FPWM_S 5 /* Addr 07h */ |
#define LP8720_BUCK_VOUT1 0x06 |
#define LP8720_BUCK_VOUT2 0x07 |
#define LP8720_DEFAULT_DVS 0 |
#define LP8720_DVS_SEL_M BIT(7) |
#define LP8720_EN_BUCK_M BIT(5) /* Addr 08h */ |
#define LP8720_ENABLE 0x08 |
#define LP8720_EXT_DVS_M BIT(2) |
#define LP8720_NUM_REGULATORS 6 |
#define LP8720_TIMESTEP_M BIT(0) |
#define LP8720_TIMESTEP_S 0 /* Addr 00h */ |
#define LP8725_BUCK1_EN_M BIT(0) |
#define LP8725_BUCK1_FPWM_M BIT(1) |
#define LP8725_BUCK1_FPWM_S 1 /* Addr 0Ch */ |
#define LP8725_BUCK1_VOUT1 0x08 |
#define LP8725_BUCK1_VOUT2 0x09 |
#define LP8725_BUCK2_EN_M BIT(4) |
#define LP8725_BUCK2_FPWM_M BIT(5) |
#define LP8725_BUCK2_FPWM_S 5 |
#define LP8725_BUCK2_VOUT1 0x0A |
#define LP8725_BUCK2_VOUT2 0x0B |
#define LP8725_BUCK_CL_M 0xC0 /* Addr 09h, 0Bh */ |
#define LP8725_BUCK_CL_S 6 |
#define LP8725_BUCK_CTRL 0x0C |
#define LP8725_DEFAULT_DVS BIT(2) |
#define LP8725_DVS1_M BIT(2) |
#define LP8725_DVS2_M BIT(3) |
#define LP8725_EN_LILO1_M BIT(5) /* Addr 0Dh */ |
#define LP8725_EN_LILO2_M BIT(6) |
#define LP8725_LDO_CTRL 0x0D |
#define LP8725_LILO1_VOUT 0x06 |
#define LP8725_LILO2_VOUT 0x07 |
#define LP8725_NUM_REGULATORS 9 |
#define LP8725_TIMESTEP_M 0xC0 /* Addr 00h */ |
#define LP8725_TIMESTEP_S 6 |
#define LP872X_AUTO_PWM 0 |
#define LP872X_EN_LDO1_M BIT(0) |
#define LP872X_EN_LDO2_M BIT(1) |
#define LP872X_EN_LDO3_M BIT(2) |
#define LP872X_EN_LDO4_M BIT(3) |
#define LP872X_EN_LDO5_M BIT(4) |
#define LP872X_FORCE_PWM 1 |
#define LP872X_GENERAL_CFG 0x00 |
#define LP872X_LDO1_VOUT 0x01 |
#define LP872X_LDO2_VOUT 0x02 |
#define LP872X_LDO3_VOUT 0x03 |
#define LP872X_LDO4_VOUT 0x04 |
#define LP872X_LDO5_VOUT 0x05 |
#define LP872X_START_DELAY_M 0xE0 |
#define LP872X_START_DELAY_S 5 |
#define LP872X_VOUT_M 0x1F |
#define MAX_REGISTERS 0x0F |
- Enumerator:
-
Definition at line 96 of file lp872x.c.
MODULE_AUTHOR |
( |
"Milo Kim" |
| ) |
|
MODULE_DESCRIPTION |
( |
"TI/National Semiconductor LP872x PMU Regulator Driver" |
| ) |
|
MODULE_DEVICE_TABLE |
( |
i2c |
, |
|
|
lp872x_ids |
|
|
) |
| |
module_i2c_driver |
( |
lp872x_driver |
| ) |
|