tea5767.c 12 KB

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