blob: 11d85c5c787addb8d8add7fc2b52ab91cc49b63d [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>
Sachin Kamatee5e4532014-04-04 11:29:13 +053033#include <linux/of.h>
Sebastian Reichelf95a4882013-10-23 14:03:28 +020034#include <linux/of_gpio.h>
Peter Ujfalusi493b67e2009-10-09 15:55:41 +030035
36#include "tpa6130a2.h"
37
Peter Ujfalusi0722d052011-08-30 14:39:54 +030038enum tpa_model {
39 TPA6130A2,
40 TPA6140A2,
41};
42
Mark Brownebab1b12009-10-09 19:13:47 +010043static struct i2c_client *tpa6130a2_client;
Peter Ujfalusi493b67e2009-10-09 15:55:41 +030044
45/* This struct is used to save the context */
46struct tpa6130a2_data {
47 struct mutex mutex;
48 unsigned char regs[TPA6130A2_CACHEREGNUM];
Jarkko Nikulaad8332c2010-05-19 10:52:28 +030049 struct regulator *supply;
Peter Ujfalusi493b67e2009-10-09 15:55:41 +030050 int power_gpio;
Peter Ujfalusid5876ce2010-11-30 16:00:00 +020051 u8 power_state:1;
Peter Ujfalusie5e5b312010-05-04 11:08:18 +030052 enum tpa_model id;
Peter Ujfalusi493b67e2009-10-09 15:55:41 +030053};
54
55static int tpa6130a2_i2c_read(int reg)
56{
57 struct tpa6130a2_data *data;
58 int val;
59
Takashi Iwai773392b2013-11-05 18:39:51 +010060 if (WARN_ON(!tpa6130a2_client))
61 return -EINVAL;
Peter Ujfalusi493b67e2009-10-09 15:55:41 +030062 data = i2c_get_clientdata(tpa6130a2_client);
63
64 /* If powered off, return the cached value */
65 if (data->power_state) {
66 val = i2c_smbus_read_byte_data(tpa6130a2_client, reg);
67 if (val < 0)
68 dev_err(&tpa6130a2_client->dev, "Read failed\n");
69 else
70 data->regs[reg] = val;
71 } else {
72 val = data->regs[reg];
73 }
74
75 return val;
76}
77
78static int tpa6130a2_i2c_write(int reg, u8 value)
79{
80 struct tpa6130a2_data *data;
81 int val = 0;
82
Takashi Iwai773392b2013-11-05 18:39:51 +010083 if (WARN_ON(!tpa6130a2_client))
84 return -EINVAL;
Peter Ujfalusi493b67e2009-10-09 15:55:41 +030085 data = i2c_get_clientdata(tpa6130a2_client);
86
87 if (data->power_state) {
88 val = i2c_smbus_write_byte_data(tpa6130a2_client, reg, value);
Axel Lin7a479b02010-11-23 14:14:07 +080089 if (val < 0) {
Peter Ujfalusi493b67e2009-10-09 15:55:41 +030090 dev_err(&tpa6130a2_client->dev, "Write failed\n");
Axel Lin7a479b02010-11-23 14:14:07 +080091 return val;
92 }
Peter Ujfalusi493b67e2009-10-09 15:55:41 +030093 }
94
95 /* Either powered on or off, we save the context */
96 data->regs[reg] = value;
97
98 return val;
99}
100
101static u8 tpa6130a2_read(int reg)
102{
103 struct tpa6130a2_data *data;
104
Takashi Iwai773392b2013-11-05 18:39:51 +0100105 if (WARN_ON(!tpa6130a2_client))
106 return 0;
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300107 data = i2c_get_clientdata(tpa6130a2_client);
108
109 return data->regs[reg];
110}
111
Peter Ujfalusi872a64d2010-10-21 15:03:03 +0300112static int tpa6130a2_initialize(void)
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300113{
114 struct tpa6130a2_data *data;
Peter Ujfalusi872a64d2010-10-21 15:03:03 +0300115 int i, ret = 0;
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300116
Takashi Iwai773392b2013-11-05 18:39:51 +0100117 if (WARN_ON(!tpa6130a2_client))
118 return -EINVAL;
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300119 data = i2c_get_clientdata(tpa6130a2_client);
120
Peter Ujfalusi872a64d2010-10-21 15:03:03 +0300121 for (i = 1; i < TPA6130A2_REG_VERSION; i++) {
122 ret = tpa6130a2_i2c_write(i, data->regs[i]);
123 if (ret < 0)
124 break;
125 }
126
127 return ret;
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300128}
129
Peter Ujfalusid5876ce2010-11-30 16:00:00 +0200130static int tpa6130a2_power(u8 power)
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300131{
132 struct tpa6130a2_data *data;
133 u8 val;
Jarkko Nikula75e3f312010-11-03 16:39:00 +0200134 int ret = 0;
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300135
Takashi Iwai773392b2013-11-05 18:39:51 +0100136 if (WARN_ON(!tpa6130a2_client))
137 return -EINVAL;
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300138 data = i2c_get_clientdata(tpa6130a2_client);
139
140 mutex_lock(&data->mutex);
Peter Ujfalusid5876ce2010-11-30 16:00:00 +0200141 if (power == data->power_state)
142 goto exit;
Ilkka Koskinen7c4e6492009-12-09 12:05:50 +0200143
Peter Ujfalusid5876ce2010-11-30 16:00:00 +0200144 if (power) {
Jarkko Nikulaad8332c2010-05-19 10:52:28 +0300145 ret = regulator_enable(data->supply);
Ilkka Koskinen7c4e6492009-12-09 12:05:50 +0200146 if (ret != 0) {
147 dev_err(&tpa6130a2_client->dev,
Jarkko Nikulaad8332c2010-05-19 10:52:28 +0300148 "Failed to enable supply: %d\n", ret);
Ilkka Koskinen7c4e6492009-12-09 12:05:50 +0200149 goto exit;
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300150 }
Jarkko Nikula0656f6c2010-11-08 10:57:57 +0200151 /* Power on */
152 if (data->power_gpio >= 0)
153 gpio_set_value(data->power_gpio, 1);
Ilkka Koskinen7c4e6492009-12-09 12:05:50 +0200154
155 data->power_state = 1;
Peter Ujfalusi872a64d2010-10-21 15:03:03 +0300156 ret = tpa6130a2_initialize();
157 if (ret < 0) {
158 dev_err(&tpa6130a2_client->dev,
159 "Failed to initialize chip\n");
160 if (data->power_gpio >= 0)
161 gpio_set_value(data->power_gpio, 0);
162 regulator_disable(data->supply);
163 data->power_state = 0;
164 goto exit;
165 }
Peter Ujfalusid5876ce2010-11-30 16:00:00 +0200166 } else {
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300167 /* set SWS */
168 val = tpa6130a2_read(TPA6130A2_REG_CONTROL);
169 val |= TPA6130A2_SWS;
170 tpa6130a2_i2c_write(TPA6130A2_REG_CONTROL, val);
Ilkka Koskinen7c4e6492009-12-09 12:05:50 +0200171
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300172 /* Power off */
Ilkka Koskinen7c4e6492009-12-09 12:05:50 +0200173 if (data->power_gpio >= 0)
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300174 gpio_set_value(data->power_gpio, 0);
Ilkka Koskinen7c4e6492009-12-09 12:05:50 +0200175
Jarkko Nikulaad8332c2010-05-19 10:52:28 +0300176 ret = regulator_disable(data->supply);
Ilkka Koskinen7c4e6492009-12-09 12:05:50 +0200177 if (ret != 0) {
178 dev_err(&tpa6130a2_client->dev,
Jarkko Nikulaad8332c2010-05-19 10:52:28 +0300179 "Failed to disable supply: %d\n", ret);
Ilkka Koskinen7c4e6492009-12-09 12:05:50 +0200180 goto exit;
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300181 }
Ilkka Koskinen7c4e6492009-12-09 12:05:50 +0200182
183 data->power_state = 0;
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300184 }
Ilkka Koskinen7c4e6492009-12-09 12:05:50 +0200185
186exit:
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300187 mutex_unlock(&data->mutex);
Ilkka Koskinen7c4e6492009-12-09 12:05:50 +0200188 return ret;
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300189}
190
Peter Ujfalusibd843ed2010-05-07 14:24:11 +0300191static int tpa6130a2_get_volsw(struct snd_kcontrol *kcontrol,
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300192 struct snd_ctl_elem_value *ucontrol)
193{
194 struct soc_mixer_control *mc =
195 (struct soc_mixer_control *)kcontrol->private_value;
196 struct tpa6130a2_data *data;
197 unsigned int reg = mc->reg;
198 unsigned int shift = mc->shift;
Peter Ujfalusibd843ed2010-05-07 14:24:11 +0300199 int max = mc->max;
200 unsigned int mask = (1 << fls(max)) - 1;
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300201 unsigned int invert = mc->invert;
202
Takashi Iwai773392b2013-11-05 18:39:51 +0100203 if (WARN_ON(!tpa6130a2_client))
204 return -EINVAL;
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300205 data = i2c_get_clientdata(tpa6130a2_client);
206
207 mutex_lock(&data->mutex);
208
209 ucontrol->value.integer.value[0] =
210 (tpa6130a2_read(reg) >> shift) & mask;
211
212 if (invert)
213 ucontrol->value.integer.value[0] =
Peter Ujfalusibd843ed2010-05-07 14:24:11 +0300214 max - ucontrol->value.integer.value[0];
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300215
216 mutex_unlock(&data->mutex);
217 return 0;
218}
219
Peter Ujfalusibd843ed2010-05-07 14:24:11 +0300220static int tpa6130a2_put_volsw(struct snd_kcontrol *kcontrol,
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300221 struct snd_ctl_elem_value *ucontrol)
222{
223 struct soc_mixer_control *mc =
224 (struct soc_mixer_control *)kcontrol->private_value;
225 struct tpa6130a2_data *data;
226 unsigned int reg = mc->reg;
227 unsigned int shift = mc->shift;
Peter Ujfalusibd843ed2010-05-07 14:24:11 +0300228 int max = mc->max;
229 unsigned int mask = (1 << fls(max)) - 1;
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300230 unsigned int invert = mc->invert;
231 unsigned int val = (ucontrol->value.integer.value[0] & mask);
232 unsigned int val_reg;
233
Takashi Iwai773392b2013-11-05 18:39:51 +0100234 if (WARN_ON(!tpa6130a2_client))
235 return -EINVAL;
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300236 data = i2c_get_clientdata(tpa6130a2_client);
237
238 if (invert)
Peter Ujfalusibd843ed2010-05-07 14:24:11 +0300239 val = max - val;
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300240
241 mutex_lock(&data->mutex);
242
243 val_reg = tpa6130a2_read(reg);
244 if (((val_reg >> shift) & mask) == val) {
245 mutex_unlock(&data->mutex);
246 return 0;
247 }
248
249 val_reg &= ~(mask << shift);
250 val_reg |= val << shift;
251 tpa6130a2_i2c_write(reg, val_reg);
252
253 mutex_unlock(&data->mutex);
254
255 return 1;
256}
257
258/*
259 * TPA6130 volume. From -59.5 to 4 dB with increasing step size when going
260 * down in gain.
261 */
Lars-Peter Clausen4e0e5f82015-08-02 17:19:55 +0200262static const DECLARE_TLV_DB_RANGE(tpa6130_tlv,
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300263 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),
Lars-Peter Clausen4e0e5f82015-08-02 17:19:55 +0200272 38, 63, TLV_DB_SCALE_ITEM(-720, 45, 0)
273);
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300274
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
Lars-Peter Clausen4e0e5f82015-08-02 17:19:55 +0200282static const DECLARE_TLV_DB_RANGE(tpa6140_tlv,
Peter Ujfalusie5e5b312010-05-04 11:08:18 +0300283 0, 8, TLV_DB_SCALE_ITEM(-5900, 400, 0),
284 9, 16, TLV_DB_SCALE_ITEM(-2500, 200, 0),
Lars-Peter Clausen4e0e5f82015-08-02 17:19:55 +0200285 17, 31, TLV_DB_SCALE_ITEM(-1000, 100, 0)
286);
Peter Ujfalusie5e5b312010-05-04 11:08:18 +0300287
288static const struct snd_kcontrol_new tpa6140a2_controls[] = {
Peter Ujfalusi826e9622010-05-07 14:24:10 +0300289 SOC_SINGLE_EXT_TLV("TPA6140A2 Headphone Playback Volume",
290 TPA6130A2_REG_VOL_MUTE, 1, 0x1f, 0,
Peter Ujfalusibd843ed2010-05-07 14:24:11 +0300291 tpa6130a2_get_volsw, tpa6130a2_put_volsw,
Peter Ujfalusi826e9622010-05-07 14:24:10 +0300292 tpa6140_tlv),
Peter Ujfalusie5e5b312010-05-04 11:08:18 +0300293};
294
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300295/*
296 * Enable or disable channel (left or right)
297 * The bit number for mute and amplifier are the same per channel:
298 * bit 6: Right channel
299 * bit 7: Left channel
300 * in both registers.
301 */
302static void tpa6130a2_channel_enable(u8 channel, int enable)
303{
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300304 u8 val;
305
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300306 if (enable) {
307 /* Enable channel */
308 /* Enable amplifier */
309 val = tpa6130a2_read(TPA6130A2_REG_CONTROL);
310 val |= channel;
Peter Ujfalusid534bac2010-11-30 16:00:01 +0200311 val &= ~TPA6130A2_SWS;
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300312 tpa6130a2_i2c_write(TPA6130A2_REG_CONTROL, val);
313
314 /* Unmute channel */
315 val = tpa6130a2_read(TPA6130A2_REG_VOL_MUTE);
316 val &= ~channel;
317 tpa6130a2_i2c_write(TPA6130A2_REG_VOL_MUTE, val);
318 } else {
319 /* Disable channel */
320 /* Mute channel */
321 val = tpa6130a2_read(TPA6130A2_REG_VOL_MUTE);
322 val |= channel;
323 tpa6130a2_i2c_write(TPA6130A2_REG_VOL_MUTE, val);
324
325 /* Disable amplifier */
326 val = tpa6130a2_read(TPA6130A2_REG_CONTROL);
327 val &= ~channel;
328 tpa6130a2_i2c_write(TPA6130A2_REG_CONTROL, val);
329 }
330}
331
Peter Ujfalusi39646872010-12-02 09:29:56 +0200332int tpa6130a2_stereo_enable(struct snd_soc_codec *codec, int enable)
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300333{
Ilkka Koskinen7c4e6492009-12-09 12:05:50 +0200334 int ret = 0;
Peter Ujfalusi39646872010-12-02 09:29:56 +0200335 if (enable) {
Ilkka Koskinen7c4e6492009-12-09 12:05:50 +0200336 ret = tpa6130a2_power(1);
Peter Ujfalusi39646872010-12-02 09:29:56 +0200337 if (ret < 0)
338 return ret;
339 tpa6130a2_channel_enable(TPA6130A2_HP_EN_R | TPA6130A2_HP_EN_L,
340 1);
341 } else {
342 tpa6130a2_channel_enable(TPA6130A2_HP_EN_R | TPA6130A2_HP_EN_L,
343 0);
Ilkka Koskinen7c4e6492009-12-09 12:05:50 +0200344 ret = tpa6130a2_power(0);
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300345 }
Peter Ujfalusi39646872010-12-02 09:29:56 +0200346
Ilkka Koskinen7c4e6492009-12-09 12:05:50 +0200347 return ret;
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300348}
Peter Ujfalusi39646872010-12-02 09:29:56 +0200349EXPORT_SYMBOL_GPL(tpa6130a2_stereo_enable);
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300350
351int tpa6130a2_add_controls(struct snd_soc_codec *codec)
352{
Peter Ujfalusie5e5b312010-05-04 11:08:18 +0300353 struct tpa6130a2_data *data;
354
Peter Ujfalusi872a64d2010-10-21 15:03:03 +0300355 if (tpa6130a2_client == NULL)
356 return -ENODEV;
357
Peter Ujfalusie5e5b312010-05-04 11:08:18 +0300358 data = i2c_get_clientdata(tpa6130a2_client);
359
Peter Ujfalusie5e5b312010-05-04 11:08:18 +0300360 if (data->id == TPA6140A2)
Liam Girdwood022658b2012-02-03 17:43:09 +0000361 return snd_soc_add_codec_controls(codec, tpa6140a2_controls,
Peter Ujfalusie5e5b312010-05-04 11:08:18 +0300362 ARRAY_SIZE(tpa6140a2_controls));
363 else
Liam Girdwood022658b2012-02-03 17:43:09 +0000364 return snd_soc_add_codec_controls(codec, tpa6130a2_controls,
Peter Ujfalusie5e5b312010-05-04 11:08:18 +0300365 ARRAY_SIZE(tpa6130a2_controls));
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300366}
367EXPORT_SYMBOL_GPL(tpa6130a2_add_controls);
368
Bill Pemberton7a79e942012-12-07 09:26:37 -0500369static int tpa6130a2_probe(struct i2c_client *client,
370 const struct i2c_device_id *id)
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300371{
372 struct device *dev;
373 struct tpa6130a2_data *data;
Sebastian Reichelf95a4882013-10-23 14:03:28 +0200374 struct tpa6130a2_platform_data *pdata = client->dev.platform_data;
375 struct device_node *np = client->dev.of_node;
Jarkko Nikulaad8332c2010-05-19 10:52:28 +0300376 const char *regulator;
377 int ret;
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300378
379 dev = &client->dev;
380
Axel Lin6945e9f2011-12-29 12:12:29 +0800381 data = devm_kzalloc(&client->dev, sizeof(*data), GFP_KERNEL);
Sachin Kamat656e3432014-06-20 15:29:02 +0530382 if (!data)
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300383 return -ENOMEM;
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300384
Sebastian Reichelf95a4882013-10-23 14:03:28 +0200385 if (pdata) {
386 data->power_gpio = pdata->power_gpio;
387 } else if (np) {
388 data->power_gpio = of_get_named_gpio(np, "power-gpio", 0);
389 } else {
390 dev_err(dev, "Platform data not set\n");
391 dump_stack();
392 return -ENODEV;
393 }
394
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300395 tpa6130a2_client = client;
396
397 i2c_set_clientdata(tpa6130a2_client, data);
398
Peter Ujfalusi07441002011-08-30 14:39:52 +0300399 data->id = id->driver_data;
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300400
401 mutex_init(&data->mutex);
402
403 /* Set default register values */
404 data->regs[TPA6130A2_REG_CONTROL] = TPA6130A2_SWS;
405 data->regs[TPA6130A2_REG_VOL_MUTE] = TPA6130A2_MUTE_R |
406 TPA6130A2_MUTE_L;
407
408 if (data->power_gpio >= 0) {
Sachin Kamatd06080c2012-12-07 16:32:26 +0530409 ret = devm_gpio_request(dev, data->power_gpio,
410 "tpa6130a2 enable");
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300411 if (ret < 0) {
412 dev_err(dev, "Failed to request power GPIO (%d)\n",
413 data->power_gpio);
Ilkka Koskinen7c4e6492009-12-09 12:05:50 +0200414 goto err_gpio;
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300415 }
416 gpio_direction_output(data->power_gpio, 0);
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300417 }
418
Peter Ujfalusie5e5b312010-05-04 11:08:18 +0300419 switch (data->id) {
Ilkka Koskinen21383012010-01-08 17:48:31 +0200420 default:
421 dev_warn(dev, "Unknown TPA model (%d). Assuming 6130A2\n",
Peter Ujfalusi07441002011-08-30 14:39:52 +0300422 data->id);
Jarkko Nikulaad8332c2010-05-19 10:52:28 +0300423 case TPA6130A2:
424 regulator = "Vdd";
425 break;
426 case TPA6140A2:
427 regulator = "AVdd";
428 break;
Ilkka Koskinen21383012010-01-08 17:48:31 +0200429 }
Ilkka Koskinen7c4e6492009-12-09 12:05:50 +0200430
Sachin Kamatd06080c2012-12-07 16:32:26 +0530431 data->supply = devm_regulator_get(dev, regulator);
Jarkko Nikulaad8332c2010-05-19 10:52:28 +0300432 if (IS_ERR(data->supply)) {
433 ret = PTR_ERR(data->supply);
434 dev_err(dev, "Failed to request supply: %d\n", ret);
Sachin Kamatd06080c2012-12-07 16:32:26 +0530435 goto err_gpio;
Ilkka Koskinen7c4e6492009-12-09 12:05:50 +0200436 }
437
438 ret = tpa6130a2_power(1);
439 if (ret != 0)
Sachin Kamatd06080c2012-12-07 16:32:26 +0530440 goto err_gpio;
Ilkka Koskinen7c4e6492009-12-09 12:05:50 +0200441
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300442
443 /* Read version */
444 ret = tpa6130a2_i2c_read(TPA6130A2_REG_VERSION) &
445 TPA6130A2_VERSION_MASK;
446 if ((ret != 1) && (ret != 2))
447 dev_warn(dev, "UNTESTED version detected (%d)\n", ret);
448
449 /* Disable the chip */
Ilkka Koskinen7c4e6492009-12-09 12:05:50 +0200450 ret = tpa6130a2_power(0);
451 if (ret != 0)
Sachin Kamatd06080c2012-12-07 16:32:26 +0530452 goto err_gpio;
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300453
454 return 0;
Ilkka Koskinen7c4e6492009-12-09 12:05:50 +0200455
Ilkka Koskinen7c4e6492009-12-09 12:05:50 +0200456err_gpio:
Mark Brownebab1b12009-10-09 19:13:47 +0100457 tpa6130a2_client = NULL;
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300458
459 return ret;
460}
461
Bill Pemberton7a79e942012-12-07 09:26:37 -0500462static int tpa6130a2_remove(struct i2c_client *client)
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300463{
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300464 tpa6130a2_power(0);
Mark Brownebab1b12009-10-09 19:13:47 +0100465 tpa6130a2_client = NULL;
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300466
467 return 0;
468}
469
470static const struct i2c_device_id tpa6130a2_id[] = {
Peter Ujfalusi07441002011-08-30 14:39:52 +0300471 { "tpa6130a2", TPA6130A2 },
472 { "tpa6140a2", TPA6140A2 },
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300473 { }
474};
475MODULE_DEVICE_TABLE(i2c, tpa6130a2_id);
476
Sebastian Reichelf95a4882013-10-23 14:03:28 +0200477#if IS_ENABLED(CONFIG_OF)
478static const struct of_device_id tpa6130a2_of_match[] = {
479 { .compatible = "ti,tpa6130a2", },
480 { .compatible = "ti,tpa6140a2" },
481 {},
482};
483MODULE_DEVICE_TABLE(of, tpa6130a2_of_match);
484#endif
485
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300486static struct i2c_driver tpa6130a2_i2c_driver = {
487 .driver = {
488 .name = "tpa6130a2",
Sebastian Reichelf95a4882013-10-23 14:03:28 +0200489 .of_match_table = of_match_ptr(tpa6130a2_of_match),
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300490 },
491 .probe = tpa6130a2_probe,
Bill Pemberton7a79e942012-12-07 09:26:37 -0500492 .remove = tpa6130a2_remove,
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300493 .id_table = tpa6130a2_id,
494};
495
Sachin Kamatf062e2b2012-08-06 17:25:38 +0530496module_i2c_driver(tpa6130a2_i2c_driver);
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300497
Peter Ujfalusib4079ef2011-05-03 18:12:41 +0300498MODULE_AUTHOR("Peter Ujfalusi <peter.ujfalusi@ti.com>");
Peter Ujfalusi493b67e2009-10-09 15:55:41 +0300499MODULE_DESCRIPTION("TPA6130A2 Headphone amplifier driver");
500MODULE_LICENSE("GPL");