1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Copyright 2012 Texas Instruments
5 * Author: Milo(Woogyom) Kim <milo.kim@ti.com>
8 #ifndef __LP872X_REGULATOR_H__
9 #define __LP872X_REGULATOR_H__
11 #include <linux/regulator/machine.h>
12 #include <linux/platform_device.h>
13 #include <linux/gpio/consumer.h>
15 #define LP872X_MAX_REGULATORS 9
17 #define LP8720_ENABLE_DELAY 200
18 #define LP8725_ENABLE_DELAY 30000
20 enum lp872x_regulator_id
{
22 LP8720_ID_LDO1
= LP8720_ID_BASE
,
30 LP8725_ID_LDO1
= LP8725_ID_BASE
,
50 * @gpio : gpio descriptor for dvs control
51 * @vsel : dvs selector for buck v1 or buck v2 register
52 * @init_state : initial dvs pin state
55 struct gpio_desc
*gpio
;
56 enum lp872x_dvs_sel vsel
;
57 enum gpiod_flags init_state
;
63 * @init_data : init data for each regulator
65 struct lp872x_regulator_data
{
66 enum lp872x_regulator_id id
;
67 struct regulator_init_data
*init_data
;
71 * lp872x_platform_data
72 * @general_config : the value of LP872X_GENERAL_CFG register
73 * @update_config : if LP872X_GENERAL_CFG register is updated, set true
74 * @regulator_data : platform regulator id and init data
75 * @dvs : dvs data for buck voltage control
76 * @enable_gpio : gpio descriptor for enable control
78 struct lp872x_platform_data
{
81 struct lp872x_regulator_data regulator_data
[LP872X_MAX_REGULATORS
];
82 struct lp872x_dvs
*dvs
;
83 struct gpio_desc
*enable_gpio
;