blob: 7d2d487c9ad40e57deea3c33aa62fe6ba990832e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * descriptions + helper functions for simple dvb plls.
3 *
4 * (c) 2004 Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]
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 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 */
20
21#include <linux/module.h>
22#include <linux/dvb/frontend.h>
23#include <asm/types.h>
24
25#include "dvb-pll.h"
26
Michael Krufky05a46112007-09-07 18:19:57 -030027struct dvb_pll_priv {
28 /* pll number */
29 int nr;
30
31 /* i2c details */
32 int pll_i2c_address;
33 struct i2c_adapter *i2c;
34
35 /* the PLL descriptor */
36 struct dvb_pll_desc *pll_desc;
37
38 /* cached frequency/bandwidth */
39 u32 frequency;
40 u32 bandwidth;
41};
42
Michael Krufkyff3e7dd2007-09-09 13:00:45 -030043#define DVB_PLL_MAX 64
Michael Krufky05a46112007-09-07 18:19:57 -030044
45static unsigned int dvb_pll_devcount;
46
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030047static int debug;
Michael Krufky05a46112007-09-07 18:19:57 -030048module_param(debug, int, 0644);
49MODULE_PARM_DESC(debug, "enable verbose debug messages");
50
Michael Krufky704e39b2007-09-07 18:27:43 -030051static unsigned int id[DVB_PLL_MAX] =
52 { [ 0 ... (DVB_PLL_MAX-1) ] = DVB_PLL_UNDEFINED };
53module_param_array(id, int, NULL, 0644);
54MODULE_PARM_DESC(id, "force pll id to use (DEBUG ONLY)");
55
Michael Krufky05a46112007-09-07 18:19:57 -030056/* ----------------------------------------------------------- */
57
Michael Krufky47a99912007-06-12 16:10:51 -030058struct dvb_pll_desc {
59 char *name;
60 u32 min;
61 u32 max;
62 u32 iffreq;
Michael Krufky5d7802b2007-09-07 18:03:58 -030063 void (*set)(struct dvb_frontend *fe, u8 *buf,
64 const struct dvb_frontend_parameters *params);
Michael Krufky47a99912007-06-12 16:10:51 -030065 u8 *initdata;
66 u8 *sleepdata;
67 int count;
68 struct {
69 u32 limit;
70 u32 stepsize;
71 u8 config;
72 u8 cb;
73 } entries[12];
74};
75
Linus Torvalds1da177e2005-04-16 15:20:36 -070076/* ----------------------------------------------------------- */
77/* descriptions */
78
Michael Krufky47a99912007-06-12 16:10:51 -030079static struct dvb_pll_desc dvb_pll_thomson_dtt7579 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 .name = "Thomson dtt7579",
81 .min = 177000000,
82 .max = 858000000,
Trent Piephodf78cb02007-03-19 02:24:04 -030083 .iffreq= 36166667,
Trent Piephod519dcf2007-03-19 02:24:09 -030084 .sleepdata = (u8[]){ 2, 0xb4, 0x03 },
85 .count = 4,
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 .entries = {
Trent Piephodf78cb02007-03-19 02:24:04 -030087 { 443250000, 166667, 0xb4, 0x02 },
88 { 542000000, 166667, 0xb4, 0x08 },
89 { 771000000, 166667, 0xbc, 0x08 },
90 { 999999999, 166667, 0xf4, 0x08 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 },
92};
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Michael Krufky5d7802b2007-09-07 18:03:58 -030094static void thomson_dtt759x_bw(struct dvb_frontend *fe, u8 *buf,
Michael Krufky77d67502007-05-05 12:05:39 -030095 const struct dvb_frontend_parameters *params)
Linus Torvalds1da177e2005-04-16 15:20:36 -070096{
Michael Krufky77d67502007-05-05 12:05:39 -030097 if (BANDWIDTH_7_MHZ == params->u.ofdm.bandwidth)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 buf[3] |= 0x10;
99}
100
Michael Krufky47a99912007-06-12 16:10:51 -0300101static struct dvb_pll_desc dvb_pll_thomson_dtt759x = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 .name = "Thomson dtt759x",
103 .min = 177000000,
104 .max = 896000000,
Michael Krufky77d67502007-05-05 12:05:39 -0300105 .set = thomson_dtt759x_bw,
Trent Piephodf78cb02007-03-19 02:24:04 -0300106 .iffreq= 36166667,
Trent Piephod519dcf2007-03-19 02:24:09 -0300107 .sleepdata = (u8[]){ 2, 0x84, 0x03 },
108 .count = 5,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 .entries = {
Trent Piephodf78cb02007-03-19 02:24:04 -0300110 { 264000000, 166667, 0xb4, 0x02 },
111 { 470000000, 166667, 0xbc, 0x02 },
112 { 735000000, 166667, 0xbc, 0x08 },
113 { 835000000, 166667, 0xf4, 0x08 },
114 { 999999999, 166667, 0xfc, 0x08 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 },
116};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Michael Krufky47a99912007-06-12 16:10:51 -0300118static struct dvb_pll_desc dvb_pll_lg_z201 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 .name = "LG z201",
120 .min = 174000000,
121 .max = 862000000,
Trent Piephodf78cb02007-03-19 02:24:04 -0300122 .iffreq= 36166667,
Trent Piephod519dcf2007-03-19 02:24:09 -0300123 .sleepdata = (u8[]){ 2, 0xbc, 0x03 },
124 .count = 5,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 .entries = {
Trent Piephodf78cb02007-03-19 02:24:04 -0300126 { 157500000, 166667, 0xbc, 0x01 },
127 { 443250000, 166667, 0xbc, 0x02 },
128 { 542000000, 166667, 0xbc, 0x04 },
129 { 830000000, 166667, 0xf4, 0x04 },
130 { 999999999, 166667, 0xfc, 0x04 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 },
132};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Michael Krufky47a99912007-06-12 16:10:51 -0300134static struct dvb_pll_desc dvb_pll_unknown_1 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 .name = "unknown 1", /* used by dntv live dvb-t */
136 .min = 174000000,
137 .max = 862000000,
Trent Piephodf78cb02007-03-19 02:24:04 -0300138 .iffreq= 36166667,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 .count = 9,
140 .entries = {
Trent Piephodf78cb02007-03-19 02:24:04 -0300141 { 150000000, 166667, 0xb4, 0x01 },
142 { 173000000, 166667, 0xbc, 0x01 },
143 { 250000000, 166667, 0xb4, 0x02 },
144 { 400000000, 166667, 0xbc, 0x02 },
145 { 420000000, 166667, 0xf4, 0x02 },
146 { 470000000, 166667, 0xfc, 0x02 },
147 { 600000000, 166667, 0xbc, 0x08 },
148 { 730000000, 166667, 0xf4, 0x08 },
149 { 999999999, 166667, 0xfc, 0x08 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 },
151};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700153/* Infineon TUA6010XS
154 * used in Thomson Cable Tuner
155 */
Michael Krufky47a99912007-06-12 16:10:51 -0300156static struct dvb_pll_desc dvb_pll_tua6010xs = {
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700157 .name = "Infineon TUA6010XS",
158 .min = 44250000,
159 .max = 858000000,
Trent Piephodf78cb02007-03-19 02:24:04 -0300160 .iffreq= 36125000,
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700161 .count = 3,
162 .entries = {
Trent Piephodf78cb02007-03-19 02:24:04 -0300163 { 115750000, 62500, 0x8e, 0x03 },
164 { 403250000, 62500, 0x8e, 0x06 },
165 { 999999999, 62500, 0x8e, 0x85 },
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700166 },
167};
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700168
169/* Panasonic env57h1xd5 (some Philips PLL ?) */
Michael Krufky47a99912007-06-12 16:10:51 -0300170static struct dvb_pll_desc dvb_pll_env57h1xd5 = {
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700171 .name = "Panasonic ENV57H1XD5",
172 .min = 44250000,
173 .max = 858000000,
Trent Piephodf78cb02007-03-19 02:24:04 -0300174 .iffreq= 36125000,
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700175 .count = 4,
176 .entries = {
Trent Piephodf78cb02007-03-19 02:24:04 -0300177 { 153000000, 166667, 0xc2, 0x41 },
178 { 470000000, 166667, 0xc2, 0x42 },
179 { 526000000, 166667, 0xc2, 0x84 },
180 { 999999999, 166667, 0xc2, 0xa4 },
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700181 },
182};
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700183
184/* Philips TDA6650/TDA6651
185 * used in Panasonic ENV77H11D5
186 */
Michael Krufky5d7802b2007-09-07 18:03:58 -0300187static void tda665x_bw(struct dvb_frontend *fe, u8 *buf,
188 const struct dvb_frontend_parameters *params)
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700189{
Michael Krufky77d67502007-05-05 12:05:39 -0300190 if (params->u.ofdm.bandwidth == BANDWIDTH_8_MHZ)
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700191 buf[3] |= 0x08;
192}
193
Michael Krufky47a99912007-06-12 16:10:51 -0300194static struct dvb_pll_desc dvb_pll_tda665x = {
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700195 .name = "Philips TDA6650/TDA6651",
196 .min = 44250000,
197 .max = 858000000,
Michael Krufky77d67502007-05-05 12:05:39 -0300198 .set = tda665x_bw,
Trent Piephodf78cb02007-03-19 02:24:04 -0300199 .iffreq= 36166667,
Michael Krufkyfbfee862007-05-09 15:58:17 -0300200 .initdata = (u8[]){ 4, 0x0b, 0xf5, 0x85, 0xab },
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700201 .count = 12,
202 .entries = {
Trent Piephodf78cb02007-03-19 02:24:04 -0300203 { 93834000, 166667, 0xca, 0x61 /* 011 0 0 0 01 */ },
204 { 123834000, 166667, 0xca, 0xa1 /* 101 0 0 0 01 */ },
205 { 161000000, 166667, 0xca, 0xa1 /* 101 0 0 0 01 */ },
206 { 163834000, 166667, 0xca, 0xc2 /* 110 0 0 0 10 */ },
207 { 253834000, 166667, 0xca, 0x62 /* 011 0 0 0 10 */ },
208 { 383834000, 166667, 0xca, 0xa2 /* 101 0 0 0 10 */ },
209 { 443834000, 166667, 0xca, 0xc2 /* 110 0 0 0 10 */ },
210 { 444000000, 166667, 0xca, 0xc4 /* 110 0 0 1 00 */ },
211 { 583834000, 166667, 0xca, 0x64 /* 011 0 0 1 00 */ },
212 { 793834000, 166667, 0xca, 0xa4 /* 101 0 0 1 00 */ },
213 { 444834000, 166667, 0xca, 0xc4 /* 110 0 0 1 00 */ },
214 { 861000000, 166667, 0xca, 0xe4 /* 111 0 0 1 00 */ },
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700215 }
216};
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700217
218/* Infineon TUA6034
219 * used in LG TDTP E102P
220 */
Michael Krufky5d7802b2007-09-07 18:03:58 -0300221static void tua6034_bw(struct dvb_frontend *fe, u8 *buf,
222 const struct dvb_frontend_parameters *params)
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700223{
Michael Krufky77d67502007-05-05 12:05:39 -0300224 if (BANDWIDTH_7_MHZ != params->u.ofdm.bandwidth)
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700225 buf[3] |= 0x08;
226}
227
Michael Krufky47a99912007-06-12 16:10:51 -0300228static struct dvb_pll_desc dvb_pll_tua6034 = {
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700229 .name = "Infineon TUA6034",
230 .min = 44250000,
231 .max = 858000000,
Trent Piephodf78cb02007-03-19 02:24:04 -0300232 .iffreq= 36166667,
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700233 .count = 3,
Michael Krufky77d67502007-05-05 12:05:39 -0300234 .set = tua6034_bw,
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700235 .entries = {
Trent Piephodf78cb02007-03-19 02:24:04 -0300236 { 174500000, 62500, 0xce, 0x01 },
237 { 230000000, 62500, 0xce, 0x02 },
238 { 999999999, 62500, 0xce, 0x04 },
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700239 },
240};
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700241
Patrick Boettcher0589b8e2005-07-07 17:58:12 -0700242/* ALPS TDED4
243 * used in Nebula-Cards and USB boxes
244 */
Michael Krufky5d7802b2007-09-07 18:03:58 -0300245static void tded4_bw(struct dvb_frontend *fe, u8 *buf,
246 const struct dvb_frontend_parameters *params)
Patrick Boettcher0589b8e2005-07-07 17:58:12 -0700247{
Michael Krufky77d67502007-05-05 12:05:39 -0300248 if (params->u.ofdm.bandwidth == BANDWIDTH_8_MHZ)
Patrick Boettcher0589b8e2005-07-07 17:58:12 -0700249 buf[3] |= 0x04;
250}
251
Michael Krufky47a99912007-06-12 16:10:51 -0300252static struct dvb_pll_desc dvb_pll_tded4 = {
Patrick Boettcher0589b8e2005-07-07 17:58:12 -0700253 .name = "ALPS TDED4",
254 .min = 47000000,
255 .max = 863000000,
Trent Piephodf78cb02007-03-19 02:24:04 -0300256 .iffreq= 36166667,
Michael Krufky77d67502007-05-05 12:05:39 -0300257 .set = tded4_bw,
Patrick Boettcher0589b8e2005-07-07 17:58:12 -0700258 .count = 4,
259 .entries = {
Trent Piephodf78cb02007-03-19 02:24:04 -0300260 { 153000000, 166667, 0x85, 0x01 },
261 { 470000000, 166667, 0x85, 0x02 },
262 { 823000000, 166667, 0x85, 0x08 },
263 { 999999999, 166667, 0x85, 0x88 },
Patrick Boettcher0589b8e2005-07-07 17:58:12 -0700264 }
265};
Patrick Boettcher0589b8e2005-07-07 17:58:12 -0700266
Kirk Lapray147418c2005-11-08 21:35:39 -0800267/* ALPS TDHU2
268 * used in AverTVHD MCE A180
269 */
Michael Krufky47a99912007-06-12 16:10:51 -0300270static struct dvb_pll_desc dvb_pll_tdhu2 = {
Kirk Lapray147418c2005-11-08 21:35:39 -0800271 .name = "ALPS TDHU2",
272 .min = 54000000,
273 .max = 864000000,
Trent Piephodf78cb02007-03-19 02:24:04 -0300274 .iffreq= 44000000,
Kirk Lapray147418c2005-11-08 21:35:39 -0800275 .count = 4,
276 .entries = {
Trent Piephodf78cb02007-03-19 02:24:04 -0300277 { 162000000, 62500, 0x85, 0x01 },
278 { 426000000, 62500, 0x85, 0x02 },
279 { 782000000, 62500, 0x85, 0x08 },
280 { 999999999, 62500, 0x85, 0x88 },
Kirk Lapray147418c2005-11-08 21:35:39 -0800281 }
282};
Kirk Lapray147418c2005-11-08 21:35:39 -0800283
Michael Krufkyd76a6172006-01-23 17:11:06 -0200284/* Samsung TBMV30111IN / TBMV30712IN1
Kirk Lapray147418c2005-11-08 21:35:39 -0800285 * used in Air2PC ATSC - 2nd generation (nxt2002)
286 */
Michael Krufky47a99912007-06-12 16:10:51 -0300287static struct dvb_pll_desc dvb_pll_samsung_tbmv = {
Michael Krufky28f3d4b2006-01-23 17:11:07 -0200288 .name = "Samsung TBMV30111IN / TBMV30712IN1",
Kirk Lapray147418c2005-11-08 21:35:39 -0800289 .min = 54000000,
290 .max = 860000000,
Trent Piephodf78cb02007-03-19 02:24:04 -0300291 .iffreq= 44000000,
Michael Krufky17c37ef2006-01-15 19:04:04 -0200292 .count = 6,
Kirk Lapray147418c2005-11-08 21:35:39 -0800293 .entries = {
Trent Piephodf78cb02007-03-19 02:24:04 -0300294 { 172000000, 166667, 0xb4, 0x01 },
295 { 214000000, 166667, 0xb4, 0x02 },
296 { 467000000, 166667, 0xbc, 0x02 },
297 { 721000000, 166667, 0xbc, 0x08 },
298 { 841000000, 166667, 0xf4, 0x08 },
299 { 999999999, 166667, 0xfc, 0x02 },
Kirk Lapray147418c2005-11-08 21:35:39 -0800300 }
301};
Kirk Lapray147418c2005-11-08 21:35:39 -0800302
Regis Prevotf8bf1342006-01-11 23:31:53 -0200303/*
304 * Philips SD1878 Tuner.
305 */
Michael Krufky47a99912007-06-12 16:10:51 -0300306static struct dvb_pll_desc dvb_pll_philips_sd1878_tda8261 = {
Regis Prevotf8bf1342006-01-11 23:31:53 -0200307 .name = "Philips SD1878",
308 .min = 950000,
309 .max = 2150000,
Trent Piephodf78cb02007-03-19 02:24:04 -0300310 .iffreq= 249, /* zero-IF, offset 249 is to round up */
Regis Prevotf8bf1342006-01-11 23:31:53 -0200311 .count = 4,
312 .entries = {
Trent Piephodf78cb02007-03-19 02:24:04 -0300313 { 1250000, 500, 0xc4, 0x00},
Manu Abrahamb3332a92007-07-03 09:58:57 -0300314 { 1450000, 500, 0xc4, 0x40},
Trent Piephodf78cb02007-03-19 02:24:04 -0300315 { 2050000, 500, 0xc4, 0x80},
316 { 2150000, 500, 0xc4, 0xc0},
Regis Prevotf8bf1342006-01-11 23:31:53 -0200317 },
318};
Regis Prevotf8bf1342006-01-11 23:31:53 -0200319
Michael Krufky5d7802b2007-09-07 18:03:58 -0300320static void opera1_bw(struct dvb_frontend *fe, u8 *buf,
321 const struct dvb_frontend_parameters *params)
Marco Gittler941491f2007-04-19 11:26:47 -0300322{
Michael Krufky77d67502007-05-05 12:05:39 -0300323 if (params->u.ofdm.bandwidth == BANDWIDTH_8_MHZ)
Marco Gittler941491f2007-04-19 11:26:47 -0300324 buf[2] |= 0x08;
325}
326
Michael Krufky47a99912007-06-12 16:10:51 -0300327static struct dvb_pll_desc dvb_pll_opera1 = {
Marco Gittler941491f2007-04-19 11:26:47 -0300328 .name = "Opera Tuner",
329 .min = 900000,
330 .max = 2250000,
331 .iffreq= 0,
Michael Krufky77d67502007-05-05 12:05:39 -0300332 .set = opera1_bw,
Marco Gittler941491f2007-04-19 11:26:47 -0300333 .count = 8,
334 .entries = {
335 { 1064000, 500, 0xe5, 0xc6 },
336 { 1169000, 500, 0xe5, 0xe6 },
337 { 1299000, 500, 0xe5, 0x24 },
338 { 1444000, 500, 0xe5, 0x44 },
339 { 1606000, 500, 0xe5, 0x64 },
340 { 1777000, 500, 0xe5, 0x84 },
341 { 1941000, 500, 0xe5, 0xa4 },
342 { 2250000, 500, 0xe5, 0xc4 },
343 }
344};
Michael Krufky47a99912007-06-12 16:10:51 -0300345
Antti Palosaari139dfeb2008-05-17 23:02:00 -0300346static void samsung_dtos403ih102a_set(struct dvb_frontend *fe, u8 *buf,
347 const struct dvb_frontend_parameters *params)
348{
349 struct dvb_pll_priv *priv = fe->tuner_priv;
350 struct i2c_msg msg = {
351 .addr = priv->pll_i2c_address,
352 .flags = 0,
353 .buf = buf,
354 .len = 4
355 };
356 int result;
357
358 if (fe->ops.i2c_gate_ctrl)
359 fe->ops.i2c_gate_ctrl(fe, 1);
360
361 result = i2c_transfer(priv->i2c, &msg, 1);
362 if (result != 1)
363 printk(KERN_ERR "%s: i2c_transfer failed:%d",
364 __func__, result);
365
366 buf[2] = 0x9e;
367 buf[3] = 0x90;
368
369 return;
370}
371
372/* unknown pll used in Samsung DTOS403IH102A DVB-C tuner */
373static struct dvb_pll_desc dvb_pll_samsung_dtos403ih102a = {
374 .name = "Samsung DTOS403IH102A",
375 .min = 44250000,
376 .max = 858000000,
377 .iffreq = 36125000,
378 .count = 8,
379 .set = samsung_dtos403ih102a_set,
380 .entries = {
381 { 135000000, 62500, 0xbe, 0x01 },
382 { 177000000, 62500, 0xf6, 0x01 },
383 { 370000000, 62500, 0xbe, 0x02 },
384 { 450000000, 62500, 0xf6, 0x02 },
385 { 466000000, 62500, 0xfe, 0x02 },
386 { 538000000, 62500, 0xbe, 0x08 },
387 { 826000000, 62500, 0xf6, 0x08 },
388 { 999999999, 62500, 0xfe, 0x08 },
389 }
390};
391
Trent Piephoa104ed02009-06-11 19:21:34 -0300392/* Samsung TDTC9251DH0 DVB-T NIM, as used on AirStar 2 */
393static struct dvb_pll_desc dvb_pll_samsung_tdtc9251dh0 = {
394 .name = "Samsung TDTC9251DH0",
395 .min = 48000000,
396 .max = 863000000,
397 .iffreq = 36166667,
398 .count = 3,
399 .entries = {
400 { 157500000, 166667, 0xcc, 0x09 },
401 { 443000000, 166667, 0xcc, 0x0a },
402 { 863000000, 166667, 0xcc, 0x08 },
403 }
404};
405
Trent Piephof52c4852009-06-11 19:21:34 -0300406/* Samsung TBDU18132 DVB-S NIM with TSA5059 PLL, used in SkyStar2 DVB-S 2.3 */
407static struct dvb_pll_desc dvb_pll_samsung_tbdu18132 = {
408 .name = "Samsung TBDU18132",
409 .min = 950000,
410 .max = 2150000, /* guesses */
411 .iffreq = 0,
412 .count = 2,
413 .entries = {
414 { 1550000, 125, 0x84, 0x82 },
415 { 4095937, 125, 0x84, 0x80 },
416 }
417 /* TSA5059 PLL has a 17 bit divisor rather than the 15 bits supported
418 * by this driver. The two extra bits are 0x60 in the third byte. 15
419 * bits is enough for over 4 GHz, which is enough to cover the range
420 * of this tuner. We could use the additional divisor bits by adding
421 * more entries, e.g.
422 { 0x0ffff * 125 + 125/2, 125, 0x84 | 0x20, },
423 { 0x17fff * 125 + 125/2, 125, 0x84 | 0x40, },
424 { 0x1ffff * 125 + 125/2, 125, 0x84 | 0x60, }, */
425};
426
Michael Krufky47a99912007-06-12 16:10:51 -0300427/* ----------------------------------------------------------- */
428
429static struct dvb_pll_desc *pll_list[] = {
430 [DVB_PLL_UNDEFINED] = NULL,
431 [DVB_PLL_THOMSON_DTT7579] = &dvb_pll_thomson_dtt7579,
432 [DVB_PLL_THOMSON_DTT759X] = &dvb_pll_thomson_dtt759x,
Michael Krufky47a99912007-06-12 16:10:51 -0300433 [DVB_PLL_LG_Z201] = &dvb_pll_lg_z201,
Michael Krufky47a99912007-06-12 16:10:51 -0300434 [DVB_PLL_UNKNOWN_1] = &dvb_pll_unknown_1,
435 [DVB_PLL_TUA6010XS] = &dvb_pll_tua6010xs,
436 [DVB_PLL_ENV57H1XD5] = &dvb_pll_env57h1xd5,
437 [DVB_PLL_TUA6034] = &dvb_pll_tua6034,
Michael Krufky47a99912007-06-12 16:10:51 -0300438 [DVB_PLL_TDA665X] = &dvb_pll_tda665x,
Michael Krufky47a99912007-06-12 16:10:51 -0300439 [DVB_PLL_TDED4] = &dvb_pll_tded4,
Michael Krufky47a99912007-06-12 16:10:51 -0300440 [DVB_PLL_TDHU2] = &dvb_pll_tdhu2,
441 [DVB_PLL_SAMSUNG_TBMV] = &dvb_pll_samsung_tbmv,
442 [DVB_PLL_PHILIPS_SD1878_TDA8261] = &dvb_pll_philips_sd1878_tda8261,
Michael Krufky47a99912007-06-12 16:10:51 -0300443 [DVB_PLL_OPERA1] = &dvb_pll_opera1,
Antti Palosaari139dfeb2008-05-17 23:02:00 -0300444 [DVB_PLL_SAMSUNG_DTOS403IH102A] = &dvb_pll_samsung_dtos403ih102a,
Trent Piephoa104ed02009-06-11 19:21:34 -0300445 [DVB_PLL_SAMSUNG_TDTC9251DH0] = &dvb_pll_samsung_tdtc9251dh0,
Trent Piephof52c4852009-06-11 19:21:34 -0300446 [DVB_PLL_SAMSUNG_TBDU18132] = &dvb_pll_samsung_tbdu18132,
Michael Krufky47a99912007-06-12 16:10:51 -0300447};
448
449/* ----------------------------------------------------------- */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450/* code */
451
Michael Krufky5d7802b2007-09-07 18:03:58 -0300452static int dvb_pll_configure(struct dvb_frontend *fe, u8 *buf,
Trent Piepho4ce15672007-06-02 16:30:46 -0300453 const struct dvb_frontend_parameters *params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454{
Michael Krufky5d7802b2007-09-07 18:03:58 -0300455 struct dvb_pll_priv *priv = fe->tuner_priv;
456 struct dvb_pll_desc *desc = priv->pll_desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 u32 div;
458 int i;
459
Michael Krufky77d67502007-05-05 12:05:39 -0300460 if (params->frequency != 0 && (params->frequency < desc->min ||
461 params->frequency > desc->max))
462 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
464 for (i = 0; i < desc->count; i++) {
Michael Krufky77d67502007-05-05 12:05:39 -0300465 if (params->frequency > desc->entries[i].limit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 continue;
467 break;
468 }
Michael Krufky77d67502007-05-05 12:05:39 -0300469
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 if (debug)
Michael Krufky77d67502007-05-05 12:05:39 -0300471 printk("pll: %s: freq=%d | i=%d/%d\n", desc->name,
472 params->frequency, i, desc->count);
Andrew de Quincey272bc4d2006-04-18 17:47:12 -0300473 if (i == desc->count)
474 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
Michael Krufky77d67502007-05-05 12:05:39 -0300476 div = (params->frequency + desc->iffreq +
477 desc->entries[i].stepsize/2) / desc->entries[i].stepsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 buf[0] = div >> 8;
479 buf[1] = div & 0xff;
Michael Krufkyab66b222006-01-23 17:11:11 -0200480 buf[2] = desc->entries[i].config;
481 buf[3] = desc->entries[i].cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
Michael Krufky77d67502007-05-05 12:05:39 -0300483 if (desc->set)
Michael Krufky5d7802b2007-09-07 18:03:58 -0300484 desc->set(fe, buf, params);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
486 if (debug)
487 printk("pll: %s: div=%d | buf=0x%02x,0x%02x,0x%02x,0x%02x\n",
488 desc->name, div, buf[0], buf[1], buf[2], buf[3]);
489
Michael Krufky89faeef2006-11-20 16:45:29 -0300490 // calculate the frequency we set it to
Trent Piephodf78cb02007-03-19 02:24:04 -0300491 return (div * desc->entries[i].stepsize) - desc->iffreq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
Andrew de Quincey272bc4d2006-04-18 17:47:12 -0300494static int dvb_pll_release(struct dvb_frontend *fe)
495{
Michael Krufky22139182006-11-19 19:49:11 -0300496 kfree(fe->tuner_priv);
Andrew de Quincey272bc4d2006-04-18 17:47:12 -0300497 fe->tuner_priv = NULL;
498 return 0;
499}
500
501static int dvb_pll_sleep(struct dvb_frontend *fe)
502{
503 struct dvb_pll_priv *priv = fe->tuner_priv;
Andrew de Quincey272bc4d2006-04-18 17:47:12 -0300504
Chris Pascoec162dff2006-08-08 15:48:08 -0300505 if (priv->i2c == NULL)
506 return -EINVAL;
507
Trent Piephod519dcf2007-03-19 02:24:09 -0300508 if (priv->pll_desc->sleepdata) {
509 struct i2c_msg msg = { .flags = 0,
510 .addr = priv->pll_i2c_address,
511 .buf = priv->pll_desc->sleepdata + 1,
512 .len = priv->pll_desc->sleepdata[0] };
513
514 int result;
515
516 if (fe->ops.i2c_gate_ctrl)
517 fe->ops.i2c_gate_ctrl(fe, 1);
518 if ((result = i2c_transfer(priv->i2c, &msg, 1)) != 1) {
519 return result;
520 }
Andrew de Quincey272bc4d2006-04-18 17:47:12 -0300521 return 0;
Andrew de Quincey272bc4d2006-04-18 17:47:12 -0300522 }
Trent Piephod519dcf2007-03-19 02:24:09 -0300523 /* Shouldn't be called when initdata is NULL, maybe BUG()? */
524 return -EINVAL;
Andrew de Quincey272bc4d2006-04-18 17:47:12 -0300525}
526
Michael Krufky47ae9ae2006-11-20 16:38:42 -0300527static int dvb_pll_set_params(struct dvb_frontend *fe,
528 struct dvb_frontend_parameters *params)
Andrew de Quincey272bc4d2006-04-18 17:47:12 -0300529{
530 struct dvb_pll_priv *priv = fe->tuner_priv;
531 u8 buf[4];
532 struct i2c_msg msg =
Michael Krufky47ae9ae2006-11-20 16:38:42 -0300533 { .addr = priv->pll_i2c_address, .flags = 0,
534 .buf = buf, .len = sizeof(buf) };
Andrew de Quincey272bc4d2006-04-18 17:47:12 -0300535 int result;
Michael Krufky77d67502007-05-05 12:05:39 -0300536 u32 frequency = 0;
Andrew de Quincey272bc4d2006-04-18 17:47:12 -0300537
538 if (priv->i2c == NULL)
539 return -EINVAL;
540
Michael Krufky5d7802b2007-09-07 18:03:58 -0300541 if ((result = dvb_pll_configure(fe, buf, params)) < 0)
Andrew de Quincey272bc4d2006-04-18 17:47:12 -0300542 return result;
Michael Krufky89faeef2006-11-20 16:45:29 -0300543 else
544 frequency = result;
Andrew de Quincey272bc4d2006-04-18 17:47:12 -0300545
Patrick Boettcherdea74862006-05-14 05:01:31 -0300546 if (fe->ops.i2c_gate_ctrl)
547 fe->ops.i2c_gate_ctrl(fe, 1);
Andrew de Quincey272bc4d2006-04-18 17:47:12 -0300548 if ((result = i2c_transfer(priv->i2c, &msg, 1)) != 1) {
549 return result;
550 }
551
Michael Krufky89faeef2006-11-20 16:45:29 -0300552 priv->frequency = frequency;
Michael Krufky77d67502007-05-05 12:05:39 -0300553 priv->bandwidth = (fe->ops.info.type == FE_OFDM) ? params->u.ofdm.bandwidth : 0;
Andrew de Quincey272bc4d2006-04-18 17:47:12 -0300554
555 return 0;
556}
557
Michael Krufky47ae9ae2006-11-20 16:38:42 -0300558static int dvb_pll_calc_regs(struct dvb_frontend *fe,
559 struct dvb_frontend_parameters *params,
560 u8 *buf, int buf_len)
Andrew de Quincey272bc4d2006-04-18 17:47:12 -0300561{
562 struct dvb_pll_priv *priv = fe->tuner_priv;
563 int result;
Michael Krufky77d67502007-05-05 12:05:39 -0300564 u32 frequency = 0;
Andrew de Quincey272bc4d2006-04-18 17:47:12 -0300565
566 if (buf_len < 5)
567 return -EINVAL;
568
Michael Krufky5d7802b2007-09-07 18:03:58 -0300569 if ((result = dvb_pll_configure(fe, buf+1, params)) < 0)
Andrew de Quincey272bc4d2006-04-18 17:47:12 -0300570 return result;
Michael Krufky89faeef2006-11-20 16:45:29 -0300571 else
572 frequency = result;
573
Andrew de Quincey272bc4d2006-04-18 17:47:12 -0300574 buf[0] = priv->pll_i2c_address;
575
Michael Krufky89faeef2006-11-20 16:45:29 -0300576 priv->frequency = frequency;
Michael Krufky77d67502007-05-05 12:05:39 -0300577 priv->bandwidth = (fe->ops.info.type == FE_OFDM) ? params->u.ofdm.bandwidth : 0;
Andrew de Quincey272bc4d2006-04-18 17:47:12 -0300578
579 return 5;
580}
581
582static int dvb_pll_get_frequency(struct dvb_frontend *fe, u32 *frequency)
583{
584 struct dvb_pll_priv *priv = fe->tuner_priv;
585 *frequency = priv->frequency;
586 return 0;
587}
588
589static int dvb_pll_get_bandwidth(struct dvb_frontend *fe, u32 *bandwidth)
590{
591 struct dvb_pll_priv *priv = fe->tuner_priv;
592 *bandwidth = priv->bandwidth;
593 return 0;
594}
595
Trent Piepho26aed922007-04-27 12:31:29 -0300596static int dvb_pll_init(struct dvb_frontend *fe)
597{
598 struct dvb_pll_priv *priv = fe->tuner_priv;
599
600 if (priv->i2c == NULL)
601 return -EINVAL;
602
603 if (priv->pll_desc->initdata) {
604 struct i2c_msg msg = { .flags = 0,
605 .addr = priv->pll_i2c_address,
606 .buf = priv->pll_desc->initdata + 1,
607 .len = priv->pll_desc->initdata[0] };
608
609 int result;
610 if (fe->ops.i2c_gate_ctrl)
611 fe->ops.i2c_gate_ctrl(fe, 1);
612 if ((result = i2c_transfer(priv->i2c, &msg, 1)) != 1) {
613 return result;
614 }
615 return 0;
616 }
617 /* Shouldn't be called when initdata is NULL, maybe BUG()? */
618 return -EINVAL;
619}
620
Andrew de Quincey272bc4d2006-04-18 17:47:12 -0300621static struct dvb_tuner_ops dvb_pll_tuner_ops = {
622 .release = dvb_pll_release,
623 .sleep = dvb_pll_sleep,
Trent Piephod519dcf2007-03-19 02:24:09 -0300624 .init = dvb_pll_init,
Andrew de Quincey272bc4d2006-04-18 17:47:12 -0300625 .set_params = dvb_pll_set_params,
Andrew de Quinceybd4956b2006-04-18 21:38:49 -0300626 .calc_regs = dvb_pll_calc_regs,
Andrew de Quincey272bc4d2006-04-18 17:47:12 -0300627 .get_frequency = dvb_pll_get_frequency,
628 .get_bandwidth = dvb_pll_get_bandwidth,
629};
630
Michael Krufky47ae9ae2006-11-20 16:38:42 -0300631struct dvb_frontend *dvb_pll_attach(struct dvb_frontend *fe, int pll_addr,
632 struct i2c_adapter *i2c,
Michael Krufky47a99912007-06-12 16:10:51 -0300633 unsigned int pll_desc_id)
Andrew de Quincey272bc4d2006-04-18 17:47:12 -0300634{
Andrew de Quincey061b6232006-07-10 03:34:14 -0300635 u8 b1 [] = { 0 };
Michael Krufky47ae9ae2006-11-20 16:38:42 -0300636 struct i2c_msg msg = { .addr = pll_addr, .flags = I2C_M_RD,
637 .buf = b1, .len = 1 };
Andrew de Quincey272bc4d2006-04-18 17:47:12 -0300638 struct dvb_pll_priv *priv = NULL;
Andrew de Quincey061b6232006-07-10 03:34:14 -0300639 int ret;
Michael Krufky47a99912007-06-12 16:10:51 -0300640 struct dvb_pll_desc *desc;
641
Michael Krufky704e39b2007-09-07 18:27:43 -0300642 if ((id[dvb_pll_devcount] > DVB_PLL_UNDEFINED) &&
643 (id[dvb_pll_devcount] < ARRAY_SIZE(pll_list)))
644 pll_desc_id = id[dvb_pll_devcount];
645
Michael Krufky47a99912007-06-12 16:10:51 -0300646 BUG_ON(pll_desc_id < 1 || pll_desc_id >= ARRAY_SIZE(pll_list));
647
648 desc = pll_list[pll_desc_id];
Andrew de Quincey061b6232006-07-10 03:34:14 -0300649
Andrew de Quincey55c05b62006-07-16 19:41:41 -0300650 if (i2c != NULL) {
651 if (fe->ops.i2c_gate_ctrl)
652 fe->ops.i2c_gate_ctrl(fe, 1);
Andrew de Quincey061b6232006-07-10 03:34:14 -0300653
Andrew de Quincey95faba22006-07-18 16:37:13 -0300654 ret = i2c_transfer (i2c, &msg, 1);
655 if (ret != 1)
Andrew de Quincey2bfe0312006-08-08 09:10:08 -0300656 return NULL;
Andrew de Quincey55c05b62006-07-16 19:41:41 -0300657 if (fe->ops.i2c_gate_ctrl)
658 fe->ops.i2c_gate_ctrl(fe, 0);
659 }
Andrew de Quincey272bc4d2006-04-18 17:47:12 -0300660
661 priv = kzalloc(sizeof(struct dvb_pll_priv), GFP_KERNEL);
662 if (priv == NULL)
Andrew de Quincey2bfe0312006-08-08 09:10:08 -0300663 return NULL;
Andrew de Quincey272bc4d2006-04-18 17:47:12 -0300664
665 priv->pll_i2c_address = pll_addr;
666 priv->i2c = i2c;
667 priv->pll_desc = desc;
Michael Krufkya27e5e72007-09-07 18:11:15 -0300668 priv->nr = dvb_pll_devcount++;
Andrew de Quincey272bc4d2006-04-18 17:47:12 -0300669
Michael Krufky47ae9ae2006-11-20 16:38:42 -0300670 memcpy(&fe->ops.tuner_ops, &dvb_pll_tuner_ops,
671 sizeof(struct dvb_tuner_ops));
672
Trent Piepho982dd1b2007-04-27 12:31:27 -0300673 strncpy(fe->ops.tuner_ops.info.name, desc->name,
674 sizeof(fe->ops.tuner_ops.info.name));
Patrick Boettcherdea74862006-05-14 05:01:31 -0300675 fe->ops.tuner_ops.info.frequency_min = desc->min;
Trent Piepho0d84a622007-08-17 18:36:44 -0300676 fe->ops.tuner_ops.info.frequency_max = desc->max;
Trent Piephod519dcf2007-03-19 02:24:09 -0300677 if (!desc->initdata)
678 fe->ops.tuner_ops.init = NULL;
679 if (!desc->sleepdata)
680 fe->ops.tuner_ops.sleep = NULL;
Andrew de Quincey272bc4d2006-04-18 17:47:12 -0300681
682 fe->tuner_priv = priv;
Michael Krufkya27e5e72007-09-07 18:11:15 -0300683
Michael Krufky8528fa42007-09-09 05:08:30 -0300684 if ((debug) || (id[priv->nr] == pll_desc_id)) {
Michael Krufkya27e5e72007-09-07 18:11:15 -0300685 printk("dvb-pll[%d]", priv->nr);
686 if (i2c != NULL)
687 printk(" %d-%04x", i2c_adapter_id(i2c), pll_addr);
Michael Krufky704e39b2007-09-07 18:27:43 -0300688 printk(": id# %d (%s) attached, %s\n", pll_desc_id, desc->name,
689 id[priv->nr] == pll_desc_id ?
690 "insmod option" : "autodetected");
Michael Krufky4562fbe2007-09-09 05:16:34 -0300691 }
Michael Krufkya27e5e72007-09-07 18:11:15 -0300692
Andrew de Quincey2bfe0312006-08-08 09:10:08 -0300693 return fe;
Andrew de Quincey272bc4d2006-04-18 17:47:12 -0300694}
695EXPORT_SYMBOL(dvb_pll_attach);
696
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697MODULE_DESCRIPTION("dvb pll library");
698MODULE_AUTHOR("Gerd Knorr");
699MODULE_LICENSE("GPL");