2 * Driver for Microtune MT2060 "Single chip dual conversion broadband tuner"
4 * Copyright (c) 2006 Olivier DANET <odanet@caramail.com>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
30 * struct mt2060_platform_data - Platform data for the mt2060 driver
31 * @clock_out: Clock output setting. 0 = off, 1 = CLK/4, 2 = CLK/2, 3 = CLK/1.
32 * @if1: First IF used [MHz]. 0 defaults to 1220.
33 * @i2c_write_max: Maximum number of bytes I2C adapter can write at once.
34 * 0 defaults to maximum.
35 * @dvb_frontend: DVB frontend.
38 struct mt2060_platform_data
{
41 unsigned int i2c_write_max
:5;
42 struct dvb_frontend
*dvb_frontend
;
46 /* configuration struct for mt2060_attach() */
47 struct mt2060_config
{
49 u8 clock_out
; /* 0 = off, 1 = CLK/4, 2 = CLK/2, 3 = CLK/1 */
52 #if IS_REACHABLE(CONFIG_MEDIA_TUNER_MT2060)
53 extern struct dvb_frontend
* mt2060_attach(struct dvb_frontend
*fe
, struct i2c_adapter
*i2c
, struct mt2060_config
*cfg
, u16 if1
);
55 static inline struct dvb_frontend
* mt2060_attach(struct dvb_frontend
*fe
, struct i2c_adapter
*i2c
, struct mt2060_config
*cfg
, u16 if1
)
57 printk(KERN_WARNING
"%s: driver disabled by Kconfig\n", __func__
);
60 #endif // CONFIG_MEDIA_TUNER_MT2060