diff options
Diffstat (limited to 'drivers/media/common')
-rw-r--r-- | drivers/media/common/tuners/Kconfig | 7 | ||||
-rw-r--r-- | drivers/media/common/tuners/Makefile | 1 | ||||
-rw-r--r-- | drivers/media/common/tuners/max2165.c | 442 | ||||
-rw-r--r-- | drivers/media/common/tuners/max2165.h | 48 | ||||
-rw-r--r-- | drivers/media/common/tuners/max2165_priv.h | 60 |
5 files changed, 558 insertions, 0 deletions
diff --git a/drivers/media/common/tuners/Kconfig b/drivers/media/common/tuners/Kconfig index 607d319ce8ed..409a4261e5b5 100644 --- a/drivers/media/common/tuners/Kconfig +++ b/drivers/media/common/tuners/Kconfig | |||
@@ -172,4 +172,11 @@ config MEDIA_TUNER_MC44S803 | |||
172 | help | 172 | help |
173 | Say Y here to support the Freescale MC44S803 based tuners | 173 | Say Y here to support the Freescale MC44S803 based tuners |
174 | 174 | ||
175 | config MEDIA_TUNER_MAX2165 | ||
176 | tristate "Maxim MAX2165 silicon tuner" | ||
177 | depends on VIDEO_MEDIA && I2C | ||
178 | default m if MEDIA_TUNER_CUSTOMISE | ||
179 | help | ||
180 | A driver for the silicon tuner MAX2165 from Maxim. | ||
181 | |||
175 | endif # MEDIA_TUNER_CUSTOMISE | 182 | endif # MEDIA_TUNER_CUSTOMISE |
diff --git a/drivers/media/common/tuners/Makefile b/drivers/media/common/tuners/Makefile index 4132b2be79e5..a5438523f30d 100644 --- a/drivers/media/common/tuners/Makefile +++ b/drivers/media/common/tuners/Makefile | |||
@@ -23,6 +23,7 @@ obj-$(CONFIG_MEDIA_TUNER_MT2131) += mt2131.o | |||
23 | obj-$(CONFIG_MEDIA_TUNER_MXL5005S) += mxl5005s.o | 23 | obj-$(CONFIG_MEDIA_TUNER_MXL5005S) += mxl5005s.o |
24 | obj-$(CONFIG_MEDIA_TUNER_MXL5007T) += mxl5007t.o | 24 | obj-$(CONFIG_MEDIA_TUNER_MXL5007T) += mxl5007t.o |
25 | obj-$(CONFIG_MEDIA_TUNER_MC44S803) += mc44s803.o | 25 | obj-$(CONFIG_MEDIA_TUNER_MC44S803) += mc44s803.o |
26 | obj-$(CONFIG_MEDIA_TUNER_MAX2165) += max2165.o | ||
26 | 27 | ||
27 | EXTRA_CFLAGS += -Idrivers/media/dvb/dvb-core | 28 | EXTRA_CFLAGS += -Idrivers/media/dvb/dvb-core |
28 | EXTRA_CFLAGS += -Idrivers/media/dvb/frontends | 29 | EXTRA_CFLAGS += -Idrivers/media/dvb/frontends |
diff --git a/drivers/media/common/tuners/max2165.c b/drivers/media/common/tuners/max2165.c new file mode 100644 index 000000000000..1b486cfb8ed9 --- /dev/null +++ b/drivers/media/common/tuners/max2165.c | |||
@@ -0,0 +1,442 @@ | |||
1 | /* | ||
2 | * Driver for Maxim MAX2165 silicon tuner | ||
3 | * | ||
4 | * Copyright (c) 2009 David T. L. Wong <davidtlwong@gmail.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 | * | ||
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/module.h> | ||
23 | #include <linux/moduleparam.h> | ||
24 | #include <linux/videodev2.h> | ||
25 | #include <linux/delay.h> | ||
26 | #include <linux/dvb/frontend.h> | ||
27 | #include <linux/i2c.h> | ||
28 | |||
29 | #include "dvb_frontend.h" | ||
30 | |||
31 | #include "max2165.h" | ||
32 | #include "max2165_priv.h" | ||
33 | #include "tuner-i2c.h" | ||
34 | |||
35 | #define dprintk(args...) \ | ||
36 | do { \ | ||
37 | if (debug) \ | ||
38 | printk(KERN_DEBUG "max2165: " args); \ | ||
39 | } while (0) | ||
40 | |||
41 | static int debug; | ||
42 | module_param(debug, int, 0644); | ||
43 | MODULE_PARM_DESC(debug, "Turn on/off debugging (default:off)."); | ||
44 | |||
45 | static int max2165_write_reg(struct max2165_priv *priv, u8 reg, u8 data) | ||
46 | { | ||
47 | int ret; | ||
48 | u8 buf[] = { reg, data }; | ||
49 | struct i2c_msg msg = { .flags = 0, .buf = buf, .len = 2 }; | ||
50 | |||
51 | msg.addr = priv->config->i2c_address; | ||
52 | |||
53 | if (debug >= 2) | ||
54 | printk(KERN_DEBUG "%s: reg=0x%02X, data=0x%02X\n", | ||
55 | __func__, reg, data); | ||
56 | |||
57 | ret = i2c_transfer(priv->i2c, &msg, 1); | ||
58 | |||
59 | if (ret != 1) | ||
60 | dprintk(KERN_DEBUG "%s: error reg=0x%x, data=0x%x, ret=%i\n", | ||
61 | __func__, reg, data, ret); | ||
62 | |||
63 | return (ret != 1) ? -EIO : 0; | ||
64 | } | ||
65 | |||
66 | static int max2165_read_reg(struct max2165_priv *priv, u8 reg, u8 *p_data) | ||
67 | { | ||
68 | int ret; | ||
69 | u8 dev_addr = priv->config->i2c_address; | ||
70 | |||
71 | u8 b0[] = { reg }; | ||
72 | u8 b1[] = { 0 }; | ||
73 | struct i2c_msg msg[] = { | ||
74 | { .addr = dev_addr, .flags = 0, .buf = b0, .len = 1 }, | ||
75 | { .addr = dev_addr, .flags = I2C_M_RD, .buf = b1, .len = 1 }, | ||
76 | }; | ||
77 | |||
78 | ret = i2c_transfer(priv->i2c, msg, 2); | ||
79 | if (ret != 2) { | ||
80 | dprintk(KERN_DEBUG "%s: error reg=0x%x, ret=%i\n", | ||
81 | __func__, reg, ret); | ||
82 | return -EIO; | ||
83 | } | ||
84 | |||
85 | *p_data = b1[0]; | ||
86 | if (debug >= 2) | ||
87 | printk(KERN_DEBUG "%s: reg=0x%02X, data=0x%02X\n", | ||
88 | __func__, reg, b1[0]); | ||
89 | return 0; | ||
90 | } | ||
91 | |||
92 | static int max2165_mask_write_reg(struct max2165_priv *priv, u8 reg, | ||
93 | u8 mask, u8 data) | ||
94 | { | ||
95 | int ret; | ||
96 | u8 v; | ||
97 | |||
98 | data &= mask; | ||
99 | ret = max2165_read_reg(priv, reg, &v); | ||
100 | if (ret != 0) | ||
101 | return ret; | ||
102 | v &= ~mask; | ||
103 | v |= data; | ||
104 | ret = max2165_write_reg(priv, reg, v); | ||
105 | |||
106 | return ret; | ||
107 | } | ||
108 | |||
109 | static int max2165_read_rom_table(struct max2165_priv *priv) | ||
110 | { | ||
111 | u8 dat[3]; | ||
112 | int i; | ||
113 | |||
114 | for (i = 0; i < 3; i++) { | ||
115 | max2165_write_reg(priv, REG_ROM_TABLE_ADDR, i + 1); | ||
116 | max2165_read_reg(priv, REG_ROM_TABLE_DATA, &dat[i]); | ||
117 | } | ||
118 | |||
119 | priv->tf_ntch_low_cfg = dat[0] >> 4; | ||
120 | priv->tf_ntch_hi_cfg = dat[0] & 0x0F; | ||
121 | priv->tf_balun_low_ref = dat[1] & 0x0F; | ||
122 | priv->tf_balun_hi_ref = dat[1] >> 4; | ||
123 | priv->bb_filter_7mhz_cfg = dat[2] & 0x0F; | ||
124 | priv->bb_filter_8mhz_cfg = dat[2] >> 4; | ||
125 | |||
126 | dprintk("tf_ntch_low_cfg = 0x%X\n", priv->tf_ntch_low_cfg); | ||
127 | dprintk("tf_ntch_hi_cfg = 0x%X\n", priv->tf_ntch_hi_cfg); | ||
128 | dprintk("tf_balun_low_ref = 0x%X\n", priv->tf_balun_low_ref); | ||
129 | dprintk("tf_balun_hi_ref = 0x%X\n", priv->tf_balun_hi_ref); | ||
130 | dprintk("bb_filter_7mhz_cfg = 0x%X\n", priv->bb_filter_7mhz_cfg); | ||
131 | dprintk("bb_filter_8mhz_cfg = 0x%X\n", priv->bb_filter_8mhz_cfg); | ||
132 | |||
133 | return 0; | ||
134 | } | ||
135 | |||
136 | static int max2165_set_osc(struct max2165_priv *priv, u8 osc /*MHz*/) | ||
137 | { | ||
138 | u8 v; | ||
139 | |||
140 | v = (osc / 2); | ||
141 | if (v == 2) | ||
142 | v = 0x7; | ||
143 | else | ||
144 | v -= 8; | ||
145 | |||
146 | max2165_mask_write_reg(priv, REG_PLL_CFG, 0x07, v); | ||
147 | |||
148 | return 0; | ||
149 | } | ||
150 | |||
151 | static int max2165_set_bandwidth(struct max2165_priv *priv, u32 bw) | ||
152 | { | ||
153 | u8 val; | ||
154 | |||
155 | if (bw == BANDWIDTH_8_MHZ) | ||
156 | val = priv->bb_filter_8mhz_cfg; | ||
157 | else | ||
158 | val = priv->bb_filter_7mhz_cfg; | ||
159 | |||
160 | max2165_mask_write_reg(priv, REG_BASEBAND_CTRL, 0xF0, val << 4); | ||
161 | |||
162 | return 0; | ||
163 | } | ||
164 | |||
165 | int fixpt_div32(u32 dividend, u32 divisor, u32 *quotient, u32 *fraction) | ||
166 | { | ||
167 | u32 remainder; | ||
168 | u32 q, f = 0; | ||
169 | int i; | ||
170 | |||
171 | if (0 == divisor) | ||
172 | return -1; | ||
173 | |||
174 | q = dividend / divisor; | ||
175 | remainder = dividend - q * divisor; | ||
176 | |||
177 | for (i = 0; i < 31; i++) { | ||
178 | remainder <<= 1; | ||
179 | if (remainder >= divisor) { | ||
180 | f += 1; | ||
181 | remainder -= divisor; | ||
182 | } | ||
183 | f <<= 1; | ||
184 | } | ||
185 | |||
186 | *quotient = q; | ||
187 | *fraction = f; | ||
188 | |||
189 | return 0; | ||
190 | } | ||
191 | |||
192 | static int max2165_set_rf(struct max2165_priv *priv, u32 freq) | ||
193 | { | ||
194 | u8 tf; | ||
195 | u8 tf_ntch; | ||
196 | double t; | ||
197 | u32 quotient, fraction; | ||
198 | |||
199 | /* Set PLL divider according to RF frequency */ | ||
200 | fixpt_div32(freq / 1000, priv->config->osc_clk * 1000, | ||
201 | "ient, &fraction); | ||
202 | |||
203 | /* 20-bit fraction */ | ||
204 | fraction >>= 12; | ||
205 | |||
206 | max2165_write_reg(priv, REG_NDIV_INT, quotient); | ||
207 | max2165_mask_write_reg(priv, REG_NDIV_FRAC2, 0x0F, fraction >> 16); | ||
208 | max2165_write_reg(priv, REG_NDIV_FRAC1, fraction >> 8); | ||
209 | max2165_write_reg(priv, REG_NDIV_FRAC0, fraction); | ||
210 | |||
211 | /* Norch Filter */ | ||
212 | tf_ntch = (freq < 725000000) ? | ||
213 | priv->tf_ntch_low_cfg : priv->tf_ntch_hi_cfg; | ||
214 | |||
215 | /* Tracking filter balun */ | ||
216 | t = priv->tf_balun_low_ref; | ||
217 | t += (priv->tf_balun_hi_ref - priv->tf_balun_low_ref) | ||
218 | * (freq / 1000 - 470000) / (780000 - 470000); | ||
219 | |||
220 | tf = t; | ||
221 | dprintk("tf = %X\n", tf); | ||
222 | tf |= tf_ntch << 4; | ||
223 | |||
224 | max2165_write_reg(priv, REG_TRACK_FILTER, tf); | ||
225 | |||
226 | return 0; | ||
227 | } | ||
228 | |||
229 | static void max2165_debug_status(struct max2165_priv *priv) | ||
230 | { | ||
231 | u8 status, autotune; | ||
232 | u8 auto_vco_success, auto_vco_active; | ||
233 | u8 pll_locked; | ||
234 | u8 dc_offset_low, dc_offset_hi; | ||
235 | u8 signal_lv_over_threshold; | ||
236 | u8 vco, vco_sub_band, adc; | ||
237 | |||
238 | max2165_read_reg(priv, REG_STATUS, &status); | ||
239 | max2165_read_reg(priv, REG_AUTOTUNE, &autotune); | ||
240 | |||
241 | auto_vco_success = (status >> 6) & 0x01; | ||
242 | auto_vco_active = (status >> 5) & 0x01; | ||
243 | pll_locked = (status >> 4) & 0x01; | ||
244 | dc_offset_low = (status >> 3) & 0x01; | ||
245 | dc_offset_hi = (status >> 2) & 0x01; | ||
246 | signal_lv_over_threshold = status & 0x01; | ||
247 | |||
248 | vco = autotune >> 6; | ||
249 | vco_sub_band = (autotune >> 3) & 0x7; | ||
250 | adc = autotune & 0x7; | ||
251 | |||
252 | dprintk("auto VCO active: %d, auto VCO success: %d\n", | ||
253 | auto_vco_active, auto_vco_success); | ||
254 | dprintk("PLL locked: %d\n", pll_locked); | ||
255 | dprintk("DC offset low: %d, DC offset high: %d\n", | ||
256 | dc_offset_low, dc_offset_hi); | ||
257 | dprintk("Signal lvl over threshold: %d\n", signal_lv_over_threshold); | ||
258 | dprintk("VCO: %d, VCO Sub-band: %d, ADC: %d\n", vco, vco_sub_band, adc); | ||
259 | } | ||
260 | |||
261 | static int max2165_set_params(struct dvb_frontend *fe, | ||
262 | struct dvb_frontend_parameters *params) | ||
263 | { | ||
264 | struct max2165_priv *priv = fe->tuner_priv; | ||
265 | int ret; | ||
266 | |||
267 | dprintk("%s() frequency=%d (Hz)\n", __func__, params->frequency); | ||
268 | if (fe->ops.info.type == FE_ATSC) { | ||
269 | return -EINVAL; | ||
270 | } else if (fe->ops.info.type == FE_OFDM) { | ||
271 | dprintk("%s() OFDM\n", __func__); | ||
272 | switch (params->u.ofdm.bandwidth) { | ||
273 | case BANDWIDTH_6_MHZ: | ||
274 | return -EINVAL; | ||
275 | case BANDWIDTH_7_MHZ: | ||
276 | case BANDWIDTH_8_MHZ: | ||
277 | priv->frequency = params->frequency; | ||
278 | priv->bandwidth = params->u.ofdm.bandwidth; | ||
279 | break; | ||
280 | default: | ||
281 | printk(KERN_ERR "MAX2165 bandwidth not set!\n"); | ||
282 | return -EINVAL; | ||
283 | } | ||
284 | } else { | ||
285 | printk(KERN_ERR "MAX2165 modulation type not supported!\n"); | ||
286 | return -EINVAL; | ||
287 | } | ||
288 | |||
289 | dprintk("%s() frequency=%d\n", __func__, priv->frequency); | ||
290 | |||
291 | if (fe->ops.i2c_gate_ctrl) | ||
292 | fe->ops.i2c_gate_ctrl(fe, 1); | ||
293 | max2165_set_bandwidth(priv, priv->bandwidth); | ||
294 | ret = max2165_set_rf(priv, priv->frequency); | ||
295 | mdelay(50); | ||
296 | max2165_debug_status(priv); | ||
297 | if (fe->ops.i2c_gate_ctrl) | ||
298 | fe->ops.i2c_gate_ctrl(fe, 0); | ||
299 | |||
300 | if (ret != 0) | ||
301 | return -EREMOTEIO; | ||
302 | |||
303 | return 0; | ||
304 | } | ||
305 | |||
306 | static int max2165_get_frequency(struct dvb_frontend *fe, u32 *freq) | ||
307 | { | ||
308 | struct max2165_priv *priv = fe->tuner_priv; | ||
309 | dprintk("%s()\n", __func__); | ||
310 | *freq = priv->frequency; | ||
311 | return 0; | ||
312 | } | ||
313 | |||
314 | static int max2165_get_bandwidth(struct dvb_frontend *fe, u32 *bw) | ||
315 | { | ||
316 | struct max2165_priv *priv = fe->tuner_priv; | ||
317 | dprintk("%s()\n", __func__); | ||
318 | |||
319 | *bw = priv->bandwidth; | ||
320 | return 0; | ||
321 | } | ||
322 | |||
323 | static int max2165_get_status(struct dvb_frontend *fe, u32 *status) | ||
324 | { | ||
325 | struct max2165_priv *priv = fe->tuner_priv; | ||
326 | u16 lock_status = 0; | ||
327 | |||
328 | dprintk("%s()\n", __func__); | ||
329 | |||
330 | if (fe->ops.i2c_gate_ctrl) | ||
331 | fe->ops.i2c_gate_ctrl(fe, 1); | ||
332 | |||
333 | max2165_debug_status(priv); | ||
334 | *status = lock_status; | ||
335 | |||
336 | if (fe->ops.i2c_gate_ctrl) | ||
337 | fe->ops.i2c_gate_ctrl(fe, 0); | ||
338 | |||
339 | return 0; | ||
340 | } | ||
341 | |||
342 | static int max2165_sleep(struct dvb_frontend *fe) | ||
343 | { | ||
344 | dprintk("%s()\n", __func__); | ||
345 | return 0; | ||
346 | } | ||
347 | |||
348 | static int max2165_init(struct dvb_frontend *fe) | ||
349 | { | ||
350 | struct max2165_priv *priv = fe->tuner_priv; | ||
351 | dprintk("%s()\n", __func__); | ||
352 | |||
353 | if (fe->ops.i2c_gate_ctrl) | ||
354 | fe->ops.i2c_gate_ctrl(fe, 1); | ||
355 | |||
356 | /* Setup initial values */ | ||
357 | /* Fractional Mode on */ | ||
358 | max2165_write_reg(priv, REG_NDIV_FRAC2, 0x18); | ||
359 | /* LNA on */ | ||
360 | max2165_write_reg(priv, REG_LNA, 0x01); | ||
361 | max2165_write_reg(priv, REG_PLL_CFG, 0x7A); | ||
362 | max2165_write_reg(priv, REG_TEST, 0x08); | ||
363 | max2165_write_reg(priv, REG_SHUTDOWN, 0x40); | ||
364 | max2165_write_reg(priv, REG_VCO_CTRL, 0x84); | ||
365 | max2165_write_reg(priv, REG_BASEBAND_CTRL, 0xC3); | ||
366 | max2165_write_reg(priv, REG_DC_OFFSET_CTRL, 0x75); | ||
367 | max2165_write_reg(priv, REG_DC_OFFSET_DAC, 0x00); | ||
368 | max2165_write_reg(priv, REG_ROM_TABLE_ADDR, 0x00); | ||
369 | |||
370 | max2165_set_osc(priv, priv->config->osc_clk); | ||
371 | |||
372 | max2165_read_rom_table(priv); | ||
373 | |||
374 | max2165_set_bandwidth(priv, BANDWIDTH_8_MHZ); | ||
375 | |||
376 | if (fe->ops.i2c_gate_ctrl) | ||
377 | fe->ops.i2c_gate_ctrl(fe, 0); | ||
378 | |||
379 | return 0; | ||
380 | } | ||
381 | |||
382 | static int max2165_release(struct dvb_frontend *fe) | ||
383 | { | ||
384 | struct max2165_priv *priv = fe->tuner_priv; | ||
385 | dprintk("%s()\n", __func__); | ||
386 | |||
387 | kfree(priv); | ||
388 | fe->tuner_priv = NULL; | ||
389 | |||
390 | return 0; | ||
391 | } | ||
392 | |||
393 | static const struct dvb_tuner_ops max2165_tuner_ops = { | ||
394 | .info = { | ||
395 | .name = "Maxim MAX2165", | ||
396 | .frequency_min = 470000000, | ||
397 | .frequency_max = 780000000, | ||
398 | .frequency_step = 50000, | ||
399 | }, | ||
400 | |||
401 | .release = max2165_release, | ||
402 | .init = max2165_init, | ||
403 | .sleep = max2165_sleep, | ||
404 | |||
405 | .set_params = max2165_set_params, | ||
406 | .set_analog_params = NULL, | ||
407 | .get_frequency = max2165_get_frequency, | ||
408 | .get_bandwidth = max2165_get_bandwidth, | ||
409 | .get_status = max2165_get_status | ||
410 | }; | ||
411 | |||
412 | struct dvb_frontend *max2165_attach(struct dvb_frontend *fe, | ||
413 | struct i2c_adapter *i2c, | ||
414 | struct max2165_config *cfg) | ||
415 | { | ||
416 | struct max2165_priv *priv = NULL; | ||
417 | |||
418 | dprintk("%s(%d-%04x)\n", __func__, | ||
419 | i2c ? i2c_adapter_id(i2c) : -1, | ||
420 | cfg ? cfg->i2c_address : -1); | ||
421 | |||
422 | priv = kzalloc(sizeof(struct max2165_priv), GFP_KERNEL); | ||
423 | if (priv == NULL) | ||
424 | return NULL; | ||
425 | |||
426 | memcpy(&fe->ops.tuner_ops, &max2165_tuner_ops, | ||
427 | sizeof(struct dvb_tuner_ops)); | ||
428 | |||
429 | priv->config = cfg; | ||
430 | priv->i2c = i2c; | ||
431 | fe->tuner_priv = priv; | ||
432 | |||
433 | max2165_init(fe); | ||
434 | max2165_debug_status(priv); | ||
435 | |||
436 | return fe; | ||
437 | } | ||
438 | EXPORT_SYMBOL(max2165_attach); | ||
439 | |||
440 | MODULE_AUTHOR("David T. L. Wong <davidtlwong@gmail.com>"); | ||
441 | MODULE_DESCRIPTION("Maxim MAX2165 silicon tuner driver"); | ||
442 | MODULE_LICENSE("GPL"); | ||
diff --git a/drivers/media/common/tuners/max2165.h b/drivers/media/common/tuners/max2165.h new file mode 100644 index 000000000000..c063c36a93d3 --- /dev/null +++ b/drivers/media/common/tuners/max2165.h | |||
@@ -0,0 +1,48 @@ | |||
1 | /* | ||
2 | * Driver for Maxim MAX2165 silicon tuner | ||
3 | * | ||
4 | * Copyright (c) 2009 David T. L. Wong <davidtlwong@gmail.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 | * | ||
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 | #ifndef __MAX2165_H__ | ||
23 | #define __MAX2165_H__ | ||
24 | |||
25 | struct dvb_frontend; | ||
26 | struct i2c_adapter; | ||
27 | |||
28 | struct max2165_config { | ||
29 | u8 i2c_address; | ||
30 | u8 osc_clk; /* in MHz, selectable values: 4,16,18,20,22,24,26,28 */ | ||
31 | }; | ||
32 | |||
33 | #if defined(CONFIG_MEDIA_TUNER_MAX2165) || \ | ||
34 | (defined(CONFIG_MEDIA_TUNER_MAX2165_MODULE) && defined(MODULE)) | ||
35 | extern struct dvb_frontend *max2165_attach(struct dvb_frontend *fe, | ||
36 | struct i2c_adapter *i2c, | ||
37 | struct max2165_config *cfg); | ||
38 | #else | ||
39 | static inline struct dvb_frontend *max2165_attach(struct dvb_frontend *fe, | ||
40 | struct i2c_adapter *i2c, | ||
41 | struct max2165_config *cfg) | ||
42 | { | ||
43 | printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__); | ||
44 | return NULL; | ||
45 | } | ||
46 | #endif | ||
47 | |||
48 | #endif | ||
diff --git a/drivers/media/common/tuners/max2165_priv.h b/drivers/media/common/tuners/max2165_priv.h new file mode 100644 index 000000000000..91bbe021a08d --- /dev/null +++ b/drivers/media/common/tuners/max2165_priv.h | |||
@@ -0,0 +1,60 @@ | |||
1 | /* | ||
2 | * Driver for Maxim MAX2165 silicon tuner | ||
3 | * | ||
4 | * Copyright (c) 2009 David T. L. Wong <davidtlwong@gmail.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 | * | ||
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 | #ifndef __MAX2165_PRIV_H__ | ||
23 | #define __MAX2165_PRIV_H__ | ||
24 | |||
25 | #define REG_NDIV_INT 0x00 | ||
26 | #define REG_NDIV_FRAC2 0x01 | ||
27 | #define REG_NDIV_FRAC1 0x02 | ||
28 | #define REG_NDIV_FRAC0 0x03 | ||
29 | #define REG_TRACK_FILTER 0x04 | ||
30 | #define REG_LNA 0x05 | ||
31 | #define REG_PLL_CFG 0x06 | ||
32 | #define REG_TEST 0x07 | ||
33 | #define REG_SHUTDOWN 0x08 | ||
34 | #define REG_VCO_CTRL 0x09 | ||
35 | #define REG_BASEBAND_CTRL 0x0A | ||
36 | #define REG_DC_OFFSET_CTRL 0x0B | ||
37 | #define REG_DC_OFFSET_DAC 0x0C | ||
38 | #define REG_ROM_TABLE_ADDR 0x0D | ||
39 | |||
40 | /* Read Only Registers */ | ||
41 | #define REG_ROM_TABLE_DATA 0x10 | ||
42 | #define REG_STATUS 0x11 | ||
43 | #define REG_AUTOTUNE 0x12 | ||
44 | |||
45 | struct max2165_priv { | ||
46 | struct max2165_config *config; | ||
47 | struct i2c_adapter *i2c; | ||
48 | |||
49 | u32 frequency; | ||
50 | u32 bandwidth; | ||
51 | |||
52 | u8 tf_ntch_low_cfg; | ||
53 | u8 tf_ntch_hi_cfg; | ||
54 | u8 tf_balun_low_ref; | ||
55 | u8 tf_balun_hi_ref; | ||
56 | u8 bb_filter_7mhz_cfg; | ||
57 | u8 bb_filter_8mhz_cfg; | ||
58 | }; | ||
59 | |||
60 | #endif | ||