2 * wm8994-core.c -- Device access for Wolfson WM8994
4 * Copyright 2009 Wolfson Microelectronics PLC.
6 * Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version.
15 #include <linux/kernel.h>
16 #include <linux/module.h>
17 #include <linux/slab.h>
18 #include <linux/i2c.h>
19 #include <linux/err.h>
20 #include <linux/delay.h>
21 #include <linux/mfd/core.h>
22 #include <linux/pm_runtime.h>
23 #include <linux/regmap.h>
24 #include <linux/regulator/consumer.h>
25 #include <linux/regulator/machine.h>
27 #include <linux/mfd/wm8994/core.h>
28 #include <linux/mfd/wm8994/pdata.h>
29 #include <linux/mfd/wm8994/registers.h>
31 static int wm8994_read(struct wm8994
*wm8994
, unsigned short reg
,
32 int bytes
, void *dest
)
34 return regmap_raw_read(wm8994
->regmap
, reg
, dest
, bytes
);
38 * wm8994_reg_read: Read a single WM8994 register.
40 * @wm8994: Device to read from.
41 * @reg: Register to read.
43 int wm8994_reg_read(struct wm8994
*wm8994
, unsigned short reg
)
48 ret
= regmap_read(wm8994
->regmap
, reg
, &val
);
55 EXPORT_SYMBOL_GPL(wm8994_reg_read
);
58 * wm8994_bulk_read: Read multiple WM8994 registers
60 * @wm8994: Device to read from
61 * @reg: First register
62 * @count: Number of registers
63 * @buf: Buffer to fill. The data will be returned big endian.
65 int wm8994_bulk_read(struct wm8994
*wm8994
, unsigned short reg
,
68 return regmap_bulk_read(wm8994
->regmap
, reg
, buf
, count
);
71 static int wm8994_write(struct wm8994
*wm8994
, unsigned short reg
,
72 int bytes
, const void *src
)
74 return regmap_raw_write(wm8994
->regmap
, reg
, src
, bytes
);
78 * wm8994_reg_write: Write a single WM8994 register.
80 * @wm8994: Device to write to.
81 * @reg: Register to write to.
82 * @val: Value to write.
84 int wm8994_reg_write(struct wm8994
*wm8994
, unsigned short reg
,
87 return regmap_write(wm8994
->regmap
, reg
, val
);
89 EXPORT_SYMBOL_GPL(wm8994_reg_write
);
92 * wm8994_bulk_write: Write multiple WM8994 registers
94 * @wm8994: Device to write to
95 * @reg: First register
96 * @count: Number of registers
97 * @buf: Buffer to write from. Data must be big-endian formatted.
99 int wm8994_bulk_write(struct wm8994
*wm8994
, unsigned short reg
,
100 int count
, const u16
*buf
)
102 return regmap_raw_write(wm8994
->regmap
, reg
, buf
, count
* sizeof(u16
));
104 EXPORT_SYMBOL_GPL(wm8994_bulk_write
);
107 * wm8994_set_bits: Set the value of a bitfield in a WM8994 register
109 * @wm8994: Device to write to.
110 * @reg: Register to write to.
111 * @mask: Mask of bits to set.
112 * @val: Value to set (unshifted)
114 int wm8994_set_bits(struct wm8994
*wm8994
, unsigned short reg
,
115 unsigned short mask
, unsigned short val
)
117 return regmap_update_bits(wm8994
->regmap
, reg
, mask
, val
);
119 EXPORT_SYMBOL_GPL(wm8994_set_bits
);
121 static struct mfd_cell wm8994_regulator_devs
[] = {
123 .name
= "wm8994-ldo",
125 .pm_runtime_no_callbacks
= true,
128 .name
= "wm8994-ldo",
130 .pm_runtime_no_callbacks
= true,
134 static struct resource wm8994_codec_resources
[] = {
136 .start
= WM8994_IRQ_TEMP_SHUT
,
137 .end
= WM8994_IRQ_TEMP_WARN
,
138 .flags
= IORESOURCE_IRQ
,
142 static struct resource wm8994_gpio_resources
[] = {
144 .start
= WM8994_IRQ_GPIO(1),
145 .end
= WM8994_IRQ_GPIO(11),
146 .flags
= IORESOURCE_IRQ
,
150 static struct mfd_cell wm8994_devs
[] = {
152 .name
= "wm8994-codec",
153 .num_resources
= ARRAY_SIZE(wm8994_codec_resources
),
154 .resources
= wm8994_codec_resources
,
158 .name
= "wm8994-gpio",
159 .num_resources
= ARRAY_SIZE(wm8994_gpio_resources
),
160 .resources
= wm8994_gpio_resources
,
161 .pm_runtime_no_callbacks
= true,
166 * Supplies for the main bulk of CODEC; the LDO supplies are ignored
167 * and should be handled via the standard regulator API supply
170 static const char *wm1811_main_supplies
[] = {
182 static const char *wm8994_main_supplies
[] = {
192 static const char *wm8958_main_supplies
[] = {
205 static int wm8994_suspend(struct device
*dev
)
207 struct wm8994
*wm8994
= dev_get_drvdata(dev
);
210 /* Don't actually go through with the suspend if the CODEC is
211 * still active (eg, for audio passthrough from CP. */
212 ret
= wm8994_reg_read(wm8994
, WM8994_POWER_MANAGEMENT_1
);
214 dev_err(dev
, "Failed to read power status: %d\n", ret
);
215 } else if (ret
& WM8994_VMID_SEL_MASK
) {
216 dev_dbg(dev
, "CODEC still active, ignoring suspend\n");
220 ret
= wm8994_reg_read(wm8994
, WM8994_POWER_MANAGEMENT_4
);
222 dev_err(dev
, "Failed to read power status: %d\n", ret
);
223 } else if (ret
& (WM8994_AIF2ADCL_ENA
| WM8994_AIF2ADCR_ENA
|
224 WM8994_AIF1ADC2L_ENA
| WM8994_AIF1ADC2R_ENA
|
225 WM8994_AIF1ADC1L_ENA
| WM8994_AIF1ADC1R_ENA
)) {
226 dev_dbg(dev
, "CODEC still active, ignoring suspend\n");
230 ret
= wm8994_reg_read(wm8994
, WM8994_POWER_MANAGEMENT_5
);
232 dev_err(dev
, "Failed to read power status: %d\n", ret
);
233 } else if (ret
& (WM8994_AIF2DACL_ENA
| WM8994_AIF2DACR_ENA
|
234 WM8994_AIF1DAC2L_ENA
| WM8994_AIF1DAC2R_ENA
|
235 WM8994_AIF1DAC1L_ENA
| WM8994_AIF1DAC1R_ENA
)) {
236 dev_dbg(dev
, "CODEC still active, ignoring suspend\n");
240 switch (wm8994
->type
) {
242 ret
= wm8994_reg_read(wm8994
, WM8958_MIC_DETECT_1
);
244 dev_err(dev
, "Failed to read power status: %d\n", ret
);
245 } else if (ret
& WM8958_MICD_ENA
) {
246 dev_dbg(dev
, "CODEC still active, ignoring suspend\n");
254 /* Disable LDO pulldowns while the device is suspended if we
255 * don't know that something will be driving them. */
256 if (!wm8994
->ldo_ena_always_driven
)
257 wm8994_set_bits(wm8994
, WM8994_PULL_CONTROL_2
,
258 WM8994_LDO1ENA_PD
| WM8994_LDO2ENA_PD
,
259 WM8994_LDO1ENA_PD
| WM8994_LDO2ENA_PD
);
261 /* GPIO configuration state is saved here since we may be configuring
262 * the GPIO alternate functions even if we're not using the gpiolib
265 ret
= wm8994_read(wm8994
, WM8994_GPIO_1
, WM8994_NUM_GPIO_REGS
* 2,
268 dev_err(dev
, "Failed to save GPIO registers: %d\n", ret
);
270 /* For similar reasons we also stash the regulator states */
271 ret
= wm8994_read(wm8994
, WM8994_LDO_1
, WM8994_NUM_LDO_REGS
* 2,
274 dev_err(dev
, "Failed to save LDO registers: %d\n", ret
);
276 /* Explicitly put the device into reset in case regulators
277 * don't get disabled in order to ensure consistent restart.
279 wm8994_reg_write(wm8994
, WM8994_SOFTWARE_RESET
, 0x8994);
281 wm8994
->suspended
= true;
283 ret
= regulator_bulk_disable(wm8994
->num_supplies
,
286 dev_err(dev
, "Failed to disable supplies: %d\n", ret
);
293 static int wm8994_resume(struct device
*dev
)
295 struct wm8994
*wm8994
= dev_get_drvdata(dev
);
298 /* We may have lied to the PM core about suspending */
299 if (!wm8994
->suspended
)
302 ret
= regulator_bulk_enable(wm8994
->num_supplies
,
305 dev_err(dev
, "Failed to enable supplies: %d\n", ret
);
309 /* Write register at a time as we use the cache on the CPU so store
310 * it in native endian.
312 for (i
= 0; i
< ARRAY_SIZE(wm8994
->irq_masks_cur
); i
++) {
313 ret
= wm8994_reg_write(wm8994
, WM8994_INTERRUPT_STATUS_1_MASK
314 + i
, wm8994
->irq_masks_cur
[i
]);
316 dev_err(dev
, "Failed to restore interrupt masks: %d\n",
320 ret
= wm8994_write(wm8994
, WM8994_LDO_1
, WM8994_NUM_LDO_REGS
* 2,
323 dev_err(dev
, "Failed to restore LDO registers: %d\n", ret
);
325 ret
= wm8994_write(wm8994
, WM8994_GPIO_1
, WM8994_NUM_GPIO_REGS
* 2,
328 dev_err(dev
, "Failed to restore GPIO registers: %d\n", ret
);
330 /* Disable LDO pulldowns while the device is active */
331 wm8994_set_bits(wm8994
, WM8994_PULL_CONTROL_2
,
332 WM8994_LDO1ENA_PD
| WM8994_LDO2ENA_PD
,
335 wm8994
->suspended
= false;
341 #ifdef CONFIG_REGULATOR
342 static int wm8994_ldo_in_use(struct wm8994_pdata
*pdata
, int ldo
)
344 struct wm8994_ldo_pdata
*ldo_pdata
;
349 ldo_pdata
= &pdata
->ldo
[ldo
];
351 if (!ldo_pdata
->init_data
)
354 return ldo_pdata
->init_data
->num_consumer_supplies
!= 0;
357 static int wm8994_ldo_in_use(struct wm8994_pdata
*pdata
, int ldo
)
363 static struct regmap_config wm8994_regmap_config
= {
369 * Instantiate the generic non-control parts of the device.
371 static int wm8994_device_init(struct wm8994
*wm8994
, int irq
)
373 struct wm8994_pdata
*pdata
= wm8994
->dev
->platform_data
;
377 dev_set_drvdata(wm8994
->dev
, wm8994
);
379 /* Add the on-chip regulators first for bootstrapping */
380 ret
= mfd_add_devices(wm8994
->dev
, -1,
381 wm8994_regulator_devs
,
382 ARRAY_SIZE(wm8994_regulator_devs
),
385 dev_err(wm8994
->dev
, "Failed to add children: %d\n", ret
);
389 switch (wm8994
->type
) {
391 wm8994
->num_supplies
= ARRAY_SIZE(wm1811_main_supplies
);
394 wm8994
->num_supplies
= ARRAY_SIZE(wm8994_main_supplies
);
397 wm8994
->num_supplies
= ARRAY_SIZE(wm8958_main_supplies
);
404 wm8994
->supplies
= kzalloc(sizeof(struct regulator_bulk_data
) *
405 wm8994
->num_supplies
,
407 if (!wm8994
->supplies
) {
412 switch (wm8994
->type
) {
414 for (i
= 0; i
< ARRAY_SIZE(wm1811_main_supplies
); i
++)
415 wm8994
->supplies
[i
].supply
= wm1811_main_supplies
[i
];
418 for (i
= 0; i
< ARRAY_SIZE(wm8994_main_supplies
); i
++)
419 wm8994
->supplies
[i
].supply
= wm8994_main_supplies
[i
];
422 for (i
= 0; i
< ARRAY_SIZE(wm8958_main_supplies
); i
++)
423 wm8994
->supplies
[i
].supply
= wm8958_main_supplies
[i
];
430 ret
= regulator_bulk_get(wm8994
->dev
, wm8994
->num_supplies
,
433 dev_err(wm8994
->dev
, "Failed to get supplies: %d\n", ret
);
437 ret
= regulator_bulk_enable(wm8994
->num_supplies
,
440 dev_err(wm8994
->dev
, "Failed to enable supplies: %d\n", ret
);
444 ret
= wm8994_reg_read(wm8994
, WM8994_SOFTWARE_RESET
);
446 dev_err(wm8994
->dev
, "Failed to read ID register\n");
452 if (wm8994
->type
!= WM1811
)
453 dev_warn(wm8994
->dev
, "Device registered as type %d\n",
455 wm8994
->type
= WM1811
;
459 if (wm8994
->type
!= WM8994
)
460 dev_warn(wm8994
->dev
, "Device registered as type %d\n",
462 wm8994
->type
= WM8994
;
466 if (wm8994
->type
!= WM8958
)
467 dev_warn(wm8994
->dev
, "Device registered as type %d\n",
469 wm8994
->type
= WM8958
;
472 dev_err(wm8994
->dev
, "Device is not a WM8994, ID is %x\n",
478 ret
= wm8994_reg_read(wm8994
, WM8994_CHIP_REVISION
);
480 dev_err(wm8994
->dev
, "Failed to read revision register: %d\n",
485 switch (wm8994
->type
) {
490 dev_warn(wm8994
->dev
,
491 "revision %c not fully supported\n",
502 dev_info(wm8994
->dev
, "%s revision %c\n", devname
, 'A' + ret
);
505 wm8994
->irq_base
= pdata
->irq_base
;
506 wm8994
->gpio_base
= pdata
->gpio_base
;
508 /* GPIO configuration is only applied if it's non-zero */
509 for (i
= 0; i
< ARRAY_SIZE(pdata
->gpio_defaults
); i
++) {
510 if (pdata
->gpio_defaults
[i
]) {
511 wm8994_set_bits(wm8994
, WM8994_GPIO_1
+ i
,
513 pdata
->gpio_defaults
[i
]);
517 wm8994
->ldo_ena_always_driven
= pdata
->ldo_ena_always_driven
;
520 /* Disable LDO pulldowns while the device is active */
521 wm8994_set_bits(wm8994
, WM8994_PULL_CONTROL_2
,
522 WM8994_LDO1ENA_PD
| WM8994_LDO2ENA_PD
,
525 /* In some system designs where the regulators are not in use,
526 * we can achieve a small reduction in leakage currents by
527 * floating LDO outputs. This bit makes no difference if the
528 * LDOs are enabled, it only affects cases where the LDOs were
529 * in operation and are then disabled.
531 for (i
= 0; i
< WM8994_NUM_LDO_REGS
; i
++) {
532 if (wm8994_ldo_in_use(pdata
, i
))
533 wm8994_set_bits(wm8994
, WM8994_LDO_1
+ i
,
534 WM8994_LDO1_DISCH
, WM8994_LDO1_DISCH
);
536 wm8994_set_bits(wm8994
, WM8994_LDO_1
+ i
,
537 WM8994_LDO1_DISCH
, 0);
540 wm8994_irq_init(wm8994
);
542 ret
= mfd_add_devices(wm8994
->dev
, -1,
543 wm8994_devs
, ARRAY_SIZE(wm8994_devs
),
546 dev_err(wm8994
->dev
, "Failed to add children: %d\n", ret
);
550 pm_runtime_enable(wm8994
->dev
);
551 pm_runtime_resume(wm8994
->dev
);
556 wm8994_irq_exit(wm8994
);
558 regulator_bulk_disable(wm8994
->num_supplies
,
561 regulator_bulk_free(wm8994
->num_supplies
, wm8994
->supplies
);
563 kfree(wm8994
->supplies
);
565 regmap_exit(wm8994
->regmap
);
566 mfd_remove_devices(wm8994
->dev
);
571 static void wm8994_device_exit(struct wm8994
*wm8994
)
573 pm_runtime_disable(wm8994
->dev
);
574 mfd_remove_devices(wm8994
->dev
);
575 wm8994_irq_exit(wm8994
);
576 regulator_bulk_disable(wm8994
->num_supplies
,
578 regulator_bulk_free(wm8994
->num_supplies
, wm8994
->supplies
);
579 kfree(wm8994
->supplies
);
580 regmap_exit(wm8994
->regmap
);
584 static int wm8994_i2c_probe(struct i2c_client
*i2c
,
585 const struct i2c_device_id
*id
)
587 struct wm8994
*wm8994
;
590 wm8994
= kzalloc(sizeof(struct wm8994
), GFP_KERNEL
);
594 i2c_set_clientdata(i2c
, wm8994
);
595 wm8994
->dev
= &i2c
->dev
;
596 wm8994
->irq
= i2c
->irq
;
597 wm8994
->type
= id
->driver_data
;
599 wm8994
->regmap
= regmap_init_i2c(i2c
, &wm8994_regmap_config
);
600 if (IS_ERR(wm8994
->regmap
)) {
601 ret
= PTR_ERR(wm8994
->regmap
);
602 dev_err(wm8994
->dev
, "Failed to allocate register map: %d\n",
608 return wm8994_device_init(wm8994
, i2c
->irq
);
611 static int wm8994_i2c_remove(struct i2c_client
*i2c
)
613 struct wm8994
*wm8994
= i2c_get_clientdata(i2c
);
615 wm8994_device_exit(wm8994
);
620 static const struct i2c_device_id wm8994_i2c_id
[] = {
621 { "wm1811", WM1811
},
622 { "wm8994", WM8994
},
623 { "wm8958", WM8958
},
626 MODULE_DEVICE_TABLE(i2c
, wm8994_i2c_id
);
628 static UNIVERSAL_DEV_PM_OPS(wm8994_pm_ops
, wm8994_suspend
, wm8994_resume
,
631 static struct i2c_driver wm8994_i2c_driver
= {
634 .owner
= THIS_MODULE
,
635 .pm
= &wm8994_pm_ops
,
637 .probe
= wm8994_i2c_probe
,
638 .remove
= wm8994_i2c_remove
,
639 .id_table
= wm8994_i2c_id
,
642 static int __init
wm8994_i2c_init(void)
646 ret
= i2c_add_driver(&wm8994_i2c_driver
);
648 pr_err("Failed to register wm8994 I2C driver: %d\n", ret
);
652 module_init(wm8994_i2c_init
);
654 static void __exit
wm8994_i2c_exit(void)
656 i2c_del_driver(&wm8994_i2c_driver
);
658 module_exit(wm8994_i2c_exit
);
660 MODULE_DESCRIPTION("Core support for the WM8994 audio CODEC");
661 MODULE_LICENSE("GPL");
662 MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.com>");