blob: 2921eb82fb6f97ea5d745b8b413f55e2394303bc [file] [log] [blame]
Andrew de Quincey6bca3582006-08-08 09:10:10 -03001 /*
2 Driver for Philips tda8262/tda8263 DVBS Silicon tuners
3
4 (c) 2006 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#include <linux/module.h>
24#include <linux/dvb/frontend.h>
25#include <asm/types.h>
26
27#include "tda826x.h"
28
29struct tda826x_priv {
30 /* i2c details */
31 int i2c_address;
32 struct i2c_adapter *i2c;
33 u8 has_loopthrough:1;
34 u32 frequency;
35};
36
37static int tda826x_release(struct dvb_frontend *fe)
38{
39 if (fe->tuner_priv)
40 kfree(fe->tuner_priv);
41 fe->tuner_priv = NULL;
42 return 0;
43}
44
45static int tda826x_sleep(struct dvb_frontend *fe)
46{
47 struct tda826x_priv *priv = fe->tuner_priv;
48 int ret;
49 u8 buf [] = { 0x00, 0x8d };
50 struct i2c_msg msg = { .addr = priv->i2c_address, .flags = 0, .buf = buf, .len = 2 };
51
52 if (!priv->has_loopthrough)
53 buf[1] = 0xad;
54
55 if (fe->ops.i2c_gate_ctrl)
56 fe->ops.i2c_gate_ctrl(fe, 1);
57 if ((ret = i2c_transfer (priv->i2c, &msg, 1)) != 1) {
58 printk("%s: i2c error\n", __FUNCTION__);
59 }
60 if (fe->ops.i2c_gate_ctrl)
61 fe->ops.i2c_gate_ctrl(fe, 0);
62 printk("%s:\n", __FUNCTION__);
63
64 return (ret == 1) ? 0 : ret;
65}
66
67static int tda826x_set_params(struct dvb_frontend *fe, struct dvb_frontend_parameters *params)
68{
69 struct tda826x_priv *priv = fe->tuner_priv;
70 int ret;
71 u32 div;
72 u8 buf [11];
73 struct i2c_msg msg = { .addr = priv->i2c_address, .flags = 0, .buf = buf, .len = 11 };
74
75 div = (params->frequency + (1000-1)) / 1000;
76
77 buf[0] = 0x00; // subaddress
78 buf[1] = 0x09; // powerdown RSSI + the magic value 1
79 if (!priv->has_loopthrough)
80 buf[1] |= 0x20; // power down loopthrough if not needed
81 buf[2] = (1<<5) | 0x0b; // 1Mhz + 0.45 VCO
82 buf[3] = div >> 7;
83 buf[4] = div << 1;
84 buf[5] = 0xff; // basedband filter to max
85 buf[6] = 0xfe; // gains at max + no RF attenuation
86 buf[7] = 0x83; // charge pumps at high, tests off
87 buf[8] = 0x80; // recommended value 4 for AMPVCO + disable ports.
88 buf[9] = 0x1a; // normal caltime + recommended values for SELTH + SELVTL
89 buf[10] = 0xd4; // recommended value 13 for BBIAS + unknown bit set on
90
91 if (fe->ops.i2c_gate_ctrl)
92 fe->ops.i2c_gate_ctrl(fe, 1);
93 if ((ret = i2c_transfer (priv->i2c, &msg, 1)) != 1) {
94 printk("%s: i2c error\n", __FUNCTION__);
95 }
96 if (fe->ops.i2c_gate_ctrl)
97 fe->ops.i2c_gate_ctrl(fe, 0);
98
99 priv->frequency = div * 1000;
100 printk("%s:\n", __FUNCTION__);
101
102 return (ret == 1) ? 0 : ret;
103}
104
105static int tda826x_get_frequency(struct dvb_frontend *fe, u32 *frequency)
106{
107 struct tda826x_priv *priv = fe->tuner_priv;
108 *frequency = priv->frequency;
109 return 0;
110}
111
112static struct dvb_tuner_ops tda826x_tuner_ops = {
113 .release = tda826x_release,
114 .sleep = tda826x_sleep,
115 .set_params = tda826x_set_params,
116 .get_frequency = tda826x_get_frequency,
117};
118
119struct dvb_frontend *tda826x_attach(struct dvb_frontend *fe, int addr, struct i2c_adapter *i2c, int has_loopthrough)
120{
121 struct tda826x_priv *priv = NULL;
122 u8 b1 [] = { 0, 0 };
123 struct i2c_msg msg [] = { { .addr = addr, .flags = 0, .buf = NULL, .len = 0 },
124 { .addr = addr, .flags = I2C_M_RD, .buf = b1, .len = 2 } };
125 int ret;
126
127 if (fe->ops.i2c_gate_ctrl)
128 fe->ops.i2c_gate_ctrl(fe, 1);
129 ret = i2c_transfer (i2c, msg, 2);
130 if (fe->ops.i2c_gate_ctrl)
131 fe->ops.i2c_gate_ctrl(fe, 0);
132
133 if (ret != 2)
134 return NULL;
135 if (!(b1[1] & 0x80))
136 return NULL;
137
138 priv = kzalloc(sizeof(struct tda826x_priv), GFP_KERNEL);
139 if (priv == NULL)
140 return NULL;
141
142 priv->i2c_address = addr;
143 priv->i2c = i2c;
144 priv->has_loopthrough = has_loopthrough;
145
146 memcpy(&fe->ops.tuner_ops, &tda826x_tuner_ops, sizeof(struct dvb_tuner_ops));
147 strncpy(fe->ops.tuner_ops.info.name, "Philips TDA826X", 128);
148 fe->ops.tuner_ops.info.frequency_min = 950000;
149 fe->ops.tuner_ops.info.frequency_min = 2175000;
150
151 fe->tuner_priv = priv;
152 printk("%s:\n", __FUNCTION__);
153
154 return fe;
155}
156EXPORT_SYMBOL(tda826x_attach);
157
158MODULE_DESCRIPTION("DVB TDA826x driver");
159MODULE_AUTHOR("Andrew de Quincey");
160MODULE_LICENSE("GPL");