stv0299.c 18 KB

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