2 * Driver for Maxim MAX2165 silicon tuner
4 * Copyright (c) 2009 David T. L. Wong <davidtlwong@gmail.com>
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.
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
15 * GNU General Public License for more details.
18 #ifndef __MAX2165_PRIV_H__
19 #define __MAX2165_PRIV_H__
21 #define REG_NDIV_INT 0x00
22 #define REG_NDIV_FRAC2 0x01
23 #define REG_NDIV_FRAC1 0x02
24 #define REG_NDIV_FRAC0 0x03
25 #define REG_TRACK_FILTER 0x04
27 #define REG_PLL_CFG 0x06
29 #define REG_SHUTDOWN 0x08
30 #define REG_VCO_CTRL 0x09
31 #define REG_BASEBAND_CTRL 0x0A
32 #define REG_DC_OFFSET_CTRL 0x0B
33 #define REG_DC_OFFSET_DAC 0x0C
34 #define REG_ROM_TABLE_ADDR 0x0D
36 /* Read Only Registers */
37 #define REG_ROM_TABLE_DATA 0x10
38 #define REG_STATUS 0x11
39 #define REG_AUTOTUNE 0x12
42 struct max2165_config
*config
;
43 struct i2c_adapter
*i2c
;
52 u8 bb_filter_7mhz_cfg
;
53 u8 bb_filter_8mhz_cfg
;