3 * (The TDA9875 is used on the Diamond DTV2000 french version
4 * Other cards probably use these chips as well.)
5 * This driver will not complain if used with any
6 * other i2c device with the same address.
8 * Copyright (c) 2000 Guillaume Delvit based on Gerd Knorr source and
10 * This code is placed under the terms of the GNU General Public License
11 * Based on tda9855.c by Steve VanDeBogart (vandebo@uclink.berkeley.edu)
12 * Which was based on tda8425.c by Greg Alexander (c) 1998
15 * debug - set to 1 if you'd like to see debug messages
17 * Revision: 0.1 - original version
20 #include <linux/module.h>
21 #include <linux/kernel.h>
22 #include <linux/sched.h>
23 #include <linux/string.h>
24 #include <linux/timer.h>
25 #include <linux/delay.h>
26 #include <linux/errno.h>
27 #include <linux/slab.h>
28 #include <linux/videodev.h>
29 #include <linux/i2c.h>
30 #include <linux/i2c-algo-bit.h>
31 #include <linux/init.h>
34 #include <media/audiochip.h>
37 static int debug; /* insmod parameter */
38 module_param(debug, int, S_IRUGO | S_IWUSR);
39 MODULE_LICENSE("GPL");
42 /* Addresses to scan */
43 static unsigned short normal_i2c[] = {
49 /* This is a superset of the TDA9875 */
57 static struct i2c_driver driver;
58 static struct i2c_client client_template;
60 #define dprintk if (debug) printk
62 /* The TDA9875 is made by Philips Semiconductor
63 * http://www.semiconductors.philips.com
64 * TDA9875: I2C-bus controlled DSP audio processor, FM demodulator
68 /* subaddresses for TDA9875 */
69 #define TDA9875_MUT 0x12 /*General mute (value --> 0b11001100*/
70 #define TDA9875_CFG 0x01 /* Config register (value --> 0b00000000 */
71 #define TDA9875_DACOS 0x13 /*DAC i/o select (ADC) 0b0000100*/
72 #define TDA9875_LOSR 0x16 /*Line output select regirter 0b0100 0001*/
74 #define TDA9875_CH1V 0x0c /*Channel 1 volume (mute)*/
75 #define TDA9875_CH2V 0x0d /*Channel 2 volume (mute)*/
76 #define TDA9875_SC1 0x14 /*SCART 1 in (mono)*/
77 #define TDA9875_SC2 0x15 /*SCART 2 in (mono)*/
79 #define TDA9875_ADCIS 0x17 /*ADC input select (mono) 0b0110 000*/
80 #define TDA9875_AER 0x19 /*Audio effect (AVL+Pseudo) 0b0000 0110*/
81 #define TDA9875_MCS 0x18 /*Main channel select (DAC) 0b0000100*/
82 #define TDA9875_MVL 0x1a /* Main volume gauche */
83 #define TDA9875_MVR 0x1b /* Main volume droite */
84 #define TDA9875_MBA 0x1d /* Main Basse */
85 #define TDA9875_MTR 0x1e /* Main treble */
86 #define TDA9875_ACS 0x1f /* Auxilary channel select (FM) 0b0000000*/
87 #define TDA9875_AVL 0x20 /* Auxilary volume gauche */
88 #define TDA9875_AVR 0x21 /* Auxilary volume droite */
89 #define TDA9875_ABA 0x22 /* Auxilary Basse */
90 #define TDA9875_ATR 0x23 /* Auxilary treble */
92 #define TDA9875_MSR 0x02 /* Monitor select register */
93 #define TDA9875_C1MSB 0x03 /* Carrier 1 (FM) frequency register MSB */
94 #define TDA9875_C1MIB 0x04 /* Carrier 1 (FM) frequency register (16-8]b */
95 #define TDA9875_C1LSB 0x05 /* Carrier 1 (FM) frequency register LSB */
96 #define TDA9875_C2MSB 0x06 /* Carrier 2 (nicam) frequency register MSB */
97 #define TDA9875_C2MIB 0x07 /* Carrier 2 (nicam) frequency register (16-8]b */
98 #define TDA9875_C2LSB 0x08 /* Carrier 2 (nicam) frequency register LSB */
99 #define TDA9875_DCR 0x09 /* Demodulateur configuration regirter*/
100 #define TDA9875_DEEM 0x0a /* FM de-emphasis regirter*/
101 #define TDA9875_FMAT 0x0b /* FM Matrix regirter*/
104 #define TDA9875_MUTE_ON 0xff /* general mute */
105 #define TDA9875_MUTE_OFF 0xcc /* general no mute */
111 static int tda9875_write(struct i2c_client *client, int subaddr, unsigned char val)
113 unsigned char buffer[2];
114 dprintk("In tda9875_write\n");
115 dprintk("Writing %d 0x%x\n", subaddr, val);
118 if (2 != i2c_master_send(client,buffer,2)) {
119 printk(KERN_WARNING "tda9875: I/O error, trying (write %d 0x%x)\n",
127 static int tda9875_read(struct i2c_client *client)
129 unsigned char buffer;
130 dprintk("In tda9875_read\n");
131 if (1 != i2c_master_recv(client,&buffer,1)) {
132 printk(KERN_WARNING "tda9875: I/O error, trying (read)\n");
135 dprintk("Read 0x%02x\n", buffer);
140 static int i2c_read_register(struct i2c_adapter *adap, int addr, int reg)
142 unsigned char write[1];
143 unsigned char read[1];
144 struct i2c_msg msgs[2] = {
145 { addr, 0, 1, write },
146 { addr, I2C_M_RD, 1, read }
150 if (2 != i2c_transfer(adap,msgs,2)) {
151 printk(KERN_WARNING "tda9875: I/O error (read2)\n");
154 dprintk("tda9875: chip_read2: reg%d=0x%x\n",reg,read[0]);
158 static void tda9875_set(struct i2c_client *client)
160 struct tda9875 *tda = i2c_get_clientdata(client);
163 dprintk(KERN_DEBUG "tda9875_set(%04x,%04x,%04x,%04x)\n",
164 tda->lvol,tda->rvol,tda->bass,tda->treble);
167 a = tda->lvol & 0xff;
168 tda9875_write(client, TDA9875_MVL, a);
170 tda9875_write(client, TDA9875_MVR, a);
172 tda9875_write(client, TDA9875_MBA, a);
173 a =tda->treble & 0xff;
174 tda9875_write(client, TDA9875_MTR, a);
177 static void do_tda9875_init(struct i2c_client *client)
179 struct tda9875 *t = i2c_get_clientdata(client);
180 dprintk("In tda9875_init\n");
181 tda9875_write(client, TDA9875_CFG, 0xd0 ); /*reg de config 0 (reset)*/
182 tda9875_write(client, TDA9875_MSR, 0x03 ); /* Monitor 0b00000XXX*/
183 tda9875_write(client, TDA9875_C1MSB, 0x00 ); /*Car1(FM) MSB XMHz*/
184 tda9875_write(client, TDA9875_C1MIB, 0x00 ); /*Car1(FM) MIB XMHz*/
185 tda9875_write(client, TDA9875_C1LSB, 0x00 ); /*Car1(FM) LSB XMHz*/
186 tda9875_write(client, TDA9875_C2MSB, 0x00 ); /*Car2(NICAM) MSB XMHz*/
187 tda9875_write(client, TDA9875_C2MIB, 0x00 ); /*Car2(NICAM) MIB XMHz*/
188 tda9875_write(client, TDA9875_C2LSB, 0x00 ); /*Car2(NICAM) LSB XMHz*/
189 tda9875_write(client, TDA9875_DCR, 0x00 ); /*Demod config 0x00*/
190 tda9875_write(client, TDA9875_DEEM, 0x44 ); /*DE-Emph 0b0100 0100*/
191 tda9875_write(client, TDA9875_FMAT, 0x00 ); /*FM Matrix reg 0x00*/
192 tda9875_write(client, TDA9875_SC1, 0x00 ); /* SCART 1 (SC1)*/
193 tda9875_write(client, TDA9875_SC2, 0x01 ); /* SCART 2 (sc2)*/
195 tda9875_write(client, TDA9875_CH1V, 0x10 ); /* Channel volume 1 mute*/
196 tda9875_write(client, TDA9875_CH2V, 0x10 ); /* Channel volume 2 mute */
197 tda9875_write(client, TDA9875_DACOS, 0x02 ); /* sig DAC i/o(in:nicam)*/
198 tda9875_write(client, TDA9875_ADCIS, 0x6f ); /* sig ADC input(in:mono)*/
199 tda9875_write(client, TDA9875_LOSR, 0x00 ); /* line out (in:mono)*/
200 tda9875_write(client, TDA9875_AER, 0x00 ); /*06 Effect (AVL+PSEUDO) */
201 tda9875_write(client, TDA9875_MCS, 0x44 ); /* Main ch select (DAC) */
202 tda9875_write(client, TDA9875_MVL, 0x03 ); /* Vol Main left 10dB */
203 tda9875_write(client, TDA9875_MVR, 0x03 ); /* Vol Main right 10dB*/
204 tda9875_write(client, TDA9875_MBA, 0x00 ); /* Main Bass Main 0dB*/
205 tda9875_write(client, TDA9875_MTR, 0x00 ); /* Main Treble Main 0dB*/
206 tda9875_write(client, TDA9875_ACS, 0x44 ); /* Aux chan select (dac)*/
207 tda9875_write(client, TDA9875_AVL, 0x00 ); /* Vol Aux left 0dB*/
208 tda9875_write(client, TDA9875_AVR, 0x00 ); /* Vol Aux right 0dB*/
209 tda9875_write(client, TDA9875_ABA, 0x00 ); /* Aux Bass Main 0dB*/
210 tda9875_write(client, TDA9875_ATR, 0x00 ); /* Aux Aigus Main 0dB*/
212 tda9875_write(client, TDA9875_MUT, 0xcc ); /* General mute */
214 t->mode=AUDIO_UNMUTE;
215 t->lvol=t->rvol =0; /* 0dB */
217 t->treble=0; /* 0dB */
223 /* *********************** *
224 * i2c interface functions *
225 * *********************** */
227 static int tda9875_checkit(struct i2c_adapter *adap, int addr)
231 dic=i2c_read_register(adap,addr,254);
232 rev=i2c_read_register(adap,addr,255);
234 if(dic==0 || dic==2) { // tda9875 and tda9875A
235 printk("tda9875: TDA9875%s Rev.%d detected at 0x%x\n",
236 dic==0?"":"A", rev,addr<<1);
239 printk("tda9875: no such chip at 0x%x (dic=0x%x rev=0x%x)\n",addr<<1,dic,rev);
243 static int tda9875_attach(struct i2c_adapter *adap, int addr, int kind)
246 struct i2c_client *client;
247 dprintk("In tda9875_attach\n");
249 t = kmalloc(sizeof *t,GFP_KERNEL);
252 memset(t,0,sizeof *t);
255 memcpy(client,&client_template,sizeof(struct i2c_client));
256 client->adapter = adap;
258 i2c_set_clientdata(client, t);
260 if(!tda9875_checkit(adap,addr)) {
265 do_tda9875_init(client);
266 printk(KERN_INFO "tda9875: init\n");
268 i2c_attach_client(client);
272 static int tda9875_probe(struct i2c_adapter *adap)
274 #ifdef I2C_CLASS_TV_ANALOG
275 if (adap->class & I2C_CLASS_TV_ANALOG)
276 return i2c_probe(adap, &addr_data, tda9875_attach);
278 if (adap->id == (I2C_ALGO_BIT | I2C_HW_B_BT848))
279 return i2c_probe(adap, &addr_data, tda9875_attach);
284 static int tda9875_detach(struct i2c_client *client)
286 struct tda9875 *t = i2c_get_clientdata(client);
288 do_tda9875_init(client);
289 i2c_detach_client(client);
295 static int tda9875_command(struct i2c_client *client,
296 unsigned int cmd, void *arg)
298 struct tda9875 *t = i2c_get_clientdata(client);
300 dprintk("In tda9875_command...\n");
303 /* --- v4l ioctls --- */
304 /* take care: bttv does userspace copying, we'll get a
305 kernel pointer here... */
308 struct video_audio *va = arg;
311 dprintk("VIDIOCGAUDIO\n");
313 va->flags |= VIDEO_AUDIO_VOLUME |
317 /* min is -84 max is 24 */
318 left = (t->lvol+84)*606;
319 right = (t->rvol+84)*606;
320 va->volume=max(left,right);
321 va->balance=(32768*min(left,right))/
322 (va->volume ? va->volume : 1);
323 va->balance=(left<right)?
324 (65535-va->balance) : va->balance;
325 va->bass = (t->bass+12)*2427; /* min -12 max +15 */
326 va->treble = (t->treble+12)*2730;/* min -12 max +12 */
327 va->mode |= VIDEO_SOUND_MONO;
329 break; /* VIDIOCGAUDIO case */
334 struct video_audio *va = arg;
337 dprintk("VIDEOCSAUDIO...\n");
338 left = (min(65536 - va->balance,32768) *
340 right = (min(va->balance,(__u16)32768) *
342 t->lvol = ((left/606)-84) & 0xff;
346 t->lvol = -84 & 0xff;
348 t->rvol = ((right/606)-84) & 0xff;
352 t->rvol = -84 & 0xff;
354 t->bass = ((va->bass/2400)-12) & 0xff;
358 t->bass = -12 & 0xff;
360 t->treble = ((va->treble/2700)-12) & 0xff;
364 t->treble = -12 & 0xff;
368 //printk("tda9875 bal:%04x vol:%04x bass:%04x treble:%04x\n",va->balance,va->volume,va->bass,va->treble);
375 } /* end of VIDEOCSAUDIO case */
377 default: /* Not VIDEOCGAUDIO or VIDEOCSAUDIO */
380 dprintk("Default\n");
382 } /* end of (cmd) switch */
388 static struct i2c_driver driver = {
389 .owner = THIS_MODULE,
390 .name = "i2c tda9875 driver",
391 .id = I2C_DRIVERID_TDA9875,
392 .flags = I2C_DF_NOTIFY,
393 .attach_adapter = tda9875_probe,
394 .detach_client = tda9875_detach,
395 .command = tda9875_command,
398 static struct i2c_client client_template =
400 I2C_DEVNAME("tda9875"),
404 static int __init tda9875_init(void)
406 return i2c_add_driver(&driver);
409 static void __exit tda9875_fini(void)
411 i2c_del_driver(&driver);
414 module_init(tda9875_init);
415 module_exit(tda9875_fini);