blob: 2996b73cf4b4101b90f150c66bbf634c7f4e8cac [file] [log] [blame]
Hartmut Birraa323ac2007-04-21 19:37:17 -03001/*
2 TDA10023 - DVB-C decoder
3 (as used in Philips CU1216-3 NIM and the Reelbox DVB-C tuner card)
4
5 Copyright (C) 2005 Georg Acher, BayCom GmbH (acher at baycom dot de)
6 Copyright (c) 2006 Hartmut Birr (e9hack at gmail dot com)
7
8 Remotely based on tda10021.c
9 Copyright (C) 1999 Convergence Integrated Media GmbH <ralph@convergence.de>
10 Copyright (C) 2004 Markus Schulz <msc@antzsystem.de>
11 Support for TDA10021
12
13 This program is free software; you can redistribute it and/or modify
14 it under the terms of the GNU General Public License as published by
15 the Free Software Foundation; either version 2 of the License, or
16 (at your option) any later version.
17
18 This program is distributed in the hope that it will be useful,
19 but WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 GNU General Public License for more details.
22
23 You should have received a copy of the GNU General Public License
24 along with this program; if not, write to the Free Software
25 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
26*/
27
28#include <linux/delay.h>
29#include <linux/errno.h>
30#include <linux/init.h>
31#include <linux/kernel.h>
32#include <linux/module.h>
33#include <linux/string.h>
34#include <linux/slab.h>
35
36#include <asm/div64.h>
37
38#include "dvb_frontend.h"
39#include "tda1002x.h"
40
Antti Palosaari4388c3b2008-05-17 22:58:04 -030041#define REG0_INIT_VAL 0x23
Hartmut Birraa323ac2007-04-21 19:37:17 -030042
43struct tda10023_state {
44 struct i2c_adapter* i2c;
45 /* configuration settings */
Antti Palosaari4388c3b2008-05-17 22:58:04 -030046 const struct tda10023_config *config;
Hartmut Birraa323ac2007-04-21 19:37:17 -030047 struct dvb_frontend frontend;
48
49 u8 pwm;
50 u8 reg0;
Hartmut Birraa323ac2007-04-21 19:37:17 -030051
Antti Palosaari4388c3b2008-05-17 22:58:04 -030052 /* clock settings */
53 u32 xtal;
54 u8 pll_m;
55 u8 pll_p;
56 u8 pll_n;
57 u32 sysclk;
58};
Hartmut Birraa323ac2007-04-21 19:37:17 -030059
60#define dprintk(x...)
61
62static int verbose;
63
Hartmut Birraa323ac2007-04-21 19:37:17 -030064static u8 tda10023_readreg (struct tda10023_state* state, u8 reg)
65{
66 u8 b0 [] = { reg };
67 u8 b1 [] = { 0 };
68 struct i2c_msg msg [] = { { .addr = state->config->demod_address, .flags = 0, .buf = b0, .len = 1 },
69 { .addr = state->config->demod_address, .flags = I2C_M_RD, .buf = b1, .len = 1 } };
70 int ret;
71
72 ret = i2c_transfer (state->i2c, msg, 2);
Oliver Endrissc9fa2b12008-06-19 22:45:55 -030073 if (ret != 2) {
74 int num = state->frontend.dvb ? state->frontend.dvb->num : -1;
75 printk(KERN_ERR "DVB: TDA10023(%d): %s: readreg error "
76 "(reg == 0x%02x, ret == %i)\n",
77 num, __func__, reg, ret);
78 }
Hartmut Birraa323ac2007-04-21 19:37:17 -030079 return b1[0];
80}
81
82static int tda10023_writereg (struct tda10023_state* state, u8 reg, u8 data)
83{
84 u8 buf[] = { reg, data };
85 struct i2c_msg msg = { .addr = state->config->demod_address, .flags = 0, .buf = buf, .len = 2 };
86 int ret;
87
88 ret = i2c_transfer (state->i2c, &msg, 1);
Oliver Endrissc9fa2b12008-06-19 22:45:55 -030089 if (ret != 1) {
90 int num = state->frontend.dvb ? state->frontend.dvb->num : -1;
91 printk(KERN_ERR "DVB: TDA10023(%d): %s, writereg error "
Hartmut Birraa323ac2007-04-21 19:37:17 -030092 "(reg == 0x%02x, val == 0x%02x, ret == %i)\n",
Oliver Endrissc9fa2b12008-06-19 22:45:55 -030093 num, __func__, reg, data, ret);
94 }
Hartmut Birraa323ac2007-04-21 19:37:17 -030095 return (ret != 1) ? -EREMOTEIO : 0;
96}
97
98
99static int tda10023_writebit (struct tda10023_state* state, u8 reg, u8 mask,u8 data)
100{
101 if (mask==0xff)
102 return tda10023_writereg(state, reg, data);
103 else {
104 u8 val;
105 val=tda10023_readreg(state,reg);
106 val&=~mask;
107 val|=(data&mask);
108 return tda10023_writereg(state, reg, val);
109 }
110}
111
112static void tda10023_writetab(struct tda10023_state* state, u8* tab)
113{
114 u8 r,m,v;
115 while (1) {
116 r=*tab++;
117 m=*tab++;
118 v=*tab++;
119 if (r==0xff) {
120 if (m==0xff)
121 break;
122 else
123 msleep(m);
124 }
125 else
126 tda10023_writebit(state,r,m,v);
127 }
128}
129
130//get access to tuner
131static int lock_tuner(struct tda10023_state* state)
132{
133 u8 buf[2] = { 0x0f, 0xc0 };
134 struct i2c_msg msg = {.addr=state->config->demod_address, .flags=0, .buf=buf, .len=2};
135
136 if(i2c_transfer(state->i2c, &msg, 1) != 1)
137 {
138 printk("tda10023: lock tuner fails\n");
139 return -EREMOTEIO;
140 }
141 return 0;
142}
143
144//release access from tuner
145static int unlock_tuner(struct tda10023_state* state)
146{
147 u8 buf[2] = { 0x0f, 0x40 };
148 struct i2c_msg msg_post={.addr=state->config->demod_address, .flags=0, .buf=buf, .len=2};
149
150 if(i2c_transfer(state->i2c, &msg_post, 1) != 1)
151 {
152 printk("tda10023: unlock tuner fails\n");
153 return -EREMOTEIO;
154 }
155 return 0;
156}
157
158static int tda10023_setup_reg0 (struct tda10023_state* state, u8 reg0)
159{
160 reg0 |= state->reg0 & 0x63;
161
162 tda10023_writereg (state, 0x00, reg0 & 0xfe);
163 tda10023_writereg (state, 0x00, reg0 | 0x01);
164
165 state->reg0 = reg0;
166 return 0;
167}
168
169static int tda10023_set_symbolrate (struct tda10023_state* state, u32 sr)
170{
171 s32 BDR;
172 s32 BDRI;
173 s16 SFIL=0;
174 u16 NDEC = 0;
175
Antti Palosaari4388c3b2008-05-17 22:58:04 -0300176 /* avoid floating point operations multiplying syscloc and divider
177 by 10 */
178 u32 sysclk_x_10 = state->sysclk * 10;
179
180 if (sr < (u32)(sysclk_x_10/984)) {
Hartmut Birraa323ac2007-04-21 19:37:17 -0300181 NDEC=3;
182 SFIL=1;
Antti Palosaari4388c3b2008-05-17 22:58:04 -0300183 } else if (sr < (u32)(sysclk_x_10/640)) {
Hartmut Birraa323ac2007-04-21 19:37:17 -0300184 NDEC=3;
185 SFIL=0;
Antti Palosaari4388c3b2008-05-17 22:58:04 -0300186 } else if (sr < (u32)(sysclk_x_10/492)) {
Hartmut Birraa323ac2007-04-21 19:37:17 -0300187 NDEC=2;
188 SFIL=1;
Antti Palosaari4388c3b2008-05-17 22:58:04 -0300189 } else if (sr < (u32)(sysclk_x_10/320)) {
Hartmut Birraa323ac2007-04-21 19:37:17 -0300190 NDEC=2;
191 SFIL=0;
Antti Palosaari4388c3b2008-05-17 22:58:04 -0300192 } else if (sr < (u32)(sysclk_x_10/246)) {
Hartmut Birraa323ac2007-04-21 19:37:17 -0300193 NDEC=1;
194 SFIL=1;
Antti Palosaari4388c3b2008-05-17 22:58:04 -0300195 } else if (sr < (u32)(sysclk_x_10/160)) {
Hartmut Birraa323ac2007-04-21 19:37:17 -0300196 NDEC=1;
197 SFIL=0;
Antti Palosaari4388c3b2008-05-17 22:58:04 -0300198 } else if (sr < (u32)(sysclk_x_10/123)) {
Hartmut Birraa323ac2007-04-21 19:37:17 -0300199 NDEC=0;
200 SFIL=1;
201 }
202
Antti Palosaari4388c3b2008-05-17 22:58:04 -0300203 BDRI = (state->sysclk)*16;
Hartmut Birraa323ac2007-04-21 19:37:17 -0300204 BDRI>>=NDEC;
205 BDRI +=sr/2;
206 BDRI /=sr;
207
208 if (BDRI>255)
209 BDRI=255;
210
211 {
212 u64 BDRX;
213
214 BDRX=1<<(24+NDEC);
215 BDRX*=sr;
Antti Palosaari4388c3b2008-05-17 22:58:04 -0300216 do_div(BDRX, state->sysclk); /* BDRX/=SYSCLK; */
Hartmut Birraa323ac2007-04-21 19:37:17 -0300217
218 BDR=(s32)BDRX;
219 }
Antti Palosaari4388c3b2008-05-17 22:58:04 -0300220 dprintk("Symbolrate %i, BDR %i BDRI %i, NDEC %i\n",
221 sr, BDR, BDRI, NDEC);
Hartmut Birraa323ac2007-04-21 19:37:17 -0300222 tda10023_writebit (state, 0x03, 0xc0, NDEC<<6);
223 tda10023_writereg (state, 0x0a, BDR&255);
224 tda10023_writereg (state, 0x0b, (BDR>>8)&255);
225 tda10023_writereg (state, 0x0c, (BDR>>16)&31);
226 tda10023_writereg (state, 0x0d, BDRI);
227 tda10023_writereg (state, 0x3d, (SFIL<<7));
228 return 0;
229}
230
231static int tda10023_init (struct dvb_frontend *fe)
232{
233 struct tda10023_state* state = fe->demodulator_priv;
Antti Palosaari4388c3b2008-05-17 22:58:04 -0300234 u8 tda10023_inittab[] = {
235/* reg mask val */
236/* 000 */ 0x2a, 0xff, 0x02, /* PLL3, Bypass, Power Down */
237/* 003 */ 0xff, 0x64, 0x00, /* Sleep 100ms */
238/* 006 */ 0x2a, 0xff, 0x03, /* PLL3, Bypass, Power Down */
239/* 009 */ 0xff, 0x64, 0x00, /* Sleep 100ms */
240 /* PLL1 */
241/* 012 */ 0x28, 0xff, (state->pll_m-1),
242 /* PLL2 */
243/* 015 */ 0x29, 0xff, ((state->pll_p-1)<<6)|(state->pll_n-1),
244 /* GPR FSAMPLING=1 */
245/* 018 */ 0x00, 0xff, REG0_INIT_VAL,
246/* 021 */ 0x2a, 0xff, 0x08, /* PLL3 PSACLK=1 */
247/* 024 */ 0xff, 0x64, 0x00, /* Sleep 100ms */
248/* 027 */ 0x1f, 0xff, 0x00, /* RESET */
249/* 030 */ 0xff, 0x64, 0x00, /* Sleep 100ms */
250/* 033 */ 0xe6, 0x0c, 0x04, /* RSCFG_IND */
251/* 036 */ 0x10, 0xc0, 0x80, /* DECDVBCFG1 PBER=1 */
Hartmut Birraa323ac2007-04-21 19:37:17 -0300252
Antti Palosaari4388c3b2008-05-17 22:58:04 -0300253/* 039 */ 0x0e, 0xff, 0x82, /* GAIN1 */
254/* 042 */ 0x03, 0x08, 0x08, /* CLKCONF DYN=1 */
255/* 045 */ 0x2e, 0xbf, 0x30, /* AGCCONF2 TRIAGC=0,POSAGC=ENAGCIF=1
256 PPWMTUN=0 PPWMIF=0 */
257/* 048 */ 0x01, 0xff, 0x30, /* AGCREF */
258/* 051 */ 0x1e, 0x84, 0x84, /* CONTROL SACLK_ON=1 */
259/* 054 */ 0x1b, 0xff, 0xc8, /* ADC TWOS=1 */
260/* 057 */ 0x3b, 0xff, 0xff, /* IFMAX */
261/* 060 */ 0x3c, 0xff, 0x00, /* IFMIN */
262/* 063 */ 0x34, 0xff, 0x00, /* PWMREF */
263/* 066 */ 0x35, 0xff, 0xff, /* TUNMAX */
264/* 069 */ 0x36, 0xff, 0x00, /* TUNMIN */
265/* 072 */ 0x06, 0xff, 0x7f, /* EQCONF1 POSI=7 ENADAPT=ENEQUAL=DFE=1 */
266/* 075 */ 0x1c, 0x30, 0x30, /* EQCONF2 STEPALGO=SGNALGO=1 */
267/* 078 */ 0x37, 0xff, 0xf6, /* DELTAF_LSB */
268/* 081 */ 0x38, 0xff, 0xff, /* DELTAF_MSB */
269/* 084 */ 0x02, 0xff, 0x93, /* AGCCONF1 IFS=1 KAGCIF=2 KAGCTUN=3 */
270/* 087 */ 0x2d, 0xff, 0xf6, /* SWEEP SWPOS=1 SWDYN=7 SWSTEP=1 SWLEN=2 */
271/* 090 */ 0x04, 0x10, 0x00, /* SWRAMP=1 */
272/* 093 */ 0x12, 0xff, 0xa1, /* INTP1 POCLKP=1 FEL=1 MFS=0 */
273/* 096 */ 0x2b, 0x01, 0xa1, /* INTS1 */
274/* 099 */ 0x20, 0xff, 0x04, /* INTP2 SWAPP=? MSBFIRSTP=? INTPSEL=? */
275/* 102 */ 0x2c, 0xff, 0x0d, /* INTP/S TRIP=0 TRIS=0 */
276/* 105 */ 0xc4, 0xff, 0x00,
277/* 108 */ 0xc3, 0x30, 0x00,
278/* 111 */ 0xb5, 0xff, 0x19, /* ERAGC_THD */
279/* 114 */ 0x00, 0x03, 0x01, /* GPR, CLBS soft reset */
280/* 117 */ 0x00, 0x03, 0x03, /* GPR, CLBS soft reset */
281/* 120 */ 0xff, 0x64, 0x00, /* Sleep 100ms */
282/* 123 */ 0xff, 0xff, 0xff
283};
284 dprintk("DVB: TDA10023(%d): init chip\n", fe->dvb->num);
285
286 /* override default values if set in config */
287 if (state->config->deltaf) {
288 tda10023_inittab[80] = (state->config->deltaf & 0xff);
289 tda10023_inittab[83] = (state->config->deltaf >> 8);
290 }
Hartmut Birraa323ac2007-04-21 19:37:17 -0300291
292 tda10023_writetab(state, tda10023_inittab);
293
294 return 0;
295}
296
297static int tda10023_set_parameters (struct dvb_frontend *fe,
298 struct dvb_frontend_parameters *p)
299{
300 struct tda10023_state* state = fe->demodulator_priv;
301
302 static int qamvals[6][6] = {
303 // QAM LOCKTHR MSETH AREF AGCREFNYQ ERAGCNYQ_THD
304 { (5<<2), 0x78, 0x8c, 0x96, 0x78, 0x4c }, // 4 QAM
305 { (0<<2), 0x87, 0xa2, 0x91, 0x8c, 0x57 }, // 16 QAM
306 { (1<<2), 0x64, 0x74, 0x96, 0x8c, 0x57 }, // 32 QAM
307 { (2<<2), 0x46, 0x43, 0x6a, 0x6a, 0x44 }, // 64 QAM
308 { (3<<2), 0x36, 0x34, 0x7e, 0x78, 0x4c }, // 128 QAM
309 { (4<<2), 0x26, 0x23, 0x6c, 0x5c, 0x3c }, // 256 QAM
310 };
311
312 int qam = p->u.qam.modulation;
313
314 if (qam < 0 || qam > 5)
315 return -EINVAL;
316
317 if (fe->ops.tuner_ops.set_params) {
318 fe->ops.tuner_ops.set_params(fe, p);
319 if (fe->ops.i2c_gate_ctrl) fe->ops.i2c_gate_ctrl(fe, 0);
320 }
321
322 tda10023_set_symbolrate (state, p->u.qam.symbol_rate);
323 tda10023_writereg (state, 0x05, qamvals[qam][1]);
324 tda10023_writereg (state, 0x08, qamvals[qam][2]);
325 tda10023_writereg (state, 0x09, qamvals[qam][3]);
326 tda10023_writereg (state, 0xb4, qamvals[qam][4]);
327 tda10023_writereg (state, 0xb6, qamvals[qam][5]);
328
329// tda10023_writereg (state, 0x04, (p->inversion?0x12:0x32));
330// tda10023_writebit (state, 0x04, 0x60, (p->inversion?0:0x20));
331 tda10023_writebit (state, 0x04, 0x40, 0x40);
332 tda10023_setup_reg0 (state, qamvals[qam][0]);
333
334 return 0;
335}
336
337static int tda10023_read_status(struct dvb_frontend* fe, fe_status_t* status)
338{
339 struct tda10023_state* state = fe->demodulator_priv;
340 int sync;
341
342 *status = 0;
343
344 //0x11[1] == CARLOCK -> Carrier locked
345 //0x11[2] == FSYNC -> Frame synchronisation
346 //0x11[3] == FEL -> Front End locked
347 //0x11[6] == NODVB -> DVB Mode Information
348 sync = tda10023_readreg (state, 0x11);
349
350 if (sync & 2)
351 *status |= FE_HAS_SIGNAL|FE_HAS_CARRIER;
352
353 if (sync & 4)
354 *status |= FE_HAS_SYNC|FE_HAS_VITERBI;
355
356 if (sync & 8)
357 *status |= FE_HAS_LOCK;
358
359 return 0;
360}
361
362static int tda10023_read_ber(struct dvb_frontend* fe, u32* ber)
363{
364 struct tda10023_state* state = fe->demodulator_priv;
365 u8 a,b,c;
366 a=tda10023_readreg(state, 0x14);
367 b=tda10023_readreg(state, 0x15);
368 c=tda10023_readreg(state, 0x16)&0xf;
369 tda10023_writebit (state, 0x10, 0xc0, 0x00);
370
371 *ber = a | (b<<8)| (c<<16);
372 return 0;
373}
374
375static int tda10023_read_signal_strength(struct dvb_frontend* fe, u16* strength)
376{
377 struct tda10023_state* state = fe->demodulator_priv;
378 u8 ifgain=tda10023_readreg(state, 0x2f);
379
380 u16 gain = ((255-tda10023_readreg(state, 0x17))) + (255-ifgain)/16;
381 // Max raw value is about 0xb0 -> Normalize to >0xf0 after 0x90
382 if (gain>0x90)
383 gain=gain+2*(gain-0x90);
384 if (gain>255)
385 gain=255;
386
387 *strength = (gain<<8)|gain;
388 return 0;
389}
390
391static int tda10023_read_snr(struct dvb_frontend* fe, u16* snr)
392{
393 struct tda10023_state* state = fe->demodulator_priv;
394
395 u8 quality = ~tda10023_readreg(state, 0x18);
396 *snr = (quality << 8) | quality;
397 return 0;
398}
399
400static int tda10023_read_ucblocks(struct dvb_frontend* fe, u32* ucblocks)
401{
402 struct tda10023_state* state = fe->demodulator_priv;
403 u8 a,b,c,d;
404 a= tda10023_readreg (state, 0x74);
405 b= tda10023_readreg (state, 0x75);
406 c= tda10023_readreg (state, 0x76);
407 d= tda10023_readreg (state, 0x77);
408 *ucblocks = a | (b<<8)|(c<<16)|(d<<24);
409
410 tda10023_writebit (state, 0x10, 0x20,0x00);
411 tda10023_writebit (state, 0x10, 0x20,0x20);
412 tda10023_writebit (state, 0x13, 0x01, 0x00);
413
414 return 0;
415}
416
417static int tda10023_get_frontend(struct dvb_frontend* fe, struct dvb_frontend_parameters *p)
418{
419 struct tda10023_state* state = fe->demodulator_priv;
420 int sync,inv;
421 s8 afc = 0;
422
423 sync = tda10023_readreg(state, 0x11);
424 afc = tda10023_readreg(state, 0x19);
425 inv = tda10023_readreg(state, 0x04);
426
427 if (verbose) {
428 /* AFC only valid when carrier has been recovered */
429 printk(sync & 2 ? "DVB: TDA10023(%d): AFC (%d) %dHz\n" :
430 "DVB: TDA10023(%d): [AFC (%d) %dHz]\n",
431 state->frontend.dvb->num, afc,
432 -((s32)p->u.qam.symbol_rate * afc) >> 10);
433 }
434
435 p->inversion = (inv&0x20?0:1);
436 p->u.qam.modulation = ((state->reg0 >> 2) & 7) + QAM_16;
437
438 p->u.qam.fec_inner = FEC_NONE;
439 p->frequency = ((p->frequency + 31250) / 62500) * 62500;
440
441 if (sync & 2)
442 p->frequency -= ((s32)p->u.qam.symbol_rate * afc) >> 10;
443
444 return 0;
445}
446
447static int tda10023_sleep(struct dvb_frontend* fe)
448{
449 struct tda10023_state* state = fe->demodulator_priv;
450
451 tda10023_writereg (state, 0x1b, 0x02); /* pdown ADC */
452 tda10023_writereg (state, 0x00, 0x80); /* standby */
453
454 return 0;
455}
456
457static int tda10023_i2c_gate_ctrl(struct dvb_frontend* fe, int enable)
458{
459 struct tda10023_state* state = fe->demodulator_priv;
460
461 if (enable) {
462 lock_tuner(state);
463 } else {
464 unlock_tuner(state);
465 }
466 return 0;
467}
468
469static void tda10023_release(struct dvb_frontend* fe)
470{
471 struct tda10023_state* state = fe->demodulator_priv;
472 kfree(state);
473}
474
475static struct dvb_frontend_ops tda10023_ops;
476
Antti Palosaari4388c3b2008-05-17 22:58:04 -0300477struct dvb_frontend *tda10023_attach(const struct tda10023_config *config,
478 struct i2c_adapter *i2c,
Hartmut Birraa323ac2007-04-21 19:37:17 -0300479 u8 pwm)
480{
481 struct tda10023_state* state = NULL;
Hartmut Birraa323ac2007-04-21 19:37:17 -0300482
483 /* allocate memory for the internal state */
Oliver Endrissc9fa2b12008-06-19 22:45:55 -0300484 state = kzalloc(sizeof(struct tda10023_state), GFP_KERNEL);
Hartmut Birraa323ac2007-04-21 19:37:17 -0300485 if (state == NULL) goto error;
486
487 /* setup the state */
488 state->config = config;
489 state->i2c = i2c;
Hartmut Birraa323ac2007-04-21 19:37:17 -0300490
Antti Palosaari4388c3b2008-05-17 22:58:04 -0300491 /* wakeup if in standby */
Hartmut Birraa323ac2007-04-21 19:37:17 -0300492 tda10023_writereg (state, 0x00, 0x33);
493 /* check if the demod is there */
494 if ((tda10023_readreg(state, 0x1a) & 0xf0) != 0x70) goto error;
495
496 /* create dvb_frontend */
497 memcpy(&state->frontend.ops, &tda10023_ops, sizeof(struct dvb_frontend_ops));
Antti Palosaari4388c3b2008-05-17 22:58:04 -0300498 state->pwm = pwm;
499 state->reg0 = REG0_INIT_VAL;
500 if (state->config->xtal) {
501 state->xtal = state->config->xtal;
502 state->pll_m = state->config->pll_m;
503 state->pll_p = state->config->pll_p;
504 state->pll_n = state->config->pll_n;
505 } else {
506 /* set default values if not defined in config */
507 state->xtal = 28920000;
508 state->pll_m = 8;
509 state->pll_p = 4;
510 state->pll_n = 1;
511 }
512
513 /* calc sysclk */
514 state->sysclk = (state->xtal * state->pll_m / \
515 (state->pll_n * state->pll_p));
516
517 state->frontend.ops.info.symbol_rate_min = (state->sysclk/2)/64;
518 state->frontend.ops.info.symbol_rate_max = (state->sysclk/2)/4;
519
520 dprintk("DVB: TDA10023 %s: xtal:%d pll_m:%d pll_p:%d pll_n:%d\n",
521 __func__, state->xtal, state->pll_m, state->pll_p,
522 state->pll_n);
523
Hartmut Birraa323ac2007-04-21 19:37:17 -0300524 state->frontend.demodulator_priv = state;
525 return &state->frontend;
526
527error:
528 kfree(state);
529 return NULL;
530}
531
532static struct dvb_frontend_ops tda10023_ops = {
533
534 .info = {
535 .name = "Philips TDA10023 DVB-C",
536 .type = FE_QAM,
537 .frequency_stepsize = 62500,
Antti Palosaari4388c3b2008-05-17 22:58:04 -0300538 .frequency_min = 47000000,
Hartmut Birra18255b2007-08-09 00:01:51 -0300539 .frequency_max = 862000000,
Antti Palosaari4388c3b2008-05-17 22:58:04 -0300540 .symbol_rate_min = 0, /* set in tda10023_attach */
541 .symbol_rate_max = 0, /* set in tda10023_attach */
Hartmut Birraa323ac2007-04-21 19:37:17 -0300542 .caps = 0x400 | //FE_CAN_QAM_4
543 FE_CAN_QAM_16 | FE_CAN_QAM_32 | FE_CAN_QAM_64 |
544 FE_CAN_QAM_128 | FE_CAN_QAM_256 |
545 FE_CAN_FEC_AUTO
546 },
547
548 .release = tda10023_release,
549
550 .init = tda10023_init,
551 .sleep = tda10023_sleep,
552 .i2c_gate_ctrl = tda10023_i2c_gate_ctrl,
553
554 .set_frontend = tda10023_set_parameters,
555 .get_frontend = tda10023_get_frontend,
556
557 .read_status = tda10023_read_status,
558 .read_ber = tda10023_read_ber,
559 .read_signal_strength = tda10023_read_signal_strength,
560 .read_snr = tda10023_read_snr,
561 .read_ucblocks = tda10023_read_ucblocks,
562};
563
564
565MODULE_DESCRIPTION("Philips TDA10023 DVB-C demodulator driver");
566MODULE_AUTHOR("Georg Acher, Hartmut Birr");
567MODULE_LICENSE("GPL");
568
569EXPORT_SYMBOL(tda10023_attach);