tuner-simple.c 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527
  1. /*
  2. *
  3. * i2c tv tuner chip device driver
  4. * controls all those simple 4-control-bytes style tuners.
  5. */
  6. #include <linux/delay.h>
  7. #include <linux/i2c.h>
  8. #include <linux/videodev.h>
  9. #include <media/tuner.h>
  10. /* ---------------------------------------------------------------------- */
  11. /* tv standard selection for Temic 4046 FM5
  12. this value takes the low bits of control byte 2
  13. from datasheet Rev.01, Feb.00
  14. standard BG I L L2 D
  15. picture IF 38.9 38.9 38.9 33.95 38.9
  16. sound 1 33.4 32.9 32.4 40.45 32.4
  17. sound 2 33.16
  18. NICAM 33.05 32.348 33.05 33.05
  19. */
  20. #define TEMIC_SET_PAL_I 0x05
  21. #define TEMIC_SET_PAL_DK 0x09
  22. #define TEMIC_SET_PAL_L 0x0a // SECAM ?
  23. #define TEMIC_SET_PAL_L2 0x0b // change IF !
  24. #define TEMIC_SET_PAL_BG 0x0c
  25. /* tv tuner system standard selection for Philips FQ1216ME
  26. this value takes the low bits of control byte 2
  27. from datasheet "1999 Nov 16" (supersedes "1999 Mar 23")
  28. standard BG DK I L L`
  29. picture carrier 38.90 38.90 38.90 38.90 33.95
  30. colour 34.47 34.47 34.47 34.47 38.38
  31. sound 1 33.40 32.40 32.90 32.40 40.45
  32. sound 2 33.16 - - - -
  33. NICAM 33.05 33.05 32.35 33.05 39.80
  34. */
  35. #define PHILIPS_SET_PAL_I 0x01 /* Bit 2 always zero !*/
  36. #define PHILIPS_SET_PAL_BGDK 0x09
  37. #define PHILIPS_SET_PAL_L2 0x0a
  38. #define PHILIPS_SET_PAL_L 0x0b
  39. /* system switching for Philips FI1216MF MK2
  40. from datasheet "1996 Jul 09",
  41. standard BG L L'
  42. picture carrier 38.90 38.90 33.95
  43. colour 34.47 34.37 38.38
  44. sound 1 33.40 32.40 40.45
  45. sound 2 33.16 - -
  46. NICAM 33.05 33.05 39.80
  47. */
  48. #define PHILIPS_MF_SET_BG 0x01 /* Bit 2 must be zero, Bit 3 is system output */
  49. #define PHILIPS_MF_SET_PAL_L 0x03 // France
  50. #define PHILIPS_MF_SET_PAL_L2 0x02 // L'
  51. /* Control byte */
  52. #define TUNER_RATIO_MASK 0x06 /* Bit cb1:cb2 */
  53. #define TUNER_RATIO_SELECT_50 0x00
  54. #define TUNER_RATIO_SELECT_32 0x02
  55. #define TUNER_RATIO_SELECT_166 0x04
  56. #define TUNER_RATIO_SELECT_62 0x06
  57. #define TUNER_CHARGE_PUMP 0x40 /* Bit cb6 */
  58. /* Status byte */
  59. #define TUNER_POR 0x80
  60. #define TUNER_FL 0x40
  61. #define TUNER_MODE 0x38
  62. #define TUNER_AFC 0x07
  63. #define TUNER_SIGNAL 0x07
  64. #define TUNER_STEREO 0x10
  65. #define TUNER_PLL_LOCKED 0x40
  66. #define TUNER_STEREO_MK3 0x04
  67. /* ---------------------------------------------------------------------- */
  68. struct tunertype
  69. {
  70. char *name;
  71. unsigned char Vendor;
  72. unsigned char Type;
  73. unsigned short thresh1; /* band switch VHF_LO <=> VHF_HI */
  74. unsigned short thresh2; /* band switch VHF_HI <=> UHF */
  75. unsigned char VHF_L;
  76. unsigned char VHF_H;
  77. unsigned char UHF;
  78. unsigned char config;
  79. unsigned short IFPCoff; /* 622.4=16*38.90 MHz PAL,
  80. 732 =16*45.75 NTSCi,
  81. 940 =16*58.75 NTSC-Japan
  82. 704 =16*44 ATSC */
  83. };
  84. /*
  85. * The floats in the tuner struct are computed at compile time
  86. * by gcc and cast back to integers. Thus we don't violate the
  87. * "no float in kernel" rule.
  88. */
  89. static struct tunertype tuners[] = {
  90. /* 0-9 */
  91. { "Temic PAL (4002 FH5)", TEMIC, PAL,
  92. 16*140.25,16*463.25,0x02,0x04,0x01,0x8e,623},
  93. { "Philips PAL_I (FI1246 and compatibles)", Philips, PAL_I,
  94. 16*140.25,16*463.25,0xa0,0x90,0x30,0x8e,623},
  95. { "Philips NTSC (FI1236,FM1236 and compatibles)", Philips, NTSC,
  96. 16*157.25,16*451.25,0xA0,0x90,0x30,0x8e,732},
  97. { "Philips (SECAM+PAL_BG) (FI1216MF, FM1216MF, FR1216MF)", Philips, SECAM,
  98. 16*168.25,16*447.25,0xA7,0x97,0x37,0x8e,623},
  99. { "NoTuner", NoTuner, NOTUNER,
  100. 0,0,0x00,0x00,0x00,0x00,0x00},
  101. { "Philips PAL_BG (FI1216 and compatibles)", Philips, PAL,
  102. 16*168.25,16*447.25,0xA0,0x90,0x30,0x8e,623},
  103. { "Temic NTSC (4032 FY5)", TEMIC, NTSC,
  104. 16*157.25,16*463.25,0x02,0x04,0x01,0x8e,732},
  105. { "Temic PAL_I (4062 FY5)", TEMIC, PAL_I,
  106. 16*170.00,16*450.00,0x02,0x04,0x01,0x8e,623},
  107. { "Temic NTSC (4036 FY5)", TEMIC, NTSC,
  108. 16*157.25,16*463.25,0xa0,0x90,0x30,0x8e,732},
  109. { "Alps HSBH1", TEMIC, NTSC,
  110. 16*137.25,16*385.25,0x01,0x02,0x08,0x8e,732},
  111. /* 10-19 */
  112. { "Alps TSBE1", TEMIC, PAL,
  113. 16*137.25,16*385.25,0x01,0x02,0x08,0x8e,732},
  114. { "Alps TSBB5", Alps, PAL_I, /* tested (UK UHF) with Modulartech MM205 */
  115. 16*133.25,16*351.25,0x01,0x02,0x08,0x8e,632},
  116. { "Alps TSBE5", Alps, PAL, /* untested - data sheet guess. Only IF differs. */
  117. 16*133.25,16*351.25,0x01,0x02,0x08,0x8e,622},
  118. { "Alps TSBC5", Alps, PAL, /* untested - data sheet guess. Only IF differs. */
  119. 16*133.25,16*351.25,0x01,0x02,0x08,0x8e,608},
  120. { "Temic PAL_BG (4006FH5)", TEMIC, PAL,
  121. 16*170.00,16*450.00,0xa0,0x90,0x30,0x8e,623},
  122. { "Alps TSCH6", Alps, NTSC,
  123. 16*137.25,16*385.25,0x14,0x12,0x11,0x8e,732},
  124. { "Temic PAL_DK (4016 FY5)", TEMIC, PAL,
  125. 16*168.25,16*456.25,0xa0,0x90,0x30,0x8e,623},
  126. { "Philips NTSC_M (MK2)", Philips, NTSC,
  127. 16*160.00,16*454.00,0xa0,0x90,0x30,0x8e,732},
  128. { "Temic PAL_I (4066 FY5)", TEMIC, PAL_I,
  129. 16*169.00, 16*454.00, 0xa0,0x90,0x30,0x8e,623},
  130. { "Temic PAL* auto (4006 FN5)", TEMIC, PAL,
  131. 16*169.00, 16*454.00, 0xa0,0x90,0x30,0x8e,623},
  132. /* 20-29 */
  133. { "Temic PAL_BG (4009 FR5) or PAL_I (4069 FR5)", TEMIC, PAL,
  134. 16*141.00, 16*464.00, 0xa0,0x90,0x30,0x8e,623},
  135. { "Temic NTSC (4039 FR5)", TEMIC, NTSC,
  136. 16*158.00, 16*453.00, 0xa0,0x90,0x30,0x8e,732},
  137. { "Temic PAL/SECAM multi (4046 FM5)", TEMIC, PAL,
  138. 16*169.00, 16*454.00, 0xa0,0x90,0x30,0x8e,623},
  139. { "Philips PAL_DK (FI1256 and compatibles)", Philips, PAL,
  140. 16*170.00,16*450.00,0xa0,0x90,0x30,0x8e,623},
  141. { "Philips PAL/SECAM multi (FQ1216ME)", Philips, PAL,
  142. 16*170.00,16*450.00,0xa0,0x90,0x30,0x8e,623},
  143. { "LG PAL_I+FM (TAPC-I001D)", LGINNOTEK, PAL_I,
  144. 16*170.00,16*450.00,0xa0,0x90,0x30,0x8e,623},
  145. { "LG PAL_I (TAPC-I701D)", LGINNOTEK, PAL_I,
  146. 16*170.00,16*450.00,0xa0,0x90,0x30,0x8e,623},
  147. { "LG NTSC+FM (TPI8NSR01F)", LGINNOTEK, NTSC,
  148. 16*210.00,16*497.00,0xa0,0x90,0x30,0x8e,732},
  149. { "LG PAL_BG+FM (TPI8PSB01D)", LGINNOTEK, PAL,
  150. 16*170.00,16*450.00,0xa0,0x90,0x30,0x8e,623},
  151. { "LG PAL_BG (TPI8PSB11D)", LGINNOTEK, PAL,
  152. 16*170.00,16*450.00,0xa0,0x90,0x30,0x8e,623},
  153. /* 30-39 */
  154. { "Temic PAL* auto + FM (4009 FN5)", TEMIC, PAL,
  155. 16*141.00, 16*464.00, 0xa0,0x90,0x30,0x8e,623},
  156. { "SHARP NTSC_JP (2U5JF5540)", SHARP, NTSC, /* 940=16*58.75 NTSC@Japan */
  157. 16*137.25,16*317.25,0x01,0x02,0x08,0x8e,940 },
  158. { "Samsung PAL TCPM9091PD27", Samsung, PAL, /* from sourceforge v3tv */
  159. 16*169,16*464,0xA0,0x90,0x30,0x8e,623},
  160. { "MT20xx universal", Microtune, PAL|NTSC,
  161. /* see mt20xx.c for details */ },
  162. { "Temic PAL_BG (4106 FH5)", TEMIC, PAL,
  163. 16*141.00, 16*464.00, 0xa0,0x90,0x30,0x8e,623},
  164. { "Temic PAL_DK/SECAM_L (4012 FY5)", TEMIC, PAL,
  165. 16*140.25, 16*463.25, 0x02,0x04,0x01,0x8e,623},
  166. { "Temic NTSC (4136 FY5)", TEMIC, NTSC,
  167. 16*158.00, 16*453.00, 0xa0,0x90,0x30,0x8e,732},
  168. { "LG PAL (newer TAPC series)", LGINNOTEK, PAL,
  169. 16*170.00, 16*450.00, 0x01,0x02,0x08,0x8e,623},
  170. { "Philips PAL/SECAM multi (FM1216ME MK3)", Philips, PAL,
  171. 16*158.00,16*442.00,0x01,0x02,0x04,0x8e,623 },
  172. { "LG NTSC (newer TAPC series)", LGINNOTEK, NTSC,
  173. 16*170.00, 16*450.00, 0x01,0x02,0x08,0x8e,732},
  174. /* 40-49 */
  175. { "HITACHI V7-J180AT", HITACHI, NTSC,
  176. 16*170.00, 16*450.00, 0x01,0x02,0x08,0x8e,940 },
  177. { "Philips PAL_MK (FI1216 MK)", Philips, PAL,
  178. 16*140.25,16*463.25,0x01,0xc2,0xcf,0x8e,623},
  179. { "Philips 1236D ATSC/NTSC daul in", Philips, ATSC,
  180. 16*157.25,16*454.00,0xa0,0x90,0x30,0x8e,732},
  181. { "Philips NTSC MK3 (FM1236MK3 or FM1236/F)", Philips, NTSC,
  182. 16*160.00,16*442.00,0x01,0x02,0x04,0x8e,732},
  183. { "Philips 4 in 1 (ATI TV Wonder Pro/Conexant)", Philips, NTSC,
  184. 16*160.00,16*442.00,0x01,0x02,0x04,0x8e,732},
  185. { "Microtune 4049 FM5", Microtune, PAL,
  186. 16*141.00,16*464.00,0xa0,0x90,0x30,0x8e,623},
  187. { "Panasonic VP27s/ENGE4324D", Panasonic, NTSC,
  188. 16*160.00,16*454.00,0x01,0x02,0x08,0xce,940},
  189. { "LG NTSC (TAPE series)", LGINNOTEK, NTSC,
  190. 16*160.00,16*442.00,0x01,0x02,0x04,0x8e,732 },
  191. { "Tenna TNF 8831 BGFF)", Philips, PAL,
  192. 16*161.25,16*463.25,0xa0,0x90,0x30,0x8e,623},
  193. { "Microtune 4042 FI5 ATSC/NTSC dual in", Microtune, NTSC,
  194. 16*162.00,16*457.00,0xa2,0x94,0x31,0x8e,732},
  195. /* 50-59 */
  196. { "TCL 2002N", TCL, NTSC,
  197. 16*172.00,16*448.00,0x01,0x02,0x08,0x8e,732},
  198. { "Philips PAL/SECAM_D (FM 1256 I-H3)", Philips, PAL,
  199. 16*160.00,16*442.00,0x01,0x02,0x04,0x8e,623 },
  200. { "Thomson DDT 7610 (ATSC/NTSC)", THOMSON, ATSC,
  201. 16*157.25,16*454.00,0x39,0x3a,0x3c,0x8e,732},
  202. { "Philips FQ1286", Philips, NTSC,
  203. 16*160.00,16*454.00,0x41,0x42,0x04,0x8e,940}, /* UHF band untested */
  204. { "tda8290+75", Philips, PAL|NTSC,
  205. /* see tda8290.c for details */ },
  206. { "TCL 2002MB", TCL, PAL,
  207. 16*170.00, 16*450.00, 0x01,0x02,0x08,0xce,623},
  208. { "Philips PAL/SECAM multi (FQ1216AME MK4)", Philips, PAL,
  209. 16*160.00,16*442.00,0x01,0x02,0x04,0xce,623 },
  210. { "Philips FQ1236A MK4", Philips, NTSC,
  211. 16*160.00,16*442.00,0x01,0x02,0x04,0x8e,732 },
  212. { "Ymec TVision TVF-8531MF/8831MF/8731MF", Philips, NTSC,
  213. 16*160.00,16*454.00,0xa0,0x90,0x30,0x8e,732},
  214. { "Ymec TVision TVF-5533MF", Philips, NTSC,
  215. 16*160.00,16*454.00,0x01,0x02,0x04,0x8e,732},
  216. /* 60-68 */
  217. { "Thomson DDT 7611 (ATSC/NTSC)", THOMSON, ATSC,
  218. 16*157.25,16*454.00,0x39,0x3a,0x3c,0x8e,732},
  219. { "Tena TNF9533-D/IF/TNF9533-B/DF", Philips, PAL,
  220. 16*160.25,16*464.25,0x01,0x02,0x04,0x8e,623},
  221. { "Philips TEA5767HN FM Radio", Philips, RADIO,
  222. /* see tea5767.c for details */},
  223. { "Philips FMD1216ME MK3 Hybrid Tuner", Philips, PAL,
  224. 16*160.00,16*442.00,0x51,0x52,0x54,0x86,623 },
  225. { "LG TDVS-H062F/TUA6034", LGINNOTEK, ATSC,
  226. 16*160.00,16*455.00,0x01,0x02,0x04,0x8e,732},
  227. { "Ymec TVF66T5-B/DFF", Philips, PAL,
  228. 16*160.25,16*464.25,0x01,0x02,0x08,0x8e,623},
  229. { "LG NTSC (TALN mini series)", LGINNOTEK, NTSC,
  230. 16*137.25,16*373.25,0x01,0x02,0x08,0x8e,732 },
  231. { "Philips TD1316 Hybrid Tuner", Philips, PAL,
  232. 16*160.00,16*442.00,0xa1,0xa2,0xa4,0xc8,623 },
  233. { "Philips TUV1236D ATSC/NTSC dual in", Philips, ATSC,
  234. 16*157.25,16*454.00,0x01,0x02,0x03,0xce,732 },
  235. };
  236. unsigned const int tuner_count = ARRAY_SIZE(tuners);
  237. /* ---------------------------------------------------------------------- */
  238. static int tuner_getstatus(struct i2c_client *c)
  239. {
  240. unsigned char byte;
  241. if (1 != i2c_master_recv(c,&byte,1))
  242. return 0;
  243. return byte;
  244. }
  245. static int tuner_signal(struct i2c_client *c)
  246. {
  247. return (tuner_getstatus(c) & TUNER_SIGNAL) << 13;
  248. }
  249. static int tuner_stereo(struct i2c_client *c)
  250. {
  251. int stereo, status;
  252. struct tuner *t = i2c_get_clientdata(c);
  253. status = tuner_getstatus (c);
  254. switch (t->type) {
  255. case TUNER_PHILIPS_FM1216ME_MK3:
  256. case TUNER_PHILIPS_FM1236_MK3:
  257. case TUNER_PHILIPS_FM1256_IH3:
  258. stereo = ((status & TUNER_SIGNAL) == TUNER_STEREO_MK3);
  259. break;
  260. default:
  261. stereo = status & TUNER_STEREO;
  262. }
  263. return stereo;
  264. }
  265. /* ---------------------------------------------------------------------- */
  266. static void default_set_tv_freq(struct i2c_client *c, unsigned int freq)
  267. {
  268. struct tuner *t = i2c_get_clientdata(c);
  269. u8 config;
  270. u16 div;
  271. struct tunertype *tun;
  272. unsigned char buffer[4];
  273. int rc;
  274. tun = &tuners[t->type];
  275. if (freq < tun->thresh1) {
  276. config = tun->VHF_L;
  277. tuner_dbg("tv: VHF lowrange\n");
  278. } else if (freq < tun->thresh2) {
  279. config = tun->VHF_H;
  280. tuner_dbg("tv: VHF high range\n");
  281. } else {
  282. config = tun->UHF;
  283. tuner_dbg("tv: UHF range\n");
  284. }
  285. /* tv norm specific stuff for multi-norm tuners */
  286. switch (t->type) {
  287. case TUNER_PHILIPS_SECAM: // FI1216MF
  288. /* 0x01 -> ??? no change ??? */
  289. /* 0x02 -> PAL BDGHI / SECAM L */
  290. /* 0x04 -> ??? PAL others / SECAM others ??? */
  291. config &= ~0x02;
  292. if (t->std & V4L2_STD_SECAM)
  293. config |= 0x02;
  294. break;
  295. case TUNER_TEMIC_4046FM5:
  296. config &= ~0x0f;
  297. if (t->std & V4L2_STD_PAL_BG) {
  298. config |= TEMIC_SET_PAL_BG;
  299. } else if (t->std & V4L2_STD_PAL_I) {
  300. config |= TEMIC_SET_PAL_I;
  301. } else if (t->std & V4L2_STD_PAL_DK) {
  302. config |= TEMIC_SET_PAL_DK;
  303. } else if (t->std & V4L2_STD_SECAM_L) {
  304. config |= TEMIC_SET_PAL_L;
  305. }
  306. break;
  307. case TUNER_PHILIPS_FQ1216ME:
  308. config &= ~0x0f;
  309. if (t->std & (V4L2_STD_PAL_BG|V4L2_STD_PAL_DK)) {
  310. config |= PHILIPS_SET_PAL_BGDK;
  311. } else if (t->std & V4L2_STD_PAL_I) {
  312. config |= PHILIPS_SET_PAL_I;
  313. } else if (t->std & V4L2_STD_SECAM_L) {
  314. config |= PHILIPS_SET_PAL_L;
  315. }
  316. break;
  317. case TUNER_PHILIPS_ATSC:
  318. /* 0x00 -> ATSC antenna input 1 */
  319. /* 0x01 -> ATSC antenna input 2 */
  320. /* 0x02 -> NTSC antenna input 1 */
  321. /* 0x03 -> NTSC antenna input 2 */
  322. config &= ~0x03;
  323. if (!(t->std & V4L2_STD_ATSC))
  324. config |= 2;
  325. /* FIXME: input */
  326. break;
  327. case TUNER_MICROTUNE_4042FI5:
  328. /* Set the charge pump for fast tuning */
  329. tun->config |= TUNER_CHARGE_PUMP;
  330. break;
  331. case TUNER_PHILIPS_TUV1236D:
  332. /* 0x40 -> ATSC antenna input 1 */
  333. /* 0x48 -> ATSC antenna input 2 */
  334. /* 0x00 -> NTSC antenna input 1 */
  335. /* 0x08 -> NTSC antenna input 2 */
  336. config &= ~0x40;
  337. if (t->std & V4L2_STD_ATSC)
  338. config |= 0x40;
  339. /* FIXME: input */
  340. break;
  341. }
  342. /*
  343. * Philips FI1216MK2 remark from specification :
  344. * for channel selection involving band switching, and to ensure
  345. * smooth tuning to the desired channel without causing
  346. * unnecessary charge pump action, it is recommended to consider
  347. * the difference between wanted channel frequency and the
  348. * current channel frequency. Unnecessary charge pump action
  349. * will result in very low tuning voltage which may drive the
  350. * oscillator to extreme conditions.
  351. *
  352. * Progfou: specification says to send config data before
  353. * frequency in case (wanted frequency < current frequency).
  354. */
  355. div=freq + tun->IFPCoff;
  356. if (t->type == TUNER_PHILIPS_SECAM && freq < t->freq) {
  357. buffer[0] = tun->config;
  358. buffer[1] = config;
  359. buffer[2] = (div>>8) & 0x7f;
  360. buffer[3] = div & 0xff;
  361. } else {
  362. buffer[0] = (div>>8) & 0x7f;
  363. buffer[1] = div & 0xff;
  364. buffer[2] = tun->config;
  365. buffer[3] = config;
  366. }
  367. tuner_dbg("tv 0x%02x 0x%02x 0x%02x 0x%02x\n",
  368. buffer[0],buffer[1],buffer[2],buffer[3]);
  369. if (4 != (rc = i2c_master_send(c,buffer,4)))
  370. tuner_warn("i2c i/o error: rc == %d (should be 4)\n",rc);
  371. if (t->type == TUNER_MICROTUNE_4042FI5) {
  372. // FIXME - this may also work for other tuners
  373. unsigned long timeout = jiffies + msecs_to_jiffies(1);
  374. u8 status_byte = 0;
  375. /* Wait until the PLL locks */
  376. for (;;) {
  377. if (time_after(jiffies,timeout))
  378. return;
  379. if (1 != (rc = i2c_master_recv(c,&status_byte,1))) {
  380. tuner_warn("i2c i/o read error: rc == %d (should be 1)\n",rc);
  381. break;
  382. }
  383. if (status_byte & TUNER_PLL_LOCKED)
  384. break;
  385. udelay(10);
  386. }
  387. /* Set the charge pump for optimized phase noise figure */
  388. tun->config &= ~TUNER_CHARGE_PUMP;
  389. buffer[0] = (div>>8) & 0x7f;
  390. buffer[1] = div & 0xff;
  391. buffer[2] = tun->config;
  392. buffer[3] = config;
  393. tuner_dbg("tv 0x%02x 0x%02x 0x%02x 0x%02x\n",
  394. buffer[0],buffer[1],buffer[2],buffer[3]);
  395. if (4 != (rc = i2c_master_send(c,buffer,4)))
  396. tuner_warn("i2c i/o error: rc == %d (should be 4)\n",rc);
  397. }
  398. }
  399. static void default_set_radio_freq(struct i2c_client *c, unsigned int freq)
  400. {
  401. struct tunertype *tun;
  402. struct tuner *t = i2c_get_clientdata(c);
  403. unsigned char buffer[4];
  404. unsigned div;
  405. int rc;
  406. tun = &tuners[t->type];
  407. div = (20 * freq / 16000) + (int)(20*10.7); /* IF 10.7 MHz */
  408. buffer[2] = (tun->config & ~TUNER_RATIO_MASK) | TUNER_RATIO_SELECT_50; /* 50 kHz step */
  409. switch (t->type) {
  410. case TUNER_TENA_9533_DI:
  411. case TUNER_YMEC_TVF_5533MF:
  412. tuner_dbg ("This tuner doesn't have FM. Most cards has a TEA5767 for FM\n");
  413. return;
  414. case TUNER_PHILIPS_FM1216ME_MK3:
  415. case TUNER_PHILIPS_FM1236_MK3:
  416. case TUNER_PHILIPS_FMD1216ME_MK3:
  417. buffer[3] = 0x19;
  418. break;
  419. case TUNER_PHILIPS_FM1256_IH3:
  420. div = (20 * freq) / 16000 + (int)(33.3 * 20); /* IF 33.3 MHz */
  421. buffer[3] = 0x19;
  422. break;
  423. case TUNER_LG_PAL_FM:
  424. buffer[3] = 0xa5;
  425. break;
  426. case TUNER_MICROTUNE_4049FM5:
  427. div = (20 * freq) / 16000 + (int)(33.3 * 20); /* IF 33.3 MHz */
  428. buffer[3] = 0xa4;
  429. break;
  430. default:
  431. buffer[3] = 0xa4;
  432. break;
  433. }
  434. buffer[0] = (div>>8) & 0x7f;
  435. buffer[1] = div & 0xff;
  436. tuner_dbg("radio 0x%02x 0x%02x 0x%02x 0x%02x\n",
  437. buffer[0],buffer[1],buffer[2],buffer[3]);
  438. if (4 != (rc = i2c_master_send(c,buffer,4)))
  439. tuner_warn("i2c i/o error: rc == %d (should be 4)\n",rc);
  440. }
  441. int default_tuner_init(struct i2c_client *c)
  442. {
  443. struct tuner *t = i2c_get_clientdata(c);
  444. tuner_info("type set to %d (%s)\n",
  445. t->type, tuners[t->type].name);
  446. strlcpy(c->name, tuners[t->type].name, sizeof(c->name));
  447. t->tv_freq = default_set_tv_freq;
  448. t->radio_freq = default_set_radio_freq;
  449. t->has_signal = tuner_signal;
  450. t->is_stereo = tuner_stereo;
  451. t->standby = NULL;
  452. return 0;
  453. }
  454. /*
  455. * Overrides for Emacs so that we follow Linus's tabbing style.
  456. * ---------------------------------------------------------------------------
  457. * Local variables:
  458. * c-basic-offset: 8
  459. * End:
  460. */