blob: a629897eb90511f6230cd0d2775f3b7479836d4f [file] [log] [blame]
Ralph Metzler43dd07f2011-07-03 13:42:18 -03001#ifndef _DRXK_H_
2#define _DRXK_H_
3
4#include <linux/types.h>
5#include <linux/i2c.h>
6
Mauro Carvalho Chehab147e1102011-07-10 08:24:26 -03007/**
8 * struct drxk_config - Configure the initial parameters for DRX-K
9 *
Mauro Carvalho Chehabcd7a67a2013-04-28 11:47:44 -030010 * @adr: I2C address of the DRX-K
Mauro Carvalho Chehab67f04612012-01-20 18:30:58 -030011 * @parallel_ts: True means that the device uses parallel TS,
Mauro Carvalho Chehab534e0482011-07-24 14:59:20 -030012 * Serial otherwise.
Mauro Carvalho Chehab67f04612012-01-20 18:30:58 -030013 * @dynamic_clk: True means that the clock will be dynamically
14 * adjusted. Static clock otherwise.
Mauro Carvalho Chehabd5856812012-01-21 07:57:06 -030015 * @enable_merr_cfg: Enable SIO_PDR_PERR_CFG/SIO_PDR_MVAL_CFG.
Mauro Carvalho Chehab67f04612012-01-20 18:30:58 -030016 * @single_master: Device is on the single master mode
17 * @no_i2c_bridge: Don't switch the I2C bridge to talk with tuner
18 * @antenna_gpio: GPIO bit used to control the antenna
19 * @antenna_dvbt: GPIO bit for changing antenna to DVB-C. A value of 1
Mauro Carvalho Chehab90796ac2011-07-10 09:36:30 -030020 * means that 1=DVBC, 0 = DVBT. Zero means the opposite.
Mauro Carvalho Chehab6fb65a62012-01-20 19:13:07 -030021 * @mpeg_out_clk_strength: DRXK Mpeg output clock drive strength.
Mauro Carvalho Chehab67f04612012-01-20 18:30:58 -030022 * @microcode_name: Name of the firmware file with the microcode
Martin Blumenstingl9e23f50a2012-07-04 17:36:55 -030023 * @qam_demod_parameter_count: The number of parameters used for the command
24 * to set the demodulator parameters. All
25 * firmwares are using the 2-parameter commmand.
26 * An exception is the "drxk_a3.mc" firmware,
27 * which uses the 4-parameter command.
28 * A value of 0 (default) or lower indicates that
29 * the correct number of parameters will be
30 * automatically detected.
Mauro Carvalho Chehab90796ac2011-07-10 09:36:30 -030031 *
32 * On the *_gpio vars, bit 0 is UIO-1, bit 1 is UIO-2 and bit 2 is
33 * UIO-3.
Mauro Carvalho Chehab147e1102011-07-10 08:24:26 -030034 */
Mauro Carvalho Chehab0fc55e82011-07-09 12:36:58 -030035struct drxk_config {
Mauro Carvalho Chehab147e1102011-07-10 08:24:26 -030036 u8 adr;
37 bool single_master;
38 bool no_i2c_bridge;
Mauro Carvalho Chehab534e0482011-07-24 14:59:20 -030039 bool parallel_ts;
Mauro Carvalho Chehab67f04612012-01-20 18:30:58 -030040 bool dynamic_clk;
Mauro Carvalho Chehabd5856812012-01-21 07:57:06 -030041 bool enable_merr_cfg;
Mauro Carvalho Chehab147e1102011-07-10 08:24:26 -030042
Mauro Carvalho Chehab90796ac2011-07-10 09:36:30 -030043 bool antenna_dvbt;
44 u16 antenna_gpio;
Mauro Carvalho Chehab147e1102011-07-10 08:24:26 -030045
Mauro Carvalho Chehab6fb65a62012-01-20 19:13:07 -030046 u8 mpeg_out_clk_strength;
47 int chunk_size;
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -030048
Martin Blumenstingl9e23f50a2012-07-04 17:36:55 -030049 const char *microcode_name;
50 int qam_demod_parameter_count;
Mauro Carvalho Chehab0fc55e82011-07-09 12:36:58 -030051};
52
Arnd Bergmann9b174522015-02-18 14:12:42 -030053#if IS_REACHABLE(CONFIG_DVB_DRXK)
Mauro Carvalho Chehab0fc55e82011-07-09 12:36:58 -030054extern struct dvb_frontend *drxk_attach(const struct drxk_config *config,
Mauro Carvalho Chehabfa4b2a12012-01-05 08:07:32 -020055 struct i2c_adapter *i2c);
Mauro Carvalho Chehabfd0b08142011-07-11 14:56:30 -030056#else
57static inline struct dvb_frontend *drxk_attach(const struct drxk_config *config,
Mauro Carvalho Chehabfa4b2a12012-01-05 08:07:32 -020058 struct i2c_adapter *i2c)
Mauro Carvalho Chehabfd0b08142011-07-11 14:56:30 -030059{
60 printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
61 return NULL;
62}
63#endif
64
Ralph Metzler43dd07f2011-07-03 13:42:18 -030065#endif