blob: 85fba581c5ab112e378af02edde300d19460fe1a [file] [log] [blame]
Steven Toth89885552007-07-28 19:34:52 -03001/*
2 Samsung S5H1409 VSB/QAM demodulator driver
3
Steven Toth6d897612008-09-03 17:12:12 -03004 Copyright (C) 2006 Steven Toth <stoth@linuxtv.org>
Steven Toth89885552007-07-28 19:34:52 -03005
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"
Steven Toth89885552007-07-28 19:34:52 -030029#include "s5h1409.h"
30
31struct s5h1409_state {
32
Steven Tothb7709c0d2008-10-16 20:27:11 -030033 struct i2c_adapter *i2c;
Steven Toth89885552007-07-28 19:34:52 -030034
35 /* configuration settings */
Steven Tothb7709c0d2008-10-16 20:27:11 -030036 const struct s5h1409_config *config;
Steven Toth89885552007-07-28 19:34:52 -030037
38 struct dvb_frontend frontend;
39
40 /* previous uncorrected block counter */
41 fe_modulation_t current_modulation;
42
43 u32 current_frequency;
Michael Krufky2b032382007-12-13 10:04:10 -030044 int if_freq;
Steven Tothdd7d5012007-10-24 21:05:51 -030045
46 u32 is_qam_locked;
47 u32 qam_state;
Steven Toth89885552007-07-28 19:34:52 -030048};
49
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030050static int debug;
Steven Tothb7709c0d2008-10-16 20:27:11 -030051module_param(debug, int, 0644);
52MODULE_PARM_DESC(debug, "Enable verbose debug messages");
53
Steven Toth89885552007-07-28 19:34:52 -030054#define dprintk if (debug) printk
55
56/* Register values to initialise the demod, this will set VSB by default */
57static struct init_tab {
58 u8 reg;
59 u16 data;
60} init_tab[] = {
61 { 0x00, 0x0071, },
62 { 0x01, 0x3213, },
63 { 0x09, 0x0025, },
64 { 0x1c, 0x001d, },
65 { 0x1f, 0x002d, },
66 { 0x20, 0x001d, },
67 { 0x22, 0x0022, },
68 { 0x23, 0x0020, },
69 { 0x29, 0x110f, },
70 { 0x2a, 0x10b4, },
71 { 0x2b, 0x10ae, },
72 { 0x2c, 0x0031, },
73 { 0x31, 0x010d, },
74 { 0x32, 0x0100, },
75 { 0x44, 0x0510, },
76 { 0x54, 0x0104, },
77 { 0x58, 0x2222, },
78 { 0x59, 0x1162, },
79 { 0x5a, 0x3211, },
80 { 0x5d, 0x0370, },
81 { 0x5e, 0x0296, },
82 { 0x61, 0x0010, },
83 { 0x63, 0x4a00, },
84 { 0x65, 0x0800, },
85 { 0x71, 0x0003, },
86 { 0x72, 0x0470, },
87 { 0x81, 0x0002, },
88 { 0x82, 0x0600, },
89 { 0x86, 0x0002, },
90 { 0x8a, 0x2c38, },
91 { 0x8b, 0x2a37, },
92 { 0x92, 0x302f, },
93 { 0x93, 0x3332, },
94 { 0x96, 0x000c, },
95 { 0x99, 0x0101, },
96 { 0x9c, 0x2e37, },
97 { 0x9d, 0x2c37, },
98 { 0x9e, 0x2c37, },
99 { 0xab, 0x0100, },
100 { 0xac, 0x1003, },
101 { 0xad, 0x103f, },
102 { 0xe2, 0x0100, },
Steven Tothdfc1c082008-01-15 21:35:22 -0300103 { 0xe3, 0x1000, },
Steven Toth89885552007-07-28 19:34:52 -0300104 { 0x28, 0x1010, },
105 { 0xb1, 0x000e, },
106};
107
108/* VSB SNR lookup table */
109static struct vsb_snr_tab {
110 u16 val;
111 u16 data;
112} vsb_snr_tab[] = {
Steven Toth23003172007-12-12 22:14:00 -0300113 { 924, 300, },
Steven Toth89885552007-07-28 19:34:52 -0300114 { 923, 300, },
115 { 918, 295, },
116 { 915, 290, },
117 { 911, 285, },
118 { 906, 280, },
119 { 901, 275, },
120 { 896, 270, },
121 { 891, 265, },
122 { 885, 260, },
123 { 879, 255, },
124 { 873, 250, },
125 { 864, 245, },
126 { 858, 240, },
127 { 850, 235, },
128 { 841, 230, },
129 { 832, 225, },
130 { 823, 220, },
131 { 812, 215, },
132 { 802, 210, },
133 { 788, 205, },
134 { 778, 200, },
135 { 767, 195, },
136 { 753, 190, },
137 { 740, 185, },
138 { 725, 180, },
139 { 707, 175, },
140 { 689, 170, },
141 { 671, 165, },
142 { 656, 160, },
143 { 637, 155, },
144 { 616, 150, },
145 { 542, 145, },
146 { 519, 140, },
147 { 507, 135, },
148 { 497, 130, },
149 { 492, 125, },
150 { 474, 120, },
151 { 300, 111, },
152 { 0, 0, },
153};
154
155/* QAM64 SNR lookup table */
156static struct qam64_snr_tab {
157 u16 val;
158 u16 data;
159} qam64_snr_tab[] = {
Steven Toth23003172007-12-12 22:14:00 -0300160 { 1, 0, },
Steven Toth89885552007-07-28 19:34:52 -0300161 { 12, 300, },
162 { 15, 290, },
163 { 18, 280, },
164 { 22, 270, },
165 { 23, 268, },
166 { 24, 266, },
167 { 25, 264, },
168 { 27, 262, },
169 { 28, 260, },
170 { 29, 258, },
171 { 30, 256, },
172 { 32, 254, },
173 { 33, 252, },
174 { 34, 250, },
175 { 35, 249, },
176 { 36, 248, },
177 { 37, 247, },
178 { 38, 246, },
179 { 39, 245, },
180 { 40, 244, },
181 { 41, 243, },
182 { 42, 241, },
183 { 43, 240, },
184 { 44, 239, },
185 { 45, 238, },
186 { 46, 237, },
187 { 47, 236, },
188 { 48, 235, },
189 { 49, 234, },
190 { 50, 233, },
191 { 51, 232, },
192 { 52, 231, },
193 { 53, 230, },
194 { 55, 229, },
195 { 56, 228, },
196 { 57, 227, },
197 { 58, 226, },
198 { 59, 225, },
199 { 60, 224, },
200 { 62, 223, },
201 { 63, 222, },
202 { 65, 221, },
203 { 66, 220, },
204 { 68, 219, },
205 { 69, 218, },
206 { 70, 217, },
207 { 72, 216, },
208 { 73, 215, },
209 { 75, 214, },
210 { 76, 213, },
211 { 78, 212, },
212 { 80, 211, },
213 { 81, 210, },
214 { 83, 209, },
215 { 84, 208, },
216 { 85, 207, },
217 { 87, 206, },
218 { 89, 205, },
219 { 91, 204, },
220 { 93, 203, },
221 { 95, 202, },
222 { 96, 201, },
223 { 104, 200, },
Steven Toth23003172007-12-12 22:14:00 -0300224 { 255, 0, },
Steven Toth89885552007-07-28 19:34:52 -0300225};
226
227/* QAM256 SNR lookup table */
228static struct qam256_snr_tab {
229 u16 val;
230 u16 data;
231} qam256_snr_tab[] = {
Steven Toth23003172007-12-12 22:14:00 -0300232 { 1, 0, },
Steven Toth89885552007-07-28 19:34:52 -0300233 { 12, 400, },
234 { 13, 390, },
235 { 15, 380, },
236 { 17, 360, },
237 { 19, 350, },
238 { 22, 348, },
239 { 23, 346, },
240 { 24, 344, },
241 { 25, 342, },
242 { 26, 340, },
243 { 27, 336, },
244 { 28, 334, },
245 { 29, 332, },
246 { 30, 330, },
247 { 31, 328, },
248 { 32, 326, },
249 { 33, 325, },
250 { 34, 322, },
251 { 35, 320, },
252 { 37, 318, },
253 { 39, 316, },
254 { 40, 314, },
255 { 41, 312, },
256 { 42, 310, },
257 { 43, 308, },
258 { 46, 306, },
259 { 47, 304, },
260 { 49, 302, },
261 { 51, 300, },
262 { 53, 298, },
263 { 54, 297, },
264 { 55, 296, },
265 { 56, 295, },
266 { 57, 294, },
267 { 59, 293, },
268 { 60, 292, },
269 { 61, 291, },
270 { 63, 290, },
271 { 64, 289, },
272 { 65, 288, },
273 { 66, 287, },
274 { 68, 286, },
275 { 69, 285, },
276 { 71, 284, },
277 { 72, 283, },
278 { 74, 282, },
279 { 75, 281, },
280 { 76, 280, },
281 { 77, 279, },
282 { 78, 278, },
283 { 81, 277, },
284 { 83, 276, },
285 { 84, 275, },
286 { 86, 274, },
287 { 87, 273, },
288 { 89, 272, },
289 { 90, 271, },
290 { 92, 270, },
291 { 93, 269, },
292 { 95, 268, },
293 { 96, 267, },
294 { 98, 266, },
295 { 100, 265, },
296 { 102, 264, },
297 { 104, 263, },
298 { 105, 262, },
299 { 106, 261, },
300 { 110, 260, },
Steven Toth23003172007-12-12 22:14:00 -0300301 { 255, 0, },
Steven Toth89885552007-07-28 19:34:52 -0300302};
303
304/* 8 bit registers, 16 bit values */
Steven Tothb7709c0d2008-10-16 20:27:11 -0300305static int s5h1409_writereg(struct s5h1409_state *state, u8 reg, u16 data)
Steven Toth89885552007-07-28 19:34:52 -0300306{
307 int ret;
Steven Tothb7709c0d2008-10-16 20:27:11 -0300308 u8 buf[] = { reg, data >> 8, data & 0xff };
Steven Toth89885552007-07-28 19:34:52 -0300309
Michael Krufky3873dd02007-07-28 20:02:55 -0300310 struct i2c_msg msg = { .addr = state->config->demod_address,
311 .flags = 0, .buf = buf, .len = 3 };
Steven Toth89885552007-07-28 19:34:52 -0300312
313 ret = i2c_transfer(state->i2c, &msg, 1);
314
315 if (ret != 1)
Steven Tothb7709c0d2008-10-16 20:27:11 -0300316 printk(KERN_ERR "%s: error (reg == 0x%02x, val == 0x%04x, "
Harvey Harrison271ddbf2008-04-08 23:20:00 -0300317 "ret == %i)\n", __func__, reg, data, ret);
Steven Toth89885552007-07-28 19:34:52 -0300318
319 return (ret != 1) ? -1 : 0;
320}
321
Steven Tothb7709c0d2008-10-16 20:27:11 -0300322static u16 s5h1409_readreg(struct s5h1409_state *state, u8 reg)
Steven Toth89885552007-07-28 19:34:52 -0300323{
324 int ret;
Steven Tothb7709c0d2008-10-16 20:27:11 -0300325 u8 b0[] = { reg };
326 u8 b1[] = { 0, 0 };
Steven Toth89885552007-07-28 19:34:52 -0300327
Steven Tothb7709c0d2008-10-16 20:27:11 -0300328 struct i2c_msg msg[] = {
Michael Krufky3873dd02007-07-28 20:02:55 -0300329 { .addr = state->config->demod_address, .flags = 0,
330 .buf = b0, .len = 1 },
331 { .addr = state->config->demod_address, .flags = I2C_M_RD,
332 .buf = b1, .len = 2 } };
Steven Toth89885552007-07-28 19:34:52 -0300333
334 ret = i2c_transfer(state->i2c, msg, 2);
335
336 if (ret != 2)
Harvey Harrison271ddbf2008-04-08 23:20:00 -0300337 printk("%s: readreg error (ret == %i)\n", __func__, ret);
Steven Toth89885552007-07-28 19:34:52 -0300338 return (b1[0] << 8) | b1[1];
339}
340
Steven Tothb7709c0d2008-10-16 20:27:11 -0300341static int s5h1409_softreset(struct dvb_frontend *fe)
Steven Toth89885552007-07-28 19:34:52 -0300342{
Steven Tothb7709c0d2008-10-16 20:27:11 -0300343 struct s5h1409_state *state = fe->demodulator_priv;
Steven Toth89885552007-07-28 19:34:52 -0300344
Harvey Harrison271ddbf2008-04-08 23:20:00 -0300345 dprintk("%s()\n", __func__);
Steven Toth89885552007-07-28 19:34:52 -0300346
347 s5h1409_writereg(state, 0xf5, 0);
348 s5h1409_writereg(state, 0xf5, 1);
Steven Tothdd7d5012007-10-24 21:05:51 -0300349 state->is_qam_locked = 0;
350 state->qam_state = 0;
Steven Toth89885552007-07-28 19:34:52 -0300351 return 0;
352}
353
Michael Krufky2b032382007-12-13 10:04:10 -0300354#define S5H1409_VSB_IF_FREQ 5380
Steven Tothb7709c0d2008-10-16 20:27:11 -0300355#define S5H1409_QAM_IF_FREQ (state->config->qam_if)
Michael Krufky2b032382007-12-13 10:04:10 -0300356
Steven Tothb7709c0d2008-10-16 20:27:11 -0300357static int s5h1409_set_if_freq(struct dvb_frontend *fe, int KHz)
Steven Toth89885552007-07-28 19:34:52 -0300358{
Steven Tothb7709c0d2008-10-16 20:27:11 -0300359 struct s5h1409_state *state = fe->demodulator_priv;
Steven Toth89885552007-07-28 19:34:52 -0300360
Harvey Harrison271ddbf2008-04-08 23:20:00 -0300361 dprintk("%s(%d KHz)\n", __func__, KHz);
Steven Toth89885552007-07-28 19:34:52 -0300362
Michael Krufky6b7daa82007-12-13 10:11:49 -0300363 switch (KHz) {
364 case 4000:
Steven Tothdd7d5012007-10-24 21:05:51 -0300365 s5h1409_writereg(state, 0x87, 0x014b);
366 s5h1409_writereg(state, 0x88, 0x0cb5);
367 s5h1409_writereg(state, 0x89, 0x03e2);
Michael Krufky6b7daa82007-12-13 10:11:49 -0300368 break;
369 case 5380:
370 case 44000:
371 default:
372 s5h1409_writereg(state, 0x87, 0x01be);
373 s5h1409_writereg(state, 0x88, 0x0436);
374 s5h1409_writereg(state, 0x89, 0x054d);
375 break;
Steven Toth89885552007-07-28 19:34:52 -0300376 }
Michael Krufky6b7daa82007-12-13 10:11:49 -0300377 state->if_freq = KHz;
Steven Toth89885552007-07-28 19:34:52 -0300378
Michael Krufky6b7daa82007-12-13 10:11:49 -0300379 return 0;
Steven Toth89885552007-07-28 19:34:52 -0300380}
381
Steven Tothb7709c0d2008-10-16 20:27:11 -0300382static int s5h1409_set_spectralinversion(struct dvb_frontend *fe, int inverted)
Steven Toth89885552007-07-28 19:34:52 -0300383{
Steven Tothb7709c0d2008-10-16 20:27:11 -0300384 struct s5h1409_state *state = fe->demodulator_priv;
Steven Toth89885552007-07-28 19:34:52 -0300385
Harvey Harrison271ddbf2008-04-08 23:20:00 -0300386 dprintk("%s(%d)\n", __func__, inverted);
Steven Toth89885552007-07-28 19:34:52 -0300387
Steven Tothb7709c0d2008-10-16 20:27:11 -0300388 if (inverted == 1)
Steven Toth89885552007-07-28 19:34:52 -0300389 return s5h1409_writereg(state, 0x1b, 0x1101); /* Inverted */
390 else
391 return s5h1409_writereg(state, 0x1b, 0x0110); /* Normal */
392}
393
Steven Tothb7709c0d2008-10-16 20:27:11 -0300394static int s5h1409_enable_modulation(struct dvb_frontend *fe,
Michael Krufky3873dd02007-07-28 20:02:55 -0300395 fe_modulation_t m)
Steven Toth89885552007-07-28 19:34:52 -0300396{
Steven Tothb7709c0d2008-10-16 20:27:11 -0300397 struct s5h1409_state *state = fe->demodulator_priv;
Steven Toth89885552007-07-28 19:34:52 -0300398
Harvey Harrison271ddbf2008-04-08 23:20:00 -0300399 dprintk("%s(0x%08x)\n", __func__, m);
Steven Toth89885552007-07-28 19:34:52 -0300400
Steven Tothb7709c0d2008-10-16 20:27:11 -0300401 switch (m) {
Steven Toth89885552007-07-28 19:34:52 -0300402 case VSB_8:
Harvey Harrison271ddbf2008-04-08 23:20:00 -0300403 dprintk("%s() VSB_8\n", __func__);
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 Toth4fc85c72008-09-03 17:12:12 -0300410 case QAM_AUTO:
Harvey Harrison271ddbf2008-04-08 23:20:00 -0300411 dprintk("%s() QAM_AUTO (64/256)\n", __func__);
Michael Krufky2b032382007-12-13 10:04:10 -0300412 if (state->if_freq != S5H1409_QAM_IF_FREQ)
413 s5h1409_set_if_freq(fe, S5H1409_QAM_IF_FREQ);
Steven Toth89885552007-07-28 19:34:52 -0300414 s5h1409_writereg(state, 0xf4, 1);
Steven Tothdd7d5012007-10-24 21:05:51 -0300415 s5h1409_writereg(state, 0x85, 0x110);
Steven Toth89885552007-07-28 19:34:52 -0300416 break;
417 default:
Harvey Harrison271ddbf2008-04-08 23:20:00 -0300418 dprintk("%s() Invalid modulation\n", __func__);
Steven Toth89885552007-07-28 19:34:52 -0300419 return -EINVAL;
420 }
421
422 state->current_modulation = m;
423 s5h1409_softreset(fe);
424
425 return 0;
426}
427
Steven Tothb7709c0d2008-10-16 20:27:11 -0300428static int s5h1409_i2c_gate_ctrl(struct dvb_frontend *fe, int enable)
Steven Toth89885552007-07-28 19:34:52 -0300429{
Steven Tothb7709c0d2008-10-16 20:27:11 -0300430 struct s5h1409_state *state = fe->demodulator_priv;
Steven Toth89885552007-07-28 19:34:52 -0300431
Harvey Harrison271ddbf2008-04-08 23:20:00 -0300432 dprintk("%s(%d)\n", __func__, enable);
Steven Toth89885552007-07-28 19:34:52 -0300433
434 if (enable)
435 return s5h1409_writereg(state, 0xf3, 1);
436 else
437 return s5h1409_writereg(state, 0xf3, 0);
438}
439
Steven Tothb7709c0d2008-10-16 20:27:11 -0300440static int s5h1409_set_gpio(struct dvb_frontend *fe, int enable)
Steven Toth89885552007-07-28 19:34:52 -0300441{
Steven Tothb7709c0d2008-10-16 20:27:11 -0300442 struct s5h1409_state *state = fe->demodulator_priv;
Steven Toth89885552007-07-28 19:34:52 -0300443
Harvey Harrison271ddbf2008-04-08 23:20:00 -0300444 dprintk("%s(%d)\n", __func__, enable);
Steven Toth89885552007-07-28 19:34:52 -0300445
446 if (enable)
Steven Tothdfc1c082008-01-15 21:35:22 -0300447 return s5h1409_writereg(state, 0xe3,
448 s5h1409_readreg(state, 0xe3) | 0x1100);
Steven Toth89885552007-07-28 19:34:52 -0300449 else
Steven Tothdfc1c082008-01-15 21:35:22 -0300450 return s5h1409_writereg(state, 0xe3,
Michael Krufky8e08af32008-04-02 22:14:41 -0300451 s5h1409_readreg(state, 0xe3) & 0xfeff);
Steven Toth89885552007-07-28 19:34:52 -0300452}
453
Steven Tothb7709c0d2008-10-16 20:27:11 -0300454static int s5h1409_sleep(struct dvb_frontend *fe, int enable)
Steven Toth89885552007-07-28 19:34:52 -0300455{
Steven Tothb7709c0d2008-10-16 20:27:11 -0300456 struct s5h1409_state *state = fe->demodulator_priv;
Steven Toth89885552007-07-28 19:34:52 -0300457
Harvey Harrison271ddbf2008-04-08 23:20:00 -0300458 dprintk("%s(%d)\n", __func__, enable);
Steven Toth89885552007-07-28 19:34:52 -0300459
460 return s5h1409_writereg(state, 0xf2, enable);
461}
462
Steven Tothb7709c0d2008-10-16 20:27:11 -0300463static int s5h1409_register_reset(struct dvb_frontend *fe)
Steven Toth89885552007-07-28 19:34:52 -0300464{
Steven Tothb7709c0d2008-10-16 20:27:11 -0300465 struct s5h1409_state *state = fe->demodulator_priv;
Steven Toth89885552007-07-28 19:34:52 -0300466
Harvey Harrison271ddbf2008-04-08 23:20:00 -0300467 dprintk("%s()\n", __func__);
Steven Toth89885552007-07-28 19:34:52 -0300468
469 return s5h1409_writereg(state, 0xfa, 0);
470}
471
Steven Tothdd7d5012007-10-24 21:05:51 -0300472static void s5h1409_set_qam_amhum_mode(struct dvb_frontend *fe)
473{
474 struct s5h1409_state *state = fe->demodulator_priv;
475 u16 reg;
476
477 if (state->is_qam_locked)
478 return;
479
480 /* QAM EQ lock check */
481 reg = s5h1409_readreg(state, 0xf0);
482
483 if ((reg >> 13) & 0x1) {
484
485 state->is_qam_locked = 1;
486 reg &= 0xff;
487
488 s5h1409_writereg(state, 0x96, 0x00c);
Steven Tothb7709c0d2008-10-16 20:27:11 -0300489 if ((reg < 0x38) || (reg > 0x68)) {
Steven Tothdd7d5012007-10-24 21:05:51 -0300490 s5h1409_writereg(state, 0x93, 0x3332);
491 s5h1409_writereg(state, 0x9e, 0x2c37);
492 } else {
493 s5h1409_writereg(state, 0x93, 0x3130);
494 s5h1409_writereg(state, 0x9e, 0x2836);
495 }
496
497 } else {
498 s5h1409_writereg(state, 0x96, 0x0008);
499 s5h1409_writereg(state, 0x93, 0x3332);
500 s5h1409_writereg(state, 0x9e, 0x2c37);
501 }
502}
503
504static void s5h1409_set_qam_interleave_mode(struct dvb_frontend *fe)
505{
506 struct s5h1409_state *state = fe->demodulator_priv;
507 u16 reg, reg1, reg2;
508
509 reg = s5h1409_readreg(state, 0xf1);
510
511 /* Master lock */
512 if ((reg >> 15) & 0x1) {
513 if (state->qam_state != 2) {
514 state->qam_state = 2;
515 reg1 = s5h1409_readreg(state, 0xb2);
516 reg2 = s5h1409_readreg(state, 0xad);
517
518 s5h1409_writereg(state, 0x96, 0x20);
519 s5h1409_writereg(state, 0xad,
Steven Tothb7709c0d2008-10-16 20:27:11 -0300520 (((reg1 & 0xf000) >> 4) | (reg2 & 0xf0ff)));
Steven Tothdfc1c082008-01-15 21:35:22 -0300521 s5h1409_writereg(state, 0xab,
522 s5h1409_readreg(state, 0xab) & 0xeffe);
Steven Tothdd7d5012007-10-24 21:05:51 -0300523 }
524 } else {
525 if (state->qam_state != 1) {
526 state->qam_state = 1;
527 s5h1409_writereg(state, 0x96, 0x08);
Steven Tothdfc1c082008-01-15 21:35:22 -0300528 s5h1409_writereg(state, 0xab,
529 s5h1409_readreg(state, 0xab) | 0x1001);
Steven Tothdd7d5012007-10-24 21:05:51 -0300530 }
531 }
532}
533
Steven Toth89885552007-07-28 19:34:52 -0300534/* Talk to the demod, set the FEC, GUARD, QAM settings etc */
Steven Tothb7709c0d2008-10-16 20:27:11 -0300535static int s5h1409_set_frontend(struct dvb_frontend *fe,
Michael Krufky3873dd02007-07-28 20:02:55 -0300536 struct dvb_frontend_parameters *p)
Steven Toth89885552007-07-28 19:34:52 -0300537{
Steven Tothb7709c0d2008-10-16 20:27:11 -0300538 struct s5h1409_state *state = fe->demodulator_priv;
Steven Toth89885552007-07-28 19:34:52 -0300539
Harvey Harrison271ddbf2008-04-08 23:20:00 -0300540 dprintk("%s(frequency=%d)\n", __func__, p->frequency);
Steven Toth89885552007-07-28 19:34:52 -0300541
542 s5h1409_softreset(fe);
543
544 state->current_frequency = p->frequency;
545
546 s5h1409_enable_modulation(fe, p->u.vsb.modulation);
547
548 if (fe->ops.tuner_ops.set_params) {
Steven Tothb7709c0d2008-10-16 20:27:11 -0300549 if (fe->ops.i2c_gate_ctrl)
550 fe->ops.i2c_gate_ctrl(fe, 1);
Steven Toth89885552007-07-28 19:34:52 -0300551 fe->ops.tuner_ops.set_params(fe, p);
Steven Tothb7709c0d2008-10-16 20:27:11 -0300552 if (fe->ops.i2c_gate_ctrl)
553 fe->ops.i2c_gate_ctrl(fe, 0);
Steven Toth89885552007-07-28 19:34:52 -0300554 }
555
Steven Tothdd7d5012007-10-24 21:05:51 -0300556 /* Optimize the demod for QAM */
557 if (p->u.vsb.modulation != VSB_8) {
558 s5h1409_set_qam_amhum_mode(fe);
559 s5h1409_set_qam_interleave_mode(fe);
560 }
561
Devin Heitmueller67e70ba2009-01-26 03:07:59 -0300562 /* Issue a reset to the demod so it knows to resync against the
563 newly tuned frequency */
564 s5h1409_softreset(fe);
565
Steven Toth89885552007-07-28 19:34:52 -0300566 return 0;
567}
568
Steven Tothdfc1c082008-01-15 21:35:22 -0300569static int s5h1409_set_mpeg_timing(struct dvb_frontend *fe, int mode)
570{
571 struct s5h1409_state *state = fe->demodulator_priv;
572 u16 val;
573
Harvey Harrison271ddbf2008-04-08 23:20:00 -0300574 dprintk("%s(%d)\n", __func__, mode);
Steven Tothdfc1c082008-01-15 21:35:22 -0300575
576 val = s5h1409_readreg(state, 0xac) & 0xcfff;
577 switch (mode) {
578 case S5H1409_MPEGTIMING_CONTINOUS_INVERTING_CLOCK:
579 val |= 0x0000;
580 break;
581 case S5H1409_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK:
Harvey Harrison271ddbf2008-04-08 23:20:00 -0300582 dprintk("%s(%d) Mode1 or Defaulting\n", __func__, mode);
Steven Tothdfc1c082008-01-15 21:35:22 -0300583 val |= 0x1000;
584 break;
585 case S5H1409_MPEGTIMING_NONCONTINOUS_INVERTING_CLOCK:
586 val |= 0x2000;
587 break;
588 case S5H1409_MPEGTIMING_NONCONTINOUS_NONINVERTING_CLOCK:
589 val |= 0x3000;
590 break;
591 default:
592 return -EINVAL;
593 }
594
595 /* Configure MPEG Signal Timing charactistics */
596 return s5h1409_writereg(state, 0xac, val);
597}
598
Steven Toth89885552007-07-28 19:34:52 -0300599/* Reset the demod hardware and reset all of the configuration registers
600 to a default state. */
Steven Tothb7709c0d2008-10-16 20:27:11 -0300601static int s5h1409_init(struct dvb_frontend *fe)
Steven Toth89885552007-07-28 19:34:52 -0300602{
603 int i;
604
Steven Tothb7709c0d2008-10-16 20:27:11 -0300605 struct s5h1409_state *state = fe->demodulator_priv;
Harvey Harrison271ddbf2008-04-08 23:20:00 -0300606 dprintk("%s()\n", __func__);
Steven Toth89885552007-07-28 19:34:52 -0300607
608 s5h1409_sleep(fe, 0);
609 s5h1409_register_reset(fe);
610
Steven Tothb7709c0d2008-10-16 20:27:11 -0300611 for (i = 0; i < ARRAY_SIZE(init_tab); i++)
Steven Toth89885552007-07-28 19:34:52 -0300612 s5h1409_writereg(state, init_tab[i].reg, init_tab[i].data);
613
614 /* The datasheet says that after initialisation, VSB is default */
615 state->current_modulation = VSB_8;
616
Devin Heitmuelleraf5c8e12009-10-27 23:33:21 -0300617 /* Optimize for the HVR-1600 if appropriate. Note that some of these
618 may get folded into the generic case after testing with other
619 devices */
620 if (state->config->hvr1600_opt == S5H1409_HVR1600_OPTIMIZE) {
621 /* VSB AGC REF */
622 s5h1409_writereg(state, 0x09, 0x0050);
623
624 /* Unknown but Windows driver does it... */
625 s5h1409_writereg(state, 0x21, 0x0001);
626 s5h1409_writereg(state, 0x50, 0x030e);
627
628 /* QAM AGC REF */
629 s5h1409_writereg(state, 0x82, 0x0800);
630 }
631
Steven Toth89885552007-07-28 19:34:52 -0300632 if (state->config->output_mode == S5H1409_SERIAL_OUTPUT)
Steven Tothdfc1c082008-01-15 21:35:22 -0300633 s5h1409_writereg(state, 0xab,
634 s5h1409_readreg(state, 0xab) | 0x100); /* Serial */
Steven Toth89885552007-07-28 19:34:52 -0300635 else
Steven Tothdfc1c082008-01-15 21:35:22 -0300636 s5h1409_writereg(state, 0xab,
637 s5h1409_readreg(state, 0xab) & 0xfeff); /* Parallel */
Steven Toth89885552007-07-28 19:34:52 -0300638
639 s5h1409_set_spectralinversion(fe, state->config->inversion);
Michael Krufky2b032382007-12-13 10:04:10 -0300640 s5h1409_set_if_freq(fe, state->if_freq);
Steven Toth89885552007-07-28 19:34:52 -0300641 s5h1409_set_gpio(fe, state->config->gpio);
Steven Tothdfc1c082008-01-15 21:35:22 -0300642 s5h1409_set_mpeg_timing(fe, state->config->mpeg_timing);
Steven Toth89885552007-07-28 19:34:52 -0300643 s5h1409_softreset(fe);
644
Steven Tothdd7d5012007-10-24 21:05:51 -0300645 /* Note: Leaving the I2C gate closed. */
646 s5h1409_i2c_gate_ctrl(fe, 0);
Steven Toth89885552007-07-28 19:34:52 -0300647
648 return 0;
649}
650
Steven Tothb7709c0d2008-10-16 20:27:11 -0300651static int s5h1409_read_status(struct dvb_frontend *fe, fe_status_t *status)
Steven Toth89885552007-07-28 19:34:52 -0300652{
Steven Tothb7709c0d2008-10-16 20:27:11 -0300653 struct s5h1409_state *state = fe->demodulator_priv;
Steven Toth89885552007-07-28 19:34:52 -0300654 u16 reg;
655 u32 tuner_status = 0;
656
657 *status = 0;
658
659 /* Get the demodulator status */
660 reg = s5h1409_readreg(state, 0xf1);
Steven Tothb7709c0d2008-10-16 20:27:11 -0300661 if (reg & 0x1000)
Steven Toth89885552007-07-28 19:34:52 -0300662 *status |= FE_HAS_VITERBI;
Steven Tothb7709c0d2008-10-16 20:27:11 -0300663 if (reg & 0x8000)
Steven Toth89885552007-07-28 19:34:52 -0300664 *status |= FE_HAS_LOCK | FE_HAS_SYNC;
665
Steven Tothb7709c0d2008-10-16 20:27:11 -0300666 switch (state->config->status_mode) {
Steven Toth89885552007-07-28 19:34:52 -0300667 case S5H1409_DEMODLOCKING:
668 if (*status & FE_HAS_VITERBI)
669 *status |= FE_HAS_CARRIER | FE_HAS_SIGNAL;
670 break;
671 case S5H1409_TUNERLOCKING:
672 /* Get the tuner status */
673 if (fe->ops.tuner_ops.get_status) {
Michael Krufky3873dd02007-07-28 20:02:55 -0300674 if (fe->ops.i2c_gate_ctrl)
675 fe->ops.i2c_gate_ctrl(fe, 1);
Steven Toth89885552007-07-28 19:34:52 -0300676
677 fe->ops.tuner_ops.get_status(fe, &tuner_status);
678
Michael Krufky3873dd02007-07-28 20:02:55 -0300679 if (fe->ops.i2c_gate_ctrl)
680 fe->ops.i2c_gate_ctrl(fe, 0);
Steven Toth89885552007-07-28 19:34:52 -0300681 }
682 if (tuner_status)
683 *status |= FE_HAS_CARRIER | FE_HAS_SIGNAL;
684 break;
685 }
686
Harvey Harrison271ddbf2008-04-08 23:20:00 -0300687 dprintk("%s() status 0x%08x\n", __func__, *status);
Steven Toth89885552007-07-28 19:34:52 -0300688
689 return 0;
690}
691
Steven Tothb7709c0d2008-10-16 20:27:11 -0300692static int s5h1409_qam256_lookup_snr(struct dvb_frontend *fe, u16 *snr, u16 v)
Steven Toth89885552007-07-28 19:34:52 -0300693{
694 int i, ret = -EINVAL;
Harvey Harrison271ddbf2008-04-08 23:20:00 -0300695 dprintk("%s()\n", __func__);
Steven Toth89885552007-07-28 19:34:52 -0300696
Steven Tothb7709c0d2008-10-16 20:27:11 -0300697 for (i = 0; i < ARRAY_SIZE(qam256_snr_tab); i++) {
Steven Toth89885552007-07-28 19:34:52 -0300698 if (v < qam256_snr_tab[i].val) {
699 *snr = qam256_snr_tab[i].data;
700 ret = 0;
701 break;
702 }
703 }
704 return ret;
705}
706
Steven Tothb7709c0d2008-10-16 20:27:11 -0300707static int s5h1409_qam64_lookup_snr(struct dvb_frontend *fe, u16 *snr, u16 v)
Steven Toth89885552007-07-28 19:34:52 -0300708{
709 int i, ret = -EINVAL;
Harvey Harrison271ddbf2008-04-08 23:20:00 -0300710 dprintk("%s()\n", __func__);
Steven Toth89885552007-07-28 19:34:52 -0300711
Steven Tothb7709c0d2008-10-16 20:27:11 -0300712 for (i = 0; i < ARRAY_SIZE(qam64_snr_tab); i++) {
Steven Toth89885552007-07-28 19:34:52 -0300713 if (v < qam64_snr_tab[i].val) {
714 *snr = qam64_snr_tab[i].data;
715 ret = 0;
716 break;
717 }
718 }
719 return ret;
720}
721
Steven Tothb7709c0d2008-10-16 20:27:11 -0300722static int s5h1409_vsb_lookup_snr(struct dvb_frontend *fe, u16 *snr, u16 v)
Steven Toth89885552007-07-28 19:34:52 -0300723{
724 int i, ret = -EINVAL;
Harvey Harrison271ddbf2008-04-08 23:20:00 -0300725 dprintk("%s()\n", __func__);
Steven Toth89885552007-07-28 19:34:52 -0300726
Steven Tothb7709c0d2008-10-16 20:27:11 -0300727 for (i = 0; i < ARRAY_SIZE(vsb_snr_tab); i++) {
Steven Toth89885552007-07-28 19:34:52 -0300728 if (v > vsb_snr_tab[i].val) {
729 *snr = vsb_snr_tab[i].data;
730 ret = 0;
731 break;
732 }
733 }
Harvey Harrison271ddbf2008-04-08 23:20:00 -0300734 dprintk("%s() snr=%d\n", __func__, *snr);
Steven Toth89885552007-07-28 19:34:52 -0300735 return ret;
736}
737
Steven Tothb7709c0d2008-10-16 20:27:11 -0300738static int s5h1409_read_snr(struct dvb_frontend *fe, u16 *snr)
Steven Toth89885552007-07-28 19:34:52 -0300739{
Steven Tothb7709c0d2008-10-16 20:27:11 -0300740 struct s5h1409_state *state = fe->demodulator_priv;
Steven Toth89885552007-07-28 19:34:52 -0300741 u16 reg;
Harvey Harrison271ddbf2008-04-08 23:20:00 -0300742 dprintk("%s()\n", __func__);
Steven Toth89885552007-07-28 19:34:52 -0300743
Steven Tothb7709c0d2008-10-16 20:27:11 -0300744 switch (state->current_modulation) {
Steven Toth89885552007-07-28 19:34:52 -0300745 case QAM_64:
Steven Toth23003172007-12-12 22:14:00 -0300746 reg = s5h1409_readreg(state, 0xf0) & 0xff;
Steven Toth89885552007-07-28 19:34:52 -0300747 return s5h1409_qam64_lookup_snr(fe, snr, reg);
748 case QAM_256:
Steven Toth23003172007-12-12 22:14:00 -0300749 reg = s5h1409_readreg(state, 0xf0) & 0xff;
Steven Toth89885552007-07-28 19:34:52 -0300750 return s5h1409_qam256_lookup_snr(fe, snr, reg);
751 case VSB_8:
Steven Toth23003172007-12-12 22:14:00 -0300752 reg = s5h1409_readreg(state, 0xf1) & 0x3ff;
Steven Toth89885552007-07-28 19:34:52 -0300753 return s5h1409_vsb_lookup_snr(fe, snr, reg);
754 default:
755 break;
756 }
757
758 return -EINVAL;
759}
760
Steven Tothb7709c0d2008-10-16 20:27:11 -0300761static int s5h1409_read_signal_strength(struct dvb_frontend *fe,
762 u16 *signal_strength)
Steven Toth89885552007-07-28 19:34:52 -0300763{
764 return s5h1409_read_snr(fe, signal_strength);
765}
766
Steven Tothb7709c0d2008-10-16 20:27:11 -0300767static int s5h1409_read_ucblocks(struct dvb_frontend *fe, u32 *ucblocks)
Steven Toth89885552007-07-28 19:34:52 -0300768{
Steven Tothb7709c0d2008-10-16 20:27:11 -0300769 struct s5h1409_state *state = fe->demodulator_priv;
Steven Toth89885552007-07-28 19:34:52 -0300770
771 *ucblocks = s5h1409_readreg(state, 0xb5);
772
773 return 0;
774}
775
Steven Tothb7709c0d2008-10-16 20:27:11 -0300776static int s5h1409_read_ber(struct dvb_frontend *fe, u32 *ber)
Steven Toth89885552007-07-28 19:34:52 -0300777{
778 return s5h1409_read_ucblocks(fe, ber);
779}
780
Steven Tothb7709c0d2008-10-16 20:27:11 -0300781static int s5h1409_get_frontend(struct dvb_frontend *fe,
Michael Krufky3873dd02007-07-28 20:02:55 -0300782 struct dvb_frontend_parameters *p)
Steven Toth89885552007-07-28 19:34:52 -0300783{
Steven Tothb7709c0d2008-10-16 20:27:11 -0300784 struct s5h1409_state *state = fe->demodulator_priv;
Steven Toth89885552007-07-28 19:34:52 -0300785
786 p->frequency = state->current_frequency;
787 p->u.vsb.modulation = state->current_modulation;
788
789 return 0;
790}
791
Steven Tothb7709c0d2008-10-16 20:27:11 -0300792static int s5h1409_get_tune_settings(struct dvb_frontend *fe,
Michael Krufky3873dd02007-07-28 20:02:55 -0300793 struct dvb_frontend_tune_settings *tune)
Steven Toth89885552007-07-28 19:34:52 -0300794{
795 tune->min_delay_ms = 1000;
796 return 0;
797}
798
Steven Tothb7709c0d2008-10-16 20:27:11 -0300799static void s5h1409_release(struct dvb_frontend *fe)
Steven Toth89885552007-07-28 19:34:52 -0300800{
Steven Tothb7709c0d2008-10-16 20:27:11 -0300801 struct s5h1409_state *state = fe->demodulator_priv;
Steven Toth89885552007-07-28 19:34:52 -0300802 kfree(state);
803}
804
805static struct dvb_frontend_ops s5h1409_ops;
806
Steven Tothb7709c0d2008-10-16 20:27:11 -0300807struct dvb_frontend *s5h1409_attach(const struct s5h1409_config *config,
808 struct i2c_adapter *i2c)
Steven Toth89885552007-07-28 19:34:52 -0300809{
Steven Tothb7709c0d2008-10-16 20:27:11 -0300810 struct s5h1409_state *state = NULL;
Steven Totha57ed8a2008-01-10 03:43:11 -0300811 u16 reg;
Steven Toth89885552007-07-28 19:34:52 -0300812
813 /* allocate memory for the internal state */
Matthias Schwarzott084e24a2009-08-10 22:51:01 -0300814 state = kzalloc(sizeof(struct s5h1409_state), GFP_KERNEL);
Steven Toth89885552007-07-28 19:34:52 -0300815 if (state == NULL)
816 goto error;
817
818 /* setup the state */
819 state->config = config;
820 state->i2c = i2c;
821 state->current_modulation = 0;
Michael Krufky2b032382007-12-13 10:04:10 -0300822 state->if_freq = S5H1409_VSB_IF_FREQ;
Steven Toth89885552007-07-28 19:34:52 -0300823
824 /* check if the demod exists */
Steven Totha57ed8a2008-01-10 03:43:11 -0300825 reg = s5h1409_readreg(state, 0x04);
826 if ((reg != 0x0066) && (reg != 0x007f))
Steven Toth89885552007-07-28 19:34:52 -0300827 goto error;
828
829 /* create dvb_frontend */
Michael Krufky3873dd02007-07-28 20:02:55 -0300830 memcpy(&state->frontend.ops, &s5h1409_ops,
831 sizeof(struct dvb_frontend_ops));
Steven Toth89885552007-07-28 19:34:52 -0300832 state->frontend.demodulator_priv = state;
833
Steven Totha57ed8a2008-01-10 03:43:11 -0300834 if (s5h1409_init(&state->frontend) != 0) {
835 printk(KERN_ERR "%s: Failed to initialize correctly\n",
Harvey Harrison271ddbf2008-04-08 23:20:00 -0300836 __func__);
Steven Totha57ed8a2008-01-10 03:43:11 -0300837 goto error;
838 }
839
Steven Toth89885552007-07-28 19:34:52 -0300840 /* Note: Leaving the I2C gate open here. */
Steven Totha57ed8a2008-01-10 03:43:11 -0300841 s5h1409_i2c_gate_ctrl(&state->frontend, 1);
Steven Toth89885552007-07-28 19:34:52 -0300842
843 return &state->frontend;
844
845error:
846 kfree(state);
847 return NULL;
848}
Steven Tothb7709c0d2008-10-16 20:27:11 -0300849EXPORT_SYMBOL(s5h1409_attach);
Steven Toth89885552007-07-28 19:34:52 -0300850
851static struct dvb_frontend_ops s5h1409_ops = {
852
853 .info = {
854 .name = "Samsung S5H1409 QAM/8VSB Frontend",
855 .type = FE_ATSC,
856 .frequency_min = 54000000,
857 .frequency_max = 858000000,
858 .frequency_stepsize = 62500,
859 .caps = FE_CAN_QAM_64 | FE_CAN_QAM_256 | FE_CAN_8VSB
860 },
861
862 .init = s5h1409_init,
863 .i2c_gate_ctrl = s5h1409_i2c_gate_ctrl,
864 .set_frontend = s5h1409_set_frontend,
865 .get_frontend = s5h1409_get_frontend,
866 .get_tune_settings = s5h1409_get_tune_settings,
867 .read_status = s5h1409_read_status,
868 .read_ber = s5h1409_read_ber,
869 .read_signal_strength = s5h1409_read_signal_strength,
870 .read_snr = s5h1409_read_snr,
871 .read_ucblocks = s5h1409_read_ucblocks,
872 .release = s5h1409_release,
873};
874
Steven Toth89885552007-07-28 19:34:52 -0300875MODULE_DESCRIPTION("Samsung S5H1409 QAM-B/ATSC Demodulator driver");
876MODULE_AUTHOR("Steven Toth");
877MODULE_LICENSE("GPL");
878
Michael Krufky3873dd02007-07-28 20:02:55 -0300879
880/*
881 * Local variables:
882 * c-basic-offset: 8
883 */