1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 * Driver for Zarlink DVB-T ZL10353 demodulator
5 * Copyright (C) 2006, 2007 Christopher Pascoe <c.pascoe@itee.uq.edu.au>
11 #include <linux/dvb/frontend.h>
15 /* demodulator's I2C address */
18 /* frequencies in units of 0.1kHz */
19 int adc_clock
; /* default: 450560 (45.056 MHz) */
20 int if2
; /* default: 361667 (36.1667 MHz) */
22 /* set if no pll is connected to the secondary i2c bus */
25 /* set if parallel ts output is required */
28 /* set if i2c_gate_ctrl disable is required */
29 u8 disable_i2c_gate_ctrl
:1;
31 /* clock control registers (0x51-0x54) */
32 u8 clock_ctl_1
; /* default: 0x46 */
33 u8 pll_0
; /* default: 0x15 */
36 #if IS_REACHABLE(CONFIG_DVB_ZL10353)
37 extern struct dvb_frontend
* zl10353_attach(const struct zl10353_config
*config
,
38 struct i2c_adapter
*i2c
);
40 static inline struct dvb_frontend
* zl10353_attach(const struct zl10353_config
*config
,
41 struct i2c_adapter
*i2c
)
43 printk(KERN_WARNING
"%s: driver disabled by Kconfig\n", __func__
);
46 #endif /* CONFIG_DVB_ZL10353 */
48 #endif /* ZL10353_H */