tda9875.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:12k
源码类别:

Linux/Unix编程

开发平台:

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