1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 * Driver for Xceive XC4000 "QAM/8VSB single chip tuner"
5 * Copyright (c) 2007 Steven Toth <stoth@linuxtv.org>
11 #include <linux/firmware.h>
16 struct xc4000_config
{
18 /* if non-zero, power management is enabled by default */
20 /* value to be written to XREG_AMPLITUDE in DVB-T mode (0: no write) */
22 /* if non-zero, register 0x0E is set to filter analog TV video output */
28 /* xc4000 callback command */
29 #define XC4000_TUNER_RESET 0
31 /* For each bridge framework, when it attaches either analog or digital,
32 * it has to store a reference back to its _core equivalent structure,
33 * so that it can service the hardware by steering gpio's etc.
34 * Each bridge implementation is different so cast devptr accordingly.
35 * The xc4000 driver cares not for this value, other than ensuring
36 * it's passed back to a bridge during tuner_callback().
39 #if IS_REACHABLE(CONFIG_MEDIA_TUNER_XC4000)
40 extern struct dvb_frontend
*xc4000_attach(struct dvb_frontend
*fe
,
41 struct i2c_adapter
*i2c
,
42 struct xc4000_config
*cfg
);
44 static inline struct dvb_frontend
*xc4000_attach(struct dvb_frontend
*fe
,
45 struct i2c_adapter
*i2c
,
46 struct xc4000_config
*cfg
)
48 printk(KERN_WARNING
"%s: driver disabled by Kconfig\n", __func__
);