[media] rename most media/video pci drivers to media/pci
[linux-2.6/btrfs-unstable.git] / drivers / media / dvb-frontends / af9033.h
blob9e302c3f0f7d1e91a780117c40c557603b1a20ca
1 /*
2 * Afatech AF9033 demodulator driver
4 * Copyright (C) 2009 Antti Palosaari <crope@iki.fi>
5 * Copyright (C) 2012 Antti Palosaari <crope@iki.fi>
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.
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.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 #ifndef AF9033_H
23 #define AF9033_H
25 struct af9033_config {
27 * I2C address
29 u8 i2c_addr;
32 * clock Hz
33 * 12000000, 22000000, 24000000, 34000000, 32000000, 28000000, 26000000,
34 * 30000000, 36000000, 20480000, 16384000
36 u32 clock;
39 * tuner
41 #define AF9033_TUNER_TUA9001 0x27 /* Infineon TUA 9001 */
42 #define AF9033_TUNER_FC0011 0x28 /* Fitipower FC0011 */
43 #define AF9033_TUNER_MXL5007T 0xa0 /* MaxLinear MxL5007T */
44 #define AF9033_TUNER_TDA18218 0xa1 /* NXP TDA 18218HN */
45 u8 tuner;
48 * TS settings
50 #define AF9033_TS_MODE_USB 0
51 #define AF9033_TS_MODE_PARALLEL 1
52 #define AF9033_TS_MODE_SERIAL 2
53 u8 ts_mode:2;
56 * input spectrum inversion
58 bool spec_inv;
62 #if defined(CONFIG_DVB_AF9033) || \
63 (defined(CONFIG_DVB_AF9033_MODULE) && defined(MODULE))
64 extern struct dvb_frontend *af9033_attach(const struct af9033_config *config,
65 struct i2c_adapter *i2c);
66 #else
67 static inline struct dvb_frontend *af9033_attach(
68 const struct af9033_config *config, struct i2c_adapter *i2c)
70 printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
71 return NULL;
73 #endif
75 #endif /* AF9033_H */