Blame view

drivers/regulator/act8865-regulator.c 21.5 KB
c942fddf8   Thomas Gleixner   treewide: Replace...
1
  // SPDX-License-Identifier: GPL-2.0-or-later
33036f48d   Wenyou Yang   regulator: act886...
2
  /*
50a03e35b   Beniamino Galvani   regulator: act886...
3
4
5
   * act8865-regulator.c - Voltage regulation for active-semi ACT88xx PMUs
   *
   * http://www.active-semi.com/products/power-management-units/act88xx/
33036f48d   Wenyou Yang   regulator: act886...
6
7
   *
   * Copyright (C) 2013 Atmel Corporation
33036f48d   Wenyou Yang   regulator: act886...
8
9
10
11
12
13
14
15
16
17
18
   */
  
  #include <linux/module.h>
  #include <linux/init.h>
  #include <linux/i2c.h>
  #include <linux/err.h>
  #include <linux/platform_device.h>
  #include <linux/regulator/driver.h>
  #include <linux/regulator/act8865.h>
  #include <linux/of.h>
  #include <linux/of_device.h>
2d09a79bf   Maarten ter Huurne   regulator: act886...
19
  #include <linux/power_supply.h>
33036f48d   Wenyou Yang   regulator: act886...
20
21
  #include <linux/regulator/of_regulator.h>
  #include <linux/regmap.h>
955741a51   Raag Jadav   regulator: act886...
22
  #include <dt-bindings/regulator/active-semi,8865-regulator.h>
33036f48d   Wenyou Yang   regulator: act886...
23
24
  
  /*
df3a950e4   Zubair Lutfullah Kakakhel   regulator: act886...
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
   * ACT8600 Global Register Map.
   */
  #define ACT8600_SYS_MODE	0x00
  #define ACT8600_SYS_CTRL	0x01
  #define ACT8600_DCDC1_VSET	0x10
  #define ACT8600_DCDC1_CTRL	0x12
  #define ACT8600_DCDC2_VSET	0x20
  #define ACT8600_DCDC2_CTRL	0x22
  #define ACT8600_DCDC3_VSET	0x30
  #define ACT8600_DCDC3_CTRL	0x32
  #define ACT8600_SUDCDC4_VSET	0x40
  #define ACT8600_SUDCDC4_CTRL	0x41
  #define ACT8600_LDO5_VSET	0x50
  #define ACT8600_LDO5_CTRL	0x51
  #define ACT8600_LDO6_VSET	0x60
  #define ACT8600_LDO6_CTRL	0x61
  #define ACT8600_LDO7_VSET	0x70
  #define ACT8600_LDO7_CTRL	0x71
  #define ACT8600_LDO8_VSET	0x80
  #define ACT8600_LDO8_CTRL	0x81
  #define ACT8600_LDO910_CTRL	0x91
  #define ACT8600_APCH0		0xA1
  #define ACT8600_APCH1		0xA8
  #define ACT8600_APCH2		0xA9
  #define ACT8600_APCH_STAT	0xAA
  #define ACT8600_OTG0		0xB0
  #define ACT8600_OTG1		0xB2
  
  /*
ac0c0ea8b   Beniamino Galvani   regulator: act886...
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
   * ACT8846 Global Register Map.
   */
  #define	ACT8846_SYS0		0x00
  #define	ACT8846_SYS1		0x01
  #define	ACT8846_REG1_VSET	0x10
  #define	ACT8846_REG1_CTRL	0x12
  #define	ACT8846_REG2_VSET0	0x20
  #define	ACT8846_REG2_VSET1	0x21
  #define	ACT8846_REG2_CTRL	0x22
  #define	ACT8846_REG3_VSET0	0x30
  #define	ACT8846_REG3_VSET1	0x31
  #define	ACT8846_REG3_CTRL	0x32
  #define	ACT8846_REG4_VSET0	0x40
  #define	ACT8846_REG4_VSET1	0x41
  #define	ACT8846_REG4_CTRL	0x42
  #define	ACT8846_REG5_VSET	0x50
  #define	ACT8846_REG5_CTRL	0x51
  #define	ACT8846_REG6_VSET	0x58
  #define	ACT8846_REG6_CTRL	0x59
  #define	ACT8846_REG7_VSET	0x60
  #define	ACT8846_REG7_CTRL	0x61
  #define	ACT8846_REG8_VSET	0x68
  #define	ACT8846_REG8_CTRL	0x69
  #define	ACT8846_REG9_VSET	0x70
  #define	ACT8846_REG9_CTRL	0x71
  #define	ACT8846_REG10_VSET	0x80
  #define	ACT8846_REG10_CTRL	0x81
  #define	ACT8846_REG11_VSET	0x90
  #define	ACT8846_REG11_CTRL	0x91
  #define	ACT8846_REG12_VSET	0xa0
  #define	ACT8846_REG12_CTRL	0xa1
  #define	ACT8846_REG13_CTRL	0xb1
2b17fa282   Romain Perier   regulator: act886...
86
87
  #define	ACT8846_GLB_OFF_CTRL	0xc3
  #define	ACT8846_OFF_SYSMASK	0x18
ac0c0ea8b   Beniamino Galvani   regulator: act886...
88
89
  
  /*
33036f48d   Wenyou Yang   regulator: act886...
90
91
92
93
   * ACT8865 Global Register Map.
   */
  #define	ACT8865_SYS_MODE	0x00
  #define	ACT8865_SYS_CTRL	0x01
955741a51   Raag Jadav   regulator: act886...
94
  #define	ACT8865_SYS_UNLK_REGS	0x0b
33036f48d   Wenyou Yang   regulator: act886...
95
96
97
  #define	ACT8865_DCDC1_VSET1	0x20
  #define	ACT8865_DCDC1_VSET2	0x21
  #define	ACT8865_DCDC1_CTRL	0x22
955741a51   Raag Jadav   regulator: act886...
98
  #define	ACT8865_DCDC1_SUS	0x24
33036f48d   Wenyou Yang   regulator: act886...
99
100
101
  #define	ACT8865_DCDC2_VSET1	0x30
  #define	ACT8865_DCDC2_VSET2	0x31
  #define	ACT8865_DCDC2_CTRL	0x32
955741a51   Raag Jadav   regulator: act886...
102
  #define	ACT8865_DCDC2_SUS	0x34
33036f48d   Wenyou Yang   regulator: act886...
103
104
105
  #define	ACT8865_DCDC3_VSET1	0x40
  #define	ACT8865_DCDC3_VSET2	0x41
  #define	ACT8865_DCDC3_CTRL	0x42
955741a51   Raag Jadav   regulator: act886...
106
  #define	ACT8865_DCDC3_SUS	0x44
33036f48d   Wenyou Yang   regulator: act886...
107
108
  #define	ACT8865_LDO1_VSET	0x50
  #define	ACT8865_LDO1_CTRL	0x51
955741a51   Raag Jadav   regulator: act886...
109
  #define	ACT8865_LDO1_SUS	0x52
33036f48d   Wenyou Yang   regulator: act886...
110
111
  #define	ACT8865_LDO2_VSET	0x54
  #define	ACT8865_LDO2_CTRL	0x55
955741a51   Raag Jadav   regulator: act886...
112
  #define	ACT8865_LDO2_SUS	0x56
33036f48d   Wenyou Yang   regulator: act886...
113
114
  #define	ACT8865_LDO3_VSET	0x60
  #define	ACT8865_LDO3_CTRL	0x61
955741a51   Raag Jadav   regulator: act886...
115
  #define	ACT8865_LDO3_SUS	0x62
33036f48d   Wenyou Yang   regulator: act886...
116
117
  #define	ACT8865_LDO4_VSET	0x64
  #define	ACT8865_LDO4_CTRL	0x65
955741a51   Raag Jadav   regulator: act886...
118
  #define	ACT8865_LDO4_SUS	0x66
2b17fa282   Romain Perier   regulator: act886...
119
  #define	ACT8865_MSTROFF		0x20
33036f48d   Wenyou Yang   regulator: act886...
120
121
122
123
124
  
  /*
   * Field Definitions.
   */
  #define	ACT8865_ENA		0x80	/* ON - [7] */
a5f888c53   Michał Mirosław   regulator: act886...
125
  #define	ACT8865_DIS		0x40	/* DIS - [6] */
33036f48d   Wenyou Yang   regulator: act886...
126
  #define	ACT8865_VSEL_MASK	0x3F	/* VSET - [5:0] */
df3a950e4   Zubair Lutfullah Kakakhel   regulator: act886...
127
128
129
  
  #define ACT8600_LDO10_ENA		0x40	/* ON - [6] */
  #define ACT8600_SUDCDC_VSEL_MASK	0xFF	/* SUDCDC VSET - [7:0] */
2d09a79bf   Maarten ter Huurne   regulator: act886...
130
131
132
133
  #define ACT8600_APCH_CHG_ACIN		BIT(7)
  #define ACT8600_APCH_CHG_USB		BIT(6)
  #define ACT8600_APCH_CSTATE0		BIT(5)
  #define ACT8600_APCH_CSTATE1		BIT(4)
33036f48d   Wenyou Yang   regulator: act886...
134
135
136
137
  /*
   * ACT8865 voltage number
   */
  #define	ACT8865_VOLTAGE_NUM	64
f01a7beb6   Axel Lin   regulator: act886...
138
  #define ACT8600_SUDCDC_VOLTAGE_NUM	256
33036f48d   Wenyou Yang   regulator: act886...
139
140
  
  struct act8865 {
33036f48d   Wenyou Yang   regulator: act886...
141
  	struct regmap *regmap;
2b17fa282   Romain Perier   regulator: act886...
142
143
  	int off_reg;
  	int off_mask;
33036f48d   Wenyou Yang   regulator: act886...
144
  };
c5c9c2df4   Maarten ter Huurne   regulator: act886...
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
  static const struct regmap_range act8600_reg_ranges[] = {
  	regmap_reg_range(0x00, 0x01),
  	regmap_reg_range(0x10, 0x10),
  	regmap_reg_range(0x12, 0x12),
  	regmap_reg_range(0x20, 0x20),
  	regmap_reg_range(0x22, 0x22),
  	regmap_reg_range(0x30, 0x30),
  	regmap_reg_range(0x32, 0x32),
  	regmap_reg_range(0x40, 0x41),
  	regmap_reg_range(0x50, 0x51),
  	regmap_reg_range(0x60, 0x61),
  	regmap_reg_range(0x70, 0x71),
  	regmap_reg_range(0x80, 0x81),
  	regmap_reg_range(0x91, 0x91),
  	regmap_reg_range(0xA1, 0xA1),
  	regmap_reg_range(0xA8, 0xAA),
  	regmap_reg_range(0xB0, 0xB0),
  	regmap_reg_range(0xB2, 0xB2),
  	regmap_reg_range(0xC1, 0xC1),
  };
  
  static const struct regmap_range act8600_reg_ro_ranges[] = {
  	regmap_reg_range(0xAA, 0xAA),
  	regmap_reg_range(0xC1, 0xC1),
  };
  
  static const struct regmap_range act8600_reg_volatile_ranges[] = {
  	regmap_reg_range(0x00, 0x01),
  	regmap_reg_range(0x12, 0x12),
  	regmap_reg_range(0x22, 0x22),
  	regmap_reg_range(0x32, 0x32),
  	regmap_reg_range(0x41, 0x41),
  	regmap_reg_range(0x51, 0x51),
  	regmap_reg_range(0x61, 0x61),
  	regmap_reg_range(0x71, 0x71),
  	regmap_reg_range(0x81, 0x81),
  	regmap_reg_range(0xA8, 0xA8),
  	regmap_reg_range(0xAA, 0xAA),
  	regmap_reg_range(0xB0, 0xB0),
  	regmap_reg_range(0xC1, 0xC1),
  };
  
  static const struct regmap_access_table act8600_write_ranges_table = {
  	.yes_ranges	= act8600_reg_ranges,
  	.n_yes_ranges	= ARRAY_SIZE(act8600_reg_ranges),
  	.no_ranges	= act8600_reg_ro_ranges,
  	.n_no_ranges	= ARRAY_SIZE(act8600_reg_ro_ranges),
  };
  
  static const struct regmap_access_table act8600_read_ranges_table = {
  	.yes_ranges	= act8600_reg_ranges,
  	.n_yes_ranges	= ARRAY_SIZE(act8600_reg_ranges),
  };
  
  static const struct regmap_access_table act8600_volatile_ranges_table = {
  	.yes_ranges	= act8600_reg_volatile_ranges,
  	.n_yes_ranges	= ARRAY_SIZE(act8600_reg_volatile_ranges),
  };
  
  static const struct regmap_config act8600_regmap_config = {
  	.reg_bits = 8,
  	.val_bits = 8,
  	.max_register = 0xFF,
  	.wr_table = &act8600_write_ranges_table,
  	.rd_table = &act8600_read_ranges_table,
  	.volatile_table = &act8600_volatile_ranges_table,
  };
33036f48d   Wenyou Yang   regulator: act886...
212
213
214
215
  static const struct regmap_config act8865_regmap_config = {
  	.reg_bits = 8,
  	.val_bits = 8,
  };
60ab7f415   Matti Vaittinen   regulator: use li...
216
  static const struct linear_range act8865_voltage_ranges[] = {
33036f48d   Wenyou Yang   regulator: act886...
217
218
219
220
  	REGULATOR_LINEAR_RANGE(600000, 0, 23, 25000),
  	REGULATOR_LINEAR_RANGE(1200000, 24, 47, 50000),
  	REGULATOR_LINEAR_RANGE(2400000, 48, 63, 100000),
  };
60ab7f415   Matti Vaittinen   regulator: use li...
221
  static const struct linear_range act8600_sudcdc_voltage_ranges[] = {
df3a950e4   Zubair Lutfullah Kakakhel   regulator: act886...
222
223
224
  	REGULATOR_LINEAR_RANGE(3000000, 0, 63, 0),
  	REGULATOR_LINEAR_RANGE(3000000, 64, 159, 100000),
  	REGULATOR_LINEAR_RANGE(12600000, 160, 191, 200000),
f01a7beb6   Axel Lin   regulator: act886...
225
226
  	REGULATOR_LINEAR_RANGE(19000000, 192, 247, 400000),
  	REGULATOR_LINEAR_RANGE(41400000, 248, 255, 0),
df3a950e4   Zubair Lutfullah Kakakhel   regulator: act886...
227
  };
955741a51   Raag Jadav   regulator: act886...
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
  static int act8865_set_suspend_state(struct regulator_dev *rdev, bool enable)
  {
  	struct regmap *regmap = rdev->regmap;
  	int id = rdev->desc->id, reg, val;
  
  	switch (id) {
  	case ACT8865_ID_DCDC1:
  		reg = ACT8865_DCDC1_SUS;
  		val = 0xa8;
  		break;
  	case ACT8865_ID_DCDC2:
  		reg = ACT8865_DCDC2_SUS;
  		val = 0xa8;
  		break;
  	case ACT8865_ID_DCDC3:
  		reg = ACT8865_DCDC3_SUS;
  		val = 0xa8;
  		break;
  	case ACT8865_ID_LDO1:
  		reg = ACT8865_LDO1_SUS;
  		val = 0xe8;
  		break;
  	case ACT8865_ID_LDO2:
  		reg = ACT8865_LDO2_SUS;
  		val = 0xe8;
  		break;
  	case ACT8865_ID_LDO3:
  		reg = ACT8865_LDO3_SUS;
  		val = 0xe8;
  		break;
  	case ACT8865_ID_LDO4:
  		reg = ACT8865_LDO4_SUS;
  		val = 0xe8;
  		break;
  	default:
  		return -EINVAL;
  	}
  
  	if (enable)
  		val |= BIT(4);
  
  	/*
  	 * Ask the PMIC to enable/disable this output when entering hibernate
  	 * mode.
  	 */
  	return regmap_write(regmap, reg, val);
  }
  
  static int act8865_set_suspend_enable(struct regulator_dev *rdev)
  {
  	return act8865_set_suspend_state(rdev, true);
  }
  
  static int act8865_set_suspend_disable(struct regulator_dev *rdev)
  {
  	return act8865_set_suspend_state(rdev, false);
  }
  
  static unsigned int act8865_of_map_mode(unsigned int mode)
  {
  	switch (mode) {
  	case ACT8865_REGULATOR_MODE_FIXED:
  		return REGULATOR_MODE_FAST;
  	case ACT8865_REGULATOR_MODE_NORMAL:
  		return REGULATOR_MODE_NORMAL;
  	case ACT8865_REGULATOR_MODE_LOWPOWER:
  		return REGULATOR_MODE_STANDBY;
  	default:
  		return REGULATOR_MODE_INVALID;
  	}
  }
  
  static int act8865_set_mode(struct regulator_dev *rdev, unsigned int mode)
  {
  	struct regmap *regmap = rdev->regmap;
  	int id = rdev_get_id(rdev);
  	int reg, val = 0;
  
  	switch (id) {
  	case ACT8865_ID_DCDC1:
  		reg = ACT8865_DCDC1_CTRL;
  		break;
  	case ACT8865_ID_DCDC2:
  		reg = ACT8865_DCDC2_CTRL;
  		break;
  	case ACT8865_ID_DCDC3:
  		reg = ACT8865_DCDC3_CTRL;
  		break;
  	case ACT8865_ID_LDO1:
  		reg = ACT8865_LDO1_CTRL;
  		break;
  	case ACT8865_ID_LDO2:
  		reg = ACT8865_LDO2_CTRL;
  		break;
  	case ACT8865_ID_LDO3:
  		reg = ACT8865_LDO3_CTRL;
  		break;
  	case ACT8865_ID_LDO4:
  		reg = ACT8865_LDO4_CTRL;
  		break;
  	default:
  		return -EINVAL;
  	}
  
  	switch (mode) {
  	case REGULATOR_MODE_FAST:
  	case REGULATOR_MODE_NORMAL:
  		if (id <= ACT8865_ID_DCDC3)
  			val = BIT(5);
  		break;
  	case REGULATOR_MODE_STANDBY:
  		if (id > ACT8865_ID_DCDC3)
  			val = BIT(5);
  		break;
  	default:
  		return -EINVAL;
  	}
  
  	return regmap_update_bits(regmap, reg, BIT(5), val);
  }
  
  static unsigned int act8865_get_mode(struct regulator_dev *rdev)
  {
  	struct regmap *regmap = rdev->regmap;
  	int id = rdev_get_id(rdev);
  	int reg, ret, val = 0;
  
  	switch (id) {
  	case ACT8865_ID_DCDC1:
  		reg = ACT8865_DCDC1_CTRL;
  		break;
  	case ACT8865_ID_DCDC2:
  		reg = ACT8865_DCDC2_CTRL;
  		break;
  	case ACT8865_ID_DCDC3:
  		reg = ACT8865_DCDC3_CTRL;
  		break;
  	case ACT8865_ID_LDO1:
  		reg = ACT8865_LDO1_CTRL;
  		break;
  	case ACT8865_ID_LDO2:
  		reg = ACT8865_LDO2_CTRL;
  		break;
  	case ACT8865_ID_LDO3:
  		reg = ACT8865_LDO3_CTRL;
  		break;
  	case ACT8865_ID_LDO4:
  		reg = ACT8865_LDO4_CTRL;
  		break;
  	default:
  		return -EINVAL;
  	}
  
  	ret = regmap_read(regmap, reg, &val);
  	if (ret)
  		return ret;
  
  	if (id <= ACT8865_ID_DCDC3 && (val & BIT(5)))
  		return REGULATOR_MODE_FAST;
  	else if	(id > ACT8865_ID_DCDC3 && !(val & BIT(5)))
  		return REGULATOR_MODE_NORMAL;
  	else
  		return REGULATOR_MODE_STANDBY;
  }
7cae255d2   Axel Lin   regulator: act886...
392
  static const struct regulator_ops act8865_ops = {
33036f48d   Wenyou Yang   regulator: act886...
393
394
395
396
397
398
  	.list_voltage		= regulator_list_voltage_linear_range,
  	.map_voltage		= regulator_map_voltage_linear_range,
  	.get_voltage_sel	= regulator_get_voltage_sel_regmap,
  	.set_voltage_sel	= regulator_set_voltage_sel_regmap,
  	.enable			= regulator_enable_regmap,
  	.disable		= regulator_disable_regmap,
955741a51   Raag Jadav   regulator: act886...
399
400
  	.set_mode		= act8865_set_mode,
  	.get_mode		= act8865_get_mode,
33036f48d   Wenyou Yang   regulator: act886...
401
  	.is_enabled		= regulator_is_enabled_regmap,
955741a51   Raag Jadav   regulator: act886...
402
403
  	.set_suspend_enable	= act8865_set_suspend_enable,
  	.set_suspend_disable	= act8865_set_suspend_disable,
33036f48d   Wenyou Yang   regulator: act886...
404
  };
a5f888c53   Michał Mirosław   regulator: act886...
405
406
407
408
409
410
411
  static const struct regulator_ops act8865_ldo_ops = {
  	.list_voltage		= regulator_list_voltage_linear_range,
  	.map_voltage		= regulator_map_voltage_linear_range,
  	.get_voltage_sel	= regulator_get_voltage_sel_regmap,
  	.set_voltage_sel	= regulator_set_voltage_sel_regmap,
  	.enable			= regulator_enable_regmap,
  	.disable		= regulator_disable_regmap,
955741a51   Raag Jadav   regulator: act886...
412
413
  	.set_mode		= act8865_set_mode,
  	.get_mode		= act8865_get_mode,
a5f888c53   Michał Mirosław   regulator: act886...
414
  	.is_enabled		= regulator_is_enabled_regmap,
955741a51   Raag Jadav   regulator: act886...
415
416
  	.set_suspend_enable	= act8865_set_suspend_enable,
  	.set_suspend_disable	= act8865_set_suspend_disable,
a5f888c53   Michał Mirosław   regulator: act886...
417
418
  	.set_pull_down		= regulator_set_pull_down_regmap,
  };
cd81a91d0   Michał Mirosław   regulator: act886...
419
  static const struct regulator_ops act8865_fixed_ldo_ops = {
df3a950e4   Zubair Lutfullah Kakakhel   regulator: act886...
420
421
422
423
  	.enable			= regulator_enable_regmap,
  	.disable		= regulator_disable_regmap,
  	.is_enabled		= regulator_is_enabled_regmap,
  };
a5f888c53   Michał Mirosław   regulator: act886...
424
  #define ACT88xx_REG_(_name, _family, _id, _vsel_reg, _supply, _ops)	\
50a03e35b   Beniamino Galvani   regulator: act886...
425
426
  	[_family##_ID_##_id] = {					\
  		.name			= _name,			\
253c9c79a   Axel Lin   regulator: act886...
427
  		.of_match		= of_match_ptr(_name),		\
955741a51   Raag Jadav   regulator: act886...
428
  		.of_map_mode		= act8865_of_map_mode,		\
253c9c79a   Axel Lin   regulator: act886...
429
  		.regulators_node	= of_match_ptr("regulators"),	\
c8b263cc0   Heiko Stuebner   regulator: act886...
430
  		.supply_name		= _supply,			\
50a03e35b   Beniamino Galvani   regulator: act886...
431
432
  		.id			= _family##_ID_##_id,		\
  		.type			= REGULATOR_VOLTAGE,		\
a5f888c53   Michał Mirosław   regulator: act886...
433
  		.ops			= _ops,				\
50a03e35b   Beniamino Galvani   regulator: act886...
434
435
436
437
438
439
440
  		.n_voltages		= ACT8865_VOLTAGE_NUM,		\
  		.linear_ranges		= act8865_voltage_ranges,	\
  		.n_linear_ranges	= ARRAY_SIZE(act8865_voltage_ranges), \
  		.vsel_reg		= _family##_##_id##_##_vsel_reg, \
  		.vsel_mask		= ACT8865_VSEL_MASK,		\
  		.enable_reg		= _family##_##_id##_CTRL,	\
  		.enable_mask		= ACT8865_ENA,			\
a5f888c53   Michał Mirosław   regulator: act886...
441
442
  		.pull_down_reg		= _family##_##_id##_CTRL,	\
  		.pull_down_mask		= ACT8865_DIS,			\
50a03e35b   Beniamino Galvani   regulator: act886...
443
444
  		.owner			= THIS_MODULE,			\
  	}
a5f888c53   Michał Mirosław   regulator: act886...
445
446
447
448
449
  #define ACT88xx_REG(_name, _family, _id, _vsel_reg, _supply) \
  	ACT88xx_REG_(_name, _family, _id, _vsel_reg, _supply, &act8865_ops)
  
  #define ACT88xx_LDO(_name, _family, _id, _vsel_reg, _supply) \
  	ACT88xx_REG_(_name, _family, _id, _vsel_reg, _supply, &act8865_ldo_ops)
df3a950e4   Zubair Lutfullah Kakakhel   regulator: act886...
450
  static const struct regulator_desc act8600_regulators[] = {
c8b263cc0   Heiko Stuebner   regulator: act886...
451
452
453
  	ACT88xx_REG("DCDC1", ACT8600, DCDC1, VSET, "vp1"),
  	ACT88xx_REG("DCDC2", ACT8600, DCDC2, VSET, "vp2"),
  	ACT88xx_REG("DCDC3", ACT8600, DCDC3, VSET, "vp3"),
df3a950e4   Zubair Lutfullah Kakakhel   regulator: act886...
454
455
  	{
  		.name = "SUDCDC_REG4",
253c9c79a   Axel Lin   regulator: act886...
456
457
  		.of_match = of_match_ptr("SUDCDC_REG4"),
  		.regulators_node = of_match_ptr("regulators"),
df3a950e4   Zubair Lutfullah Kakakhel   regulator: act886...
458
459
460
461
462
463
464
465
466
467
468
469
  		.id = ACT8600_ID_SUDCDC4,
  		.ops = &act8865_ops,
  		.type = REGULATOR_VOLTAGE,
  		.n_voltages = ACT8600_SUDCDC_VOLTAGE_NUM,
  		.linear_ranges = act8600_sudcdc_voltage_ranges,
  		.n_linear_ranges = ARRAY_SIZE(act8600_sudcdc_voltage_ranges),
  		.vsel_reg = ACT8600_SUDCDC4_VSET,
  		.vsel_mask = ACT8600_SUDCDC_VSEL_MASK,
  		.enable_reg = ACT8600_SUDCDC4_CTRL,
  		.enable_mask = ACT8865_ENA,
  		.owner = THIS_MODULE,
  	},
c8b263cc0   Heiko Stuebner   regulator: act886...
470
471
472
473
  	ACT88xx_REG("LDO5", ACT8600, LDO5, VSET, "inl"),
  	ACT88xx_REG("LDO6", ACT8600, LDO6, VSET, "inl"),
  	ACT88xx_REG("LDO7", ACT8600, LDO7, VSET, "inl"),
  	ACT88xx_REG("LDO8", ACT8600, LDO8, VSET, "inl"),
df3a950e4   Zubair Lutfullah Kakakhel   regulator: act886...
474
475
  	{
  		.name = "LDO_REG9",
253c9c79a   Axel Lin   regulator: act886...
476
477
  		.of_match = of_match_ptr("LDO_REG9"),
  		.regulators_node = of_match_ptr("regulators"),
df3a950e4   Zubair Lutfullah Kakakhel   regulator: act886...
478
  		.id = ACT8600_ID_LDO9,
cd81a91d0   Michał Mirosław   regulator: act886...
479
  		.ops = &act8865_fixed_ldo_ops,
df3a950e4   Zubair Lutfullah Kakakhel   regulator: act886...
480
481
  		.type = REGULATOR_VOLTAGE,
  		.n_voltages = 1,
79b5d0266   Maarten ter Huurne   regulator: act886...
482
  		.fixed_uV = 3300000,
df3a950e4   Zubair Lutfullah Kakakhel   regulator: act886...
483
484
485
486
487
488
  		.enable_reg = ACT8600_LDO910_CTRL,
  		.enable_mask = ACT8865_ENA,
  		.owner = THIS_MODULE,
  	},
  	{
  		.name = "LDO_REG10",
253c9c79a   Axel Lin   regulator: act886...
489
490
  		.of_match = of_match_ptr("LDO_REG10"),
  		.regulators_node = of_match_ptr("regulators"),
df3a950e4   Zubair Lutfullah Kakakhel   regulator: act886...
491
  		.id = ACT8600_ID_LDO10,
cd81a91d0   Michał Mirosław   regulator: act886...
492
  		.ops = &act8865_fixed_ldo_ops,
df3a950e4   Zubair Lutfullah Kakakhel   regulator: act886...
493
494
495
496
497
498
499
500
  		.type = REGULATOR_VOLTAGE,
  		.n_voltages = 1,
  		.fixed_uV = 1200000,
  		.enable_reg = ACT8600_LDO910_CTRL,
  		.enable_mask = ACT8600_LDO10_ENA,
  		.owner = THIS_MODULE,
  	},
  };
ac0c0ea8b   Beniamino Galvani   regulator: act886...
501
  static const struct regulator_desc act8846_regulators[] = {
c8b263cc0   Heiko Stuebner   regulator: act886...
502
503
504
505
506
507
508
509
510
511
512
513
  	ACT88xx_REG("REG1", ACT8846, REG1, VSET, "vp1"),
  	ACT88xx_REG("REG2", ACT8846, REG2, VSET0, "vp2"),
  	ACT88xx_REG("REG3", ACT8846, REG3, VSET0, "vp3"),
  	ACT88xx_REG("REG4", ACT8846, REG4, VSET0, "vp4"),
  	ACT88xx_REG("REG5", ACT8846, REG5, VSET, "inl1"),
  	ACT88xx_REG("REG6", ACT8846, REG6, VSET, "inl1"),
  	ACT88xx_REG("REG7", ACT8846, REG7, VSET, "inl1"),
  	ACT88xx_REG("REG8", ACT8846, REG8, VSET, "inl2"),
  	ACT88xx_REG("REG9", ACT8846, REG9, VSET, "inl2"),
  	ACT88xx_REG("REG10", ACT8846, REG10, VSET, "inl3"),
  	ACT88xx_REG("REG11", ACT8846, REG11, VSET, "inl3"),
  	ACT88xx_REG("REG12", ACT8846, REG12, VSET, "inl3"),
ac0c0ea8b   Beniamino Galvani   regulator: act886...
514
  };
50a03e35b   Beniamino Galvani   regulator: act886...
515
  static const struct regulator_desc act8865_regulators[] = {
c8b263cc0   Heiko Stuebner   regulator: act886...
516
517
518
  	ACT88xx_REG("DCDC_REG1", ACT8865, DCDC1, VSET1, "vp1"),
  	ACT88xx_REG("DCDC_REG2", ACT8865, DCDC2, VSET1, "vp2"),
  	ACT88xx_REG("DCDC_REG3", ACT8865, DCDC3, VSET1, "vp3"),
a5f888c53   Michał Mirosław   regulator: act886...
519
520
521
522
  	ACT88xx_LDO("LDO_REG1", ACT8865, LDO1, VSET, "inl45"),
  	ACT88xx_LDO("LDO_REG2", ACT8865, LDO2, VSET, "inl45"),
  	ACT88xx_LDO("LDO_REG3", ACT8865, LDO3, VSET, "inl67"),
  	ACT88xx_LDO("LDO_REG4", ACT8865, LDO4, VSET, "inl67"),
33036f48d   Wenyou Yang   regulator: act886...
523
  };
c86dc03e5   Wenyou Yang   regulator: act886...
524
525
526
527
  static const struct regulator_desc act8865_alt_regulators[] = {
  	ACT88xx_REG("DCDC_REG1", ACT8865, DCDC1, VSET2, "vp1"),
  	ACT88xx_REG("DCDC_REG2", ACT8865, DCDC2, VSET2, "vp2"),
  	ACT88xx_REG("DCDC_REG3", ACT8865, DCDC3, VSET2, "vp3"),
a5f888c53   Michał Mirosław   regulator: act886...
528
529
530
531
  	ACT88xx_LDO("LDO_REG1", ACT8865, LDO1, VSET, "inl45"),
  	ACT88xx_LDO("LDO_REG2", ACT8865, LDO2, VSET, "inl45"),
  	ACT88xx_LDO("LDO_REG3", ACT8865, LDO3, VSET, "inl67"),
  	ACT88xx_LDO("LDO_REG4", ACT8865, LDO4, VSET, "inl67"),
c86dc03e5   Wenyou Yang   regulator: act886...
532
  };
33036f48d   Wenyou Yang   regulator: act886...
533
534
  #ifdef CONFIG_OF
  static const struct of_device_id act8865_dt_ids[] = {
df3a950e4   Zubair Lutfullah Kakakhel   regulator: act886...
535
  	{ .compatible = "active-semi,act8600", .data = (void *)ACT8600 },
ac0c0ea8b   Beniamino Galvani   regulator: act886...
536
  	{ .compatible = "active-semi,act8846", .data = (void *)ACT8846 },
50a03e35b   Beniamino Galvani   regulator: act886...
537
  	{ .compatible = "active-semi,act8865", .data = (void *)ACT8865 },
33036f48d   Wenyou Yang   regulator: act886...
538
539
540
  	{ }
  };
  MODULE_DEVICE_TABLE(of, act8865_dt_ids);
33036f48d   Wenyou Yang   regulator: act886...
541
  #endif
005e46857   Maarten ter Huurne   regulator: act886...
542
543
  static struct act8865_regulator_data *act8865_get_regulator_data(
  		int id, struct act8865_platform_data *pdata)
48a1e1b50   Beniamino Galvani   regulator: act886...
544
545
  {
  	int i;
48a1e1b50   Beniamino Galvani   regulator: act886...
546
547
  	for (i = 0; i < pdata->num_regulators; i++) {
  		if (pdata->regulators[i].id == id)
005e46857   Maarten ter Huurne   regulator: act886...
548
  			return &pdata->regulators[i];
48a1e1b50   Beniamino Galvani   regulator: act886...
549
550
551
552
  	}
  
  	return NULL;
  }
2b17fa282   Romain Perier   regulator: act886...
553
554
555
556
557
558
559
560
561
  static struct i2c_client *act8865_i2c_client;
  static void act8865_power_off(void)
  {
  	struct act8865 *act8865;
  
  	act8865 = i2c_get_clientdata(act8865_i2c_client);
  	regmap_write(act8865->regmap, act8865->off_reg, act8865->off_mask);
  	while (1);
  }
2d09a79bf   Maarten ter Huurne   regulator: act886...
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
  static int act8600_charger_get_status(struct regmap *map)
  {
  	unsigned int val;
  	int ret;
  	u8 state0, state1;
  
  	ret = regmap_read(map, ACT8600_APCH_STAT, &val);
  	if (ret < 0)
  		return ret;
  
  	state0 = val & ACT8600_APCH_CSTATE0;
  	state1 = val & ACT8600_APCH_CSTATE1;
  
  	if (state0 && !state1)
  		return POWER_SUPPLY_STATUS_CHARGING;
  	if (!state0 && state1)
  		return POWER_SUPPLY_STATUS_NOT_CHARGING;
  	if (!state0 && !state1)
  		return POWER_SUPPLY_STATUS_DISCHARGING;
  
  	return POWER_SUPPLY_STATUS_UNKNOWN;
  }
  
  static int act8600_charger_get_property(struct power_supply *psy,
  		enum power_supply_property psp, union power_supply_propval *val)
  {
  	struct regmap *map = power_supply_get_drvdata(psy);
  	int ret;
  
  	switch (psp) {
  	case POWER_SUPPLY_PROP_STATUS:
  		ret = act8600_charger_get_status(map);
  		if (ret < 0)
  			return ret;
  
  		val->intval = ret;
  		break;
  	default:
  		return -EINVAL;
  	}
  
  	return 0;
  }
  
  static enum power_supply_property act8600_charger_properties[] = {
  	POWER_SUPPLY_PROP_STATUS,
  };
  
  static const struct power_supply_desc act8600_charger_desc = {
  	.name = "act8600-charger",
  	.type = POWER_SUPPLY_TYPE_BATTERY,
  	.properties = act8600_charger_properties,
  	.num_properties = ARRAY_SIZE(act8600_charger_properties),
  	.get_property = act8600_charger_get_property,
  };
  
  static int act8600_charger_probe(struct device *dev, struct regmap *regmap)
  {
  	struct power_supply *charger;
  	struct power_supply_config cfg = {
  		.drv_data = regmap,
  		.of_node = dev->of_node,
  	};
  
  	charger = devm_power_supply_register(dev, &act8600_charger_desc, &cfg);
1889c6e6a   kbuild test robot   regulator: act886...
627
  	return PTR_ERR_OR_ZERO(charger);
2d09a79bf   Maarten ter Huurne   regulator: act886...
628
  }
33036f48d   Wenyou Yang   regulator: act886...
629
  static int act8865_pmic_probe(struct i2c_client *client,
50a03e35b   Beniamino Galvani   regulator: act886...
630
  			      const struct i2c_device_id *i2c_id)
33036f48d   Wenyou Yang   regulator: act886...
631
  {
abea1bb08   Maarten ter Huurne   regulator: act886...
632
  	const struct regulator_desc *regulators;
253c9c79a   Axel Lin   regulator: act886...
633
  	struct act8865_platform_data *pdata = NULL;
33036f48d   Wenyou Yang   regulator: act886...
634
  	struct device *dev = &client->dev;
50a03e35b   Beniamino Galvani   regulator: act886...
635
  	int i, ret, num_regulators;
33036f48d   Wenyou Yang   regulator: act886...
636
  	struct act8865 *act8865;
c5c9c2df4   Maarten ter Huurne   regulator: act886...
637
  	const struct regmap_config *regmap_config;
50a03e35b   Beniamino Galvani   regulator: act886...
638
  	unsigned long type;
2b17fa282   Romain Perier   regulator: act886...
639
  	int off_reg, off_mask;
c86dc03e5   Wenyou Yang   regulator: act886...
640
  	int voltage_select = 0;
50a03e35b   Beniamino Galvani   regulator: act886...
641

253c9c79a   Axel Lin   regulator: act886...
642
  	if (dev->of_node) {
33036f48d   Wenyou Yang   regulator: act886...
643
  		const struct of_device_id *id;
33036f48d   Wenyou Yang   regulator: act886...
644
645
646
647
  
  		id = of_match_device(of_match_ptr(act8865_dt_ids), dev);
  		if (!id)
  			return -ENODEV;
50a03e35b   Beniamino Galvani   regulator: act886...
648
  		type = (unsigned long) id->data;
c86dc03e5   Wenyou Yang   regulator: act886...
649
650
651
652
  
  		voltage_select = !!of_get_property(dev->of_node,
  						   "active-semi,vsel-high",
  						   NULL);
50a03e35b   Beniamino Galvani   regulator: act886...
653
654
  	} else {
  		type = i2c_id->driver_data;
253c9c79a   Axel Lin   regulator: act886...
655
  		pdata = dev_get_platdata(dev);
50a03e35b   Beniamino Galvani   regulator: act886...
656
657
658
  	}
  
  	switch (type) {
df3a950e4   Zubair Lutfullah Kakakhel   regulator: act886...
659
660
661
  	case ACT8600:
  		regulators = act8600_regulators;
  		num_regulators = ARRAY_SIZE(act8600_regulators);
c5c9c2df4   Maarten ter Huurne   regulator: act886...
662
  		regmap_config = &act8600_regmap_config;
df3a950e4   Zubair Lutfullah Kakakhel   regulator: act886...
663
664
665
  		off_reg = -1;
  		off_mask = -1;
  		break;
ac0c0ea8b   Beniamino Galvani   regulator: act886...
666
  	case ACT8846:
ac0c0ea8b   Beniamino Galvani   regulator: act886...
667
668
  		regulators = act8846_regulators;
  		num_regulators = ARRAY_SIZE(act8846_regulators);
c5c9c2df4   Maarten ter Huurne   regulator: act886...
669
  		regmap_config = &act8865_regmap_config;
2b17fa282   Romain Perier   regulator: act886...
670
671
  		off_reg = ACT8846_GLB_OFF_CTRL;
  		off_mask = ACT8846_OFF_SYSMASK;
ac0c0ea8b   Beniamino Galvani   regulator: act886...
672
  		break;
50a03e35b   Beniamino Galvani   regulator: act886...
673
  	case ACT8865:
c86dc03e5   Wenyou Yang   regulator: act886...
674
675
676
677
678
679
680
  		if (voltage_select) {
  			regulators = act8865_alt_regulators;
  			num_regulators = ARRAY_SIZE(act8865_alt_regulators);
  		} else {
  			regulators = act8865_regulators;
  			num_regulators = ARRAY_SIZE(act8865_regulators);
  		}
c5c9c2df4   Maarten ter Huurne   regulator: act886...
681
  		regmap_config = &act8865_regmap_config;
2b17fa282   Romain Perier   regulator: act886...
682
683
  		off_reg = ACT8865_SYS_CTRL;
  		off_mask = ACT8865_MSTROFF;
50a03e35b   Beniamino Galvani   regulator: act886...
684
685
686
687
688
689
  		break;
  	default:
  		dev_err(dev, "invalid device id %lu
  ", type);
  		return -EINVAL;
  	}
f1de2c2f2   Wenyou Yang   regulator: act886...
690
  	act8865 = devm_kzalloc(dev, sizeof(struct act8865), GFP_KERNEL);
33036f48d   Wenyou Yang   regulator: act886...
691
692
  	if (!act8865)
  		return -ENOMEM;
c5c9c2df4   Maarten ter Huurne   regulator: act886...
693
  	act8865->regmap = devm_regmap_init_i2c(client, regmap_config);
33036f48d   Wenyou Yang   regulator: act886...
694
  	if (IS_ERR(act8865->regmap)) {
40d3bc196   Axel Lin   regulator: act886...
695
  		ret = PTR_ERR(act8865->regmap);
de14ba673   Maarten ter Huurne   regulator: act886...
696
697
  		dev_err(dev, "Failed to allocate register map: %d
  ", ret);
40d3bc196   Axel Lin   regulator: act886...
698
  		return ret;
33036f48d   Wenyou Yang   regulator: act886...
699
  	}
8f73110f6   Romain Perier   of: Rename "power...
700
  	if (of_device_is_system_power_controller(dev->of_node)) {
df3a950e4   Zubair Lutfullah Kakakhel   regulator: act886...
701
  		if (!pm_power_off && (off_reg > 0)) {
2b17fa282   Romain Perier   regulator: act886...
702
703
704
705
706
707
708
709
710
  			act8865_i2c_client = client;
  			act8865->off_reg = off_reg;
  			act8865->off_mask = off_mask;
  			pm_power_off = act8865_power_off;
  		} else {
  			dev_err(dev, "Failed to set poweroff capability, already defined
  ");
  		}
  	}
33036f48d   Wenyou Yang   regulator: act886...
711
  	/* Finally register devices */
50a03e35b   Beniamino Galvani   regulator: act886...
712
713
714
715
  	for (i = 0; i < num_regulators; i++) {
  		const struct regulator_desc *desc = &regulators[i];
  		struct regulator_config config = { };
  		struct regulator_dev *rdev;
33036f48d   Wenyou Yang   regulator: act886...
716
717
  
  		config.dev = dev;
33036f48d   Wenyou Yang   regulator: act886...
718
719
  		config.driver_data = act8865;
  		config.regmap = act8865->regmap;
253c9c79a   Axel Lin   regulator: act886...
720
721
722
723
724
725
726
727
  		if (pdata) {
  			struct act8865_regulator_data *rdata;
  
  			rdata = act8865_get_regulator_data(desc->id, pdata);
  			if (rdata) {
  				config.init_data = rdata->init_data;
  				config.of_node = rdata->of_node;
  			}
005e46857   Maarten ter Huurne   regulator: act886...
728
  		}
de14ba673   Maarten ter Huurne   regulator: act886...
729
  		rdev = devm_regulator_register(dev, desc, &config);
fb8eb4540   Axel Lin   regulator: act886...
730
  		if (IS_ERR(rdev)) {
48a1e1b50   Beniamino Galvani   regulator: act886...
731
732
  			dev_err(dev, "failed to register %s
  ", desc->name);
fb8eb4540   Axel Lin   regulator: act886...
733
  			return PTR_ERR(rdev);
33036f48d   Wenyou Yang   regulator: act886...
734
735
  		}
  	}
2d09a79bf   Maarten ter Huurne   regulator: act886...
736
737
738
739
740
741
742
743
  	if (type == ACT8600) {
  		ret = act8600_charger_probe(dev, act8865->regmap);
  		if (ret < 0) {
  			if (ret != -EPROBE_DEFER)
  				dev_err(dev, "Failed to probe charger");
  			return ret;
  		}
  	}
33036f48d   Wenyou Yang   regulator: act886...
744
  	i2c_set_clientdata(client, act8865);
955741a51   Raag Jadav   regulator: act886...
745
746
747
  	/* Unlock expert registers for ACT8865. */
  	return type != ACT8865 ? 0 : regmap_write(act8865->regmap,
  						  ACT8865_SYS_UNLK_REGS, 0xef);
33036f48d   Wenyou Yang   regulator: act886...
748
  }
33036f48d   Wenyou Yang   regulator: act886...
749
  static const struct i2c_device_id act8865_ids[] = {
df3a950e4   Zubair Lutfullah Kakakhel   regulator: act886...
750
  	{ .name = "act8600", .driver_data = ACT8600 },
ac0c0ea8b   Beniamino Galvani   regulator: act886...
751
  	{ .name = "act8846", .driver_data = ACT8846 },
50a03e35b   Beniamino Galvani   regulator: act886...
752
  	{ .name = "act8865", .driver_data = ACT8865 },
33036f48d   Wenyou Yang   regulator: act886...
753
754
755
756
757
758
759
  	{ },
  };
  MODULE_DEVICE_TABLE(i2c, act8865_ids);
  
  static struct i2c_driver act8865_pmic_driver = {
  	.driver	= {
  		.name	= "act8865",
33036f48d   Wenyou Yang   regulator: act886...
760
761
  	},
  	.probe		= act8865_pmic_probe,
33036f48d   Wenyou Yang   regulator: act886...
762
763
764
765
  	.id_table	= act8865_ids,
  };
  
  module_i2c_driver(act8865_pmic_driver);
50a03e35b   Beniamino Galvani   regulator: act886...
766
  MODULE_DESCRIPTION("active-semi act88xx voltage regulator driver");
33036f48d   Wenyou Yang   regulator: act886...
767
768
  MODULE_AUTHOR("Wenyou Yang <wenyou.yang@atmel.com>");
  MODULE_LICENSE("GPL v2");