blob: 99834aa608243e70ec9be554f8030521389b255c [file] [log] [blame]
Thomas Gleixnerc942fdd2019-05-27 08:55:06 +02001/* SPDX-License-Identifier: GPL-2.0-or-later */
Mac Michaelsd8667cb2005-07-07 17:58:29 -07002/*
Michael Krufky1963c902005-08-08 09:22:43 -07003 * Support for LGDT3302 and LGDT3303 - VSB/QAM
Mac Michaelsd8667cb2005-07-07 17:58:29 -07004 *
5 * Copyright (C) 2005 Wilson Michaels <wilsonmichaels@earthlink.net>
Mac Michaelsd8667cb2005-07-07 17:58:29 -07006 */
7
Michael Krufky6ddcc912005-07-27 11:46:00 -07008#ifndef LGDT330X_H
9#define LGDT330X_H
Mac Michaelsd8667cb2005-07-07 17:58:29 -070010
11#include <linux/dvb/frontend.h>
12
Michael Krufky1963c902005-08-08 09:22:43 -070013typedef enum lg_chip_t {
14 UNDEFINED,
15 LGDT3302,
16 LGDT3303
17}lg_chip_type;
18
Mauro Carvalho Chehab7129d312018-03-09 10:53:26 -050019/**
20 * struct lgdt330x_config - contains lgdt330x configuration
21 *
Mauro Carvalho Chehab7129d312018-03-09 10:53:26 -050022 * @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
28 * init data.
29 * This option applies ONLY to LGDT3303 - 0:disabled (default) 1:enabled
Mauro Carvalho Chehab23ba6352018-03-09 10:53:30 -050030 * @get_dvb_frontend:
31 * returns the frontend associated with this I2C client.
32 * Filled by the driver.
Mauro Carvalho Chehab7129d312018-03-09 10:53:26 -050033 */
Michael Krufky6ddcc912005-07-27 11:46:00 -070034struct lgdt330x_config
Mac Michaelsd8667cb2005-07-07 17:58:29 -070035{
Michael Krufky1963c902005-08-08 09:22:43 -070036 lg_chip_type demod_chip;
Michael Krufky1963c902005-08-08 09:22:43 -070037 int serial_mpeg;
Michael Krufky0ccef6d2005-07-27 11:45:55 -070038 int (*pll_rf_set) (struct dvb_frontend* fe, int index);
Mac Michaelsd8667cb2005-07-07 17:58:29 -070039 int (*set_ts_params)(struct dvb_frontend* fe, int is_punctured);
Michael Krufkyc0b11b92005-11-08 21:35:32 -080040 int clock_polarity_flip;
Mauro Carvalho Chehab23ba6352018-03-09 10:53:30 -050041
42 struct dvb_frontend* (*get_dvb_frontend)(struct i2c_client *);
Mac Michaelsd8667cb2005-07-07 17:58:29 -070043};
44
Arnd Bergmann9b174522015-02-18 14:12:42 -030045#if IS_REACHABLE(CONFIG_DVB_LGDT330X)
Mauro Carvalho Chehab23ba6352018-03-09 10:53:30 -050046struct dvb_frontend *lgdt330x_attach(const struct lgdt330x_config *config,
47 u8 demod_address,
48 struct i2c_adapter *i2c);
Andrew de Quincey102a3422006-08-08 09:10:08 -030049#else
Hans Verkuil2a5f2702018-05-11 10:57:07 -040050static inline
Mauro Carvalho Chehab23ba6352018-03-09 10:53:30 -050051struct dvb_frontend *lgdt330x_attach(const struct lgdt330x_config *config,
52 u8 demod_address,
53 struct i2c_adapter *i2c)
Andrew de Quincey102a3422006-08-08 09:10:08 -030054{
Harvey Harrison271ddbf2008-04-08 23:20:00 -030055 printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
Andrew de Quincey102a3422006-08-08 09:10:08 -030056 return NULL;
57}
58#endif // CONFIG_DVB_LGDT330X
Mac Michaelsd8667cb2005-07-07 17:58:29 -070059
Michael Krufky6ddcc912005-07-27 11:46:00 -070060#endif /* LGDT330X_H */