blob: 5b83e4f96297126ae5b3da337b6dc250645e91e8 [file] [log] [blame]
Antti Palosaari4b64bb22012-03-30 08:21:25 -03001/*
2 * Afatech AF9033 demodulator driver
3 *
4 * Copyright (C) 2009 Antti Palosaari <crope@iki.fi>
5 * Copyright (C) 2012 Antti Palosaari <crope@iki.fi>
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 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.
20 */
21
22#ifndef AF9033_H
23#define AF9033_H
24
Antti Palosaaria781edd2014-08-31 22:57:26 -030025/*
26 * I2C address (TODO: are these in 8-bit format?)
27 * 0x38, 0x3a, 0x3c, 0x3e
28 */
Antti Palosaari4b64bb22012-03-30 08:21:25 -030029struct af9033_config {
30 /*
Antti Palosaari4b64bb22012-03-30 08:21:25 -030031 * clock Hz
32 * 12000000, 22000000, 24000000, 34000000, 32000000, 28000000, 26000000,
33 * 30000000, 36000000, 20480000, 16384000
34 */
35 u32 clock;
36
37 /*
Antti Palosaari4902bb32013-01-07 09:48:03 -030038 * ADC multiplier
39 */
40#define AF9033_ADC_MULTIPLIER_1X 0
41#define AF9033_ADC_MULTIPLIER_2X 1
42 u8 adc_multiplier;
43
44 /*
Antti Palosaari4b64bb22012-03-30 08:21:25 -030045 * tuner
46 */
47#define AF9033_TUNER_TUA9001 0x27 /* Infineon TUA 9001 */
48#define AF9033_TUNER_FC0011 0x28 /* Fitipower FC0011 */
Antti Palosaarie713ad12012-12-02 18:47:00 -030049#define AF9033_TUNER_FC0012 0x2e /* Fitipower FC0012 */
Hans-Frieder Vogt540fd4b2012-04-02 14:18:16 -030050#define AF9033_TUNER_MXL5007T 0xa0 /* MaxLinear MxL5007T */
Gianluca Gennarice1fe372012-04-02 17:25:14 -030051#define AF9033_TUNER_TDA18218 0xa1 /* NXP TDA 18218HN */
Oliver Schinagld67ceb32012-09-20 14:57:17 -030052#define AF9033_TUNER_FC2580 0x32 /* FCI FC2580 */
Antti Palosaari4902bb32013-01-07 09:48:03 -030053/* 50-5f Omega */
54#define AF9033_TUNER_IT9135_38 0x38 /* Omega */
55#define AF9033_TUNER_IT9135_51 0x51 /* Omega LNA config 1 */
56#define AF9033_TUNER_IT9135_52 0x52 /* Omega LNA config 2 */
57/* 60-6f Omega v2 */
58#define AF9033_TUNER_IT9135_60 0x60 /* Omega v2 */
59#define AF9033_TUNER_IT9135_61 0x61 /* Omega v2 LNA config 1 */
60#define AF9033_TUNER_IT9135_62 0x62 /* Omega v2 LNA config 2 */
Antti Palosaari4b64bb22012-03-30 08:21:25 -030061 u8 tuner;
62
63 /*
64 * TS settings
65 */
66#define AF9033_TS_MODE_USB 0
67#define AF9033_TS_MODE_PARALLEL 1
68#define AF9033_TS_MODE_SERIAL 2
69 u8 ts_mode:2;
70
71 /*
72 * input spectrum inversion
73 */
74 bool spec_inv;
Antti Palosaarica681fe2014-08-08 23:56:49 -030075
76 /*
77 *
78 */
79 bool dyn0_clk;
Antti Palosaari4b64bb22012-03-30 08:21:25 -030080
Antti Palosaarif5b00a72014-08-31 20:57:05 -030081 /*
82 * PID filter ops
83 */
84 struct af9033_ops *ops;
85
86 /*
87 * frontend
88 * returned by that driver
89 */
90 struct dvb_frontend **fe;
91};
Antti Palosaari4b64bb22012-03-30 08:21:25 -030092
Mauro Carvalho Chehabed97a6f2014-03-14 14:29:06 -030093struct af9033_ops {
94 int (*pid_filter_ctrl)(struct dvb_frontend *fe, int onoff);
95 int (*pid_filter)(struct dvb_frontend *fe, int index, u16 pid,
96 int onoff);
97};
98
Antti Palosaari4b64bb22012-03-30 08:21:25 -030099#endif /* AF9033_H */