Merge tag 'sound-fix-4.20-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai...
[linux-2.6-block.git] / drivers / media / dvb-frontends / stb6100.c
CommitLineData
c46b6562
MA
1/*
2 STB6100 Silicon Tuner
3 Copyright (C) Manu Abraham (abraham.manu@gmail.com)
4
5 Copyright (C) ST Microelectronics
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20*/
21
22#include <linux/init.h>
23#include <linux/kernel.h>
24#include <linux/module.h>
5a0e3ad6 25#include <linux/slab.h>
c46b6562
MA
26#include <linux/string.h>
27
fada1935 28#include <media/dvb_frontend.h>
c46b6562
MA
29#include "stb6100.h"
30
31static unsigned int verbose;
32module_param(verbose, int, 0644);
33
8393796d
MCC
34/* Max transfer size done by I2C transfer functions */
35#define MAX_XFER_SIZE 64
c46b6562
MA
36
37#define FE_ERROR 0
38#define FE_NOTICE 1
39#define FE_INFO 2
40#define FE_DEBUG 3
41
42#define dprintk(x, y, z, format, arg...) do { \
43 if (z) { \
44 if ((x > FE_ERROR) && (x > y)) \
45 printk(KERN_ERR "%s: " format "\n", __func__ , ##arg); \
46 else if ((x > FE_NOTICE) && (x > y)) \
47 printk(KERN_NOTICE "%s: " format "\n", __func__ , ##arg); \
48 else if ((x > FE_INFO) && (x > y)) \
49 printk(KERN_INFO "%s: " format "\n", __func__ , ##arg); \
50 else if ((x > FE_DEBUG) && (x > y)) \
51 printk(KERN_DEBUG "%s: " format "\n", __func__ , ##arg); \
52 } else { \
53 if (x > y) \
54 printk(format, ##arg); \
55 } \
f14bfe94 56} while (0)
c46b6562
MA
57
58struct stb6100_lkup {
59 u32 val_low;
60 u32 val_high;
61 u8 reg;
62};
63
f2709c20
MCC
64static void stb6100_release(struct dvb_frontend *fe);
65
c46b6562
MA
66static const struct stb6100_lkup lkup[] = {
67 { 0, 950000, 0x0a },
68 { 950000, 1000000, 0x0a },
69 { 1000000, 1075000, 0x0c },
70 { 1075000, 1200000, 0x00 },
71 { 1200000, 1300000, 0x01 },
72 { 1300000, 1370000, 0x02 },
73 { 1370000, 1470000, 0x04 },
74 { 1470000, 1530000, 0x05 },
75 { 1530000, 1650000, 0x06 },
76 { 1650000, 1800000, 0x08 },
77 { 1800000, 1950000, 0x0a },
78 { 1950000, 2150000, 0x0c },
79 { 2150000, 9999999, 0x0c },
80 { 0, 0, 0x00 }
81};
82
83/* Register names for easy debugging. */
84static const char *stb6100_regnames[] = {
85 [STB6100_LD] = "LD",
86 [STB6100_VCO] = "VCO",
87 [STB6100_NI] = "NI",
88 [STB6100_NF_LSB] = "NF",
89 [STB6100_K] = "K",
90 [STB6100_G] = "G",
91 [STB6100_F] = "F",
92 [STB6100_DLB] = "DLB",
93 [STB6100_TEST1] = "TEST1",
94 [STB6100_FCCK] = "FCCK",
95 [STB6100_LPEN] = "LPEN",
96 [STB6100_TEST3] = "TEST3",
97};
98
99/* Template for normalisation, i.e. setting unused or undocumented
100 * bits as required according to the documentation.
101 */
102struct stb6100_regmask {
103 u8 mask;
104 u8 set;
105};
106
107static const struct stb6100_regmask stb6100_template[] = {
108 [STB6100_LD] = { 0xff, 0x00 },
109 [STB6100_VCO] = { 0xff, 0x00 },
110 [STB6100_NI] = { 0xff, 0x00 },
111 [STB6100_NF_LSB] = { 0xff, 0x00 },
112 [STB6100_K] = { 0xc7, 0x38 },
113 [STB6100_G] = { 0xef, 0x10 },
114 [STB6100_F] = { 0x1f, 0xc0 },
115 [STB6100_DLB] = { 0x38, 0xc4 },
116 [STB6100_TEST1] = { 0x00, 0x8f },
117 [STB6100_FCCK] = { 0x40, 0x0d },
118 [STB6100_LPEN] = { 0xf0, 0x0b },
119 [STB6100_TEST3] = { 0x00, 0xde },
120};
121
a931910d
MCC
122/*
123 * Currently unused. Some boards might need it in the future
124 */
125static inline void stb6100_normalise_regs(u8 regs[])
c46b6562
MA
126{
127 int i;
128
129 for (i = 0; i < STB6100_NUMREGS; i++)
130 regs[i] = (regs[i] & stb6100_template[i].mask) | stb6100_template[i].set;
131}
132
133static int stb6100_read_regs(struct stb6100_state *state, u8 regs[])
134{
135 int rc;
136 struct i2c_msg msg = {
137 .addr = state->config->tuner_address,
138 .flags = I2C_M_RD,
139 .buf = regs,
140 .len = STB6100_NUMREGS
141 };
142
c46b6562 143 rc = i2c_transfer(state->i2c, &msg, 1);
c46b6562
MA
144 if (unlikely(rc != 1)) {
145 dprintk(verbose, FE_ERROR, 1, "Read (0x%x) err, rc=[%d]",
146 state->config->tuner_address, rc);
147
148 return -EREMOTEIO;
149 }
150 if (unlikely(verbose > FE_DEBUG)) {
151 int i;
152
153 dprintk(verbose, FE_DEBUG, 1, " Read from 0x%02x", state->config->tuner_address);
154 for (i = 0; i < STB6100_NUMREGS; i++)
155 dprintk(verbose, FE_DEBUG, 1, " %s: 0x%02x", stb6100_regnames[i], regs[i]);
156 }
157 return 0;
158}
159
160static int stb6100_read_reg(struct stb6100_state *state, u8 reg)
161{
162 u8 regs[STB6100_NUMREGS];
c46b6562 163
f14bfe94
MA
164 struct i2c_msg msg = {
165 .addr = state->config->tuner_address + reg,
166 .flags = I2C_M_RD,
167 .buf = regs,
168 .len = 1
169 };
170
fdf07b02 171 i2c_transfer(state->i2c, &msg, 1);
f14bfe94 172
c46b6562
MA
173 if (unlikely(reg >= STB6100_NUMREGS)) {
174 dprintk(verbose, FE_ERROR, 1, "Invalid register offset 0x%x", reg);
175 return -EINVAL;
176 }
f14bfe94
MA
177 if (unlikely(verbose > FE_DEBUG)) {
178 dprintk(verbose, FE_DEBUG, 1, " Read from 0x%02x", state->config->tuner_address);
179 dprintk(verbose, FE_DEBUG, 1, " %s: 0x%02x", stb6100_regnames[reg], regs[0]);
180 }
181
182 return (unsigned int)regs[0];
c46b6562
MA
183}
184
185static int stb6100_write_reg_range(struct stb6100_state *state, u8 buf[], int start, int len)
186{
187 int rc;
8393796d 188 u8 cmdbuf[MAX_XFER_SIZE];
c46b6562
MA
189 struct i2c_msg msg = {
190 .addr = state->config->tuner_address,
191 .flags = 0,
192 .buf = cmdbuf,
193 .len = len + 1
194 };
195
7e6bd12f 196 if (1 + len > sizeof(cmdbuf)) {
8393796d
MCC
197 printk(KERN_WARNING
198 "%s: i2c wr: len=%d is too big!\n",
199 KBUILD_MODNAME, len);
200 return -EINVAL;
201 }
202
c46b6562
MA
203 if (unlikely(start < 1 || start + len > STB6100_NUMREGS)) {
204 dprintk(verbose, FE_ERROR, 1, "Invalid register range %d:%d",
205 start, len);
206 return -EINVAL;
207 }
208 memcpy(&cmdbuf[1], buf, len);
209 cmdbuf[0] = start;
210
211 if (unlikely(verbose > FE_DEBUG)) {
212 int i;
213
214 dprintk(verbose, FE_DEBUG, 1, " Write @ 0x%02x: [%d:%d]", state->config->tuner_address, start, len);
215 for (i = 0; i < len; i++)
216 dprintk(verbose, FE_DEBUG, 1, " %s: 0x%02x", stb6100_regnames[start + i], buf[i]);
217 }
c46b6562 218 rc = i2c_transfer(state->i2c, &msg, 1);
c46b6562
MA
219 if (unlikely(rc != 1)) {
220 dprintk(verbose, FE_ERROR, 1, "(0x%x) write err [%d:%d], rc=[%d]",
221 (unsigned int)state->config->tuner_address, start, len, rc);
222 return -EREMOTEIO;
223 }
224 return 0;
225}
226
227static int stb6100_write_reg(struct stb6100_state *state, u8 reg, u8 data)
228{
3cd890db
AB
229 u8 tmp = data; /* see gcc.gnu.org/bugzilla/show_bug.cgi?id=81715 */
230
c46b6562
MA
231 if (unlikely(reg >= STB6100_NUMREGS)) {
232 dprintk(verbose, FE_ERROR, 1, "Invalid register offset 0x%x", reg);
233 return -EREMOTEIO;
234 }
3cd890db
AB
235 tmp = (tmp & stb6100_template[reg].mask) | stb6100_template[reg].set;
236 return stb6100_write_reg_range(state, &tmp, reg, 1);
c46b6562
MA
237}
238
c46b6562
MA
239
240static int stb6100_get_status(struct dvb_frontend *fe, u32 *status)
241{
242 int rc;
243 struct stb6100_state *state = fe->tuner_priv;
244
f14bfe94
MA
245 rc = stb6100_read_reg(state, STB6100_LD);
246 if (rc < 0) {
247 dprintk(verbose, FE_ERROR, 1, "%s failed", __func__);
c46b6562 248 return rc;
f14bfe94 249 }
c46b6562
MA
250 return (rc & STB6100_LD_LOCK) ? TUNER_STATUS_LOCKED : 0;
251}
252
253static int stb6100_get_bandwidth(struct dvb_frontend *fe, u32 *bandwidth)
254{
255 int rc;
256 u8 f;
cffdbfe7 257 u32 bw;
c46b6562
MA
258 struct stb6100_state *state = fe->tuner_priv;
259
f14bfe94
MA
260 rc = stb6100_read_reg(state, STB6100_F);
261 if (rc < 0)
c46b6562
MA
262 return rc;
263 f = rc & STB6100_F_F;
264
cffdbfe7 265 bw = (f + 5) * 2000; /* x2 for ZIF */
c46b6562 266
cffdbfe7 267 *bandwidth = state->bandwidth = bw * 1000;
c46b6562
MA
268 dprintk(verbose, FE_DEBUG, 1, "bandwidth = %u Hz", state->bandwidth);
269 return 0;
270}
271
272static int stb6100_set_bandwidth(struct dvb_frontend *fe, u32 bandwidth)
273{
274 u32 tmp;
275 int rc;
276 struct stb6100_state *state = fe->tuner_priv;
277
89693b7d 278 dprintk(verbose, FE_DEBUG, 1, "set bandwidth to %u Hz", bandwidth);
c46b6562 279
763fbaf6 280 bandwidth /= 2; /* ZIF */
c46b6562 281
89693b7d 282 if (bandwidth >= 36000000) /* F[4:0] BW/2 max =31+5=36 mhz for F=31 */
c46b6562 283 tmp = 31;
89693b7d 284 else if (bandwidth <= 5000000) /* bw/2 min = 5Mhz for F=0 */
c46b6562
MA
285 tmp = 0;
286 else /* if 5 < bw/2 < 36 */
6f6c268b 287 tmp = (bandwidth + 500000) / 1000000 - 5;
c46b6562
MA
288
289 /* Turn on LPF bandwidth setting clock control,
290 * set bandwidth, wait 10ms, turn off.
291 */
f14bfe94
MA
292 rc = stb6100_write_reg(state, STB6100_FCCK, 0x0d | STB6100_FCCK_FCCK);
293 if (rc < 0)
c46b6562 294 return rc;
f14bfe94
MA
295 rc = stb6100_write_reg(state, STB6100_F, 0xc0 | tmp);
296 if (rc < 0)
c46b6562 297 return rc;
f14bfe94
MA
298
299 msleep(5); /* This is dangerous as another (related) thread may start */
300
301 rc = stb6100_write_reg(state, STB6100_FCCK, 0x0d);
302 if (rc < 0)
c46b6562
MA
303 return rc;
304
f14bfe94
MA
305 msleep(10); /* This is dangerous as another (related) thread may start */
306
c46b6562
MA
307 return 0;
308}
309
310static int stb6100_get_frequency(struct dvb_frontend *fe, u32 *frequency)
311{
312 int rc;
313 u32 nint, nfrac, fvco;
314 int psd2, odiv;
315 struct stb6100_state *state = fe->tuner_priv;
316 u8 regs[STB6100_NUMREGS];
317
f14bfe94
MA
318 rc = stb6100_read_regs(state, regs);
319 if (rc < 0)
c46b6562
MA
320 return rc;
321
322 odiv = (regs[STB6100_VCO] & STB6100_VCO_ODIV) >> STB6100_VCO_ODIV_SHIFT;
323 psd2 = (regs[STB6100_K] & STB6100_K_PSD2) >> STB6100_K_PSD2_SHIFT;
324 nint = regs[STB6100_NI];
325 nfrac = ((regs[STB6100_K] & STB6100_K_NF_MSB) << 8) | regs[STB6100_NF_LSB];
326 fvco = (nfrac * state->reference >> (9 - psd2)) + (nint * state->reference << psd2);
327 *frequency = state->frequency = fvco >> (odiv + 1);
328
329 dprintk(verbose, FE_DEBUG, 1,
330 "frequency = %u kHz, odiv = %u, psd2 = %u, fxtal = %u kHz, fvco = %u kHz, N(I) = %u, N(F) = %u",
331 state->frequency, odiv, psd2, state->reference, fvco, nint, nfrac);
332 return 0;
333}
334
335
336static int stb6100_set_frequency(struct dvb_frontend *fe, u32 frequency)
337{
338 int rc;
339 const struct stb6100_lkup *ptr;
340 struct stb6100_state *state = fe->tuner_priv;
1e73fa5d 341 struct dtv_frontend_properties *p = &fe->dtv_property_cache;
c46b6562
MA
342
343 u32 srate = 0, fvco, nint, nfrac;
344 u8 regs[STB6100_NUMREGS];
345 u8 g, psd2, odiv;
346
f14bfe94 347 dprintk(verbose, FE_DEBUG, 1, "Version 2010-8-14 13:51");
3f400925 348
5135986e 349 if (fe->ops.get_frontend) {
3f400925 350 dprintk(verbose, FE_DEBUG, 1, "Get frontend parameters");
7e3e68bc 351 fe->ops.get_frontend(fe, p);
c46b6562 352 }
1e73fa5d 353 srate = p->symbol_rate;
c46b6562 354
f14bfe94
MA
355 /* Set up tuner cleanly, LPF calibration on */
356 rc = stb6100_write_reg(state, STB6100_FCCK, 0x4d | STB6100_FCCK_FCCK);
357 if (rc < 0)
358 return rc; /* allow LPF calibration */
20dafb3b 359
f14bfe94
MA
360 /* PLL Loop disabled, bias on, VCO on, synth on */
361 regs[STB6100_LPEN] = 0xeb;
362 rc = stb6100_write_reg(state, STB6100_LPEN, regs[STB6100_LPEN]);
363 if (rc < 0)
20dafb3b
AJ
364 return rc;
365
f14bfe94 366 /* Program the registers with their data values */
c46b6562
MA
367
368 /* VCO divide ratio (LO divide ratio, VCO prescaler enable). */
369 if (frequency <= 1075000)
370 odiv = 1;
371 else
372 odiv = 0;
c46b6562 373
25985edc 374 /* VCO enabled, search clock off as per LL3.7, 3.4.1 */
f14bfe94 375 regs[STB6100_VCO] = 0xe0 | (odiv << STB6100_VCO_ODIV_SHIFT);
c46b6562
MA
376
377 /* OSM */
378 for (ptr = lkup;
379 (ptr->val_high != 0) && !CHKRANGE(frequency, ptr->val_low, ptr->val_high);
380 ptr++);
f14bfe94 381
c46b6562
MA
382 if (ptr->val_high == 0) {
383 printk(KERN_ERR "%s: frequency out of range: %u kHz\n", __func__, frequency);
384 return -EINVAL;
385 }
386 regs[STB6100_VCO] = (regs[STB6100_VCO] & ~STB6100_VCO_OSM) | ptr->reg;
f14bfe94
MA
387 rc = stb6100_write_reg(state, STB6100_VCO, regs[STB6100_VCO]);
388 if (rc < 0)
389 return rc;
c46b6562 390
f14bfe94
MA
391 if ((frequency > 1075000) && (frequency <= 1325000))
392 psd2 = 0;
393 else
394 psd2 = 1;
c46b6562
MA
395 /* F(VCO) = F(LO) * (ODIV == 0 ? 2 : 4) */
396 fvco = frequency << (1 + odiv);
397 /* N(I) = floor(f(VCO) / (f(XTAL) * (PSD2 ? 2 : 1))) */
398 nint = fvco / (state->reference << psd2);
399 /* N(F) = round(f(VCO) / f(XTAL) * (PSD2 ? 2 : 1) - N(I)) * 2 ^ 9 */
75b697f7 400 nfrac = DIV_ROUND_CLOSEST((fvco - (nint * state->reference << psd2))
f14bfe94
MA
401 << (9 - psd2), state->reference);
402
403 /* NI */
404 regs[STB6100_NI] = nint;
405 rc = stb6100_write_reg(state, STB6100_NI, regs[STB6100_NI]);
406 if (rc < 0)
407 return rc;
408
409 /* NF */
410 regs[STB6100_NF_LSB] = nfrac;
411 rc = stb6100_write_reg(state, STB6100_NF_LSB, regs[STB6100_NF_LSB]);
412 if (rc < 0)
413 return rc;
414
415 /* K */
416 regs[STB6100_K] = (0x38 & ~STB6100_K_PSD2) | (psd2 << STB6100_K_PSD2_SHIFT);
417 regs[STB6100_K] = (regs[STB6100_K] & ~STB6100_K_NF_MSB) | ((nfrac >> 8) & STB6100_K_NF_MSB);
418 rc = stb6100_write_reg(state, STB6100_K, regs[STB6100_K]);
419 if (rc < 0)
420 return rc;
421
422 /* G Baseband gain. */
423 if (srate >= 15000000)
424 g = 9; /* +4 dB */
425 else if (srate >= 5000000)
426 g = 11; /* +8 dB */
427 else
428 g = 14; /* +14 dB */
429
430 regs[STB6100_G] = (0x10 & ~STB6100_G_G) | g;
431 regs[STB6100_G] &= ~STB6100_G_GCT; /* mask GCT */
432 regs[STB6100_G] |= (1 << 5); /* 2Vp-p Mode */
433 rc = stb6100_write_reg(state, STB6100_G, regs[STB6100_G]);
434 if (rc < 0)
435 return rc;
436
437 /* F we don't write as it is set up in BW set */
438
439 /* DLB set DC servo loop BW to 160Hz (LLA 3.8 / 2.1) */
440 regs[STB6100_DLB] = 0xcc;
441 rc = stb6100_write_reg(state, STB6100_DLB, regs[STB6100_DLB]);
442 if (rc < 0)
443 return rc;
444
c46b6562
MA
445 dprintk(verbose, FE_DEBUG, 1,
446 "frequency = %u, srate = %u, g = %u, odiv = %u, psd2 = %u, fxtal = %u, osm = %u, fvco = %u, N(I) = %u, N(F) = %u",
447 frequency, srate, (unsigned int)g, (unsigned int)odiv,
448 (unsigned int)psd2, state->reference,
449 ptr->reg, fvco, nint, nfrac);
c46b6562 450
f14bfe94
MA
451 /* Set up the test registers */
452 regs[STB6100_TEST1] = 0x8f;
453 rc = stb6100_write_reg(state, STB6100_TEST1, regs[STB6100_TEST1]);
454 if (rc < 0)
455 return rc;
456 regs[STB6100_TEST3] = 0xde;
457 rc = stb6100_write_reg(state, STB6100_TEST3, regs[STB6100_TEST3]);
458 if (rc < 0)
c46b6562
MA
459 return rc;
460
f14bfe94
MA
461 /* Bring up tuner according to LLA 3.7 3.4.1, step 2 */
462 regs[STB6100_LPEN] = 0xfb; /* PLL Loop enabled, bias on, VCO on, synth on */
463 rc = stb6100_write_reg(state, STB6100_LPEN, regs[STB6100_LPEN]);
464 if (rc < 0)
c46b6562
MA
465 return rc;
466
f14bfe94
MA
467 msleep(2);
468
469 /* Bring up tuner according to LLA 3.7 3.4.1, step 3 */
c46b6562 470 regs[STB6100_VCO] &= ~STB6100_VCO_OCK; /* VCO fast search */
f14bfe94
MA
471 rc = stb6100_write_reg(state, STB6100_VCO, regs[STB6100_VCO]);
472 if (rc < 0)
c46b6562
MA
473 return rc;
474
f14bfe94
MA
475 msleep(10); /* This is dangerous as another (related) thread may start */ /* wait for LO to lock */
476
c46b6562
MA
477 regs[STB6100_VCO] &= ~STB6100_VCO_OSCH; /* vco search disabled */
478 regs[STB6100_VCO] |= STB6100_VCO_OCK; /* search clock off */
f14bfe94
MA
479 rc = stb6100_write_reg(state, STB6100_VCO, regs[STB6100_VCO]);
480 if (rc < 0)
c46b6562
MA
481 return rc;
482
f14bfe94
MA
483 rc = stb6100_write_reg(state, STB6100_FCCK, 0x0d);
484 if (rc < 0)
485 return rc; /* Stop LPF calibration */
7e4e8c52 486
f14bfe94
MA
487 msleep(10); /* This is dangerous as another (related) thread may start */
488 /* wait for stabilisation, (should not be necessary) */
c46b6562
MA
489 return 0;
490}
491
492static int stb6100_sleep(struct dvb_frontend *fe)
493{
494 /* TODO: power down */
495 return 0;
496}
497
498static int stb6100_init(struct dvb_frontend *fe)
499{
500 struct stb6100_state *state = fe->tuner_priv;
2184e253 501 int refclk = 27000000; /* Hz */
c46b6562 502
2184e253
MCC
503 /*
504 * iqsense = 1
505 * tunerstep = 125000
506 */
65f0f686 507 state->bandwidth = 36000000; /* Hz */
2184e253 508 state->reference = refclk / 1000; /* kHz */
c46b6562 509
f14bfe94
MA
510 /* Set default bandwidth. Modified, PN 13-May-10 */
511 return 0;
c46b6562
MA
512}
513
65f0f686 514static int stb6100_set_params(struct dvb_frontend *fe)
c46b6562 515{
65f0f686 516 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
c46b6562 517
65f0f686
MCC
518 if (c->frequency > 0)
519 stb6100_set_frequency(fe, c->frequency);
c46b6562 520
65f0f686
MCC
521 if (c->bandwidth_hz > 0)
522 stb6100_set_bandwidth(fe, c->bandwidth_hz);
c46b6562
MA
523
524 return 0;
525}
526
14c4bf3c 527static const struct dvb_tuner_ops stb6100_ops = {
c46b6562
MA
528 .info = {
529 .name = "STB6100 Silicon Tuner",
a3f90c75
MCC
530 .frequency_min_hz = 950 * MHz,
531 .frequency_max_hz = 2150 * MHz,
c46b6562
MA
532 },
533
534 .init = stb6100_init,
535 .sleep = stb6100_sleep,
536 .get_status = stb6100_get_status,
65f0f686
MCC
537 .set_params = stb6100_set_params,
538 .get_frequency = stb6100_get_frequency,
539 .get_bandwidth = stb6100_get_bandwidth,
f2709c20 540 .release = stb6100_release
c46b6562
MA
541};
542
543struct dvb_frontend *stb6100_attach(struct dvb_frontend *fe,
2e4e98e7 544 const struct stb6100_config *config,
c46b6562
MA
545 struct i2c_adapter *i2c)
546{
547 struct stb6100_state *state = NULL;
548
a18d4315 549 state = kzalloc(sizeof (struct stb6100_state), GFP_KERNEL);
e4533e65
PST
550 if (!state)
551 return NULL;
c46b6562
MA
552
553 state->config = config;
554 state->i2c = i2c;
555 state->frontend = fe;
3e3263e6 556 state->reference = config->refclock / 1000; /* kHz */
c46b6562
MA
557 fe->tuner_priv = state;
558 fe->ops.tuner_ops = stb6100_ops;
559
3e3263e6 560 printk("%s: Attaching STB6100 \n", __func__);
c46b6562 561 return fe;
c46b6562
MA
562}
563
f2709c20
MCC
564static void stb6100_release(struct dvb_frontend *fe)
565{
566 struct stb6100_state *state = fe->tuner_priv;
567
568 fe->tuner_priv = NULL;
569 kfree(state);
570}
571
c46b6562
MA
572EXPORT_SYMBOL(stb6100_attach);
573MODULE_PARM_DESC(verbose, "Set Verbosity level");
574
575MODULE_AUTHOR("Manu Abraham");
576MODULE_DESCRIPTION("STB6100 Silicon tuner");
577MODULE_LICENSE("GPL");