arm64: futex: Avoid copying out uninitialised stack in failed cmpxchg()
[linux/fpc-iii.git] / drivers / media / dvb-frontends / si21xx.c
blob8546a236d4521f34be068999e068521c12b901c8
1 /* DVB compliant Linux driver for the DVB-S si2109/2110 demodulator
3 * Copyright (C) 2008 Igor M. Liplianin (liplianin@me.by)
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
11 #include <linux/init.h>
12 #include <linux/kernel.h>
13 #include <linux/module.h>
14 #include <linux/string.h>
15 #include <linux/slab.h>
16 #include <linux/jiffies.h>
17 #include <asm/div64.h>
19 #include <media/dvb_frontend.h>
20 #include "si21xx.h"
22 #define REVISION_REG 0x00
23 #define SYSTEM_MODE_REG 0x01
24 #define TS_CTRL_REG_1 0x02
25 #define TS_CTRL_REG_2 0x03
26 #define PIN_CTRL_REG_1 0x04
27 #define PIN_CTRL_REG_2 0x05
28 #define LOCK_STATUS_REG_1 0x0f
29 #define LOCK_STATUS_REG_2 0x10
30 #define ACQ_STATUS_REG 0x11
31 #define ACQ_CTRL_REG_1 0x13
32 #define ACQ_CTRL_REG_2 0x14
33 #define PLL_DIVISOR_REG 0x15
34 #define COARSE_TUNE_REG 0x16
35 #define FINE_TUNE_REG_L 0x17
36 #define FINE_TUNE_REG_H 0x18
38 #define ANALOG_AGC_POWER_LEVEL_REG 0x28
39 #define CFO_ESTIMATOR_CTRL_REG_1 0x29
40 #define CFO_ESTIMATOR_CTRL_REG_2 0x2a
41 #define CFO_ESTIMATOR_CTRL_REG_3 0x2b
43 #define SYM_RATE_ESTIMATE_REG_L 0x31
44 #define SYM_RATE_ESTIMATE_REG_M 0x32
45 #define SYM_RATE_ESTIMATE_REG_H 0x33
47 #define CFO_ESTIMATOR_OFFSET_REG_L 0x36
48 #define CFO_ESTIMATOR_OFFSET_REG_H 0x37
49 #define CFO_ERROR_REG_L 0x38
50 #define CFO_ERROR_REG_H 0x39
51 #define SYM_RATE_ESTIMATOR_CTRL_REG 0x3a
53 #define SYM_RATE_REG_L 0x3f
54 #define SYM_RATE_REG_M 0x40
55 #define SYM_RATE_REG_H 0x41
56 #define SYM_RATE_ESTIMATOR_MAXIMUM_REG 0x42
57 #define SYM_RATE_ESTIMATOR_MINIMUM_REG 0x43
59 #define C_N_ESTIMATOR_CTRL_REG 0x7c
60 #define C_N_ESTIMATOR_THRSHLD_REG 0x7d
61 #define C_N_ESTIMATOR_LEVEL_REG_L 0x7e
62 #define C_N_ESTIMATOR_LEVEL_REG_H 0x7f
64 #define BLIND_SCAN_CTRL_REG 0x80
66 #define LSA_CTRL_REG_1 0x8D
67 #define SPCTRM_TILT_CORR_THRSHLD_REG 0x8f
68 #define ONE_DB_BNDWDTH_THRSHLD_REG 0x90
69 #define TWO_DB_BNDWDTH_THRSHLD_REG 0x91
70 #define THREE_DB_BNDWDTH_THRSHLD_REG 0x92
71 #define INBAND_POWER_THRSHLD_REG 0x93
72 #define REF_NOISE_LVL_MRGN_THRSHLD_REG 0x94
74 #define VIT_SRCH_CTRL_REG_1 0xa0
75 #define VIT_SRCH_CTRL_REG_2 0xa1
76 #define VIT_SRCH_CTRL_REG_3 0xa2
77 #define VIT_SRCH_STATUS_REG 0xa3
78 #define VITERBI_BER_COUNT_REG_L 0xab
79 #define REED_SOLOMON_CTRL_REG 0xb0
80 #define REED_SOLOMON_ERROR_COUNT_REG_L 0xb1
81 #define PRBS_CTRL_REG 0xb5
83 #define LNB_CTRL_REG_1 0xc0
84 #define LNB_CTRL_REG_2 0xc1
85 #define LNB_CTRL_REG_3 0xc2
86 #define LNB_CTRL_REG_4 0xc3
87 #define LNB_CTRL_STATUS_REG 0xc4
88 #define LNB_FIFO_REGS_0 0xc5
89 #define LNB_FIFO_REGS_1 0xc6
90 #define LNB_FIFO_REGS_2 0xc7
91 #define LNB_FIFO_REGS_3 0xc8
92 #define LNB_FIFO_REGS_4 0xc9
93 #define LNB_FIFO_REGS_5 0xca
94 #define LNB_SUPPLY_CTRL_REG_1 0xcb
95 #define LNB_SUPPLY_CTRL_REG_2 0xcc
96 #define LNB_SUPPLY_CTRL_REG_3 0xcd
97 #define LNB_SUPPLY_CTRL_REG_4 0xce
98 #define LNB_SUPPLY_STATUS_REG 0xcf
100 #define FAIL -1
101 #define PASS 0
103 #define ALLOWABLE_FS_COUNT 10
104 #define STATUS_BER 0
105 #define STATUS_UCBLOCKS 1
107 static int debug;
108 #define dprintk(args...) \
109 do { \
110 if (debug) \
111 printk(KERN_DEBUG "si21xx: " args); \
112 } while (0)
114 enum {
115 ACTIVE_HIGH,
116 ACTIVE_LOW
118 enum {
119 BYTE_WIDE,
120 BIT_WIDE
122 enum {
123 CLK_GAPPED_MODE,
124 CLK_CONTINUOUS_MODE
126 enum {
127 RISING_EDGE,
128 FALLING_EDGE
130 enum {
131 MSB_FIRST,
132 LSB_FIRST
134 enum {
135 SERIAL,
136 PARALLEL
139 struct si21xx_state {
140 struct i2c_adapter *i2c;
141 const struct si21xx_config *config;
142 struct dvb_frontend frontend;
143 u8 initialised:1;
144 int errmode;
145 int fs; /*Sampling rate of the ADC in MHz*/
148 /* register default initialization */
149 static u8 serit_sp1511lhb_inittab[] = {
150 0x01, 0x28, /* set i2c_inc_disable */
151 0x20, 0x03,
152 0x27, 0x20,
153 0xe0, 0x45,
154 0xe1, 0x08,
155 0xfe, 0x01,
156 0x01, 0x28,
157 0x89, 0x09,
158 0x04, 0x80,
159 0x05, 0x01,
160 0x06, 0x00,
161 0x20, 0x03,
162 0x24, 0x88,
163 0x29, 0x09,
164 0x2a, 0x0f,
165 0x2c, 0x10,
166 0x2d, 0x19,
167 0x2e, 0x08,
168 0x2f, 0x10,
169 0x30, 0x19,
170 0x34, 0x20,
171 0x35, 0x03,
172 0x45, 0x02,
173 0x46, 0x45,
174 0x47, 0xd0,
175 0x48, 0x00,
176 0x49, 0x40,
177 0x4a, 0x03,
178 0x4c, 0xfd,
179 0x4f, 0x2e,
180 0x50, 0x2e,
181 0x51, 0x10,
182 0x52, 0x10,
183 0x56, 0x92,
184 0x59, 0x00,
185 0x5a, 0x2d,
186 0x5b, 0x33,
187 0x5c, 0x1f,
188 0x5f, 0x76,
189 0x62, 0xc0,
190 0x63, 0xc0,
191 0x64, 0xf3,
192 0x65, 0xf3,
193 0x79, 0x40,
194 0x6a, 0x40,
195 0x6b, 0x0a,
196 0x6c, 0x80,
197 0x6d, 0x27,
198 0x71, 0x06,
199 0x75, 0x60,
200 0x78, 0x00,
201 0x79, 0xb5,
202 0x7c, 0x05,
203 0x7d, 0x1a,
204 0x87, 0x55,
205 0x88, 0x72,
206 0x8f, 0x08,
207 0x90, 0xe0,
208 0x94, 0x40,
209 0xa0, 0x3f,
210 0xa1, 0xc0,
211 0xa4, 0xcc,
212 0xa5, 0x66,
213 0xa6, 0x66,
214 0xa7, 0x7b,
215 0xa8, 0x7b,
216 0xa9, 0x7b,
217 0xaa, 0x9a,
218 0xed, 0x04,
219 0xad, 0x00,
220 0xae, 0x03,
221 0xcc, 0xab,
222 0x01, 0x08,
223 0xff, 0xff
226 /* low level read/writes */
227 static int si21_writeregs(struct si21xx_state *state, u8 reg1,
228 u8 *data, int len)
230 int ret;
231 u8 buf[60];/* = { reg1, data };*/
232 struct i2c_msg msg = {
233 .addr = state->config->demod_address,
234 .flags = 0,
235 .buf = buf,
236 .len = len + 1
239 if (len > sizeof(buf) - 1)
240 return -EINVAL;
242 msg.buf[0] = reg1;
243 memcpy(msg.buf + 1, data, len);
245 ret = i2c_transfer(state->i2c, &msg, 1);
247 if (ret != 1)
248 dprintk("%s: writereg error (reg1 == 0x%02x, data == 0x%02x, ret == %i)\n",
249 __func__, reg1, data[0], ret);
251 return (ret != 1) ? -EREMOTEIO : 0;
254 static int si21_writereg(struct si21xx_state *state, u8 reg, u8 data)
256 int ret;
257 u8 buf[] = { reg, data };
258 struct i2c_msg msg = {
259 .addr = state->config->demod_address,
260 .flags = 0,
261 .buf = buf,
262 .len = 2
265 ret = i2c_transfer(state->i2c, &msg, 1);
267 if (ret != 1)
268 dprintk("%s: writereg error (reg == 0x%02x, data == 0x%02x, ret == %i)\n",
269 __func__, reg, data, ret);
271 return (ret != 1) ? -EREMOTEIO : 0;
274 static int si21_write(struct dvb_frontend *fe, const u8 buf[], int len)
276 struct si21xx_state *state = fe->demodulator_priv;
278 if (len != 2)
279 return -EINVAL;
281 return si21_writereg(state, buf[0], buf[1]);
284 static u8 si21_readreg(struct si21xx_state *state, u8 reg)
286 int ret;
287 u8 b0[] = { reg };
288 u8 b1[] = { 0 };
289 struct i2c_msg msg[] = {
291 .addr = state->config->demod_address,
292 .flags = 0,
293 .buf = b0,
294 .len = 1
295 }, {
296 .addr = state->config->demod_address,
297 .flags = I2C_M_RD,
298 .buf = b1,
299 .len = 1
303 ret = i2c_transfer(state->i2c, msg, 2);
305 if (ret != 2)
306 dprintk("%s: readreg error (reg == 0x%02x, ret == %i)\n",
307 __func__, reg, ret);
309 return b1[0];
312 static int si21_readregs(struct si21xx_state *state, u8 reg1, u8 *b, u8 len)
314 int ret;
315 struct i2c_msg msg[] = {
317 .addr = state->config->demod_address,
318 .flags = 0,
319 .buf = &reg1,
320 .len = 1
321 }, {
322 .addr = state->config->demod_address,
323 .flags = I2C_M_RD,
324 .buf = b,
325 .len = len
329 ret = i2c_transfer(state->i2c, msg, 2);
331 if (ret != 2)
332 dprintk("%s: readreg error (ret == %i)\n", __func__, ret);
334 return ret == 2 ? 0 : -1;
337 static int si21xx_wait_diseqc_idle(struct si21xx_state *state, int timeout)
339 unsigned long start = jiffies;
341 dprintk("%s\n", __func__);
343 while ((si21_readreg(state, LNB_CTRL_REG_1) & 0x8) == 8) {
344 if (jiffies - start > timeout) {
345 dprintk("%s: timeout!!\n", __func__);
346 return -ETIMEDOUT;
348 msleep(10);
351 return 0;
354 static int si21xx_set_symbolrate(struct dvb_frontend *fe, u32 srate)
356 struct si21xx_state *state = fe->demodulator_priv;
357 u32 sym_rate, data_rate;
358 int i;
359 u8 sym_rate_bytes[3];
361 dprintk("%s : srate = %i\n", __func__ , srate);
363 if ((srate < 1000000) || (srate > 45000000))
364 return -EINVAL;
366 data_rate = srate;
367 sym_rate = 0;
369 for (i = 0; i < 4; ++i) {
370 sym_rate /= 100;
371 sym_rate = sym_rate + ((data_rate % 100) * 0x800000) /
372 state->fs;
373 data_rate /= 100;
375 for (i = 0; i < 3; ++i)
376 sym_rate_bytes[i] = (u8)((sym_rate >> (i * 8)) & 0xff);
378 si21_writeregs(state, SYM_RATE_REG_L, sym_rate_bytes, 0x03);
380 return 0;
383 static int si21xx_send_diseqc_msg(struct dvb_frontend *fe,
384 struct dvb_diseqc_master_cmd *m)
386 struct si21xx_state *state = fe->demodulator_priv;
387 u8 lnb_status;
388 u8 LNB_CTRL_1;
389 int status;
391 dprintk("%s\n", __func__);
393 status = PASS;
394 LNB_CTRL_1 = 0;
396 status |= si21_readregs(state, LNB_CTRL_STATUS_REG, &lnb_status, 0x01);
397 status |= si21_readregs(state, LNB_CTRL_REG_1, &lnb_status, 0x01);
399 /*fill the FIFO*/
400 status |= si21_writeregs(state, LNB_FIFO_REGS_0, m->msg, m->msg_len);
402 LNB_CTRL_1 = (lnb_status & 0x70);
403 LNB_CTRL_1 |= m->msg_len;
405 LNB_CTRL_1 |= 0x80; /* begin LNB signaling */
407 status |= si21_writeregs(state, LNB_CTRL_REG_1, &LNB_CTRL_1, 0x01);
409 return status;
412 static int si21xx_send_diseqc_burst(struct dvb_frontend *fe,
413 enum fe_sec_mini_cmd burst)
415 struct si21xx_state *state = fe->demodulator_priv;
416 u8 val;
418 dprintk("%s\n", __func__);
420 if (si21xx_wait_diseqc_idle(state, 100) < 0)
421 return -ETIMEDOUT;
423 val = (0x80 | si21_readreg(state, 0xc1));
424 if (si21_writereg(state, LNB_CTRL_REG_1,
425 burst == SEC_MINI_A ? (val & ~0x10) : (val | 0x10)))
426 return -EREMOTEIO;
428 if (si21xx_wait_diseqc_idle(state, 100) < 0)
429 return -ETIMEDOUT;
431 if (si21_writereg(state, LNB_CTRL_REG_1, val))
432 return -EREMOTEIO;
434 return 0;
436 /* 30.06.2008 */
437 static int si21xx_set_tone(struct dvb_frontend *fe, enum fe_sec_tone_mode tone)
439 struct si21xx_state *state = fe->demodulator_priv;
440 u8 val;
442 dprintk("%s\n", __func__);
443 val = (0x80 | si21_readreg(state, LNB_CTRL_REG_1));
445 switch (tone) {
446 case SEC_TONE_ON:
447 return si21_writereg(state, LNB_CTRL_REG_1, val | 0x20);
449 case SEC_TONE_OFF:
450 return si21_writereg(state, LNB_CTRL_REG_1, (val & ~0x20));
452 default:
453 return -EINVAL;
457 static int si21xx_set_voltage(struct dvb_frontend *fe, enum fe_sec_voltage volt)
459 struct si21xx_state *state = fe->demodulator_priv;
461 u8 val;
462 dprintk("%s: %s\n", __func__,
463 volt == SEC_VOLTAGE_13 ? "SEC_VOLTAGE_13" :
464 volt == SEC_VOLTAGE_18 ? "SEC_VOLTAGE_18" : "??");
467 val = (0x80 | si21_readreg(state, LNB_CTRL_REG_1));
469 switch (volt) {
470 case SEC_VOLTAGE_18:
471 return si21_writereg(state, LNB_CTRL_REG_1, val | 0x40);
472 break;
473 case SEC_VOLTAGE_13:
474 return si21_writereg(state, LNB_CTRL_REG_1, (val & ~0x40));
475 break;
476 default:
477 return -EINVAL;
481 static int si21xx_init(struct dvb_frontend *fe)
483 struct si21xx_state *state = fe->demodulator_priv;
484 int i;
485 int status = 0;
486 u8 reg1;
487 u8 val;
488 u8 reg2[2];
490 dprintk("%s\n", __func__);
492 for (i = 0; ; i += 2) {
493 reg1 = serit_sp1511lhb_inittab[i];
494 val = serit_sp1511lhb_inittab[i+1];
495 if (reg1 == 0xff && val == 0xff)
496 break;
497 si21_writeregs(state, reg1, &val, 1);
500 /*DVB QPSK SYSTEM MODE REG*/
501 reg1 = 0x08;
502 si21_writeregs(state, SYSTEM_MODE_REG, &reg1, 0x01);
504 /*transport stream config*/
506 mode = PARALLEL;
507 sdata_form = LSB_FIRST;
508 clk_edge = FALLING_EDGE;
509 clk_mode = CLK_GAPPED_MODE;
510 strt_len = BYTE_WIDE;
511 sync_pol = ACTIVE_HIGH;
512 val_pol = ACTIVE_HIGH;
513 err_pol = ACTIVE_HIGH;
514 sclk_rate = 0x00;
515 parity = 0x00 ;
516 data_delay = 0x00;
517 clk_delay = 0x00;
518 pclk_smooth = 0x00;
520 reg2[0] =
521 PARALLEL + (LSB_FIRST << 1)
522 + (FALLING_EDGE << 2) + (CLK_GAPPED_MODE << 3)
523 + (BYTE_WIDE << 4) + (ACTIVE_HIGH << 5)
524 + (ACTIVE_HIGH << 6) + (ACTIVE_HIGH << 7);
526 reg2[1] = 0;
527 /* sclk_rate + (parity << 2)
528 + (data_delay << 3) + (clk_delay << 4)
529 + (pclk_smooth << 5);
531 status |= si21_writeregs(state, TS_CTRL_REG_1, reg2, 0x02);
532 if (status != 0)
533 dprintk(" %s : TS Set Error\n", __func__);
535 return 0;
539 static int si21_read_status(struct dvb_frontend *fe, enum fe_status *status)
541 struct si21xx_state *state = fe->demodulator_priv;
542 u8 regs_read[2];
543 u8 reg_read;
544 u8 i;
545 u8 lock;
546 u8 signal = si21_readreg(state, ANALOG_AGC_POWER_LEVEL_REG);
548 si21_readregs(state, LOCK_STATUS_REG_1, regs_read, 0x02);
549 reg_read = 0;
551 for (i = 0; i < 7; ++i)
552 reg_read |= ((regs_read[0] >> i) & 0x01) << (6 - i);
554 lock = ((reg_read & 0x7f) | (regs_read[1] & 0x80));
556 dprintk("%s : FE_READ_STATUS : VSTATUS: 0x%02x\n", __func__, lock);
557 *status = 0;
559 if (signal > 10)
560 *status |= FE_HAS_SIGNAL;
562 if (lock & 0x2)
563 *status |= FE_HAS_CARRIER;
565 if (lock & 0x20)
566 *status |= FE_HAS_VITERBI;
568 if (lock & 0x40)
569 *status |= FE_HAS_SYNC;
571 if ((lock & 0x7b) == 0x7b)
572 *status |= FE_HAS_LOCK;
574 return 0;
577 static int si21_read_signal_strength(struct dvb_frontend *fe, u16 *strength)
579 struct si21xx_state *state = fe->demodulator_priv;
581 /*status = si21_readreg(state, ANALOG_AGC_POWER_LEVEL_REG,
582 (u8*)agclevel, 0x01);*/
584 u16 signal = (3 * si21_readreg(state, 0x27) *
585 si21_readreg(state, 0x28));
587 dprintk("%s : AGCPWR: 0x%02x%02x, signal=0x%04x\n", __func__,
588 si21_readreg(state, 0x27),
589 si21_readreg(state, 0x28), (int) signal);
591 signal <<= 4;
592 *strength = signal;
594 return 0;
597 static int si21_read_ber(struct dvb_frontend *fe, u32 *ber)
599 struct si21xx_state *state = fe->demodulator_priv;
601 dprintk("%s\n", __func__);
603 if (state->errmode != STATUS_BER)
604 return 0;
606 *ber = (si21_readreg(state, 0x1d) << 8) |
607 si21_readreg(state, 0x1e);
609 return 0;
612 static int si21_read_snr(struct dvb_frontend *fe, u16 *snr)
614 struct si21xx_state *state = fe->demodulator_priv;
616 s32 xsnr = 0xffff - ((si21_readreg(state, 0x24) << 8) |
617 si21_readreg(state, 0x25));
618 xsnr = 3 * (xsnr - 0xa100);
619 *snr = (xsnr > 0xffff) ? 0xffff : (xsnr < 0) ? 0 : xsnr;
621 dprintk("%s\n", __func__);
623 return 0;
626 static int si21_read_ucblocks(struct dvb_frontend *fe, u32 *ucblocks)
628 struct si21xx_state *state = fe->demodulator_priv;
630 dprintk("%s\n", __func__);
632 if (state->errmode != STATUS_UCBLOCKS)
633 *ucblocks = 0;
634 else
635 *ucblocks = (si21_readreg(state, 0x1d) << 8) |
636 si21_readreg(state, 0x1e);
638 return 0;
641 /* initiates a channel acquisition sequence
642 using the specified symbol rate and code rate */
643 static int si21xx_setacquire(struct dvb_frontend *fe, int symbrate,
644 enum fe_code_rate crate)
647 struct si21xx_state *state = fe->demodulator_priv;
648 u8 coderates[] = {
649 0x0, 0x01, 0x02, 0x04, 0x00,
650 0x8, 0x10, 0x20, 0x00, 0x3f
653 u8 coderate_ptr;
654 int status;
655 u8 start_acq = 0x80;
656 u8 reg, regs[3];
658 dprintk("%s\n", __func__);
660 status = PASS;
661 coderate_ptr = coderates[crate];
663 si21xx_set_symbolrate(fe, symbrate);
665 /* write code rates to use in the Viterbi search */
666 status |= si21_writeregs(state,
667 VIT_SRCH_CTRL_REG_1,
668 &coderate_ptr, 0x01);
670 /* clear acq_start bit */
671 status |= si21_readregs(state, ACQ_CTRL_REG_2, &reg, 0x01);
672 reg &= ~start_acq;
673 status |= si21_writeregs(state, ACQ_CTRL_REG_2, &reg, 0x01);
675 /* use new Carrier Frequency Offset Estimator (QuickLock) */
676 regs[0] = 0xCB;
677 regs[1] = 0x40;
678 regs[2] = 0xCB;
680 status |= si21_writeregs(state,
681 TWO_DB_BNDWDTH_THRSHLD_REG,
682 &regs[0], 0x03);
683 reg = 0x56;
684 status |= si21_writeregs(state,
685 LSA_CTRL_REG_1, &reg, 1);
686 reg = 0x05;
687 status |= si21_writeregs(state,
688 BLIND_SCAN_CTRL_REG, &reg, 1);
689 /* start automatic acq */
690 status |= si21_writeregs(state,
691 ACQ_CTRL_REG_2, &start_acq, 0x01);
693 return status;
696 static int si21xx_set_frontend(struct dvb_frontend *fe)
698 struct si21xx_state *state = fe->demodulator_priv;
699 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
701 /* freq Channel carrier frequency in KHz (i.e. 1550000 KHz)
702 datarate Channel symbol rate in Sps (i.e. 22500000 Sps)*/
704 /* in MHz */
705 unsigned char coarse_tune_freq;
706 int fine_tune_freq;
707 unsigned char sample_rate = 0;
708 /* boolean */
709 bool inband_interferer_ind;
711 /* INTERMEDIATE VALUES */
712 int icoarse_tune_freq; /* MHz */
713 int ifine_tune_freq; /* MHz */
714 unsigned int band_high;
715 unsigned int band_low;
716 unsigned int x1;
717 unsigned int x2;
718 int i;
719 bool inband_interferer_div2[ALLOWABLE_FS_COUNT];
720 bool inband_interferer_div4[ALLOWABLE_FS_COUNT];
721 int status;
723 /* allowable sample rates for ADC in MHz */
724 int afs[ALLOWABLE_FS_COUNT] = { 200, 192, 193, 194, 195,
725 196, 204, 205, 206, 207
727 /* in MHz */
728 int if_limit_high;
729 int if_limit_low;
730 int lnb_lo;
731 int lnb_uncertanity;
733 int rf_freq;
734 int data_rate;
735 unsigned char regs[4];
737 dprintk("%s : FE_SET_FRONTEND\n", __func__);
739 if (c->delivery_system != SYS_DVBS) {
740 dprintk("%s: unsupported delivery system selected (%d)\n",
741 __func__, c->delivery_system);
742 return -EOPNOTSUPP;
745 for (i = 0; i < ALLOWABLE_FS_COUNT; ++i)
746 inband_interferer_div2[i] = inband_interferer_div4[i] = false;
748 if_limit_high = -700000;
749 if_limit_low = -100000;
750 /* in MHz */
751 lnb_lo = 0;
752 lnb_uncertanity = 0;
754 rf_freq = 10 * c->frequency ;
755 data_rate = c->symbol_rate / 100;
757 status = PASS;
759 band_low = (rf_freq - lnb_lo) - ((lnb_uncertanity * 200)
760 + (data_rate * 135)) / 200;
762 band_high = (rf_freq - lnb_lo) + ((lnb_uncertanity * 200)
763 + (data_rate * 135)) / 200;
766 icoarse_tune_freq = 100000 *
767 (((rf_freq - lnb_lo) -
768 (if_limit_low + if_limit_high) / 2)
769 / 100000);
771 ifine_tune_freq = (rf_freq - lnb_lo) - icoarse_tune_freq ;
773 for (i = 0; i < ALLOWABLE_FS_COUNT; ++i) {
774 x1 = ((rf_freq - lnb_lo) / (afs[i] * 2500)) *
775 (afs[i] * 2500) + afs[i] * 2500;
777 x2 = ((rf_freq - lnb_lo) / (afs[i] * 2500)) *
778 (afs[i] * 2500);
780 if (((band_low < x1) && (x1 < band_high)) ||
781 ((band_low < x2) && (x2 < band_high)))
782 inband_interferer_div4[i] = true;
786 for (i = 0; i < ALLOWABLE_FS_COUNT; ++i) {
787 x1 = ((rf_freq - lnb_lo) / (afs[i] * 5000)) *
788 (afs[i] * 5000) + afs[i] * 5000;
790 x2 = ((rf_freq - lnb_lo) / (afs[i] * 5000)) *
791 (afs[i] * 5000);
793 if (((band_low < x1) && (x1 < band_high)) ||
794 ((band_low < x2) && (x2 < band_high)))
795 inband_interferer_div2[i] = true;
798 inband_interferer_ind = true;
799 for (i = 0; i < ALLOWABLE_FS_COUNT; ++i) {
800 if (inband_interferer_div2[i] || inband_interferer_div4[i]) {
801 inband_interferer_ind = false;
802 break;
806 if (inband_interferer_ind) {
807 for (i = 0; i < ALLOWABLE_FS_COUNT; ++i) {
808 if (!inband_interferer_div2[i]) {
809 sample_rate = (u8) afs[i];
810 break;
813 } else {
814 for (i = 0; i < ALLOWABLE_FS_COUNT; ++i) {
815 if ((inband_interferer_div2[i] ||
816 !inband_interferer_div4[i])) {
817 sample_rate = (u8) afs[i];
818 break;
824 if (sample_rate > 207 || sample_rate < 192)
825 sample_rate = 200;
827 fine_tune_freq = ((0x4000 * (ifine_tune_freq / 10)) /
828 ((sample_rate) * 1000));
830 coarse_tune_freq = (u8)(icoarse_tune_freq / 100000);
832 regs[0] = sample_rate;
833 regs[1] = coarse_tune_freq;
834 regs[2] = fine_tune_freq & 0xFF;
835 regs[3] = fine_tune_freq >> 8 & 0xFF;
837 status |= si21_writeregs(state, PLL_DIVISOR_REG, &regs[0], 0x04);
839 state->fs = sample_rate;/*ADC MHz*/
840 si21xx_setacquire(fe, c->symbol_rate, c->fec_inner);
842 return 0;
845 static int si21xx_sleep(struct dvb_frontend *fe)
847 struct si21xx_state *state = fe->demodulator_priv;
848 u8 regdata;
850 dprintk("%s\n", __func__);
852 si21_readregs(state, SYSTEM_MODE_REG, &regdata, 0x01);
853 regdata |= 1 << 6;
854 si21_writeregs(state, SYSTEM_MODE_REG, &regdata, 0x01);
855 state->initialised = 0;
857 return 0;
860 static void si21xx_release(struct dvb_frontend *fe)
862 struct si21xx_state *state = fe->demodulator_priv;
864 dprintk("%s\n", __func__);
866 kfree(state);
869 static const struct dvb_frontend_ops si21xx_ops = {
870 .delsys = { SYS_DVBS },
871 .info = {
872 .name = "SL SI21XX DVB-S",
873 .frequency_min_hz = 950 * MHz,
874 .frequency_max_hz = 2150 * MHz,
875 .frequency_stepsize_hz = 125 * kHz,
876 .symbol_rate_min = 1000000,
877 .symbol_rate_max = 45000000,
878 .symbol_rate_tolerance = 500, /* ppm */
879 .caps = FE_CAN_FEC_1_2 | FE_CAN_FEC_2_3 | FE_CAN_FEC_3_4 |
880 FE_CAN_FEC_5_6 | FE_CAN_FEC_7_8 |
881 FE_CAN_QPSK |
882 FE_CAN_FEC_AUTO
885 .release = si21xx_release,
886 .init = si21xx_init,
887 .sleep = si21xx_sleep,
888 .write = si21_write,
889 .read_status = si21_read_status,
890 .read_ber = si21_read_ber,
891 .read_signal_strength = si21_read_signal_strength,
892 .read_snr = si21_read_snr,
893 .read_ucblocks = si21_read_ucblocks,
894 .diseqc_send_master_cmd = si21xx_send_diseqc_msg,
895 .diseqc_send_burst = si21xx_send_diseqc_burst,
896 .set_tone = si21xx_set_tone,
897 .set_voltage = si21xx_set_voltage,
899 .set_frontend = si21xx_set_frontend,
902 struct dvb_frontend *si21xx_attach(const struct si21xx_config *config,
903 struct i2c_adapter *i2c)
905 struct si21xx_state *state = NULL;
906 int id;
908 dprintk("%s\n", __func__);
910 /* allocate memory for the internal state */
911 state = kzalloc(sizeof(struct si21xx_state), GFP_KERNEL);
912 if (state == NULL)
913 goto error;
915 /* setup the state */
916 state->config = config;
917 state->i2c = i2c;
918 state->initialised = 0;
919 state->errmode = STATUS_BER;
921 /* check if the demod is there */
922 id = si21_readreg(state, SYSTEM_MODE_REG);
923 si21_writereg(state, SYSTEM_MODE_REG, id | 0x40); /* standby off */
924 msleep(200);
925 id = si21_readreg(state, 0x00);
927 /* register 0x00 contains:
928 0x34 for SI2107
929 0x24 for SI2108
930 0x14 for SI2109
931 0x04 for SI2110
933 if (id != 0x04 && id != 0x14)
934 goto error;
936 /* create dvb_frontend */
937 memcpy(&state->frontend.ops, &si21xx_ops,
938 sizeof(struct dvb_frontend_ops));
939 state->frontend.demodulator_priv = state;
940 return &state->frontend;
942 error:
943 kfree(state);
944 return NULL;
946 EXPORT_SYMBOL(si21xx_attach);
948 module_param(debug, int, 0644);
949 MODULE_PARM_DESC(debug, "Turn on/off frontend debugging (default:off).");
951 MODULE_DESCRIPTION("SL SI21XX DVB Demodulator driver");
952 MODULE_AUTHOR("Igor M. Liplianin");
953 MODULE_LICENSE("GPL");