diff options
author | Chao Xie <chao.xie@marvell.com> | 2013-06-14 01:21:53 -0400 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2013-06-18 03:41:12 -0400 |
commit | 2d3aa0569cc111b7567cb082c2f8ab32e2245e49 (patch) | |
tree | 92be0b9a5383702098f62d831738fa588a0c6065 | |
parent | 3a3ece5415bd7a4bc7923906369525943332fc1a (diff) |
mfd: 88pm800: Add regulator sub device
Signed-off-by: Chao Xie <chao.xie@marvell.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
-rw-r--r-- | drivers/mfd/88pm800.c | 28 | ||||
-rw-r--r-- | include/linux/mfd/88pm80x.h | 8 |
2 files changed, 36 insertions, 0 deletions
diff --git a/drivers/mfd/88pm800.c b/drivers/mfd/88pm800.c index a475fb3c2d0c..6c954835d61e 100644 --- a/drivers/mfd/88pm800.c +++ b/drivers/mfd/88pm800.c | |||
@@ -157,6 +157,13 @@ static struct mfd_cell onkey_devs[] = { | |||
157 | }, | 157 | }, |
158 | }; | 158 | }; |
159 | 159 | ||
160 | static struct mfd_cell regulator_devs[] = { | ||
161 | { | ||
162 | .name = "88pm80x-regulator", | ||
163 | .id = -1, | ||
164 | }, | ||
165 | }; | ||
166 | |||
160 | static const struct regmap_irq pm800_irqs[] = { | 167 | static const struct regmap_irq pm800_irqs[] = { |
161 | /* INT0 */ | 168 | /* INT0 */ |
162 | [PM800_IRQ_ONKEY] = { | 169 | [PM800_IRQ_ONKEY] = { |
@@ -339,6 +346,21 @@ static int device_rtc_init(struct pm80x_chip *chip, | |||
339 | return 0; | 346 | return 0; |
340 | } | 347 | } |
341 | 348 | ||
349 | static int device_regulator_init(struct pm80x_chip *chip, | ||
350 | struct pm80x_platform_data *pdata) | ||
351 | { | ||
352 | int ret; | ||
353 | |||
354 | ret = mfd_add_devices(chip->dev, 0, ®ulator_devs[0], | ||
355 | ARRAY_SIZE(regulator_devs), NULL, 0, NULL); | ||
356 | if (ret) { | ||
357 | dev_err(chip->dev, "Failed to add regulator subdev\n"); | ||
358 | return ret; | ||
359 | } | ||
360 | |||
361 | return 0; | ||
362 | } | ||
363 | |||
342 | static int device_irq_init_800(struct pm80x_chip *chip) | 364 | static int device_irq_init_800(struct pm80x_chip *chip) |
343 | { | 365 | { |
344 | struct regmap *map = chip->regmap; | 366 | struct regmap *map = chip->regmap; |
@@ -500,6 +522,12 @@ static int device_800_init(struct pm80x_chip *chip, | |||
500 | goto out; | 522 | goto out; |
501 | } | 523 | } |
502 | 524 | ||
525 | ret = device_regulator_init(chip, pdata); | ||
526 | if (ret) { | ||
527 | dev_err(chip->dev, "Failed to add regulators subdev\n"); | ||
528 | goto out; | ||
529 | } | ||
530 | |||
503 | return 0; | 531 | return 0; |
504 | out_dev: | 532 | out_dev: |
505 | mfd_remove_devices(chip->dev); | 533 | mfd_remove_devices(chip->dev); |
diff --git a/include/linux/mfd/88pm80x.h b/include/linux/mfd/88pm80x.h index 4a66a5633031..97cb283cc8e1 100644 --- a/include/linux/mfd/88pm80x.h +++ b/include/linux/mfd/88pm80x.h | |||
@@ -307,6 +307,14 @@ struct pm80x_chip { | |||
307 | 307 | ||
308 | struct pm80x_platform_data { | 308 | struct pm80x_platform_data { |
309 | struct pm80x_rtc_pdata *rtc; | 309 | struct pm80x_rtc_pdata *rtc; |
310 | /* | ||
311 | * For the regulator not defined, set regulators[not_defined] to be | ||
312 | * NULL. num_regulators are the number of regulators supposed to be | ||
313 | * initialized. If all regulators are not defined, set num_regulators | ||
314 | * to be 0. | ||
315 | */ | ||
316 | struct regulator_init_data *regulators[PM800_ID_RG_MAX]; | ||
317 | unsigned int num_regulators; | ||
310 | int irq_mode; /* Clear interrupt by read/write(0/1) */ | 318 | int irq_mode; /* Clear interrupt by read/write(0/1) */ |
311 | int batt_det; /* enable/disable */ | 319 | int batt_det; /* enable/disable */ |
312 | int (*plat_config)(struct pm80x_chip *chip, | 320 | int (*plat_config)(struct pm80x_chip *chip, |