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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * experimental driver for simple i2c audio chips.
  3.  *
  4.  * Copyright (c) 2000 Gerd Knorr
  5.  * based on code by:
  6.  *   Eric Sandeen (eric_sandeen@bigfoot.com) 
  7.  *   Steve VanDeBogart (vandebo@uclink.berkeley.edu)
  8.  *   Greg Alexander (galexand@acm.org)
  9.  *
  10.  * This code is placed under the terms of the GNU General Public License
  11.  * 
  12.  * OPTIONS:
  13.  *   debug - set to 1 if you'd like to see debug messages
  14.  *
  15.  */
  16. #include <linux/config.h>
  17. #include <linux/module.h>
  18. #include <linux/kernel.h>
  19. #include <linux/sched.h>
  20. #include <linux/string.h>
  21. #include <linux/timer.h>
  22. #include <linux/delay.h>
  23. #include <linux/errno.h>
  24. #include <linux/slab.h>
  25. #include <linux/videodev.h>
  26. #include <linux/i2c.h>
  27. #include <linux/i2c-algo-bit.h>
  28. #include <linux/init.h>
  29. #include <linux/smp_lock.h>
  30. #include "audiochip.h"
  31. #include "tvaudio.h"
  32. #include "id.h"
  33. /* ---------------------------------------------------------------------- */
  34. /* insmod args                                                            */
  35. MODULE_PARM(debug,"i");
  36. static int debug = 0; /* insmod parameter */
  37. #define dprintk  if (debug) printk
  38. MODULE_DESCRIPTION("device driver for various i2c TV sound decoder / audiomux chips");
  39. MODULE_AUTHOR("Eric Sandeen, Steve VanDeBogart, Greg Alexander, Gerd Knorr");
  40. MODULE_LICENSE("GPL");
  41. /* ---------------------------------------------------------------------- */
  42. /* our structs                                                            */
  43. #define MAXREGS 64
  44. struct CHIPSTATE;
  45. typedef int  (*getvalue)(int);
  46. typedef int  (*checkit)(struct CHIPSTATE*);
  47. typedef int  (*initialize)(struct CHIPSTATE*);
  48. typedef int  (*getmode)(struct CHIPSTATE*);
  49. typedef void (*setmode)(struct CHIPSTATE*, int mode);
  50. typedef void (*checkmode)(struct CHIPSTATE*);
  51. /* i2c command */
  52. typedef struct AUDIOCMD {
  53. int             count;             /* # of bytes to send */
  54. unsigned char   bytes[MAXREGS+1];  /* addr, data, data, ... */
  55. } audiocmd;
  56. /* chip description */
  57. struct CHIPDESC {
  58. char       *name;             /* chip name         */
  59. int        id;                /* ID */
  60. int        addr_lo, addr_hi;  /* i2c address range */
  61. int        registers;         /* # of registers    */
  62. int        *insmodopt;
  63. checkit    checkit;
  64. initialize initialize;
  65. int        flags;
  66. #define CHIP_HAS_VOLUME      1
  67. #define CHIP_HAS_BASSTREBLE  2
  68. #define CHIP_HAS_INPUTSEL    4
  69. /* various i2c command sequences */
  70. audiocmd   init;
  71. /* which register has which value */
  72. int    leftreg,rightreg,treblereg,bassreg;
  73. /* initialize with (defaults to 65535/65535/32768/32768 */
  74. int    leftinit,rightinit,trebleinit,bassinit;
  75. /* functions to convert the values (v4l -> chip) */
  76. getvalue volfunc,treblefunc,bassfunc;
  77. /* get/set mode */
  78. getmode  getmode;
  79. setmode  setmode;
  80. /* check / autoswitch audio after channel switches */
  81. checkmode  checkmode;
  82. /* input switch register + values for v4l inputs */
  83. int  inputreg;
  84. int  inputmap[8];
  85. int  inputmute;
  86. int  inputmask;
  87. };
  88. static struct CHIPDESC chiplist[];
  89. /* current state of the chip */
  90. struct CHIPSTATE {
  91. struct i2c_client c;
  92. /* index into CHIPDESC array */
  93. int type;
  94. /* shadow register set */
  95. audiocmd   shadow;
  96. /* current settings */
  97. __u16 left,right,treble,bass,mode;
  98. int prevmode;
  99. int norm;
  100. /* thread */
  101. struct task_struct  *thread;
  102. struct semaphore    *notify;
  103. wait_queue_head_t    wq;
  104. struct timer_list    wt;
  105. int                  done;
  106. int                  watch_stereo;
  107. };
  108. #define VIDEO_MODE_RADIO 16      /* norm magic for radio mode */
  109. /* ---------------------------------------------------------------------- */
  110. /* i2c addresses                                                          */
  111. static unsigned short normal_i2c[] = {
  112. I2C_TDA8425   >> 1,
  113. I2C_TEA6300   >> 1,
  114. I2C_TEA6420   >> 1,
  115. I2C_TDA9840   >> 1,
  116. I2C_TDA985x_L >> 1,
  117. I2C_TDA985x_H >> 1,
  118. I2C_TDA9874   >> 1,
  119. I2C_PIC16C54  >> 1,
  120. I2C_CLIENT_END };
  121. static unsigned short normal_i2c_range[2] = { I2C_CLIENT_END, I2C_CLIENT_END };
  122. static unsigned short probe[2]            = { I2C_CLIENT_END, I2C_CLIENT_END };
  123. static unsigned short probe_range[2]      = { I2C_CLIENT_END, I2C_CLIENT_END };
  124. static unsigned short ignore[2]           = { I2C_CLIENT_END, I2C_CLIENT_END };
  125. static unsigned short ignore_range[2]     = { I2C_CLIENT_END, I2C_CLIENT_END };
  126. static unsigned short force[2]            = { I2C_CLIENT_END, I2C_CLIENT_END };
  127. static struct i2c_client_address_data addr_data = {
  128. normal_i2c, normal_i2c_range, 
  129. probe, probe_range, 
  130. ignore, ignore_range, 
  131. force
  132. };
  133. static struct i2c_driver driver;
  134. static struct i2c_client client_template;
  135. /* ---------------------------------------------------------------------- */
  136. /* i2c I/O functions                                                      */
  137. static int chip_write(struct CHIPSTATE *chip, int subaddr, int val)
  138. {
  139. unsigned char buffer[2];
  140. if (-1 == subaddr) {
  141. dprintk("%s: chip_write: 0x%xn", chip->c.name, val);
  142. chip->shadow.bytes[1] = val;
  143. buffer[0] = val;
  144. if (1 != i2c_master_send(&chip->c,buffer,1)) {
  145. printk(KERN_WARNING "%s: I/O error (write 0x%x)n",
  146.        chip->c.name, val);
  147. return -1;
  148. }
  149. } else {
  150. dprintk("%s: chip_write: reg%d=0x%xn", chip->c.name, subaddr, val);
  151. chip->shadow.bytes[subaddr+1] = val;
  152. buffer[0] = subaddr;
  153. buffer[1] = val;
  154. if (2 != i2c_master_send(&chip->c,buffer,2)) {
  155. printk(KERN_WARNING "%s: I/O error (write reg%d=0x%x)n",
  156.        chip->c.name, subaddr, val);
  157. return -1;
  158. }
  159. }
  160. return 0;
  161. }
  162. static int chip_write_masked(struct CHIPSTATE *chip, int subaddr, int val, int mask)
  163. {
  164. if (mask != 0) {
  165. if (-1 == subaddr) {
  166. val = (chip->shadow.bytes[1] & ~mask) | (val & mask);
  167. } else {
  168. val = (chip->shadow.bytes[subaddr+1] & ~mask) | (val & mask);
  169. }
  170. }
  171. return chip_write(chip, subaddr, val);
  172. }
  173. static int chip_read(struct CHIPSTATE *chip)
  174. {
  175. unsigned char buffer;
  176. if (1 != i2c_master_recv(&chip->c,&buffer,1)) {
  177. printk(KERN_WARNING "%s: I/O error (read)n",
  178.        chip->c.name);
  179. return -1;
  180. }
  181. dprintk("%s: chip_read: 0x%xn",chip->c.name,buffer); 
  182. return buffer;
  183. }
  184. static int chip_read2(struct CHIPSTATE *chip, int subaddr)
  185. {
  186.         unsigned char write[1];
  187.         unsigned char read[1];
  188.         struct i2c_msg msgs[2] = {
  189.                 { chip->c.addr, 0,        1, write },
  190.                 { chip->c.addr, I2C_M_RD, 1, read  }
  191.         };
  192.         write[0] = subaddr;
  193. if (2 != i2c_transfer(chip->c.adapter,msgs,2)) {
  194. printk(KERN_WARNING "%s: I/O error (read2)n",
  195.        chip->c.name);
  196. return -1;
  197. }
  198. dprintk("%s: chip_read2: reg%d=0x%xn",
  199. chip->c.name,subaddr,read[0]); 
  200. return read[0];
  201. }
  202. static int chip_cmd(struct CHIPSTATE *chip, char *name, audiocmd *cmd)
  203. {
  204. int i;
  205. if (0 == cmd->count)
  206. return 0;
  207. /* update our shadow register set; print bytes if (debug > 0) */
  208. dprintk("%s: chip_cmd(%s): reg=%d, data:",
  209. chip->c.name,name,cmd->bytes[0]);
  210. for (i = 1; i < cmd->count; i++) {
  211. dprintk(" 0x%x",cmd->bytes[i]);
  212. chip->shadow.bytes[i+cmd->bytes[0]] = cmd->bytes[i];
  213. }
  214. dprintk("n");
  215. /* send data to the chip */
  216. if (cmd->count != i2c_master_send(&chip->c,cmd->bytes,cmd->count)) {
  217. printk(KERN_WARNING "%s: I/O error (%s)n", chip->c.name, name);
  218. return -1;
  219. }
  220. return 0;
  221. }
  222. /* ---------------------------------------------------------------------- */
  223. /* kernel thread for doing i2c stuff asyncronly
  224.  *   right now it is used only to check the audio mode (mono/stereo/whatever)
  225.  *   some time after switching to another TV channel, then turn on stereo
  226.  *   if available, ...
  227.  */
  228. static void chip_thread_wake(unsigned long data)
  229. {
  230.         struct CHIPSTATE *chip = (struct CHIPSTATE*)data;
  231. wake_up_interruptible(&chip->wq);
  232. }
  233. static int chip_thread(void *data)
  234. {
  235.         struct CHIPSTATE *chip = data;
  236. struct CHIPDESC  *desc = chiplist + chip->type;
  237. #ifdef CONFIG_SMP
  238. lock_kernel();
  239. #endif
  240. daemonize();
  241. sigfillset(&current->blocked);
  242. strcpy(current->comm,chip->c.name);
  243. chip->thread = current;
  244. #ifdef CONFIG_SMP
  245. unlock_kernel();
  246. #endif
  247. dprintk("%s: thread startedn", chip->c.name);
  248. if(chip->notify != NULL)
  249. up(chip->notify);
  250. for (;;) {
  251. interruptible_sleep_on(&chip->wq);
  252. dprintk("%s: thread wakeupn", chip->c.name);
  253. if (chip->done || signal_pending(current))
  254. break;
  255. /* don't do anything for radio or if mode != auto */
  256. if (chip->norm == VIDEO_MODE_RADIO || chip->mode != 0)
  257. continue;
  258. /* have a look what's going on */
  259. desc->checkmode(chip);
  260. /* schedule next check */
  261. mod_timer(&chip->wt, jiffies+2*HZ);
  262. }
  263. chip->thread = NULL;
  264. dprintk("%s: thread exitingn", chip->c.name);
  265. if(chip->notify != NULL)
  266. up(chip->notify);
  267. return 0;
  268. }
  269. static void generic_checkmode(struct CHIPSTATE *chip)
  270. {
  271. struct CHIPDESC  *desc = chiplist + chip->type;
  272. int mode = desc->getmode(chip);
  273. if (mode == chip->prevmode)
  274.     return;
  275. dprintk("%s: thread checkmoden", chip->c.name);
  276. chip->prevmode = mode;
  277. if (mode & VIDEO_SOUND_STEREO)
  278. desc->setmode(chip,VIDEO_SOUND_STEREO);
  279. else if (mode & VIDEO_SOUND_LANG1)
  280. desc->setmode(chip,VIDEO_SOUND_LANG1);
  281. else if (mode & VIDEO_SOUND_LANG2)
  282. desc->setmode(chip,VIDEO_SOUND_LANG2);
  283. else
  284. desc->setmode(chip,VIDEO_SOUND_MONO);
  285. }
  286. /* ---------------------------------------------------------------------- */
  287. /* audio chip descriptions - defines+functions for tda9840                */
  288. #define TDA9840_SW         0x00
  289. #define TDA9840_LVADJ      0x02
  290. #define TDA9840_STADJ      0x03
  291. #define TDA9840_TEST       0x04
  292. #define TDA9840_MONO       0x10
  293. #define TDA9840_STEREO     0x2a
  294. #define TDA9840_DUALA      0x12
  295. #define TDA9840_DUALB      0x1e
  296. #define TDA9840_DUALAB     0x1a
  297. #define TDA9840_DUALBA     0x16
  298. #define TDA9840_EXTERNAL   0x7a
  299. #define TDA9840_DS_DUAL    0x20 /* Dual sound identified          */
  300. #define TDA9840_ST_STEREO  0x40 /* Stereo sound identified        */
  301. #define TDA9840_PONRES     0x80 /* Power-on reset detected if = 1 */
  302. #define TDA9840_TEST_INT1SN 0x1 /* Integration time 0.5s when set */
  303. #define TDA9840_TEST_INTFU 0x02 /* Disables integrator function */
  304. static int tda9840_getmode(struct CHIPSTATE *chip)
  305. {
  306. int val, mode;
  307. val = chip_read(chip);
  308. mode = VIDEO_SOUND_MONO;
  309. if (val & TDA9840_DS_DUAL)
  310. mode |= VIDEO_SOUND_LANG1 | VIDEO_SOUND_LANG2;
  311. if (val & TDA9840_ST_STEREO)
  312. mode |= VIDEO_SOUND_STEREO;
  313. dprintk ("tda9840_getmode(): raw chip read: %d, return: %dn",
  314.  val, mode);
  315. return mode;
  316. }
  317. static void tda9840_setmode(struct CHIPSTATE *chip, int mode)
  318. {
  319. int update = 1;
  320. int t = chip->shadow.bytes[TDA9840_SW + 1] & ~0x7e;
  321. switch (mode) {
  322. case VIDEO_SOUND_MONO:
  323. t |= TDA9840_MONO;
  324. break;
  325. case VIDEO_SOUND_STEREO:
  326. t |= TDA9840_STEREO;
  327. break;
  328. case VIDEO_SOUND_LANG1:
  329. t |= TDA9840_DUALA;
  330. break;
  331. case VIDEO_SOUND_LANG2:
  332. t |= TDA9840_DUALB;
  333. break;
  334. default:
  335. update = 0;
  336. }
  337. if (update)
  338. chip_write(chip, TDA9840_SW, t);
  339. }
  340. /* ---------------------------------------------------------------------- */
  341. /* audio chip descriptions - defines+functions for tda985x                */
  342. /* subaddresses for TDA9855 */
  343. #define TDA9855_VR 0x00 /* Volume, right */
  344. #define TDA9855_VL 0x01 /* Volume, left */
  345. #define TDA9855_BA 0x02 /* Bass */
  346. #define TDA9855_TR 0x03 /* Treble */
  347. #define TDA9855_SW 0x04 /* Subwoofer - not connected on DTV2000 */
  348. /* subaddresses for TDA9850 */
  349. #define TDA9850_C4 0x04 /* Control 1 for TDA9850 */
  350. /* subaddesses for both chips */
  351. #define TDA985x_C5 0x05 /* Control 2 for TDA9850, Control 1 for TDA9855 */
  352. #define TDA985x_C6 0x06 /* Control 3 for TDA9850, Control 2 for TDA9855 */
  353. #define TDA985x_C7 0x07 /* Control 4 for TDA9850, Control 3 for TDA9855 */
  354. #define TDA985x_A1 0x08 /* Alignment 1 for both chips */
  355. #define TDA985x_A2 0x09 /* Alignment 2 for both chips */
  356. #define TDA985x_A3 0x0a /* Alignment 3 for both chips */
  357. /* Masks for bits in TDA9855 subaddresses */
  358. /* 0x00 - VR in TDA9855 */
  359. /* 0x01 - VL in TDA9855 */
  360. /* lower 7 bits control gain from -71dB (0x28) to 16dB (0x7f)
  361.  * in 1dB steps - mute is 0x27 */
  362. /* 0x02 - BA in TDA9855 */ 
  363. /* lower 5 bits control bass gain from -12dB (0x06) to 16.5dB (0x19)
  364.  * in .5dB steps - 0 is 0x0E */
  365. /* 0x03 - TR in TDA9855 */
  366. /* 4 bits << 1 control treble gain from -12dB (0x3) to 12dB (0xb)
  367.  * in 3dB steps - 0 is 0x7 */
  368. /* Masks for bits in both chips' subaddresses */
  369. /* 0x04 - SW in TDA9855, C4/Control 1 in TDA9850 */
  370. /* Unique to TDA9855: */
  371. /* 4 bits << 2 control subwoofer/surround gain from -14db (0x1) to 14db (0xf)
  372.  * in 3dB steps - mute is 0x0 */
  373.  
  374. /* Unique to TDA9850: */
  375. /* lower 4 bits control stereo noise threshold, over which stereo turns off
  376.  * set to values of 0x00 through 0x0f for Ster1 through Ster16 */
  377. /* 0x05 - C5 - Control 1 in TDA9855 , Control 2 in TDA9850*/
  378. /* Unique to TDA9855: */
  379. #define TDA9855_MUTE 1<<7 /* GMU, Mute at outputs */
  380. #define TDA9855_AVL 1<<6 /* AVL, Automatic Volume Level */
  381. #define TDA9855_LOUD 1<<5 /* Loudness, 1==off */
  382. #define TDA9855_SUR 1<<3 /* Surround / Subwoofer 1==.5(L-R) 0==.5(L+R) */
  383.      /* Bits 0 to 3 select various combinations
  384.                               * of line in and line out, only the 
  385.                               * interesting ones are defined */
  386. #define TDA9855_EXT 1<<2 /* Selects inputs LIR and LIL.  Pins 41 & 12 */
  387. #define TDA9855_INT 0    /* Selects inputs LOR and LOL.  (internal) */
  388. /* Unique to TDA9850:  */
  389. /* lower 4 bits contol SAP noise threshold, over which SAP turns off
  390.  * set to values of 0x00 through 0x0f for SAP1 through SAP16 */
  391. /* 0x06 - C6 - Control 2 in TDA9855, Control 3 in TDA9850 */
  392. /* Common to TDA9855 and TDA9850: */
  393. #define TDA985x_SAP 3<<6 /* Selects SAP output, mute if not received */
  394. #define TDA985x_STEREO 1<<6 /* Selects Stereo ouput, mono if not received */
  395. #define TDA985x_MONO 0    /* Forces Mono output */
  396. #define TDA985x_LMU 1<<3 /* Mute (LOR/LOL for 9855, OUTL/OUTR for 9850) */
  397. /* Unique to TDA9855: */
  398. #define TDA9855_TZCM 1<<5 /* If set, don't mute till zero crossing */
  399. #define TDA9855_VZCM 1<<4 /* If set, don't change volume till zero crossing*/
  400. #define TDA9855_LINEAR 0    /* Linear Stereo */
  401. #define TDA9855_PSEUDO 1    /* Pseudo Stereo */
  402. #define TDA9855_SPAT_30 2    /* Spatial Stereo, 30% anti-phase crosstalk */
  403. #define TDA9855_SPAT_50 3    /* Spatial Stereo, 52% anti-phase crosstalk */
  404. #define TDA9855_E_MONO 7    /* Forced mono - mono select elseware, so useless*/
  405. /* 0x07 - C7 - Control 3 in TDA9855, Control 4 in TDA9850 */
  406. /* Common to both TDA9855 and TDA9850: */
  407. /* lower 4 bits control input gain from -3.5dB (0x0) to 4dB (0xF)
  408.  * in .5dB steps -  0dB is 0x7 */
  409. /* 0x08, 0x09 - A1 and A2 (read/write) */
  410. /* Common to both TDA9855 and TDA9850: */
  411. /* lower 5 bites are wideband and spectral expander alignment
  412.  * from 0x00 to 0x1f - nominal at 0x0f and 0x10 (read/write) */
  413. #define TDA985x_STP 1<<5 /* Stereo Pilot/detect (read-only) */
  414. #define TDA985x_SAPP 1<<6 /* SAP Pilot/detect (read-only) */
  415. #define TDA985x_STS 1<<7 /* Stereo trigger 1= <35mV 0= <30mV (write-only)*/
  416. /* 0x0a - A3 */
  417. /* Common to both TDA9855 and TDA9850: */
  418. /* lower 3 bits control timing current for alignment: -30% (0x0), -20% (0x1),
  419.  * -10% (0x2), nominal (0x3), +10% (0x6), +20% (0x5), +30% (0x4) */
  420. #define TDA985x_ADJ 1<<7 /* Stereo adjust on/off (wideband and spectral */
  421. static int tda9855_volume(int val) { return val/0x2e8+0x27; }
  422. static int tda9855_bass(int val)   { return val/0xccc+0x06; }
  423. static int tda9855_treble(int val) { return (val/0x1c71+0x3)<<1; }
  424. static int  tda985x_getmode(struct CHIPSTATE *chip)
  425. {
  426. int mode;
  427. mode = ((TDA985x_STP | TDA985x_SAPP) & 
  428. chip_read(chip)) >> 4;
  429. /* Add mono mode regardless of SAP and stereo */
  430. /* Allows forced mono */
  431. return mode | VIDEO_SOUND_MONO;
  432. }
  433. static void tda985x_setmode(struct CHIPSTATE *chip, int mode)
  434. {
  435. int update = 1;
  436. int c6 = chip->shadow.bytes[TDA985x_C6+1] & 0x3f;
  437. switch (mode) {
  438. case VIDEO_SOUND_MONO:
  439. c6 |= TDA985x_MONO;
  440. break;
  441. case VIDEO_SOUND_STEREO:
  442. c6 |= TDA985x_STEREO;
  443. break;
  444. case VIDEO_SOUND_LANG1:
  445. c6 |= TDA985x_SAP;
  446. break;
  447. default:
  448. update = 0;
  449. }
  450. if (update)
  451. chip_write(chip,TDA985x_C6,c6);
  452. }
  453. /* ---------------------------------------------------------------------- */
  454. /* audio chip descriptions - defines+functions for tda9873h               */
  455. /* Subaddresses for TDA9873H */
  456. #define TDA9873_SW 0x00 /* Switching                    */
  457. #define TDA9873_AD 0x01 /* Adjust                       */
  458. #define TDA9873_PT 0x02 /* Port                         */
  459. /* Subaddress 0x00: Switching Data 
  460.  * B7..B0:
  461.  *
  462.  * B1, B0: Input source selection
  463.  *  0,  0  internal
  464.  *  1,  0  external stereo
  465.  *  0,  1  external mono
  466.  */
  467. #define TDA9873_INP_MASK    3
  468. #define TDA9873_INTERNAL    0
  469. #define TDA9873_EXT_STEREO  2
  470. #define TDA9873_EXT_MONO    1
  471. /*    B3, B2: output signal select
  472.  * B4    : transmission mode 
  473.  *  0, 0, 1   Mono
  474.  *  1, 0, 0   Stereo
  475.  *  1, 1, 1   Stereo (reversed channel)    
  476.  *  0, 0, 0   Dual AB
  477.  *  0, 0, 1   Dual AA
  478.  *  0, 1, 0   Dual BB
  479.  *  0, 1, 1   Dual BA
  480.  */
  481. #define TDA9873_TR_MASK     (7 << 2)
  482. #define TDA9873_TR_MONO     4
  483. #define TDA9873_TR_STEREO   1 << 4
  484. #define TDA9873_TR_REVERSE  (1 << 3) & (1 << 2)
  485. #define TDA9873_TR_DUALA    1 << 2
  486. #define TDA9873_TR_DUALB    1 << 3
  487. /* output level controls
  488.  * B5:  output level switch (0 = reduced gain, 1 = normal gain)
  489.  * B6:  mute                (1 = muted)
  490.  * B7:  auto-mute           (1 = auto-mute enabled)
  491.  */
  492. #define TDA9873_GAIN_NORMAL 1 << 5
  493. #define TDA9873_MUTE        1 << 6
  494. #define TDA9873_AUTOMUTE    1 << 7
  495. /* Subaddress 0x01:  Adjust/standard */
  496. /* Lower 4 bits (C3..C0) control stereo adjustment on R channel (-0.6 - +0.7 dB)
  497.  * Recommended value is +0 dB
  498.  */
  499. #define TDA9873_STEREO_ADJ 0x06 /* 0dB gain */
  500. /* Bits C6..C4 control FM stantard  
  501.  * C6, C5, C4
  502.  *  0,  0,  0   B/G (PAL FM)
  503.  *  0,  0,  1   M
  504.  *  0,  1,  0   D/K(1)
  505.  *  0,  1,  1   D/K(2)
  506.  *  1,  0,  0   D/K(3)
  507.  *  1,  0,  1   I
  508.  */
  509. #define TDA9873_BG 0
  510. #define TDA9873_M       1
  511. #define TDA9873_DK1     2
  512. #define TDA9873_DK2     3
  513. #define TDA9873_DK3     4
  514. #define TDA9873_I       5
  515. /* C7 controls identification response time (1=fast/0=normal)
  516.  */
  517. #define TDA9873_IDR_NORM 0
  518. #define TDA9873_IDR_FAST 1 << 7
  519. /* Subaddress 0x02: Port data */ 
  520. /* E1, E0   free programmable ports P1/P2
  521.     0,  0   both ports low
  522.     0,  1   P1 high
  523.     1,  0   P2 high
  524.     1,  1   both ports high
  525. */
  526. #define TDA9873_PORTS    3
  527. /* E2: test port */
  528. #define TDA9873_TST_PORT 1 << 2
  529. /* E5..E3 control mono output channel (together with transmission mode bit B4)
  530.  *
  531.  * E5 E4 E3 B4     OUTM
  532.  *  0  0  0  0     mono
  533.  *  0  0  1  0     DUAL B
  534.  *  0  1  0  1     mono (from stereo decoder)
  535.  */
  536. #define TDA9873_MOUT_MONO   0
  537. #define TDA9873_MOUT_FMONO  0
  538. #define TDA9873_MOUT_DUALA  0 
  539. #define TDA9873_MOUT_DUALB  1 << 3 
  540. #define TDA9873_MOUT_ST     1 << 4 
  541. #define TDA9873_MOUT_EXTM   (1 << 4 ) & (1 << 3)
  542. #define TDA9873_MOUT_EXTL   1 << 5 
  543. #define TDA9873_MOUT_EXTR   (1 << 5 ) & (1 << 3)
  544. #define TDA9873_MOUT_EXTLR  (1 << 5 ) & (1 << 4)
  545. #define TDA9873_MOUT_MUTE   (1 << 5 ) & (1 << 4) & (1 << 3)
  546. /* Status bits: (chip read) */
  547. #define TDA9873_PONR        0 /* Power-on reset detected if = 1 */
  548. #define TDA9873_STEREO      2 /* Stereo sound is identified     */
  549. #define TDA9873_DUAL        4 /* Dual sound is identified       */
  550. static int tda9873_getmode(struct CHIPSTATE *chip)
  551. {
  552. int val,mode;
  553. val = chip_read(chip);
  554. mode = VIDEO_SOUND_MONO;
  555. if (val & TDA9873_STEREO)
  556. mode |= VIDEO_SOUND_STEREO;
  557. if (val & TDA9873_DUAL)
  558. mode |= VIDEO_SOUND_LANG1 | VIDEO_SOUND_LANG2;
  559. dprintk ("tda9873_getmode(): raw chip read: %d, return: %dn",
  560.  val, mode);
  561. return mode;
  562. }
  563. static void tda9873_setmode(struct CHIPSTATE *chip, int mode)
  564. {
  565. int sw_data  = chip->shadow.bytes[TDA9873_SW+1] & ~ TDA9873_TR_MASK;
  566. /* int adj_data = chip->shadow.bytes[TDA9873_AD+1] ; */
  567. if ((sw_data & TDA9873_INP_MASK) != TDA9873_INTERNAL) {
  568. dprintk("tda9873_setmode(): external inputn");
  569. return;
  570. }
  571. dprintk("tda9873_setmode(): chip->shadow.bytes[%d] = %dn", TDA9873_SW+1, chip->shadow.bytes[TDA9873_SW+1]);
  572. dprintk("tda9873_setmode(): sw_data  = %dn", sw_data);
  573. switch (mode) {
  574. case VIDEO_SOUND_MONO:
  575. sw_data |= TDA9873_TR_MONO;   
  576. break;
  577. case VIDEO_SOUND_STEREO:
  578. sw_data |= TDA9873_TR_STEREO;
  579. break;
  580. case VIDEO_SOUND_LANG1:
  581. sw_data |= TDA9873_TR_DUALA;
  582. break;
  583. case VIDEO_SOUND_LANG2:
  584. sw_data |= TDA9873_TR_DUALB;
  585. break;
  586. default:
  587. chip->mode = 0;
  588. return;
  589. }
  590. chip_write(chip, TDA9873_SW, sw_data);
  591. dprintk("tda9873_setmode(): req. mode %d; chip_write: %dn",
  592. mode, sw_data);
  593. }
  594. static int tda9873_checkit(struct CHIPSTATE *chip)
  595. {
  596. int rc;
  597. if (-1 == (rc = chip_read2(chip,254)))
  598. return 0;
  599. return (rc & ~0x1f) == 0x80;
  600. }
  601. /* ---------------------------------------------------------------------- */
  602. /* audio chip description - defines+functions for tda9874h and tda9874a   */
  603. /* Dariusz Kowalewski <darekk@automex.pl>                                 */
  604. /* Subaddresses for TDA9874H and TDA9874A (slave rx) */
  605. #define TDA9874A_AGCGR 0x00 /* AGC gain */
  606. #define TDA9874A_GCONR 0x01 /* general config */
  607. #define TDA9874A_MSR 0x02 /* monitor select */
  608. #define TDA9874A_C1FRA 0x03 /* carrier 1 freq. */
  609. #define TDA9874A_C1FRB 0x04 /* carrier 1 freq. */
  610. #define TDA9874A_C1FRC 0x05 /* carrier 1 freq. */
  611. #define TDA9874A_C2FRA 0x06 /* carrier 2 freq. */
  612. #define TDA9874A_C2FRB 0x07 /* carrier 2 freq. */
  613. #define TDA9874A_C2FRC 0x08 /* carrier 2 freq. */
  614. #define TDA9874A_DCR 0x09 /* demodulator config */
  615. #define TDA9874A_FMER 0x0a /* FM de-emphasis */
  616. #define TDA9874A_FMMR 0x0b /* FM dematrix */
  617. #define TDA9874A_C1OLAR 0x0c /* ch.1 output level adj. */
  618. #define TDA9874A_C2OLAR 0x0d /* ch.2 output level adj. */
  619. #define TDA9874A_NCONR 0x0e /* NICAM config */
  620. #define TDA9874A_NOLAR 0x0f /* NICAM output level adj. */
  621. #define TDA9874A_NLELR 0x10 /* NICAM lower error limit */
  622. #define TDA9874A_NUELR 0x11 /* NICAM upper error limit */
  623. #define TDA9874A_AMCONR 0x12 /* audio mute control */
  624. #define TDA9874A_SDACOSR 0x13 /* stereo DAC output select */
  625. #define TDA9874A_AOSR 0x14 /* analog output select */
  626. #define TDA9874A_DAICONR 0x15 /* digital audio interface config */
  627. #define TDA9874A_I2SOSR 0x16 /* I2S-bus output select */
  628. #define TDA9874A_I2SOLAR 0x17 /* I2S-bus output level adj. */
  629. #define TDA9874A_MDACOSR 0x18 /* mono DAC output select (tda9874a) */
  630. #define TDA9874A_ESP 0xFF /* easy standard progr. (tda9874a) */
  631. /* Subaddresses for TDA9874H and TDA9874A (slave tx) */
  632. #define TDA9874A_DSR 0x00 /* device status */
  633. #define TDA9874A_NSR 0x01 /* NICAM status */
  634. #define TDA9874A_NECR 0x02 /* NICAM error count */
  635. #define TDA9874A_DR1 0x03 /* add. data LSB */
  636. #define TDA9874A_DR2 0x04 /* add. data MSB */
  637. #define TDA9874A_LLRA 0x05 /* monitor level read-out LSB */
  638. #define TDA9874A_LLRB 0x06 /* monitor level read-out MSB */
  639. #define TDA9874A_SIFLR 0x07 /* SIF level */
  640. #define TDA9874A_TR2 252 /* test reg. 2 */
  641. #define TDA9874A_TR1 253 /* test reg. 1 */
  642. #define TDA9874A_DIC 254 /* device id. code */
  643. #define TDA9874A_SIC 255 /* software id. code */
  644. static int tda9874a_mode = 1; /* 0: A2, 1: NICAM */
  645. static int tda9874a_GCONR = 0xc0; /* default config. input pin: SIFSEL=0 */
  646. static int tda9874a_NCONR = 0x01; /* default NICAM config.: AMSEL=0,AMUTE=1 */
  647. static int tda9874a_ESP = 0x07; /* default standard: NICAM D/K */
  648. static int tda9874a_dic = -1; /* device id. code */
  649. /* insmod options for tda9874a */
  650. static int tda9874a_SIF = -1;
  651. static int tda9874a_AMSEL = -1;
  652. static int tda9874a_STD = -1;
  653. MODULE_PARM(tda9874a_SIF,"i");
  654. MODULE_PARM(tda9874a_AMSEL,"i");
  655. MODULE_PARM(tda9874a_STD,"i");
  656. /*
  657.  * initialization table for tda9874 decoder:
  658.  *  - carrier 1 freq. registers (3 bytes)
  659.  *  - carrier 2 freq. registers (3 bytes)
  660.  *  - demudulator config register
  661.  *  - FM de-emphasis register (slow identification mode)
  662.  * Note: frequency registers must be written in single i2c transfer.
  663.  */
  664. static struct tda9874a_MODES {
  665. char *name;
  666. audiocmd cmd;
  667. } tda9874a_modelist[9] = {
  668.   { "A2, B/G",
  669. { 9, { TDA9874A_C1FRA, 0x72,0x95,0x55, 0x77,0xA0,0x00, 0x00,0x00 }} },
  670.   { "A2, M (Korea)",
  671. { 9, { TDA9874A_C1FRA, 0x5D,0xC0,0x00, 0x62,0x6A,0xAA, 0x20,0x22 }} },
  672.   { "A2, D/K (1)",
  673. { 9, { TDA9874A_C1FRA, 0x87,0x6A,0xAA, 0x82,0x60,0x00, 0x00,0x00 }} },
  674.   { "A2, D/K (2)",
  675. { 9, { TDA9874A_C1FRA, 0x87,0x6A,0xAA, 0x8C,0x75,0x55, 0x00,0x00 }} },
  676.   { "A2, D/K (3)",
  677. { 9, { TDA9874A_C1FRA, 0x87,0x6A,0xAA, 0x77,0xA0,0x00, 0x00,0x00 }} },
  678.   { "NICAM, I",
  679. { 9, { TDA9874A_C1FRA, 0x7D,0x00,0x00, 0x88,0x8A,0xAA, 0x08,0x33 }} },
  680.   { "NICAM, B/G",
  681. { 9, { TDA9874A_C1FRA, 0x72,0x95,0x55, 0x79,0xEA,0xAA, 0x08,0x33 }} },
  682.   { "NICAM, D/K", /* default */
  683. { 9, { TDA9874A_C1FRA, 0x87,0x6A,0xAA, 0x79,0xEA,0xAA, 0x08,0x33 }} },
  684.   { "NICAM, L",
  685. { 9, { TDA9874A_C1FRA, 0x87,0x6A,0xAA, 0x79,0xEA,0xAA, 0x09,0x33 }} }
  686. };
  687. static int tda9874a_setup(struct CHIPSTATE *chip)
  688. {
  689. chip_write(chip, TDA9874A_AGCGR, 0x00); /* 0 dB */
  690. chip_write(chip, TDA9874A_GCONR, tda9874a_GCONR);
  691. chip_write(chip, TDA9874A_MSR, (tda9874a_mode) ? 0x03:0x02);
  692. if(tda9874a_dic == 0x11) {
  693. chip_write(chip, TDA9874A_FMMR, 0x80);
  694. } else { /* dic == 0x07 */
  695. chip_cmd(chip,"tda9874_modelist",&tda9874a_modelist[tda9874a_STD].cmd);
  696. chip_write(chip, TDA9874A_FMMR, 0x00);
  697. }
  698. chip_write(chip, TDA9874A_C1OLAR, 0x00); /* 0 dB */
  699. chip_write(chip, TDA9874A_C2OLAR, 0x00); /* 0 dB */
  700. chip_write(chip, TDA9874A_NCONR, tda9874a_NCONR);
  701. chip_write(chip, TDA9874A_NOLAR, 0x00); /* 0 dB */
  702. /* Note: If signal quality is poor you may want to change NICAM */
  703. /* error limit registers (NLELR and NUELR) to some greater values. */
  704. /* Then the sound would remain stereo, but won't be so clear. */
  705. chip_write(chip, TDA9874A_NLELR, 0x14); /* default */
  706. chip_write(chip, TDA9874A_NUELR, 0x50); /* default */
  707. if(tda9874a_dic == 0x11) {
  708. chip_write(chip, TDA9874A_AMCONR, 0xf9);
  709. chip_write(chip, TDA9874A_SDACOSR, (tda9874a_mode) ? 0x81:0x80);
  710. chip_write(chip, TDA9874A_AOSR, 0x80);
  711. chip_write(chip, TDA9874A_MDACOSR, (tda9874a_mode) ? 0x82:0x80);
  712. chip_write(chip, TDA9874A_ESP, tda9874a_ESP);
  713. } else { /* dic == 0x07 */
  714. chip_write(chip, TDA9874A_AMCONR, 0xfb);
  715. chip_write(chip, TDA9874A_SDACOSR, (tda9874a_mode) ? 0x81:0x80);
  716. chip_write(chip, TDA9874A_AOSR, 0x00); // or 0x10
  717. }
  718. dprintk("tda9874a_setup(): %s [0x%02X].n",
  719. tda9874a_modelist[tda9874a_STD].name,tda9874a_STD);
  720. return 1;
  721. }
  722. static int tda9874a_getmode(struct CHIPSTATE *chip)
  723. {
  724. int dsr,nsr,mode;
  725. int necr; /* just for debugging */
  726. mode = VIDEO_SOUND_MONO;
  727. if(-1 == (dsr = chip_read2(chip,TDA9874A_DSR)))
  728. return mode;
  729. if(-1 == (nsr = chip_read2(chip,TDA9874A_NSR)))
  730. return mode;
  731. if(-1 == (necr = chip_read2(chip,TDA9874A_NECR)))
  732. return mode;
  733. /* need to store dsr/nsr somewhere */
  734. chip->shadow.bytes[MAXREGS-2] = dsr;
  735. chip->shadow.bytes[MAXREGS-1] = nsr;
  736. if(tda9874a_mode) {
  737. /* Note: DSR.RSSF and DSR.AMSTAT bits are also checked.
  738.  * If NICAM auto-muting is enabled, DSR.AMSTAT=1 indicates
  739.  * that sound has (temporarily) switched from NICAM to
  740.  * mono FM (or AM) on 1st sound carrier due to high NICAM bit
  741.  * error count. So in fact there is no stereo in this case :-(
  742.  * But changing the mode to VIDEO_SOUND_MONO would switch
  743.  * external 4052 multiplexer in audio_hook().
  744.  */
  745. #if 0
  746. if((nsr & 0x02) && !(dsr & 0x10)) /* NSR.S/MB=1 and DSR.AMSTAT=0 */
  747. mode |= VIDEO_SOUND_STEREO;
  748. #else
  749. if(nsr & 0x02) /* NSR.S/MB=1 */
  750. mode |= VIDEO_SOUND_STEREO;
  751. #endif
  752. if(nsr & 0x01) /* NSR.D/SB=1 */ 
  753. mode |= VIDEO_SOUND_LANG1 | VIDEO_SOUND_LANG2;
  754. } else {
  755. if(dsr & 0x02) /* DSR.IDSTE=1 */
  756. mode |= VIDEO_SOUND_STEREO;
  757. if(dsr & 0x04) /* DSR.IDDUA=1 */
  758. mode |= VIDEO_SOUND_LANG1 | VIDEO_SOUND_LANG2;
  759. }
  760. dprintk("tda9874a_getmode(): DSR=0x%X, NSR=0x%X, NECR=0x%X, return: %d.n",
  761.  dsr, nsr, necr, mode);
  762. return mode;
  763. }
  764. static void tda9874a_setmode(struct CHIPSTATE *chip, int mode)
  765. {
  766. /* Disable/enable NICAM auto-muting (based on DSR.RSSF status bit). */
  767. /* If auto-muting is disabled, we can hear a signal of degrading quality. */
  768. if(tda9874a_mode) {
  769. if(chip->shadow.bytes[MAXREGS-2] & 0x20) /* DSR.RSSF=1 */
  770. tda9874a_NCONR &= 0xfe; /* enable */
  771. else
  772. tda9874a_NCONR |= 0x01; /* disable */
  773. chip_write(chip, TDA9874A_NCONR, tda9874a_NCONR);
  774. }
  775. /* Note: TDA9874A supports automatic FM dematrixing (FMMR register)
  776.  * and has auto-select function for audio output (AOSR register).
  777.  * Old TDA9874H doesn't support these features.
  778.  * TDA9874A also has additional mono output pin (OUTM), which
  779.  * on same (all?) tv-cards is not used, anyway (as well as MONOIN).
  780.  */
  781. if(tda9874a_dic == 0x11) {
  782. int aosr = 0x80;
  783. int mdacosr = (tda9874a_mode) ? 0x82:0x80;
  784. switch(mode) {
  785. case VIDEO_SOUND_MONO:
  786. case VIDEO_SOUND_STEREO:
  787. break;
  788. case VIDEO_SOUND_LANG1:
  789. aosr = 0x80; /* auto-select, dual A/A */
  790. mdacosr = (tda9874a_mode) ? 0x82:0x80;
  791. break;
  792. case VIDEO_SOUND_LANG2:
  793. aosr = 0xa0; /* auto-select, dual B/B */
  794. mdacosr = (tda9874a_mode) ? 0x83:0x81;
  795. break;
  796. default:
  797. chip->mode = 0;
  798. return;
  799. }
  800. chip_write(chip, TDA9874A_AOSR, aosr);
  801. chip_write(chip, TDA9874A_MDACOSR, mdacosr);
  802. dprintk("tda9874a_setmode(): req. mode %d; AOSR=0x%X, MDACOSR=0x%X.n",
  803. mode, aosr, mdacosr);
  804. } else { /* dic == 0x07 */
  805. int fmmr,aosr;
  806. switch(mode) {
  807. case VIDEO_SOUND_MONO:
  808. fmmr = 0x00; /* mono */
  809. aosr = 0x10; /* A/A */
  810. break;
  811. case VIDEO_SOUND_STEREO:
  812. if(tda9874a_mode) {
  813. fmmr = 0x00;
  814. aosr = 0x00; /* handled by NICAM auto-mute */
  815. } else {
  816. fmmr = (tda9874a_ESP == 1) ? 0x05 : 0x04; /* stereo */
  817. aosr = 0x00;
  818. }
  819. break;
  820. case VIDEO_SOUND_LANG1:
  821. fmmr = 0x02; /* dual */
  822. aosr = 0x10; /* dual A/A */
  823. break;
  824. case VIDEO_SOUND_LANG2:
  825. fmmr = 0x02; /* dual */
  826. aosr = 0x20; /* dual B/B */
  827. break;
  828. default:
  829. chip->mode = 0;
  830. return;
  831. }
  832. chip_write(chip, TDA9874A_FMMR, fmmr);
  833. chip_write(chip, TDA9874A_AOSR, aosr);
  834. dprintk("tda9874a_setmode(): req. mode %d; FMMR=0x%X, AOSR=0x%X.n",
  835. mode, fmmr, aosr);
  836. }
  837. }
  838. static int tda9874a_checkit(struct CHIPSTATE *chip)
  839. {
  840. int dic,sic; /* device id. and software id. codes */
  841. if(-1 == (dic = chip_read2(chip,TDA9874A_DIC)))
  842. return 0;
  843. if(-1 == (sic = chip_read2(chip,TDA9874A_SIC)))
  844. return 0;
  845. dprintk("tda9874a_checkit(): DIC=0x%X, SIC=0x%X.n", dic, sic);
  846. if((dic == 0x11)||(dic == 0x07)) {
  847. dprintk("tvaudio: found tda9874%s.n",(dic == 0x11) ? "a (new)":"h (old)");
  848. tda9874a_dic = dic; /* remember device id. */
  849. return 1;
  850. }
  851. return 0; /* not found */
  852. }
  853. static int tda9874a_initialize(struct CHIPSTATE *chip)
  854. {
  855. if(tda9874a_SIF != -1) {
  856. if(tda9874a_SIF == 1)
  857. tda9874a_GCONR = 0xc0; /* sound IF input 1 */
  858. else if(tda9874a_SIF == 2)
  859. tda9874a_GCONR = 0xc1; /* sound IF input 2 */
  860. else
  861. printk(KERN_WARNING "tda9874a: SIF parameter must be 1 or 2.n");
  862. }
  863. if(tda9874a_STD != -1) {
  864. if((tda9874a_STD >= 0)&&(tda9874a_STD <= 8)) {
  865. tda9874a_ESP = tda9874a_STD;
  866. tda9874a_mode = (tda9874a_STD < 5) ? 0 : 1;
  867. } else {
  868. printk(KERN_WARNING "tda9874a: STD parameter must be between 0 and 8.n");
  869. }
  870. }
  871. if(tda9874a_AMSEL != -1) {
  872. if(tda9874a_AMSEL == 0)
  873. tda9874a_NCONR = 0x01; /* auto-mute: analog mono input */
  874. else if(tda9874a_AMSEL == 1)
  875. tda9874a_NCONR = 0x05; /* auto-mute: 1st carrier FM or AM */
  876. else
  877. printk(KERN_WARNING "tda9874a: AMSEL parameter must be 0 or 1.n");
  878. }
  879. tda9874a_setup(chip);
  880. return 0;
  881. }
  882. /* ---------------------------------------------------------------------- */
  883. /* audio chip descriptions - defines+functions for tea6420                */
  884. #define TEA6300_VL         0x00  /* volume left */
  885. #define TEA6300_VR         0x01  /* volume right */
  886. #define TEA6300_BA         0x02  /* bass */
  887. #define TEA6300_TR         0x03  /* treble */
  888. #define TEA6300_FA         0x04  /* fader control */
  889. #define TEA6300_S          0x05  /* switch register */
  890.                                  /* values for those registers: */
  891. #define TEA6300_S_SA       0x01  /* stereo A input */
  892. #define TEA6300_S_SB       0x02  /* stereo B */
  893. #define TEA6300_S_SC       0x04  /* stereo C */
  894. #define TEA6300_S_GMU      0x80  /* general mute */
  895. #define TEA6420_S_SA       0x00  /* stereo A input */
  896. #define TEA6420_S_SB       0x01  /* stereo B */
  897. #define TEA6420_S_SC       0x02  /* stereo C */
  898. #define TEA6420_S_SD       0x03  /* stereo D */
  899. #define TEA6420_S_SE       0x04  /* stereo E */
  900. #define TEA6420_S_GMU      0x05  /* general mute */
  901. static int tea6300_shift10(int val) { return val >> 10; }
  902. static int tea6300_shift12(int val) { return val >> 12; }
  903. /* ---------------------------------------------------------------------- */
  904. /* audio chip descriptions - defines+functions for tda8425                */
  905. #define TDA8425_VL         0x00  /* volume left */
  906. #define TDA8425_VR         0x01  /* volume right */
  907. #define TDA8425_BA         0x02  /* bass */
  908. #define TDA8425_TR         0x03  /* treble */
  909. #define TDA8425_S1         0x08  /* switch functions */
  910.                                  /* values for those registers: */
  911. #define TDA8425_S1_OFF     0xEE  /* audio off (mute on) */
  912. #define TDA8425_S1_CH1     0xCE  /* audio channel 1 (mute off) - "linear stereo" mode */
  913. #define TDA8425_S1_CH2     0xCF  /* audio channel 2 (mute off) - "linear stereo" mode */
  914. #define TDA8425_S1_MU      0x20  /* mute bit */
  915. #define TDA8425_S1_STEREO  0x18  /* stereo bits */
  916. #define TDA8425_S1_STEREO_SPATIAL 0x18 /* spatial stereo */
  917. #define TDA8425_S1_STEREO_LINEAR  0x08 /* linear stereo */
  918. #define TDA8425_S1_STEREO_PSEUDO  0x10 /* pseudo stereo */
  919. #define TDA8425_S1_STEREO_MONO    0x00 /* forced mono */
  920. #define TDA8425_S1_ML      0x06        /* language selector */
  921. #define TDA8425_S1_ML_SOUND_A 0x02     /* sound a */
  922. #define TDA8425_S1_ML_SOUND_B 0x04     /* sound b */
  923. #define TDA8425_S1_ML_STEREO  0x06     /* stereo */
  924. #define TDA8425_S1_IS      0x01        /* channel selector */
  925. static int tda8425_shift10(int val) { return (val >> 10) | 0xc0; }
  926. static int tda8425_shift12(int val) { return (val >> 12) | 0xf0; }
  927. static void tda8425_setmode(struct CHIPSTATE *chip, int mode)
  928. {
  929. int s1 = chip->shadow.bytes[TDA8425_S1+1] & 0xe1;
  930. if (mode & VIDEO_SOUND_LANG1) {
  931. s1 |= TDA8425_S1_ML_SOUND_A;
  932. s1 |= TDA8425_S1_STEREO_PSEUDO;
  933. } else if (mode & VIDEO_SOUND_LANG2) {
  934. s1 |= TDA8425_S1_ML_SOUND_B;
  935. s1 |= TDA8425_S1_STEREO_PSEUDO;
  936. } else {
  937. s1 |= TDA8425_S1_ML_STEREO;
  938. if (mode & VIDEO_SOUND_MONO)
  939. s1 |= TDA8425_S1_STEREO_MONO;
  940. if (mode & VIDEO_SOUND_STEREO)
  941. s1 |= TDA8425_S1_STEREO_SPATIAL;
  942. }
  943. chip_write(chip,TDA8425_S1,s1);
  944. }
  945. /* ---------------------------------------------------------------------- */
  946. /* audio chip descriptions - defines+functions for pic16c54 (PV951)       */
  947. /* the registers of 16C54, I2C sub address. */
  948. #define PIC16C54_REG_KEY_CODE     0x01        /* Not use. */
  949. #define PIC16C54_REG_MISC         0x02
  950. /* bit definition of the RESET register, I2C data. */
  951. #define PIC16C54_MISC_RESET_REMOTE_CTL 0x01 /* bit 0, Reset to receive the key */
  952.                                             /*        code of remote controller */
  953. #define PIC16C54_MISC_MTS_MAIN         0x02 /* bit 1 */
  954. #define PIC16C54_MISC_MTS_SAP          0x04 /* bit 2 */
  955. #define PIC16C54_MISC_MTS_BOTH         0x08 /* bit 3 */
  956. #define PIC16C54_MISC_SND_MUTE         0x10 /* bit 4, Mute Audio(Line-in and Tuner) */
  957. #define PIC16C54_MISC_SND_NOTMUTE      0x20 /* bit 5 */
  958. #define PIC16C54_MISC_SWITCH_TUNER     0x40 /* bit 6 , Switch to Line-in */
  959. #define PIC16C54_MISC_SWITCH_LINE      0x80 /* bit 7 , Switch to Tuner */
  960. /* ---------------------------------------------------------------------- */
  961. /* audio chip descriptions - struct CHIPDESC                              */
  962. /* insmod options to enable/disable individual audio chips */
  963. int tda8425  = 1;
  964. int tda9840  = 1;
  965. int tda9850  = 1;
  966. int tda9855  = 1;
  967. int tda9873  = 1;
  968. int tda9874a = 1;
  969. int tea6300  = 0;
  970. int tea6420  = 1;
  971. int pic16c54 = 1;
  972. MODULE_PARM(tda8425,"i");
  973. MODULE_PARM(tda9840,"i");
  974. MODULE_PARM(tda9850,"i");
  975. MODULE_PARM(tda9855,"i");
  976. MODULE_PARM(tda9873,"i");
  977. MODULE_PARM(tda9874a,"i");
  978. MODULE_PARM(tea6300,"i");
  979. MODULE_PARM(tea6420,"i");
  980. MODULE_PARM(pic16c54,"i");
  981. static struct CHIPDESC chiplist[] = {
  982. {
  983. name:       "tda9840",
  984. id:         I2C_DRIVERID_TDA9840,
  985. insmodopt:  &tda9840,
  986. addr_lo:    I2C_TDA9840 >> 1,
  987. addr_hi:    I2C_TDA9840 >> 1,
  988. registers:  5,
  989. getmode:    tda9840_getmode,
  990. setmode:    tda9840_setmode,
  991. checkmode:  generic_checkmode,
  992.         init:       { 2, { TDA9840_TEST, TDA9840_TEST_INT1SN
  993. /* ,TDA9840_SW, TDA9840_MONO */} }
  994. },
  995. {
  996. name:       "tda9873h",
  997. id:         I2C_DRIVERID_TDA9873,
  998. checkit:    tda9873_checkit,
  999. insmodopt:  &tda9873,
  1000. addr_lo:    I2C_TDA985x_L >> 1,
  1001. addr_hi:    I2C_TDA985x_H >> 1,
  1002. registers:  3,
  1003. flags:      CHIP_HAS_INPUTSEL,
  1004. getmode:    tda9873_getmode,
  1005. setmode:    tda9873_setmode,
  1006. checkmode:  generic_checkmode,
  1007. init:       { 4, { TDA9873_SW, 0xa4, 0x06, 0x03 } },
  1008. inputreg:   TDA9873_SW,
  1009. inputmute:  TDA9873_MUTE | TDA9873_AUTOMUTE,
  1010. inputmap:   {0xa0, 0xa2, 0xa0, 0xa0, 0xc0},
  1011. inputmask:  TDA9873_INP_MASK | TDA9873_MUTE | TDA9873_AUTOMUTE
  1012. },
  1013. {
  1014. name:       "tda9874h/a",
  1015. id:         I2C_DRIVERID_TDA9874,
  1016. checkit:    tda9874a_checkit,
  1017. initialize: tda9874a_initialize,
  1018. insmodopt:  &tda9874a,
  1019. addr_lo:    I2C_TDA9874 >> 1,
  1020. addr_hi:    I2C_TDA9874 >> 1,
  1021. getmode:    tda9874a_getmode,
  1022. setmode:    tda9874a_setmode,
  1023. checkmode:  generic_checkmode,
  1024. },
  1025. {
  1026. name:       "tda9850",
  1027. id:         I2C_DRIVERID_TDA9850,
  1028. insmodopt:  &tda9850,
  1029. addr_lo:    I2C_TDA985x_L >> 1,
  1030. addr_hi:    I2C_TDA985x_H >> 1,
  1031. registers:  11,
  1032. getmode:    tda985x_getmode,
  1033. setmode:    tda985x_setmode,
  1034. init:       { 8, { TDA9850_C4, 0x08, 0x08, TDA985x_STEREO, 0x07, 0x10, 0x10, 0x03 } }
  1035. },
  1036. {
  1037. name:       "tda9855",
  1038. id:         I2C_DRIVERID_TDA9855,
  1039. insmodopt:  &tda9855,
  1040. addr_lo:    I2C_TDA985x_L >> 1,
  1041. addr_hi:    I2C_TDA985x_H >> 1,
  1042. registers:  11,
  1043. flags:      CHIP_HAS_VOLUME | CHIP_HAS_BASSTREBLE,
  1044. leftreg:    TDA9855_VL,
  1045. rightreg:   TDA9855_VR,
  1046. bassreg:    TDA9855_BA,
  1047. treblereg:  TDA9855_TR,
  1048. volfunc:    tda9855_volume,
  1049. bassfunc:   tda9855_bass,
  1050. treblefunc: tda9855_treble,
  1051. getmode:    tda985x_getmode,
  1052. setmode:    tda985x_setmode,
  1053. init:       { 12, { 0, 0x6f, 0x6f, 0x0e, 0x07<<1, 0x8<<2,
  1054.     TDA9855_MUTE | TDA9855_AVL | TDA9855_LOUD | TDA9855_INT,
  1055.     TDA985x_STEREO | TDA9855_LINEAR | TDA9855_TZCM | TDA9855_VZCM,
  1056.     0x07, 0x10, 0x10, 0x03 }}
  1057. },
  1058. {
  1059. name:       "tea6300",
  1060. id:         I2C_DRIVERID_TEA6300,
  1061. insmodopt:  &tea6300,
  1062. addr_lo:    I2C_TEA6300 >> 1,
  1063. addr_hi:    I2C_TEA6300 >> 1,
  1064. registers:  6,
  1065. flags:      CHIP_HAS_VOLUME | CHIP_HAS_BASSTREBLE | CHIP_HAS_INPUTSEL,
  1066. leftreg:    TEA6300_VR,
  1067. rightreg:   TEA6300_VL,
  1068. bassreg:    TEA6300_BA,
  1069. treblereg:  TEA6300_TR,
  1070. volfunc:    tea6300_shift10,
  1071. bassfunc:   tea6300_shift12,
  1072. treblefunc: tea6300_shift12,
  1073. inputreg:   TEA6300_S,
  1074. inputmap:   { TEA6300_S_SA, TEA6300_S_SB, TEA6300_S_SC },
  1075. inputmute:  TEA6300_S_GMU,
  1076. },
  1077. {
  1078. name:       "tea6420",
  1079. id:         I2C_DRIVERID_TEA6420,
  1080. insmodopt:  &tea6420,
  1081. addr_lo:    I2C_TEA6420 >> 1,
  1082. addr_hi:    I2C_TEA6420 >> 1,
  1083. registers:  1,
  1084. flags:      CHIP_HAS_INPUTSEL,
  1085. inputreg:   -1,
  1086. inputmap:   { TEA6420_S_SA, TEA6420_S_SB, TEA6420_S_SC },
  1087. inputmute:  TEA6300_S_GMU,
  1088. },
  1089. {
  1090. name:       "tda8425",
  1091. id:         I2C_DRIVERID_TDA8425,
  1092. insmodopt:  &tda8425,
  1093. addr_lo:    I2C_TDA8425 >> 1,
  1094. addr_hi:    I2C_TDA8425 >> 1,
  1095. registers:  9,
  1096. flags:      CHIP_HAS_VOLUME | CHIP_HAS_BASSTREBLE | CHIP_HAS_INPUTSEL,
  1097. leftreg:    TDA8425_VR,
  1098. rightreg:   TDA8425_VL,
  1099. bassreg:    TDA8425_BA,
  1100. treblereg:  TDA8425_TR,
  1101. volfunc:    tda8425_shift10,
  1102. bassfunc:   tda8425_shift12,
  1103. treblefunc: tda8425_shift12,
  1104. inputreg:   TDA8425_S1,
  1105. inputmap:   { TDA8425_S1_CH1, TDA8425_S1_CH1, TDA8425_S1_CH1 },
  1106. inputmute:  TDA8425_S1_OFF,
  1107. setmode:    tda8425_setmode,
  1108. },
  1109. {
  1110. name:       "pic16c54 (PV951)",
  1111. id:         I2C_DRIVERID_PIC16C54_PV951,
  1112. insmodopt:  &pic16c54,
  1113. addr_lo:    I2C_PIC16C54 >> 1,
  1114. addr_hi:    I2C_PIC16C54>> 1,
  1115. registers:  2,
  1116. flags:      CHIP_HAS_INPUTSEL,
  1117. inputreg:   PIC16C54_REG_MISC,
  1118. inputmap:   {PIC16C54_MISC_SND_NOTMUTE|PIC16C54_MISC_SWITCH_TUNER,
  1119.      PIC16C54_MISC_SND_NOTMUTE|PIC16C54_MISC_SWITCH_LINE,
  1120.      PIC16C54_MISC_SND_NOTMUTE|PIC16C54_MISC_SWITCH_LINE,
  1121.      PIC16C54_MISC_SND_MUTE,PIC16C54_MISC_SND_MUTE,
  1122.      PIC16C54_MISC_SND_NOTMUTE},
  1123. inputmute:  PIC16C54_MISC_SND_MUTE,
  1124. },
  1125. { name: NULL } /* EOF */
  1126. };
  1127. /* ---------------------------------------------------------------------- */
  1128. /* i2c registration                                                       */
  1129. static int chip_attach(struct i2c_adapter *adap, int addr,
  1130.        unsigned short flags, int kind)
  1131. {
  1132. struct CHIPSTATE *chip;
  1133. struct CHIPDESC  *desc;
  1134. chip = kmalloc(sizeof(*chip),GFP_KERNEL);
  1135. if (!chip)
  1136. return -ENOMEM;
  1137. memset(chip,0,sizeof(*chip));
  1138. memcpy(&chip->c,&client_template,sizeof(struct i2c_client));
  1139.         chip->c.adapter = adap;
  1140.         chip->c.addr = addr;
  1141. chip->c.data = chip;
  1142. /* find description for the chip */
  1143. dprintk("tvaudio: chip found @ i2c-addr=0x%xn", addr<<1);
  1144. for (desc = chiplist; desc->name != NULL; desc++) {
  1145. if (0 == *(desc->insmodopt))
  1146. continue;
  1147. if (addr < desc->addr_lo ||
  1148.     addr > desc->addr_hi)
  1149. continue;
  1150. if (desc->checkit && !desc->checkit(chip))
  1151. continue;
  1152. break;
  1153. }
  1154. if (desc->name == NULL) {
  1155. dprintk("tvaudio: no matching chip description foundn");
  1156. return -EIO;
  1157. }
  1158. printk("tvaudio: found %sn",desc->name);
  1159. dprintk("tvaudio: matches:%s%s%s.n",
  1160. (desc->flags & CHIP_HAS_VOLUME)     ? " volume"      : "",
  1161. (desc->flags & CHIP_HAS_BASSTREBLE) ? " bass/treble" : "",
  1162. (desc->flags & CHIP_HAS_INPUTSEL)   ? " audiomux"    : "");
  1163. /* fill required data structures */
  1164. strcpy(chip->c.name,desc->name);
  1165. chip->type = desc-chiplist;
  1166. chip->shadow.count = desc->registers+1;
  1167.         chip->prevmode = -1;
  1168. /* register */
  1169. MOD_INC_USE_COUNT;
  1170. i2c_attach_client(&chip->c);
  1171. /* initialization  */
  1172. if (desc->initialize != NULL)
  1173. desc->initialize(chip);
  1174. else
  1175. chip_cmd(chip,"init",&desc->init);
  1176. if (desc->flags & CHIP_HAS_VOLUME) {
  1177. chip->left   = desc->leftinit   ? desc->leftinit   : 65535;
  1178. chip->right  = desc->rightinit  ? desc->rightinit  : 65535;
  1179. chip_write(chip,desc->leftreg,desc->volfunc(chip->left));
  1180. chip_write(chip,desc->rightreg,desc->volfunc(chip->right));
  1181. }
  1182. if (desc->flags & CHIP_HAS_BASSTREBLE) {
  1183. chip->treble = desc->trebleinit ? desc->trebleinit : 32768;
  1184. chip->bass   = desc->bassinit   ? desc->bassinit   : 32768;
  1185. chip_write(chip,desc->bassreg,desc->bassfunc(chip->bass));
  1186. chip_write(chip,desc->treblereg,desc->treblefunc(chip->treble));
  1187. }
  1188. if (desc->checkmode) {
  1189. /* start async thread */
  1190. DECLARE_MUTEX_LOCKED(sem);
  1191. chip->notify = &sem;
  1192. chip->wt.function = chip_thread_wake;
  1193. chip->wt.data     = (unsigned long)chip;
  1194. init_waitqueue_head(&chip->wq);
  1195. kernel_thread(chip_thread,(void *)chip,0);
  1196. down(&sem);
  1197. chip->notify = NULL;
  1198. wake_up_interruptible(&chip->wq);
  1199. }
  1200. return 0;
  1201. }
  1202. static int chip_probe(struct i2c_adapter *adap)
  1203. {
  1204. switch (adap->id) {
  1205. case I2C_ALGO_BIT | I2C_HW_B_BT848:
  1206. case I2C_ALGO_BIT | I2C_HW_B_RIVA:
  1207. return i2c_probe(adap, &addr_data, chip_attach);
  1208. default:
  1209. /* ignore this i2c bus */
  1210. return 0;
  1211. }
  1212. }
  1213. static int chip_detach(struct i2c_client *client)
  1214. {
  1215. struct CHIPSTATE *chip = client->data;
  1216. del_timer(&chip->wt);
  1217. if (NULL != chip->thread) {
  1218. /* shutdown async thread */
  1219. DECLARE_MUTEX_LOCKED(sem);
  1220. chip->notify = &sem;
  1221. chip->done = 1;
  1222. wake_up_interruptible(&chip->wq);
  1223. down(&sem);
  1224. chip->notify = NULL;
  1225. }
  1226. i2c_detach_client(&chip->c);
  1227. kfree(chip);
  1228. MOD_DEC_USE_COUNT;
  1229. return 0;
  1230. }
  1231. /* ---------------------------------------------------------------------- */
  1232. /* video4linux interface                                                  */
  1233. static int chip_command(struct i2c_client *client,
  1234. unsigned int cmd, void *arg)
  1235. {
  1236.         __u16 *sarg = arg;
  1237. struct CHIPSTATE *chip = client->data;
  1238. struct CHIPDESC  *desc = chiplist + chip->type;
  1239. dprintk("%s: chip_command 0x%xn",chip->c.name,cmd);
  1240. switch (cmd) {
  1241. case AUDC_SET_INPUT:
  1242. if (desc->flags & CHIP_HAS_INPUTSEL) {
  1243. if (*sarg & 0x80)
  1244. chip_write_masked(chip,desc->inputreg,desc->inputmute,desc->inputmask);
  1245. else
  1246. chip_write_masked(chip,desc->inputreg,desc->inputmap[*sarg],desc->inputmask);
  1247. }
  1248. break;
  1249. case AUDC_SET_RADIO:
  1250. dprintk(KERN_DEBUG "tvaudio: AUDC_SET_RADIOn");
  1251. chip->norm = VIDEO_MODE_RADIO;
  1252. chip->watch_stereo = 0;
  1253. /* del_timer(&chip->wt); */
  1254. break;
  1255. /* --- v4l ioctls --- */
  1256. /* take care: bttv does userspace copying, we'll get a
  1257.    kernel pointer here... */
  1258. case VIDIOCGAUDIO:
  1259. {
  1260. struct video_audio *va = arg;
  1261. if (desc->flags & CHIP_HAS_VOLUME) {
  1262. va->flags  |= VIDEO_AUDIO_VOLUME;
  1263. va->volume  = MAX(chip->left,chip->right);
  1264. va->balance = (32768*MIN(chip->left,chip->right))/
  1265. (va->volume ? va->volume : 1);
  1266. }
  1267. if (desc->flags & CHIP_HAS_BASSTREBLE) {
  1268. va->flags |= VIDEO_AUDIO_BASS | VIDEO_AUDIO_TREBLE;
  1269. va->bass   = chip->bass;
  1270. va->treble = chip->treble;
  1271. }
  1272. if (chip->norm != VIDEO_MODE_RADIO) {
  1273. if (desc->getmode)
  1274. va->mode = desc->getmode(chip);
  1275. else
  1276. va->mode = VIDEO_SOUND_MONO;
  1277. }
  1278. break;
  1279. }
  1280. case VIDIOCSAUDIO:
  1281. {
  1282. struct video_audio *va = arg;
  1283. if (desc->flags & CHIP_HAS_VOLUME) {
  1284. chip->left = (MIN(65536 - va->balance,32768) *
  1285.       va->volume) / 32768;
  1286. chip->right = (MIN(va->balance,32768) *
  1287.        va->volume) / 32768;
  1288. chip_write(chip,desc->leftreg,desc->volfunc(chip->left));
  1289. chip_write(chip,desc->rightreg,desc->volfunc(chip->right));
  1290. }
  1291. if (desc->flags & CHIP_HAS_BASSTREBLE) {
  1292. chip->bass = va->bass;
  1293. chip->treble = va->treble;
  1294. chip_write(chip,desc->bassreg,desc->bassfunc(chip->bass));
  1295. chip_write(chip,desc->treblereg,desc->treblefunc(chip->treble));
  1296. }
  1297. if (desc->setmode && va->mode) {
  1298. chip->watch_stereo = 0;
  1299. /* del_timer(&chip->wt); */
  1300. chip->mode = va->mode;
  1301. desc->setmode(chip,va->mode);
  1302. }
  1303. break;
  1304. }
  1305. case VIDIOCSCHAN:
  1306. {
  1307. struct video_channel *vc = arg;
  1308. dprintk(KERN_DEBUG "tvaudio: VIDIOCSCHANn");
  1309. chip->norm = vc->norm;
  1310. break;
  1311. }
  1312. case VIDIOCSFREQ:
  1313. {
  1314.      chip->mode = 0; /* automatic */
  1315. if (desc->checkmode) {
  1316. desc->setmode(chip,VIDEO_SOUND_MONO);
  1317.      if (chip->prevmode != VIDEO_SOUND_MONO)
  1318.      chip->prevmode = -1; /* reset previous mode */
  1319. mod_timer(&chip->wt, jiffies+2*HZ);
  1320. /* the thread will call checkmode() later */
  1321. }
  1322. }
  1323. }
  1324. return 0;
  1325. }
  1326. static struct i2c_driver driver = {
  1327.         name:            "generic i2c audio driver",
  1328.         id:              I2C_DRIVERID_TVAUDIO,
  1329.         flags:           I2C_DF_NOTIFY,
  1330.         attach_adapter:  chip_probe,
  1331.         detach_client:   chip_detach,
  1332.         command:         chip_command,
  1333. };
  1334. static struct i2c_client client_template =
  1335. {
  1336.         name:   "(unset)",
  1337. flags:  I2C_CLIENT_ALLOW_USE,
  1338.         driver: &driver,
  1339. };
  1340. static int audiochip_init_module(void)
  1341. {
  1342. struct CHIPDESC  *desc;
  1343. printk(KERN_INFO "tvaudio: TV audio decoder + audio/video mux drivern");
  1344. printk(KERN_INFO "tvaudio: known chips: ");
  1345. for (desc = chiplist; desc->name != NULL; desc++)
  1346. printk("%s%s", (desc == chiplist) ? "" : ",",desc->name);
  1347. printk("n");
  1348. i2c_add_driver(&driver);
  1349. return 0;
  1350. }
  1351. static void audiochip_cleanup_module(void)
  1352. {
  1353. i2c_del_driver(&driver);
  1354. }
  1355. module_init(audiochip_init_module);
  1356. module_exit(audiochip_cleanup_module);
  1357. /*
  1358.  * Local variables:
  1359.  * c-basic-offset: 8
  1360.  * End:
  1361.  */