regulator: qcom_smd: Document PM6125 PMIC
[linux-block.git] / drivers / regulator / qcom_spmi-regulator.c
CommitLineData
97fb5e8d 1// SPDX-License-Identifier: GPL-2.0-only
e92a4047
SB
2/*
3 * Copyright (c) 2012-2015, The Linux Foundation. All rights reserved.
e92a4047
SB
4 */
5
6#include <linux/module.h>
7#include <linux/delay.h>
b6688015 8#include <linux/devm-helpers.h>
e92a4047
SB
9#include <linux/err.h>
10#include <linux/kernel.h>
11#include <linux/interrupt.h>
12#include <linux/bitops.h>
13#include <linux/slab.h>
14#include <linux/of.h>
15#include <linux/of_device.h>
16#include <linux/platform_device.h>
17#include <linux/ktime.h>
18#include <linux/regulator/driver.h>
19#include <linux/regmap.h>
20#include <linux/list.h>
0caecaa8
IL
21#include <linux/mfd/syscon.h>
22#include <linux/io.h>
e92a4047 23
e2adfacd
SB
24/* Pin control enable input pins. */
25#define SPMI_REGULATOR_PIN_CTRL_ENABLE_NONE 0x00
26#define SPMI_REGULATOR_PIN_CTRL_ENABLE_EN0 0x01
27#define SPMI_REGULATOR_PIN_CTRL_ENABLE_EN1 0x02
28#define SPMI_REGULATOR_PIN_CTRL_ENABLE_EN2 0x04
29#define SPMI_REGULATOR_PIN_CTRL_ENABLE_EN3 0x08
30#define SPMI_REGULATOR_PIN_CTRL_ENABLE_HW_DEFAULT 0x10
31
32/* Pin control high power mode input pins. */
33#define SPMI_REGULATOR_PIN_CTRL_HPM_NONE 0x00
34#define SPMI_REGULATOR_PIN_CTRL_HPM_EN0 0x01
35#define SPMI_REGULATOR_PIN_CTRL_HPM_EN1 0x02
36#define SPMI_REGULATOR_PIN_CTRL_HPM_EN2 0x04
37#define SPMI_REGULATOR_PIN_CTRL_HPM_EN3 0x08
38#define SPMI_REGULATOR_PIN_CTRL_HPM_SLEEP_B 0x10
39#define SPMI_REGULATOR_PIN_CTRL_HPM_HW_DEFAULT 0x20
40
41/*
42 * Used with enable parameters to specify that hardware default register values
43 * should be left unaltered.
44 */
45#define SPMI_REGULATOR_USE_HW_DEFAULT 2
46
47/* Soft start strength of a voltage switch type regulator */
48enum spmi_vs_soft_start_str {
49 SPMI_VS_SOFT_START_STR_0P05_UA = 0,
50 SPMI_VS_SOFT_START_STR_0P25_UA,
51 SPMI_VS_SOFT_START_STR_0P55_UA,
52 SPMI_VS_SOFT_START_STR_0P75_UA,
53 SPMI_VS_SOFT_START_STR_HW_DEFAULT,
54};
55
56/**
57 * struct spmi_regulator_init_data - spmi-regulator initialization data
58 * @pin_ctrl_enable: Bit mask specifying which hardware pins should be
59 * used to enable the regulator, if any
60 * Value should be an ORing of
61 * SPMI_REGULATOR_PIN_CTRL_ENABLE_* constants. If
62 * the bit specified by
63 * SPMI_REGULATOR_PIN_CTRL_ENABLE_HW_DEFAULT is
64 * set, then pin control enable hardware registers
65 * will not be modified.
66 * @pin_ctrl_hpm: Bit mask specifying which hardware pins should be
67 * used to force the regulator into high power
68 * mode, if any
69 * Value should be an ORing of
70 * SPMI_REGULATOR_PIN_CTRL_HPM_* constants. If
71 * the bit specified by
72 * SPMI_REGULATOR_PIN_CTRL_HPM_HW_DEFAULT is
73 * set, then pin control mode hardware registers
74 * will not be modified.
75 * @vs_soft_start_strength: This parameter sets the soft start strength for
76 * voltage switch type regulators. Its value
77 * should be one of SPMI_VS_SOFT_START_STR_*. If
78 * its value is SPMI_VS_SOFT_START_STR_HW_DEFAULT,
79 * then the soft start strength will be left at its
80 * default hardware value.
81 */
82struct spmi_regulator_init_data {
83 unsigned pin_ctrl_enable;
84 unsigned pin_ctrl_hpm;
85 enum spmi_vs_soft_start_str vs_soft_start_strength;
86};
87
e92a4047
SB
88/* These types correspond to unique register layouts. */
89enum spmi_regulator_logical_type {
90 SPMI_REGULATOR_LOGICAL_TYPE_SMPS,
91 SPMI_REGULATOR_LOGICAL_TYPE_LDO,
92 SPMI_REGULATOR_LOGICAL_TYPE_VS,
93 SPMI_REGULATOR_LOGICAL_TYPE_BOOST,
94 SPMI_REGULATOR_LOGICAL_TYPE_FTSMPS,
95 SPMI_REGULATOR_LOGICAL_TYPE_BOOST_BYP,
96 SPMI_REGULATOR_LOGICAL_TYPE_LN_LDO,
97 SPMI_REGULATOR_LOGICAL_TYPE_ULT_LO_SMPS,
98 SPMI_REGULATOR_LOGICAL_TYPE_ULT_HO_SMPS,
99 SPMI_REGULATOR_LOGICAL_TYPE_ULT_LDO,
42ba89c8 100 SPMI_REGULATOR_LOGICAL_TYPE_FTSMPS426,
0211f68e 101 SPMI_REGULATOR_LOGICAL_TYPE_HFS430,
e92a4047
SB
102};
103
104enum spmi_regulator_type {
105 SPMI_REGULATOR_TYPE_BUCK = 0x03,
106 SPMI_REGULATOR_TYPE_LDO = 0x04,
107 SPMI_REGULATOR_TYPE_VS = 0x05,
108 SPMI_REGULATOR_TYPE_BOOST = 0x1b,
109 SPMI_REGULATOR_TYPE_FTS = 0x1c,
110 SPMI_REGULATOR_TYPE_BOOST_BYP = 0x1f,
111 SPMI_REGULATOR_TYPE_ULT_LDO = 0x21,
112 SPMI_REGULATOR_TYPE_ULT_BUCK = 0x22,
113};
114
115enum spmi_regulator_subtype {
116 SPMI_REGULATOR_SUBTYPE_GP_CTL = 0x08,
117 SPMI_REGULATOR_SUBTYPE_RF_CTL = 0x09,
118 SPMI_REGULATOR_SUBTYPE_N50 = 0x01,
119 SPMI_REGULATOR_SUBTYPE_N150 = 0x02,
120 SPMI_REGULATOR_SUBTYPE_N300 = 0x03,
121 SPMI_REGULATOR_SUBTYPE_N600 = 0x04,
122 SPMI_REGULATOR_SUBTYPE_N1200 = 0x05,
123 SPMI_REGULATOR_SUBTYPE_N600_ST = 0x06,
124 SPMI_REGULATOR_SUBTYPE_N1200_ST = 0x07,
125 SPMI_REGULATOR_SUBTYPE_N900_ST = 0x14,
126 SPMI_REGULATOR_SUBTYPE_N300_ST = 0x15,
127 SPMI_REGULATOR_SUBTYPE_P50 = 0x08,
128 SPMI_REGULATOR_SUBTYPE_P150 = 0x09,
129 SPMI_REGULATOR_SUBTYPE_P300 = 0x0a,
130 SPMI_REGULATOR_SUBTYPE_P600 = 0x0b,
131 SPMI_REGULATOR_SUBTYPE_P1200 = 0x0c,
132 SPMI_REGULATOR_SUBTYPE_LN = 0x10,
133 SPMI_REGULATOR_SUBTYPE_LV_P50 = 0x28,
134 SPMI_REGULATOR_SUBTYPE_LV_P150 = 0x29,
135 SPMI_REGULATOR_SUBTYPE_LV_P300 = 0x2a,
136 SPMI_REGULATOR_SUBTYPE_LV_P600 = 0x2b,
137 SPMI_REGULATOR_SUBTYPE_LV_P1200 = 0x2c,
138 SPMI_REGULATOR_SUBTYPE_LV_P450 = 0x2d,
328816c2
ADR
139 SPMI_REGULATOR_SUBTYPE_HT_N300_ST = 0x30,
140 SPMI_REGULATOR_SUBTYPE_HT_N600_ST = 0x31,
141 SPMI_REGULATOR_SUBTYPE_HT_N1200_ST = 0x32,
142 SPMI_REGULATOR_SUBTYPE_HT_LVP150 = 0x3b,
143 SPMI_REGULATOR_SUBTYPE_HT_LVP300 = 0x3c,
144 SPMI_REGULATOR_SUBTYPE_L660_N300_ST = 0x42,
145 SPMI_REGULATOR_SUBTYPE_L660_N600_ST = 0x43,
146 SPMI_REGULATOR_SUBTYPE_L660_P50 = 0x46,
147 SPMI_REGULATOR_SUBTYPE_L660_P150 = 0x47,
148 SPMI_REGULATOR_SUBTYPE_L660_P600 = 0x49,
149 SPMI_REGULATOR_SUBTYPE_L660_LVP150 = 0x4d,
150 SPMI_REGULATOR_SUBTYPE_L660_LVP600 = 0x4f,
e92a4047
SB
151 SPMI_REGULATOR_SUBTYPE_LV100 = 0x01,
152 SPMI_REGULATOR_SUBTYPE_LV300 = 0x02,
153 SPMI_REGULATOR_SUBTYPE_MV300 = 0x08,
154 SPMI_REGULATOR_SUBTYPE_MV500 = 0x09,
155 SPMI_REGULATOR_SUBTYPE_HDMI = 0x10,
156 SPMI_REGULATOR_SUBTYPE_OTG = 0x11,
157 SPMI_REGULATOR_SUBTYPE_5V_BOOST = 0x01,
158 SPMI_REGULATOR_SUBTYPE_FTS_CTL = 0x08,
159 SPMI_REGULATOR_SUBTYPE_FTS2p5_CTL = 0x09,
42ba89c8 160 SPMI_REGULATOR_SUBTYPE_FTS426_CTL = 0x0a,
e92a4047
SB
161 SPMI_REGULATOR_SUBTYPE_BB_2A = 0x01,
162 SPMI_REGULATOR_SUBTYPE_ULT_HF_CTL1 = 0x0d,
163 SPMI_REGULATOR_SUBTYPE_ULT_HF_CTL2 = 0x0e,
164 SPMI_REGULATOR_SUBTYPE_ULT_HF_CTL3 = 0x0f,
165 SPMI_REGULATOR_SUBTYPE_ULT_HF_CTL4 = 0x10,
0211f68e 166 SPMI_REGULATOR_SUBTYPE_HFS430 = 0x0a,
00f6ebbd 167 SPMI_REGULATOR_SUBTYPE_HT_P150 = 0x35,
3d04ae8e 168 SPMI_REGULATOR_SUBTYPE_HT_P600 = 0x3d,
e92a4047
SB
169};
170
171enum spmi_common_regulator_registers {
172 SPMI_COMMON_REG_DIG_MAJOR_REV = 0x01,
173 SPMI_COMMON_REG_TYPE = 0x04,
174 SPMI_COMMON_REG_SUBTYPE = 0x05,
175 SPMI_COMMON_REG_VOLTAGE_RANGE = 0x40,
176 SPMI_COMMON_REG_VOLTAGE_SET = 0x41,
177 SPMI_COMMON_REG_MODE = 0x45,
178 SPMI_COMMON_REG_ENABLE = 0x46,
179 SPMI_COMMON_REG_PULL_DOWN = 0x48,
180 SPMI_COMMON_REG_SOFT_START = 0x4c,
181 SPMI_COMMON_REG_STEP_CTRL = 0x61,
182};
183
42ba89c8
JH
184/*
185 * Second common register layout used by newer devices starting with ftsmps426
186 * Note that some of the registers from the first common layout remain
187 * unchanged and their definition is not duplicated.
188 */
189enum spmi_ftsmps426_regulator_registers {
190 SPMI_FTSMPS426_REG_VOLTAGE_LSB = 0x40,
191 SPMI_FTSMPS426_REG_VOLTAGE_MSB = 0x41,
192 SPMI_FTSMPS426_REG_VOLTAGE_ULS_LSB = 0x68,
193 SPMI_FTSMPS426_REG_VOLTAGE_ULS_MSB = 0x69,
194};
195
e92a4047
SB
196enum spmi_vs_registers {
197 SPMI_VS_REG_OCP = 0x4a,
198 SPMI_VS_REG_SOFT_START = 0x4c,
199};
200
201enum spmi_boost_registers {
202 SPMI_BOOST_REG_CURRENT_LIMIT = 0x4a,
203};
204
205enum spmi_boost_byp_registers {
206 SPMI_BOOST_BYP_REG_CURRENT_LIMIT = 0x4b,
207};
208
0caecaa8
IL
209enum spmi_saw3_registers {
210 SAW3_SECURE = 0x00,
211 SAW3_ID = 0x04,
212 SAW3_SPM_STS = 0x0C,
213 SAW3_AVS_STS = 0x10,
214 SAW3_PMIC_STS = 0x14,
215 SAW3_RST = 0x18,
216 SAW3_VCTL = 0x1C,
217 SAW3_AVS_CTL = 0x20,
218 SAW3_AVS_LIMIT = 0x24,
219 SAW3_AVS_DLY = 0x28,
220 SAW3_AVS_HYSTERESIS = 0x2C,
221 SAW3_SPM_STS2 = 0x38,
222 SAW3_SPM_PMIC_DATA_3 = 0x4C,
223 SAW3_VERSION = 0xFD0,
224};
225
e92a4047
SB
226/* Used for indexing into ctrl_reg. These are offets from 0x40 */
227enum spmi_common_control_register_index {
228 SPMI_COMMON_IDX_VOLTAGE_RANGE = 0,
229 SPMI_COMMON_IDX_VOLTAGE_SET = 1,
230 SPMI_COMMON_IDX_MODE = 5,
231 SPMI_COMMON_IDX_ENABLE = 6,
232};
233
234/* Common regulator control register layout */
235#define SPMI_COMMON_ENABLE_MASK 0x80
236#define SPMI_COMMON_ENABLE 0x80
237#define SPMI_COMMON_DISABLE 0x00
238#define SPMI_COMMON_ENABLE_FOLLOW_HW_EN3_MASK 0x08
239#define SPMI_COMMON_ENABLE_FOLLOW_HW_EN2_MASK 0x04
240#define SPMI_COMMON_ENABLE_FOLLOW_HW_EN1_MASK 0x02
241#define SPMI_COMMON_ENABLE_FOLLOW_HW_EN0_MASK 0x01
242#define SPMI_COMMON_ENABLE_FOLLOW_ALL_MASK 0x0f
243
244/* Common regulator mode register layout */
245#define SPMI_COMMON_MODE_HPM_MASK 0x80
246#define SPMI_COMMON_MODE_AUTO_MASK 0x40
247#define SPMI_COMMON_MODE_BYPASS_MASK 0x20
248#define SPMI_COMMON_MODE_FOLLOW_AWAKE_MASK 0x10
249#define SPMI_COMMON_MODE_FOLLOW_HW_EN3_MASK 0x08
250#define SPMI_COMMON_MODE_FOLLOW_HW_EN2_MASK 0x04
251#define SPMI_COMMON_MODE_FOLLOW_HW_EN1_MASK 0x02
252#define SPMI_COMMON_MODE_FOLLOW_HW_EN0_MASK 0x01
253#define SPMI_COMMON_MODE_FOLLOW_ALL_MASK 0x1f
254
42ba89c8
JH
255#define SPMI_FTSMPS426_MODE_BYPASS_MASK 3
256#define SPMI_FTSMPS426_MODE_RETENTION_MASK 4
257#define SPMI_FTSMPS426_MODE_LPM_MASK 5
258#define SPMI_FTSMPS426_MODE_AUTO_MASK 6
259#define SPMI_FTSMPS426_MODE_HPM_MASK 7
260
261#define SPMI_FTSMPS426_MODE_MASK 0x07
262
e92a4047
SB
263/* Common regulator pull down control register layout */
264#define SPMI_COMMON_PULL_DOWN_ENABLE_MASK 0x80
265
266/* LDO regulator current limit control register layout */
267#define SPMI_LDO_CURRENT_LIMIT_ENABLE_MASK 0x80
268
269/* LDO regulator soft start control register layout */
270#define SPMI_LDO_SOFT_START_ENABLE_MASK 0x80
271
272/* VS regulator over current protection control register layout */
273#define SPMI_VS_OCP_OVERRIDE 0x01
274#define SPMI_VS_OCP_NO_OVERRIDE 0x00
275
276/* VS regulator soft start control register layout */
277#define SPMI_VS_SOFT_START_ENABLE_MASK 0x80
278#define SPMI_VS_SOFT_START_SEL_MASK 0x03
279
280/* Boost regulator current limit control register layout */
281#define SPMI_BOOST_CURRENT_LIMIT_ENABLE_MASK 0x80
282#define SPMI_BOOST_CURRENT_LIMIT_MASK 0x07
283
284#define SPMI_VS_OCP_DEFAULT_MAX_RETRIES 10
285#define SPMI_VS_OCP_DEFAULT_RETRY_DELAY_MS 30
286#define SPMI_VS_OCP_FALL_DELAY_US 90
287#define SPMI_VS_OCP_FAULT_DELAY_US 20000
288
289#define SPMI_FTSMPS_STEP_CTRL_STEP_MASK 0x18
290#define SPMI_FTSMPS_STEP_CTRL_STEP_SHIFT 3
291#define SPMI_FTSMPS_STEP_CTRL_DELAY_MASK 0x07
292#define SPMI_FTSMPS_STEP_CTRL_DELAY_SHIFT 0
293
294/* Clock rate in kHz of the FTSMPS regulator reference clock. */
295#define SPMI_FTSMPS_CLOCK_RATE 19200
296
297/* Minimum voltage stepper delay for each step. */
298#define SPMI_FTSMPS_STEP_DELAY 8
2cf7b99c 299#define SPMI_DEFAULT_STEP_DELAY 20
e92a4047
SB
300
301/*
302 * The ratio SPMI_FTSMPS_STEP_MARGIN_NUM/SPMI_FTSMPS_STEP_MARGIN_DEN is used to
303 * adjust the step rate in order to account for oscillator variance.
304 */
305#define SPMI_FTSMPS_STEP_MARGIN_NUM 4
306#define SPMI_FTSMPS_STEP_MARGIN_DEN 5
307
42ba89c8
JH
308#define SPMI_FTSMPS426_STEP_CTRL_DELAY_MASK 0x03
309#define SPMI_FTSMPS426_STEP_CTRL_DELAY_SHIFT 0
310
311/* Clock rate in kHz of the FTSMPS426 regulator reference clock. */
312#define SPMI_FTSMPS426_CLOCK_RATE 4800
313
0211f68e
JR
314#define SPMI_HFS430_CLOCK_RATE 1600
315
42ba89c8
JH
316/* Minimum voltage stepper delay for each step. */
317#define SPMI_FTSMPS426_STEP_DELAY 2
318
319/*
320 * The ratio SPMI_FTSMPS426_STEP_MARGIN_NUM/SPMI_FTSMPS426_STEP_MARGIN_DEN is
321 * used to adjust the step rate in order to account for oscillator variance.
322 */
323#define SPMI_FTSMPS426_STEP_MARGIN_NUM 10
324#define SPMI_FTSMPS426_STEP_MARGIN_DEN 11
325
326
e92a4047
SB
327/* VSET value to decide the range of ULT SMPS */
328#define ULT_SMPS_RANGE_SPLIT 0x60
329
330/**
331 * struct spmi_voltage_range - regulator set point voltage mapping description
332 * @min_uV: Minimum programmable output voltage resulting from
333 * set point register value 0x00
334 * @max_uV: Maximum programmable output voltage
335 * @step_uV: Output voltage increase resulting from the set point
336 * register value increasing by 1
337 * @set_point_min_uV: Minimum allowed voltage
338 * @set_point_max_uV: Maximum allowed voltage. This may be tweaked in order
339 * to pick which range should be used in the case of
340 * overlapping set points.
341 * @n_voltages: Number of preferred voltage set points present in this
342 * range
343 * @range_sel: Voltage range register value corresponding to this range
344 *
345 * The following relationships must be true for the values used in this struct:
346 * (max_uV - min_uV) % step_uV == 0
347 * (set_point_min_uV - min_uV) % step_uV == 0*
348 * (set_point_max_uV - min_uV) % step_uV == 0*
349 * n_voltages = (set_point_max_uV - set_point_min_uV) / step_uV + 1
350 *
351 * *Note, set_point_min_uV == set_point_max_uV == 0 is allowed in order to
352 * specify that the voltage range has meaning, but is not preferred.
353 */
354struct spmi_voltage_range {
355 int min_uV;
356 int max_uV;
357 int step_uV;
358 int set_point_min_uV;
359 int set_point_max_uV;
360 unsigned n_voltages;
361 u8 range_sel;
362};
363
364/*
365 * The ranges specified in the spmi_voltage_set_points struct must be listed
366 * so that range[i].set_point_max_uV < range[i+1].set_point_min_uV.
367 */
368struct spmi_voltage_set_points {
369 struct spmi_voltage_range *range;
370 int count;
371 unsigned n_voltages;
372};
373
374struct spmi_regulator {
375 struct regulator_desc desc;
376 struct device *dev;
377 struct delayed_work ocp_work;
378 struct regmap *regmap;
379 struct spmi_voltage_set_points *set_points;
380 enum spmi_regulator_logical_type logical_type;
381 int ocp_irq;
382 int ocp_count;
383 int ocp_max_retries;
384 int ocp_retry_delay_ms;
385 int hpm_min_load;
386 int slew_rate;
387 ktime_t vs_enable_time;
388 u16 base;
389 struct list_head node;
390};
391
392struct spmi_regulator_mapping {
393 enum spmi_regulator_type type;
394 enum spmi_regulator_subtype subtype;
395 enum spmi_regulator_logical_type logical_type;
396 u32 revision_min;
397 u32 revision_max;
3b619e3e 398 const struct regulator_ops *ops;
e92a4047
SB
399 struct spmi_voltage_set_points *set_points;
400 int hpm_min_load;
401};
402
403struct spmi_regulator_data {
404 const char *name;
405 u16 base;
406 const char *supply;
407 const char *ocp;
408 u16 force_type;
409};
410
411#define SPMI_VREG(_type, _subtype, _dig_major_min, _dig_major_max, \
412 _logical_type, _ops_val, _set_points_val, _hpm_min_load) \
413 { \
414 .type = SPMI_REGULATOR_TYPE_##_type, \
415 .subtype = SPMI_REGULATOR_SUBTYPE_##_subtype, \
416 .revision_min = _dig_major_min, \
417 .revision_max = _dig_major_max, \
418 .logical_type = SPMI_REGULATOR_LOGICAL_TYPE_##_logical_type, \
419 .ops = &spmi_##_ops_val##_ops, \
420 .set_points = &_set_points_val##_set_points, \
421 .hpm_min_load = _hpm_min_load, \
422 }
423
424#define SPMI_VREG_VS(_subtype, _dig_major_min, _dig_major_max) \
425 { \
426 .type = SPMI_REGULATOR_TYPE_VS, \
427 .subtype = SPMI_REGULATOR_SUBTYPE_##_subtype, \
428 .revision_min = _dig_major_min, \
429 .revision_max = _dig_major_max, \
430 .logical_type = SPMI_REGULATOR_LOGICAL_TYPE_VS, \
431 .ops = &spmi_vs_ops, \
432 }
433
434#define SPMI_VOLTAGE_RANGE(_range_sel, _min_uV, _set_point_min_uV, \
435 _set_point_max_uV, _max_uV, _step_uV) \
436 { \
437 .min_uV = _min_uV, \
438 .max_uV = _max_uV, \
439 .set_point_min_uV = _set_point_min_uV, \
440 .set_point_max_uV = _set_point_max_uV, \
441 .step_uV = _step_uV, \
442 .range_sel = _range_sel, \
443 }
444
445#define DEFINE_SPMI_SET_POINTS(name) \
446struct spmi_voltage_set_points name##_set_points = { \
447 .range = name##_ranges, \
448 .count = ARRAY_SIZE(name##_ranges), \
449}
450
451/*
452 * These tables contain the physically available PMIC regulator voltage setpoint
453 * ranges. Where two ranges overlap in hardware, one of the ranges is trimmed
454 * to ensure that the setpoints available to software are monotonically
455 * increasing and unique. The set_voltage callback functions expect these
456 * properties to hold.
457 */
458static struct spmi_voltage_range pldo_ranges[] = {
459 SPMI_VOLTAGE_RANGE(2, 750000, 750000, 1537500, 1537500, 12500),
460 SPMI_VOLTAGE_RANGE(3, 1500000, 1550000, 3075000, 3075000, 25000),
461 SPMI_VOLTAGE_RANGE(4, 1750000, 3100000, 4900000, 4900000, 50000),
462};
463
464static struct spmi_voltage_range nldo1_ranges[] = {
465 SPMI_VOLTAGE_RANGE(2, 750000, 750000, 1537500, 1537500, 12500),
466};
467
468static struct spmi_voltage_range nldo2_ranges[] = {
469 SPMI_VOLTAGE_RANGE(0, 375000, 0, 0, 1537500, 12500),
470 SPMI_VOLTAGE_RANGE(1, 375000, 375000, 768750, 768750, 6250),
471 SPMI_VOLTAGE_RANGE(2, 750000, 775000, 1537500, 1537500, 12500),
472};
473
474static struct spmi_voltage_range nldo3_ranges[] = {
475 SPMI_VOLTAGE_RANGE(0, 375000, 375000, 1537500, 1537500, 12500),
476 SPMI_VOLTAGE_RANGE(1, 375000, 0, 0, 1537500, 12500),
477 SPMI_VOLTAGE_RANGE(2, 750000, 0, 0, 1537500, 12500),
478};
479
480static struct spmi_voltage_range ln_ldo_ranges[] = {
481 SPMI_VOLTAGE_RANGE(1, 690000, 690000, 1110000, 1110000, 60000),
482 SPMI_VOLTAGE_RANGE(0, 1380000, 1380000, 2220000, 2220000, 120000),
483};
484
485static struct spmi_voltage_range smps_ranges[] = {
486 SPMI_VOLTAGE_RANGE(0, 375000, 375000, 1562500, 1562500, 12500),
487 SPMI_VOLTAGE_RANGE(1, 1550000, 1575000, 3125000, 3125000, 25000),
488};
489
490static struct spmi_voltage_range ftsmps_ranges[] = {
491 SPMI_VOLTAGE_RANGE(0, 0, 350000, 1275000, 1275000, 5000),
492 SPMI_VOLTAGE_RANGE(1, 0, 1280000, 2040000, 2040000, 10000),
493};
494
495static struct spmi_voltage_range ftsmps2p5_ranges[] = {
496 SPMI_VOLTAGE_RANGE(0, 80000, 350000, 1355000, 1355000, 5000),
497 SPMI_VOLTAGE_RANGE(1, 160000, 1360000, 2200000, 2200000, 10000),
498};
499
42ba89c8
JH
500static struct spmi_voltage_range ftsmps426_ranges[] = {
501 SPMI_VOLTAGE_RANGE(0, 0, 320000, 1352000, 1352000, 4000),
502};
503
e92a4047
SB
504static struct spmi_voltage_range boost_ranges[] = {
505 SPMI_VOLTAGE_RANGE(0, 4000000, 4000000, 5550000, 5550000, 50000),
506};
507
508static struct spmi_voltage_range boost_byp_ranges[] = {
509 SPMI_VOLTAGE_RANGE(0, 2500000, 2500000, 5200000, 5650000, 50000),
510};
511
512static struct spmi_voltage_range ult_lo_smps_ranges[] = {
513 SPMI_VOLTAGE_RANGE(0, 375000, 375000, 1562500, 1562500, 12500),
514 SPMI_VOLTAGE_RANGE(1, 750000, 0, 0, 1525000, 25000),
515};
516
517static struct spmi_voltage_range ult_ho_smps_ranges[] = {
518 SPMI_VOLTAGE_RANGE(0, 1550000, 1550000, 2325000, 2325000, 25000),
519};
520
521static struct spmi_voltage_range ult_nldo_ranges[] = {
522 SPMI_VOLTAGE_RANGE(0, 375000, 375000, 1537500, 1537500, 12500),
523};
524
525static struct spmi_voltage_range ult_pldo_ranges[] = {
526 SPMI_VOLTAGE_RANGE(0, 1750000, 1750000, 3337500, 3337500, 12500),
527};
528
328816c2
ADR
529static struct spmi_voltage_range pldo660_ranges[] = {
530 SPMI_VOLTAGE_RANGE(0, 1504000, 1504000, 3544000, 3544000, 8000),
531};
532
533static struct spmi_voltage_range nldo660_ranges[] = {
534 SPMI_VOLTAGE_RANGE(0, 320000, 320000, 1304000, 1304000, 8000),
535};
536
537static struct spmi_voltage_range ht_lvpldo_ranges[] = {
538 SPMI_VOLTAGE_RANGE(0, 1504000, 1504000, 2000000, 2000000, 8000),
539};
540
541static struct spmi_voltage_range ht_nldo_ranges[] = {
542 SPMI_VOLTAGE_RANGE(0, 312000, 312000, 1304000, 1304000, 8000),
543};
544
0211f68e
JR
545static struct spmi_voltage_range hfs430_ranges[] = {
546 SPMI_VOLTAGE_RANGE(0, 320000, 320000, 2040000, 2040000, 8000),
547};
548
00f6ebbd
RM
549static struct spmi_voltage_range ht_p150_ranges[] = {
550 SPMI_VOLTAGE_RANGE(0, 1616000, 1616000, 3304000, 3304000, 8000),
551};
552
3d04ae8e
RM
553static struct spmi_voltage_range ht_p600_ranges[] = {
554 SPMI_VOLTAGE_RANGE(0, 1704000, 1704000, 1896000, 1896000, 8000),
555};
556
e92a4047
SB
557static DEFINE_SPMI_SET_POINTS(pldo);
558static DEFINE_SPMI_SET_POINTS(nldo1);
559static DEFINE_SPMI_SET_POINTS(nldo2);
560static DEFINE_SPMI_SET_POINTS(nldo3);
561static DEFINE_SPMI_SET_POINTS(ln_ldo);
562static DEFINE_SPMI_SET_POINTS(smps);
563static DEFINE_SPMI_SET_POINTS(ftsmps);
564static DEFINE_SPMI_SET_POINTS(ftsmps2p5);
42ba89c8 565static DEFINE_SPMI_SET_POINTS(ftsmps426);
e92a4047
SB
566static DEFINE_SPMI_SET_POINTS(boost);
567static DEFINE_SPMI_SET_POINTS(boost_byp);
568static DEFINE_SPMI_SET_POINTS(ult_lo_smps);
569static DEFINE_SPMI_SET_POINTS(ult_ho_smps);
570static DEFINE_SPMI_SET_POINTS(ult_nldo);
571static DEFINE_SPMI_SET_POINTS(ult_pldo);
328816c2
ADR
572static DEFINE_SPMI_SET_POINTS(pldo660);
573static DEFINE_SPMI_SET_POINTS(nldo660);
574static DEFINE_SPMI_SET_POINTS(ht_lvpldo);
575static DEFINE_SPMI_SET_POINTS(ht_nldo);
0211f68e 576static DEFINE_SPMI_SET_POINTS(hfs430);
00f6ebbd 577static DEFINE_SPMI_SET_POINTS(ht_p150);
3d04ae8e 578static DEFINE_SPMI_SET_POINTS(ht_p600);
e92a4047
SB
579
580static inline int spmi_vreg_read(struct spmi_regulator *vreg, u16 addr, u8 *buf,
581 int len)
582{
583 return regmap_bulk_read(vreg->regmap, vreg->base + addr, buf, len);
584}
585
586static inline int spmi_vreg_write(struct spmi_regulator *vreg, u16 addr,
587 u8 *buf, int len)
588{
589 return regmap_bulk_write(vreg->regmap, vreg->base + addr, buf, len);
590}
591
592static int spmi_vreg_update_bits(struct spmi_regulator *vreg, u16 addr, u8 val,
593 u8 mask)
594{
595 return regmap_update_bits(vreg->regmap, vreg->base + addr, mask, val);
596}
597
e92a4047
SB
598static int spmi_regulator_vs_enable(struct regulator_dev *rdev)
599{
600 struct spmi_regulator *vreg = rdev_get_drvdata(rdev);
601
602 if (vreg->ocp_irq) {
603 vreg->ocp_count = 0;
604 vreg->vs_enable_time = ktime_get();
605 }
606
9d485332 607 return regulator_enable_regmap(rdev);
e92a4047
SB
608}
609
89a6a5e5
MV
610static int spmi_regulator_vs_ocp(struct regulator_dev *rdev, int lim_uA,
611 int severity, bool enable)
e2adfacd
SB
612{
613 struct spmi_regulator *vreg = rdev_get_drvdata(rdev);
614 u8 reg = SPMI_VS_OCP_OVERRIDE;
615
89a6a5e5
MV
616 if (lim_uA || !enable || severity != REGULATOR_SEVERITY_PROT)
617 return -EINVAL;
618
e2adfacd
SB
619 return spmi_vreg_write(vreg, SPMI_VS_REG_OCP, &reg, 1);
620}
621
e92a4047 622static int spmi_regulator_select_voltage(struct spmi_regulator *vreg,
1b5b1968 623 int min_uV, int max_uV)
e92a4047
SB
624{
625 const struct spmi_voltage_range *range;
626 int uV = min_uV;
627 int lim_min_uV, lim_max_uV, i, range_id, range_max_uV;
1b5b1968 628 int selector, voltage_sel;
e92a4047
SB
629
630 /* Check if request voltage is outside of physically settable range. */
631 lim_min_uV = vreg->set_points->range[0].set_point_min_uV;
632 lim_max_uV =
633 vreg->set_points->range[vreg->set_points->count - 1].set_point_max_uV;
634
635 if (uV < lim_min_uV && max_uV >= lim_min_uV)
636 uV = lim_min_uV;
637
638 if (uV < lim_min_uV || uV > lim_max_uV) {
639 dev_err(vreg->dev,
640 "request v=[%d, %d] is outside possible v=[%d, %d]\n",
641 min_uV, max_uV, lim_min_uV, lim_max_uV);
642 return -EINVAL;
643 }
644
645 /* Find the range which uV is inside of. */
646 for (i = vreg->set_points->count - 1; i > 0; i--) {
647 range_max_uV = vreg->set_points->range[i - 1].set_point_max_uV;
648 if (uV > range_max_uV && range_max_uV > 0)
649 break;
650 }
651
652 range_id = i;
653 range = &vreg->set_points->range[range_id];
e92a4047
SB
654
655 /*
656 * Force uV to be an allowed set point by applying a ceiling function to
657 * the uV value.
658 */
1b5b1968
SB
659 voltage_sel = DIV_ROUND_UP(uV - range->min_uV, range->step_uV);
660 uV = voltage_sel * range->step_uV + range->min_uV;
e92a4047
SB
661
662 if (uV > max_uV) {
663 dev_err(vreg->dev,
664 "request v=[%d, %d] cannot be met by any set point; "
665 "next set point: %d\n",
666 min_uV, max_uV, uV);
667 return -EINVAL;
668 }
669
1b5b1968 670 selector = 0;
e92a4047 671 for (i = 0; i < range_id; i++)
1b5b1968
SB
672 selector += vreg->set_points->range[i].n_voltages;
673 selector += (uV - range->set_point_min_uV) / range->step_uV;
e92a4047 674
1b5b1968
SB
675 return selector;
676}
677
678static int spmi_sw_selector_to_hw(struct spmi_regulator *vreg,
679 unsigned selector, u8 *range_sel,
680 u8 *voltage_sel)
681{
682 const struct spmi_voltage_range *range, *end;
ab953b9d 683 unsigned offset;
1b5b1968
SB
684
685 range = vreg->set_points->range;
686 end = range + vreg->set_points->count;
687
688 for (; range < end; range++) {
689 if (selector < range->n_voltages) {
ab953b9d
SB
690 /*
691 * hardware selectors between set point min and real
692 * min are invalid so we ignore them
693 */
694 offset = range->set_point_min_uV - range->min_uV;
695 offset /= range->step_uV;
696 *voltage_sel = selector + offset;
1b5b1968
SB
697 *range_sel = range->range_sel;
698 return 0;
699 }
700
701 selector -= range->n_voltages;
702 }
703
704 return -EINVAL;
705}
706
707static int spmi_hw_selector_to_sw(struct spmi_regulator *vreg, u8 hw_sel,
708 const struct spmi_voltage_range *range)
709{
ab953b9d
SB
710 unsigned sw_sel = 0;
711 unsigned offset, max_hw_sel;
1b5b1968 712 const struct spmi_voltage_range *r = vreg->set_points->range;
ab953b9d
SB
713 const struct spmi_voltage_range *end = r + vreg->set_points->count;
714
715 for (; r < end; r++) {
716 if (r == range && range->n_voltages) {
717 /*
718 * hardware selectors between set point min and real
719 * min and between set point max and real max are
720 * invalid so we return an error if they're
721 * programmed into the hardware
722 */
723 offset = range->set_point_min_uV - range->min_uV;
724 offset /= range->step_uV;
725 if (hw_sel < offset)
726 return -EINVAL;
727
728 max_hw_sel = range->set_point_max_uV - range->min_uV;
729 max_hw_sel /= range->step_uV;
730 if (hw_sel > max_hw_sel)
731 return -EINVAL;
732
733 return sw_sel + hw_sel - offset;
734 }
1b5b1968 735 sw_sel += r->n_voltages;
1b5b1968
SB
736 }
737
ab953b9d 738 return -EINVAL;
e92a4047
SB
739}
740
741static const struct spmi_voltage_range *
742spmi_regulator_find_range(struct spmi_regulator *vreg)
743{
744 u8 range_sel;
745 const struct spmi_voltage_range *range, *end;
746
747 range = vreg->set_points->range;
748 end = range + vreg->set_points->count;
749
750 spmi_vreg_read(vreg, SPMI_COMMON_REG_VOLTAGE_RANGE, &range_sel, 1);
751
752 for (; range < end; range++)
753 if (range->range_sel == range_sel)
754 return range;
755
756 return NULL;
757}
758
759static int spmi_regulator_select_voltage_same_range(struct spmi_regulator *vreg,
1b5b1968 760 int min_uV, int max_uV)
e92a4047
SB
761{
762 const struct spmi_voltage_range *range;
763 int uV = min_uV;
1b5b1968 764 int i, selector;
e92a4047
SB
765
766 range = spmi_regulator_find_range(vreg);
767 if (!range)
768 goto different_range;
769
770 if (uV < range->min_uV && max_uV >= range->min_uV)
771 uV = range->min_uV;
772
773 if (uV < range->min_uV || uV > range->max_uV) {
774 /* Current range doesn't support the requested voltage. */
775 goto different_range;
776 }
777
778 /*
779 * Force uV to be an allowed set point by applying a ceiling function to
780 * the uV value.
781 */
1b5b1968
SB
782 uV = DIV_ROUND_UP(uV - range->min_uV, range->step_uV);
783 uV = uV * range->step_uV + range->min_uV;
e92a4047
SB
784
785 if (uV > max_uV) {
786 /*
787 * No set point in the current voltage range is within the
788 * requested min_uV to max_uV range.
789 */
790 goto different_range;
791 }
792
1b5b1968 793 selector = 0;
e92a4047
SB
794 for (i = 0; i < vreg->set_points->count; i++) {
795 if (uV >= vreg->set_points->range[i].set_point_min_uV
9b2dfee3 796 && uV <= vreg->set_points->range[i].set_point_max_uV) {
1b5b1968 797 selector +=
e92a4047
SB
798 (uV - vreg->set_points->range[i].set_point_min_uV)
799 / vreg->set_points->range[i].step_uV;
800 break;
9b2dfee3 801 }
e92a4047 802
1b5b1968 803 selector += vreg->set_points->range[i].n_voltages;
e92a4047
SB
804 }
805
1b5b1968 806 if (selector >= vreg->set_points->n_voltages)
e92a4047
SB
807 goto different_range;
808
b1d21a24 809 return selector;
e92a4047
SB
810
811different_range:
1b5b1968 812 return spmi_regulator_select_voltage(vreg, min_uV, max_uV);
e92a4047
SB
813}
814
1b5b1968
SB
815static int spmi_regulator_common_map_voltage(struct regulator_dev *rdev,
816 int min_uV, int max_uV)
e92a4047
SB
817{
818 struct spmi_regulator *vreg = rdev_get_drvdata(rdev);
e92a4047
SB
819
820 /*
821 * Favor staying in the current voltage range if possible. This avoids
822 * voltage spikes that occur when changing the voltage range.
823 */
1b5b1968
SB
824 return spmi_regulator_select_voltage_same_range(vreg, min_uV, max_uV);
825}
826
827static int
828spmi_regulator_common_set_voltage(struct regulator_dev *rdev, unsigned selector)
829{
830 struct spmi_regulator *vreg = rdev_get_drvdata(rdev);
831 int ret;
832 u8 buf[2];
833 u8 range_sel, voltage_sel;
834
835 ret = spmi_sw_selector_to_hw(vreg, selector, &range_sel, &voltage_sel);
e92a4047
SB
836 if (ret)
837 return ret;
838
839 buf[0] = range_sel;
840 buf[1] = voltage_sel;
841 return spmi_vreg_write(vreg, SPMI_COMMON_REG_VOLTAGE_RANGE, buf, 2);
842}
843
42ba89c8
JH
844static int spmi_regulator_common_list_voltage(struct regulator_dev *rdev,
845 unsigned selector);
846
847static int spmi_regulator_ftsmps426_set_voltage(struct regulator_dev *rdev,
848 unsigned selector)
849{
850 struct spmi_regulator *vreg = rdev_get_drvdata(rdev);
851 u8 buf[2];
852 int mV;
853
854 mV = spmi_regulator_common_list_voltage(rdev, selector) / 1000;
855
856 buf[0] = mV & 0xff;
857 buf[1] = mV >> 8;
858 return spmi_vreg_write(vreg, SPMI_FTSMPS426_REG_VOLTAGE_LSB, buf, 2);
859}
860
e92a4047
SB
861static int spmi_regulator_set_voltage_time_sel(struct regulator_dev *rdev,
862 unsigned int old_selector, unsigned int new_selector)
863{
864 struct spmi_regulator *vreg = rdev_get_drvdata(rdev);
e92a4047
SB
865 int diff_uV;
866
61d7fdc4
JH
867 diff_uV = abs(spmi_regulator_common_list_voltage(rdev, new_selector) -
868 spmi_regulator_common_list_voltage(rdev, old_selector));
e92a4047
SB
869
870 return DIV_ROUND_UP(diff_uV, vreg->slew_rate);
871}
872
873static int spmi_regulator_common_get_voltage(struct regulator_dev *rdev)
874{
875 struct spmi_regulator *vreg = rdev_get_drvdata(rdev);
876 const struct spmi_voltage_range *range;
877 u8 voltage_sel;
878
879 spmi_vreg_read(vreg, SPMI_COMMON_REG_VOLTAGE_SET, &voltage_sel, 1);
880
881 range = spmi_regulator_find_range(vreg);
882 if (!range)
1b5b1968 883 return -EINVAL;
e92a4047 884
1b5b1968 885 return spmi_hw_selector_to_sw(vreg, voltage_sel, range);
e92a4047
SB
886}
887
42ba89c8
JH
888static int spmi_regulator_ftsmps426_get_voltage(struct regulator_dev *rdev)
889{
890 struct spmi_regulator *vreg = rdev_get_drvdata(rdev);
891 const struct spmi_voltage_range *range;
892 u8 buf[2];
893 int uV;
894
895 spmi_vreg_read(vreg, SPMI_FTSMPS426_REG_VOLTAGE_LSB, buf, 2);
896
897 uV = (((unsigned int)buf[1] << 8) | (unsigned int)buf[0]) * 1000;
898 range = vreg->set_points->range;
899
900 return (uV - range->set_point_min_uV) / range->step_uV;
901}
902
1b5b1968
SB
903static int spmi_regulator_single_map_voltage(struct regulator_dev *rdev,
904 int min_uV, int max_uV)
e92a4047
SB
905{
906 struct spmi_regulator *vreg = rdev_get_drvdata(rdev);
e92a4047 907
1b5b1968
SB
908 return spmi_regulator_select_voltage(vreg, min_uV, max_uV);
909}
910
911static int spmi_regulator_single_range_set_voltage(struct regulator_dev *rdev,
912 unsigned selector)
913{
914 struct spmi_regulator *vreg = rdev_get_drvdata(rdev);
915 u8 sel = selector;
e92a4047
SB
916
917 /*
918 * Certain types of regulators do not have a range select register so
919 * only voltage set register needs to be written.
920 */
921 return spmi_vreg_write(vreg, SPMI_COMMON_REG_VOLTAGE_SET, &sel, 1);
922}
923
924static int spmi_regulator_single_range_get_voltage(struct regulator_dev *rdev)
925{
926 struct spmi_regulator *vreg = rdev_get_drvdata(rdev);
1b5b1968
SB
927 u8 selector;
928 int ret;
e92a4047 929
1b5b1968
SB
930 ret = spmi_vreg_read(vreg, SPMI_COMMON_REG_VOLTAGE_SET, &selector, 1);
931 if (ret)
932 return ret;
e92a4047 933
1b5b1968 934 return selector;
e92a4047
SB
935}
936
937static int spmi_regulator_ult_lo_smps_set_voltage(struct regulator_dev *rdev,
1b5b1968 938 unsigned selector)
e92a4047
SB
939{
940 struct spmi_regulator *vreg = rdev_get_drvdata(rdev);
941 int ret;
942 u8 range_sel, voltage_sel;
943
1b5b1968 944 ret = spmi_sw_selector_to_hw(vreg, selector, &range_sel, &voltage_sel);
e92a4047
SB
945 if (ret)
946 return ret;
947
948 /*
949 * Calculate VSET based on range
950 * In case of range 0: voltage_sel is a 7 bit value, can be written
951 * witout any modification.
952 * In case of range 1: voltage_sel is a 5 bit value, bits[7-5] set to
953 * [011].
954 */
955 if (range_sel == 1)
956 voltage_sel |= ULT_SMPS_RANGE_SPLIT;
957
0f94bffa 958 return spmi_vreg_update_bits(vreg, SPMI_COMMON_REG_VOLTAGE_SET,
1b5b1968 959 voltage_sel, 0xff);
e92a4047
SB
960}
961
962static int spmi_regulator_ult_lo_smps_get_voltage(struct regulator_dev *rdev)
963{
964 struct spmi_regulator *vreg = rdev_get_drvdata(rdev);
965 const struct spmi_voltage_range *range;
966 u8 voltage_sel;
967
968 spmi_vreg_read(vreg, SPMI_COMMON_REG_VOLTAGE_SET, &voltage_sel, 1);
969
970 range = spmi_regulator_find_range(vreg);
971 if (!range)
1b5b1968 972 return -EINVAL;
e92a4047
SB
973
974 if (range->range_sel == 1)
975 voltage_sel &= ~ULT_SMPS_RANGE_SPLIT;
976
1b5b1968 977 return spmi_hw_selector_to_sw(vreg, voltage_sel, range);
e92a4047
SB
978}
979
980static int spmi_regulator_common_list_voltage(struct regulator_dev *rdev,
981 unsigned selector)
982{
983 struct spmi_regulator *vreg = rdev_get_drvdata(rdev);
984 int uV = 0;
985 int i;
986
987 if (selector >= vreg->set_points->n_voltages)
988 return 0;
989
990 for (i = 0; i < vreg->set_points->count; i++) {
9b2dfee3 991 if (selector < vreg->set_points->range[i].n_voltages) {
e92a4047
SB
992 uV = selector * vreg->set_points->range[i].step_uV
993 + vreg->set_points->range[i].set_point_min_uV;
994 break;
9b2dfee3 995 }
e92a4047
SB
996
997 selector -= vreg->set_points->range[i].n_voltages;
998 }
999
1000 return uV;
1001}
1002
1003static int
1004spmi_regulator_common_set_bypass(struct regulator_dev *rdev, bool enable)
1005{
1006 struct spmi_regulator *vreg = rdev_get_drvdata(rdev);
1007 u8 mask = SPMI_COMMON_MODE_BYPASS_MASK;
1008 u8 val = 0;
1009
1010 if (enable)
1011 val = mask;
1012
1013 return spmi_vreg_update_bits(vreg, SPMI_COMMON_REG_MODE, val, mask);
1014}
1015
1016static int
1017spmi_regulator_common_get_bypass(struct regulator_dev *rdev, bool *enable)
1018{
1019 struct spmi_regulator *vreg = rdev_get_drvdata(rdev);
1020 u8 val;
1021 int ret;
1022
1023 ret = spmi_vreg_read(vreg, SPMI_COMMON_REG_MODE, &val, 1);
1024 *enable = val & SPMI_COMMON_MODE_BYPASS_MASK;
1025
1026 return ret;
1027}
1028
1029static unsigned int spmi_regulator_common_get_mode(struct regulator_dev *rdev)
1030{
1031 struct spmi_regulator *vreg = rdev_get_drvdata(rdev);
1032 u8 reg;
1033
1034 spmi_vreg_read(vreg, SPMI_COMMON_REG_MODE, &reg, 1);
1035
ba576a62 1036 reg &= SPMI_COMMON_MODE_HPM_MASK | SPMI_COMMON_MODE_AUTO_MASK;
e92a4047 1037
ba576a62
JH
1038 switch (reg) {
1039 case SPMI_COMMON_MODE_HPM_MASK:
1040 return REGULATOR_MODE_NORMAL;
1041 case SPMI_COMMON_MODE_AUTO_MASK:
e2adfacd 1042 return REGULATOR_MODE_FAST;
ba576a62
JH
1043 default:
1044 return REGULATOR_MODE_IDLE;
1045 }
e92a4047
SB
1046}
1047
42ba89c8
JH
1048static unsigned int spmi_regulator_ftsmps426_get_mode(struct regulator_dev *rdev)
1049{
1050 struct spmi_regulator *vreg = rdev_get_drvdata(rdev);
1051 u8 reg;
1052
1053 spmi_vreg_read(vreg, SPMI_COMMON_REG_MODE, &reg, 1);
1054
1055 switch (reg) {
1056 case SPMI_FTSMPS426_MODE_HPM_MASK:
1057 return REGULATOR_MODE_NORMAL;
1058 case SPMI_FTSMPS426_MODE_AUTO_MASK:
1059 return REGULATOR_MODE_FAST;
1060 default:
1061 return REGULATOR_MODE_IDLE;
1062 }
1063}
1064
e92a4047
SB
1065static int
1066spmi_regulator_common_set_mode(struct regulator_dev *rdev, unsigned int mode)
1067{
1068 struct spmi_regulator *vreg = rdev_get_drvdata(rdev);
e2adfacd 1069 u8 mask = SPMI_COMMON_MODE_HPM_MASK | SPMI_COMMON_MODE_AUTO_MASK;
ba576a62 1070 u8 val;
e92a4047 1071
ba576a62
JH
1072 switch (mode) {
1073 case REGULATOR_MODE_NORMAL:
e2adfacd 1074 val = SPMI_COMMON_MODE_HPM_MASK;
ba576a62
JH
1075 break;
1076 case REGULATOR_MODE_FAST:
e2adfacd 1077 val = SPMI_COMMON_MODE_AUTO_MASK;
ba576a62
JH
1078 break;
1079 default:
1080 val = 0;
1081 break;
1082 }
e92a4047
SB
1083
1084 return spmi_vreg_update_bits(vreg, SPMI_COMMON_REG_MODE, val, mask);
1085}
1086
42ba89c8
JH
1087static int
1088spmi_regulator_ftsmps426_set_mode(struct regulator_dev *rdev, unsigned int mode)
1089{
1090 struct spmi_regulator *vreg = rdev_get_drvdata(rdev);
1091 u8 mask = SPMI_FTSMPS426_MODE_MASK;
1092 u8 val;
1093
1094 switch (mode) {
1095 case REGULATOR_MODE_NORMAL:
1096 val = SPMI_FTSMPS426_MODE_HPM_MASK;
1097 break;
1098 case REGULATOR_MODE_FAST:
1099 val = SPMI_FTSMPS426_MODE_AUTO_MASK;
1100 break;
1101 case REGULATOR_MODE_IDLE:
1102 val = SPMI_FTSMPS426_MODE_LPM_MASK;
1103 break;
1104 default:
1105 return -EINVAL;
1106 }
1107
1108 return spmi_vreg_update_bits(vreg, SPMI_COMMON_REG_MODE, val, mask);
1109}
1110
e92a4047
SB
1111static int
1112spmi_regulator_common_set_load(struct regulator_dev *rdev, int load_uA)
1113{
1114 struct spmi_regulator *vreg = rdev_get_drvdata(rdev);
1115 unsigned int mode;
1116
1117 if (load_uA >= vreg->hpm_min_load)
1118 mode = REGULATOR_MODE_NORMAL;
1119 else
1120 mode = REGULATOR_MODE_IDLE;
1121
1122 return spmi_regulator_common_set_mode(rdev, mode);
1123}
1124
1125static int spmi_regulator_common_set_pull_down(struct regulator_dev *rdev)
1126{
1127 struct spmi_regulator *vreg = rdev_get_drvdata(rdev);
1128 unsigned int mask = SPMI_COMMON_PULL_DOWN_ENABLE_MASK;
1129
1130 return spmi_vreg_update_bits(vreg, SPMI_COMMON_REG_PULL_DOWN,
1131 mask, mask);
1132}
1133
1134static int spmi_regulator_common_set_soft_start(struct regulator_dev *rdev)
1135{
1136 struct spmi_regulator *vreg = rdev_get_drvdata(rdev);
1137 unsigned int mask = SPMI_LDO_SOFT_START_ENABLE_MASK;
1138
1139 return spmi_vreg_update_bits(vreg, SPMI_COMMON_REG_SOFT_START,
1140 mask, mask);
1141}
1142
1143static int spmi_regulator_set_ilim(struct regulator_dev *rdev, int ilim_uA)
1144{
1145 struct spmi_regulator *vreg = rdev_get_drvdata(rdev);
1146 enum spmi_regulator_logical_type type = vreg->logical_type;
1147 unsigned int current_reg;
1148 u8 reg;
1149 u8 mask = SPMI_BOOST_CURRENT_LIMIT_MASK |
1150 SPMI_BOOST_CURRENT_LIMIT_ENABLE_MASK;
1151 int max = (SPMI_BOOST_CURRENT_LIMIT_MASK + 1) * 500;
1152
1153 if (type == SPMI_REGULATOR_LOGICAL_TYPE_BOOST)
1154 current_reg = SPMI_BOOST_REG_CURRENT_LIMIT;
1155 else
1156 current_reg = SPMI_BOOST_BYP_REG_CURRENT_LIMIT;
1157
1158 if (ilim_uA > max || ilim_uA <= 0)
1159 return -EINVAL;
1160
1161 reg = (ilim_uA - 1) / 500;
1162 reg |= SPMI_BOOST_CURRENT_LIMIT_ENABLE_MASK;
1163
1164 return spmi_vreg_update_bits(vreg, current_reg, reg, mask);
1165}
1166
1167static int spmi_regulator_vs_clear_ocp(struct spmi_regulator *vreg)
1168{
1169 int ret;
1170
1171 ret = spmi_vreg_update_bits(vreg, SPMI_COMMON_REG_ENABLE,
1172 SPMI_COMMON_DISABLE, SPMI_COMMON_ENABLE_MASK);
1173
1174 vreg->vs_enable_time = ktime_get();
1175
1176 ret = spmi_vreg_update_bits(vreg, SPMI_COMMON_REG_ENABLE,
1177 SPMI_COMMON_ENABLE, SPMI_COMMON_ENABLE_MASK);
1178
1179 return ret;
1180}
1181
1182static void spmi_regulator_vs_ocp_work(struct work_struct *work)
1183{
1184 struct delayed_work *dwork = to_delayed_work(work);
1185 struct spmi_regulator *vreg
1186 = container_of(dwork, struct spmi_regulator, ocp_work);
1187
1188 spmi_regulator_vs_clear_ocp(vreg);
1189}
1190
1191static irqreturn_t spmi_regulator_vs_ocp_isr(int irq, void *data)
1192{
1193 struct spmi_regulator *vreg = data;
1194 ktime_t ocp_irq_time;
1195 s64 ocp_trigger_delay_us;
1196
1197 ocp_irq_time = ktime_get();
1198 ocp_trigger_delay_us = ktime_us_delta(ocp_irq_time,
1199 vreg->vs_enable_time);
1200
1201 /*
1202 * Reset the OCP count if there is a large delay between switch enable
1203 * and when OCP triggers. This is indicative of a hotplug event as
1204 * opposed to a fault.
1205 */
1206 if (ocp_trigger_delay_us > SPMI_VS_OCP_FAULT_DELAY_US)
1207 vreg->ocp_count = 0;
1208
1209 /* Wait for switch output to settle back to 0 V after OCP triggered. */
1210 udelay(SPMI_VS_OCP_FALL_DELAY_US);
1211
1212 vreg->ocp_count++;
1213
1214 if (vreg->ocp_count == 1) {
1215 /* Immediately clear the over current condition. */
1216 spmi_regulator_vs_clear_ocp(vreg);
1217 } else if (vreg->ocp_count <= vreg->ocp_max_retries) {
1218 /* Schedule the over current clear task to run later. */
1219 schedule_delayed_work(&vreg->ocp_work,
1220 msecs_to_jiffies(vreg->ocp_retry_delay_ms) + 1);
1221 } else {
1222 dev_err(vreg->dev,
1223 "OCP triggered %d times; no further retries\n",
1224 vreg->ocp_count);
1225 }
1226
1227 return IRQ_HANDLED;
1228}
1229
0caecaa8
IL
1230#define SAW3_VCTL_DATA_MASK 0xFF
1231#define SAW3_VCTL_CLEAR_MASK 0x700FF
1232#define SAW3_AVS_CTL_EN_MASK 0x1
1233#define SAW3_AVS_CTL_TGGL_MASK 0x8000000
1234#define SAW3_AVS_CTL_CLEAR_MASK 0x7efc00
1235
9689ca0a 1236static struct regmap *saw_regmap;
0caecaa8
IL
1237
1238static void spmi_saw_set_vdd(void *data)
1239{
1240 u32 vctl, data3, avs_ctl, pmic_sts;
1241 bool avs_enabled = false;
1242 unsigned long timeout;
1243 u8 voltage_sel = *(u8 *)data;
1244
1245 regmap_read(saw_regmap, SAW3_AVS_CTL, &avs_ctl);
1246 regmap_read(saw_regmap, SAW3_VCTL, &vctl);
1247 regmap_read(saw_regmap, SAW3_SPM_PMIC_DATA_3, &data3);
1248
1249 /* select the band */
1250 vctl &= ~SAW3_VCTL_CLEAR_MASK;
1251 vctl |= (u32)voltage_sel;
1252
1253 data3 &= ~SAW3_VCTL_CLEAR_MASK;
1254 data3 |= (u32)voltage_sel;
1255
1256 /* If AVS is enabled, switch it off during the voltage change */
1257 avs_enabled = SAW3_AVS_CTL_EN_MASK & avs_ctl;
1258 if (avs_enabled) {
1259 avs_ctl &= ~SAW3_AVS_CTL_TGGL_MASK;
1260 regmap_write(saw_regmap, SAW3_AVS_CTL, avs_ctl);
1261 }
1262
1263 regmap_write(saw_regmap, SAW3_RST, 1);
1264 regmap_write(saw_regmap, SAW3_VCTL, vctl);
1265 regmap_write(saw_regmap, SAW3_SPM_PMIC_DATA_3, data3);
1266
1267 timeout = jiffies + usecs_to_jiffies(100);
1268 do {
1269 regmap_read(saw_regmap, SAW3_PMIC_STS, &pmic_sts);
1270 pmic_sts &= SAW3_VCTL_DATA_MASK;
1271 if (pmic_sts == (u32)voltage_sel)
1272 break;
1273
1274 cpu_relax();
1275
1276 } while (time_before(jiffies, timeout));
1277
1278 /* After successful voltage change, switch the AVS back on */
1279 if (avs_enabled) {
1280 pmic_sts &= 0x3f;
1281 avs_ctl &= ~SAW3_AVS_CTL_CLEAR_MASK;
1282 avs_ctl |= ((pmic_sts - 4) << 10);
1283 avs_ctl |= (pmic_sts << 17);
1284 avs_ctl |= SAW3_AVS_CTL_TGGL_MASK;
1285 regmap_write(saw_regmap, SAW3_AVS_CTL, avs_ctl);
1286 }
1287}
1288
1289static int
1290spmi_regulator_saw_set_voltage(struct regulator_dev *rdev, unsigned selector)
1291{
1292 struct spmi_regulator *vreg = rdev_get_drvdata(rdev);
1293 int ret;
1294 u8 range_sel, voltage_sel;
1295
1296 ret = spmi_sw_selector_to_hw(vreg, selector, &range_sel, &voltage_sel);
1297 if (ret)
1298 return ret;
1299
1300 if (0 != range_sel) {
1301 dev_dbg(&rdev->dev, "range_sel = %02X voltage_sel = %02X", \
1302 range_sel, voltage_sel);
1303 return -EINVAL;
1304 }
1305
1306 /* Always do the SAW register writes on the first CPU */
1307 return smp_call_function_single(0, spmi_saw_set_vdd, \
1308 &voltage_sel, true);
1309}
1310
1311static struct regulator_ops spmi_saw_ops = {};
1312
3b619e3e 1313static const struct regulator_ops spmi_smps_ops = {
9d485332
AL
1314 .enable = regulator_enable_regmap,
1315 .disable = regulator_disable_regmap,
1316 .is_enabled = regulator_is_enabled_regmap,
1b5b1968 1317 .set_voltage_sel = spmi_regulator_common_set_voltage,
2cf7b99c 1318 .set_voltage_time_sel = spmi_regulator_set_voltage_time_sel,
1b5b1968
SB
1319 .get_voltage_sel = spmi_regulator_common_get_voltage,
1320 .map_voltage = spmi_regulator_common_map_voltage,
e92a4047
SB
1321 .list_voltage = spmi_regulator_common_list_voltage,
1322 .set_mode = spmi_regulator_common_set_mode,
1323 .get_mode = spmi_regulator_common_get_mode,
1324 .set_load = spmi_regulator_common_set_load,
1325 .set_pull_down = spmi_regulator_common_set_pull_down,
1326};
1327
3b619e3e 1328static const struct regulator_ops spmi_ldo_ops = {
9d485332
AL
1329 .enable = regulator_enable_regmap,
1330 .disable = regulator_disable_regmap,
1331 .is_enabled = regulator_is_enabled_regmap,
1b5b1968
SB
1332 .set_voltage_sel = spmi_regulator_common_set_voltage,
1333 .get_voltage_sel = spmi_regulator_common_get_voltage,
1334 .map_voltage = spmi_regulator_common_map_voltage,
e92a4047
SB
1335 .list_voltage = spmi_regulator_common_list_voltage,
1336 .set_mode = spmi_regulator_common_set_mode,
1337 .get_mode = spmi_regulator_common_get_mode,
1338 .set_load = spmi_regulator_common_set_load,
1339 .set_bypass = spmi_regulator_common_set_bypass,
1340 .get_bypass = spmi_regulator_common_get_bypass,
1341 .set_pull_down = spmi_regulator_common_set_pull_down,
1342 .set_soft_start = spmi_regulator_common_set_soft_start,
1343};
1344
3b619e3e 1345static const struct regulator_ops spmi_ln_ldo_ops = {
9d485332
AL
1346 .enable = regulator_enable_regmap,
1347 .disable = regulator_disable_regmap,
1348 .is_enabled = regulator_is_enabled_regmap,
1b5b1968
SB
1349 .set_voltage_sel = spmi_regulator_common_set_voltage,
1350 .get_voltage_sel = spmi_regulator_common_get_voltage,
1351 .map_voltage = spmi_regulator_common_map_voltage,
e92a4047
SB
1352 .list_voltage = spmi_regulator_common_list_voltage,
1353 .set_bypass = spmi_regulator_common_set_bypass,
1354 .get_bypass = spmi_regulator_common_get_bypass,
1355};
1356
3b619e3e 1357static const struct regulator_ops spmi_vs_ops = {
e92a4047 1358 .enable = spmi_regulator_vs_enable,
9d485332
AL
1359 .disable = regulator_disable_regmap,
1360 .is_enabled = regulator_is_enabled_regmap,
e92a4047
SB
1361 .set_pull_down = spmi_regulator_common_set_pull_down,
1362 .set_soft_start = spmi_regulator_common_set_soft_start,
e2adfacd 1363 .set_over_current_protection = spmi_regulator_vs_ocp,
919163f6
SB
1364 .set_mode = spmi_regulator_common_set_mode,
1365 .get_mode = spmi_regulator_common_get_mode,
e92a4047
SB
1366};
1367
3b619e3e 1368static const struct regulator_ops spmi_boost_ops = {
9d485332
AL
1369 .enable = regulator_enable_regmap,
1370 .disable = regulator_disable_regmap,
1371 .is_enabled = regulator_is_enabled_regmap,
1b5b1968
SB
1372 .set_voltage_sel = spmi_regulator_single_range_set_voltage,
1373 .get_voltage_sel = spmi_regulator_single_range_get_voltage,
1374 .map_voltage = spmi_regulator_single_map_voltage,
e92a4047
SB
1375 .list_voltage = spmi_regulator_common_list_voltage,
1376 .set_input_current_limit = spmi_regulator_set_ilim,
1377};
1378
3b619e3e 1379static const struct regulator_ops spmi_ftsmps_ops = {
9d485332
AL
1380 .enable = regulator_enable_regmap,
1381 .disable = regulator_disable_regmap,
1382 .is_enabled = regulator_is_enabled_regmap,
1b5b1968 1383 .set_voltage_sel = spmi_regulator_common_set_voltage,
e92a4047 1384 .set_voltage_time_sel = spmi_regulator_set_voltage_time_sel,
1b5b1968
SB
1385 .get_voltage_sel = spmi_regulator_common_get_voltage,
1386 .map_voltage = spmi_regulator_common_map_voltage,
e92a4047
SB
1387 .list_voltage = spmi_regulator_common_list_voltage,
1388 .set_mode = spmi_regulator_common_set_mode,
1389 .get_mode = spmi_regulator_common_get_mode,
1390 .set_load = spmi_regulator_common_set_load,
1391 .set_pull_down = spmi_regulator_common_set_pull_down,
1392};
1393
3b619e3e 1394static const struct regulator_ops spmi_ult_lo_smps_ops = {
9d485332
AL
1395 .enable = regulator_enable_regmap,
1396 .disable = regulator_disable_regmap,
1397 .is_enabled = regulator_is_enabled_regmap,
1b5b1968 1398 .set_voltage_sel = spmi_regulator_ult_lo_smps_set_voltage,
2cf7b99c 1399 .set_voltage_time_sel = spmi_regulator_set_voltage_time_sel,
1b5b1968 1400 .get_voltage_sel = spmi_regulator_ult_lo_smps_get_voltage,
e92a4047
SB
1401 .list_voltage = spmi_regulator_common_list_voltage,
1402 .set_mode = spmi_regulator_common_set_mode,
1403 .get_mode = spmi_regulator_common_get_mode,
1404 .set_load = spmi_regulator_common_set_load,
1405 .set_pull_down = spmi_regulator_common_set_pull_down,
1406};
1407
3b619e3e 1408static const struct regulator_ops spmi_ult_ho_smps_ops = {
9d485332
AL
1409 .enable = regulator_enable_regmap,
1410 .disable = regulator_disable_regmap,
1411 .is_enabled = regulator_is_enabled_regmap,
1b5b1968 1412 .set_voltage_sel = spmi_regulator_single_range_set_voltage,
2cf7b99c 1413 .set_voltage_time_sel = spmi_regulator_set_voltage_time_sel,
1b5b1968
SB
1414 .get_voltage_sel = spmi_regulator_single_range_get_voltage,
1415 .map_voltage = spmi_regulator_single_map_voltage,
e92a4047
SB
1416 .list_voltage = spmi_regulator_common_list_voltage,
1417 .set_mode = spmi_regulator_common_set_mode,
1418 .get_mode = spmi_regulator_common_get_mode,
1419 .set_load = spmi_regulator_common_set_load,
1420 .set_pull_down = spmi_regulator_common_set_pull_down,
1421};
1422
3b619e3e 1423static const struct regulator_ops spmi_ult_ldo_ops = {
9d485332
AL
1424 .enable = regulator_enable_regmap,
1425 .disable = regulator_disable_regmap,
1426 .is_enabled = regulator_is_enabled_regmap,
1b5b1968
SB
1427 .set_voltage_sel = spmi_regulator_single_range_set_voltage,
1428 .get_voltage_sel = spmi_regulator_single_range_get_voltage,
1429 .map_voltage = spmi_regulator_single_map_voltage,
e92a4047
SB
1430 .list_voltage = spmi_regulator_common_list_voltage,
1431 .set_mode = spmi_regulator_common_set_mode,
1432 .get_mode = spmi_regulator_common_get_mode,
1433 .set_load = spmi_regulator_common_set_load,
1434 .set_bypass = spmi_regulator_common_set_bypass,
1435 .get_bypass = spmi_regulator_common_get_bypass,
1436 .set_pull_down = spmi_regulator_common_set_pull_down,
1437 .set_soft_start = spmi_regulator_common_set_soft_start,
1438};
1439
3b619e3e 1440static const struct regulator_ops spmi_ftsmps426_ops = {
42ba89c8
JH
1441 .enable = regulator_enable_regmap,
1442 .disable = regulator_disable_regmap,
1443 .is_enabled = regulator_is_enabled_regmap,
1444 .set_voltage_sel = spmi_regulator_ftsmps426_set_voltage,
1445 .set_voltage_time_sel = spmi_regulator_set_voltage_time_sel,
1446 .get_voltage_sel = spmi_regulator_ftsmps426_get_voltage,
1447 .map_voltage = spmi_regulator_single_map_voltage,
1448 .list_voltage = spmi_regulator_common_list_voltage,
1449 .set_mode = spmi_regulator_ftsmps426_set_mode,
1450 .get_mode = spmi_regulator_ftsmps426_get_mode,
1451 .set_load = spmi_regulator_common_set_load,
1452 .set_pull_down = spmi_regulator_common_set_pull_down,
1453};
1454
3b619e3e 1455static const struct regulator_ops spmi_hfs430_ops = {
0211f68e
JR
1456 .enable = regulator_enable_regmap,
1457 .disable = regulator_disable_regmap,
1458 .is_enabled = regulator_is_enabled_regmap,
1459 .set_voltage_sel = spmi_regulator_ftsmps426_set_voltage,
1460 .set_voltage_time_sel = spmi_regulator_set_voltage_time_sel,
1461 .get_voltage_sel = spmi_regulator_ftsmps426_get_voltage,
1462 .map_voltage = spmi_regulator_single_map_voltage,
1463 .list_voltage = spmi_regulator_common_list_voltage,
1464 .set_mode = spmi_regulator_ftsmps426_set_mode,
1465 .get_mode = spmi_regulator_ftsmps426_get_mode,
1466};
1467
e92a4047
SB
1468/* Maximum possible digital major revision value */
1469#define INF 0xFF
1470
1471static const struct spmi_regulator_mapping supported_regulators[] = {
1472 /* type subtype dig_min dig_max ltype ops setpoints hpm_min */
3d04ae8e 1473 SPMI_VREG(LDO, HT_P600, 0, INF, HFS430, hfs430, ht_p600, 10000),
00f6ebbd 1474 SPMI_VREG(LDO, HT_P150, 0, INF, HFS430, hfs430, ht_p150, 10000),
e92a4047 1475 SPMI_VREG(BUCK, GP_CTL, 0, INF, SMPS, smps, smps, 100000),
0211f68e 1476 SPMI_VREG(BUCK, HFS430, 0, INF, HFS430, hfs430, hfs430, 10000),
e92a4047
SB
1477 SPMI_VREG(LDO, N300, 0, INF, LDO, ldo, nldo1, 10000),
1478 SPMI_VREG(LDO, N600, 0, 0, LDO, ldo, nldo2, 10000),
1479 SPMI_VREG(LDO, N1200, 0, 0, LDO, ldo, nldo2, 10000),
1480 SPMI_VREG(LDO, N600, 1, INF, LDO, ldo, nldo3, 10000),
1481 SPMI_VREG(LDO, N1200, 1, INF, LDO, ldo, nldo3, 10000),
1482 SPMI_VREG(LDO, N600_ST, 0, 0, LDO, ldo, nldo2, 10000),
1483 SPMI_VREG(LDO, N1200_ST, 0, 0, LDO, ldo, nldo2, 10000),
1484 SPMI_VREG(LDO, N600_ST, 1, INF, LDO, ldo, nldo3, 10000),
1485 SPMI_VREG(LDO, N1200_ST, 1, INF, LDO, ldo, nldo3, 10000),
1486 SPMI_VREG(LDO, P50, 0, INF, LDO, ldo, pldo, 5000),
1487 SPMI_VREG(LDO, P150, 0, INF, LDO, ldo, pldo, 10000),
1488 SPMI_VREG(LDO, P300, 0, INF, LDO, ldo, pldo, 10000),
1489 SPMI_VREG(LDO, P600, 0, INF, LDO, ldo, pldo, 10000),
1490 SPMI_VREG(LDO, P1200, 0, INF, LDO, ldo, pldo, 10000),
1491 SPMI_VREG(LDO, LN, 0, INF, LN_LDO, ln_ldo, ln_ldo, 0),
1492 SPMI_VREG(LDO, LV_P50, 0, INF, LDO, ldo, pldo, 5000),
1493 SPMI_VREG(LDO, LV_P150, 0, INF, LDO, ldo, pldo, 10000),
1494 SPMI_VREG(LDO, LV_P300, 0, INF, LDO, ldo, pldo, 10000),
1495 SPMI_VREG(LDO, LV_P600, 0, INF, LDO, ldo, pldo, 10000),
1496 SPMI_VREG(LDO, LV_P1200, 0, INF, LDO, ldo, pldo, 10000),
328816c2
ADR
1497 SPMI_VREG(LDO, HT_N300_ST, 0, INF, FTSMPS426, ftsmps426,
1498 ht_nldo, 30000),
1499 SPMI_VREG(LDO, HT_N600_ST, 0, INF, FTSMPS426, ftsmps426,
1500 ht_nldo, 30000),
1501 SPMI_VREG(LDO, HT_N1200_ST, 0, INF, FTSMPS426, ftsmps426,
1502 ht_nldo, 30000),
1503 SPMI_VREG(LDO, HT_LVP150, 0, INF, FTSMPS426, ftsmps426,
1504 ht_lvpldo, 10000),
1505 SPMI_VREG(LDO, HT_LVP300, 0, INF, FTSMPS426, ftsmps426,
1506 ht_lvpldo, 10000),
1507 SPMI_VREG(LDO, L660_N300_ST, 0, INF, FTSMPS426, ftsmps426,
1508 nldo660, 10000),
1509 SPMI_VREG(LDO, L660_N600_ST, 0, INF, FTSMPS426, ftsmps426,
1510 nldo660, 10000),
1511 SPMI_VREG(LDO, L660_P50, 0, INF, FTSMPS426, ftsmps426,
1512 pldo660, 10000),
1513 SPMI_VREG(LDO, L660_P150, 0, INF, FTSMPS426, ftsmps426,
1514 pldo660, 10000),
1515 SPMI_VREG(LDO, L660_P600, 0, INF, FTSMPS426, ftsmps426,
1516 pldo660, 10000),
1517 SPMI_VREG(LDO, L660_LVP150, 0, INF, FTSMPS426, ftsmps426,
1518 ht_lvpldo, 10000),
1519 SPMI_VREG(LDO, L660_LVP600, 0, INF, FTSMPS426, ftsmps426,
1520 ht_lvpldo, 10000),
e92a4047
SB
1521 SPMI_VREG_VS(LV100, 0, INF),
1522 SPMI_VREG_VS(LV300, 0, INF),
1523 SPMI_VREG_VS(MV300, 0, INF),
1524 SPMI_VREG_VS(MV500, 0, INF),
1525 SPMI_VREG_VS(HDMI, 0, INF),
1526 SPMI_VREG_VS(OTG, 0, INF),
1527 SPMI_VREG(BOOST, 5V_BOOST, 0, INF, BOOST, boost, boost, 0),
1528 SPMI_VREG(FTS, FTS_CTL, 0, INF, FTSMPS, ftsmps, ftsmps, 100000),
1529 SPMI_VREG(FTS, FTS2p5_CTL, 0, INF, FTSMPS, ftsmps, ftsmps2p5, 100000),
42ba89c8 1530 SPMI_VREG(FTS, FTS426_CTL, 0, INF, FTSMPS426, ftsmps426, ftsmps426, 100000),
e92a4047
SB
1531 SPMI_VREG(BOOST_BYP, BB_2A, 0, INF, BOOST_BYP, boost, boost_byp, 0),
1532 SPMI_VREG(ULT_BUCK, ULT_HF_CTL1, 0, INF, ULT_LO_SMPS, ult_lo_smps,
1533 ult_lo_smps, 100000),
1534 SPMI_VREG(ULT_BUCK, ULT_HF_CTL2, 0, INF, ULT_LO_SMPS, ult_lo_smps,
1535 ult_lo_smps, 100000),
1536 SPMI_VREG(ULT_BUCK, ULT_HF_CTL3, 0, INF, ULT_LO_SMPS, ult_lo_smps,
1537 ult_lo_smps, 100000),
1538 SPMI_VREG(ULT_BUCK, ULT_HF_CTL4, 0, INF, ULT_HO_SMPS, ult_ho_smps,
1539 ult_ho_smps, 100000),
1540 SPMI_VREG(ULT_LDO, N300_ST, 0, INF, ULT_LDO, ult_ldo, ult_nldo, 10000),
1541 SPMI_VREG(ULT_LDO, N600_ST, 0, INF, ULT_LDO, ult_ldo, ult_nldo, 10000),
1542 SPMI_VREG(ULT_LDO, N900_ST, 0, INF, ULT_LDO, ult_ldo, ult_nldo, 10000),
1543 SPMI_VREG(ULT_LDO, N1200_ST, 0, INF, ULT_LDO, ult_ldo, ult_nldo, 10000),
438421b0 1544 SPMI_VREG(ULT_LDO, LV_P50, 0, INF, ULT_LDO, ult_ldo, ult_pldo, 10000),
e92a4047
SB
1545 SPMI_VREG(ULT_LDO, LV_P150, 0, INF, ULT_LDO, ult_ldo, ult_pldo, 10000),
1546 SPMI_VREG(ULT_LDO, LV_P300, 0, INF, ULT_LDO, ult_ldo, ult_pldo, 10000),
1547 SPMI_VREG(ULT_LDO, LV_P450, 0, INF, ULT_LDO, ult_ldo, ult_pldo, 10000),
1548 SPMI_VREG(ULT_LDO, P600, 0, INF, ULT_LDO, ult_ldo, ult_pldo, 10000),
438421b0 1549 SPMI_VREG(ULT_LDO, P300, 0, INF, ULT_LDO, ult_ldo, ult_pldo, 10000),
e92a4047
SB
1550 SPMI_VREG(ULT_LDO, P150, 0, INF, ULT_LDO, ult_ldo, ult_pldo, 10000),
1551 SPMI_VREG(ULT_LDO, P50, 0, INF, ULT_LDO, ult_ldo, ult_pldo, 5000),
1552};
1553
1554static void spmi_calculate_num_voltages(struct spmi_voltage_set_points *points)
1555{
1556 unsigned int n;
1557 struct spmi_voltage_range *range = points->range;
1558
1559 for (; range < points->range + points->count; range++) {
1560 n = 0;
1561 if (range->set_point_max_uV) {
1562 n = range->set_point_max_uV - range->set_point_min_uV;
419d06a1 1563 n = (n / range->step_uV) + 1;
e92a4047
SB
1564 }
1565 range->n_voltages = n;
1566 points->n_voltages += n;
1567 }
1568}
1569
1570static int spmi_regulator_match(struct spmi_regulator *vreg, u16 force_type)
1571{
1572 const struct spmi_regulator_mapping *mapping;
1573 int ret, i;
1574 u32 dig_major_rev;
1575 u8 version[SPMI_COMMON_REG_SUBTYPE - SPMI_COMMON_REG_DIG_MAJOR_REV + 1];
1576 u8 type, subtype;
1577
1578 ret = spmi_vreg_read(vreg, SPMI_COMMON_REG_DIG_MAJOR_REV, version,
1579 ARRAY_SIZE(version));
1580 if (ret) {
6ee5c044 1581 dev_dbg(vreg->dev, "could not read version registers\n");
e92a4047
SB
1582 return ret;
1583 }
1584 dig_major_rev = version[SPMI_COMMON_REG_DIG_MAJOR_REV
1585 - SPMI_COMMON_REG_DIG_MAJOR_REV];
0caecaa8 1586
e92a4047
SB
1587 if (!force_type) {
1588 type = version[SPMI_COMMON_REG_TYPE -
1589 SPMI_COMMON_REG_DIG_MAJOR_REV];
1590 subtype = version[SPMI_COMMON_REG_SUBTYPE -
1591 SPMI_COMMON_REG_DIG_MAJOR_REV];
1592 } else {
1593 type = force_type >> 8;
1594 subtype = force_type;
1595 }
1596
1597 for (i = 0; i < ARRAY_SIZE(supported_regulators); i++) {
1598 mapping = &supported_regulators[i];
1599 if (mapping->type == type && mapping->subtype == subtype
1600 && mapping->revision_min <= dig_major_rev
1601 && mapping->revision_max >= dig_major_rev)
1602 goto found;
1603 }
1604
1605 dev_err(vreg->dev,
1606 "unsupported regulator: name=%s type=0x%02X, subtype=0x%02X, dig major rev=0x%02X\n",
1607 vreg->desc.name, type, subtype, dig_major_rev);
1608
1609 return -ENODEV;
1610
1611found:
1612 vreg->logical_type = mapping->logical_type;
1613 vreg->set_points = mapping->set_points;
1614 vreg->hpm_min_load = mapping->hpm_min_load;
1615 vreg->desc.ops = mapping->ops;
1616
1617 if (mapping->set_points) {
1618 if (!mapping->set_points->n_voltages)
1619 spmi_calculate_num_voltages(mapping->set_points);
1620 vreg->desc.n_voltages = mapping->set_points->n_voltages;
1621 }
1622
1623 return 0;
1624}
1625
2cf7b99c 1626static int spmi_regulator_init_slew_rate(struct spmi_regulator *vreg)
e92a4047
SB
1627{
1628 int ret;
1629 u8 reg = 0;
2cf7b99c 1630 int step, delay, slew_rate, step_delay;
e92a4047
SB
1631 const struct spmi_voltage_range *range;
1632
1633 ret = spmi_vreg_read(vreg, SPMI_COMMON_REG_STEP_CTRL, &reg, 1);
1634 if (ret) {
1635 dev_err(vreg->dev, "spmi read failed, ret=%d\n", ret);
1636 return ret;
1637 }
1638
1639 range = spmi_regulator_find_range(vreg);
1640 if (!range)
1641 return -EINVAL;
1642
2cf7b99c
SB
1643 switch (vreg->logical_type) {
1644 case SPMI_REGULATOR_LOGICAL_TYPE_FTSMPS:
1645 step_delay = SPMI_FTSMPS_STEP_DELAY;
1646 break;
1647 default:
1648 step_delay = SPMI_DEFAULT_STEP_DELAY;
1649 break;
1650 }
1651
e92a4047
SB
1652 step = reg & SPMI_FTSMPS_STEP_CTRL_STEP_MASK;
1653 step >>= SPMI_FTSMPS_STEP_CTRL_STEP_SHIFT;
1654
1655 delay = reg & SPMI_FTSMPS_STEP_CTRL_DELAY_MASK;
1656 delay >>= SPMI_FTSMPS_STEP_CTRL_DELAY_SHIFT;
1657
1658 /* slew_rate has units of uV/us */
1659 slew_rate = SPMI_FTSMPS_CLOCK_RATE * range->step_uV * (1 << step);
2cf7b99c 1660 slew_rate /= 1000 * (step_delay << delay);
e92a4047
SB
1661 slew_rate *= SPMI_FTSMPS_STEP_MARGIN_NUM;
1662 slew_rate /= SPMI_FTSMPS_STEP_MARGIN_DEN;
1663
1664 /* Ensure that the slew rate is greater than 0 */
1665 vreg->slew_rate = max(slew_rate, 1);
1666
1667 return ret;
1668}
1669
0211f68e
JR
1670static int spmi_regulator_init_slew_rate_ftsmps426(struct spmi_regulator *vreg,
1671 int clock_rate)
42ba89c8
JH
1672{
1673 int ret;
1674 u8 reg = 0;
1675 int delay, slew_rate;
1676 const struct spmi_voltage_range *range = &vreg->set_points->range[0];
1677
1678 ret = spmi_vreg_read(vreg, SPMI_COMMON_REG_STEP_CTRL, &reg, 1);
1679 if (ret) {
1680 dev_err(vreg->dev, "spmi read failed, ret=%d\n", ret);
1681 return ret;
1682 }
1683
1684 delay = reg & SPMI_FTSMPS426_STEP_CTRL_DELAY_MASK;
1685 delay >>= SPMI_FTSMPS426_STEP_CTRL_DELAY_SHIFT;
1686
1687 /* slew_rate has units of uV/us */
0211f68e 1688 slew_rate = clock_rate * range->step_uV;
42ba89c8
JH
1689 slew_rate /= 1000 * (SPMI_FTSMPS426_STEP_DELAY << delay);
1690 slew_rate *= SPMI_FTSMPS426_STEP_MARGIN_NUM;
1691 slew_rate /= SPMI_FTSMPS426_STEP_MARGIN_DEN;
1692
1693 /* Ensure that the slew rate is greater than 0 */
1694 vreg->slew_rate = max(slew_rate, 1);
1695
1696 return ret;
1697}
1698
e2adfacd
SB
1699static int spmi_regulator_init_registers(struct spmi_regulator *vreg,
1700 const struct spmi_regulator_init_data *data)
1701{
1702 int ret;
1703 enum spmi_regulator_logical_type type;
1704 u8 ctrl_reg[8], reg, mask;
1705
1706 type = vreg->logical_type;
1707
1708 ret = spmi_vreg_read(vreg, SPMI_COMMON_REG_VOLTAGE_RANGE, ctrl_reg, 8);
1709 if (ret)
1710 return ret;
1711
1712 /* Set up enable pin control. */
6a1fe83b
AL
1713 if (!(data->pin_ctrl_enable & SPMI_REGULATOR_PIN_CTRL_ENABLE_HW_DEFAULT)) {
1714 switch (type) {
1715 case SPMI_REGULATOR_LOGICAL_TYPE_SMPS:
1716 case SPMI_REGULATOR_LOGICAL_TYPE_LDO:
1717 case SPMI_REGULATOR_LOGICAL_TYPE_VS:
1718 ctrl_reg[SPMI_COMMON_IDX_ENABLE] &=
1719 ~SPMI_COMMON_ENABLE_FOLLOW_ALL_MASK;
1720 ctrl_reg[SPMI_COMMON_IDX_ENABLE] |=
1721 data->pin_ctrl_enable & SPMI_COMMON_ENABLE_FOLLOW_ALL_MASK;
1722 break;
1723 default:
1724 break;
1725 }
e2adfacd
SB
1726 }
1727
1728 /* Set up mode pin control. */
6a1fe83b
AL
1729 if (!(data->pin_ctrl_hpm & SPMI_REGULATOR_PIN_CTRL_HPM_HW_DEFAULT)) {
1730 switch (type) {
1731 case SPMI_REGULATOR_LOGICAL_TYPE_SMPS:
1732 case SPMI_REGULATOR_LOGICAL_TYPE_LDO:
1733 ctrl_reg[SPMI_COMMON_IDX_MODE] &=
1734 ~SPMI_COMMON_MODE_FOLLOW_ALL_MASK;
1735 ctrl_reg[SPMI_COMMON_IDX_MODE] |=
1736 data->pin_ctrl_hpm & SPMI_COMMON_MODE_FOLLOW_ALL_MASK;
1737 break;
1738 case SPMI_REGULATOR_LOGICAL_TYPE_VS:
1739 case SPMI_REGULATOR_LOGICAL_TYPE_ULT_LO_SMPS:
1740 case SPMI_REGULATOR_LOGICAL_TYPE_ULT_HO_SMPS:
1741 case SPMI_REGULATOR_LOGICAL_TYPE_ULT_LDO:
1742 ctrl_reg[SPMI_COMMON_IDX_MODE] &=
1743 ~SPMI_COMMON_MODE_FOLLOW_AWAKE_MASK;
1744 ctrl_reg[SPMI_COMMON_IDX_MODE] |=
1745 data->pin_ctrl_hpm & SPMI_COMMON_MODE_FOLLOW_AWAKE_MASK;
1746 break;
1747 default:
1748 break;
1749 }
e2adfacd
SB
1750 }
1751
1752 /* Write back any control register values that were modified. */
1753 ret = spmi_vreg_write(vreg, SPMI_COMMON_REG_VOLTAGE_RANGE, ctrl_reg, 8);
1754 if (ret)
1755 return ret;
1756
1757 /* Set soft start strength and over current protection for VS. */
1758 if (type == SPMI_REGULATOR_LOGICAL_TYPE_VS) {
1759 if (data->vs_soft_start_strength
1760 != SPMI_VS_SOFT_START_STR_HW_DEFAULT) {
1761 reg = data->vs_soft_start_strength
1762 & SPMI_VS_SOFT_START_SEL_MASK;
1763 mask = SPMI_VS_SOFT_START_SEL_MASK;
1764 return spmi_vreg_update_bits(vreg,
1765 SPMI_VS_REG_SOFT_START,
1766 reg, mask);
1767 }
1768 }
1769
1770 return 0;
1771}
1772
1773static void spmi_regulator_get_dt_config(struct spmi_regulator *vreg,
1774 struct device_node *node, struct spmi_regulator_init_data *data)
1775{
1776 /*
1777 * Initialize configuration parameters to use hardware default in case
1778 * no value is specified via device tree.
1779 */
1780 data->pin_ctrl_enable = SPMI_REGULATOR_PIN_CTRL_ENABLE_HW_DEFAULT;
1781 data->pin_ctrl_hpm = SPMI_REGULATOR_PIN_CTRL_HPM_HW_DEFAULT;
1782 data->vs_soft_start_strength = SPMI_VS_SOFT_START_STR_HW_DEFAULT;
1783
1784 /* These bindings are optional, so it is okay if they aren't found. */
1785 of_property_read_u32(node, "qcom,ocp-max-retries",
1786 &vreg->ocp_max_retries);
1787 of_property_read_u32(node, "qcom,ocp-retry-delay",
1788 &vreg->ocp_retry_delay_ms);
1789 of_property_read_u32(node, "qcom,pin-ctrl-enable",
1790 &data->pin_ctrl_enable);
1791 of_property_read_u32(node, "qcom,pin-ctrl-hpm", &data->pin_ctrl_hpm);
1792 of_property_read_u32(node, "qcom,vs-soft-start-strength",
1793 &data->vs_soft_start_strength);
1794}
1795
e92a4047
SB
1796static unsigned int spmi_regulator_of_map_mode(unsigned int mode)
1797{
e2adfacd 1798 if (mode == 1)
e92a4047 1799 return REGULATOR_MODE_NORMAL;
e2adfacd
SB
1800 if (mode == 2)
1801 return REGULATOR_MODE_FAST;
e92a4047
SB
1802
1803 return REGULATOR_MODE_IDLE;
1804}
1805
1806static int spmi_regulator_of_parse(struct device_node *node,
1807 const struct regulator_desc *desc,
1808 struct regulator_config *config)
1809{
e2adfacd 1810 struct spmi_regulator_init_data data = { };
e92a4047
SB
1811 struct spmi_regulator *vreg = config->driver_data;
1812 struct device *dev = config->dev;
1813 int ret;
1814
e2adfacd
SB
1815 spmi_regulator_get_dt_config(vreg, node, &data);
1816
1817 if (!vreg->ocp_max_retries)
1818 vreg->ocp_max_retries = SPMI_VS_OCP_DEFAULT_MAX_RETRIES;
1819 if (!vreg->ocp_retry_delay_ms)
1820 vreg->ocp_retry_delay_ms = SPMI_VS_OCP_DEFAULT_RETRY_DELAY_MS;
1821
1822 ret = spmi_regulator_init_registers(vreg, &data);
1823 if (ret) {
1824 dev_err(dev, "common initialization failed, ret=%d\n", ret);
1825 return ret;
1826 }
e92a4047 1827
2cf7b99c
SB
1828 switch (vreg->logical_type) {
1829 case SPMI_REGULATOR_LOGICAL_TYPE_FTSMPS:
1830 case SPMI_REGULATOR_LOGICAL_TYPE_ULT_LO_SMPS:
1831 case SPMI_REGULATOR_LOGICAL_TYPE_ULT_HO_SMPS:
1832 case SPMI_REGULATOR_LOGICAL_TYPE_SMPS:
1833 ret = spmi_regulator_init_slew_rate(vreg);
e92a4047
SB
1834 if (ret)
1835 return ret;
42ba89c8
JH
1836 break;
1837 case SPMI_REGULATOR_LOGICAL_TYPE_FTSMPS426:
0211f68e
JR
1838 ret = spmi_regulator_init_slew_rate_ftsmps426(vreg,
1839 SPMI_FTSMPS426_CLOCK_RATE);
1840 if (ret)
1841 return ret;
1842 break;
1843 case SPMI_REGULATOR_LOGICAL_TYPE_HFS430:
1844 ret = spmi_regulator_init_slew_rate_ftsmps426(vreg,
1845 SPMI_HFS430_CLOCK_RATE);
42ba89c8
JH
1846 if (ret)
1847 return ret;
1848 break;
2cf7b99c
SB
1849 default:
1850 break;
e92a4047
SB
1851 }
1852
1853 if (vreg->logical_type != SPMI_REGULATOR_LOGICAL_TYPE_VS)
1854 vreg->ocp_irq = 0;
1855
1856 if (vreg->ocp_irq) {
1857 ret = devm_request_irq(dev, vreg->ocp_irq,
1858 spmi_regulator_vs_ocp_isr, IRQF_TRIGGER_RISING, "ocp",
1859 vreg);
1860 if (ret < 0) {
1861 dev_err(dev, "failed to request irq %d, ret=%d\n",
1862 vreg->ocp_irq, ret);
1863 return ret;
1864 }
1865
b6688015
MV
1866 ret = devm_delayed_work_autocancel(dev, &vreg->ocp_work,
1867 spmi_regulator_vs_ocp_work);
1868 if (ret)
1869 return ret;
e92a4047
SB
1870 }
1871
1872 return 0;
1873}
1874
1875static const struct spmi_regulator_data pm8941_regulators[] = {
1876 { "s1", 0x1400, "vdd_s1", },
1877 { "s2", 0x1700, "vdd_s2", },
1878 { "s3", 0x1a00, "vdd_s3", },
c333dfe8 1879 { "s4", 0xa000, },
e92a4047
SB
1880 { "l1", 0x4000, "vdd_l1_l3", },
1881 { "l2", 0x4100, "vdd_l2_lvs_1_2_3", },
1882 { "l3", 0x4200, "vdd_l1_l3", },
1883 { "l4", 0x4300, "vdd_l4_l11", },
1884 { "l5", 0x4400, "vdd_l5_l7", NULL, 0x0410 },
1885 { "l6", 0x4500, "vdd_l6_l12_l14_l15", },
1886 { "l7", 0x4600, "vdd_l5_l7", NULL, 0x0410 },
1887 { "l8", 0x4700, "vdd_l8_l16_l18_19", },
1888 { "l9", 0x4800, "vdd_l9_l10_l17_l22", },
1889 { "l10", 0x4900, "vdd_l9_l10_l17_l22", },
1890 { "l11", 0x4a00, "vdd_l4_l11", },
1891 { "l12", 0x4b00, "vdd_l6_l12_l14_l15", },
1892 { "l13", 0x4c00, "vdd_l13_l20_l23_l24", },
1893 { "l14", 0x4d00, "vdd_l6_l12_l14_l15", },
1894 { "l15", 0x4e00, "vdd_l6_l12_l14_l15", },
1895 { "l16", 0x4f00, "vdd_l8_l16_l18_19", },
1896 { "l17", 0x5000, "vdd_l9_l10_l17_l22", },
1897 { "l18", 0x5100, "vdd_l8_l16_l18_19", },
1898 { "l19", 0x5200, "vdd_l8_l16_l18_19", },
1899 { "l20", 0x5300, "vdd_l13_l20_l23_l24", },
1900 { "l21", 0x5400, "vdd_l21", },
1901 { "l22", 0x5500, "vdd_l9_l10_l17_l22", },
1902 { "l23", 0x5600, "vdd_l13_l20_l23_l24", },
1903 { "l24", 0x5700, "vdd_l13_l20_l23_l24", },
1904 { "lvs1", 0x8000, "vdd_l2_lvs_1_2_3", },
1905 { "lvs2", 0x8100, "vdd_l2_lvs_1_2_3", },
1906 { "lvs3", 0x8200, "vdd_l2_lvs_1_2_3", },
93bfe79b
SB
1907 { "5vs1", 0x8300, "vin_5vs", "ocp-5vs1", },
1908 { "5vs2", 0x8400, "vin_5vs", "ocp-5vs2", },
e92a4047
SB
1909 { }
1910};
1911
f8843e5e
DK
1912static const struct spmi_regulator_data pm8226_regulators[] = {
1913 { "s1", 0x1400, "vdd_s1", },
1914 { "s2", 0x1700, "vdd_s2", },
1915 { "s3", 0x1a00, "vdd_s3", },
1916 { "s4", 0x1d00, "vdd_s4", },
1917 { "s5", 0x2000, "vdd_s5", },
1918 { "l1", 0x4000, "vdd_l1_l2_l4_l5", },
1919 { "l2", 0x4100, "vdd_l1_l2_l4_l5", },
1920 { "l3", 0x4200, "vdd_l3_l24_l26", },
1921 { "l4", 0x4300, "vdd_l1_l2_l4_l5", },
1922 { "l5", 0x4400, "vdd_l1_l2_l4_l5", },
1923 { "l6", 0x4500, "vdd_l6_l7_l8_l9_l27", },
1924 { "l7", 0x4600, "vdd_l6_l7_l8_l9_l27", },
1925 { "l8", 0x4700, "vdd_l6_l7_l8_l9_l27", },
1926 { "l9", 0x4800, "vdd_l6_l7_l8_l9_l27", },
1927 { "l10", 0x4900, "vdd_l10_l11_l13", },
1928 { "l11", 0x4a00, "vdd_l10_l11_l13", },
1929 { "l12", 0x4b00, "vdd_l12_l14", },
1930 { "l13", 0x4c00, "vdd_l10_l11_l13", },
1931 { "l14", 0x4d00, "vdd_l12_l14", },
1932 { "l15", 0x4e00, "vdd_l15_l16_l17_l18", },
1933 { "l16", 0x4f00, "vdd_l15_l16_l17_l18", },
1934 { "l17", 0x5000, "vdd_l15_l16_l17_l18", },
1935 { "l18", 0x5100, "vdd_l15_l16_l17_l18", },
1936 { "l19", 0x5200, "vdd_l19_l20_l21_l22_l23_l28", },
1937 { "l20", 0x5300, "vdd_l19_l20_l21_l22_l23_l28", },
1938 { "l21", 0x5400, "vdd_l19_l20_l21_l22_l23_l28", },
1939 { "l22", 0x5500, "vdd_l19_l20_l21_l22_l23_l28", },
1940 { "l23", 0x5600, "vdd_l19_l20_l21_l22_l23_l28", },
1941 { "l24", 0x5700, "vdd_l3_l24_l26", },
1942 { "l25", 0x5800, "vdd_l25", },
1943 { "l26", 0x5900, "vdd_l3_l24_l26", },
1944 { "l27", 0x5a00, "vdd_l6_l7_l8_l9_l27", },
1945 { "l28", 0x5b00, "vdd_l19_l20_l21_l22_l23_l28", },
1946 { "lvs1", 0x8000, "vdd_lvs1", },
1947 { }
1948};
1949
e92a4047
SB
1950static const struct spmi_regulator_data pm8841_regulators[] = {
1951 { "s1", 0x1400, "vdd_s1", },
1952 { "s2", 0x1700, "vdd_s2", NULL, 0x1c08 },
1953 { "s3", 0x1a00, "vdd_s3", },
1954 { "s4", 0x1d00, "vdd_s4", NULL, 0x1c08 },
1955 { "s5", 0x2000, "vdd_s5", NULL, 0x1c08 },
1956 { "s6", 0x2300, "vdd_s6", NULL, 0x1c08 },
1957 { "s7", 0x2600, "vdd_s7", NULL, 0x1c08 },
1958 { "s8", 0x2900, "vdd_s8", NULL, 0x1c08 },
1959 { }
1960};
1961
1962static const struct spmi_regulator_data pm8916_regulators[] = {
1963 { "s1", 0x1400, "vdd_s1", },
1964 { "s2", 0x1700, "vdd_s2", },
1965 { "s3", 0x1a00, "vdd_s3", },
1966 { "s4", 0x1d00, "vdd_s4", },
1967 { "l1", 0x4000, "vdd_l1_l3", },
1968 { "l2", 0x4100, "vdd_l2", },
1969 { "l3", 0x4200, "vdd_l1_l3", },
1970 { "l4", 0x4300, "vdd_l4_l5_l6", },
1971 { "l5", 0x4400, "vdd_l4_l5_l6", },
1972 { "l6", 0x4500, "vdd_l4_l5_l6", },
1973 { "l7", 0x4600, "vdd_l7", },
1974 { "l8", 0x4700, "vdd_l8_l11_l14_l15_l16", },
1975 { "l9", 0x4800, "vdd_l9_l10_l12_l13_l17_l18", },
1976 { "l10", 0x4900, "vdd_l9_l10_l12_l13_l17_l18", },
1977 { "l11", 0x4a00, "vdd_l8_l11_l14_l15_l16", },
1978 { "l12", 0x4b00, "vdd_l9_l10_l12_l13_l17_l18", },
1979 { "l13", 0x4c00, "vdd_l9_l10_l12_l13_l17_l18", },
1980 { "l14", 0x4d00, "vdd_l8_l11_l14_l15_l16", },
1981 { "l15", 0x4e00, "vdd_l8_l11_l14_l15_l16", },
1982 { "l16", 0x4f00, "vdd_l8_l11_l14_l15_l16", },
1983 { "l17", 0x5000, "vdd_l9_l10_l12_l13_l17_l18", },
1984 { "l18", 0x5100, "vdd_l9_l10_l12_l13_l17_l18", },
1985 { }
1986};
1987
e4ff1710
ADR
1988static const struct spmi_regulator_data pm8950_regulators[] = {
1989 { "s1", 0x1400, "vdd_s1", },
1990 { "s2", 0x1700, "vdd_s2", },
1991 { "s3", 0x1a00, "vdd_s3", },
1992 { "s4", 0x1d00, "vdd_s4", },
1993 { "s5", 0x2000, "vdd_s5", },
1994 { "s6", 0x2300, "vdd_s6", },
1995 { "l1", 0x4000, "vdd_l1_l19", },
1996 { "l2", 0x4100, "vdd_l2_l23", },
1997 { "l3", 0x4200, "vdd_l3", },
1998 { "l4", 0x4300, "vdd_l4_l5_l6_l7_l16", },
1999 { "l5", 0x4400, "vdd_l4_l5_l6_l7_l16", },
2000 { "l6", 0x4500, "vdd_l4_l5_l6_l7_l16", },
2001 { "l7", 0x4600, "vdd_l4_l5_l6_l7_l16", },
2002 { "l8", 0x4700, "vdd_l8_l11_l12_l17_l22", },
2003 { "l9", 0x4800, "vdd_l9_l10_l13_l14_l15_l18", },
2004 { "l10", 0x4900, "vdd_l9_l10_l13_l14_l15_l18", },
2005 { "l11", 0x4a00, "vdd_l8_l11_l12_l17_l22", },
2006 { "l12", 0x4b00, "vdd_l8_l11_l12_l17_l22", },
2007 { "l13", 0x4c00, "vdd_l9_l10_l13_l14_l15_l18", },
2008 { "l14", 0x4d00, "vdd_l9_l10_l13_l14_l15_l18", },
2009 { "l15", 0x4e00, "vdd_l9_l10_l13_l14_l15_l18", },
2010 { "l16", 0x4f00, "vdd_l4_l5_l6_l7_l16", },
2011 { "l17", 0x5000, "vdd_l8_l11_l12_l17_l22", },
2012 { "l18", 0x5100, "vdd_l9_l10_l13_l14_l15_l18", },
2013 { "l19", 0x5200, "vdd_l1_l19", },
2014 { "l20", 0x5300, "vdd_l20", },
2015 { "l21", 0x5400, "vdd_l21", },
2016 { "l22", 0x5500, "vdd_l8_l11_l12_l17_l22", },
2017 { "l23", 0x5600, "vdd_l2_l23", },
2018 { }
2019};
2020
50314e55
SB
2021static const struct spmi_regulator_data pm8994_regulators[] = {
2022 { "s1", 0x1400, "vdd_s1", },
2023 { "s2", 0x1700, "vdd_s2", },
2024 { "s3", 0x1a00, "vdd_s3", },
2025 { "s4", 0x1d00, "vdd_s4", },
2026 { "s5", 0x2000, "vdd_s5", },
2027 { "s6", 0x2300, "vdd_s6", },
2028 { "s7", 0x2600, "vdd_s7", },
2029 { "s8", 0x2900, "vdd_s8", },
2030 { "s9", 0x2c00, "vdd_s9", },
2031 { "s10", 0x2f00, "vdd_s10", },
2032 { "s11", 0x3200, "vdd_s11", },
2033 { "s12", 0x3500, "vdd_s12", },
2034 { "l1", 0x4000, "vdd_l1", },
2035 { "l2", 0x4100, "vdd_l2_l26_l28", },
2036 { "l3", 0x4200, "vdd_l3_l11", },
2037 { "l4", 0x4300, "vdd_l4_l27_l31", },
2038 { "l5", 0x4400, "vdd_l5_l7", },
2039 { "l6", 0x4500, "vdd_l6_l12_l32", },
2040 { "l7", 0x4600, "vdd_l5_l7", },
2041 { "l8", 0x4700, "vdd_l8_l16_l30", },
2042 { "l9", 0x4800, "vdd_l9_l10_l18_l22", },
2043 { "l10", 0x4900, "vdd_l9_l10_l18_l22", },
2044 { "l11", 0x4a00, "vdd_l3_l11", },
2045 { "l12", 0x4b00, "vdd_l6_l12_l32", },
2046 { "l13", 0x4c00, "vdd_l13_l19_l23_l24", },
2047 { "l14", 0x4d00, "vdd_l14_l15", },
2048 { "l15", 0x4e00, "vdd_l14_l15", },
2049 { "l16", 0x4f00, "vdd_l8_l16_l30", },
2050 { "l17", 0x5000, "vdd_l17_l29", },
2051 { "l18", 0x5100, "vdd_l9_l10_l18_l22", },
2052 { "l19", 0x5200, "vdd_l13_l19_l23_l24", },
2053 { "l20", 0x5300, "vdd_l20_l21", },
2054 { "l21", 0x5400, "vdd_l20_l21", },
2055 { "l22", 0x5500, "vdd_l9_l10_l18_l22", },
2056 { "l23", 0x5600, "vdd_l13_l19_l23_l24", },
2057 { "l24", 0x5700, "vdd_l13_l19_l23_l24", },
2058 { "l25", 0x5800, "vdd_l25", },
2059 { "l26", 0x5900, "vdd_l2_l26_l28", },
2060 { "l27", 0x5a00, "vdd_l4_l27_l31", },
2061 { "l28", 0x5b00, "vdd_l2_l26_l28", },
2062 { "l29", 0x5c00, "vdd_l17_l29", },
2063 { "l30", 0x5d00, "vdd_l8_l16_l30", },
2064 { "l31", 0x5e00, "vdd_l4_l27_l31", },
2065 { "l32", 0x5f00, "vdd_l6_l12_l32", },
2066 { "lvs1", 0x8000, "vdd_lvs_1_2", },
2067 { "lvs2", 0x8100, "vdd_lvs_1_2", },
2068 { }
2069};
2070
ca5cd8c9
RN
2071static const struct spmi_regulator_data pmi8994_regulators[] = {
2072 { "s1", 0x1400, "vdd_s1", },
2073 { "s2", 0x1700, "vdd_s2", },
2074 { "s3", 0x1a00, "vdd_s3", },
2075 { "l1", 0x4000, "vdd_l1", },
37164571 2076 { }
ca5cd8c9
RN
2077};
2078
0074c447
ADR
2079static const struct spmi_regulator_data pm660_regulators[] = {
2080 { "s1", 0x1400, "vdd_s1", },
2081 { "s2", 0x1700, "vdd_s2", },
2082 { "s3", 0x1a00, "vdd_s3", },
2083 { "s4", 0x1d00, "vdd_s3", },
2084 { "s5", 0x2000, "vdd_s5", },
2085 { "s6", 0x2300, "vdd_s6", },
2086 { "l1", 0x4000, "vdd_l1_l6_l7", },
2087 { "l2", 0x4100, "vdd_l2_l3", },
2088 { "l3", 0x4200, "vdd_l2_l3", },
2089 /* l4 is unaccessible on PM660 */
2090 { "l5", 0x4400, "vdd_l5", },
2091 { "l6", 0x4500, "vdd_l1_l6_l7", },
2092 { "l7", 0x4600, "vdd_l1_l6_l7", },
2093 { "l8", 0x4700, "vdd_l8_l9_l10_l11_l12_l13_l14", },
2094 { "l9", 0x4800, "vdd_l8_l9_l10_l11_l12_l13_l14", },
2095 { "l10", 0x4900, "vdd_l8_l9_l10_l11_l12_l13_l14", },
2096 { "l11", 0x4a00, "vdd_l8_l9_l10_l11_l12_l13_l14", },
2097 { "l12", 0x4b00, "vdd_l8_l9_l10_l11_l12_l13_l14", },
2098 { "l13", 0x4c00, "vdd_l8_l9_l10_l11_l12_l13_l14", },
2099 { "l14", 0x4d00, "vdd_l8_l9_l10_l11_l12_l13_l14", },
2100 { "l15", 0x4e00, "vdd_l15_l16_l17_l18_l19", },
2101 { "l16", 0x4f00, "vdd_l15_l16_l17_l18_l19", },
2102 { "l17", 0x5000, "vdd_l15_l16_l17_l18_l19", },
2103 { "l18", 0x5100, "vdd_l15_l16_l17_l18_l19", },
2104 { "l19", 0x5200, "vdd_l15_l16_l17_l18_l19", },
2105 { }
2106};
2107
2108static const struct spmi_regulator_data pm660l_regulators[] = {
2109 { "s1", 0x1400, "vdd_s1", },
2110 { "s2", 0x1700, "vdd_s2", },
2111 { "s3", 0x1a00, "vdd_s3", },
2112 { "s4", 0x1d00, "vdd_s4", },
2113 { "s5", 0x2000, "vdd_s5", },
2114 { "l1", 0x4000, "vdd_l1_l9_l10", },
2115 { "l2", 0x4100, "vdd_l2", },
2116 { "l3", 0x4200, "vdd_l3_l5_l7_l8", },
2117 { "l4", 0x4300, "vdd_l4_l6", },
2118 { "l5", 0x4400, "vdd_l3_l5_l7_l8", },
2119 { "l6", 0x4500, "vdd_l4_l6", },
2120 { "l7", 0x4600, "vdd_l3_l5_l7_l8", },
2121 { "l8", 0x4700, "vdd_l3_l5_l7_l8", },
2122 { "l9", 0x4800, "vdd_l1_l9_l10", },
2123 { "l10", 0x4900, "vdd_l1_l9_l10", },
2124 { }
2125};
2126
2127
2e36e140
ADR
2128static const struct spmi_regulator_data pm8004_regulators[] = {
2129 { "s2", 0x1700, "vdd_s2", },
2130 { "s5", 0x2000, "vdd_s5", },
2131 { }
2132};
2133
42ba89c8
JH
2134static const struct spmi_regulator_data pm8005_regulators[] = {
2135 { "s1", 0x1400, "vdd_s1", },
2136 { "s2", 0x1700, "vdd_s2", },
2137 { "s3", 0x1a00, "vdd_s3", },
2138 { "s4", 0x1d00, "vdd_s4", },
2139 { }
2140};
2141
34ceb6a6
RM
2142static const struct spmi_regulator_data pmp8074_regulators[] = {
2143 { "s1", 0x1400, "vdd_s1"},
2144 { "s2", 0x1700, "vdd_s2"},
2145 { "s3", 0x1a00, "vdd_s3"},
2146 { "s4", 0x1d00, "vdd_s4"},
2147 { "s5", 0x2000, "vdd_s5"},
2148 { "l1", 0x4000, "vdd_l1_l2"},
2149 { "l2", 0x4100, "vdd_l1_l2"},
2150 { "l3", 0x4200, "vdd_l3_l8"},
2151 { "l4", 0x4300, "vdd_l4"},
2152 { "l5", 0x4400, "vdd_l5_l6_l15"},
2153 { "l6", 0x4500, "vdd_l5_l6_l15"},
2154 { "l7", 0x4600, "vdd_l7"},
2155 { "l8", 0x4700, "vdd_l3_l8"},
2156 { "l9", 0x4800, "vdd_l9"},
2157 /* l10 is currently unsupported HT_P50 */
2158 { "l11", 0x4a00, "vdd_l10_l11_l12_l13"},
2159 { "l12", 0x4b00, "vdd_l10_l11_l12_l13"},
2160 { "l13", 0x4c00, "vdd_l10_l11_l12_l13"},
2161 { }
2162};
2163
0211f68e
JR
2164static const struct spmi_regulator_data pms405_regulators[] = {
2165 { "s3", 0x1a00, "vdd_s3"},
2166 { }
2167};
2168
e92a4047 2169static const struct of_device_id qcom_spmi_regulator_match[] = {
2e36e140 2170 { .compatible = "qcom,pm8004-regulators", .data = &pm8004_regulators },
42ba89c8 2171 { .compatible = "qcom,pm8005-regulators", .data = &pm8005_regulators },
f8843e5e 2172 { .compatible = "qcom,pm8226-regulators", .data = &pm8226_regulators },
e92a4047
SB
2173 { .compatible = "qcom,pm8841-regulators", .data = &pm8841_regulators },
2174 { .compatible = "qcom,pm8916-regulators", .data = &pm8916_regulators },
2175 { .compatible = "qcom,pm8941-regulators", .data = &pm8941_regulators },
e4ff1710 2176 { .compatible = "qcom,pm8950-regulators", .data = &pm8950_regulators },
50314e55 2177 { .compatible = "qcom,pm8994-regulators", .data = &pm8994_regulators },
ca5cd8c9 2178 { .compatible = "qcom,pmi8994-regulators", .data = &pmi8994_regulators },
0074c447
ADR
2179 { .compatible = "qcom,pm660-regulators", .data = &pm660_regulators },
2180 { .compatible = "qcom,pm660l-regulators", .data = &pm660l_regulators },
34ceb6a6 2181 { .compatible = "qcom,pmp8074-regulators", .data = &pmp8074_regulators },
0211f68e 2182 { .compatible = "qcom,pms405-regulators", .data = &pms405_regulators },
e92a4047
SB
2183 { }
2184};
2185MODULE_DEVICE_TABLE(of, qcom_spmi_regulator_match);
2186
2187static int qcom_spmi_regulator_probe(struct platform_device *pdev)
2188{
2189 const struct spmi_regulator_data *reg;
86f4ff7a 2190 const struct spmi_voltage_range *range;
e92a4047
SB
2191 const struct of_device_id *match;
2192 struct regulator_config config = { };
2193 struct regulator_dev *rdev;
2194 struct spmi_regulator *vreg;
2195 struct regmap *regmap;
2196 const char *name;
2197 struct device *dev = &pdev->dev;
0caecaa8 2198 struct device_node *node = pdev->dev.of_node;
fffe7f52
NC
2199 struct device_node *syscon, *reg_node;
2200 struct property *reg_prop;
0caecaa8 2201 int ret, lenp;
e92a4047
SB
2202 struct list_head *vreg_list;
2203
2204 vreg_list = devm_kzalloc(dev, sizeof(*vreg_list), GFP_KERNEL);
2205 if (!vreg_list)
2206 return -ENOMEM;
2207 INIT_LIST_HEAD(vreg_list);
2208 platform_set_drvdata(pdev, vreg_list);
2209
2210 regmap = dev_get_regmap(dev->parent, NULL);
2211 if (!regmap)
2212 return -ENODEV;
2213
2214 match = of_match_device(qcom_spmi_regulator_match, &pdev->dev);
2215 if (!match)
2216 return -ENODEV;
2217
0caecaa8
IL
2218 if (of_find_property(node, "qcom,saw-reg", &lenp)) {
2219 syscon = of_parse_phandle(node, "qcom,saw-reg", 0);
2220 saw_regmap = syscon_node_to_regmap(syscon);
2221 of_node_put(syscon);
85046a15 2222 if (IS_ERR(saw_regmap))
0caecaa8
IL
2223 dev_err(dev, "ERROR reading SAW regmap\n");
2224 }
2225
e92a4047 2226 for (reg = match->data; reg->name; reg++) {
0caecaa8 2227
fffe7f52
NC
2228 if (saw_regmap) {
2229 reg_node = of_get_child_by_name(node, reg->name);
2230 reg_prop = of_find_property(reg_node, "qcom,saw-slave",
2231 &lenp);
2232 of_node_put(reg_node);
2233 if (reg_prop)
2234 continue;
0caecaa8
IL
2235 }
2236
e92a4047
SB
2237 vreg = devm_kzalloc(dev, sizeof(*vreg), GFP_KERNEL);
2238 if (!vreg)
2239 return -ENOMEM;
2240
2241 vreg->dev = dev;
2242 vreg->base = reg->base;
2243 vreg->regmap = regmap;
e92a4047
SB
2244 if (reg->ocp) {
2245 vreg->ocp_irq = platform_get_irq_byname(pdev, reg->ocp);
b6688015
MV
2246 if (vreg->ocp_irq < 0)
2247 return vreg->ocp_irq;
e92a4047 2248 }
e92a4047
SB
2249 vreg->desc.id = -1;
2250 vreg->desc.owner = THIS_MODULE;
2251 vreg->desc.type = REGULATOR_VOLTAGE;
9d485332
AL
2252 vreg->desc.enable_reg = reg->base + SPMI_COMMON_REG_ENABLE;
2253 vreg->desc.enable_mask = SPMI_COMMON_ENABLE_MASK;
2254 vreg->desc.enable_val = SPMI_COMMON_ENABLE;
e92a4047
SB
2255 vreg->desc.name = name = reg->name;
2256 vreg->desc.supply_name = reg->supply;
2257 vreg->desc.of_match = reg->name;
2258 vreg->desc.of_parse_cb = spmi_regulator_of_parse;
2259 vreg->desc.of_map_mode = spmi_regulator_of_map_mode;
2260
2261 ret = spmi_regulator_match(vreg, reg->force_type);
2262 if (ret)
6ee5c044 2263 continue;
e92a4047 2264
fffe7f52
NC
2265 if (saw_regmap) {
2266 reg_node = of_get_child_by_name(node, reg->name);
2267 reg_prop = of_find_property(reg_node, "qcom,saw-leader",
2268 &lenp);
2269 of_node_put(reg_node);
2270 if (reg_prop) {
2271 spmi_saw_ops = *(vreg->desc.ops);
2272 spmi_saw_ops.set_voltage_sel =
2273 spmi_regulator_saw_set_voltage;
2274 vreg->desc.ops = &spmi_saw_ops;
2275 }
0caecaa8
IL
2276 }
2277
b01d1823 2278 if (vreg->set_points && vreg->set_points->count == 1) {
86f4ff7a
JRO
2279 /* since there is only one range */
2280 range = vreg->set_points->range;
2281 vreg->desc.uV_step = range->step_uV;
2282 }
2283
e92a4047
SB
2284 config.dev = dev;
2285 config.driver_data = vreg;
9d485332 2286 config.regmap = regmap;
e92a4047
SB
2287 rdev = devm_regulator_register(dev, &vreg->desc, &config);
2288 if (IS_ERR(rdev)) {
2289 dev_err(dev, "failed to register %s\n", name);
b6688015 2290 return PTR_ERR(rdev);
e92a4047
SB
2291 }
2292
2293 INIT_LIST_HEAD(&vreg->node);
2294 list_add(&vreg->node, vreg_list);
2295 }
2296
2297 return 0;
e92a4047
SB
2298}
2299
2300static struct platform_driver qcom_spmi_regulator_driver = {
2301 .driver = {
2302 .name = "qcom-spmi-regulator",
2303 .of_match_table = qcom_spmi_regulator_match,
2304 },
2305 .probe = qcom_spmi_regulator_probe,
e92a4047
SB
2306};
2307module_platform_driver(qcom_spmi_regulator_driver);
2308
2309MODULE_DESCRIPTION("Qualcomm SPMI PMIC regulator driver");
2310MODULE_LICENSE("GPL v2");
2311MODULE_ALIAS("platform:qcom-spmi-regulator");