Blame view

drivers/regulator/mcp16502.c 13.7 KB
919261c03   Andrei.Stefanescu@microchip.com   regulator: mcp165...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  // SPDX-License-Identifier: GPL-2.0
  //
  // MCP16502 PMIC driver
  //
  // Copyright (C) 2018 Microchip Technology Inc. and its subsidiaries
  //
  // Author: Andrei Stefanescu <andrei.stefanescu@microchip.com>
  //
  // Inspired from tps65086-regulator.c
  
  #include <linux/gpio.h>
  #include <linux/i2c.h>
  #include <linux/init.h>
  #include <linux/kernel.h>
  #include <linux/module.h>
  #include <linux/of.h>
  #include <linux/regmap.h>
  #include <linux/regulator/driver.h>
  #include <linux/suspend.h>
f3c6a1a19   Axel Lin   regulator: mcp165...
20
  #include <linux/gpio/consumer.h>
919261c03   Andrei.Stefanescu@microchip.com   regulator: mcp165...
21
22
23
24
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
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
86
87
88
89
90
91
92
93
  
  #define VDD_LOW_SEL 0x0D
  #define VDD_HIGH_SEL 0x3F
  
  #define MCP16502_FLT BIT(7)
  #define MCP16502_ENS BIT(0)
  
  /*
   * The PMIC has four sets of registers corresponding to four power modes:
   * Performance, Active, Low-power, Hibernate.
   *
   * Registers:
   * Each regulator has a register for each power mode. To access a register
   * for a specific regulator and mode BASE_* and OFFSET_* need to be added.
   *
   * Operating modes:
   * In order for the PMIC to transition to operating modes it has to be
   * controlled via GPIO lines called LPM and HPM.
   *
   * The registers are fully configurable such that you can put all regulators in
   * a low-power state while the PMIC is in Active mode. They are supposed to be
   * configured at startup and then simply transition to/from a global low-power
   * state by setting the GPIO lpm pin high/low.
   *
   * This driver keeps the PMIC in Active mode, Low-power state is set for the
   * regulators by enabling/disabling operating mode (FPWM or Auto PFM).
   *
   * The PMIC's Low-power and Hibernate modes are used during standby/suspend.
   * To enter standby/suspend the PMIC will go to Low-power mode. From there, it
   * will transition to Hibernate when the PWRHLD line is set to low by the MPU.
   */
  
  /*
   * This function is useful for iterating over all regulators and accessing their
   * registers in a generic way or accessing a regulator device by its id.
   */
  #define MCP16502_BASE(i) (((i) + 1) << 4)
  #define MCP16502_STAT_BASE(i) ((i) + 5)
  
  #define MCP16502_OFFSET_MODE_A 0
  #define MCP16502_OFFSET_MODE_LPM 1
  #define MCP16502_OFFSET_MODE_HIB 2
  
  #define MCP16502_OPMODE_ACTIVE REGULATOR_MODE_NORMAL
  #define MCP16502_OPMODE_LPM REGULATOR_MODE_IDLE
  #define MCP16502_OPMODE_HIB REGULATOR_MODE_STANDBY
  
  #define MCP16502_MODE_AUTO_PFM 0
  #define MCP16502_MODE_FPWM BIT(6)
  
  #define MCP16502_VSEL 0x3F
  #define MCP16502_EN BIT(7)
  #define MCP16502_MODE BIT(6)
  
  #define MCP16502_MIN_REG 0x0
  #define MCP16502_MAX_REG 0x65
  
  static unsigned int mcp16502_of_map_mode(unsigned int mode)
  {
  	if (mode == REGULATOR_MODE_NORMAL || mode == REGULATOR_MODE_IDLE)
  		return mode;
  
  	return REGULATOR_MODE_INVALID;
  }
  
  #define MCP16502_REGULATOR(_name, _id, _ranges, _ops)			\
  	[_id] = {							\
  		.name			= _name,			\
  		.regulators_node	= of_match_ptr("regulators"),	\
  		.id			= _id,				\
  		.ops			= &(_ops),			\
  		.type			= REGULATOR_VOLTAGE,		\
  		.owner			= THIS_MODULE,			\
f4c8f9802   Axel Lin   regulator: mcp165...
94
  		.n_voltages		= MCP16502_VSEL + 1,		\
919261c03   Andrei.Stefanescu@microchip.com   regulator: mcp165...
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
  		.linear_ranges		= _ranges,			\
  		.n_linear_ranges	= ARRAY_SIZE(_ranges),		\
  		.of_match		= of_match_ptr(_name),		\
  		.of_map_mode		= mcp16502_of_map_mode,		\
  		.vsel_reg		= (((_id) + 1) << 4),		\
  		.vsel_mask		= MCP16502_VSEL,		\
  		.enable_reg		= (((_id) + 1) << 4),		\
  		.enable_mask		= MCP16502_EN,			\
  	}
  
  enum {
  	BUCK1 = 0,
  	BUCK2,
  	BUCK3,
  	BUCK4,
  	LDO1,
  	LDO2,
  	NUM_REGULATORS
  };
  
  /*
   * struct mcp16502 - PMIC representation
   * @rdev: the regulators belonging to this chip
   * @rmap: regmap to be used for I2C communication
   * @lpm: LPM GPIO descriptor
   */
  struct mcp16502 {
919261c03   Andrei.Stefanescu@microchip.com   regulator: mcp165...
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
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
  	struct gpio_desc *lpm;
  };
  
  /*
   * mcp16502_gpio_set_mode() - set the GPIO corresponding value
   *
   * Used to prepare transitioning into hibernate or resuming from it.
   */
  static void mcp16502_gpio_set_mode(struct mcp16502 *mcp, int mode)
  {
  	switch (mode) {
  	case MCP16502_OPMODE_ACTIVE:
  		gpiod_set_value(mcp->lpm, 0);
  		break;
  	case MCP16502_OPMODE_LPM:
  	case MCP16502_OPMODE_HIB:
  		gpiod_set_value(mcp->lpm, 1);
  		break;
  	default:
  		pr_err("%s: %d invalid
  ", __func__, mode);
  	}
  }
  
  /*
   * mcp16502_get_reg() - get the PMIC's configuration register for opmode
   *
   * @rdev: the regulator whose register we are searching
   * @opmode: the PMIC's operating mode ACTIVE, Low-power, Hibernate
   */
  static int mcp16502_get_reg(struct regulator_dev *rdev, int opmode)
  {
  	int reg = MCP16502_BASE(rdev_get_id(rdev));
  
  	switch (opmode) {
  	case MCP16502_OPMODE_ACTIVE:
  		return reg + MCP16502_OFFSET_MODE_A;
  	case MCP16502_OPMODE_LPM:
  		return reg + MCP16502_OFFSET_MODE_LPM;
  	case MCP16502_OPMODE_HIB:
  		return reg + MCP16502_OFFSET_MODE_HIB;
  	default:
  		return -EINVAL;
  	}
  }
  
  /*
   * mcp16502_get_mode() - return the current operating mode of a regulator
   *
   * Note: all functions that are not part of entering/exiting standby/suspend
   *	 use the Active mode registers.
   *
   * Note: this is different from the PMIC's operatig mode, it is the
   *	 MODE bit from the regulator's register.
   */
  static unsigned int mcp16502_get_mode(struct regulator_dev *rdev)
  {
  	unsigned int val;
  	int ret, reg;
919261c03   Andrei.Stefanescu@microchip.com   regulator: mcp165...
181
182
183
184
  
  	reg = mcp16502_get_reg(rdev, MCP16502_OPMODE_ACTIVE);
  	if (reg < 0)
  		return reg;
4cf469539   Axel Lin   regulator: mcp165...
185
  	ret = regmap_read(rdev->regmap, reg, &val);
919261c03   Andrei.Stefanescu@microchip.com   regulator: mcp165...
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
  	if (ret)
  		return ret;
  
  	switch (val & MCP16502_MODE) {
  	case MCP16502_MODE_FPWM:
  		return REGULATOR_MODE_NORMAL;
  	case MCP16502_MODE_AUTO_PFM:
  		return REGULATOR_MODE_IDLE;
  	default:
  		return REGULATOR_MODE_INVALID;
  	}
  }
  
  /*
   * _mcp16502_set_mode() - helper for set_mode and set_suspend_mode
   *
   * @rdev: the regulator for which we are setting the mode
   * @mode: the regulator's mode (the one from MODE bit)
   * @opmode: the PMIC's operating mode: Active/Low-power/Hibernate
   */
  static int _mcp16502_set_mode(struct regulator_dev *rdev, unsigned int mode,
  			      unsigned int op_mode)
  {
  	int val;
  	int reg;
919261c03   Andrei.Stefanescu@microchip.com   regulator: mcp165...
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
  
  	reg = mcp16502_get_reg(rdev, op_mode);
  	if (reg < 0)
  		return reg;
  
  	switch (mode) {
  	case REGULATOR_MODE_NORMAL:
  		val = MCP16502_MODE_FPWM;
  		break;
  	case REGULATOR_MODE_IDLE:
  		val = MCP16502_MODE_AUTO_PFM;
  		break;
  	default:
  		return -EINVAL;
  	}
4cf469539   Axel Lin   regulator: mcp165...
226
  	reg = regmap_update_bits(rdev->regmap, reg, MCP16502_MODE, val);
919261c03   Andrei.Stefanescu@microchip.com   regulator: mcp165...
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
  	return reg;
  }
  
  /*
   * mcp16502_set_mode() - regulator_ops set_mode
   */
  static int mcp16502_set_mode(struct regulator_dev *rdev, unsigned int mode)
  {
  	return _mcp16502_set_mode(rdev, mode, MCP16502_OPMODE_ACTIVE);
  }
  
  /*
   * mcp16502_get_status() - regulator_ops get_status
   */
  static int mcp16502_get_status(struct regulator_dev *rdev)
  {
  	int ret;
  	unsigned int val;
919261c03   Andrei.Stefanescu@microchip.com   regulator: mcp165...
245

4cf469539   Axel Lin   regulator: mcp165...
246
  	ret = regmap_read(rdev->regmap, MCP16502_STAT_BASE(rdev_get_id(rdev)),
919261c03   Andrei.Stefanescu@microchip.com   regulator: mcp165...
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
  			  &val);
  	if (ret)
  		return ret;
  
  	if (val & MCP16502_FLT)
  		return REGULATOR_STATUS_ERROR;
  	else if (val & MCP16502_ENS)
  		return REGULATOR_STATUS_ON;
  	else if (!(val & MCP16502_ENS))
  		return REGULATOR_STATUS_OFF;
  
  	return REGULATOR_STATUS_UNDEFINED;
  }
  
  #ifdef CONFIG_SUSPEND
  /*
   * mcp16502_suspend_get_target_reg() - get the reg of the target suspend PMIC
   *				       mode
   */
  static int mcp16502_suspend_get_target_reg(struct regulator_dev *rdev)
  {
  	switch (pm_suspend_target_state) {
  	case PM_SUSPEND_STANDBY:
  		return mcp16502_get_reg(rdev, MCP16502_OPMODE_LPM);
  	case PM_SUSPEND_ON:
  	case PM_SUSPEND_MEM:
  		return mcp16502_get_reg(rdev, MCP16502_OPMODE_HIB);
  	default:
  		dev_err(&rdev->dev, "invalid suspend target: %d
  ",
  			pm_suspend_target_state);
  	}
  
  	return -EINVAL;
  }
  
  /*
   * mcp16502_set_suspend_voltage() - regulator_ops set_suspend_voltage
   */
  static int mcp16502_set_suspend_voltage(struct regulator_dev *rdev, int uV)
  {
919261c03   Andrei.Stefanescu@microchip.com   regulator: mcp165...
288
289
290
291
292
293
294
295
  	int sel = regulator_map_voltage_linear_range(rdev, uV, uV);
  	int reg = mcp16502_suspend_get_target_reg(rdev);
  
  	if (sel < 0)
  		return sel;
  
  	if (reg < 0)
  		return reg;
4cf469539   Axel Lin   regulator: mcp165...
296
  	return regmap_update_bits(rdev->regmap, reg, MCP16502_VSEL, sel);
919261c03   Andrei.Stefanescu@microchip.com   regulator: mcp165...
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
  }
  
  /*
   * mcp16502_set_suspend_mode() - regulator_ops set_suspend_mode
   */
  static int mcp16502_set_suspend_mode(struct regulator_dev *rdev,
  				     unsigned int mode)
  {
  	switch (pm_suspend_target_state) {
  	case PM_SUSPEND_STANDBY:
  		return _mcp16502_set_mode(rdev, mode, MCP16502_OPMODE_LPM);
  	case PM_SUSPEND_ON:
  	case PM_SUSPEND_MEM:
  		return _mcp16502_set_mode(rdev, mode, MCP16502_OPMODE_HIB);
  	default:
  		dev_err(&rdev->dev, "invalid suspend target: %d
  ",
  			pm_suspend_target_state);
  	}
  
  	return -EINVAL;
  }
  
  /*
   * mcp16502_set_suspend_enable() - regulator_ops set_suspend_enable
   */
  static int mcp16502_set_suspend_enable(struct regulator_dev *rdev)
  {
919261c03   Andrei.Stefanescu@microchip.com   regulator: mcp165...
325
326
327
328
  	int reg = mcp16502_suspend_get_target_reg(rdev);
  
  	if (reg < 0)
  		return reg;
4cf469539   Axel Lin   regulator: mcp165...
329
  	return regmap_update_bits(rdev->regmap, reg, MCP16502_EN, MCP16502_EN);
919261c03   Andrei.Stefanescu@microchip.com   regulator: mcp165...
330
331
332
333
334
335
336
  }
  
  /*
   * mcp16502_set_suspend_disable() - regulator_ops set_suspend_disable
   */
  static int mcp16502_set_suspend_disable(struct regulator_dev *rdev)
  {
919261c03   Andrei.Stefanescu@microchip.com   regulator: mcp165...
337
338
339
340
  	int reg = mcp16502_suspend_get_target_reg(rdev);
  
  	if (reg < 0)
  		return reg;
4cf469539   Axel Lin   regulator: mcp165...
341
  	return regmap_update_bits(rdev->regmap, reg, MCP16502_EN, 0);
919261c03   Andrei.Stefanescu@microchip.com   regulator: mcp165...
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
  }
  #endif /* CONFIG_SUSPEND */
  
  static const struct regulator_ops mcp16502_buck_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,
  	.is_enabled			= regulator_is_enabled_regmap,
  	.get_status			= mcp16502_get_status,
  
  	.set_mode			= mcp16502_set_mode,
  	.get_mode			= mcp16502_get_mode,
  
  #ifdef CONFIG_SUSPEND
  	.set_suspend_voltage		= mcp16502_set_suspend_voltage,
  	.set_suspend_mode		= mcp16502_set_suspend_mode,
  	.set_suspend_enable		= mcp16502_set_suspend_enable,
  	.set_suspend_disable		= mcp16502_set_suspend_disable,
  #endif /* CONFIG_SUSPEND */
  };
  
  /*
   * LDOs cannot change operating modes.
   */
  static const struct regulator_ops mcp16502_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,
  	.is_enabled			= regulator_is_enabled_regmap,
  	.get_status			= mcp16502_get_status,
  
  #ifdef CONFIG_SUSPEND
  	.set_suspend_voltage		= mcp16502_set_suspend_voltage,
  	.set_suspend_enable		= mcp16502_set_suspend_enable,
  	.set_suspend_disable		= mcp16502_set_suspend_disable,
  #endif /* CONFIG_SUSPEND */
  };
  
  static const struct of_device_id mcp16502_ids[] = {
  	{ .compatible = "microchip,mcp16502", },
  	{}
  };
  MODULE_DEVICE_TABLE(of, mcp16502_ids);
60ab7f415   Matti Vaittinen   regulator: use li...
391
  static const struct linear_range b1l12_ranges[] = {
919261c03   Andrei.Stefanescu@microchip.com   regulator: mcp165...
392
393
  	REGULATOR_LINEAR_RANGE(1200000, VDD_LOW_SEL, VDD_HIGH_SEL, 50000),
  };
60ab7f415   Matti Vaittinen   regulator: use li...
394
  static const struct linear_range b234_ranges[] = {
919261c03   Andrei.Stefanescu@microchip.com   regulator: mcp165...
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
  	REGULATOR_LINEAR_RANGE(600000, VDD_LOW_SEL, VDD_HIGH_SEL, 25000),
  };
  
  static const struct regulator_desc mcp16502_desc[] = {
  	/* MCP16502_REGULATOR(_name, _id, ranges, regulator_ops) */
  	MCP16502_REGULATOR("VDD_IO", BUCK1, b1l12_ranges, mcp16502_buck_ops),
  	MCP16502_REGULATOR("VDD_DDR", BUCK2, b234_ranges, mcp16502_buck_ops),
  	MCP16502_REGULATOR("VDD_CORE", BUCK3, b234_ranges, mcp16502_buck_ops),
  	MCP16502_REGULATOR("VDD_OTHER", BUCK4, b234_ranges, mcp16502_buck_ops),
  	MCP16502_REGULATOR("LDO1", LDO1, b1l12_ranges, mcp16502_ldo_ops),
  	MCP16502_REGULATOR("LDO2", LDO2, b1l12_ranges, mcp16502_ldo_ops)
  };
  
  static const struct regmap_range mcp16502_ranges[] = {
  	regmap_reg_range(MCP16502_MIN_REG, MCP16502_MAX_REG)
  };
  
  static const struct regmap_access_table mcp16502_yes_reg_table = {
  	.yes_ranges = mcp16502_ranges,
  	.n_yes_ranges = ARRAY_SIZE(mcp16502_ranges),
  };
  
  static const struct regmap_config mcp16502_regmap_config = {
  	.reg_bits	= 8,
  	.val_bits	= 8,
  	.max_register	= MCP16502_MAX_REG,
  	.cache_type	= REGCACHE_NONE,
  	.rd_table	= &mcp16502_yes_reg_table,
  	.wr_table	= &mcp16502_yes_reg_table,
  };
919261c03   Andrei.Stefanescu@microchip.com   regulator: mcp165...
425
426
427
428
  static int mcp16502_probe(struct i2c_client *client,
  			  const struct i2c_device_id *id)
  {
  	struct regulator_config config = { };
784c24c3e   Axel Lin   regulator: mcp165...
429
  	struct regulator_dev *rdev;
919261c03   Andrei.Stefanescu@microchip.com   regulator: mcp165...
430
431
  	struct device *dev;
  	struct mcp16502 *mcp;
4cf469539   Axel Lin   regulator: mcp165...
432
  	struct regmap *rmap;
784c24c3e   Axel Lin   regulator: mcp165...
433
  	int i, ret;
919261c03   Andrei.Stefanescu@microchip.com   regulator: mcp165...
434
435
436
437
438
439
440
  
  	dev = &client->dev;
  	config.dev = dev;
  
  	mcp = devm_kzalloc(dev, sizeof(*mcp), GFP_KERNEL);
  	if (!mcp)
  		return -ENOMEM;
4cf469539   Axel Lin   regulator: mcp165...
441
442
443
  	rmap = devm_regmap_init_i2c(client, &mcp16502_regmap_config);
  	if (IS_ERR(rmap)) {
  		ret = PTR_ERR(rmap);
919261c03   Andrei.Stefanescu@microchip.com   regulator: mcp165...
444
445
446
447
448
449
  		dev_err(dev, "regmap init failed: %d
  ", ret);
  		return ret;
  	}
  
  	i2c_set_clientdata(client, mcp);
4cf469539   Axel Lin   regulator: mcp165...
450
  	config.regmap = rmap;
919261c03   Andrei.Stefanescu@microchip.com   regulator: mcp165...
451
452
453
454
455
456
457
458
  	config.driver_data = mcp;
  
  	mcp->lpm = devm_gpiod_get(dev, "lpm", GPIOD_OUT_LOW);
  	if (IS_ERR(mcp->lpm)) {
  		dev_err(dev, "failed to get lpm pin: %ld
  ", PTR_ERR(mcp->lpm));
  		return PTR_ERR(mcp->lpm);
  	}
784c24c3e   Axel Lin   regulator: mcp165...
459
460
461
462
463
464
465
466
467
468
  	for (i = 0; i < NUM_REGULATORS; i++) {
  		rdev = devm_regulator_register(dev, &mcp16502_desc[i], &config);
  		if (IS_ERR(rdev)) {
  			dev_err(dev,
  				"failed to register %s regulator %ld
  ",
  				mcp16502_desc[i].name, PTR_ERR(rdev));
  			return PTR_ERR(rdev);
  		}
  	}
919261c03   Andrei.Stefanescu@microchip.com   regulator: mcp165...
469
470
471
472
473
  
  	mcp16502_gpio_set_mode(mcp, MCP16502_OPMODE_ACTIVE);
  
  	return 0;
  }
4906d0916   Axel Lin   regulator: mcp165...
474
  #ifdef CONFIG_PM_SLEEP
fc401cb98   Andrei.Stefanescu@microchip.com   regulator: mcp165...
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
  static int mcp16502_suspend_noirq(struct device *dev)
  {
  	struct i2c_client *client = to_i2c_client(dev);
  	struct mcp16502 *mcp = i2c_get_clientdata(client);
  
  	mcp16502_gpio_set_mode(mcp, MCP16502_OPMODE_LPM);
  
  	return 0;
  }
  
  static int mcp16502_resume_noirq(struct device *dev)
  {
  	struct i2c_client *client = to_i2c_client(dev);
  	struct mcp16502 *mcp = i2c_get_clientdata(client);
  
  	mcp16502_gpio_set_mode(mcp, MCP16502_OPMODE_ACTIVE);
  
  	return 0;
  }
4906d0916   Axel Lin   regulator: mcp165...
494
  #endif
fc401cb98   Andrei.Stefanescu@microchip.com   regulator: mcp165...
495
496
497
498
  
  #ifdef CONFIG_PM
  static const struct dev_pm_ops mcp16502_pm_ops = {
  	SET_NOIRQ_SYSTEM_SLEEP_PM_OPS(mcp16502_suspend_noirq,
308144ce8   Andrei.Stefanescu@microchip.com   regulator: mcp165...
499
  				      mcp16502_resume_noirq)
fc401cb98   Andrei.Stefanescu@microchip.com   regulator: mcp165...
500
501
  };
  #endif
919261c03   Andrei.Stefanescu@microchip.com   regulator: mcp165...
502
503
504
505
506
507
508
509
510
511
512
  static const struct i2c_device_id mcp16502_i2c_id[] = {
  	{ "mcp16502", 0 },
  	{ }
  };
  MODULE_DEVICE_TABLE(i2c, mcp16502_i2c_id);
  
  static struct i2c_driver mcp16502_drv = {
  	.probe		= mcp16502_probe,
  	.driver		= {
  		.name	= "mcp16502-regulator",
  		.of_match_table	= of_match_ptr(mcp16502_ids),
fc401cb98   Andrei.Stefanescu@microchip.com   regulator: mcp165...
513
514
515
  #ifdef CONFIG_PM
  		.pm = &mcp16502_pm_ops,
  #endif
919261c03   Andrei.Stefanescu@microchip.com   regulator: mcp165...
516
517
518
519
520
  	},
  	.id_table	= mcp16502_i2c_id,
  };
  
  module_i2c_driver(mcp16502_drv);
919261c03   Andrei.Stefanescu@microchip.com   regulator: mcp165...
521
522
523
  MODULE_LICENSE("GPL v2");
  MODULE_DESCRIPTION("MCP16502 PMIC driver");
  MODULE_AUTHOR("Andrei Stefanescu andrei.stefanescu@microchip.com");