tda10021.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469
  1. /*
  2. TDA10021 - Single Chip Cable Channel Receiver driver module
  3. used on the the Siemens DVB-C cards
  4. Copyright (C) 1999 Convergence Integrated Media GmbH <ralph@convergence.de>
  5. Copyright (C) 2004 Markus Schulz <msc@antzsystem.de>
  6. Support for TDA10021
  7. This program is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU General Public License as published by
  9. the Free Software Foundation; either version 2 of the License, or
  10. (at your option) any later version.
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. GNU General Public License for more details.
  15. You should have received a copy of the GNU General Public License
  16. along with this program; if not, write to the Free Software
  17. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18. */
  19. #include <linux/config.h>
  20. #include <linux/delay.h>
  21. #include <linux/errno.h>
  22. #include <linux/init.h>
  23. #include <linux/kernel.h>
  24. #include <linux/module.h>
  25. #include <linux/string.h>
  26. #include <linux/slab.h>
  27. #include "dvb_frontend.h"
  28. #include "tda10021.h"
  29. struct tda10021_state {
  30. struct i2c_adapter* i2c;
  31. struct dvb_frontend_ops ops;
  32. /* configuration settings */
  33. const struct tda10021_config* config;
  34. struct dvb_frontend frontend;
  35. u8 pwm;
  36. u8 reg0;
  37. };
  38. #if 0
  39. #define dprintk(x...) printk(x)
  40. #else
  41. #define dprintk(x...)
  42. #endif
  43. static int verbose;
  44. #define XIN 57840000UL
  45. #define DISABLE_INVERSION(reg0) do { reg0 |= 0x20; } while (0)
  46. #define ENABLE_INVERSION(reg0) do { reg0 &= ~0x20; } while (0)
  47. #define HAS_INVERSION(reg0) (!(reg0 & 0x20))
  48. #define FIN (XIN >> 4)
  49. static int tda10021_inittab_size = 0x40;
  50. static u8 tda10021_inittab[0x40]=
  51. {
  52. 0x73, 0x6a, 0x23, 0x0a, 0x02, 0x37, 0x77, 0x1a,
  53. 0x37, 0x6a, 0x17, 0x8a, 0x1e, 0x86, 0x43, 0x40,
  54. 0xb8, 0x3f, 0xa0, 0x00, 0xcd, 0x01, 0x00, 0xff,
  55. 0x11, 0x00, 0x7c, 0x31, 0x30, 0x20, 0x00, 0x00,
  56. 0x02, 0x00, 0x00, 0x7d, 0x00, 0x00, 0x00, 0x00,
  57. 0x07, 0x00, 0x33, 0x11, 0x0d, 0x95, 0x08, 0x58,
  58. 0x00, 0x00, 0x80, 0x00, 0x80, 0xff, 0x00, 0x00,
  59. 0x04, 0x2d, 0x2f, 0xff, 0x00, 0x00, 0x00, 0x00,
  60. };
  61. static int tda10021_writereg (struct tda10021_state* state, u8 reg, u8 data)
  62. {
  63. u8 buf[] = { reg, data };
  64. struct i2c_msg msg = { .addr = state->config->demod_address, .flags = 0, .buf = buf, .len = 2 };
  65. int ret;
  66. ret = i2c_transfer (state->i2c, &msg, 1);
  67. if (ret != 1)
  68. printk("DVB: TDA10021(%d): %s, writereg error "
  69. "(reg == 0x%02x, val == 0x%02x, ret == %i)\n",
  70. state->frontend.dvb->num, __FUNCTION__, reg, data, ret);
  71. msleep(10);
  72. return (ret != 1) ? -EREMOTEIO : 0;
  73. }
  74. static u8 tda10021_readreg (struct tda10021_state* state, u8 reg)
  75. {
  76. u8 b0 [] = { reg };
  77. u8 b1 [] = { 0 };
  78. struct i2c_msg msg [] = { { .addr = state->config->demod_address, .flags = 0, .buf = b0, .len = 1 },
  79. { .addr = state->config->demod_address, .flags = I2C_M_RD, .buf = b1, .len = 1 } };
  80. int ret;
  81. ret = i2c_transfer (state->i2c, msg, 2);
  82. if (ret != 2)
  83. printk("DVB: TDA10021(%d): %s: readreg error (ret == %i)\n",
  84. state->frontend.dvb->num, __FUNCTION__, ret);
  85. return b1[0];
  86. }
  87. //get access to tuner
  88. static int lock_tuner(struct tda10021_state* state)
  89. {
  90. u8 buf[2] = { 0x0f, tda10021_inittab[0x0f] | 0x80 };
  91. struct i2c_msg msg = {.addr=state->config->demod_address, .flags=0, .buf=buf, .len=2};
  92. if(i2c_transfer(state->i2c, &msg, 1) != 1)
  93. {
  94. printk("tda10021: lock tuner fails\n");
  95. return -EREMOTEIO;
  96. }
  97. return 0;
  98. }
  99. //release access from tuner
  100. static int unlock_tuner(struct tda10021_state* state)
  101. {
  102. u8 buf[2] = { 0x0f, tda10021_inittab[0x0f] & 0x7f };
  103. struct i2c_msg msg_post={.addr=state->config->demod_address, .flags=0, .buf=buf, .len=2};
  104. if(i2c_transfer(state->i2c, &msg_post, 1) != 1)
  105. {
  106. printk("tda10021: unlock tuner fails\n");
  107. return -EREMOTEIO;
  108. }
  109. return 0;
  110. }
  111. static int tda10021_setup_reg0 (struct tda10021_state* state, u8 reg0,
  112. fe_spectral_inversion_t inversion)
  113. {
  114. reg0 |= state->reg0 & 0x63;
  115. if (INVERSION_ON == inversion)
  116. ENABLE_INVERSION(reg0);
  117. else if (INVERSION_OFF == inversion)
  118. DISABLE_INVERSION(reg0);
  119. tda10021_writereg (state, 0x00, reg0 & 0xfe);
  120. tda10021_writereg (state, 0x00, reg0 | 0x01);
  121. state->reg0 = reg0;
  122. return 0;
  123. }
  124. static int tda10021_set_symbolrate (struct tda10021_state* state, u32 symbolrate)
  125. {
  126. s32 BDR;
  127. s32 BDRI;
  128. s16 SFIL=0;
  129. u16 NDEC = 0;
  130. u32 tmp, ratio;
  131. if (symbolrate > XIN/2)
  132. symbolrate = XIN/2;
  133. if (symbolrate < 500000)
  134. symbolrate = 500000;
  135. if (symbolrate < XIN/16) NDEC = 1;
  136. if (symbolrate < XIN/32) NDEC = 2;
  137. if (symbolrate < XIN/64) NDEC = 3;
  138. if (symbolrate < (u32)(XIN/12.3)) SFIL = 1;
  139. if (symbolrate < (u32)(XIN/16)) SFIL = 0;
  140. if (symbolrate < (u32)(XIN/24.6)) SFIL = 1;
  141. if (symbolrate < (u32)(XIN/32)) SFIL = 0;
  142. if (symbolrate < (u32)(XIN/49.2)) SFIL = 1;
  143. if (symbolrate < (u32)(XIN/64)) SFIL = 0;
  144. if (symbolrate < (u32)(XIN/98.4)) SFIL = 1;
  145. symbolrate <<= NDEC;
  146. ratio = (symbolrate << 4) / FIN;
  147. tmp = ((symbolrate << 4) % FIN) << 8;
  148. ratio = (ratio << 8) + tmp / FIN;
  149. tmp = (tmp % FIN) << 8;
  150. ratio = (ratio << 8) + (tmp + FIN/2) / FIN;
  151. BDR = ratio;
  152. BDRI = (((XIN << 5) / symbolrate) + 1) / 2;
  153. if (BDRI > 0xFF)
  154. BDRI = 0xFF;
  155. SFIL = (SFIL << 4) | tda10021_inittab[0x0E];
  156. NDEC = (NDEC << 6) | tda10021_inittab[0x03];
  157. tda10021_writereg (state, 0x03, NDEC);
  158. tda10021_writereg (state, 0x0a, BDR&0xff);
  159. tda10021_writereg (state, 0x0b, (BDR>> 8)&0xff);
  160. tda10021_writereg (state, 0x0c, (BDR>>16)&0x3f);
  161. tda10021_writereg (state, 0x0d, BDRI);
  162. tda10021_writereg (state, 0x0e, SFIL);
  163. return 0;
  164. }
  165. static int tda10021_init (struct dvb_frontend *fe)
  166. {
  167. struct tda10021_state* state = fe->demodulator_priv;
  168. int i;
  169. dprintk("DVB: TDA10021(%d): init chip\n", fe->adapter->num);
  170. //tda10021_writereg (fe, 0, 0);
  171. for (i=0; i<tda10021_inittab_size; i++)
  172. tda10021_writereg (state, i, tda10021_inittab[i]);
  173. tda10021_writereg (state, 0x34, state->pwm);
  174. //Comment by markus
  175. //0x2A[3-0] == PDIV -> P multiplaying factor (P=PDIV+1)(default 0)
  176. //0x2A[4] == BYPPLL -> Power down mode (default 1)
  177. //0x2A[5] == LCK -> PLL Lock Flag
  178. //0x2A[6] == POLAXIN -> Polarity of the input reference clock (default 0)
  179. //Activate PLL
  180. tda10021_writereg(state, 0x2a, tda10021_inittab[0x2a] & 0xef);
  181. if (state->config->pll_init) {
  182. lock_tuner(state);
  183. state->config->pll_init(fe);
  184. unlock_tuner(state);
  185. }
  186. return 0;
  187. }
  188. static int tda10021_set_parameters (struct dvb_frontend *fe,
  189. struct dvb_frontend_parameters *p)
  190. {
  191. struct tda10021_state* state = fe->demodulator_priv;
  192. //table for QAM4-QAM256 ready QAM4 QAM16 QAM32 QAM64 QAM128 QAM256
  193. //CONF
  194. static const u8 reg0x00 [] = { 0x14, 0x00, 0x04, 0x08, 0x0c, 0x10 };
  195. //AGCREF value
  196. static const u8 reg0x01 [] = { 0x78, 0x8c, 0x8c, 0x6a, 0x78, 0x5c };
  197. //LTHR value
  198. static const u8 reg0x05 [] = { 0x78, 0x87, 0x64, 0x46, 0x36, 0x26 };
  199. //MSETH
  200. static const u8 reg0x08 [] = { 0x8c, 0xa2, 0x74, 0x43, 0x34, 0x23 };
  201. //AREF
  202. static const u8 reg0x09 [] = { 0x96, 0x91, 0x96, 0x6a, 0x7e, 0x6b };
  203. int qam = p->u.qam.modulation;
  204. if (qam < 0 || qam > 5)
  205. return -EINVAL;
  206. //printk("tda10021: set frequency to %d qam=%d symrate=%d\n", p->frequency,qam,p->u.qam.symbol_rate);
  207. lock_tuner(state);
  208. state->config->pll_set(fe, p);
  209. unlock_tuner(state);
  210. tda10021_set_symbolrate (state, p->u.qam.symbol_rate);
  211. tda10021_writereg (state, 0x34, state->pwm);
  212. tda10021_writereg (state, 0x01, reg0x01[qam]);
  213. tda10021_writereg (state, 0x05, reg0x05[qam]);
  214. tda10021_writereg (state, 0x08, reg0x08[qam]);
  215. tda10021_writereg (state, 0x09, reg0x09[qam]);
  216. tda10021_setup_reg0 (state, reg0x00[qam], p->inversion);
  217. return 0;
  218. }
  219. static int tda10021_read_status(struct dvb_frontend* fe, fe_status_t* status)
  220. {
  221. struct tda10021_state* state = fe->demodulator_priv;
  222. int sync;
  223. *status = 0;
  224. //0x11[0] == EQALGO -> Equalizer algorithms state
  225. //0x11[1] == CARLOCK -> Carrier locked
  226. //0x11[2] == FSYNC -> Frame synchronisation
  227. //0x11[3] == FEL -> Front End locked
  228. //0x11[6] == NODVB -> DVB Mode Information
  229. sync = tda10021_readreg (state, 0x11);
  230. if (sync & 2)
  231. *status |= FE_HAS_SIGNAL|FE_HAS_CARRIER;
  232. if (sync & 4)
  233. *status |= FE_HAS_SYNC|FE_HAS_VITERBI;
  234. if (sync & 8)
  235. *status |= FE_HAS_LOCK;
  236. return 0;
  237. }
  238. static int tda10021_read_ber(struct dvb_frontend* fe, u32* ber)
  239. {
  240. struct tda10021_state* state = fe->demodulator_priv;
  241. u32 _ber = tda10021_readreg(state, 0x14) |
  242. (tda10021_readreg(state, 0x15) << 8) |
  243. ((tda10021_readreg(state, 0x16) & 0x0f) << 16);
  244. *ber = 10 * _ber;
  245. return 0;
  246. }
  247. static int tda10021_read_signal_strength(struct dvb_frontend* fe, u16* strength)
  248. {
  249. struct tda10021_state* state = fe->demodulator_priv;
  250. u8 gain = tda10021_readreg(state, 0x17);
  251. *strength = (gain << 8) | gain;
  252. return 0;
  253. }
  254. static int tda10021_read_snr(struct dvb_frontend* fe, u16* snr)
  255. {
  256. struct tda10021_state* state = fe->demodulator_priv;
  257. u8 quality = ~tda10021_readreg(state, 0x18);
  258. *snr = (quality << 8) | quality;
  259. return 0;
  260. }
  261. static int tda10021_read_ucblocks(struct dvb_frontend* fe, u32* ucblocks)
  262. {
  263. struct tda10021_state* state = fe->demodulator_priv;
  264. *ucblocks = tda10021_readreg (state, 0x13) & 0x7f;
  265. if (*ucblocks == 0x7f)
  266. *ucblocks = 0xffffffff;
  267. /* reset uncorrected block counter */
  268. tda10021_writereg (state, 0x10, tda10021_inittab[0x10] & 0xdf);
  269. tda10021_writereg (state, 0x10, tda10021_inittab[0x10]);
  270. return 0;
  271. }
  272. static int tda10021_get_frontend(struct dvb_frontend* fe, struct dvb_frontend_parameters *p)
  273. {
  274. struct tda10021_state* state = fe->demodulator_priv;
  275. int sync;
  276. s8 afc = 0;
  277. sync = tda10021_readreg(state, 0x11);
  278. afc = tda10021_readreg(state, 0x19);
  279. if (verbose) {
  280. /* AFC only valid when carrier has been recovered */
  281. printk(sync & 2 ? "DVB: TDA10021(%d): AFC (%d) %dHz\n" :
  282. "DVB: TDA10021(%d): [AFC (%d) %dHz]\n",
  283. state->frontend.dvb->num, afc,
  284. -((s32)p->u.qam.symbol_rate * afc) >> 10);
  285. }
  286. p->inversion = HAS_INVERSION(state->reg0) ? INVERSION_ON : INVERSION_OFF;
  287. p->u.qam.modulation = ((state->reg0 >> 2) & 7) + QAM_16;
  288. p->u.qam.fec_inner = FEC_NONE;
  289. p->frequency = ((p->frequency + 31250) / 62500) * 62500;
  290. if (sync & 2)
  291. p->frequency -= ((s32)p->u.qam.symbol_rate * afc) >> 10;
  292. return 0;
  293. }
  294. static int tda10021_sleep(struct dvb_frontend* fe)
  295. {
  296. struct tda10021_state* state = fe->demodulator_priv;
  297. tda10021_writereg (state, 0x1b, 0x02); /* pdown ADC */
  298. tda10021_writereg (state, 0x00, 0x80); /* standby */
  299. return 0;
  300. }
  301. static void tda10021_release(struct dvb_frontend* fe)
  302. {
  303. struct tda10021_state* state = fe->demodulator_priv;
  304. kfree(state);
  305. }
  306. static struct dvb_frontend_ops tda10021_ops;
  307. struct dvb_frontend* tda10021_attach(const struct tda10021_config* config,
  308. struct i2c_adapter* i2c,
  309. u8 pwm)
  310. {
  311. struct tda10021_state* state = NULL;
  312. /* allocate memory for the internal state */
  313. state = kmalloc(sizeof(struct tda10021_state), GFP_KERNEL);
  314. if (state == NULL) goto error;
  315. /* setup the state */
  316. state->config = config;
  317. state->i2c = i2c;
  318. memcpy(&state->ops, &tda10021_ops, sizeof(struct dvb_frontend_ops));
  319. state->pwm = pwm;
  320. state->reg0 = tda10021_inittab[0];
  321. /* check if the demod is there */
  322. if ((tda10021_readreg(state, 0x1a) & 0xf0) != 0x70) goto error;
  323. /* create dvb_frontend */
  324. state->frontend.ops = &state->ops;
  325. state->frontend.demodulator_priv = state;
  326. return &state->frontend;
  327. error:
  328. kfree(state);
  329. return NULL;
  330. }
  331. static struct dvb_frontend_ops tda10021_ops = {
  332. .info = {
  333. .name = "Philips TDA10021 DVB-C",
  334. .type = FE_QAM,
  335. .frequency_stepsize = 62500,
  336. .frequency_min = 51000000,
  337. .frequency_max = 858000000,
  338. .symbol_rate_min = (XIN/2)/64, /* SACLK/64 == (XIN/2)/64 */
  339. .symbol_rate_max = (XIN/2)/4, /* SACLK/4 */
  340. #if 0
  341. .frequency_tolerance = ???,
  342. .symbol_rate_tolerance = ???, /* ppm */ /* == 8% (spec p. 5) */
  343. #endif
  344. .caps = 0x400 | //FE_CAN_QAM_4
  345. FE_CAN_QAM_16 | FE_CAN_QAM_32 | FE_CAN_QAM_64 |
  346. FE_CAN_QAM_128 | FE_CAN_QAM_256 |
  347. FE_CAN_FEC_AUTO
  348. },
  349. .release = tda10021_release,
  350. .init = tda10021_init,
  351. .sleep = tda10021_sleep,
  352. .set_frontend = tda10021_set_parameters,
  353. .get_frontend = tda10021_get_frontend,
  354. .read_status = tda10021_read_status,
  355. .read_ber = tda10021_read_ber,
  356. .read_signal_strength = tda10021_read_signal_strength,
  357. .read_snr = tda10021_read_snr,
  358. .read_ucblocks = tda10021_read_ucblocks,
  359. };
  360. module_param(verbose, int, 0644);
  361. MODULE_PARM_DESC(verbose, "print AFC offset after tuning for debugging the PWM setting");
  362. MODULE_DESCRIPTION("Philips TDA10021 DVB-C demodulator driver");
  363. MODULE_AUTHOR("Ralph Metzler, Holger Waechtler, Markus Schulz");
  364. MODULE_LICENSE("GPL");
  365. EXPORT_SYMBOL(tda10021_attach);