tda10021.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481
  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/delay.h>
  20. #include <linux/errno.h>
  21. #include <linux/init.h>
  22. #include <linux/kernel.h>
  23. #include <linux/module.h>
  24. #include <linux/string.h>
  25. #include <linux/slab.h>
  26. #include "dvb_frontend.h"
  27. #include "tda10021.h"
  28. struct tda10021_state {
  29. struct i2c_adapter* i2c;
  30. /* configuration settings */
  31. const struct tda10021_config* config;
  32. struct dvb_frontend frontend;
  33. u8 pwm;
  34. u8 reg0;
  35. };
  36. #if 0
  37. #define dprintk(x...) printk(x)
  38. #else
  39. #define dprintk(x...)
  40. #endif
  41. static int verbose;
  42. #define XIN 57840000UL
  43. #define DISABLE_INVERSION(reg0) do { reg0 |= 0x20; } while (0)
  44. #define ENABLE_INVERSION(reg0) do { reg0 &= ~0x20; } while (0)
  45. #define HAS_INVERSION(reg0) (!(reg0 & 0x20))
  46. #define FIN (XIN >> 4)
  47. static int tda10021_inittab_size = 0x40;
  48. static u8 tda10021_inittab[0x40]=
  49. {
  50. 0x73, 0x6a, 0x23, 0x0a, 0x02, 0x37, 0x77, 0x1a,
  51. 0x37, 0x6a, 0x17, 0x8a, 0x1e, 0x86, 0x43, 0x40,
  52. 0xb8, 0x3f, 0xa0, 0x00, 0xcd, 0x01, 0x00, 0xff,
  53. 0x11, 0x00, 0x7c, 0x31, 0x30, 0x20, 0x00, 0x00,
  54. 0x02, 0x00, 0x00, 0x7d, 0x00, 0x00, 0x00, 0x00,
  55. 0x07, 0x00, 0x33, 0x11, 0x0d, 0x95, 0x08, 0x58,
  56. 0x00, 0x00, 0x80, 0x00, 0x80, 0xff, 0x00, 0x00,
  57. 0x04, 0x2d, 0x2f, 0xff, 0x00, 0x00, 0x00, 0x00,
  58. };
  59. static int tda10021_writereg (struct tda10021_state* state, u8 reg, u8 data)
  60. {
  61. u8 buf[] = { reg, data };
  62. struct i2c_msg msg = { .addr = state->config->demod_address, .flags = 0, .buf = buf, .len = 2 };
  63. int ret;
  64. ret = i2c_transfer (state->i2c, &msg, 1);
  65. if (ret != 1)
  66. printk("DVB: TDA10021(%d): %s, writereg error "
  67. "(reg == 0x%02x, val == 0x%02x, ret == %i)\n",
  68. state->frontend.dvb->num, __FUNCTION__, reg, data, ret);
  69. msleep(10);
  70. return (ret != 1) ? -EREMOTEIO : 0;
  71. }
  72. int tda10021_write_byte(struct dvb_frontend* fe, int reg, int data)
  73. {
  74. struct tda10021_state* state = fe->demodulator_priv;
  75. return tda10021_writereg(state, reg, data);
  76. }
  77. EXPORT_SYMBOL(tda10021_write_byte);
  78. static u8 tda10021_readreg (struct tda10021_state* state, u8 reg)
  79. {
  80. u8 b0 [] = { reg };
  81. u8 b1 [] = { 0 };
  82. struct i2c_msg msg [] = { { .addr = state->config->demod_address, .flags = 0, .buf = b0, .len = 1 },
  83. { .addr = state->config->demod_address, .flags = I2C_M_RD, .buf = b1, .len = 1 } };
  84. int ret;
  85. ret = i2c_transfer (state->i2c, msg, 2);
  86. if (ret != 2)
  87. printk("DVB: TDA10021: %s: readreg error (ret == %i)\n",
  88. __FUNCTION__, ret);
  89. return b1[0];
  90. }
  91. //get access to tuner
  92. static int lock_tuner(struct tda10021_state* state)
  93. {
  94. u8 buf[2] = { 0x0f, tda10021_inittab[0x0f] | 0x80 };
  95. struct i2c_msg msg = {.addr=state->config->demod_address, .flags=0, .buf=buf, .len=2};
  96. if(i2c_transfer(state->i2c, &msg, 1) != 1)
  97. {
  98. printk("tda10021: lock tuner fails\n");
  99. return -EREMOTEIO;
  100. }
  101. return 0;
  102. }
  103. //release access from tuner
  104. static int unlock_tuner(struct tda10021_state* state)
  105. {
  106. u8 buf[2] = { 0x0f, tda10021_inittab[0x0f] & 0x7f };
  107. struct i2c_msg msg_post={.addr=state->config->demod_address, .flags=0, .buf=buf, .len=2};
  108. if(i2c_transfer(state->i2c, &msg_post, 1) != 1)
  109. {
  110. printk("tda10021: unlock tuner fails\n");
  111. return -EREMOTEIO;
  112. }
  113. return 0;
  114. }
  115. static int tda10021_setup_reg0 (struct tda10021_state* state, u8 reg0,
  116. fe_spectral_inversion_t inversion)
  117. {
  118. reg0 |= state->reg0 & 0x63;
  119. if (INVERSION_ON == inversion)
  120. ENABLE_INVERSION(reg0);
  121. else if (INVERSION_OFF == inversion)
  122. DISABLE_INVERSION(reg0);
  123. tda10021_writereg (state, 0x00, reg0 & 0xfe);
  124. tda10021_writereg (state, 0x00, reg0 | 0x01);
  125. state->reg0 = reg0;
  126. return 0;
  127. }
  128. static int tda10021_set_symbolrate (struct tda10021_state* state, u32 symbolrate)
  129. {
  130. s32 BDR;
  131. s32 BDRI;
  132. s16 SFIL=0;
  133. u16 NDEC = 0;
  134. u32 tmp, ratio;
  135. if (symbolrate > XIN/2)
  136. symbolrate = XIN/2;
  137. if (symbolrate < 500000)
  138. symbolrate = 500000;
  139. if (symbolrate < XIN/16) NDEC = 1;
  140. if (symbolrate < XIN/32) NDEC = 2;
  141. if (symbolrate < XIN/64) NDEC = 3;
  142. if (symbolrate < (u32)(XIN/12.3)) SFIL = 1;
  143. if (symbolrate < (u32)(XIN/16)) SFIL = 0;
  144. if (symbolrate < (u32)(XIN/24.6)) SFIL = 1;
  145. if (symbolrate < (u32)(XIN/32)) SFIL = 0;
  146. if (symbolrate < (u32)(XIN/49.2)) SFIL = 1;
  147. if (symbolrate < (u32)(XIN/64)) SFIL = 0;
  148. if (symbolrate < (u32)(XIN/98.4)) SFIL = 1;
  149. symbolrate <<= NDEC;
  150. ratio = (symbolrate << 4) / FIN;
  151. tmp = ((symbolrate << 4) % FIN) << 8;
  152. ratio = (ratio << 8) + tmp / FIN;
  153. tmp = (tmp % FIN) << 8;
  154. ratio = (ratio << 8) + (tmp + FIN/2) / FIN;
  155. BDR = ratio;
  156. BDRI = (((XIN << 5) / symbolrate) + 1) / 2;
  157. if (BDRI > 0xFF)
  158. BDRI = 0xFF;
  159. SFIL = (SFIL << 4) | tda10021_inittab[0x0E];
  160. NDEC = (NDEC << 6) | tda10021_inittab[0x03];
  161. tda10021_writereg (state, 0x03, NDEC);
  162. tda10021_writereg (state, 0x0a, BDR&0xff);
  163. tda10021_writereg (state, 0x0b, (BDR>> 8)&0xff);
  164. tda10021_writereg (state, 0x0c, (BDR>>16)&0x3f);
  165. tda10021_writereg (state, 0x0d, BDRI);
  166. tda10021_writereg (state, 0x0e, SFIL);
  167. return 0;
  168. }
  169. static int tda10021_init (struct dvb_frontend *fe)
  170. {
  171. struct tda10021_state* state = fe->demodulator_priv;
  172. int i;
  173. dprintk("DVB: TDA10021(%d): init chip\n", fe->adapter->num);
  174. //tda10021_writereg (fe, 0, 0);
  175. for (i=0; i<tda10021_inittab_size; i++)
  176. tda10021_writereg (state, i, tda10021_inittab[i]);
  177. tda10021_writereg (state, 0x34, state->pwm);
  178. //Comment by markus
  179. //0x2A[3-0] == PDIV -> P multiplaying factor (P=PDIV+1)(default 0)
  180. //0x2A[4] == BYPPLL -> Power down mode (default 1)
  181. //0x2A[5] == LCK -> PLL Lock Flag
  182. //0x2A[6] == POLAXIN -> Polarity of the input reference clock (default 0)
  183. //Activate PLL
  184. tda10021_writereg(state, 0x2a, tda10021_inittab[0x2a] & 0xef);
  185. return 0;
  186. }
  187. static int tda10021_set_parameters (struct dvb_frontend *fe,
  188. struct dvb_frontend_parameters *p)
  189. {
  190. struct tda10021_state* state = fe->demodulator_priv;
  191. //table for QAM4-QAM256 ready QAM4 QAM16 QAM32 QAM64 QAM128 QAM256
  192. //CONF
  193. static const u8 reg0x00 [] = { 0x14, 0x00, 0x04, 0x08, 0x0c, 0x10 };
  194. //AGCREF value
  195. static const u8 reg0x01 [] = { 0x78, 0x8c, 0x8c, 0x6a, 0x78, 0x5c };
  196. //LTHR value
  197. static const u8 reg0x05 [] = { 0x78, 0x87, 0x64, 0x46, 0x36, 0x26 };
  198. //MSETH
  199. static const u8 reg0x08 [] = { 0x8c, 0xa2, 0x74, 0x43, 0x34, 0x23 };
  200. //AREF
  201. static const u8 reg0x09 [] = { 0x96, 0x91, 0x96, 0x6a, 0x7e, 0x6b };
  202. int qam = p->u.qam.modulation;
  203. if (qam < 0 || qam > 5)
  204. return -EINVAL;
  205. //printk("tda10021: set frequency to %d qam=%d symrate=%d\n", p->frequency,qam,p->u.qam.symbol_rate);
  206. if (fe->ops.tuner_ops.set_params) {
  207. fe->ops.tuner_ops.set_params(fe, p);
  208. if (fe->ops.i2c_gate_ctrl) fe->ops.i2c_gate_ctrl(fe, 0);
  209. }
  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_i2c_gate_ctrl(struct dvb_frontend* fe, int enable)
  295. {
  296. struct tda10021_state* state = fe->demodulator_priv;
  297. if (enable) {
  298. lock_tuner(state);
  299. } else {
  300. unlock_tuner(state);
  301. }
  302. return 0;
  303. }
  304. static int tda10021_sleep(struct dvb_frontend* fe)
  305. {
  306. struct tda10021_state* state = fe->demodulator_priv;
  307. tda10021_writereg (state, 0x1b, 0x02); /* pdown ADC */
  308. tda10021_writereg (state, 0x00, 0x80); /* standby */
  309. return 0;
  310. }
  311. static void tda10021_release(struct dvb_frontend* fe)
  312. {
  313. struct tda10021_state* state = fe->demodulator_priv;
  314. kfree(state);
  315. }
  316. static struct dvb_frontend_ops tda10021_ops;
  317. struct dvb_frontend* tda10021_attach(const struct tda10021_config* config,
  318. struct i2c_adapter* i2c,
  319. u8 pwm)
  320. {
  321. struct tda10021_state* state = NULL;
  322. /* allocate memory for the internal state */
  323. state = kmalloc(sizeof(struct tda10021_state), GFP_KERNEL);
  324. if (state == NULL) goto error;
  325. /* setup the state */
  326. state->config = config;
  327. state->i2c = i2c;
  328. state->pwm = pwm;
  329. state->reg0 = tda10021_inittab[0];
  330. /* check if the demod is there */
  331. if ((tda10021_readreg(state, 0x1a) & 0xf0) != 0x70) goto error;
  332. /* create dvb_frontend */
  333. memcpy(&state->frontend.ops, &tda10021_ops, sizeof(struct dvb_frontend_ops));
  334. state->frontend.demodulator_priv = state;
  335. return &state->frontend;
  336. error:
  337. kfree(state);
  338. return NULL;
  339. }
  340. static struct dvb_frontend_ops tda10021_ops = {
  341. .info = {
  342. .name = "Philips TDA10021 DVB-C",
  343. .type = FE_QAM,
  344. .frequency_stepsize = 62500,
  345. .frequency_min = 51000000,
  346. .frequency_max = 858000000,
  347. .symbol_rate_min = (XIN/2)/64, /* SACLK/64 == (XIN/2)/64 */
  348. .symbol_rate_max = (XIN/2)/4, /* SACLK/4 */
  349. #if 0
  350. .frequency_tolerance = ???,
  351. .symbol_rate_tolerance = ???, /* ppm */ /* == 8% (spec p. 5) */
  352. #endif
  353. .caps = 0x400 | //FE_CAN_QAM_4
  354. FE_CAN_QAM_16 | FE_CAN_QAM_32 | FE_CAN_QAM_64 |
  355. FE_CAN_QAM_128 | FE_CAN_QAM_256 |
  356. FE_CAN_FEC_AUTO
  357. },
  358. .release = tda10021_release,
  359. .init = tda10021_init,
  360. .sleep = tda10021_sleep,
  361. .i2c_gate_ctrl = tda10021_i2c_gate_ctrl,
  362. .set_frontend = tda10021_set_parameters,
  363. .get_frontend = tda10021_get_frontend,
  364. .read_status = tda10021_read_status,
  365. .read_ber = tda10021_read_ber,
  366. .read_signal_strength = tda10021_read_signal_strength,
  367. .read_snr = tda10021_read_snr,
  368. .read_ucblocks = tda10021_read_ucblocks,
  369. };
  370. module_param(verbose, int, 0644);
  371. MODULE_PARM_DESC(verbose, "print AFC offset after tuning for debugging the PWM setting");
  372. MODULE_DESCRIPTION("Philips TDA10021 DVB-C demodulator driver");
  373. MODULE_AUTHOR("Ralph Metzler, Holger Waechtler, Markus Schulz");
  374. MODULE_LICENSE("GPL");
  375. EXPORT_SYMBOL(tda10021_attach);