blob: fd3154d86901fcf3865139d42bc997d72b4ff608 [file] [log] [blame]
Mark Brownb667a452012-06-14 18:14:00 +01001/*
2 * arizona-micsupp.c -- Microphone supply for Arizona devices
3 *
4 * Copyright 2012 Wolfson Microelectronics PLC.
5 *
6 * Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
7 *
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.
12 */
13
14#include <linux/module.h>
15#include <linux/moduleparam.h>
16#include <linux/init.h>
17#include <linux/bitops.h>
18#include <linux/err.h>
19#include <linux/platform_device.h>
20#include <linux/regulator/driver.h>
21#include <linux/regulator/machine.h>
22#include <linux/gpio.h>
23#include <linux/slab.h>
Mark Browne6ed9052013-01-10 19:14:11 +000024#include <linux/workqueue.h>
25#include <sound/soc.h>
Mark Brownb667a452012-06-14 18:14:00 +010026
27#include <linux/mfd/arizona/core.h>
28#include <linux/mfd/arizona/pdata.h>
29#include <linux/mfd/arizona/registers.h>
30
31#define ARIZONA_MICSUPP_MAX_SELECTOR 0x1f
32
33struct arizona_micsupp {
34 struct regulator_dev *regulator;
35 struct arizona *arizona;
36
37 struct regulator_consumer_supply supply;
38 struct regulator_init_data init_data;
Mark Browne6ed9052013-01-10 19:14:11 +000039
40 struct work_struct check_cp_work;
Mark Brownb667a452012-06-14 18:14:00 +010041};
42
43static int arizona_micsupp_list_voltage(struct regulator_dev *rdev,
44 unsigned int selector)
45{
46 if (selector > ARIZONA_MICSUPP_MAX_SELECTOR)
47 return -EINVAL;
48
49 if (selector == ARIZONA_MICSUPP_MAX_SELECTOR)
50 return 3300000;
51 else
52 return (selector * 50000) + 1700000;
53}
54
55static int arizona_micsupp_map_voltage(struct regulator_dev *rdev,
56 int min_uV, int max_uV)
57{
58 unsigned int voltage;
59 int selector;
60
61 if (min_uV < 1700000)
62 min_uV = 1700000;
63
Axel Lin7f217d32012-06-26 18:37:58 +080064 if (min_uV > 3200000)
Mark Brownb667a452012-06-14 18:14:00 +010065 selector = ARIZONA_MICSUPP_MAX_SELECTOR;
66 else
67 selector = DIV_ROUND_UP(min_uV - 1700000, 50000);
68
69 if (selector < 0)
70 return -EINVAL;
71
72 voltage = arizona_micsupp_list_voltage(rdev, selector);
73 if (voltage < min_uV || voltage > max_uV)
74 return -EINVAL;
75
76 return selector;
77}
78
Mark Browne6ed9052013-01-10 19:14:11 +000079static void arizona_micsupp_check_cp(struct work_struct *work)
80{
81 struct arizona_micsupp *micsupp =
82 container_of(work, struct arizona_micsupp, check_cp_work);
83 struct snd_soc_dapm_context *dapm = micsupp->arizona->dapm;
84 struct arizona *arizona = micsupp->arizona;
85 struct regmap *regmap = arizona->regmap;
86 unsigned int reg;
87 int ret;
88
89 ret = regmap_read(regmap, ARIZONA_MIC_CHARGE_PUMP_1, &reg);
90 if (ret != 0) {
91 dev_err(arizona->dev, "Failed to read CP state: %d\n", ret);
92 return;
93 }
94
95 if (dapm) {
96 if ((reg & (ARIZONA_CPMIC_ENA | ARIZONA_CPMIC_BYPASS)) ==
97 ARIZONA_CPMIC_ENA)
98 snd_soc_dapm_force_enable_pin(dapm, "MICSUPP");
99 else
100 snd_soc_dapm_disable_pin(dapm, "MICSUPP");
101
102 snd_soc_dapm_sync(dapm);
103 }
104}
105
106static int arizona_micsupp_enable(struct regulator_dev *rdev)
107{
108 struct arizona_micsupp *micsupp = rdev_get_drvdata(rdev);
109 int ret;
110
111 ret = regulator_enable_regmap(rdev);
112
113 if (ret == 0)
114 schedule_work(&micsupp->check_cp_work);
115
116 return ret;
117}
118
119static int arizona_micsupp_disable(struct regulator_dev *rdev)
120{
121 struct arizona_micsupp *micsupp = rdev_get_drvdata(rdev);
122 int ret;
123
124 ret = regulator_disable_regmap(rdev);
125 if (ret == 0)
126 schedule_work(&micsupp->check_cp_work);
127
128 return ret;
129}
130
131static int arizona_micsupp_set_bypass(struct regulator_dev *rdev, bool ena)
132{
133 struct arizona_micsupp *micsupp = rdev_get_drvdata(rdev);
134 int ret;
135
136 ret = regulator_set_bypass_regmap(rdev, ena);
137 if (ret == 0)
138 schedule_work(&micsupp->check_cp_work);
139
140 return ret;
141}
142
Mark Brownb667a452012-06-14 18:14:00 +0100143static struct regulator_ops arizona_micsupp_ops = {
Mark Browne6ed9052013-01-10 19:14:11 +0000144 .enable = arizona_micsupp_enable,
145 .disable = arizona_micsupp_disable,
Mark Brownb667a452012-06-14 18:14:00 +0100146 .is_enabled = regulator_is_enabled_regmap,
147
148 .list_voltage = arizona_micsupp_list_voltage,
149 .map_voltage = arizona_micsupp_map_voltage,
150
151 .get_voltage_sel = regulator_get_voltage_sel_regmap,
152 .set_voltage_sel = regulator_set_voltage_sel_regmap,
Mark Browne477ce02012-08-27 16:04:47 -0700153
154 .get_bypass = regulator_get_bypass_regmap,
Mark Browne6ed9052013-01-10 19:14:11 +0000155 .set_bypass = arizona_micsupp_set_bypass,
Mark Brownb667a452012-06-14 18:14:00 +0100156};
157
158static const struct regulator_desc arizona_micsupp = {
159 .name = "MICVDD",
160 .supply_name = "CPVDD",
161 .type = REGULATOR_VOLTAGE,
162 .n_voltages = ARIZONA_MICSUPP_MAX_SELECTOR + 1,
163 .ops = &arizona_micsupp_ops,
164
165 .vsel_reg = ARIZONA_LDO2_CONTROL_1,
166 .vsel_mask = ARIZONA_LDO2_VSEL_MASK,
167 .enable_reg = ARIZONA_MIC_CHARGE_PUMP_1,
168 .enable_mask = ARIZONA_CPMIC_ENA,
Mark Browne477ce02012-08-27 16:04:47 -0700169 .bypass_reg = ARIZONA_MIC_CHARGE_PUMP_1,
170 .bypass_mask = ARIZONA_CPMIC_BYPASS,
Mark Brownb667a452012-06-14 18:14:00 +0100171
Mark Brown95072812012-11-27 14:55:49 +0000172 .enable_time = 3000,
173
Mark Brownb667a452012-06-14 18:14:00 +0100174 .owner = THIS_MODULE,
175};
176
Charles Keepaxd2e74912013-11-15 13:48:23 +0000177static const struct regulator_linear_range arizona_micsupp_ext_ranges[] = {
178 REGULATOR_LINEAR_RANGE(900000, 0, 0x14, 25000),
179 REGULATOR_LINEAR_RANGE(1500000, 0x15, 0x27, 100000),
180};
181
182static const struct regulator_desc arizona_micsupp_ext = {
183 .name = "MICVDD",
184 .supply_name = "CPVDD",
185 .type = REGULATOR_VOLTAGE,
186 .n_voltages = 40,
187 .ops = &arizona_micsupp_ops,
188
189 .vsel_reg = ARIZONA_LDO2_CONTROL_1,
190 .vsel_mask = ARIZONA_LDO2_VSEL_MASK,
191 .enable_reg = ARIZONA_MIC_CHARGE_PUMP_1,
192 .enable_mask = ARIZONA_CPMIC_ENA,
193 .bypass_reg = ARIZONA_MIC_CHARGE_PUMP_1,
194 .bypass_mask = ARIZONA_CPMIC_BYPASS,
195
196 .linear_ranges = arizona_micsupp_ext_ranges,
197 .n_linear_ranges = ARRAY_SIZE(arizona_micsupp_ext_ranges),
198
199 .enable_time = 3000,
200
201 .owner = THIS_MODULE,
202};
203
Mark Brownb667a452012-06-14 18:14:00 +0100204static const struct regulator_init_data arizona_micsupp_default = {
205 .constraints = {
206 .valid_ops_mask = REGULATOR_CHANGE_STATUS |
Mark Brown9fc50a22013-01-10 19:31:47 +0000207 REGULATOR_CHANGE_VOLTAGE |
208 REGULATOR_CHANGE_BYPASS,
Mark Brownb667a452012-06-14 18:14:00 +0100209 .min_uV = 1700000,
210 .max_uV = 3300000,
211 },
212
213 .num_consumer_supplies = 1,
214};
215
Charles Keepaxd2e74912013-11-15 13:48:23 +0000216static const struct regulator_init_data arizona_micsupp_ext_default = {
217 .constraints = {
218 .valid_ops_mask = REGULATOR_CHANGE_STATUS |
219 REGULATOR_CHANGE_VOLTAGE |
220 REGULATOR_CHANGE_BYPASS,
221 .min_uV = 900000,
222 .max_uV = 3300000,
223 },
224
225 .num_consumer_supplies = 1,
226};
227
Bill Pembertona5023572012-11-19 13:22:22 -0500228static int arizona_micsupp_probe(struct platform_device *pdev)
Mark Brownb667a452012-06-14 18:14:00 +0100229{
230 struct arizona *arizona = dev_get_drvdata(pdev->dev.parent);
Charles Keepaxd2e74912013-11-15 13:48:23 +0000231 const struct regulator_desc *desc;
Mark Brownb667a452012-06-14 18:14:00 +0100232 struct regulator_config config = { };
233 struct arizona_micsupp *micsupp;
234 int ret;
235
236 micsupp = devm_kzalloc(&pdev->dev, sizeof(*micsupp), GFP_KERNEL);
237 if (micsupp == NULL) {
238 dev_err(&pdev->dev, "Unable to allocate private data\n");
239 return -ENOMEM;
240 }
241
242 micsupp->arizona = arizona;
Mark Browne6ed9052013-01-10 19:14:11 +0000243 INIT_WORK(&micsupp->check_cp_work, arizona_micsupp_check_cp);
Mark Brownb667a452012-06-14 18:14:00 +0100244
245 /*
246 * Since the chip usually supplies itself we provide some
247 * default init_data for it. This will be overridden with
248 * platform data if provided.
249 */
Charles Keepaxd2e74912013-11-15 13:48:23 +0000250 switch (arizona->type) {
251 case WM5110:
252 desc = &arizona_micsupp_ext;
253 micsupp->init_data = arizona_micsupp_ext_default;
254 break;
255 default:
256 desc = &arizona_micsupp;
257 micsupp->init_data = arizona_micsupp_default;
258 break;
259 }
260
Mark Brownb667a452012-06-14 18:14:00 +0100261 micsupp->init_data.consumer_supplies = &micsupp->supply;
262 micsupp->supply.supply = "MICVDD";
263 micsupp->supply.dev_name = dev_name(arizona->dev);
264
265 config.dev = arizona->dev;
266 config.driver_data = micsupp;
267 config.regmap = arizona->regmap;
268
269 if (arizona->pdata.micvdd)
270 config.init_data = arizona->pdata.micvdd;
271 else
272 config.init_data = &micsupp->init_data;
273
Mark Brown6dc027c2012-07-04 12:50:02 +0100274 /* Default to regulated mode until the API supports bypass */
275 regmap_update_bits(arizona->regmap, ARIZONA_MIC_CHARGE_PUMP_1,
276 ARIZONA_CPMIC_BYPASS, 0);
277
Mark Brownb6b77092013-08-31 11:57:00 +0100278 micsupp->regulator = devm_regulator_register(&pdev->dev,
Charles Keepaxd2e74912013-11-15 13:48:23 +0000279 desc,
Mark Brownb6b77092013-08-31 11:57:00 +0100280 &config);
Mark Brownb667a452012-06-14 18:14:00 +0100281 if (IS_ERR(micsupp->regulator)) {
282 ret = PTR_ERR(micsupp->regulator);
283 dev_err(arizona->dev, "Failed to register mic supply: %d\n",
284 ret);
285 return ret;
286 }
287
288 platform_set_drvdata(pdev, micsupp);
289
290 return 0;
291}
292
Mark Brownb667a452012-06-14 18:14:00 +0100293static struct platform_driver arizona_micsupp_driver = {
294 .probe = arizona_micsupp_probe,
Mark Brownb667a452012-06-14 18:14:00 +0100295 .driver = {
296 .name = "arizona-micsupp",
297 .owner = THIS_MODULE,
298 },
299};
300
301module_platform_driver(arizona_micsupp_driver);
302
303/* Module information */
304MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.com>");
305MODULE_DESCRIPTION("Arizona microphone supply driver");
306MODULE_LICENSE("GPL");
307MODULE_ALIAS("platform:arizona-micsupp");