1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 * Support for LGDT3302 and LGDT3303 - VSB/QAM
5 * Copyright (C) 2005 Wilson Michaels <wilsonmichaels@earthlink.net>
11 #include <linux/dvb/frontend.h>
13 typedef enum lg_chip_t
{
20 * struct lgdt330x_config - contains lgdt330x configuration
22 * @demod_chip: LG demodulator chip LGDT3302 or LGDT3303
23 * @serial_mpeg: MPEG hardware interface - 0:parallel 1:serial
24 * @pll_rf_set: Callback function to set PLL interface
25 * @set_ts_params: Callback function to set device param for start_dma
26 * @clock_polarity_flip:
27 * Flip the polarity of the mpeg data transfer clock using alternate
29 * This option applies ONLY to LGDT3303 - 0:disabled (default) 1:enabled
31 * returns the frontend associated with this I2C client.
32 * Filled by the driver.
34 struct lgdt330x_config
36 lg_chip_type demod_chip
;
38 int (*pll_rf_set
) (struct dvb_frontend
* fe
, int index
);
39 int (*set_ts_params
)(struct dvb_frontend
* fe
, int is_punctured
);
40 int clock_polarity_flip
;
42 struct dvb_frontend
* (*get_dvb_frontend
)(struct i2c_client
*);
45 #if IS_REACHABLE(CONFIG_DVB_LGDT330X)
46 struct dvb_frontend
*lgdt330x_attach(const struct lgdt330x_config
*config
,
48 struct i2c_adapter
*i2c
);
51 struct dvb_frontend
*lgdt330x_attach(const struct lgdt330x_config
*config
,
53 struct i2c_adapter
*i2c
)
55 printk(KERN_WARNING
"%s: driver disabled by Kconfig\n", __func__
);
58 #endif // CONFIG_DVB_LGDT330X
60 #endif /* LGDT330X_H */