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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * For the STS-Thompson TDA7432 audio processor chip
  3.  * 
  4.  * Handles audio functions: volume, balance, tone, loudness
  5.  * This driver will not complain if used with any 
  6.  * other i2c device with the same address.
  7.  *
  8.  * Muting and tone control by Jonathan Isom <jisom@ematic.com>
  9.  *
  10.  * Copyright (c) 2000 Eric Sandeen <eric_sandeen@bigfoot.com>
  11.  * This code is placed under the terms of the GNU General Public License
  12.  * Based on tda9855.c by Steve VanDeBogart (vandebo@uclink.berkeley.edu)
  13.  * Which was based on tda8425.c by Greg Alexander (c) 1998
  14.  *
  15.  * OPTIONS:
  16.  * debug    - set to 1 if you'd like to see debug messages
  17.  *            set to 2 if you'd like to be inundated with debug messages
  18.  *
  19.  * loudness - set between 0 and 15 for varying degrees of loudness effect
  20.  *
  21.  *
  22.  *
  23.  *  Revision: 0.6 - added tone controls
  24.  *  Revision: 0.5 - Fixed odd balance problem
  25.  *  Revision: 0.4 - added muting
  26.  *  Revision: 0.3 - Fixed silly reversed volume controls.  :)
  27.  *  Revision: 0.2 - Cleaned up #defines
  28.  * fixed volume control
  29.  *          Added I2C_DRIVERID_TDA7432
  30.  * added loudness insmod control
  31.  *  Revision: 0.1 - initial version
  32.  */
  33. #include <linux/module.h>
  34. #include <linux/init.h>
  35. #include <linux/kernel.h>
  36. #include <linux/sched.h>
  37. #include <linux/string.h>
  38. #include <linux/timer.h>
  39. #include <linux/delay.h>
  40. #include <linux/errno.h>
  41. #include <linux/slab.h>
  42. #include <linux/videodev.h>
  43. #include <linux/i2c.h>
  44. #include <linux/i2c-algo-bit.h>
  45. #include "bttv.h"
  46. #include "audiochip.h"
  47. #include "id.h"
  48. MODULE_AUTHOR("Eric Sandeen <eric_sandeen@bigfoot.com>");
  49. MODULE_DESCRIPTION("bttv driver for the tda7432 audio processor chip");
  50. MODULE_LICENSE("GPL");
  51. MODULE_PARM(debug,"i");
  52. MODULE_PARM(loudness,"i");
  53. static int loudness = 0; /* disable loudness by default */
  54. static int debug = 0;  /* insmod parameter */
  55. /* Address to scan (I2C address of this chip) */
  56. static unsigned short normal_i2c[] = {
  57. I2C_TDA7432 >> 1,
  58. I2C_CLIENT_END};
  59. static unsigned short normal_i2c_range[] = {I2C_CLIENT_END};
  60. static unsigned short probe[2]        = { I2C_CLIENT_END, I2C_CLIENT_END };
  61. static unsigned short probe_range[2]  = { I2C_CLIENT_END, I2C_CLIENT_END };
  62. static unsigned short ignore[2]       = { I2C_CLIENT_END, I2C_CLIENT_END };
  63. static unsigned short ignore_range[2] = { I2C_CLIENT_END, I2C_CLIENT_END };
  64. static unsigned short force[2]        = { I2C_CLIENT_END, I2C_CLIENT_END };
  65. static struct i2c_client_address_data addr_data = {
  66. normal_i2c, normal_i2c_range, 
  67. probe, probe_range, 
  68. ignore, ignore_range, 
  69. force
  70. };
  71. /* Structure of address and subaddresses for the tda7432 */
  72. struct tda7432 {
  73. int addr;
  74. int input;
  75. int volume;
  76. int bass, treble;
  77. int lf, lr, rf, rr;
  78. int loud;
  79. struct i2c_client c;
  80. };
  81. static struct i2c_driver driver;
  82. static struct i2c_client client_template;
  83. #define dprintk  if (debug) printk
  84. #define d2printk if (debug > 1) printk
  85. /* The TDA7432 is made by STS-Thompson
  86.  * http://www.st.com
  87.  * http://us.st.com/stonline/books/pdf/docs/4056.pdf
  88.  *
  89.  * TDA7432: I2C-bus controlled basic audio processor
  90.  *
  91.  * The TDA7432 controls basic audio functions like volume, balance,
  92.  * and tone control (including loudness).  It also has four channel
  93.  * output (for front and rear).  Since most vidcap cards probably
  94.  * don't have 4 channel output, this driver will set front & rear
  95.  * together (no independent control).
  96.  */ 
  97. /* Subaddresses for TDA7432 */
  98. #define TDA7432_IN 0x00 /* Input select                 */
  99. #define TDA7432_VL 0x01 /* Volume                       */
  100. #define TDA7432_TN 0x02 /* Bass, Treble (Tone)          */
  101. #define TDA7432_LF 0x03 /* Attenuation LF (Left Front)  */
  102. #define TDA7432_LR 0x04 /* Attenuation LR (Left Rear)   */
  103. #define TDA7432_RF 0x05 /* Attenuation RF (Right Front) */
  104. #define TDA7432_RR 0x06 /* Attenuation RR (Right Rear)  */
  105. #define TDA7432_LD 0x07 /* Loudness                     */
  106. /* Masks for bits in TDA7432 subaddresses */
  107. /* Many of these not used - just for documentation */
  108. /* Subaddress 0x00 - Input selection and bass control */
  109. /* Bits 0,1,2 control input:
  110.  * 0x00 - Stereo input
  111.  * 0x02 - Mono input
  112.  * 0x03 - Mute  (Using Attenuators Plays better with modules)
  113.  * Mono probably isn't used - I'm guessing only the stereo
  114.  * input is connected on most cards, so we'll set it to stereo.
  115.  * 
  116.  * Bit 3 controls bass cut: 0/1 is non-symmetric/symmetric bass cut
  117.  * Bit 4 controls bass range: 0/1 is extended/standard bass range
  118.  * 
  119.  * Highest 3 bits not used
  120.  */
  121.  
  122. #define TDA7432_STEREO_IN 0
  123. #define TDA7432_MONO_IN 2 /* Probably won't be used */
  124. #define TDA7432_BASS_SYM 1 << 3
  125. #define TDA7432_BASS_NORM 1 << 4
  126. /* Subaddress 0x01 - Volume */
  127. /* Lower 7 bits control volume from -79dB to +32dB in 1dB steps
  128.  * Recommended maximum is +20 dB
  129.  *
  130.  * +32dB: 0x00
  131.  * +20dB: 0x0c
  132.  *   0dB: 0x20
  133.  * -79dB: 0x6f
  134.  *
  135.  * MSB (bit 7) controls loudness: 1/0 is loudness on/off
  136.  */
  137. #define TDA7432_VOL_0DB 0x20
  138. #define TDA7432_LD_ON 1 << 7
  139. /* Subaddress 0x02 - Tone control */ 
  140. /* Bits 0,1,2 control absolute treble gain from 0dB to 14dB
  141.  * 0x0 is 14dB, 0x7 is 0dB
  142.  *
  143.  * Bit 3 controls treble attenuation/gain (sign)
  144.  * 1 = gain (+)
  145.  * 0 = attenuation (-)
  146.  *
  147.  * Bits 4,5,6 control absolute bass gain from 0dB to 14dB
  148.  * (This is only true for normal base range, set in 0x00)
  149.  * 0x0 << 4 is 14dB, 0x7 is 0dB
  150.  * 
  151.  * Bit 7 controls bass attenuation/gain (sign)
  152.  * 1 << 7 = gain (+)
  153.  * 0 << 7 = attenuation (-) 
  154.  *
  155.  * Example:
  156.  * 1 1 0 1 0 1 0 1 is +4dB bass, -4dB treble
  157.  */
  158. #define TDA7432_TREBLE_0DB 0xf 
  159. #define TDA7432_TREBLE 7
  160. #define TDA7432_TREBLE_GAIN 1 << 3
  161. #define TDA7432_BASS_0DB 0xf
  162. #define TDA7432_BASS 7 << 4
  163. #define TDA7432_BASS_GAIN 1 << 7
  164.  
  165. /* Subaddress 0x03 - Left  Front attenuation */
  166. /* Subaddress 0x04 - Left  Rear  attenuation */
  167. /* Subaddress 0x05 - Right Front attenuation */
  168. /* Subaddress 0x06 - Right Rear  attenuation */
  169. /* Bits 0,1,2,3,4 control attenuation from 0dB to -37.5dB
  170.  * in 1.5dB steps.
  171.  *
  172.  * 0x00 is     0dB
  173.  * 0x1f is -37.5dB
  174.  *
  175.  * Bit 5 mutes that channel when set (1 = mute, 0 = unmute)
  176.  * We'll use the mute on the input, though (above) 
  177.  * Bits 6,7 unused
  178.  */
  179. #define TDA7432_ATTEN_0DB 0x00
  180. #define TDA7432_MUTE        0x1 << 5
  181. /* Subaddress 0x07 - Loudness Control */
  182. /* Bits 0,1,2,3 control loudness from 0dB to -15dB in 1dB steps
  183.  * when bit 4 is NOT set
  184.  *
  185.  * 0x0 is   0dB
  186.  * 0xf is -15dB
  187.  *
  188.  * If bit 4 is set, then there is a flat attenuation according to
  189.  * the lower 4 bits, as above.
  190.  *
  191.  * Bits 5,6,7 unused
  192.  */
  193.  
  194.  
  195. /* Begin code */
  196. static int tda7432_write(struct i2c_client *client, int subaddr, int val)
  197. {
  198. unsigned char buffer[2];
  199. d2printk("tda7432: In tda7432_writen");
  200. dprintk("tda7432: Writing %d 0x%xn", subaddr, val);
  201. buffer[0] = subaddr;
  202. buffer[1] = val;
  203. if (2 != i2c_master_send(client,buffer,2)) {
  204. printk(KERN_WARNING "tda7432: I/O error, trying (write %d 0x%x)n",
  205.        subaddr, val);
  206. return -1;
  207. }
  208. return 0;
  209. }
  210. /* I don't think we ever actually _read_ the chip... */
  211. #if 0
  212. static int tda7432_read(struct i2c_client *client)
  213. {
  214. unsigned char buffer;
  215. d2printk("tda7432: In tda7432_readn");
  216. if (1 != i2c_master_recv(client,&buffer,1)) {
  217. printk(KERN_WARNING "tda7432: I/O error, trying (read)n");
  218. return -1;
  219. }
  220. dprintk("tda7432: Read 0x%02xn", buffer); 
  221. return buffer;
  222. }
  223. #endif
  224. static int tda7432_set(struct i2c_client *client)
  225. {
  226. struct tda7432 *t = client->data;
  227. unsigned char buf[16];
  228. d2printk("tda7432: In tda7432_setn");
  229. dprintk(KERN_INFO 
  230. "tda7432: 7432_set(0x%02x,0x%02x,0x%02x,0x%02x,0x%02x,0x%02x,0x%02x,0x%02x,0x%02x)n",
  231. t->input,t->volume,t->bass,t->treble,t->lf,t->lr,t->rf,t->rr,t->loud);
  232. buf[0]  = TDA7432_IN;
  233. buf[1]  = t->input;
  234. buf[2]  = t->volume;
  235. buf[3]  = t->bass;
  236. buf[4] = t->treble;
  237. buf[5]  = t->lf;
  238. buf[6]  = t->lr;
  239. buf[7]  = t->rf;
  240. buf[8]  = t->rr;
  241. buf[9]  = t->loud;
  242. if (10 != i2c_master_send(client,buf,10)) {
  243. printk(KERN_WARNING "tda7432: I/O error, trying tda7432_setn");
  244. return -1;
  245. }
  246. return 0;
  247. }
  248. static void do_tda7432_init(struct i2c_client *client)
  249. {
  250. struct tda7432 *t = client->data;
  251. d2printk("tda7432: In tda7432_initn");
  252. t->input  = TDA7432_STEREO_IN |  /* Main (stereo) input   */
  253.     TDA7432_BASS_SYM  |  /* Symmetric bass cut    */
  254.     TDA7432_BASS_NORM;   /* Normal bass range     */ 
  255. t->volume = TDA7432_VOL_0DB;  /* 0dB Volume            */
  256. if (loudness)  /* Turn loudness on?     */
  257. t->volume |= TDA7432_LD_ON;
  258. t->treble   = TDA7432_TREBLE_0DB; /* 0dB Treble            */
  259. t->bass = TDA7432_BASS_0DB;   /* 0dB Bass              */
  260. t->lf     = TDA7432_ATTEN_0DB;  /* 0dB attenuation       */
  261. t->lr     = TDA7432_ATTEN_0DB;  /* 0dB attenuation       */
  262. t->rf     = TDA7432_ATTEN_0DB;  /* 0dB attenuation       */
  263. t->rr     = TDA7432_ATTEN_0DB;  /* 0dB attenuation       */
  264. t->loud   = loudness;  /* insmod parameter      */
  265. tda7432_set(client);
  266. }
  267. /* *********************** *
  268.  * i2c interface functions *
  269.  * *********************** */
  270. static int tda7432_attach(struct i2c_adapter *adap, int addr,
  271.   unsigned short flags, int kind)
  272. {
  273. struct tda7432 *t;
  274. struct i2c_client *client;
  275. d2printk("tda7432: In tda7432_attachn");
  276. t = kmalloc(sizeof *t,GFP_KERNEL);
  277. if (!t)
  278. return -ENOMEM;
  279. memset(t,0,sizeof *t);
  280. client = &t->c;
  281.         memcpy(client,&client_template,sizeof(struct i2c_client));
  282.         client->adapter = adap;
  283.         client->addr = addr;
  284. client->data = t;
  285. do_tda7432_init(client);
  286. MOD_INC_USE_COUNT;
  287. strcpy(client->name,"TDA7432");
  288. printk(KERN_INFO "tda7432: initn");
  289. i2c_attach_client(client);
  290. return 0;
  291. }
  292. static int tda7432_probe(struct i2c_adapter *adap)
  293. {
  294. if (adap->id == (I2C_ALGO_BIT | I2C_HW_B_BT848))
  295. return i2c_probe(adap, &addr_data, tda7432_attach);
  296. return 0;
  297. }
  298. static int tda7432_detach(struct i2c_client *client)
  299. {
  300. struct tda7432 *t  = client->data;
  301. do_tda7432_init(client);
  302. i2c_detach_client(client);
  303. kfree(t);
  304. MOD_DEC_USE_COUNT;
  305. return 0;
  306. }
  307. static int tda7432_command(struct i2c_client *client,
  308.    unsigned int cmd, void *arg)
  309. {
  310. struct tda7432 *t = client->data;
  311. d2printk("tda7432: In tda7432_commandn");
  312. switch (cmd) {
  313. /* --- v4l ioctls --- */
  314. /* take care: bttv does userspace copying, we'll get a
  315.    kernel pointer here... */
  316. /* Query card - scale from TDA7432 settings to V4L settings */
  317. case VIDIOCGAUDIO:
  318. {
  319. struct video_audio *va = arg;
  320. dprintk("tda7432: VIDIOCGAUDIOn");
  321. va->flags |= VIDEO_AUDIO_VOLUME |
  322. VIDEO_AUDIO_BASS |
  323. VIDEO_AUDIO_TREBLE;
  324. va->mode |= VIDEO_SOUND_STEREO;
  325. /* Master volume control
  326.  * V4L volume is min 0, max 65535
  327.  * TDA7432 Volume: 
  328.  * Min (-79dB) is 0x6f
  329.  * Max (+20dB) is 0x07
  330.  * (Mask out bit 7 of vol - it's for the loudness setting)
  331.  */
  332. va->volume = ( 0x6f - (t->volume & 0x7F) ) * 630;
  333. /* Balance depends on L,R attenuation
  334.  * V4L balance is 0 to 65535, middle is 32768
  335.  * TDA7432 attenuation: min (0dB) is 0, max (-37.5dB) is 0x1f
  336.  * to scale up to V4L numbers, mult by 1057
  337.  * attenuation exists for lf, lr, rf, rr
  338.  * we use only lf and rf (front channels)
  339.  */
  340. if ( (t->lf) < (t->rf) )
  341. /* right is attenuated, balance shifted left */
  342. va->balance = (32768 - 1057*(t->rf));
  343. else
  344. /* left is attenuated, balance shifted right */
  345. va->balance = (32768 + 1057*(t->lf));
  346. /* Bass/treble */
  347. va->bass=t->bass;
  348. if(va->bass >= 0x8)
  349. va->bass = ~(va->bass - 0x8) & 0xf;
  350. va->bass = va->bass << 12;
  351. va->treble=t->treble;
  352. if(va->treble >= 0x8)
  353. va->treble = ~(va->treble - 0x8) & 0xf;
  354. va->treble = va->treble << 12;
  355. break; /* VIDIOCGAUDIO case */
  356. }
  357. /* Set card - scale from V4L settings to TDA7432 settings */
  358. case VIDIOCSAUDIO:
  359. {
  360. struct video_audio *va = arg;
  361. dprintk("tda7432: VIDEOCSAUDIOn");
  362. t->volume = 0x6f - ( (va->volume)/630 );
  363. if (loudness) /* Turn on the loudness bit */
  364. t->volume |= TDA7432_LD_ON;
  365. if(va->flags & VIDEO_AUDIO_BASS)
  366. {
  367. t->bass = va->bass >> 12;
  368. if(t->bass>= 0x8)
  369. t->bass = (~t->bass & 0xf) + 0x8 ;
  370. t->bass = t->bass | 0x10;
  371. }
  372. if(va->flags & VIDEO_AUDIO_TREBLE)
  373. {
  374. t->treble= va->treble >> 12;
  375. if(t->treble>= 0x8)
  376. t->treble = (~t->treble & 0xf) + 0x8 ;
  377. }
  378. if (va->balance < 32768) 
  379. {
  380. /* shifted to left, attenuate right */
  381. t->rr = (32768 - va->balance)/1057;
  382. t->rf = t->rr;
  383. t->lr = TDA7432_ATTEN_0DB;
  384. t->lf = TDA7432_ATTEN_0DB;
  385. }
  386. else if(va->balance > 32769)
  387. {
  388. /* shifted to right, attenuate left */
  389. t->lf = (va->balance - 32768)/1057;
  390. t->lr = t->lf;
  391. t->rr = TDA7432_ATTEN_0DB;
  392. t->rf = TDA7432_ATTEN_0DB;
  393. }
  394. else 
  395. {
  396. /* centered */
  397. t->rr = TDA7432_ATTEN_0DB;
  398. t->rf = TDA7432_ATTEN_0DB;
  399. t->lf = TDA7432_ATTEN_0DB;
  400. t->lr = TDA7432_ATTEN_0DB;
  401. }
  402. tda7432_write(client,TDA7432_TN, (t->bass << 4)| t->treble );
  403. tda7432_write(client,TDA7432_VL, t->volume);
  404. if (va->flags & VIDEO_AUDIO_MUTE)
  405. {
  406. /* Mute & update balance*/
  407. tda7432_write(client,TDA7432_LF, t->lf | TDA7432_MUTE);
  408. tda7432_write(client,TDA7432_LR, t->lr | TDA7432_MUTE);
  409. tda7432_write(client,TDA7432_RF, t->rf | TDA7432_MUTE);
  410. tda7432_write(client,TDA7432_RR, t->rr | TDA7432_MUTE);
  411. }
  412. else
  413. {
  414. tda7432_write(client,TDA7432_LF, t->lf);
  415. tda7432_write(client,TDA7432_LR, t->lr);
  416. tda7432_write(client,TDA7432_RF, t->rf);
  417. tda7432_write(client,TDA7432_RR, t->rr);
  418. }
  419. break;
  420. } /* end of VIDEOCSAUDIO case */
  421. default: /* Not VIDEOCGAUDIO or VIDEOCSAUDIO */
  422. /* nothing */
  423. d2printk("tda7432: Defaultn");
  424. } /* end of (cmd) switch */
  425. return 0;
  426. }
  427. static struct i2c_driver driver = {
  428.         "i2c tda7432 driver",
  429. I2C_DRIVERID_TDA7432,
  430.         I2C_DF_NOTIFY,
  431. tda7432_probe,
  432.         tda7432_detach,
  433.         tda7432_command,
  434. };
  435. static struct i2c_client client_template =
  436. {
  437.         "(unset)", /* name */
  438.         -1,
  439.         0,
  440.         0,
  441.         NULL,
  442.         &driver
  443. };
  444. int tda7432_init(void)
  445. {
  446. if ( (loudness < 0) || (loudness > 15) )
  447. {
  448. printk(KERN_ERR "tda7432: loudness parameter must be between 0 and 15n");
  449. return -EINVAL;
  450. }
  451. i2c_add_driver(&driver);
  452. return 0;
  453. }
  454. void tda7432_fini(void)
  455. {
  456. i2c_del_driver(&driver);
  457. }
  458. module_init(tda7432_init);
  459. module_exit(tda7432_fini);
  460. /*
  461.  * Local variables:
  462.  * c-basic-offset: 8
  463.  * End:
  464.  */