blob: b27c396037d4af1c03007b296f9c21b77957265a [file] [log] [blame]
Peter Ujfalusi493b67e2009-10-09 15:55:41 +03001/*
2 * ALSA SoC Texas Instruments TPA6130A2 headset stereo amplifier driver
3 *
4 * Copyright (C) Nokia Corporation
5 *
Peter Ujfalusib4079ef2011-05-03 18:12:41 +03006 * Author: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusi493b67e2009-10-09 15:55:41 +03007 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * version 2 as published by the Free Software Foundation.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20 * 02110-1301 USA
21 */
22
23#include <linux/module.h>
24#include <linux/errno.h>
25#include <linux/device.h>
26#include <linux/i2c.h>
27#include <linux/gpio.h>
Ilkka Koskinen7c4e6492009-12-09 12:05:50 +020028#include <linux/regulator/consumer.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090029#include <linux/slab.h>
Peter Ujfalusi493b67e2009-10-09 15:55:41 +030030#include <sound/tpa6130a2-plat.h>
31#include <sound/soc.h>
Peter Ujfalusi493b67e2009-10-09 15:55:41 +030032#include <sound/tlv.h>
Sebastian Reichelf95a4882013-10-23 14:03:28 +020033#include <linux/of_gpio.h>
Peter Ujfalusi493b67e2009-10-09 15:55:41 +030034
35#include "tpa6130a2.h"
36
Peter Ujfalusi0722d052011-08-30 14:39:54 +030037enum tpa_model {
38 TPA6130A2,
39 TPA6140A2,
40};
41
Mark Brownebab1b12009-10-09 19:13:47 +010042static struct i2c_client *tpa6130a2_client;
Peter Ujfalusi493b67e2009-10-09 15:55:41 +030043
44/* This struct is used to save the context */
45struct tpa6130a2_data {
46 struct mutex mutex;
47 unsigned char regs[TPA6130A2_CACHEREGNUM];
Jarkko Nikulaad8332c2010-05-19 10:52:28 +030048 struct regulator *supply;
Peter Ujfalusi493b67e2009-10-09 15:55:41 +030049 int power_gpio;
Peter Ujfalusid5876ce2010-11-30 16:00:00 +020050 u8 power_state:1;
Peter Ujfalusie5e5b312010-05-04 11:08:18 +030051 enum tpa_model id;
Peter Ujfalusi493b67e2009-10-09 15:55:41 +030052};
53
54static int tpa6130a2_i2c_read(int reg)
55{
56 struct tpa6130a2_data *data;
57 int val;
58
Takashi Iwai773392b2013-11-05 18:39:51 +010059 if (WARN_ON(!tpa6130a2_client))
60 return -EINVAL;
Peter Ujfalusi493b67e2009-10-09 15:55:41 +030061 data = i2c_get_clientdata(tpa6130a2_client);
62
63 /* If powered off, return the cached value */
64 if (data->power_state) {
65 val = i2c_smbus_read_byte_data(tpa6130a2_client, reg);
66 if (val < 0)
67 dev_err(&tpa6130a2_client->dev, "Read failed\n");
68 else
69 data->regs[reg] = val;
70 } else {
71 val = data->regs[reg];
72 }
73
74 return val;
75}
76
77static int tpa6130a2_i2c_write(int reg, u8 value)
78{
79 struct tpa6130a2_data *data;
80 int val = 0;
81
Takashi Iwai773392b2013-11-05 18:39:51 +010082 if (WARN_ON(!tpa6130a2_client))
83 return -EINVAL;
Peter Ujfalusi493b67e2009-10-09 15:55:41 +030084 data = i2c_get_clientdata(tpa6130a2_client);
85
86 if (data->power_state) {
87 val = i2c_smbus_write_byte_data(tpa6130a2_client, reg, value);
Axel Lin7a479b02010-11-23 14:14:07 +080088 if (val < 0) {
Peter Ujfalusi493b67e2009-10-09 15:55:41 +030089 dev_err(&tpa6130a2_client->dev, "Write failed\n");
Axel Lin7a479b02010-11-23 14:14:07 +080090 return val;
91 }
Peter Ujfalusi493b67e2009-10-09 15:55:41 +030092 }
93
94 /* Either powered on or off, we save the context */
95 data->regs[reg] = value;
96
97 return val;
98}
99
100static u8 tpa6130a2_read(int reg)
101{
102 struct tpa6130a2_data *data;
103
Takashi Iwai773392b2013-11-05 18:39:51 +0100104 if (WARN_ON(!tpa6130a2_client))
105 return 0;
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300106 data = i2c_get_clientdata(tpa6130a2_client);
107
108 return data->regs[reg];
109}
110
Peter Ujfalusi872a64d2010-10-21 15:03:03 +0300111static int tpa6130a2_initialize(void)
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300112{
113 struct tpa6130a2_data *data;
Peter Ujfalusi872a64d2010-10-21 15:03:03 +0300114 int i, ret = 0;
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300115
Takashi Iwai773392b2013-11-05 18:39:51 +0100116 if (WARN_ON(!tpa6130a2_client))
117 return -EINVAL;
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300118 data = i2c_get_clientdata(tpa6130a2_client);
119
Peter Ujfalusi872a64d2010-10-21 15:03:03 +0300120 for (i = 1; i < TPA6130A2_REG_VERSION; i++) {
121 ret = tpa6130a2_i2c_write(i, data->regs[i]);
122 if (ret < 0)
123 break;
124 }
125
126 return ret;
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300127}
128
Peter Ujfalusid5876ce2010-11-30 16:00:00 +0200129static int tpa6130a2_power(u8 power)
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300130{
131 struct tpa6130a2_data *data;
132 u8 val;
Jarkko Nikula75e3f312010-11-03 16:39:00 +0200133 int ret = 0;
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300134
Takashi Iwai773392b2013-11-05 18:39:51 +0100135 if (WARN_ON(!tpa6130a2_client))
136 return -EINVAL;
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300137 data = i2c_get_clientdata(tpa6130a2_client);
138
139 mutex_lock(&data->mutex);
Peter Ujfalusid5876ce2010-11-30 16:00:00 +0200140 if (power == data->power_state)
141 goto exit;
Ilkka Koskinen7c4e6492009-12-09 12:05:50 +0200142
Peter Ujfalusid5876ce2010-11-30 16:00:00 +0200143 if (power) {
Jarkko Nikulaad8332c2010-05-19 10:52:28 +0300144 ret = regulator_enable(data->supply);
Ilkka Koskinen7c4e6492009-12-09 12:05:50 +0200145 if (ret != 0) {
146 dev_err(&tpa6130a2_client->dev,
Jarkko Nikulaad8332c2010-05-19 10:52:28 +0300147 "Failed to enable supply: %d\n", ret);
Ilkka Koskinen7c4e6492009-12-09 12:05:50 +0200148 goto exit;
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300149 }
Jarkko Nikula0656f6c2010-11-08 10:57:57 +0200150 /* Power on */
151 if (data->power_gpio >= 0)
152 gpio_set_value(data->power_gpio, 1);
Ilkka Koskinen7c4e6492009-12-09 12:05:50 +0200153
154 data->power_state = 1;
Peter Ujfalusi872a64d2010-10-21 15:03:03 +0300155 ret = tpa6130a2_initialize();
156 if (ret < 0) {
157 dev_err(&tpa6130a2_client->dev,
158 "Failed to initialize chip\n");
159 if (data->power_gpio >= 0)
160 gpio_set_value(data->power_gpio, 0);
161 regulator_disable(data->supply);
162 data->power_state = 0;
163 goto exit;
164 }
Peter Ujfalusid5876ce2010-11-30 16:00:00 +0200165 } else {
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300166 /* set SWS */
167 val = tpa6130a2_read(TPA6130A2_REG_CONTROL);
168 val |= TPA6130A2_SWS;
169 tpa6130a2_i2c_write(TPA6130A2_REG_CONTROL, val);
Ilkka Koskinen7c4e6492009-12-09 12:05:50 +0200170
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300171 /* Power off */
Ilkka Koskinen7c4e6492009-12-09 12:05:50 +0200172 if (data->power_gpio >= 0)
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300173 gpio_set_value(data->power_gpio, 0);
Ilkka Koskinen7c4e6492009-12-09 12:05:50 +0200174
Jarkko Nikulaad8332c2010-05-19 10:52:28 +0300175 ret = regulator_disable(data->supply);
Ilkka Koskinen7c4e6492009-12-09 12:05:50 +0200176 if (ret != 0) {
177 dev_err(&tpa6130a2_client->dev,
Jarkko Nikulaad8332c2010-05-19 10:52:28 +0300178 "Failed to disable supply: %d\n", ret);
Ilkka Koskinen7c4e6492009-12-09 12:05:50 +0200179 goto exit;
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300180 }
Ilkka Koskinen7c4e6492009-12-09 12:05:50 +0200181
182 data->power_state = 0;
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300183 }
Ilkka Koskinen7c4e6492009-12-09 12:05:50 +0200184
185exit:
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300186 mutex_unlock(&data->mutex);
Ilkka Koskinen7c4e6492009-12-09 12:05:50 +0200187 return ret;
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300188}
189
Peter Ujfalusibd843ed2010-05-07 14:24:11 +0300190static int tpa6130a2_get_volsw(struct snd_kcontrol *kcontrol,
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300191 struct snd_ctl_elem_value *ucontrol)
192{
193 struct soc_mixer_control *mc =
194 (struct soc_mixer_control *)kcontrol->private_value;
195 struct tpa6130a2_data *data;
196 unsigned int reg = mc->reg;
197 unsigned int shift = mc->shift;
Peter Ujfalusibd843ed2010-05-07 14:24:11 +0300198 int max = mc->max;
199 unsigned int mask = (1 << fls(max)) - 1;
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300200 unsigned int invert = mc->invert;
201
Takashi Iwai773392b2013-11-05 18:39:51 +0100202 if (WARN_ON(!tpa6130a2_client))
203 return -EINVAL;
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300204 data = i2c_get_clientdata(tpa6130a2_client);
205
206 mutex_lock(&data->mutex);
207
208 ucontrol->value.integer.value[0] =
209 (tpa6130a2_read(reg) >> shift) & mask;
210
211 if (invert)
212 ucontrol->value.integer.value[0] =
Peter Ujfalusibd843ed2010-05-07 14:24:11 +0300213 max - ucontrol->value.integer.value[0];
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300214
215 mutex_unlock(&data->mutex);
216 return 0;
217}
218
Peter Ujfalusibd843ed2010-05-07 14:24:11 +0300219static int tpa6130a2_put_volsw(struct snd_kcontrol *kcontrol,
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300220 struct snd_ctl_elem_value *ucontrol)
221{
222 struct soc_mixer_control *mc =
223 (struct soc_mixer_control *)kcontrol->private_value;
224 struct tpa6130a2_data *data;
225 unsigned int reg = mc->reg;
226 unsigned int shift = mc->shift;
Peter Ujfalusibd843ed2010-05-07 14:24:11 +0300227 int max = mc->max;
228 unsigned int mask = (1 << fls(max)) - 1;
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300229 unsigned int invert = mc->invert;
230 unsigned int val = (ucontrol->value.integer.value[0] & mask);
231 unsigned int val_reg;
232
Takashi Iwai773392b2013-11-05 18:39:51 +0100233 if (WARN_ON(!tpa6130a2_client))
234 return -EINVAL;
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300235 data = i2c_get_clientdata(tpa6130a2_client);
236
237 if (invert)
Peter Ujfalusibd843ed2010-05-07 14:24:11 +0300238 val = max - val;
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300239
240 mutex_lock(&data->mutex);
241
242 val_reg = tpa6130a2_read(reg);
243 if (((val_reg >> shift) & mask) == val) {
244 mutex_unlock(&data->mutex);
245 return 0;
246 }
247
248 val_reg &= ~(mask << shift);
249 val_reg |= val << shift;
250 tpa6130a2_i2c_write(reg, val_reg);
251
252 mutex_unlock(&data->mutex);
253
254 return 1;
255}
256
257/*
258 * TPA6130 volume. From -59.5 to 4 dB with increasing step size when going
259 * down in gain.
260 */
261static const unsigned int tpa6130_tlv[] = {
262 TLV_DB_RANGE_HEAD(10),
263 0, 1, TLV_DB_SCALE_ITEM(-5950, 600, 0),
264 2, 3, TLV_DB_SCALE_ITEM(-5000, 250, 0),
265 4, 5, TLV_DB_SCALE_ITEM(-4550, 160, 0),
266 6, 7, TLV_DB_SCALE_ITEM(-4140, 190, 0),
267 8, 9, TLV_DB_SCALE_ITEM(-3650, 120, 0),
268 10, 11, TLV_DB_SCALE_ITEM(-3330, 160, 0),
269 12, 13, TLV_DB_SCALE_ITEM(-3040, 180, 0),
270 14, 20, TLV_DB_SCALE_ITEM(-2710, 110, 0),
271 21, 37, TLV_DB_SCALE_ITEM(-1960, 74, 0),
272 38, 63, TLV_DB_SCALE_ITEM(-720, 45, 0),
273};
274
275static const struct snd_kcontrol_new tpa6130a2_controls[] = {
276 SOC_SINGLE_EXT_TLV("TPA6130A2 Headphone Playback Volume",
277 TPA6130A2_REG_VOL_MUTE, 0, 0x3f, 0,
Peter Ujfalusibd843ed2010-05-07 14:24:11 +0300278 tpa6130a2_get_volsw, tpa6130a2_put_volsw,
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300279 tpa6130_tlv),
280};
281
Peter Ujfalusie5e5b312010-05-04 11:08:18 +0300282static const unsigned int tpa6140_tlv[] = {
283 TLV_DB_RANGE_HEAD(3),
284 0, 8, TLV_DB_SCALE_ITEM(-5900, 400, 0),
285 9, 16, TLV_DB_SCALE_ITEM(-2500, 200, 0),
286 17, 31, TLV_DB_SCALE_ITEM(-1000, 100, 0),
287};
288
289static const struct snd_kcontrol_new tpa6140a2_controls[] = {
Peter Ujfalusi826e9622010-05-07 14:24:10 +0300290 SOC_SINGLE_EXT_TLV("TPA6140A2 Headphone Playback Volume",
291 TPA6130A2_REG_VOL_MUTE, 1, 0x1f, 0,
Peter Ujfalusibd843ed2010-05-07 14:24:11 +0300292 tpa6130a2_get_volsw, tpa6130a2_put_volsw,
Peter Ujfalusi826e9622010-05-07 14:24:10 +0300293 tpa6140_tlv),
Peter Ujfalusie5e5b312010-05-04 11:08:18 +0300294};
295
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300296/*
297 * Enable or disable channel (left or right)
298 * The bit number for mute and amplifier are the same per channel:
299 * bit 6: Right channel
300 * bit 7: Left channel
301 * in both registers.
302 */
303static void tpa6130a2_channel_enable(u8 channel, int enable)
304{
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300305 u8 val;
306
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300307 if (enable) {
308 /* Enable channel */
309 /* Enable amplifier */
310 val = tpa6130a2_read(TPA6130A2_REG_CONTROL);
311 val |= channel;
Peter Ujfalusid534bac2010-11-30 16:00:01 +0200312 val &= ~TPA6130A2_SWS;
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300313 tpa6130a2_i2c_write(TPA6130A2_REG_CONTROL, val);
314
315 /* Unmute channel */
316 val = tpa6130a2_read(TPA6130A2_REG_VOL_MUTE);
317 val &= ~channel;
318 tpa6130a2_i2c_write(TPA6130A2_REG_VOL_MUTE, val);
319 } else {
320 /* Disable channel */
321 /* Mute channel */
322 val = tpa6130a2_read(TPA6130A2_REG_VOL_MUTE);
323 val |= channel;
324 tpa6130a2_i2c_write(TPA6130A2_REG_VOL_MUTE, val);
325
326 /* Disable amplifier */
327 val = tpa6130a2_read(TPA6130A2_REG_CONTROL);
328 val &= ~channel;
329 tpa6130a2_i2c_write(TPA6130A2_REG_CONTROL, val);
330 }
331}
332
Peter Ujfalusi39646872010-12-02 09:29:56 +0200333int tpa6130a2_stereo_enable(struct snd_soc_codec *codec, int enable)
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300334{
Ilkka Koskinen7c4e6492009-12-09 12:05:50 +0200335 int ret = 0;
Peter Ujfalusi39646872010-12-02 09:29:56 +0200336 if (enable) {
Ilkka Koskinen7c4e6492009-12-09 12:05:50 +0200337 ret = tpa6130a2_power(1);
Peter Ujfalusi39646872010-12-02 09:29:56 +0200338 if (ret < 0)
339 return ret;
340 tpa6130a2_channel_enable(TPA6130A2_HP_EN_R | TPA6130A2_HP_EN_L,
341 1);
342 } else {
343 tpa6130a2_channel_enable(TPA6130A2_HP_EN_R | TPA6130A2_HP_EN_L,
344 0);
Ilkka Koskinen7c4e6492009-12-09 12:05:50 +0200345 ret = tpa6130a2_power(0);
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300346 }
Peter Ujfalusi39646872010-12-02 09:29:56 +0200347
Ilkka Koskinen7c4e6492009-12-09 12:05:50 +0200348 return ret;
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300349}
Peter Ujfalusi39646872010-12-02 09:29:56 +0200350EXPORT_SYMBOL_GPL(tpa6130a2_stereo_enable);
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300351
352int tpa6130a2_add_controls(struct snd_soc_codec *codec)
353{
Peter Ujfalusie5e5b312010-05-04 11:08:18 +0300354 struct tpa6130a2_data *data;
355
Peter Ujfalusi872a64d2010-10-21 15:03:03 +0300356 if (tpa6130a2_client == NULL)
357 return -ENODEV;
358
Peter Ujfalusie5e5b312010-05-04 11:08:18 +0300359 data = i2c_get_clientdata(tpa6130a2_client);
360
Peter Ujfalusie5e5b312010-05-04 11:08:18 +0300361 if (data->id == TPA6140A2)
Liam Girdwood022658b2012-02-03 17:43:09 +0000362 return snd_soc_add_codec_controls(codec, tpa6140a2_controls,
Peter Ujfalusie5e5b312010-05-04 11:08:18 +0300363 ARRAY_SIZE(tpa6140a2_controls));
364 else
Liam Girdwood022658b2012-02-03 17:43:09 +0000365 return snd_soc_add_codec_controls(codec, tpa6130a2_controls,
Peter Ujfalusie5e5b312010-05-04 11:08:18 +0300366 ARRAY_SIZE(tpa6130a2_controls));
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300367}
368EXPORT_SYMBOL_GPL(tpa6130a2_add_controls);
369
Bill Pemberton7a79e942012-12-07 09:26:37 -0500370static int tpa6130a2_probe(struct i2c_client *client,
371 const struct i2c_device_id *id)
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300372{
373 struct device *dev;
374 struct tpa6130a2_data *data;
Sebastian Reichelf95a4882013-10-23 14:03:28 +0200375 struct tpa6130a2_platform_data *pdata = client->dev.platform_data;
376 struct device_node *np = client->dev.of_node;
Jarkko Nikulaad8332c2010-05-19 10:52:28 +0300377 const char *regulator;
378 int ret;
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300379
380 dev = &client->dev;
381
Axel Lin6945e9f2011-12-29 12:12:29 +0800382 data = devm_kzalloc(&client->dev, sizeof(*data), GFP_KERNEL);
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300383 if (data == NULL) {
384 dev_err(dev, "Can not allocate memory\n");
385 return -ENOMEM;
386 }
387
Sebastian Reichelf95a4882013-10-23 14:03:28 +0200388 if (pdata) {
389 data->power_gpio = pdata->power_gpio;
390 } else if (np) {
391 data->power_gpio = of_get_named_gpio(np, "power-gpio", 0);
392 } else {
393 dev_err(dev, "Platform data not set\n");
394 dump_stack();
395 return -ENODEV;
396 }
397
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300398 tpa6130a2_client = client;
399
400 i2c_set_clientdata(tpa6130a2_client, data);
401
Peter Ujfalusi07441002011-08-30 14:39:52 +0300402 data->id = id->driver_data;
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300403
404 mutex_init(&data->mutex);
405
406 /* Set default register values */
407 data->regs[TPA6130A2_REG_CONTROL] = TPA6130A2_SWS;
408 data->regs[TPA6130A2_REG_VOL_MUTE] = TPA6130A2_MUTE_R |
409 TPA6130A2_MUTE_L;
410
411 if (data->power_gpio >= 0) {
Sachin Kamatd06080c2012-12-07 16:32:26 +0530412 ret = devm_gpio_request(dev, data->power_gpio,
413 "tpa6130a2 enable");
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300414 if (ret < 0) {
415 dev_err(dev, "Failed to request power GPIO (%d)\n",
416 data->power_gpio);
Ilkka Koskinen7c4e6492009-12-09 12:05:50 +0200417 goto err_gpio;
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300418 }
419 gpio_direction_output(data->power_gpio, 0);
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300420 }
421
Peter Ujfalusie5e5b312010-05-04 11:08:18 +0300422 switch (data->id) {
Ilkka Koskinen21383012010-01-08 17:48:31 +0200423 default:
424 dev_warn(dev, "Unknown TPA model (%d). Assuming 6130A2\n",
Peter Ujfalusi07441002011-08-30 14:39:52 +0300425 data->id);
Jarkko Nikulaad8332c2010-05-19 10:52:28 +0300426 case TPA6130A2:
427 regulator = "Vdd";
428 break;
429 case TPA6140A2:
430 regulator = "AVdd";
431 break;
Ilkka Koskinen21383012010-01-08 17:48:31 +0200432 }
Ilkka Koskinen7c4e6492009-12-09 12:05:50 +0200433
Sachin Kamatd06080c2012-12-07 16:32:26 +0530434 data->supply = devm_regulator_get(dev, regulator);
Jarkko Nikulaad8332c2010-05-19 10:52:28 +0300435 if (IS_ERR(data->supply)) {
436 ret = PTR_ERR(data->supply);
437 dev_err(dev, "Failed to request supply: %d\n", ret);
Sachin Kamatd06080c2012-12-07 16:32:26 +0530438 goto err_gpio;
Ilkka Koskinen7c4e6492009-12-09 12:05:50 +0200439 }
440
441 ret = tpa6130a2_power(1);
442 if (ret != 0)
Sachin Kamatd06080c2012-12-07 16:32:26 +0530443 goto err_gpio;
Ilkka Koskinen7c4e6492009-12-09 12:05:50 +0200444
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300445
446 /* Read version */
447 ret = tpa6130a2_i2c_read(TPA6130A2_REG_VERSION) &
448 TPA6130A2_VERSION_MASK;
449 if ((ret != 1) && (ret != 2))
450 dev_warn(dev, "UNTESTED version detected (%d)\n", ret);
451
452 /* Disable the chip */
Ilkka Koskinen7c4e6492009-12-09 12:05:50 +0200453 ret = tpa6130a2_power(0);
454 if (ret != 0)
Sachin Kamatd06080c2012-12-07 16:32:26 +0530455 goto err_gpio;
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300456
457 return 0;
Ilkka Koskinen7c4e6492009-12-09 12:05:50 +0200458
Ilkka Koskinen7c4e6492009-12-09 12:05:50 +0200459err_gpio:
Mark Brownebab1b12009-10-09 19:13:47 +0100460 tpa6130a2_client = NULL;
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300461
462 return ret;
463}
464
Bill Pemberton7a79e942012-12-07 09:26:37 -0500465static int tpa6130a2_remove(struct i2c_client *client)
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300466{
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300467 tpa6130a2_power(0);
Mark Brownebab1b12009-10-09 19:13:47 +0100468 tpa6130a2_client = NULL;
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300469
470 return 0;
471}
472
473static const struct i2c_device_id tpa6130a2_id[] = {
Peter Ujfalusi07441002011-08-30 14:39:52 +0300474 { "tpa6130a2", TPA6130A2 },
475 { "tpa6140a2", TPA6140A2 },
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300476 { }
477};
478MODULE_DEVICE_TABLE(i2c, tpa6130a2_id);
479
Sebastian Reichelf95a4882013-10-23 14:03:28 +0200480#if IS_ENABLED(CONFIG_OF)
481static const struct of_device_id tpa6130a2_of_match[] = {
482 { .compatible = "ti,tpa6130a2", },
483 { .compatible = "ti,tpa6140a2" },
484 {},
485};
486MODULE_DEVICE_TABLE(of, tpa6130a2_of_match);
487#endif
488
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300489static struct i2c_driver tpa6130a2_i2c_driver = {
490 .driver = {
491 .name = "tpa6130a2",
492 .owner = THIS_MODULE,
Sebastian Reichelf95a4882013-10-23 14:03:28 +0200493 .of_match_table = of_match_ptr(tpa6130a2_of_match),
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300494 },
495 .probe = tpa6130a2_probe,
Bill Pemberton7a79e942012-12-07 09:26:37 -0500496 .remove = tpa6130a2_remove,
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300497 .id_table = tpa6130a2_id,
498};
499
Sachin Kamatf062e2b2012-08-06 17:25:38 +0530500module_i2c_driver(tpa6130a2_i2c_driver);
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300501
Peter Ujfalusib4079ef2011-05-03 18:12:41 +0300502MODULE_AUTHOR("Peter Ujfalusi <peter.ujfalusi@ti.com>");
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300503MODULE_DESCRIPTION("TPA6130A2 Headphone amplifier driver");
504MODULE_LICENSE("GPL");