blob: 886db3f75d5686c535e5572be53525f7c95f73e0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001 /*
2 Driver for Philips tda1004xh OFDM Frontend
3
4 (c) 2004 Andrew de Quincey
5
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.
10
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
14
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20
21 */
22
23#ifndef TDA1004X_H
24#define TDA1004X_H
25
26#include <linux/dvb/frontend.h>
27#include <linux/firmware.h>
28
Hartmut Hackmannecb60de2005-07-07 17:57:40 -070029enum tda10046_xtal {
30 TDA10046_XTAL_4M,
31 TDA10046_XTAL_16M,
32};
33
34enum tda10046_agc {
35 TDA10046_AGC_DEFAULT, /* original configuration */
36 TDA10046_AGC_IFO_AUTO_NEG, /* IF AGC only, automatic, negtive */
Hartmut Hackmannf03cbea2005-07-07 17:57:43 -070037 TDA10046_AGC_IFO_AUTO_POS, /* IF AGC only, automatic, positive */
Hartmut Hackmann1bb0e862007-04-27 12:31:10 -030038 TDA10046_AGC_TDA827X, /* IF AGC only, special setup for tda827x */
39};
40
41/* Many (hybrid) boards use GPIO 1 and 3
42 GPIO1 analog - dvb switch
43 GPIO3 firmware eeprom address switch
44*/
45enum tda10046_gpio {
46 TDA10046_GPTRI = 0x00, /* All GPIOs tristate */
47 TDA10046_GP00 = 0x40, /* GPIO3=0, GPIO1=0 */
48 TDA10046_GP01 = 0x42, /* GPIO3=0, GPIO1=1 */
49 TDA10046_GP10 = 0x48, /* GPIO3=1, GPIO1=0 */
50 TDA10046_GP11 = 0x4a, /* GPIO3=1, GPIO1=1 */
51 TDA10046_GP00_I = 0x80, /* GPIO3=0, GPIO1=0, invert in sleep mode*/
52 TDA10046_GP01_I = 0x82, /* GPIO3=0, GPIO1=1, invert in sleep mode */
53 TDA10046_GP10_I = 0x88, /* GPIO3=1, GPIO1=0, invert in sleep mode */
54 TDA10046_GP11_I = 0x8a, /* GPIO3=1, GPIO1=1, invert in sleep mode */
Hartmut Hackmannecb60de2005-07-07 17:57:40 -070055};
56
57enum tda10046_if {
58 TDA10046_FREQ_3617, /* original config, 36,166 MHZ */
59 TDA10046_FREQ_3613, /* 36,13 MHZ */
Hartmut Hackmannf03cbea2005-07-07 17:57:43 -070060 TDA10046_FREQ_045, /* low IF, 4.0, 4.5, or 5.0 MHZ */
61 TDA10046_FREQ_052, /* low IF, 5.1667 MHZ for tda9889 */
Hartmut Hackmannecb60de2005-07-07 17:57:40 -070062};
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064struct tda1004x_config
65{
66 /* the demodulator's i2c address */
67 u8 demod_address;
68
69 /* does the "inversion" need inverted? */
Johannes Stezenbachdd102c72005-05-16 21:54:35 -070070 u8 invert;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
72 /* Does the OCLK signal need inverted? */
Johannes Stezenbachdd102c72005-05-16 21:54:35 -070073 u8 invert_oclk;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Hartmut Hackmannecb60de2005-07-07 17:57:40 -070075 /* Xtal frequency, 4 or 16MHz*/
76 enum tda10046_xtal xtal_freq;
77
78 /* IF frequency */
79 enum tda10046_if if_freq;
80
81 /* AGC configuration */
82 enum tda10046_agc agc_config;
Johannes Stezenbach1dfb8002005-05-16 21:54:35 -070083
Hartmut Hackmann1bb0e862007-04-27 12:31:10 -030084 /* setting of GPIO1 and 3 */
85 enum tda10046_gpio gpio_config;
86
87 /* slave address and configuration of the tuner */
88 u8 tuner_address;
89 u8 tuner_config;
90 u8 antenna_switch;
91
92 /* if the board uses another I2c Bridge (tda8290), its address */
93 u8 i2c_gate;
94
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 /* request firmware for device */
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 int (*request_firmware)(struct dvb_frontend* fe, const struct firmware **fw, char* name);
97};
98
Hartmut Hackmann1bb0e862007-04-27 12:31:10 -030099enum tda1004x_demod {
100 TDA1004X_DEMOD_TDA10045,
101 TDA1004X_DEMOD_TDA10046,
102};
103
104struct tda1004x_state {
105 struct i2c_adapter* i2c;
106 const struct tda1004x_config* config;
107 struct dvb_frontend frontend;
108
109 /* this allows to store probed board information */
110 int conf_probed;
111
112 /* private demod data */
113 enum tda1004x_demod demod_type;
114};
115
Trent Piephoc5dec9f2006-10-14 15:44:44 -0300116#if defined(CONFIG_DVB_TDA1004X) || (defined(CONFIG_DVB_TDA1004X_MODULE) && defined(MODULE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117extern struct dvb_frontend* tda10045_attach(const struct tda1004x_config* config,
118 struct i2c_adapter* i2c);
119
120extern struct dvb_frontend* tda10046_attach(const struct tda1004x_config* config,
121 struct i2c_adapter* i2c);
Andrew de Quincey102a3422006-08-08 09:10:08 -0300122#else
123static inline struct dvb_frontend* tda10045_attach(const struct tda1004x_config* config,
124 struct i2c_adapter* i2c)
125{
126 printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __FUNCTION__);
127 return NULL;
128}
129static inline struct dvb_frontend* tda10046_attach(const struct tda1004x_config* config,
130 struct i2c_adapter* i2c)
131{
132 printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __FUNCTION__);
133 return NULL;
134}
135#endif // CONFIG_DVB_TDA1004X
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Andrew de Quinceyc10d14d2006-08-08 09:10:08 -0300137static inline int tda1004x_writereg(struct dvb_frontend *fe, u8 reg, u8 val) {
138 int r = 0;
139 u8 buf[] = {reg, val};
140 if (fe->ops.write)
141 r = fe->ops.write(fe, buf, 2);
142 return r;
143}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
145#endif // TDA1004X_H