tea5767.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475
  1. /*
  2. * For Philips TEA5767 FM Chip used on some TV Cards like Prolink Pixelview
  3. * I2C address is allways 0xC0.
  4. *
  5. *
  6. * Copyright (c) 2005 Mauro Carvalho Chehab (mchehab@infradead.org)
  7. * This code is placed under the terms of the GNU General Public License
  8. *
  9. * tea5767 autodetection thanks to Torsten Seeboth and Atsushi Nakagawa
  10. * from their contributions on DScaler.
  11. */
  12. #include <linux/i2c.h>
  13. #include <linux/slab.h>
  14. #include <linux/delay.h>
  15. #include <linux/videodev2.h>
  16. #include "tuner-i2c.h"
  17. #include "tea5767.h"
  18. static int debug;
  19. module_param(debug, int, 0644);
  20. MODULE_PARM_DESC(debug, "enable verbose debug messages");
  21. /*****************************************************************************/
  22. struct tea5767_priv {
  23. struct tuner_i2c_props i2c_props;
  24. u32 frequency;
  25. struct tea5767_ctrl ctrl;
  26. };
  27. /*****************************************************************************/
  28. /******************************
  29. * Write mode register values *
  30. ******************************/
  31. /* First register */
  32. #define TEA5767_MUTE 0x80 /* Mutes output */
  33. #define TEA5767_SEARCH 0x40 /* Activates station search */
  34. /* Bits 0-5 for divider MSB */
  35. /* Second register */
  36. /* Bits 0-7 for divider LSB */
  37. /* Third register */
  38. /* Station search from botton to up */
  39. #define TEA5767_SEARCH_UP 0x80
  40. /* Searches with ADC output = 10 */
  41. #define TEA5767_SRCH_HIGH_LVL 0x60
  42. /* Searches with ADC output = 10 */
  43. #define TEA5767_SRCH_MID_LVL 0x40
  44. /* Searches with ADC output = 5 */
  45. #define TEA5767_SRCH_LOW_LVL 0x20
  46. /* if on, div=4*(Frf+Fif)/Fref otherwise, div=4*(Frf-Fif)/Freq) */
  47. #define TEA5767_HIGH_LO_INJECT 0x10
  48. /* Disable stereo */
  49. #define TEA5767_MONO 0x08
  50. /* Disable right channel and turns to mono */
  51. #define TEA5767_MUTE_RIGHT 0x04
  52. /* Disable left channel and turns to mono */
  53. #define TEA5767_MUTE_LEFT 0x02
  54. #define TEA5767_PORT1_HIGH 0x01
  55. /* Fourth register */
  56. #define TEA5767_PORT2_HIGH 0x80
  57. /* Chips stops working. Only I2C bus remains on */
  58. #define TEA5767_STDBY 0x40
  59. /* Japan freq (76-108 MHz. If disabled, 87.5-108 MHz */
  60. #define TEA5767_JAPAN_BAND 0x20
  61. /* Unselected means 32.768 KHz freq as reference. Otherwise Xtal at 13 MHz */
  62. #define TEA5767_XTAL_32768 0x10
  63. /* Cuts weak signals */
  64. #define TEA5767_SOFT_MUTE 0x08
  65. /* Activates high cut control */
  66. #define TEA5767_HIGH_CUT_CTRL 0x04
  67. /* Activates stereo noise control */
  68. #define TEA5767_ST_NOISE_CTL 0x02
  69. /* If activate PORT 1 indicates SEARCH or else it is used as PORT1 */
  70. #define TEA5767_SRCH_IND 0x01
  71. /* Fifth register */
  72. /* By activating, it will use Xtal at 13 MHz as reference for divider */
  73. #define TEA5767_PLLREF_ENABLE 0x80
  74. /* By activating, deemphasis=50, or else, deemphasis of 50us */
  75. #define TEA5767_DEEMPH_75 0X40
  76. /*****************************
  77. * Read mode register values *
  78. *****************************/
  79. /* First register */
  80. #define TEA5767_READY_FLAG_MASK 0x80
  81. #define TEA5767_BAND_LIMIT_MASK 0X40
  82. /* Bits 0-5 for divider MSB after search or preset */
  83. /* Second register */
  84. /* Bits 0-7 for divider LSB after search or preset */
  85. /* Third register */
  86. #define TEA5767_STEREO_MASK 0x80
  87. #define TEA5767_IF_CNTR_MASK 0x7f
  88. /* Fourth register */
  89. #define TEA5767_ADC_LEVEL_MASK 0xf0
  90. /* should be 0 */
  91. #define TEA5767_CHIP_ID_MASK 0x0f
  92. /* Fifth register */
  93. /* Reserved for future extensions */
  94. #define TEA5767_RESERVED_MASK 0xff
  95. /*****************************************************************************/
  96. static void tea5767_status_dump(struct tea5767_priv *priv,
  97. unsigned char *buffer)
  98. {
  99. unsigned int div, frq;
  100. if (TEA5767_READY_FLAG_MASK & buffer[0])
  101. tuner_info("Ready Flag ON\n");
  102. else
  103. tuner_info("Ready Flag OFF\n");
  104. if (TEA5767_BAND_LIMIT_MASK & buffer[0])
  105. tuner_info("Tuner at band limit\n");
  106. else
  107. tuner_info("Tuner not at band limit\n");
  108. div = ((buffer[0] & 0x3f) << 8) | buffer[1];
  109. switch (priv->ctrl.xtal_freq) {
  110. case TEA5767_HIGH_LO_13MHz:
  111. frq = (div * 50000 - 700000 - 225000) / 4; /* Freq in KHz */
  112. break;
  113. case TEA5767_LOW_LO_13MHz:
  114. frq = (div * 50000 + 700000 + 225000) / 4; /* Freq in KHz */
  115. break;
  116. case TEA5767_LOW_LO_32768:
  117. frq = (div * 32768 + 700000 + 225000) / 4; /* Freq in KHz */
  118. break;
  119. case TEA5767_HIGH_LO_32768:
  120. default:
  121. frq = (div * 32768 - 700000 - 225000) / 4; /* Freq in KHz */
  122. break;
  123. }
  124. buffer[0] = (div >> 8) & 0x3f;
  125. buffer[1] = div & 0xff;
  126. tuner_info("Frequency %d.%03d KHz (divider = 0x%04x)\n",
  127. frq / 1000, frq % 1000, div);
  128. if (TEA5767_STEREO_MASK & buffer[2])
  129. tuner_info("Stereo\n");
  130. else
  131. tuner_info("Mono\n");
  132. tuner_info("IF Counter = %d\n", buffer[2] & TEA5767_IF_CNTR_MASK);
  133. tuner_info("ADC Level = %d\n",
  134. (buffer[3] & TEA5767_ADC_LEVEL_MASK) >> 4);
  135. tuner_info("Chip ID = %d\n", (buffer[3] & TEA5767_CHIP_ID_MASK));
  136. tuner_info("Reserved = 0x%02x\n",
  137. (buffer[4] & TEA5767_RESERVED_MASK));
  138. }
  139. /* Freq should be specifyed at 62.5 Hz */
  140. static int set_radio_freq(struct dvb_frontend *fe,
  141. struct analog_parameters *params)
  142. {
  143. struct tea5767_priv *priv = fe->tuner_priv;
  144. unsigned int frq = params->frequency;
  145. unsigned char buffer[5];
  146. unsigned div;
  147. int rc;
  148. tuner_dbg("radio freq = %d.%03d MHz\n", frq/16000,(frq/16)%1000);
  149. buffer[2] = 0;
  150. if (priv->ctrl.port1)
  151. buffer[2] |= TEA5767_PORT1_HIGH;
  152. if (params->audmode == V4L2_TUNER_MODE_MONO) {
  153. tuner_dbg("TEA5767 set to mono\n");
  154. buffer[2] |= TEA5767_MONO;
  155. } else {
  156. tuner_dbg("TEA5767 set to stereo\n");
  157. }
  158. buffer[3] = 0;
  159. if (priv->ctrl.port2)
  160. buffer[3] |= TEA5767_PORT2_HIGH;
  161. if (priv->ctrl.high_cut)
  162. buffer[3] |= TEA5767_HIGH_CUT_CTRL;
  163. if (priv->ctrl.st_noise)
  164. buffer[3] |= TEA5767_ST_NOISE_CTL;
  165. if (priv->ctrl.soft_mute)
  166. buffer[3] |= TEA5767_SOFT_MUTE;
  167. if (priv->ctrl.japan_band)
  168. buffer[3] |= TEA5767_JAPAN_BAND;
  169. buffer[4] = 0;
  170. if (priv->ctrl.deemph_75)
  171. buffer[4] |= TEA5767_DEEMPH_75;
  172. if (priv->ctrl.pllref)
  173. buffer[4] |= TEA5767_PLLREF_ENABLE;
  174. /* Rounds freq to next decimal value - for 62.5 KHz step */
  175. /* frq = 20*(frq/16)+radio_frq[frq%16]; */
  176. switch (priv->ctrl.xtal_freq) {
  177. case TEA5767_HIGH_LO_13MHz:
  178. tuner_dbg("radio HIGH LO inject xtal @ 13 MHz\n");
  179. buffer[2] |= TEA5767_HIGH_LO_INJECT;
  180. div = (frq * (4000 / 16) + 700000 + 225000 + 25000) / 50000;
  181. break;
  182. case TEA5767_LOW_LO_13MHz:
  183. tuner_dbg("radio LOW LO inject xtal @ 13 MHz\n");
  184. div = (frq * (4000 / 16) - 700000 - 225000 + 25000) / 50000;
  185. break;
  186. case TEA5767_LOW_LO_32768:
  187. tuner_dbg("radio LOW LO inject xtal @ 32,768 MHz\n");
  188. buffer[3] |= TEA5767_XTAL_32768;
  189. /* const 700=4000*175 Khz - to adjust freq to right value */
  190. div = ((frq * (4000 / 16) - 700000 - 225000) + 16384) >> 15;
  191. break;
  192. case TEA5767_HIGH_LO_32768:
  193. default:
  194. tuner_dbg("radio HIGH LO inject xtal @ 32,768 MHz\n");
  195. buffer[2] |= TEA5767_HIGH_LO_INJECT;
  196. buffer[3] |= TEA5767_XTAL_32768;
  197. div = ((frq * (4000 / 16) + 700000 + 225000) + 16384) >> 15;
  198. break;
  199. }
  200. buffer[0] = (div >> 8) & 0x3f;
  201. buffer[1] = div & 0xff;
  202. if (5 != (rc = tuner_i2c_xfer_send(&priv->i2c_props, buffer, 5)))
  203. tuner_warn("i2c i/o error: rc == %d (should be 5)\n", rc);
  204. if (debug) {
  205. if (5 != (rc = tuner_i2c_xfer_recv(&priv->i2c_props, buffer, 5)))
  206. tuner_warn("i2c i/o error: rc == %d (should be 5)\n", rc);
  207. else
  208. tea5767_status_dump(priv, buffer);
  209. }
  210. priv->frequency = frq * 125 / 2;
  211. return 0;
  212. }
  213. static int tea5767_read_status(struct dvb_frontend *fe, char *buffer)
  214. {
  215. struct tea5767_priv *priv = fe->tuner_priv;
  216. int rc;
  217. memset(buffer, 0, 5);
  218. if (5 != (rc = tuner_i2c_xfer_recv(&priv->i2c_props, buffer, 5))) {
  219. tuner_warn("i2c i/o error: rc == %d (should be 5)\n", rc);
  220. return -EREMOTEIO;
  221. }
  222. return 0;
  223. }
  224. static inline int tea5767_signal(struct dvb_frontend *fe, const char *buffer)
  225. {
  226. struct tea5767_priv *priv = fe->tuner_priv;
  227. int signal = ((buffer[3] & TEA5767_ADC_LEVEL_MASK) << 8);
  228. tuner_dbg("Signal strength: %d\n", signal);
  229. return signal;
  230. }
  231. static inline int tea5767_stereo(struct dvb_frontend *fe, const char *buffer)
  232. {
  233. struct tea5767_priv *priv = fe->tuner_priv;
  234. int stereo = buffer[2] & TEA5767_STEREO_MASK;
  235. tuner_dbg("Radio ST GET = %02x\n", stereo);
  236. return (stereo ? V4L2_TUNER_SUB_STEREO : 0);
  237. }
  238. static int tea5767_get_status(struct dvb_frontend *fe, u32 *status)
  239. {
  240. unsigned char buffer[5];
  241. *status = 0;
  242. if (0 == tea5767_read_status(fe, buffer)) {
  243. if (tea5767_signal(fe, buffer))
  244. *status = TUNER_STATUS_LOCKED;
  245. if (tea5767_stereo(fe, buffer))
  246. *status |= TUNER_STATUS_STEREO;
  247. }
  248. return 0;
  249. }
  250. static int tea5767_get_rf_strength(struct dvb_frontend *fe, u16 *strength)
  251. {
  252. unsigned char buffer[5];
  253. *strength = 0;
  254. if (0 == tea5767_read_status(fe, buffer))
  255. *strength = tea5767_signal(fe, buffer);
  256. return 0;
  257. }
  258. static int tea5767_standby(struct dvb_frontend *fe)
  259. {
  260. unsigned char buffer[5];
  261. struct tea5767_priv *priv = fe->tuner_priv;
  262. unsigned div, rc;
  263. div = (87500 * 4 + 700 + 225 + 25) / 50; /* Set frequency to 87.5 MHz */
  264. buffer[0] = (div >> 8) & 0x3f;
  265. buffer[1] = div & 0xff;
  266. buffer[2] = TEA5767_PORT1_HIGH;
  267. buffer[3] = TEA5767_PORT2_HIGH | TEA5767_HIGH_CUT_CTRL |
  268. TEA5767_ST_NOISE_CTL | TEA5767_JAPAN_BAND | TEA5767_STDBY;
  269. buffer[4] = 0;
  270. if (5 != (rc = tuner_i2c_xfer_send(&priv->i2c_props, buffer, 5)))
  271. tuner_warn("i2c i/o error: rc == %d (should be 5)\n", rc);
  272. return 0;
  273. }
  274. int tea5767_autodetection(struct i2c_adapter* i2c_adap, u8 i2c_addr)
  275. {
  276. struct tuner_i2c_props i2c = { .adap = i2c_adap, .addr = i2c_addr };
  277. unsigned char buffer[7] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
  278. int rc;
  279. if ((rc = tuner_i2c_xfer_recv(&i2c, buffer, 7))< 5) {
  280. printk(KERN_WARNING "It is not a TEA5767. Received %i bytes.\n", rc);
  281. return -EINVAL;
  282. }
  283. /* If all bytes are the same then it's a TV tuner and not a tea5767 */
  284. if (buffer[0] == buffer[1] && buffer[0] == buffer[2] &&
  285. buffer[0] == buffer[3] && buffer[0] == buffer[4]) {
  286. printk(KERN_WARNING "All bytes are equal. It is not a TEA5767\n");
  287. return -EINVAL;
  288. }
  289. /* Status bytes:
  290. * Byte 4: bit 3:1 : CI (Chip Identification) == 0
  291. * bit 0 : internally set to 0
  292. * Byte 5: bit 7:0 : == 0
  293. */
  294. if (((buffer[3] & 0x0f) != 0x00) || (buffer[4] != 0x00)) {
  295. printk(KERN_WARNING "Chip ID is not zero. It is not a TEA5767\n");
  296. return -EINVAL;
  297. }
  298. return 0;
  299. }
  300. static int tea5767_release(struct dvb_frontend *fe)
  301. {
  302. kfree(fe->tuner_priv);
  303. fe->tuner_priv = NULL;
  304. return 0;
  305. }
  306. static int tea5767_get_frequency(struct dvb_frontend *fe, u32 *frequency)
  307. {
  308. struct tea5767_priv *priv = fe->tuner_priv;
  309. *frequency = priv->frequency;
  310. return 0;
  311. }
  312. static int tea5767_set_config (struct dvb_frontend *fe, void *priv_cfg)
  313. {
  314. struct tea5767_priv *priv = fe->tuner_priv;
  315. memcpy(&priv->ctrl, priv_cfg, sizeof(priv->ctrl));
  316. return 0;
  317. }
  318. static struct dvb_tuner_ops tea5767_tuner_ops = {
  319. .info = {
  320. .name = "tea5767", // Philips TEA5767HN FM Radio
  321. },
  322. .set_analog_params = set_radio_freq,
  323. .set_config = tea5767_set_config,
  324. .sleep = tea5767_standby,
  325. .release = tea5767_release,
  326. .get_frequency = tea5767_get_frequency,
  327. .get_status = tea5767_get_status,
  328. .get_rf_strength = tea5767_get_rf_strength,
  329. };
  330. struct dvb_frontend *tea5767_attach(struct dvb_frontend *fe,
  331. struct i2c_adapter* i2c_adap,
  332. u8 i2c_addr)
  333. {
  334. struct tea5767_priv *priv = NULL;
  335. priv = kzalloc(sizeof(struct tea5767_priv), GFP_KERNEL);
  336. if (priv == NULL)
  337. return NULL;
  338. fe->tuner_priv = priv;
  339. priv->i2c_props.addr = i2c_addr;
  340. priv->i2c_props.adap = i2c_adap;
  341. priv->i2c_props.name = "tea5767";
  342. priv->ctrl.xtal_freq = TEA5767_HIGH_LO_32768;
  343. priv->ctrl.port1 = 1;
  344. priv->ctrl.port2 = 1;
  345. priv->ctrl.high_cut = 1;
  346. priv->ctrl.st_noise = 1;
  347. priv->ctrl.japan_band = 1;
  348. memcpy(&fe->ops.tuner_ops, &tea5767_tuner_ops,
  349. sizeof(struct dvb_tuner_ops));
  350. tuner_info("type set to %s\n", "Philips TEA5767HN FM Radio");
  351. return fe;
  352. }
  353. EXPORT_SYMBOL_GPL(tea5767_attach);
  354. EXPORT_SYMBOL_GPL(tea5767_autodetection);
  355. MODULE_DESCRIPTION("Philips TEA5767 FM tuner driver");
  356. MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@infradead.org>");
  357. MODULE_LICENSE("GPL");