blob: b80a3ee91ba469c435137f410f71da5de18781b7 [file] [log] [blame]
Steven Toth89885552007-07-28 19:34:52 -03001/*
2 Samsung S5H1409 VSB/QAM demodulator driver
3
4 Copyright (C) 2006 Steven Toth <stoth@hauppauge.com>
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19
20*/
21
22#include <linux/kernel.h>
23#include <linux/init.h>
24#include <linux/module.h>
25#include <linux/string.h>
26#include <linux/slab.h>
27#include <linux/delay.h>
28#include "dvb_frontend.h"
29#include "dvb-pll.h"
30#include "s5h1409.h"
31
32struct s5h1409_state {
33
34 struct i2c_adapter* i2c;
35
36 /* configuration settings */
37 const struct s5h1409_config* config;
38
39 struct dvb_frontend frontend;
40
41 /* previous uncorrected block counter */
42 fe_modulation_t current_modulation;
43
44 u32 current_frequency;
Michael Krufky2b032382007-12-13 10:04:10 -030045 int if_freq;
Steven Tothdd7d5012007-10-24 21:05:51 -030046
47 u32 is_qam_locked;
48 u32 qam_state;
Steven Toth89885552007-07-28 19:34:52 -030049};
50
51static int debug = 0;
52#define dprintk if (debug) printk
53
54/* Register values to initialise the demod, this will set VSB by default */
55static struct init_tab {
56 u8 reg;
57 u16 data;
58} init_tab[] = {
59 { 0x00, 0x0071, },
60 { 0x01, 0x3213, },
61 { 0x09, 0x0025, },
62 { 0x1c, 0x001d, },
63 { 0x1f, 0x002d, },
64 { 0x20, 0x001d, },
65 { 0x22, 0x0022, },
66 { 0x23, 0x0020, },
67 { 0x29, 0x110f, },
68 { 0x2a, 0x10b4, },
69 { 0x2b, 0x10ae, },
70 { 0x2c, 0x0031, },
71 { 0x31, 0x010d, },
72 { 0x32, 0x0100, },
73 { 0x44, 0x0510, },
74 { 0x54, 0x0104, },
75 { 0x58, 0x2222, },
76 { 0x59, 0x1162, },
77 { 0x5a, 0x3211, },
78 { 0x5d, 0x0370, },
79 { 0x5e, 0x0296, },
80 { 0x61, 0x0010, },
81 { 0x63, 0x4a00, },
82 { 0x65, 0x0800, },
83 { 0x71, 0x0003, },
84 { 0x72, 0x0470, },
85 { 0x81, 0x0002, },
86 { 0x82, 0x0600, },
87 { 0x86, 0x0002, },
88 { 0x8a, 0x2c38, },
89 { 0x8b, 0x2a37, },
90 { 0x92, 0x302f, },
91 { 0x93, 0x3332, },
92 { 0x96, 0x000c, },
93 { 0x99, 0x0101, },
94 { 0x9c, 0x2e37, },
95 { 0x9d, 0x2c37, },
96 { 0x9e, 0x2c37, },
97 { 0xab, 0x0100, },
98 { 0xac, 0x1003, },
99 { 0xad, 0x103f, },
100 { 0xe2, 0x0100, },
Steven Tothdd7d5012007-10-24 21:05:51 -0300101 { 0xe3, 0x0000, },
Steven Toth89885552007-07-28 19:34:52 -0300102 { 0x28, 0x1010, },
103 { 0xb1, 0x000e, },
104};
105
106/* VSB SNR lookup table */
107static struct vsb_snr_tab {
108 u16 val;
109 u16 data;
110} vsb_snr_tab[] = {
Steven Toth23003172007-12-12 22:14:00 -0300111 { 924, 300, },
Steven Toth89885552007-07-28 19:34:52 -0300112 { 923, 300, },
113 { 918, 295, },
114 { 915, 290, },
115 { 911, 285, },
116 { 906, 280, },
117 { 901, 275, },
118 { 896, 270, },
119 { 891, 265, },
120 { 885, 260, },
121 { 879, 255, },
122 { 873, 250, },
123 { 864, 245, },
124 { 858, 240, },
125 { 850, 235, },
126 { 841, 230, },
127 { 832, 225, },
128 { 823, 220, },
129 { 812, 215, },
130 { 802, 210, },
131 { 788, 205, },
132 { 778, 200, },
133 { 767, 195, },
134 { 753, 190, },
135 { 740, 185, },
136 { 725, 180, },
137 { 707, 175, },
138 { 689, 170, },
139 { 671, 165, },
140 { 656, 160, },
141 { 637, 155, },
142 { 616, 150, },
143 { 542, 145, },
144 { 519, 140, },
145 { 507, 135, },
146 { 497, 130, },
147 { 492, 125, },
148 { 474, 120, },
149 { 300, 111, },
150 { 0, 0, },
151};
152
153/* QAM64 SNR lookup table */
154static struct qam64_snr_tab {
155 u16 val;
156 u16 data;
157} qam64_snr_tab[] = {
Steven Toth23003172007-12-12 22:14:00 -0300158 { 1, 0, },
Steven Toth89885552007-07-28 19:34:52 -0300159 { 12, 300, },
160 { 15, 290, },
161 { 18, 280, },
162 { 22, 270, },
163 { 23, 268, },
164 { 24, 266, },
165 { 25, 264, },
166 { 27, 262, },
167 { 28, 260, },
168 { 29, 258, },
169 { 30, 256, },
170 { 32, 254, },
171 { 33, 252, },
172 { 34, 250, },
173 { 35, 249, },
174 { 36, 248, },
175 { 37, 247, },
176 { 38, 246, },
177 { 39, 245, },
178 { 40, 244, },
179 { 41, 243, },
180 { 42, 241, },
181 { 43, 240, },
182 { 44, 239, },
183 { 45, 238, },
184 { 46, 237, },
185 { 47, 236, },
186 { 48, 235, },
187 { 49, 234, },
188 { 50, 233, },
189 { 51, 232, },
190 { 52, 231, },
191 { 53, 230, },
192 { 55, 229, },
193 { 56, 228, },
194 { 57, 227, },
195 { 58, 226, },
196 { 59, 225, },
197 { 60, 224, },
198 { 62, 223, },
199 { 63, 222, },
200 { 65, 221, },
201 { 66, 220, },
202 { 68, 219, },
203 { 69, 218, },
204 { 70, 217, },
205 { 72, 216, },
206 { 73, 215, },
207 { 75, 214, },
208 { 76, 213, },
209 { 78, 212, },
210 { 80, 211, },
211 { 81, 210, },
212 { 83, 209, },
213 { 84, 208, },
214 { 85, 207, },
215 { 87, 206, },
216 { 89, 205, },
217 { 91, 204, },
218 { 93, 203, },
219 { 95, 202, },
220 { 96, 201, },
221 { 104, 200, },
Steven Toth23003172007-12-12 22:14:00 -0300222 { 255, 0, },
Steven Toth89885552007-07-28 19:34:52 -0300223};
224
225/* QAM256 SNR lookup table */
226static struct qam256_snr_tab {
227 u16 val;
228 u16 data;
229} qam256_snr_tab[] = {
Steven Toth23003172007-12-12 22:14:00 -0300230 { 1, 0, },
Steven Toth89885552007-07-28 19:34:52 -0300231 { 12, 400, },
232 { 13, 390, },
233 { 15, 380, },
234 { 17, 360, },
235 { 19, 350, },
236 { 22, 348, },
237 { 23, 346, },
238 { 24, 344, },
239 { 25, 342, },
240 { 26, 340, },
241 { 27, 336, },
242 { 28, 334, },
243 { 29, 332, },
244 { 30, 330, },
245 { 31, 328, },
246 { 32, 326, },
247 { 33, 325, },
248 { 34, 322, },
249 { 35, 320, },
250 { 37, 318, },
251 { 39, 316, },
252 { 40, 314, },
253 { 41, 312, },
254 { 42, 310, },
255 { 43, 308, },
256 { 46, 306, },
257 { 47, 304, },
258 { 49, 302, },
259 { 51, 300, },
260 { 53, 298, },
261 { 54, 297, },
262 { 55, 296, },
263 { 56, 295, },
264 { 57, 294, },
265 { 59, 293, },
266 { 60, 292, },
267 { 61, 291, },
268 { 63, 290, },
269 { 64, 289, },
270 { 65, 288, },
271 { 66, 287, },
272 { 68, 286, },
273 { 69, 285, },
274 { 71, 284, },
275 { 72, 283, },
276 { 74, 282, },
277 { 75, 281, },
278 { 76, 280, },
279 { 77, 279, },
280 { 78, 278, },
281 { 81, 277, },
282 { 83, 276, },
283 { 84, 275, },
284 { 86, 274, },
285 { 87, 273, },
286 { 89, 272, },
287 { 90, 271, },
288 { 92, 270, },
289 { 93, 269, },
290 { 95, 268, },
291 { 96, 267, },
292 { 98, 266, },
293 { 100, 265, },
294 { 102, 264, },
295 { 104, 263, },
296 { 105, 262, },
297 { 106, 261, },
298 { 110, 260, },
Steven Toth23003172007-12-12 22:14:00 -0300299 { 255, 0, },
Steven Toth89885552007-07-28 19:34:52 -0300300};
301
302/* 8 bit registers, 16 bit values */
303static int s5h1409_writereg(struct s5h1409_state* state, u8 reg, u16 data)
304{
305 int ret;
306 u8 buf [] = { reg, data >> 8, data & 0xff };
307
Michael Krufky3873dd02007-07-28 20:02:55 -0300308 struct i2c_msg msg = { .addr = state->config->demod_address,
309 .flags = 0, .buf = buf, .len = 3 };
Steven Toth89885552007-07-28 19:34:52 -0300310
311 ret = i2c_transfer(state->i2c, &msg, 1);
312
313 if (ret != 1)
Michael Krufky3873dd02007-07-28 20:02:55 -0300314 printk("%s: writereg error (reg == 0x%02x, val == 0x%04x, "
315 "ret == %i)\n", __FUNCTION__, reg, data, ret);
Steven Toth89885552007-07-28 19:34:52 -0300316
317 return (ret != 1) ? -1 : 0;
318}
319
320static u16 s5h1409_readreg(struct s5h1409_state* state, u8 reg)
321{
322 int ret;
323 u8 b0 [] = { reg };
324 u8 b1 [] = { 0, 0 };
325
326 struct i2c_msg msg [] = {
Michael Krufky3873dd02007-07-28 20:02:55 -0300327 { .addr = state->config->demod_address, .flags = 0,
328 .buf = b0, .len = 1 },
329 { .addr = state->config->demod_address, .flags = I2C_M_RD,
330 .buf = b1, .len = 2 } };
Steven Toth89885552007-07-28 19:34:52 -0300331
332 ret = i2c_transfer(state->i2c, msg, 2);
333
334 if (ret != 2)
Michael Krufky3873dd02007-07-28 20:02:55 -0300335 printk("%s: readreg error (ret == %i)\n", __FUNCTION__, ret);
Steven Toth89885552007-07-28 19:34:52 -0300336 return (b1[0] << 8) | b1[1];
337}
338
339static int s5h1409_softreset(struct dvb_frontend* fe)
340{
341 struct s5h1409_state* state = fe->demodulator_priv;
342
343 dprintk("%s()\n", __FUNCTION__);
344
345 s5h1409_writereg(state, 0xf5, 0);
346 s5h1409_writereg(state, 0xf5, 1);
Steven Tothdd7d5012007-10-24 21:05:51 -0300347 state->is_qam_locked = 0;
348 state->qam_state = 0;
Steven Toth89885552007-07-28 19:34:52 -0300349 return 0;
350}
351
Michael Krufky2b032382007-12-13 10:04:10 -0300352#define S5H1409_VSB_IF_FREQ 5380
353#define S5H1409_QAM_IF_FREQ state->config->qam_if
354
Steven Toth89885552007-07-28 19:34:52 -0300355static int s5h1409_set_if_freq(struct dvb_frontend* fe, int KHz)
356{
357 struct s5h1409_state* state = fe->demodulator_priv;
358 int ret = 0;
359
360 dprintk("%s(%d KHz)\n", __FUNCTION__, KHz);
361
Michael Krufky3873dd02007-07-28 20:02:55 -0300362 if( (KHz == 44000) || (KHz == 5380) ) {
Steven Toth89885552007-07-28 19:34:52 -0300363 s5h1409_writereg(state, 0x87, 0x01be);
364 s5h1409_writereg(state, 0x88, 0x0436);
365 s5h1409_writereg(state, 0x89, 0x054d);
Steven Tothdd7d5012007-10-24 21:05:51 -0300366 } else
367 if (KHz == 4000) {
368 s5h1409_writereg(state, 0x87, 0x014b);
369 s5h1409_writereg(state, 0x88, 0x0cb5);
370 s5h1409_writereg(state, 0x89, 0x03e2);
Steven Toth89885552007-07-28 19:34:52 -0300371 } else {
372 printk("%s() Invalid arg = %d KHz\n", __FUNCTION__, KHz);
373 ret = -1;
374 }
375
Michael Krufky2b032382007-12-13 10:04:10 -0300376 if (0 == ret)
377 state->if_freq = KHz;
378
Steven Toth89885552007-07-28 19:34:52 -0300379 return ret;
380}
381
382static int s5h1409_set_spectralinversion(struct dvb_frontend* fe, int inverted)
383{
384 struct s5h1409_state* state = fe->demodulator_priv;
385
Steven Tothdd7d5012007-10-24 21:05:51 -0300386 dprintk("%s(%d)\n", __FUNCTION__, inverted);
Steven Toth89885552007-07-28 19:34:52 -0300387
388 if(inverted == 1)
389 return s5h1409_writereg(state, 0x1b, 0x1101); /* Inverted */
390 else
391 return s5h1409_writereg(state, 0x1b, 0x0110); /* Normal */
392}
393
Michael Krufky3873dd02007-07-28 20:02:55 -0300394static int s5h1409_enable_modulation(struct dvb_frontend* fe,
395 fe_modulation_t m)
Steven Toth89885552007-07-28 19:34:52 -0300396{
397 struct s5h1409_state* state = fe->demodulator_priv;
398
399 dprintk("%s(0x%08x)\n", __FUNCTION__, m);
400
401 switch(m) {
402 case VSB_8:
403 dprintk("%s() VSB_8\n", __FUNCTION__);
Michael Krufky2b032382007-12-13 10:04:10 -0300404 if (state->if_freq != S5H1409_VSB_IF_FREQ)
405 s5h1409_set_if_freq(fe, S5H1409_VSB_IF_FREQ);
Steven Toth89885552007-07-28 19:34:52 -0300406 s5h1409_writereg(state, 0xf4, 0);
407 break;
408 case QAM_64:
Steven Toth89885552007-07-28 19:34:52 -0300409 case QAM_256:
Steven Tothdd7d5012007-10-24 21:05:51 -0300410 dprintk("%s() QAM_AUTO (64/256)\n", __FUNCTION__);
Michael Krufky2b032382007-12-13 10:04:10 -0300411 if (state->if_freq != S5H1409_QAM_IF_FREQ)
412 s5h1409_set_if_freq(fe, S5H1409_QAM_IF_FREQ);
Steven Toth89885552007-07-28 19:34:52 -0300413 s5h1409_writereg(state, 0xf4, 1);
Steven Tothdd7d5012007-10-24 21:05:51 -0300414 s5h1409_writereg(state, 0x85, 0x110);
Steven Toth89885552007-07-28 19:34:52 -0300415 break;
416 default:
417 dprintk("%s() Invalid modulation\n", __FUNCTION__);
418 return -EINVAL;
419 }
420
421 state->current_modulation = m;
422 s5h1409_softreset(fe);
423
424 return 0;
425}
426
427static int s5h1409_i2c_gate_ctrl(struct dvb_frontend* fe, int enable)
428{
429 struct s5h1409_state* state = fe->demodulator_priv;
430
431 dprintk("%s(%d)\n", __FUNCTION__, enable);
432
433 if (enable)
434 return s5h1409_writereg(state, 0xf3, 1);
435 else
436 return s5h1409_writereg(state, 0xf3, 0);
437}
438
439static int s5h1409_set_gpio(struct dvb_frontend* fe, int enable)
440{
441 struct s5h1409_state* state = fe->demodulator_priv;
442
443 dprintk("%s(%d)\n", __FUNCTION__, enable);
444
445 if (enable)
446 return s5h1409_writereg(state, 0xe3, 0x1100);
447 else
Steven Tothdd7d5012007-10-24 21:05:51 -0300448 return s5h1409_writereg(state, 0xe3, 0x1000);
Steven Toth89885552007-07-28 19:34:52 -0300449}
450
451static int s5h1409_sleep(struct dvb_frontend* fe, int enable)
452{
453 struct s5h1409_state* state = fe->demodulator_priv;
454
455 dprintk("%s(%d)\n", __FUNCTION__, enable);
456
457 return s5h1409_writereg(state, 0xf2, enable);
458}
459
460static int s5h1409_register_reset(struct dvb_frontend* fe)
461{
462 struct s5h1409_state* state = fe->demodulator_priv;
463
464 dprintk("%s()\n", __FUNCTION__);
465
466 return s5h1409_writereg(state, 0xfa, 0);
467}
468
Steven Tothdd7d5012007-10-24 21:05:51 -0300469static void s5h1409_set_qam_amhum_mode(struct dvb_frontend *fe)
470{
471 struct s5h1409_state *state = fe->demodulator_priv;
472 u16 reg;
473
474 if (state->is_qam_locked)
475 return;
476
477 /* QAM EQ lock check */
478 reg = s5h1409_readreg(state, 0xf0);
479
480 if ((reg >> 13) & 0x1) {
481
482 state->is_qam_locked = 1;
483 reg &= 0xff;
484
485 s5h1409_writereg(state, 0x96, 0x00c);
486 if ((reg < 0x38) || (reg > 0x68) ) {
487 s5h1409_writereg(state, 0x93, 0x3332);
488 s5h1409_writereg(state, 0x9e, 0x2c37);
489 } else {
490 s5h1409_writereg(state, 0x93, 0x3130);
491 s5h1409_writereg(state, 0x9e, 0x2836);
492 }
493
494 } else {
495 s5h1409_writereg(state, 0x96, 0x0008);
496 s5h1409_writereg(state, 0x93, 0x3332);
497 s5h1409_writereg(state, 0x9e, 0x2c37);
498 }
499}
500
501static void s5h1409_set_qam_interleave_mode(struct dvb_frontend *fe)
502{
503 struct s5h1409_state *state = fe->demodulator_priv;
504 u16 reg, reg1, reg2;
505
506 reg = s5h1409_readreg(state, 0xf1);
507
508 /* Master lock */
509 if ((reg >> 15) & 0x1) {
510 if (state->qam_state != 2) {
511 state->qam_state = 2;
512 reg1 = s5h1409_readreg(state, 0xb2);
513 reg2 = s5h1409_readreg(state, 0xad);
514
515 s5h1409_writereg(state, 0x96, 0x20);
516 s5h1409_writereg(state, 0xad,
517 ( ((reg1 & 0xf000) >> 4) | (reg2 & 0xf0ff)) );
518 s5h1409_writereg(state, 0xab, 0x1100);
519 }
520 } else {
521 if (state->qam_state != 1) {
522 state->qam_state = 1;
523 s5h1409_writereg(state, 0x96, 0x08);
524 s5h1409_writereg(state, 0xab, 0x1101);
525 }
526 }
527}
528
Steven Toth89885552007-07-28 19:34:52 -0300529/* Talk to the demod, set the FEC, GUARD, QAM settings etc */
Michael Krufky3873dd02007-07-28 20:02:55 -0300530static int s5h1409_set_frontend (struct dvb_frontend* fe,
531 struct dvb_frontend_parameters *p)
Steven Toth89885552007-07-28 19:34:52 -0300532{
533 struct s5h1409_state* state = fe->demodulator_priv;
534
535 dprintk("%s(frequency=%d)\n", __FUNCTION__, p->frequency);
536
537 s5h1409_softreset(fe);
538
539 state->current_frequency = p->frequency;
540
541 s5h1409_enable_modulation(fe, p->u.vsb.modulation);
542
Steven Tothdd7d5012007-10-24 21:05:51 -0300543 /* Allow the demod to settle */
544 msleep(100);
545
Steven Toth89885552007-07-28 19:34:52 -0300546 if (fe->ops.tuner_ops.set_params) {
547 if (fe->ops.i2c_gate_ctrl) fe->ops.i2c_gate_ctrl(fe, 1);
548 fe->ops.tuner_ops.set_params(fe, p);
549 if (fe->ops.i2c_gate_ctrl) fe->ops.i2c_gate_ctrl(fe, 0);
550 }
551
Steven Tothdd7d5012007-10-24 21:05:51 -0300552 /* Optimize the demod for QAM */
553 if (p->u.vsb.modulation != VSB_8) {
554 s5h1409_set_qam_amhum_mode(fe);
555 s5h1409_set_qam_interleave_mode(fe);
556 }
557
Steven Toth89885552007-07-28 19:34:52 -0300558 return 0;
559}
560
561/* Reset the demod hardware and reset all of the configuration registers
562 to a default state. */
563static int s5h1409_init (struct dvb_frontend* fe)
564{
565 int i;
566
567 struct s5h1409_state* state = fe->demodulator_priv;
568 dprintk("%s()\n", __FUNCTION__);
569
570 s5h1409_sleep(fe, 0);
571 s5h1409_register_reset(fe);
572
Michael Krufkya45c9272007-03-21 12:03:23 -0300573 for (i=0; i < ARRAY_SIZE(init_tab); i++)
Steven Toth89885552007-07-28 19:34:52 -0300574 s5h1409_writereg(state, init_tab[i].reg, init_tab[i].data);
575
576 /* The datasheet says that after initialisation, VSB is default */
577 state->current_modulation = VSB_8;
578
579 if (state->config->output_mode == S5H1409_SERIAL_OUTPUT)
580 s5h1409_writereg(state, 0xab, 0x100); /* Serial */
581 else
582 s5h1409_writereg(state, 0xab, 0x0); /* Parallel */
583
584 s5h1409_set_spectralinversion(fe, state->config->inversion);
Michael Krufky2b032382007-12-13 10:04:10 -0300585 s5h1409_set_if_freq(fe, state->if_freq);
Steven Toth89885552007-07-28 19:34:52 -0300586 s5h1409_set_gpio(fe, state->config->gpio);
587 s5h1409_softreset(fe);
588
Steven Tothdd7d5012007-10-24 21:05:51 -0300589 /* Note: Leaving the I2C gate closed. */
590 s5h1409_i2c_gate_ctrl(fe, 0);
Steven Toth89885552007-07-28 19:34:52 -0300591
592 return 0;
593}
594
595static int s5h1409_read_status(struct dvb_frontend* fe, fe_status_t* status)
596{
597 struct s5h1409_state* state = fe->demodulator_priv;
598 u16 reg;
599 u32 tuner_status = 0;
600
601 *status = 0;
602
603 /* Get the demodulator status */
604 reg = s5h1409_readreg(state, 0xf1);
605 if(reg & 0x1000)
606 *status |= FE_HAS_VITERBI;
607 if(reg & 0x8000)
608 *status |= FE_HAS_LOCK | FE_HAS_SYNC;
609
610 switch(state->config->status_mode) {
611 case S5H1409_DEMODLOCKING:
612 if (*status & FE_HAS_VITERBI)
613 *status |= FE_HAS_CARRIER | FE_HAS_SIGNAL;
614 break;
615 case S5H1409_TUNERLOCKING:
616 /* Get the tuner status */
617 if (fe->ops.tuner_ops.get_status) {
Michael Krufky3873dd02007-07-28 20:02:55 -0300618 if (fe->ops.i2c_gate_ctrl)
619 fe->ops.i2c_gate_ctrl(fe, 1);
Steven Toth89885552007-07-28 19:34:52 -0300620
621 fe->ops.tuner_ops.get_status(fe, &tuner_status);
622
Michael Krufky3873dd02007-07-28 20:02:55 -0300623 if (fe->ops.i2c_gate_ctrl)
624 fe->ops.i2c_gate_ctrl(fe, 0);
Steven Toth89885552007-07-28 19:34:52 -0300625 }
626 if (tuner_status)
627 *status |= FE_HAS_CARRIER | FE_HAS_SIGNAL;
628 break;
629 }
630
631 dprintk("%s() status 0x%08x\n", __FUNCTION__, *status);
632
633 return 0;
634}
635
636static int s5h1409_qam256_lookup_snr(struct dvb_frontend* fe, u16* snr, u16 v)
637{
638 int i, ret = -EINVAL;
639 dprintk("%s()\n", __FUNCTION__);
640
Michael Krufkya45c9272007-03-21 12:03:23 -0300641 for (i=0; i < ARRAY_SIZE(qam256_snr_tab); i++) {
Steven Toth89885552007-07-28 19:34:52 -0300642 if (v < qam256_snr_tab[i].val) {
643 *snr = qam256_snr_tab[i].data;
644 ret = 0;
645 break;
646 }
647 }
648 return ret;
649}
650
651static int s5h1409_qam64_lookup_snr(struct dvb_frontend* fe, u16* snr, u16 v)
652{
653 int i, ret = -EINVAL;
654 dprintk("%s()\n", __FUNCTION__);
655
Michael Krufkya45c9272007-03-21 12:03:23 -0300656 for (i=0; i < ARRAY_SIZE(qam64_snr_tab); i++) {
Steven Toth89885552007-07-28 19:34:52 -0300657 if (v < qam64_snr_tab[i].val) {
658 *snr = qam64_snr_tab[i].data;
659 ret = 0;
660 break;
661 }
662 }
663 return ret;
664}
665
666static int s5h1409_vsb_lookup_snr(struct dvb_frontend* fe, u16* snr, u16 v)
667{
668 int i, ret = -EINVAL;
669 dprintk("%s()\n", __FUNCTION__);
670
Michael Krufkya45c9272007-03-21 12:03:23 -0300671 for (i=0; i < ARRAY_SIZE(vsb_snr_tab); i++) {
Steven Toth89885552007-07-28 19:34:52 -0300672 if (v > vsb_snr_tab[i].val) {
673 *snr = vsb_snr_tab[i].data;
674 ret = 0;
675 break;
676 }
677 }
678 dprintk("%s() snr=%d\n", __FUNCTION__, *snr);
679 return ret;
680}
681
682static int s5h1409_read_snr(struct dvb_frontend* fe, u16* snr)
683{
684 struct s5h1409_state* state = fe->demodulator_priv;
685 u16 reg;
686 dprintk("%s()\n", __FUNCTION__);
687
Steven Toth89885552007-07-28 19:34:52 -0300688 switch(state->current_modulation) {
689 case QAM_64:
Steven Toth23003172007-12-12 22:14:00 -0300690 reg = s5h1409_readreg(state, 0xf0) & 0xff;
Steven Toth89885552007-07-28 19:34:52 -0300691 return s5h1409_qam64_lookup_snr(fe, snr, reg);
692 case QAM_256:
Steven Toth23003172007-12-12 22:14:00 -0300693 reg = s5h1409_readreg(state, 0xf0) & 0xff;
Steven Toth89885552007-07-28 19:34:52 -0300694 return s5h1409_qam256_lookup_snr(fe, snr, reg);
695 case VSB_8:
Steven Toth23003172007-12-12 22:14:00 -0300696 reg = s5h1409_readreg(state, 0xf1) & 0x3ff;
Steven Toth89885552007-07-28 19:34:52 -0300697 return s5h1409_vsb_lookup_snr(fe, snr, reg);
698 default:
699 break;
700 }
701
702 return -EINVAL;
703}
704
Michael Krufky3873dd02007-07-28 20:02:55 -0300705static int s5h1409_read_signal_strength(struct dvb_frontend* fe,
706 u16* signal_strength)
Steven Toth89885552007-07-28 19:34:52 -0300707{
708 return s5h1409_read_snr(fe, signal_strength);
709}
710
711static int s5h1409_read_ucblocks(struct dvb_frontend* fe, u32* ucblocks)
712{
713 struct s5h1409_state* state = fe->demodulator_priv;
714
715 *ucblocks = s5h1409_readreg(state, 0xb5);
716
717 return 0;
718}
719
720static int s5h1409_read_ber(struct dvb_frontend* fe, u32* ber)
721{
722 return s5h1409_read_ucblocks(fe, ber);
723}
724
Michael Krufky3873dd02007-07-28 20:02:55 -0300725static int s5h1409_get_frontend(struct dvb_frontend* fe,
726 struct dvb_frontend_parameters *p)
Steven Toth89885552007-07-28 19:34:52 -0300727{
728 struct s5h1409_state* state = fe->demodulator_priv;
729
730 p->frequency = state->current_frequency;
731 p->u.vsb.modulation = state->current_modulation;
732
733 return 0;
734}
735
Michael Krufky3873dd02007-07-28 20:02:55 -0300736static int s5h1409_get_tune_settings(struct dvb_frontend* fe,
737 struct dvb_frontend_tune_settings *tune)
Steven Toth89885552007-07-28 19:34:52 -0300738{
739 tune->min_delay_ms = 1000;
740 return 0;
741}
742
743static void s5h1409_release(struct dvb_frontend* fe)
744{
745 struct s5h1409_state* state = fe->demodulator_priv;
746 kfree(state);
747}
748
749static struct dvb_frontend_ops s5h1409_ops;
750
751struct dvb_frontend* s5h1409_attach(const struct s5h1409_config* config,
752 struct i2c_adapter* i2c)
753{
754 struct s5h1409_state* state = NULL;
755
756 /* allocate memory for the internal state */
757 state = kmalloc(sizeof(struct s5h1409_state), GFP_KERNEL);
758 if (state == NULL)
759 goto error;
760
761 /* setup the state */
762 state->config = config;
763 state->i2c = i2c;
764 state->current_modulation = 0;
Michael Krufky2b032382007-12-13 10:04:10 -0300765 state->if_freq = S5H1409_VSB_IF_FREQ;
Steven Toth89885552007-07-28 19:34:52 -0300766
767 /* check if the demod exists */
768 if (s5h1409_readreg(state, 0x04) != 0x0066)
769 goto error;
770
771 /* create dvb_frontend */
Michael Krufky3873dd02007-07-28 20:02:55 -0300772 memcpy(&state->frontend.ops, &s5h1409_ops,
773 sizeof(struct dvb_frontend_ops));
Steven Toth89885552007-07-28 19:34:52 -0300774 state->frontend.demodulator_priv = state;
775
776 /* Note: Leaving the I2C gate open here. */
777 s5h1409_writereg(state, 0xf3, 1);
778
779 return &state->frontend;
780
781error:
782 kfree(state);
783 return NULL;
784}
785
786static struct dvb_frontend_ops s5h1409_ops = {
787
788 .info = {
789 .name = "Samsung S5H1409 QAM/8VSB Frontend",
790 .type = FE_ATSC,
791 .frequency_min = 54000000,
792 .frequency_max = 858000000,
793 .frequency_stepsize = 62500,
794 .caps = FE_CAN_QAM_64 | FE_CAN_QAM_256 | FE_CAN_8VSB
795 },
796
797 .init = s5h1409_init,
798 .i2c_gate_ctrl = s5h1409_i2c_gate_ctrl,
799 .set_frontend = s5h1409_set_frontend,
800 .get_frontend = s5h1409_get_frontend,
801 .get_tune_settings = s5h1409_get_tune_settings,
802 .read_status = s5h1409_read_status,
803 .read_ber = s5h1409_read_ber,
804 .read_signal_strength = s5h1409_read_signal_strength,
805 .read_snr = s5h1409_read_snr,
806 .read_ucblocks = s5h1409_read_ucblocks,
807 .release = s5h1409_release,
808};
809
810module_param(debug, int, 0644);
811MODULE_PARM_DESC(debug, "Enable verbose debug messages");
812
813MODULE_DESCRIPTION("Samsung S5H1409 QAM-B/ATSC Demodulator driver");
814MODULE_AUTHOR("Steven Toth");
815MODULE_LICENSE("GPL");
816
817EXPORT_SYMBOL(s5h1409_attach);
Michael Krufky3873dd02007-07-28 20:02:55 -0300818
819/*
820 * Local variables:
821 * c-basic-offset: 8
822 */