tda9875.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:11k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * For the TDA9875 chip
  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.
  7.  *
  8.  * Copyright (c) 2000 Guillaume Delvit based on Gerd Knorr source and
  9.  * Eric Sandeen 
  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
  13.  *
  14.  * OPTIONS:
  15.  * debug   - set to 1 if you'd like to see debug messages
  16.  * 
  17.  *  Revision: 0.1 - original version
  18.  */
  19. #include <linux/module.h>
  20. #include <linux/kernel.h>
  21. #include <linux/sched.h>
  22. #include <linux/string.h>
  23. #include <linux/timer.h>
  24. #include <linux/delay.h>
  25. #include <linux/errno.h>
  26. #include <linux/slab.h>
  27. #include <linux/videodev.h>
  28. #include <linux/i2c.h>
  29. #include <linux/i2c-algo-bit.h>
  30. #include "bttv.h"
  31. #include "audiochip.h"
  32. #include "id.h"
  33. MODULE_PARM(debug,"i");
  34. MODULE_LICENSE("GPL");
  35. static int debug = 0; /* insmod parameter */
  36. /* Addresses to scan */
  37. static unsigned short normal_i2c[] =  {
  38.     I2C_TDA9875 >> 1,
  39.     I2C_CLIENT_END};
  40. static unsigned short normal_i2c_range[] = {I2C_CLIENT_END};
  41. static unsigned short probe[2]        = { I2C_CLIENT_END, I2C_CLIENT_END };
  42. static unsigned short probe_range[2]  = { I2C_CLIENT_END, I2C_CLIENT_END };
  43. static unsigned short ignore[2]       = { I2C_CLIENT_END, I2C_CLIENT_END };
  44. static unsigned short ignore_range[2] = { I2C_CLIENT_END, I2C_CLIENT_END };
  45. static unsigned short force[2]        = { I2C_CLIENT_END, I2C_CLIENT_END };
  46. static struct i2c_client_address_data addr_data = {
  47. normal_i2c, normal_i2c_range, 
  48. probe, probe_range, 
  49. ignore, ignore_range, 
  50. force
  51. };
  52. /* This is a superset of the TDA9875 */
  53. struct tda9875 {
  54. int mode;
  55. int rvol, lvol;
  56. int bass, treble;
  57. struct i2c_client c;
  58. };
  59. static struct i2c_driver driver;
  60. static struct i2c_client client_template;
  61. #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
  65.  *
  66.  */ 
  67. /* subaddresses for TDA9875 */
  68. #define TDA9875_MUT         0x12  /*General mute  (value --> 0b11001100*/
  69. #define TDA9875_CFG         0x01  /* Config register (value --> 0b00000000 */
  70. #define TDA9875_DACOS       0x13  /*DAC i/o select (ADC) 0b0000100*/
  71. #define TDA9875_LOSR        0x16  /*Line output select regirter 0b0100 0001*/
  72. #define TDA9875_CH1V        0x0c  /*Channel 1 volume (mute)*/
  73. #define TDA9875_CH2V        0x0d  /*Channel 2 volume (mute)*/
  74. #define TDA9875_SC1         0x14  /*SCART 1 in (mono)*/
  75. #define TDA9875_SC2         0x15  /*SCART 2 in (mono)*/
  76. #define TDA9875_ADCIS       0x17  /*ADC input select (mono) 0b0110 000*/
  77. #define TDA9875_AER         0x19  /*Audio effect (AVL+Pseudo) 0b0000 0110*/
  78. #define TDA9875_MCS         0x18  /*Main channel select (DAC) 0b0000100*/
  79. #define TDA9875_MVL         0x1a  /* Main volume gauche */
  80. #define TDA9875_MVR         0x1b  /* Main volume droite */
  81. #define TDA9875_MBA         0x1d  /* Main Basse */
  82. #define TDA9875_MTR         0x1e  /* Main treble */
  83. #define TDA9875_ACS         0x1f  /* Auxilary channel select (FM) 0b0000000*/
  84. #define TDA9875_AVL         0x20  /* Auxilary volume gauche */
  85. #define TDA9875_AVR         0x21  /* Auxilary volume droite */
  86. #define TDA9875_ABA         0x22  /* Auxilary Basse */
  87. #define TDA9875_ATR         0x23  /* Auxilary treble */
  88. #define TDA9875_MSR         0x02  /* Monitor select register */
  89. #define TDA9875_C1MSB       0x03  /* Carrier 1 (FM) frequency register MSB */
  90. #define TDA9875_C1MIB       0x04  /* Carrier 1 (FM) frequency register (16-8]b */
  91. #define TDA9875_C1LSB       0x05  /* Carrier 1 (FM) frequency register LSB */
  92. #define TDA9875_C2MSB       0x06  /* Carrier 2 (nicam) frequency register MSB */
  93. #define TDA9875_C2MIB       0x07  /* Carrier 2 (nicam) frequency register (16-8]b */
  94. #define TDA9875_C2LSB       0x08  /* Carrier 2 (nicam) frequency register LSB */
  95. #define TDA9875_DCR         0x09  /* Demodulateur configuration regirter*/
  96. #define TDA9875_DEEM        0x0a  /* FM de-emphasis regirter*/
  97. #define TDA9875_FMAT        0x0b  /* FM Matrix regirter*/
  98. /* values */
  99. #define TDA9875_MUTE_ON     0xff /* general mute */
  100. #define TDA9875_MUTE_OFF    0xcc /* general no mute */
  101. /* Begin code */
  102. static int tda9875_write(struct i2c_client *client, int subaddr, unsigned char val)
  103. {
  104. unsigned char buffer[2];
  105. dprintk("In tda9875_writen");
  106. dprintk("Writing %d 0x%xn", subaddr, val);
  107. buffer[0] = subaddr;
  108. buffer[1] = val;
  109. if (2 != i2c_master_send(client,buffer,2)) {
  110. printk(KERN_WARNING "tda9875: I/O error, trying (write %d 0x%x)n",
  111.        subaddr, val);
  112. return -1;
  113. }
  114. return 0;
  115. }
  116. #if 0
  117. static int tda9875_read(struct i2c_client *client)
  118. {
  119. unsigned char buffer;
  120. dprintk("In tda9875_readn");
  121. if (1 != i2c_master_recv(client,&buffer,1)) {
  122. printk(KERN_WARNING "tda9875: I/O error, trying (read)n");
  123. return -1;
  124. }
  125. dprintk("Read 0x%02xn", buffer); 
  126. return buffer;
  127. }
  128. #endif
  129. static void tda9875_set(struct i2c_client *client)
  130. {
  131. struct tda9875 *tda = client->data;
  132. unsigned char a;
  133. dprintk(KERN_DEBUG "tda9875_set(%04x,%04x,%04x,%04x)n",tda->lvol,tda->rvol,tda->bass,tda->treble);
  134. a = tda->lvol & 0xff;
  135. tda9875_write(client, TDA9875_MVL, a);
  136. a =tda->rvol & 0xff;
  137. tda9875_write(client, TDA9875_MVR, a);
  138. a =tda->bass & 0xff;
  139. tda9875_write(client, TDA9875_MBA, a);
  140. a =tda->treble  & 0xff;
  141. tda9875_write(client, TDA9875_MTR, a);
  142. }
  143. static void do_tda9875_init(struct i2c_client *client)
  144. {
  145. struct tda9875 *t = client->data;
  146. dprintk("In tda9875_initn"); 
  147. tda9875_write(client, TDA9875_CFG, 0xd0 ); /*reg de config 0 (reset)*/
  148.      tda9875_write(client, TDA9875_MSR, 0x03 );    /* Monitor 0b00000XXX*/
  149. tda9875_write(client, TDA9875_C1MSB, 0x00 );  /*Car1(FM) MSB XMHz*/
  150. tda9875_write(client, TDA9875_C1MIB, 0x00 );  /*Car1(FM) MIB XMHz*/
  151. tda9875_write(client, TDA9875_C1LSB, 0x00 );  /*Car1(FM) LSB XMHz*/
  152. tda9875_write(client, TDA9875_C2MSB, 0x00 );  /*Car2(NICAM) MSB XMHz*/
  153. tda9875_write(client, TDA9875_C2MIB, 0x00 );  /*Car2(NICAM) MIB XMHz*/
  154. tda9875_write(client, TDA9875_C2LSB, 0x00 );  /*Car2(NICAM) LSB XMHz*/
  155. tda9875_write(client, TDA9875_DCR, 0x00 );    /*Demod config 0x00*/
  156. tda9875_write(client, TDA9875_DEEM, 0x44 );   /*DE-Emph 0b0100 0100*/
  157. tda9875_write(client, TDA9875_FMAT, 0x00 );   /*FM Matrix reg 0x00*/
  158. tda9875_write(client, TDA9875_SC1, 0x00 );    /* SCART 1 (SC1)*/
  159. tda9875_write(client, TDA9875_SC2, 0x01 );    /* SCART 2 (sc2)*/
  160.         
  161. tda9875_write(client, TDA9875_CH1V, 0x10 );  /* Channel volume 1 mute*/
  162. tda9875_write(client, TDA9875_CH2V, 0x10 );  /* Channel volume 2 mute */
  163. tda9875_write(client, TDA9875_DACOS, 0x02 ); /* sig DAC i/o(in:nicam)*/
  164. tda9875_write(client, TDA9875_ADCIS, 0x6f ); /* sig ADC input(in:mono)*/
  165. tda9875_write(client, TDA9875_LOSR, 0x00 );  /* line out (in:mono)*/
  166.   tda9875_write(client, TDA9875_AER, 0x00 );   /*06 Effect (AVL+PSEUDO) */
  167. tda9875_write(client, TDA9875_MCS, 0x44 );   /* Main ch select (DAC) */
  168. tda9875_write(client, TDA9875_MVL, 0x03 );   /* Vol Main left 10dB */
  169. tda9875_write(client, TDA9875_MVR, 0x03 );   /* Vol Main right 10dB*/
  170. tda9875_write(client, TDA9875_MBA, 0x00 );   /* Main Bass Main 0dB*/
  171. tda9875_write(client, TDA9875_MTR, 0x00 );   /* Main Treble Main 0dB*/
  172. tda9875_write(client, TDA9875_ACS, 0x44 );   /* Aux chan select (dac)*/
  173. tda9875_write(client, TDA9875_AVL, 0x00 );   /* Vol Aux left 0dB*/
  174. tda9875_write(client, TDA9875_AVR, 0x00 );   /* Vol Aux right 0dB*/
  175. tda9875_write(client, TDA9875_ABA, 0x00 );   /* Aux Bass Main 0dB*/
  176. tda9875_write(client, TDA9875_ATR, 0x00 );   /* Aux Aigus Main 0dB*/
  177. tda9875_write(client, TDA9875_MUT, 0xcc );   /* General mute  */
  178.         
  179. t->mode=AUDIO_UNMUTE;
  180. t->lvol=t->rvol =0;   /* 0dB */
  181. t->bass=0;          /* 0dB */
  182. t->treble=0;   /* 0dB */
  183. tda9875_set(client);
  184. }
  185. /* *********************** *
  186.  * i2c interface functions *
  187.  * *********************** */
  188. static int tda9875_attach(struct i2c_adapter *adap, int addr,
  189.   unsigned short flags, int kind)
  190. {
  191. struct tda9875 *t;
  192. struct i2c_client *client;
  193. dprintk("In tda9875_attachn");
  194. t = kmalloc(sizeof *t,GFP_KERNEL);
  195. if (!t)
  196. return -ENOMEM;
  197. memset(t,0,sizeof *t);
  198. client = &t->c;
  199.         memcpy(client,&client_template,sizeof(struct i2c_client));
  200.         client->adapter = adap;
  201.         client->addr = addr;
  202. client->data = t;
  203. do_tda9875_init(client);
  204. MOD_INC_USE_COUNT;
  205. strcpy(client->name,"TDA9875");
  206. printk(KERN_INFO "tda9875: initn");
  207. i2c_attach_client(client);
  208. return 0;
  209. }
  210. static int tda9875_probe(struct i2c_adapter *adap)
  211. {
  212. if (adap->id == (I2C_ALGO_BIT | I2C_HW_B_BT848))
  213. return i2c_probe(adap, &addr_data, tda9875_attach);
  214. return 0;
  215. }
  216. static int tda9875_detach(struct i2c_client *client)
  217. {
  218. struct tda9875 *t  = client->data;
  219. do_tda9875_init(client);
  220. i2c_detach_client(client);
  221. kfree(t);
  222. MOD_DEC_USE_COUNT;
  223. return 0;
  224. }
  225. static int tda9875_command(struct i2c_client *client,
  226. unsigned int cmd, void *arg)
  227. {
  228. struct tda9875 *t = client->data;
  229. dprintk("In tda9875_command...n"); 
  230. switch (cmd) {
  231.         /* --- v4l ioctls --- */
  232. /* take care: bttv does userspace copying, we'll get a
  233.    kernel pointer here... */
  234. case VIDIOCGAUDIO:
  235. {
  236. struct video_audio *va = arg;
  237. int left,right;
  238. dprintk("VIDIOCGAUDIOn");
  239. va->flags |= VIDEO_AUDIO_VOLUME |
  240. VIDEO_AUDIO_BASS |
  241. VIDEO_AUDIO_TREBLE;
  242. /* min is -84 max is 24 */
  243. left = (t->lvol+84)*606;
  244. right = (t->rvol+84)*606;
  245. va->volume=MAX(left,right);
  246. va->balance=(32768*MIN(left,right))/
  247. (va->volume ? va->volume : 1);
  248. va->balance=(left<right)?
  249. (65535-va->balance) : va->balance;
  250. va->bass = (t->bass+12)*2427;    /* min -12 max +15 */
  251. va->treble = (t->treble+12)*2730;/* min -12 max +12 */
  252. va->mode |= VIDEO_SOUND_MONO;
  253. break; /* VIDIOCGAUDIO case */
  254. }
  255. case VIDIOCSAUDIO:
  256. {
  257. struct video_audio *va = arg;
  258. int left,right;
  259. dprintk("VIDEOCSAUDIO...n"); 
  260. left = (MIN(65536 - va->balance,32768) *
  261. va->volume) / 32768;
  262. right = (MIN(va->balance,32768) *
  263.  va->volume) / 32768;
  264. t->lvol = ((left/606)-84) & 0xff;
  265. if (t->lvol > 24)
  266.  t->lvol = 24;
  267. if (t->lvol < -84)
  268.  t->lvol = -84 & 0xff;
  269. t->rvol = ((right/606)-84) & 0xff;
  270. if (t->rvol > 24)
  271.  t->rvol = 24;
  272. if (t->rvol < -84)
  273.  t->rvol = -84 & 0xff;
  274. t->bass = ((va->bass/2400)-12) & 0xff;
  275. if (t->bass > 15)
  276.  t->bass = 15;
  277. if (t->bass < -12)
  278.  t->bass = -12 & 0xff;
  279. t->treble = ((va->treble/2700)-12) & 0xff;
  280. if (t->treble > 12)
  281.  t->treble = 12;
  282. if (t->treble < -12)
  283.  t->treble = -12 & 0xff;
  284. //printk("tda9875 bal:%04x vol:%04x bass:%04x treble:%04xn",va->balance,va->volume,va->bass,va->treble);
  285.                 tda9875_set(client);
  286. break;
  287. } /* end of VIDEOCSAUDIO case */
  288. default: /* Not VIDEOCGAUDIO or VIDEOCSAUDIO */
  289. /* nothing */
  290. dprintk("Defaultn");
  291. } /* end of (cmd) switch */
  292. return 0;
  293. }
  294. static struct i2c_driver driver = {
  295.         "i2c tda9875 driver",
  296.         I2C_DRIVERID_TDA9875, /* Get new one for TDA9875 */
  297.         I2C_DF_NOTIFY,
  298. tda9875_probe,
  299.         tda9875_detach,
  300.         tda9875_command,
  301. };
  302. static struct i2c_client client_template =
  303. {
  304.         "(unset)", /* name */
  305.         -1,
  306.         0,
  307.         0,
  308.         NULL,
  309.         &driver
  310. };
  311. #ifdef MODULE
  312. int init_module(void)
  313. #else
  314. int tda9875_init(void)
  315. #endif
  316. {
  317. i2c_add_driver(&driver);
  318. return 0;
  319. }
  320. #ifdef MODULE
  321. void cleanup_module(void)
  322. {
  323. i2c_del_driver(&driver);
  324. }
  325. #endif
  326. /*
  327.  * Local variables:
  328.  * c-basic-offset: 8
  329.  * End:
  330.  */