2 * Afatech AF9013 demodulator driver
4 * Copyright (C) 2007 Antti Palosaari <crope@iki.fi>
5 * Copyright (C) 2011 Antti Palosaari <crope@iki.fi>
7 * Thanks to Afatech who kindly provided information.
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
24 #include <linux/dvb/frontend.h>
27 * I2C address: 0x1c, 0x1d
31 * struct af9013_platform_data - Platform data for the af9013 driver
32 * @clk: Clock frequency.
33 * @tuner: Used tuner model.
34 * @if_frequency: IF frequency.
36 * @ts_output_pin: TS output pin.
37 * @spec_inv: Input spectrum inverted.
38 * @api_version: Firmware API version.
40 * @get_dvb_frontend: Get DVB frontend callback.
42 * AF9013/5 GPIOs (mostly guessed):
43 * * demod#1-gpio#0 - set demod#2 i2c-addr for dual devices
44 * * demod#1-gpio#1 - xtal setting (?)
45 * * demod#1-gpio#3 - tuner#1
46 * * demod#2-gpio#0 - tuner#2
47 * * demod#2-gpio#1 - xtal setting (?)
49 struct af9013_platform_data
{
51 * 20480000, 25000000, 28000000, 28800000
54 #define AF9013_TUNER_MXL5003D 3 /* MaxLinear */
55 #define AF9013_TUNER_MXL5005D 13 /* MaxLinear */
56 #define AF9013_TUNER_MXL5005R 30 /* MaxLinear */
57 #define AF9013_TUNER_ENV77H11D5 129 /* Panasonic */
58 #define AF9013_TUNER_MT2060 130 /* Microtune */
59 #define AF9013_TUNER_MC44S803 133 /* Freescale */
60 #define AF9013_TUNER_QT1010 134 /* Quantek */
61 #define AF9013_TUNER_UNKNOWN 140 /* for can tuners ? */
62 #define AF9013_TUNER_MT2060_2 147 /* Microtune */
63 #define AF9013_TUNER_TDA18271 156 /* NXP */
64 #define AF9013_TUNER_QT1010A 162 /* Quantek */
65 #define AF9013_TUNER_MXL5007T 177 /* MaxLinear */
66 #define AF9013_TUNER_TDA18218 179 /* NXP */
69 #define AF9013_TS_MODE_USB 0
70 #define AF9013_TS_MODE_PARALLEL 1
71 #define AF9013_TS_MODE_SERIAL 2
76 #define AF9013_GPIO_ON (1 << 0)
77 #define AF9013_GPIO_EN (1 << 1)
78 #define AF9013_GPIO_O (1 << 2)
79 #define AF9013_GPIO_I (1 << 3)
80 #define AF9013_GPIO_LO (AF9013_GPIO_ON|AF9013_GPIO_EN)
81 #define AF9013_GPIO_HI (AF9013_GPIO_ON|AF9013_GPIO_EN|AF9013_GPIO_O)
82 #define AF9013_GPIO_TUNER_ON (AF9013_GPIO_ON|AF9013_GPIO_EN)
83 #define AF9013_GPIO_TUNER_OFF (AF9013_GPIO_ON|AF9013_GPIO_EN|AF9013_GPIO_O)
86 struct dvb_frontend
* (*get_dvb_frontend
)(struct i2c_client
*);
88 /* private: For legacy media attach wrapper. Do not set value. */
94 #define af9013_config af9013_platform_data
95 #define AF9013_TS_USB AF9013_TS_MODE_USB
96 #define AF9013_TS_PARALLEL AF9013_TS_MODE_PARALLEL
97 #define AF9013_TS_SERIAL AF9013_TS_MODE_SERIAL
99 #if IS_REACHABLE(CONFIG_DVB_AF9013)
101 * Attach an af9013 demod
103 * @config: pointer to &struct af9013_config with demod configuration.
104 * @i2c: i2c adapter to use.
106 * return: FE pointer on success, NULL on failure.
108 extern struct dvb_frontend
*af9013_attach(const struct af9013_config
*config
,
109 struct i2c_adapter
*i2c
);
111 static inline struct dvb_frontend
*af9013_attach(
112 const struct af9013_config
*config
, struct i2c_adapter
*i2c
)
114 pr_warn("%s: driver disabled by Kconfig\n", __func__
);
117 #endif /* CONFIG_DVB_AF9013 */
119 #endif /* AF9013_H */