[media] HDIC HD29L2 DMB-TH demodulator driver
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / media / dvb / frontends / hd29l2.h
bloba7a64431364d35d734a1c5c88387fa27636a00df
1 /*
2 * HDIC HD29L2 DMB-TH demodulator driver
4 * Copyright (C) 2011 Metropolia University of Applied Sciences, Electria R&D
6 * Author: Antti Palosaari <crope@iki.fi>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 #ifndef HD29L2_H
24 #define HD29L2_H
26 #include <linux/dvb/frontend.h>
28 struct hd29l2_config {
30 * demodulator I2C address
32 u8 i2c_addr;
35 * tuner I2C address
36 * only needed when tuner is behind demod I2C-gate
38 u8 tuner_i2c_addr;
41 * TS settings
43 #define HD29L2_TS_SERIAL 0x00
44 #define HD29L2_TS_PARALLEL 0x80
45 #define HD29L2_TS_CLK_NORMAL 0x40
46 #define HD29L2_TS_CLK_INVERTED 0x00
47 #define HD29L2_TS_CLK_GATED 0x20
48 #define HD29L2_TS_CLK_FREE 0x00
49 u8 ts_mode;
53 #if defined(CONFIG_DVB_HD29L2) || \
54 (defined(CONFIG_DVB_HD29L2_MODULE) && defined(MODULE))
55 extern struct dvb_frontend *hd29l2_attach(const struct hd29l2_config *config,
56 struct i2c_adapter *i2c);
57 #else
58 static inline struct dvb_frontend *hd29l2_attach(
59 const struct hd29l2_config *config, struct i2c_adapter *i2c)
61 printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
62 return NULL;
64 #endif
66 #endif /* HD29L2_H */