stv0299.c 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761
  1. /*
  2. Driver for ST STV0299 demodulator
  3. Copyright (C) 2001-2002 Convergence Integrated Media GmbH
  4. <ralph@convergence.de>,
  5. <holger@convergence.de>,
  6. <js@convergence.de>
  7. Philips SU1278/SH
  8. Copyright (C) 2002 by Peter Schildmann <peter.schildmann@web.de>
  9. LG TDQF-S001F
  10. Copyright (C) 2002 Felix Domke <tmbinc@elitedvb.net>
  11. & Andreas Oberritter <obi@linuxtv.org>
  12. Support for Samsung TBMU24112IMB used on Technisat SkyStar2 rev. 2.6B
  13. Copyright (C) 2003 Vadim Catana <skystar@moldova.cc>:
  14. Support for Philips SU1278 on Technotrend hardware
  15. Copyright (C) 2004 Andrew de Quincey <adq_dvb@lidskialf.net>
  16. This program is free software; you can redistribute it and/or modify
  17. it under the terms of the GNU General Public License as published by
  18. the Free Software Foundation; either version 2 of the License, or
  19. (at your option) any later version.
  20. This program is distributed in the hope that it will be useful,
  21. but WITHOUT ANY WARRANTY; without even the implied warranty of
  22. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  23. GNU General Public License for more details.
  24. You should have received a copy of the GNU General Public License
  25. along with this program; if not, write to the Free Software
  26. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  27. */
  28. #include <linux/init.h>
  29. #include <linux/kernel.h>
  30. #include <linux/module.h>
  31. #include <linux/string.h>
  32. #include <linux/slab.h>
  33. #include <linux/jiffies.h>
  34. #include <asm/div64.h>
  35. #include "dvb_frontend.h"
  36. #include "stv0299.h"
  37. struct stv0299_state {
  38. struct i2c_adapter* i2c;
  39. const struct stv0299_config* config;
  40. struct dvb_frontend frontend;
  41. u8 initialised:1;
  42. u32 tuner_frequency;
  43. u32 symbol_rate;
  44. fe_code_rate_t fec_inner;
  45. int errmode;
  46. u32 ucblocks;
  47. u8 mcr_reg;
  48. };
  49. #define STATUS_BER 0
  50. #define STATUS_UCBLOCKS 1
  51. static int debug;
  52. static int debug_legacy_dish_switch;
  53. #define dprintk(args...) \
  54. do { \
  55. if (debug) printk(KERN_DEBUG "stv0299: " args); \
  56. } while (0)
  57. static int stv0299_writeregI (struct stv0299_state* state, u8 reg, u8 data)
  58. {
  59. int ret;
  60. u8 buf [] = { reg, data };
  61. struct i2c_msg msg = { .addr = state->config->demod_address, .flags = 0, .buf = buf, .len = 2 };
  62. ret = i2c_transfer (state->i2c, &msg, 1);
  63. if (ret != 1)
  64. dprintk("%s: writereg error (reg == 0x%02x, val == 0x%02x, "
  65. "ret == %i)\n", __func__, reg, data, ret);
  66. return (ret != 1) ? -EREMOTEIO : 0;
  67. }
  68. static int stv0299_write(struct dvb_frontend* fe, const u8 buf[], int len)
  69. {
  70. struct stv0299_state* state = fe->demodulator_priv;
  71. if (len != 2)
  72. return -EINVAL;
  73. return stv0299_writeregI(state, buf[0], buf[1]);
  74. }
  75. static u8 stv0299_readreg (struct stv0299_state* state, u8 reg)
  76. {
  77. int ret;
  78. u8 b0 [] = { reg };
  79. u8 b1 [] = { 0 };
  80. struct i2c_msg msg [] = { { .addr = state->config->demod_address, .flags = 0, .buf = b0, .len = 1 },
  81. { .addr = state->config->demod_address, .flags = I2C_M_RD, .buf = b1, .len = 1 } };
  82. ret = i2c_transfer (state->i2c, msg, 2);
  83. if (ret != 2)
  84. dprintk("%s: readreg error (reg == 0x%02x, ret == %i)\n",
  85. __func__, reg, ret);
  86. return b1[0];
  87. }
  88. static int stv0299_readregs (struct stv0299_state* state, u8 reg1, u8 *b, u8 len)
  89. {
  90. int ret;
  91. struct i2c_msg msg [] = { { .addr = state->config->demod_address, .flags = 0, .buf = &reg1, .len = 1 },
  92. { .addr = state->config->demod_address, .flags = I2C_M_RD, .buf = b, .len = len } };
  93. ret = i2c_transfer (state->i2c, msg, 2);
  94. if (ret != 2)
  95. dprintk("%s: readreg error (ret == %i)\n", __func__, ret);
  96. return ret == 2 ? 0 : ret;
  97. }
  98. static int stv0299_set_FEC (struct stv0299_state* state, fe_code_rate_t fec)
  99. {
  100. dprintk ("%s\n", __func__);
  101. switch (fec) {
  102. case FEC_AUTO:
  103. {
  104. return stv0299_writeregI (state, 0x31, 0x1f);
  105. }
  106. case FEC_1_2:
  107. {
  108. return stv0299_writeregI (state, 0x31, 0x01);
  109. }
  110. case FEC_2_3:
  111. {
  112. return stv0299_writeregI (state, 0x31, 0x02);
  113. }
  114. case FEC_3_4:
  115. {
  116. return stv0299_writeregI (state, 0x31, 0x04);
  117. }
  118. case FEC_5_6:
  119. {
  120. return stv0299_writeregI (state, 0x31, 0x08);
  121. }
  122. case FEC_7_8:
  123. {
  124. return stv0299_writeregI (state, 0x31, 0x10);
  125. }
  126. default:
  127. {
  128. return -EINVAL;
  129. }
  130. }
  131. }
  132. static fe_code_rate_t stv0299_get_fec (struct stv0299_state* state)
  133. {
  134. static fe_code_rate_t fec_tab [] = { FEC_2_3, FEC_3_4, FEC_5_6,
  135. FEC_7_8, FEC_1_2 };
  136. u8 index;
  137. dprintk ("%s\n", __func__);
  138. index = stv0299_readreg (state, 0x1b);
  139. index &= 0x7;
  140. if (index > 4)
  141. return FEC_AUTO;
  142. return fec_tab [index];
  143. }
  144. static int stv0299_wait_diseqc_fifo (struct stv0299_state* state, int timeout)
  145. {
  146. unsigned long start = jiffies;
  147. dprintk ("%s\n", __func__);
  148. while (stv0299_readreg(state, 0x0a) & 1) {
  149. if (jiffies - start > timeout) {
  150. dprintk ("%s: timeout!!\n", __func__);
  151. return -ETIMEDOUT;
  152. }
  153. msleep(10);
  154. };
  155. return 0;
  156. }
  157. static int stv0299_wait_diseqc_idle (struct stv0299_state* state, int timeout)
  158. {
  159. unsigned long start = jiffies;
  160. dprintk ("%s\n", __func__);
  161. while ((stv0299_readreg(state, 0x0a) & 3) != 2 ) {
  162. if (jiffies - start > timeout) {
  163. dprintk ("%s: timeout!!\n", __func__);
  164. return -ETIMEDOUT;
  165. }
  166. msleep(10);
  167. };
  168. return 0;
  169. }
  170. static int stv0299_set_symbolrate (struct dvb_frontend* fe, u32 srate)
  171. {
  172. struct stv0299_state* state = fe->demodulator_priv;
  173. u64 big = srate;
  174. u32 ratio;
  175. // check rate is within limits
  176. if ((srate < 1000000) || (srate > 45000000)) return -EINVAL;
  177. // calculate value to program
  178. big = big << 20;
  179. big += (state->config->mclk-1); // round correctly
  180. do_div(big, state->config->mclk);
  181. ratio = big << 4;
  182. return state->config->set_symbol_rate(fe, srate, ratio);
  183. }
  184. static int stv0299_get_symbolrate (struct stv0299_state* state)
  185. {
  186. u32 Mclk = state->config->mclk / 4096L;
  187. u32 srate;
  188. s32 offset;
  189. u8 sfr[3];
  190. s8 rtf;
  191. dprintk ("%s\n", __func__);
  192. stv0299_readregs (state, 0x1f, sfr, 3);
  193. stv0299_readregs (state, 0x1a, (u8 *)&rtf, 1);
  194. srate = (sfr[0] << 8) | sfr[1];
  195. srate *= Mclk;
  196. srate /= 16;
  197. srate += (sfr[2] >> 4) * Mclk / 256;
  198. offset = (s32) rtf * (srate / 4096L);
  199. offset /= 128;
  200. dprintk ("%s : srate = %i\n", __func__, srate);
  201. dprintk ("%s : ofset = %i\n", __func__, offset);
  202. srate += offset;
  203. srate += 1000;
  204. srate /= 2000;
  205. srate *= 2000;
  206. return srate;
  207. }
  208. static int stv0299_send_diseqc_msg (struct dvb_frontend* fe,
  209. struct dvb_diseqc_master_cmd *m)
  210. {
  211. struct stv0299_state* state = fe->demodulator_priv;
  212. u8 val;
  213. int i;
  214. dprintk ("%s\n", __func__);
  215. if (stv0299_wait_diseqc_idle (state, 100) < 0)
  216. return -ETIMEDOUT;
  217. val = stv0299_readreg (state, 0x08);
  218. if (stv0299_writeregI (state, 0x08, (val & ~0x7) | 0x6)) /* DiSEqC mode */
  219. return -EREMOTEIO;
  220. for (i=0; i<m->msg_len; i++) {
  221. if (stv0299_wait_diseqc_fifo (state, 100) < 0)
  222. return -ETIMEDOUT;
  223. if (stv0299_writeregI (state, 0x09, m->msg[i]))
  224. return -EREMOTEIO;
  225. }
  226. if (stv0299_wait_diseqc_idle (state, 100) < 0)
  227. return -ETIMEDOUT;
  228. return 0;
  229. }
  230. static int stv0299_send_diseqc_burst (struct dvb_frontend* fe, fe_sec_mini_cmd_t burst)
  231. {
  232. struct stv0299_state* state = fe->demodulator_priv;
  233. u8 val;
  234. dprintk ("%s\n", __func__);
  235. if (stv0299_wait_diseqc_idle (state, 100) < 0)
  236. return -ETIMEDOUT;
  237. val = stv0299_readreg (state, 0x08);
  238. if (stv0299_writeregI (state, 0x08, (val & ~0x7) | 0x2)) /* burst mode */
  239. return -EREMOTEIO;
  240. if (stv0299_writeregI (state, 0x09, burst == SEC_MINI_A ? 0x00 : 0xff))
  241. return -EREMOTEIO;
  242. if (stv0299_wait_diseqc_idle (state, 100) < 0)
  243. return -ETIMEDOUT;
  244. if (stv0299_writeregI (state, 0x08, val))
  245. return -EREMOTEIO;
  246. return 0;
  247. }
  248. static int stv0299_set_tone (struct dvb_frontend* fe, fe_sec_tone_mode_t tone)
  249. {
  250. struct stv0299_state* state = fe->demodulator_priv;
  251. u8 val;
  252. if (stv0299_wait_diseqc_idle (state, 100) < 0)
  253. return -ETIMEDOUT;
  254. val = stv0299_readreg (state, 0x08);
  255. switch (tone) {
  256. case SEC_TONE_ON:
  257. return stv0299_writeregI (state, 0x08, val | 0x3);
  258. case SEC_TONE_OFF:
  259. return stv0299_writeregI (state, 0x08, (val & ~0x3) | 0x02);
  260. default:
  261. return -EINVAL;
  262. }
  263. }
  264. static int stv0299_set_voltage (struct dvb_frontend* fe, fe_sec_voltage_t voltage)
  265. {
  266. struct stv0299_state* state = fe->demodulator_priv;
  267. u8 reg0x08;
  268. u8 reg0x0c;
  269. dprintk("%s: %s\n", __func__,
  270. voltage == SEC_VOLTAGE_13 ? "SEC_VOLTAGE_13" :
  271. voltage == SEC_VOLTAGE_18 ? "SEC_VOLTAGE_18" : "??");
  272. reg0x08 = stv0299_readreg (state, 0x08);
  273. reg0x0c = stv0299_readreg (state, 0x0c);
  274. /**
  275. * H/V switching over OP0, OP1 and OP2 are LNB power enable bits
  276. */
  277. reg0x0c &= 0x0f;
  278. reg0x08 = (reg0x08 & 0x3f) | (state->config->lock_output << 6);
  279. switch (voltage) {
  280. case SEC_VOLTAGE_13:
  281. if (state->config->volt13_op0_op1 == STV0299_VOLT13_OP0)
  282. reg0x0c |= 0x10; /* OP1 off, OP0 on */
  283. else
  284. reg0x0c |= 0x40; /* OP1 on, OP0 off */
  285. break;
  286. case SEC_VOLTAGE_18:
  287. reg0x0c |= 0x50; /* OP1 on, OP0 on */
  288. break;
  289. case SEC_VOLTAGE_OFF:
  290. /* LNB power off! */
  291. reg0x08 = 0x00;
  292. reg0x0c = 0x00;
  293. break;
  294. default:
  295. return -EINVAL;
  296. };
  297. if (state->config->op0_off)
  298. reg0x0c &= ~0x10;
  299. stv0299_writeregI(state, 0x08, reg0x08);
  300. return stv0299_writeregI(state, 0x0c, reg0x0c);
  301. }
  302. static int stv0299_send_legacy_dish_cmd (struct dvb_frontend* fe, unsigned long cmd)
  303. {
  304. struct stv0299_state* state = fe->demodulator_priv;
  305. u8 reg0x08;
  306. u8 reg0x0c;
  307. u8 lv_mask = 0x40;
  308. u8 last = 1;
  309. int i;
  310. struct timeval nexttime;
  311. struct timeval tv[10];
  312. reg0x08 = stv0299_readreg (state, 0x08);
  313. reg0x0c = stv0299_readreg (state, 0x0c);
  314. reg0x0c &= 0x0f;
  315. stv0299_writeregI (state, 0x08, (reg0x08 & 0x3f) | (state->config->lock_output << 6));
  316. if (state->config->volt13_op0_op1 == STV0299_VOLT13_OP0)
  317. lv_mask = 0x10;
  318. cmd = cmd << 1;
  319. if (debug_legacy_dish_switch)
  320. printk ("%s switch command: 0x%04lx\n",__func__, cmd);
  321. do_gettimeofday (&nexttime);
  322. if (debug_legacy_dish_switch)
  323. memcpy (&tv[0], &nexttime, sizeof (struct timeval));
  324. stv0299_writeregI (state, 0x0c, reg0x0c | 0x50); /* set LNB to 18V */
  325. dvb_frontend_sleep_until(&nexttime, 32000);
  326. for (i=0; i<9; i++) {
  327. if (debug_legacy_dish_switch)
  328. do_gettimeofday (&tv[i+1]);
  329. if((cmd & 0x01) != last) {
  330. /* set voltage to (last ? 13V : 18V) */
  331. stv0299_writeregI (state, 0x0c, reg0x0c | (last ? lv_mask : 0x50));
  332. last = (last) ? 0 : 1;
  333. }
  334. cmd = cmd >> 1;
  335. if (i != 8)
  336. dvb_frontend_sleep_until(&nexttime, 8000);
  337. }
  338. if (debug_legacy_dish_switch) {
  339. printk ("%s(%d): switch delay (should be 32k followed by all 8k\n",
  340. __func__, fe->dvb->num);
  341. for (i = 1; i < 10; i++)
  342. printk ("%d: %d\n", i, timeval_usec_diff(tv[i-1] , tv[i]));
  343. }
  344. return 0;
  345. }
  346. static int stv0299_init (struct dvb_frontend* fe)
  347. {
  348. struct stv0299_state* state = fe->demodulator_priv;
  349. int i;
  350. u8 reg;
  351. u8 val;
  352. dprintk("stv0299: init chip\n");
  353. stv0299_writeregI(state, 0x02, 0x30 | state->mcr_reg);
  354. msleep(50);
  355. for (i = 0; ; i += 2) {
  356. reg = state->config->inittab[i];
  357. val = state->config->inittab[i+1];
  358. if (reg == 0xff && val == 0xff)
  359. break;
  360. if (reg == 0x0c && state->config->op0_off)
  361. val &= ~0x10;
  362. if (reg == 0x2)
  363. state->mcr_reg = val & 0xf;
  364. stv0299_writeregI(state, reg, val);
  365. }
  366. return 0;
  367. }
  368. static int stv0299_read_status(struct dvb_frontend* fe, fe_status_t* status)
  369. {
  370. struct stv0299_state* state = fe->demodulator_priv;
  371. u8 signal = 0xff - stv0299_readreg (state, 0x18);
  372. u8 sync = stv0299_readreg (state, 0x1b);
  373. dprintk ("%s : FE_READ_STATUS : VSTATUS: 0x%02x\n", __func__, sync);
  374. *status = 0;
  375. if (signal > 10)
  376. *status |= FE_HAS_SIGNAL;
  377. if (sync & 0x80)
  378. *status |= FE_HAS_CARRIER;
  379. if (sync & 0x10)
  380. *status |= FE_HAS_VITERBI;
  381. if (sync & 0x08)
  382. *status |= FE_HAS_SYNC;
  383. if ((sync & 0x98) == 0x98)
  384. *status |= FE_HAS_LOCK;
  385. return 0;
  386. }
  387. static int stv0299_read_ber(struct dvb_frontend* fe, u32* ber)
  388. {
  389. struct stv0299_state* state = fe->demodulator_priv;
  390. if (state->errmode != STATUS_BER)
  391. return -ENOSYS;
  392. *ber = stv0299_readreg(state, 0x1e) | (stv0299_readreg(state, 0x1d) << 8);
  393. return 0;
  394. }
  395. static int stv0299_read_signal_strength(struct dvb_frontend* fe, u16* strength)
  396. {
  397. struct stv0299_state* state = fe->demodulator_priv;
  398. s32 signal = 0xffff - ((stv0299_readreg (state, 0x18) << 8)
  399. | stv0299_readreg (state, 0x19));
  400. dprintk ("%s : FE_READ_SIGNAL_STRENGTH : AGC2I: 0x%02x%02x, signal=0x%04x\n", __func__,
  401. stv0299_readreg (state, 0x18),
  402. stv0299_readreg (state, 0x19), (int) signal);
  403. signal = signal * 5 / 4;
  404. *strength = (signal > 0xffff) ? 0xffff : (signal < 0) ? 0 : signal;
  405. return 0;
  406. }
  407. static int stv0299_read_snr(struct dvb_frontend* fe, u16* snr)
  408. {
  409. struct stv0299_state* state = fe->demodulator_priv;
  410. s32 xsnr = 0xffff - ((stv0299_readreg (state, 0x24) << 8)
  411. | stv0299_readreg (state, 0x25));
  412. xsnr = 3 * (xsnr - 0xa100);
  413. *snr = (xsnr > 0xffff) ? 0xffff : (xsnr < 0) ? 0 : xsnr;
  414. return 0;
  415. }
  416. static int stv0299_read_ucblocks(struct dvb_frontend* fe, u32* ucblocks)
  417. {
  418. struct stv0299_state* state = fe->demodulator_priv;
  419. if (state->errmode != STATUS_UCBLOCKS)
  420. return -ENOSYS;
  421. state->ucblocks += stv0299_readreg(state, 0x1e);
  422. state->ucblocks += (stv0299_readreg(state, 0x1d) << 8);
  423. *ucblocks = state->ucblocks;
  424. return 0;
  425. }
  426. static int stv0299_set_frontend(struct dvb_frontend* fe, struct dvb_frontend_parameters * p)
  427. {
  428. struct stv0299_state* state = fe->demodulator_priv;
  429. int invval = 0;
  430. dprintk ("%s : FE_SET_FRONTEND\n", __func__);
  431. if (state->config->set_ts_params)
  432. state->config->set_ts_params(fe, 0);
  433. // set the inversion
  434. if (p->inversion == INVERSION_OFF) invval = 0;
  435. else if (p->inversion == INVERSION_ON) invval = 1;
  436. else {
  437. printk("stv0299 does not support auto-inversion\n");
  438. return -EINVAL;
  439. }
  440. if (state->config->invert) invval = (~invval) & 1;
  441. stv0299_writeregI(state, 0x0c, (stv0299_readreg(state, 0x0c) & 0xfe) | invval);
  442. if (fe->ops.tuner_ops.set_params) {
  443. fe->ops.tuner_ops.set_params(fe, p);
  444. if (fe->ops.i2c_gate_ctrl) fe->ops.i2c_gate_ctrl(fe, 0);
  445. }
  446. stv0299_set_FEC (state, p->u.qpsk.fec_inner);
  447. stv0299_set_symbolrate (fe, p->u.qpsk.symbol_rate);
  448. stv0299_writeregI(state, 0x22, 0x00);
  449. stv0299_writeregI(state, 0x23, 0x00);
  450. state->tuner_frequency = p->frequency;
  451. state->fec_inner = p->u.qpsk.fec_inner;
  452. state->symbol_rate = p->u.qpsk.symbol_rate;
  453. return 0;
  454. }
  455. static int stv0299_get_frontend(struct dvb_frontend* fe, struct dvb_frontend_parameters * p)
  456. {
  457. struct stv0299_state* state = fe->demodulator_priv;
  458. s32 derot_freq;
  459. int invval;
  460. derot_freq = (s32)(s16) ((stv0299_readreg (state, 0x22) << 8)
  461. | stv0299_readreg (state, 0x23));
  462. derot_freq *= (state->config->mclk >> 16);
  463. derot_freq += 500;
  464. derot_freq /= 1000;
  465. p->frequency += derot_freq;
  466. invval = stv0299_readreg (state, 0x0c) & 1;
  467. if (state->config->invert) invval = (~invval) & 1;
  468. p->inversion = invval ? INVERSION_ON : INVERSION_OFF;
  469. p->u.qpsk.fec_inner = stv0299_get_fec (state);
  470. p->u.qpsk.symbol_rate = stv0299_get_symbolrate (state);
  471. return 0;
  472. }
  473. static int stv0299_sleep(struct dvb_frontend* fe)
  474. {
  475. struct stv0299_state* state = fe->demodulator_priv;
  476. stv0299_writeregI(state, 0x02, 0xb0 | state->mcr_reg);
  477. state->initialised = 0;
  478. return 0;
  479. }
  480. static int stv0299_i2c_gate_ctrl(struct dvb_frontend* fe, int enable)
  481. {
  482. struct stv0299_state* state = fe->demodulator_priv;
  483. if (enable) {
  484. stv0299_writeregI(state, 0x05, 0xb5);
  485. } else {
  486. stv0299_writeregI(state, 0x05, 0x35);
  487. }
  488. udelay(1);
  489. return 0;
  490. }
  491. static int stv0299_get_tune_settings(struct dvb_frontend* fe, struct dvb_frontend_tune_settings* fesettings)
  492. {
  493. struct stv0299_state* state = fe->demodulator_priv;
  494. fesettings->min_delay_ms = state->config->min_delay_ms;
  495. if (fesettings->parameters.u.qpsk.symbol_rate < 10000000) {
  496. fesettings->step_size = fesettings->parameters.u.qpsk.symbol_rate / 32000;
  497. fesettings->max_drift = 5000;
  498. } else {
  499. fesettings->step_size = fesettings->parameters.u.qpsk.symbol_rate / 16000;
  500. fesettings->max_drift = fesettings->parameters.u.qpsk.symbol_rate / 2000;
  501. }
  502. return 0;
  503. }
  504. static void stv0299_release(struct dvb_frontend* fe)
  505. {
  506. struct stv0299_state* state = fe->demodulator_priv;
  507. kfree(state);
  508. }
  509. static struct dvb_frontend_ops stv0299_ops;
  510. struct dvb_frontend* stv0299_attach(const struct stv0299_config* config,
  511. struct i2c_adapter* i2c)
  512. {
  513. struct stv0299_state* state = NULL;
  514. int id;
  515. /* allocate memory for the internal state */
  516. state = kzalloc(sizeof(struct stv0299_state), GFP_KERNEL);
  517. if (state == NULL) goto error;
  518. /* setup the state */
  519. state->config = config;
  520. state->i2c = i2c;
  521. state->initialised = 0;
  522. state->tuner_frequency = 0;
  523. state->symbol_rate = 0;
  524. state->fec_inner = 0;
  525. state->errmode = STATUS_BER;
  526. /* check if the demod is there */
  527. stv0299_writeregI(state, 0x02, 0x30); /* standby off */
  528. msleep(200);
  529. id = stv0299_readreg(state, 0x00);
  530. /* register 0x00 contains 0xa1 for STV0299 and STV0299B */
  531. /* register 0x00 might contain 0x80 when returning from standby */
  532. if (id != 0xa1 && id != 0x80) goto error;
  533. /* create dvb_frontend */
  534. memcpy(&state->frontend.ops, &stv0299_ops, sizeof(struct dvb_frontend_ops));
  535. state->frontend.demodulator_priv = state;
  536. return &state->frontend;
  537. error:
  538. kfree(state);
  539. return NULL;
  540. }
  541. static struct dvb_frontend_ops stv0299_ops = {
  542. .info = {
  543. .name = "ST STV0299 DVB-S",
  544. .type = FE_QPSK,
  545. .frequency_min = 950000,
  546. .frequency_max = 2150000,
  547. .frequency_stepsize = 125, /* kHz for QPSK frontends */
  548. .frequency_tolerance = 0,
  549. .symbol_rate_min = 1000000,
  550. .symbol_rate_max = 45000000,
  551. .symbol_rate_tolerance = 500, /* ppm */
  552. .caps = FE_CAN_FEC_1_2 | FE_CAN_FEC_2_3 | FE_CAN_FEC_3_4 |
  553. FE_CAN_FEC_5_6 | FE_CAN_FEC_7_8 |
  554. FE_CAN_QPSK |
  555. FE_CAN_FEC_AUTO
  556. },
  557. .release = stv0299_release,
  558. .init = stv0299_init,
  559. .sleep = stv0299_sleep,
  560. .write = stv0299_write,
  561. .i2c_gate_ctrl = stv0299_i2c_gate_ctrl,
  562. .set_frontend = stv0299_set_frontend,
  563. .get_frontend = stv0299_get_frontend,
  564. .get_tune_settings = stv0299_get_tune_settings,
  565. .read_status = stv0299_read_status,
  566. .read_ber = stv0299_read_ber,
  567. .read_signal_strength = stv0299_read_signal_strength,
  568. .read_snr = stv0299_read_snr,
  569. .read_ucblocks = stv0299_read_ucblocks,
  570. .diseqc_send_master_cmd = stv0299_send_diseqc_msg,
  571. .diseqc_send_burst = stv0299_send_diseqc_burst,
  572. .set_tone = stv0299_set_tone,
  573. .set_voltage = stv0299_set_voltage,
  574. .dishnetwork_send_legacy_command = stv0299_send_legacy_dish_cmd,
  575. };
  576. module_param(debug_legacy_dish_switch, int, 0444);
  577. MODULE_PARM_DESC(debug_legacy_dish_switch, "Enable timing analysis for Dish Network legacy switches");
  578. module_param(debug, int, 0644);
  579. MODULE_PARM_DESC(debug, "Turn on/off frontend debugging (default:off).");
  580. MODULE_DESCRIPTION("ST STV0299 DVB Demodulator driver");
  581. MODULE_AUTHOR("Ralph Metzler, Holger Waechtler, Peter Schildmann, Felix Domke, "
  582. "Andreas Oberritter, Andrew de Quincey, Kenneth Aafly");
  583. MODULE_LICENSE("GPL");
  584. EXPORT_SYMBOL(stv0299_attach);