Merge tag 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma
[deliverable/linux.git] / drivers / media / dvb-frontends / drxk.h
CommitLineData
43dd07f7
RM
1#ifndef _DRXK_H_
2#define _DRXK_H_
3
782d8b74 4#include <linux/kconfig.h>
43dd07f7
RM
5#include <linux/types.h>
6#include <linux/i2c.h>
7
147e110b
MCC
8/**
9 * struct drxk_config - Configure the initial parameters for DRX-K
10 *
cd7a67a4 11 * @adr: I2C address of the DRX-K
67f04617 12 * @parallel_ts: True means that the device uses parallel TS,
534e0481 13 * Serial otherwise.
67f04617
MCC
14 * @dynamic_clk: True means that the clock will be dynamically
15 * adjusted. Static clock otherwise.
d5856813 16 * @enable_merr_cfg: Enable SIO_PDR_PERR_CFG/SIO_PDR_MVAL_CFG.
67f04617
MCC
17 * @single_master: Device is on the single master mode
18 * @no_i2c_bridge: Don't switch the I2C bridge to talk with tuner
19 * @antenna_gpio: GPIO bit used to control the antenna
20 * @antenna_dvbt: GPIO bit for changing antenna to DVB-C. A value of 1
90796aca 21 * means that 1=DVBC, 0 = DVBT. Zero means the opposite.
6fb65a66 22 * @mpeg_out_clk_strength: DRXK Mpeg output clock drive strength.
67f04617 23 * @microcode_name: Name of the firmware file with the microcode
9e23f50a
MB
24 * @qam_demod_parameter_count: The number of parameters used for the command
25 * to set the demodulator parameters. All
26 * firmwares are using the 2-parameter commmand.
27 * An exception is the "drxk_a3.mc" firmware,
28 * which uses the 4-parameter command.
29 * A value of 0 (default) or lower indicates that
30 * the correct number of parameters will be
31 * automatically detected.
90796aca
MCC
32 *
33 * On the *_gpio vars, bit 0 is UIO-1, bit 1 is UIO-2 and bit 2 is
34 * UIO-3.
147e110b 35 */
0fc55e81 36struct drxk_config {
147e110b
MCC
37 u8 adr;
38 bool single_master;
39 bool no_i2c_bridge;
534e0481 40 bool parallel_ts;
67f04617 41 bool dynamic_clk;
d5856813 42 bool enable_merr_cfg;
147e110b 43
90796aca
MCC
44 bool antenna_dvbt;
45 u16 antenna_gpio;
147e110b 46
6fb65a66
MCC
47 u8 mpeg_out_clk_strength;
48 int chunk_size;
82e7dbbd 49
9e23f50a
MB
50 const char *microcode_name;
51 int qam_demod_parameter_count;
0fc55e81
MCC
52};
53
9b174527 54#if IS_REACHABLE(CONFIG_DVB_DRXK)
0fc55e81 55extern struct dvb_frontend *drxk_attach(const struct drxk_config *config,
fa4b2a17 56 struct i2c_adapter *i2c);
fd0b0814
MCC
57#else
58static inline struct dvb_frontend *drxk_attach(const struct drxk_config *config,
fa4b2a17 59 struct i2c_adapter *i2c)
fd0b0814
MCC
60{
61 printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
62 return NULL;
63}
64#endif
65
43dd07f7 66#endif
This page took 0.260273 seconds and 5 git commands to generate.