2 * Routines for control of the TEA6330T circuit via i2c bus
3 * Sound fader control circuit for car radios by Philips Semiconductors
4 * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #include <linux/init.h>
24 #include <linux/slab.h>
25 #include <linux/module.h>
26 #include <sound/core.h>
27 #include <sound/control.h>
28 #include <sound/tea6330t.h>
30 MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>");
31 MODULE_DESCRIPTION("Routines for control of the TEA6330T circuit via i2c bus");
32 MODULE_LICENSE("GPL");
34 #define TEA6330T_ADDR (0x80>>1) /* fixed address */
36 #define TEA6330T_SADDR_VOLUME_LEFT 0x00 /* volume left */
37 #define TEA6330T_SADDR_VOLUME_RIGHT 0x01 /* volume right */
38 #define TEA6330T_SADDR_BASS 0x02 /* bass control */
39 #define TEA6330T_SADDR_TREBLE 0x03 /* treble control */
40 #define TEA6330T_SADDR_FADER 0x04 /* fader control */
41 #define TEA6330T_MFN 0x20 /* mute control for selected channels */
42 #define TEA6330T_FCH 0x10 /* select fader channels - front or rear */
43 #define TEA6330T_SADDR_AUDIO_SWITCH 0x05 /* audio switch */
44 #define TEA6330T_GMU 0x80 /* mute control, general mute */
45 #define TEA6330T_EQN 0x40 /* equalizer switchover (0=equalizer-on) */
49 struct snd_i2c_device *device;
50 struct snd_i2c_bus *bus;
53 unsigned char regs[8];
54 unsigned char mleft, mright;
55 unsigned char bass, treble;
56 unsigned char max_bass, max_treble;
60 int snd_tea6330t_detect(struct snd_i2c_bus *bus, int equalizer)
65 res = snd_i2c_probeaddr(bus, TEA6330T_ADDR);
71 static void snd_tea6330t_set(struct tea6330t *tea,
72 unsigned char addr, unsigned char value)
75 printk(KERN_DEBUG "set - 0x%x/0x%x\n", addr, value);
77 snd_i2c_write(tea->bus, TEA6330T_ADDR, addr, value, 1);
81 #define TEA6330T_MASTER_VOLUME(xname, xindex) \
82 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \
83 .info = snd_tea6330t_info_master_volume, \
84 .get = snd_tea6330t_get_master_volume, .put = snd_tea6330t_put_master_volume }
86 static int snd_tea6330t_info_master_volume(struct snd_kcontrol *kcontrol,
87 struct snd_ctl_elem_info *uinfo)
89 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
91 uinfo->value.integer.min = 0;
92 uinfo->value.integer.max = 43;
96 static int snd_tea6330t_get_master_volume(struct snd_kcontrol *kcontrol,
97 struct snd_ctl_elem_value *ucontrol)
99 struct tea6330t *tea = snd_kcontrol_chip(kcontrol);
101 snd_i2c_lock(tea->bus);
102 ucontrol->value.integer.value[0] = tea->mleft - 0x14;
103 ucontrol->value.integer.value[1] = tea->mright - 0x14;
104 snd_i2c_unlock(tea->bus);
108 static int snd_tea6330t_put_master_volume(struct snd_kcontrol *kcontrol,
109 struct snd_ctl_elem_value *ucontrol)
111 struct tea6330t *tea = snd_kcontrol_chip(kcontrol);
112 int change, count, err;
113 unsigned char bytes[3];
114 unsigned char val1, val2;
116 val1 = (ucontrol->value.integer.value[0] % 44) + 0x14;
117 val2 = (ucontrol->value.integer.value[1] % 44) + 0x14;
118 snd_i2c_lock(tea->bus);
119 change = val1 != tea->mleft || val2 != tea->mright;
123 if (tea->regs[TEA6330T_SADDR_VOLUME_LEFT] != 0) {
124 bytes[count++] = TEA6330T_SADDR_VOLUME_LEFT;
125 bytes[count++] = tea->regs[TEA6330T_SADDR_VOLUME_LEFT] = tea->mleft;
127 if (tea->regs[TEA6330T_SADDR_VOLUME_RIGHT] != 0) {
129 bytes[count++] = TEA6330T_SADDR_VOLUME_RIGHT;
130 bytes[count++] = tea->regs[TEA6330T_SADDR_VOLUME_RIGHT] = tea->mright;
133 if ((err = snd_i2c_sendbytes(tea->device, bytes, count)) < 0)
136 snd_i2c_unlock(tea->bus);
140 #define TEA6330T_MASTER_SWITCH(xname, xindex) \
141 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \
142 .info = snd_tea6330t_info_master_switch, \
143 .get = snd_tea6330t_get_master_switch, .put = snd_tea6330t_put_master_switch }
145 #define snd_tea6330t_info_master_switch snd_ctl_boolean_stereo_info
147 static int snd_tea6330t_get_master_switch(struct snd_kcontrol *kcontrol,
148 struct snd_ctl_elem_value *ucontrol)
150 struct tea6330t *tea = snd_kcontrol_chip(kcontrol);
152 snd_i2c_lock(tea->bus);
153 ucontrol->value.integer.value[0] = tea->regs[TEA6330T_SADDR_VOLUME_LEFT] == 0 ? 0 : 1;
154 ucontrol->value.integer.value[1] = tea->regs[TEA6330T_SADDR_VOLUME_RIGHT] == 0 ? 0 : 1;
155 snd_i2c_unlock(tea->bus);
159 static int snd_tea6330t_put_master_switch(struct snd_kcontrol *kcontrol,
160 struct snd_ctl_elem_value *ucontrol)
162 struct tea6330t *tea = snd_kcontrol_chip(kcontrol);
164 unsigned char bytes[3];
165 unsigned char oval1, oval2, val1, val2;
167 val1 = ucontrol->value.integer.value[0] & 1;
168 val2 = ucontrol->value.integer.value[1] & 1;
169 snd_i2c_lock(tea->bus);
170 oval1 = tea->regs[TEA6330T_SADDR_VOLUME_LEFT] == 0 ? 0 : 1;
171 oval2 = tea->regs[TEA6330T_SADDR_VOLUME_RIGHT] == 0 ? 0 : 1;
172 change = val1 != oval1 || val2 != oval2;
173 tea->regs[TEA6330T_SADDR_VOLUME_LEFT] = val1 ? tea->mleft : 0;
174 tea->regs[TEA6330T_SADDR_VOLUME_RIGHT] = val2 ? tea->mright : 0;
175 bytes[0] = TEA6330T_SADDR_VOLUME_LEFT;
176 bytes[1] = tea->regs[TEA6330T_SADDR_VOLUME_LEFT];
177 bytes[2] = tea->regs[TEA6330T_SADDR_VOLUME_RIGHT];
178 if ((err = snd_i2c_sendbytes(tea->device, bytes, 3)) < 0)
180 snd_i2c_unlock(tea->bus);
184 #define TEA6330T_BASS(xname, xindex) \
185 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \
186 .info = snd_tea6330t_info_bass, \
187 .get = snd_tea6330t_get_bass, .put = snd_tea6330t_put_bass }
189 static int snd_tea6330t_info_bass(struct snd_kcontrol *kcontrol,
190 struct snd_ctl_elem_info *uinfo)
192 struct tea6330t *tea = snd_kcontrol_chip(kcontrol);
194 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
196 uinfo->value.integer.min = 0;
197 uinfo->value.integer.max = tea->max_bass;
201 static int snd_tea6330t_get_bass(struct snd_kcontrol *kcontrol,
202 struct snd_ctl_elem_value *ucontrol)
204 struct tea6330t *tea = snd_kcontrol_chip(kcontrol);
206 ucontrol->value.integer.value[0] = tea->bass;
210 static int snd_tea6330t_put_bass(struct snd_kcontrol *kcontrol,
211 struct snd_ctl_elem_value *ucontrol)
213 struct tea6330t *tea = snd_kcontrol_chip(kcontrol);
215 unsigned char bytes[2];
218 val1 = ucontrol->value.integer.value[0] % (tea->max_bass + 1);
219 snd_i2c_lock(tea->bus);
221 val1 += tea->equalizer ? 7 : 3;
222 change = tea->regs[TEA6330T_SADDR_BASS] != val1;
223 bytes[0] = TEA6330T_SADDR_BASS;
224 bytes[1] = tea->regs[TEA6330T_SADDR_BASS] = val1;
225 if ((err = snd_i2c_sendbytes(tea->device, bytes, 2)) < 0)
227 snd_i2c_unlock(tea->bus);
231 #define TEA6330T_TREBLE(xname, xindex) \
232 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \
233 .info = snd_tea6330t_info_treble, \
234 .get = snd_tea6330t_get_treble, .put = snd_tea6330t_put_treble }
236 static int snd_tea6330t_info_treble(struct snd_kcontrol *kcontrol,
237 struct snd_ctl_elem_info *uinfo)
239 struct tea6330t *tea = snd_kcontrol_chip(kcontrol);
241 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
243 uinfo->value.integer.min = 0;
244 uinfo->value.integer.max = tea->max_treble;
248 static int snd_tea6330t_get_treble(struct snd_kcontrol *kcontrol,
249 struct snd_ctl_elem_value *ucontrol)
251 struct tea6330t *tea = snd_kcontrol_chip(kcontrol);
253 ucontrol->value.integer.value[0] = tea->treble;
257 static int snd_tea6330t_put_treble(struct snd_kcontrol *kcontrol,
258 struct snd_ctl_elem_value *ucontrol)
260 struct tea6330t *tea = snd_kcontrol_chip(kcontrol);
262 unsigned char bytes[2];
265 val1 = ucontrol->value.integer.value[0] % (tea->max_treble + 1);
266 snd_i2c_lock(tea->bus);
269 change = tea->regs[TEA6330T_SADDR_TREBLE] != val1;
270 bytes[0] = TEA6330T_SADDR_TREBLE;
271 bytes[1] = tea->regs[TEA6330T_SADDR_TREBLE] = val1;
272 if ((err = snd_i2c_sendbytes(tea->device, bytes, 2)) < 0)
274 snd_i2c_unlock(tea->bus);
278 static struct snd_kcontrol_new snd_tea6330t_controls[] = {
279 TEA6330T_MASTER_SWITCH("Master Playback Switch", 0),
280 TEA6330T_MASTER_VOLUME("Master Playback Volume", 0),
281 TEA6330T_BASS("Tone Control - Bass", 0),
282 TEA6330T_TREBLE("Tone Control - Treble", 0)
285 static void snd_tea6330_free(struct snd_i2c_device *device)
287 kfree(device->private_data);
290 int snd_tea6330t_update_mixer(struct snd_card *card,
291 struct snd_i2c_bus *bus,
292 int equalizer, int fader)
294 struct snd_i2c_device *device;
295 struct tea6330t *tea;
296 struct snd_kcontrol_new *knew;
299 u8 default_treble, default_bass;
300 unsigned char bytes[7];
302 tea = kzalloc(sizeof(*tea), GFP_KERNEL);
305 if ((err = snd_i2c_device_create(bus, "TEA6330T", TEA6330T_ADDR, &device)) < 0) {
309 tea->device = device;
311 tea->equalizer = equalizer;
313 device->private_data = tea;
314 device->private_free = snd_tea6330_free;
318 /* turn fader off and handle equalizer */
319 tea->regs[TEA6330T_SADDR_FADER] = 0x3f;
320 tea->regs[TEA6330T_SADDR_AUDIO_SWITCH] = equalizer ? 0 : TEA6330T_EQN;
321 /* initialize mixer */
322 if (!tea->equalizer) {
325 default_bass = 3 + 4;
327 default_treble = 3 + 4;
332 default_bass = 7 + 4;
337 tea->mleft = tea->mright = 0x14;
338 tea->regs[TEA6330T_SADDR_BASS] = default_bass;
339 tea->regs[TEA6330T_SADDR_TREBLE] = default_treble;
341 /* compose I2C message and put the hardware to initial state */
342 bytes[0] = TEA6330T_SADDR_VOLUME_LEFT;
343 for (idx = 0; idx < 6; idx++)
344 bytes[idx+1] = tea->regs[idx];
345 if ((err = snd_i2c_sendbytes(device, bytes, 7)) < 0)
348 strcat(card->mixername, ",TEA6330T");
349 if ((err = snd_component_add(card, "TEA6330T")) < 0)
352 for (idx = 0; idx < ARRAY_SIZE(snd_tea6330t_controls); idx++) {
353 knew = &snd_tea6330t_controls[idx];
354 if (tea->treble == 0 && !strcmp(knew->name, "Tone Control - Treble"))
356 if ((err = snd_ctl_add(card, snd_ctl_new1(knew, tea))) < 0)
365 snd_i2c_device_free(device);
369 EXPORT_SYMBOL(snd_tea6330t_detect);
370 EXPORT_SYMBOL(snd_tea6330t_update_mixer);
376 static int __init alsa_tea6330t_init(void)
381 static void __exit alsa_tea6330t_exit(void)
385 module_init(alsa_tea6330t_init)
386 module_exit(alsa_tea6330t_exit)