stv0299.c 18 KB

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