blob: ba0c49107bd28b6792ae63330a961eef4ce36d99 [file] [log] [blame]
Thomas Gleixnerc942fdd2019-05-27 08:55:06 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * descriptions + helper functions for simple dvb plls.
4 *
5 * (c) 2004 Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 */
7
Mauro Carvalho Chehab5479a582016-10-13 15:32:32 -03008#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
9
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090010#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/module.h>
12#include <linux/dvb/frontend.h>
13#include <asm/types.h>
14
15#include "dvb-pll.h"
16
Mauro Carvalho Chehab5479a582016-10-13 15:32:32 -030017#define dprintk(fmt, arg...) \
18 printk(KERN_DEBUG pr_fmt("%s: " fmt), __func__, ##arg)
19
Michael Krufky05a46112007-09-07 18:19:57 -030020struct dvb_pll_priv {
21 /* pll number */
22 int nr;
23
24 /* i2c details */
25 int pll_i2c_address;
26 struct i2c_adapter *i2c;
27
28 /* the PLL descriptor */
Joe Perches548146f2015-07-30 14:08:53 -030029 const struct dvb_pll_desc *pll_desc;
Michael Krufky05a46112007-09-07 18:19:57 -030030
31 /* cached frequency/bandwidth */
32 u32 frequency;
33 u32 bandwidth;
34};
35
Michael Krufkyff3e7dd2007-09-09 13:00:45 -030036#define DVB_PLL_MAX 64
Michael Krufky05a46112007-09-07 18:19:57 -030037
38static unsigned int dvb_pll_devcount;
39
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030040static int debug;
Michael Krufky05a46112007-09-07 18:19:57 -030041module_param(debug, int, 0644);
42MODULE_PARM_DESC(debug, "enable verbose debug messages");
43
Michael Krufky704e39b2007-09-07 18:27:43 -030044static unsigned int id[DVB_PLL_MAX] =
45 { [ 0 ... (DVB_PLL_MAX-1) ] = DVB_PLL_UNDEFINED };
46module_param_array(id, int, NULL, 0644);
47MODULE_PARM_DESC(id, "force pll id to use (DEBUG ONLY)");
48
Michael Krufky05a46112007-09-07 18:19:57 -030049/* ----------------------------------------------------------- */
50
Michael Krufky47a99912007-06-12 16:10:51 -030051struct dvb_pll_desc {
Joe Perches548146f2015-07-30 14:08:53 -030052 const char *name;
Michael Krufky47a99912007-06-12 16:10:51 -030053 u32 min;
54 u32 max;
55 u32 iffreq;
Mauro Carvalho Chehab80d8d492011-12-21 11:16:39 -030056 void (*set)(struct dvb_frontend *fe, u8 *buf);
Michael Krufky47a99912007-06-12 16:10:51 -030057 u8 *initdata;
Malcolm Priestley2b743342011-02-06 12:29:51 -030058 u8 *initdata2;
Michael Krufky47a99912007-06-12 16:10:51 -030059 u8 *sleepdata;
60 int count;
61 struct {
62 u32 limit;
63 u32 stepsize;
64 u8 config;
65 u8 cb;
Joe Perches548146f2015-07-30 14:08:53 -030066 } entries[];
Michael Krufky47a99912007-06-12 16:10:51 -030067};
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069/* ----------------------------------------------------------- */
70/* descriptions */
71
Joe Perches548146f2015-07-30 14:08:53 -030072static const struct dvb_pll_desc dvb_pll_thomson_dtt7579 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 .name = "Thomson dtt7579",
Mauro Carvalho Chehab3d8e4502018-11-20 05:19:36 -050074 .min = 177 * MHz,
75 .max = 858 * MHz,
Trent Piephodf78cb02007-03-19 02:24:04 -030076 .iffreq= 36166667,
Trent Piephod519dcf2007-03-19 02:24:09 -030077 .sleepdata = (u8[]){ 2, 0xb4, 0x03 },
78 .count = 4,
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 .entries = {
Trent Piephodf78cb02007-03-19 02:24:04 -030080 { 443250000, 166667, 0xb4, 0x02 },
81 { 542000000, 166667, 0xb4, 0x08 },
82 { 771000000, 166667, 0xbc, 0x08 },
83 { 999999999, 166667, 0xf4, 0x08 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 },
85};
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Mauro Carvalho Chehab80d8d492011-12-21 11:16:39 -030087static void thomson_dtt759x_bw(struct dvb_frontend *fe, u8 *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088{
Mauro Carvalho Chehab80d8d492011-12-21 11:16:39 -030089 u32 bw = fe->dtv_property_cache.bandwidth_hz;
90 if (bw == 7000000)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 buf[3] |= 0x10;
92}
93
Joe Perches548146f2015-07-30 14:08:53 -030094static const struct dvb_pll_desc dvb_pll_thomson_dtt759x = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 .name = "Thomson dtt759x",
Mauro Carvalho Chehab3d8e4502018-11-20 05:19:36 -050096 .min = 177 * MHz,
97 .max = 896 * MHz,
Michael Krufky77d67502007-05-05 12:05:39 -030098 .set = thomson_dtt759x_bw,
Trent Piephodf78cb02007-03-19 02:24:04 -030099 .iffreq= 36166667,
Trent Piephod519dcf2007-03-19 02:24:09 -0300100 .sleepdata = (u8[]){ 2, 0x84, 0x03 },
101 .count = 5,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 .entries = {
Trent Piephodf78cb02007-03-19 02:24:04 -0300103 { 264000000, 166667, 0xb4, 0x02 },
104 { 470000000, 166667, 0xbc, 0x02 },
105 { 735000000, 166667, 0xbc, 0x08 },
106 { 835000000, 166667, 0xf4, 0x08 },
107 { 999999999, 166667, 0xfc, 0x08 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 },
109};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Patrice Chotard5fb67072012-07-31 15:31:20 -0300111static void thomson_dtt7520x_bw(struct dvb_frontend *fe, u8 *buf)
112{
113 u32 bw = fe->dtv_property_cache.bandwidth_hz;
114 if (bw == 8000000)
115 buf[3] ^= 0x10;
116}
117
Joe Perches548146f2015-07-30 14:08:53 -0300118static const struct dvb_pll_desc dvb_pll_thomson_dtt7520x = {
Patrice Chotard5fb67072012-07-31 15:31:20 -0300119 .name = "Thomson dtt7520x",
Mauro Carvalho Chehab3d8e4502018-11-20 05:19:36 -0500120 .min = 185 * MHz,
121 .max = 900 * MHz,
Patrice Chotard5fb67072012-07-31 15:31:20 -0300122 .set = thomson_dtt7520x_bw,
123 .iffreq = 36166667,
124 .count = 7,
125 .entries = {
126 { 305000000, 166667, 0xb4, 0x12 },
127 { 405000000, 166667, 0xbc, 0x12 },
128 { 445000000, 166667, 0xbc, 0x12 },
129 { 465000000, 166667, 0xf4, 0x18 },
130 { 735000000, 166667, 0xfc, 0x18 },
131 { 835000000, 166667, 0xbc, 0x18 },
132 { 999999999, 166667, 0xfc, 0x18 },
133 },
134};
135
Joe Perches548146f2015-07-30 14:08:53 -0300136static const struct dvb_pll_desc dvb_pll_lg_z201 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 .name = "LG z201",
Mauro Carvalho Chehab3d8e4502018-11-20 05:19:36 -0500138 .min = 174 * MHz,
139 .max = 862 * MHz,
Trent Piephodf78cb02007-03-19 02:24:04 -0300140 .iffreq= 36166667,
Trent Piephod519dcf2007-03-19 02:24:09 -0300141 .sleepdata = (u8[]){ 2, 0xbc, 0x03 },
142 .count = 5,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 .entries = {
Trent Piephodf78cb02007-03-19 02:24:04 -0300144 { 157500000, 166667, 0xbc, 0x01 },
145 { 443250000, 166667, 0xbc, 0x02 },
146 { 542000000, 166667, 0xbc, 0x04 },
147 { 830000000, 166667, 0xf4, 0x04 },
148 { 999999999, 166667, 0xfc, 0x04 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 },
150};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Joe Perches548146f2015-07-30 14:08:53 -0300152static const struct dvb_pll_desc dvb_pll_unknown_1 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 .name = "unknown 1", /* used by dntv live dvb-t */
Mauro Carvalho Chehab3d8e4502018-11-20 05:19:36 -0500154 .min = 174 * MHz,
155 .max = 862 * MHz,
Trent Piephodf78cb02007-03-19 02:24:04 -0300156 .iffreq= 36166667,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 .count = 9,
158 .entries = {
Trent Piephodf78cb02007-03-19 02:24:04 -0300159 { 150000000, 166667, 0xb4, 0x01 },
160 { 173000000, 166667, 0xbc, 0x01 },
161 { 250000000, 166667, 0xb4, 0x02 },
162 { 400000000, 166667, 0xbc, 0x02 },
163 { 420000000, 166667, 0xf4, 0x02 },
164 { 470000000, 166667, 0xfc, 0x02 },
165 { 600000000, 166667, 0xbc, 0x08 },
166 { 730000000, 166667, 0xf4, 0x08 },
167 { 999999999, 166667, 0xfc, 0x08 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 },
169};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700171/* Infineon TUA6010XS
172 * used in Thomson Cable Tuner
173 */
Joe Perches548146f2015-07-30 14:08:53 -0300174static const struct dvb_pll_desc dvb_pll_tua6010xs = {
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700175 .name = "Infineon TUA6010XS",
Mauro Carvalho Chehab3d8e4502018-11-20 05:19:36 -0500176 .min = 44250 * kHz,
177 .max = 858 * MHz,
Trent Piephodf78cb02007-03-19 02:24:04 -0300178 .iffreq= 36125000,
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700179 .count = 3,
180 .entries = {
Trent Piephodf78cb02007-03-19 02:24:04 -0300181 { 115750000, 62500, 0x8e, 0x03 },
182 { 403250000, 62500, 0x8e, 0x06 },
183 { 999999999, 62500, 0x8e, 0x85 },
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700184 },
185};
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700186
187/* Panasonic env57h1xd5 (some Philips PLL ?) */
Joe Perches548146f2015-07-30 14:08:53 -0300188static const struct dvb_pll_desc dvb_pll_env57h1xd5 = {
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700189 .name = "Panasonic ENV57H1XD5",
Mauro Carvalho Chehab3d8e4502018-11-20 05:19:36 -0500190 .min = 44250 * kHz,
191 .max = 858 * MHz,
Trent Piephodf78cb02007-03-19 02:24:04 -0300192 .iffreq= 36125000,
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700193 .count = 4,
194 .entries = {
Trent Piephodf78cb02007-03-19 02:24:04 -0300195 { 153000000, 166667, 0xc2, 0x41 },
196 { 470000000, 166667, 0xc2, 0x42 },
197 { 526000000, 166667, 0xc2, 0x84 },
198 { 999999999, 166667, 0xc2, 0xa4 },
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700199 },
200};
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700201
202/* Philips TDA6650/TDA6651
203 * used in Panasonic ENV77H11D5
204 */
Mauro Carvalho Chehab80d8d492011-12-21 11:16:39 -0300205static void tda665x_bw(struct dvb_frontend *fe, u8 *buf)
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700206{
Mauro Carvalho Chehab80d8d492011-12-21 11:16:39 -0300207 u32 bw = fe->dtv_property_cache.bandwidth_hz;
208 if (bw == 8000000)
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700209 buf[3] |= 0x08;
210}
211
Joe Perches548146f2015-07-30 14:08:53 -0300212static const struct dvb_pll_desc dvb_pll_tda665x = {
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700213 .name = "Philips TDA6650/TDA6651",
Mauro Carvalho Chehab3d8e4502018-11-20 05:19:36 -0500214 .min = 44250 * kHz,
215 .max = 858 * MHz,
Michael Krufky77d67502007-05-05 12:05:39 -0300216 .set = tda665x_bw,
Trent Piephodf78cb02007-03-19 02:24:04 -0300217 .iffreq= 36166667,
Michael Krufkyfbfee862007-05-09 15:58:17 -0300218 .initdata = (u8[]){ 4, 0x0b, 0xf5, 0x85, 0xab },
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700219 .count = 12,
220 .entries = {
Trent Piephodf78cb02007-03-19 02:24:04 -0300221 { 93834000, 166667, 0xca, 0x61 /* 011 0 0 0 01 */ },
222 { 123834000, 166667, 0xca, 0xa1 /* 101 0 0 0 01 */ },
223 { 161000000, 166667, 0xca, 0xa1 /* 101 0 0 0 01 */ },
224 { 163834000, 166667, 0xca, 0xc2 /* 110 0 0 0 10 */ },
225 { 253834000, 166667, 0xca, 0x62 /* 011 0 0 0 10 */ },
226 { 383834000, 166667, 0xca, 0xa2 /* 101 0 0 0 10 */ },
227 { 443834000, 166667, 0xca, 0xc2 /* 110 0 0 0 10 */ },
228 { 444000000, 166667, 0xca, 0xc4 /* 110 0 0 1 00 */ },
229 { 583834000, 166667, 0xca, 0x64 /* 011 0 0 1 00 */ },
230 { 793834000, 166667, 0xca, 0xa4 /* 101 0 0 1 00 */ },
231 { 444834000, 166667, 0xca, 0xc4 /* 110 0 0 1 00 */ },
232 { 861000000, 166667, 0xca, 0xe4 /* 111 0 0 1 00 */ },
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700233 }
234};
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700235
236/* Infineon TUA6034
237 * used in LG TDTP E102P
238 */
Mauro Carvalho Chehab80d8d492011-12-21 11:16:39 -0300239static void tua6034_bw(struct dvb_frontend *fe, u8 *buf)
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700240{
Mauro Carvalho Chehab80d8d492011-12-21 11:16:39 -0300241 u32 bw = fe->dtv_property_cache.bandwidth_hz;
242 if (bw == 7000000)
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700243 buf[3] |= 0x08;
244}
245
Joe Perches548146f2015-07-30 14:08:53 -0300246static const struct dvb_pll_desc dvb_pll_tua6034 = {
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700247 .name = "Infineon TUA6034",
Mauro Carvalho Chehab3d8e4502018-11-20 05:19:36 -0500248 .min = 44250 * kHz,
249 .max = 858 * MHz,
Trent Piephodf78cb02007-03-19 02:24:04 -0300250 .iffreq= 36166667,
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700251 .count = 3,
Michael Krufky77d67502007-05-05 12:05:39 -0300252 .set = tua6034_bw,
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700253 .entries = {
Trent Piephodf78cb02007-03-19 02:24:04 -0300254 { 174500000, 62500, 0xce, 0x01 },
255 { 230000000, 62500, 0xce, 0x02 },
256 { 999999999, 62500, 0xce, 0x04 },
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700257 },
258};
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700259
Patrick Boettcher0589b8e2005-07-07 17:58:12 -0700260/* ALPS TDED4
261 * used in Nebula-Cards and USB boxes
262 */
Mauro Carvalho Chehab80d8d492011-12-21 11:16:39 -0300263static void tded4_bw(struct dvb_frontend *fe, u8 *buf)
Patrick Boettcher0589b8e2005-07-07 17:58:12 -0700264{
Mauro Carvalho Chehab80d8d492011-12-21 11:16:39 -0300265 u32 bw = fe->dtv_property_cache.bandwidth_hz;
266 if (bw == 8000000)
Patrick Boettcher0589b8e2005-07-07 17:58:12 -0700267 buf[3] |= 0x04;
268}
269
Joe Perches548146f2015-07-30 14:08:53 -0300270static const struct dvb_pll_desc dvb_pll_tded4 = {
Patrick Boettcher0589b8e2005-07-07 17:58:12 -0700271 .name = "ALPS TDED4",
Mauro Carvalho Chehab3d8e4502018-11-20 05:19:36 -0500272 .min = 47 * MHz,
273 .max = 863 * MHz,
Trent Piephodf78cb02007-03-19 02:24:04 -0300274 .iffreq= 36166667,
Michael Krufky77d67502007-05-05 12:05:39 -0300275 .set = tded4_bw,
Patrick Boettcher0589b8e2005-07-07 17:58:12 -0700276 .count = 4,
277 .entries = {
Trent Piephodf78cb02007-03-19 02:24:04 -0300278 { 153000000, 166667, 0x85, 0x01 },
279 { 470000000, 166667, 0x85, 0x02 },
280 { 823000000, 166667, 0x85, 0x08 },
281 { 999999999, 166667, 0x85, 0x88 },
Patrick Boettcher0589b8e2005-07-07 17:58:12 -0700282 }
283};
Patrick Boettcher0589b8e2005-07-07 17:58:12 -0700284
Kirk Lapray147418c2005-11-08 21:35:39 -0800285/* ALPS TDHU2
286 * used in AverTVHD MCE A180
287 */
Joe Perches548146f2015-07-30 14:08:53 -0300288static const struct dvb_pll_desc dvb_pll_tdhu2 = {
Kirk Lapray147418c2005-11-08 21:35:39 -0800289 .name = "ALPS TDHU2",
Mauro Carvalho Chehab3d8e4502018-11-20 05:19:36 -0500290 .min = 54 * MHz,
291 .max = 864 * MHz,
Trent Piephodf78cb02007-03-19 02:24:04 -0300292 .iffreq= 44000000,
Kirk Lapray147418c2005-11-08 21:35:39 -0800293 .count = 4,
294 .entries = {
Trent Piephodf78cb02007-03-19 02:24:04 -0300295 { 162000000, 62500, 0x85, 0x01 },
296 { 426000000, 62500, 0x85, 0x02 },
297 { 782000000, 62500, 0x85, 0x08 },
298 { 999999999, 62500, 0x85, 0x88 },
Kirk Lapray147418c2005-11-08 21:35:39 -0800299 }
300};
Kirk Lapray147418c2005-11-08 21:35:39 -0800301
Michael Krufkyd76a6172006-01-23 17:11:06 -0200302/* Samsung TBMV30111IN / TBMV30712IN1
Kirk Lapray147418c2005-11-08 21:35:39 -0800303 * used in Air2PC ATSC - 2nd generation (nxt2002)
304 */
Joe Perches548146f2015-07-30 14:08:53 -0300305static const struct dvb_pll_desc dvb_pll_samsung_tbmv = {
Michael Krufky28f3d4b2006-01-23 17:11:07 -0200306 .name = "Samsung TBMV30111IN / TBMV30712IN1",
Mauro Carvalho Chehab3d8e4502018-11-20 05:19:36 -0500307 .min = 54 * MHz,
308 .max = 860 * MHz,
Trent Piephodf78cb02007-03-19 02:24:04 -0300309 .iffreq= 44000000,
Michael Krufky17c37ef2006-01-15 19:04:04 -0200310 .count = 6,
Kirk Lapray147418c2005-11-08 21:35:39 -0800311 .entries = {
Trent Piephodf78cb02007-03-19 02:24:04 -0300312 { 172000000, 166667, 0xb4, 0x01 },
313 { 214000000, 166667, 0xb4, 0x02 },
314 { 467000000, 166667, 0xbc, 0x02 },
315 { 721000000, 166667, 0xbc, 0x08 },
316 { 841000000, 166667, 0xf4, 0x08 },
317 { 999999999, 166667, 0xfc, 0x02 },
Kirk Lapray147418c2005-11-08 21:35:39 -0800318 }
319};
Kirk Lapray147418c2005-11-08 21:35:39 -0800320
Regis Prevotf8bf1342006-01-11 23:31:53 -0200321/*
322 * Philips SD1878 Tuner.
323 */
Joe Perches548146f2015-07-30 14:08:53 -0300324static const struct dvb_pll_desc dvb_pll_philips_sd1878_tda8261 = {
Regis Prevotf8bf1342006-01-11 23:31:53 -0200325 .name = "Philips SD1878",
Mauro Carvalho Chehab3d8e4502018-11-20 05:19:36 -0500326 .min = 950 * MHz,
327 .max = 2150 * MHz,
Trent Piephodf78cb02007-03-19 02:24:04 -0300328 .iffreq= 249, /* zero-IF, offset 249 is to round up */
Regis Prevotf8bf1342006-01-11 23:31:53 -0200329 .count = 4,
330 .entries = {
Trent Piephodf78cb02007-03-19 02:24:04 -0300331 { 1250000, 500, 0xc4, 0x00},
Manu Abrahamb3332a92007-07-03 09:58:57 -0300332 { 1450000, 500, 0xc4, 0x40},
Trent Piephodf78cb02007-03-19 02:24:04 -0300333 { 2050000, 500, 0xc4, 0x80},
334 { 2150000, 500, 0xc4, 0xc0},
Regis Prevotf8bf1342006-01-11 23:31:53 -0200335 },
336};
Regis Prevotf8bf1342006-01-11 23:31:53 -0200337
Mauro Carvalho Chehab80d8d492011-12-21 11:16:39 -0300338static void opera1_bw(struct dvb_frontend *fe, u8 *buf)
Marco Gittler941491f2007-04-19 11:26:47 -0300339{
Mauro Carvalho Chehab80d8d492011-12-21 11:16:39 -0300340 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
Malcolm Priestley2b743342011-02-06 12:29:51 -0300341 struct dvb_pll_priv *priv = fe->tuner_priv;
Mauro Carvalho Chehab80d8d492011-12-21 11:16:39 -0300342 u32 b_w = (c->symbol_rate * 27) / 32000;
Malcolm Priestley2b743342011-02-06 12:29:51 -0300343 struct i2c_msg msg = {
344 .addr = priv->pll_i2c_address,
345 .flags = 0,
346 .buf = buf,
347 .len = 4
348 };
349 int result;
350 u8 lpf;
351
352 if (fe->ops.i2c_gate_ctrl)
353 fe->ops.i2c_gate_ctrl(fe, 1);
354
355 result = i2c_transfer(priv->i2c, &msg, 1);
356 if (result != 1)
Mauro Carvalho Chehab5479a582016-10-13 15:32:32 -0300357 pr_err("%s: i2c_transfer failed:%d",
Malcolm Priestley2b743342011-02-06 12:29:51 -0300358 __func__, result);
359
360 if (b_w <= 10000)
361 lpf = 0xc;
362 else if (b_w <= 12000)
363 lpf = 0x2;
364 else if (b_w <= 14000)
365 lpf = 0xa;
366 else if (b_w <= 16000)
367 lpf = 0x6;
368 else if (b_w <= 18000)
369 lpf = 0xe;
370 else if (b_w <= 20000)
371 lpf = 0x1;
372 else if (b_w <= 22000)
373 lpf = 0x9;
374 else if (b_w <= 24000)
375 lpf = 0x5;
376 else if (b_w <= 26000)
377 lpf = 0xd;
378 else if (b_w <= 28000)
379 lpf = 0x3;
380 else
381 lpf = 0xb;
382 buf[2] ^= 0x1c; /* Flip bits 3-5 */
383 /* Set lpf */
384 buf[2] |= ((lpf >> 2) & 0x3) << 3;
385 buf[3] |= (lpf & 0x3) << 2;
386
387 return;
Marco Gittler941491f2007-04-19 11:26:47 -0300388}
389
Joe Perches548146f2015-07-30 14:08:53 -0300390static const struct dvb_pll_desc dvb_pll_opera1 = {
Marco Gittler941491f2007-04-19 11:26:47 -0300391 .name = "Opera Tuner",
Mauro Carvalho Chehab3d8e4502018-11-20 05:19:36 -0500392 .min = 900 * MHz,
393 .max = 2250 * MHz,
Malcolm Priestley2b743342011-02-06 12:29:51 -0300394 .initdata = (u8[]){ 4, 0x08, 0xe5, 0xe1, 0x00 },
395 .initdata2 = (u8[]){ 4, 0x08, 0xe5, 0xe5, 0x00 },
Marco Gittler941491f2007-04-19 11:26:47 -0300396 .iffreq= 0,
Michael Krufky77d67502007-05-05 12:05:39 -0300397 .set = opera1_bw,
Marco Gittler941491f2007-04-19 11:26:47 -0300398 .count = 8,
399 .entries = {
Malcolm Priestley2b743342011-02-06 12:29:51 -0300400 { 1064000, 500, 0xf9, 0xc2 },
401 { 1169000, 500, 0xf9, 0xe2 },
402 { 1299000, 500, 0xf9, 0x20 },
403 { 1444000, 500, 0xf9, 0x40 },
404 { 1606000, 500, 0xf9, 0x60 },
405 { 1777000, 500, 0xf9, 0x80 },
406 { 1941000, 500, 0xf9, 0xa0 },
407 { 2250000, 500, 0xf9, 0xc0 },
Marco Gittler941491f2007-04-19 11:26:47 -0300408 }
409};
Michael Krufky47a99912007-06-12 16:10:51 -0300410
Mauro Carvalho Chehab80d8d492011-12-21 11:16:39 -0300411static void samsung_dtos403ih102a_set(struct dvb_frontend *fe, u8 *buf)
Antti Palosaari139dfeb2008-05-17 23:02:00 -0300412{
413 struct dvb_pll_priv *priv = fe->tuner_priv;
414 struct i2c_msg msg = {
415 .addr = priv->pll_i2c_address,
416 .flags = 0,
417 .buf = buf,
418 .len = 4
419 };
420 int result;
421
422 if (fe->ops.i2c_gate_ctrl)
423 fe->ops.i2c_gate_ctrl(fe, 1);
424
425 result = i2c_transfer(priv->i2c, &msg, 1);
426 if (result != 1)
Mauro Carvalho Chehab5479a582016-10-13 15:32:32 -0300427 pr_err("%s: i2c_transfer failed:%d",
Antti Palosaari139dfeb2008-05-17 23:02:00 -0300428 __func__, result);
429
430 buf[2] = 0x9e;
431 buf[3] = 0x90;
432
433 return;
434}
435
436/* unknown pll used in Samsung DTOS403IH102A DVB-C tuner */
Joe Perches548146f2015-07-30 14:08:53 -0300437static const struct dvb_pll_desc dvb_pll_samsung_dtos403ih102a = {
Antti Palosaari139dfeb2008-05-17 23:02:00 -0300438 .name = "Samsung DTOS403IH102A",
Mauro Carvalho Chehab3d8e4502018-11-20 05:19:36 -0500439 .min = 44250 * kHz,
440 .max = 858 * MHz,
Antti Palosaari139dfeb2008-05-17 23:02:00 -0300441 .iffreq = 36125000,
442 .count = 8,
443 .set = samsung_dtos403ih102a_set,
444 .entries = {
445 { 135000000, 62500, 0xbe, 0x01 },
446 { 177000000, 62500, 0xf6, 0x01 },
447 { 370000000, 62500, 0xbe, 0x02 },
448 { 450000000, 62500, 0xf6, 0x02 },
449 { 466000000, 62500, 0xfe, 0x02 },
450 { 538000000, 62500, 0xbe, 0x08 },
451 { 826000000, 62500, 0xf6, 0x08 },
452 { 999999999, 62500, 0xfe, 0x08 },
453 }
454};
455
Trent Piephoa104ed02009-06-11 19:21:34 -0300456/* Samsung TDTC9251DH0 DVB-T NIM, as used on AirStar 2 */
Joe Perches548146f2015-07-30 14:08:53 -0300457static const struct dvb_pll_desc dvb_pll_samsung_tdtc9251dh0 = {
Trent Piephoa104ed02009-06-11 19:21:34 -0300458 .name = "Samsung TDTC9251DH0",
Mauro Carvalho Chehab3d8e4502018-11-20 05:19:36 -0500459 .min = 48 * MHz,
460 .max = 863 * MHz,
Trent Piephoa104ed02009-06-11 19:21:34 -0300461 .iffreq = 36166667,
462 .count = 3,
463 .entries = {
464 { 157500000, 166667, 0xcc, 0x09 },
465 { 443000000, 166667, 0xcc, 0x0a },
466 { 863000000, 166667, 0xcc, 0x08 },
467 }
468};
469
Trent Piephof52c4852009-06-11 19:21:34 -0300470/* Samsung TBDU18132 DVB-S NIM with TSA5059 PLL, used in SkyStar2 DVB-S 2.3 */
Joe Perches548146f2015-07-30 14:08:53 -0300471static const struct dvb_pll_desc dvb_pll_samsung_tbdu18132 = {
Trent Piephof52c4852009-06-11 19:21:34 -0300472 .name = "Samsung TBDU18132",
Mauro Carvalho Chehab3d8e4502018-11-20 05:19:36 -0500473 .min = 950 * MHz,
474 .max = 2150 * MHz, /* guesses */
Trent Piephof52c4852009-06-11 19:21:34 -0300475 .iffreq = 0,
476 .count = 2,
477 .entries = {
478 { 1550000, 125, 0x84, 0x82 },
479 { 4095937, 125, 0x84, 0x80 },
480 }
481 /* TSA5059 PLL has a 17 bit divisor rather than the 15 bits supported
482 * by this driver. The two extra bits are 0x60 in the third byte. 15
483 * bits is enough for over 4 GHz, which is enough to cover the range
484 * of this tuner. We could use the additional divisor bits by adding
485 * more entries, e.g.
486 { 0x0ffff * 125 + 125/2, 125, 0x84 | 0x20, },
487 { 0x17fff * 125 + 125/2, 125, 0x84 | 0x40, },
488 { 0x1ffff * 125 + 125/2, 125, 0x84 | 0x60, }, */
489};
490
Trent Piepho9d5d75a2009-06-11 19:21:34 -0300491/* Samsung TBMU24112 DVB-S NIM with SL1935 zero-IF tuner */
Joe Perches548146f2015-07-30 14:08:53 -0300492static const struct dvb_pll_desc dvb_pll_samsung_tbmu24112 = {
Trent Piepho9d5d75a2009-06-11 19:21:34 -0300493 .name = "Samsung TBMU24112",
Mauro Carvalho Chehab3d8e4502018-11-20 05:19:36 -0500494 .min = 950 * MHz,
495 .max = 2150 * MHz, /* guesses */
Trent Piepho9d5d75a2009-06-11 19:21:34 -0300496 .iffreq = 0,
497 .count = 2,
498 .entries = {
499 { 1500000, 125, 0x84, 0x18 },
500 { 9999999, 125, 0x84, 0x08 },
501 }
502};
503
Trent Piephod799ce52009-06-11 19:24:00 -0300504/* Alps TDEE4 DVB-C NIM, used on Cablestar 2 */
505/* byte 4 : 1 * * AGD R3 R2 R1 R0
506 * byte 5 : C1 * RE RTS BS4 BS3 BS2 BS1
507 * AGD = 1, R3 R2 R1 R0 = 0 1 0 1 => byte 4 = 1**10101 = 0x95
508 * Range(MHz) C1 * RE RTS BS4 BS3 BS2 BS1 Byte 5
509 * 47 - 153 0 * 0 0 0 0 0 1 0x01
510 * 153 - 430 0 * 0 0 0 0 1 0 0x02
511 * 430 - 822 0 * 0 0 1 0 0 0 0x08
512 * 822 - 862 1 * 0 0 1 0 0 0 0x88 */
Joe Perches548146f2015-07-30 14:08:53 -0300513static const struct dvb_pll_desc dvb_pll_alps_tdee4 = {
Trent Piephod799ce52009-06-11 19:24:00 -0300514 .name = "ALPS TDEE4",
Mauro Carvalho Chehab3d8e4502018-11-20 05:19:36 -0500515 .min = 47 * MHz,
516 .max = 862 * MHz,
Trent Piephod799ce52009-06-11 19:24:00 -0300517 .iffreq = 36125000,
518 .count = 4,
519 .entries = {
520 { 153000000, 62500, 0x95, 0x01 },
521 { 430000000, 62500, 0x95, 0x02 },
522 { 822000000, 62500, 0x95, 0x08 },
523 { 999999999, 62500, 0x95, 0x88 },
524 }
525};
526
Akihiro Tsukada17459722018-04-08 13:21:35 -0400527/* Infineon TUA6034 ISDB-T, used in Friio */
528/* CP cur. 50uA, AGC takeover: 103dBuV, PORT3 on */
529static const struct dvb_pll_desc dvb_pll_tua6034_friio = {
530 .name = "Infineon TUA6034 ISDB-T (Friio)",
Mauro Carvalho Chehab3d8e4502018-11-20 05:19:36 -0500531 .min = 90 * MHz,
532 .max = 770 * MHz,
Akihiro Tsukada17459722018-04-08 13:21:35 -0400533 .iffreq = 57000000,
534 .initdata = (u8[]){ 4, 0x9a, 0x50, 0xb2, 0x08 },
535 .sleepdata = (u8[]){ 4, 0x9a, 0x70, 0xb3, 0x0b },
536 .count = 3,
537 .entries = {
538 { 170000000, 142857, 0xba, 0x09 },
539 { 470000000, 142857, 0xba, 0x0a },
540 { 770000000, 142857, 0xb2, 0x08 },
541 }
542};
543
Akihiro Tsukada648db062018-04-08 13:39:49 -0400544/* Philips TDA6651 ISDB-T, used in Earthsoft PT1 */
545static const struct dvb_pll_desc dvb_pll_tda665x_earth_pt1 = {
546 .name = "Philips TDA6651 ISDB-T (EarthSoft PT1)",
Mauro Carvalho Chehab3d8e4502018-11-20 05:19:36 -0500547 .min = 90 * MHz,
548 .max = 770 * MHz,
Akihiro Tsukada648db062018-04-08 13:39:49 -0400549 .iffreq = 57000000,
550 .initdata = (u8[]){ 5, 0x0e, 0x7f, 0xc1, 0x80, 0x80 },
551 .count = 10,
552 .entries = {
553 { 140000000, 142857, 0xc1, 0x81 },
554 { 170000000, 142857, 0xc1, 0xa1 },
555 { 220000000, 142857, 0xc1, 0x62 },
556 { 330000000, 142857, 0xc1, 0xa2 },
557 { 402000000, 142857, 0xc1, 0xe2 },
558 { 450000000, 142857, 0xc1, 0x64 },
559 { 550000000, 142857, 0xc1, 0x84 },
560 { 600000000, 142857, 0xc1, 0xa4 },
561 { 700000000, 142857, 0xc1, 0xc4 },
562 { 770000000, 142857, 0xc1, 0xe4 },
563 }
564};
565
Michael Krufky47a99912007-06-12 16:10:51 -0300566/* ----------------------------------------------------------- */
567
Joe Perches548146f2015-07-30 14:08:53 -0300568static const struct dvb_pll_desc *pll_list[] = {
Michael Krufky47a99912007-06-12 16:10:51 -0300569 [DVB_PLL_UNDEFINED] = NULL,
570 [DVB_PLL_THOMSON_DTT7579] = &dvb_pll_thomson_dtt7579,
571 [DVB_PLL_THOMSON_DTT759X] = &dvb_pll_thomson_dtt759x,
Patrice Chotard5fb67072012-07-31 15:31:20 -0300572 [DVB_PLL_THOMSON_DTT7520X] = &dvb_pll_thomson_dtt7520x,
Michael Krufky47a99912007-06-12 16:10:51 -0300573 [DVB_PLL_LG_Z201] = &dvb_pll_lg_z201,
Michael Krufky47a99912007-06-12 16:10:51 -0300574 [DVB_PLL_UNKNOWN_1] = &dvb_pll_unknown_1,
575 [DVB_PLL_TUA6010XS] = &dvb_pll_tua6010xs,
576 [DVB_PLL_ENV57H1XD5] = &dvb_pll_env57h1xd5,
577 [DVB_PLL_TUA6034] = &dvb_pll_tua6034,
Michael Krufky47a99912007-06-12 16:10:51 -0300578 [DVB_PLL_TDA665X] = &dvb_pll_tda665x,
Michael Krufky47a99912007-06-12 16:10:51 -0300579 [DVB_PLL_TDED4] = &dvb_pll_tded4,
Trent Piephod799ce52009-06-11 19:24:00 -0300580 [DVB_PLL_TDEE4] = &dvb_pll_alps_tdee4,
Michael Krufky47a99912007-06-12 16:10:51 -0300581 [DVB_PLL_TDHU2] = &dvb_pll_tdhu2,
582 [DVB_PLL_SAMSUNG_TBMV] = &dvb_pll_samsung_tbmv,
583 [DVB_PLL_PHILIPS_SD1878_TDA8261] = &dvb_pll_philips_sd1878_tda8261,
Michael Krufky47a99912007-06-12 16:10:51 -0300584 [DVB_PLL_OPERA1] = &dvb_pll_opera1,
Antti Palosaari139dfeb2008-05-17 23:02:00 -0300585 [DVB_PLL_SAMSUNG_DTOS403IH102A] = &dvb_pll_samsung_dtos403ih102a,
Trent Piephoa104ed02009-06-11 19:21:34 -0300586 [DVB_PLL_SAMSUNG_TDTC9251DH0] = &dvb_pll_samsung_tdtc9251dh0,
Trent Piephof52c4852009-06-11 19:21:34 -0300587 [DVB_PLL_SAMSUNG_TBDU18132] = &dvb_pll_samsung_tbdu18132,
Trent Piepho9d5d75a2009-06-11 19:21:34 -0300588 [DVB_PLL_SAMSUNG_TBMU24112] = &dvb_pll_samsung_tbmu24112,
Akihiro Tsukada17459722018-04-08 13:21:35 -0400589 [DVB_PLL_TUA6034_FRIIO] = &dvb_pll_tua6034_friio,
Akihiro Tsukada648db062018-04-08 13:39:49 -0400590 [DVB_PLL_TDA665X_EARTH_PT1] = &dvb_pll_tda665x_earth_pt1,
Michael Krufky47a99912007-06-12 16:10:51 -0300591};
592
593/* ----------------------------------------------------------- */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594/* code */
595
Michael Krufky5d7802b2007-09-07 18:03:58 -0300596static int dvb_pll_configure(struct dvb_frontend *fe, u8 *buf,
Mauro Carvalho Chehab80d8d492011-12-21 11:16:39 -0300597 const u32 frequency)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598{
Michael Krufky5d7802b2007-09-07 18:03:58 -0300599 struct dvb_pll_priv *priv = fe->tuner_priv;
Joe Perches548146f2015-07-30 14:08:53 -0300600 const struct dvb_pll_desc *desc = priv->pll_desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 u32 div;
602 int i;
603
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 for (i = 0; i < desc->count; i++) {
Mauro Carvalho Chehab80d8d492011-12-21 11:16:39 -0300605 if (frequency > desc->entries[i].limit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 continue;
607 break;
608 }
Michael Krufky77d67502007-05-05 12:05:39 -0300609
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 if (debug)
Mauro Carvalho Chehab5479a582016-10-13 15:32:32 -0300611 dprintk("pll: %s: freq=%d | i=%d/%d\n", desc->name,
Mauro Carvalho Chehab80d8d492011-12-21 11:16:39 -0300612 frequency, i, desc->count);
Andrew de Quincey272bc4d2006-04-18 17:47:12 -0300613 if (i == desc->count)
614 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
Mauro Carvalho Chehab80d8d492011-12-21 11:16:39 -0300616 div = (frequency + desc->iffreq +
Michael Krufky77d67502007-05-05 12:05:39 -0300617 desc->entries[i].stepsize/2) / desc->entries[i].stepsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 buf[0] = div >> 8;
619 buf[1] = div & 0xff;
Michael Krufkyab66b222006-01-23 17:11:11 -0200620 buf[2] = desc->entries[i].config;
621 buf[3] = desc->entries[i].cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Michael Krufky77d67502007-05-05 12:05:39 -0300623 if (desc->set)
Mauro Carvalho Chehab80d8d492011-12-21 11:16:39 -0300624 desc->set(fe, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
626 if (debug)
Mauro Carvalho Chehab5479a582016-10-13 15:32:32 -0300627 dprintk("pll: %s: div=%d | buf=0x%02x,0x%02x,0x%02x,0x%02x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 desc->name, div, buf[0], buf[1], buf[2], buf[3]);
629
Michael Krufky89faeef2006-11-20 16:45:29 -0300630 // calculate the frequency we set it to
Trent Piephodf78cb02007-03-19 02:24:04 -0300631 return (div * desc->entries[i].stepsize) - desc->iffreq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
Mauro Carvalho Chehabf2709c22016-11-18 20:30:51 -0200634static void dvb_pll_release(struct dvb_frontend *fe)
635{
636 kfree(fe->tuner_priv);
637 fe->tuner_priv = NULL;
638}
639
Andrew de Quincey272bc4d2006-04-18 17:47:12 -0300640static int dvb_pll_sleep(struct dvb_frontend *fe)
641{
642 struct dvb_pll_priv *priv = fe->tuner_priv;
Andrew de Quincey272bc4d2006-04-18 17:47:12 -0300643
Chris Pascoec162dff2006-08-08 15:48:08 -0300644 if (priv->i2c == NULL)
645 return -EINVAL;
646
Trent Piephod519dcf2007-03-19 02:24:09 -0300647 if (priv->pll_desc->sleepdata) {
648 struct i2c_msg msg = { .flags = 0,
649 .addr = priv->pll_i2c_address,
650 .buf = priv->pll_desc->sleepdata + 1,
651 .len = priv->pll_desc->sleepdata[0] };
652
653 int result;
654
655 if (fe->ops.i2c_gate_ctrl)
656 fe->ops.i2c_gate_ctrl(fe, 1);
657 if ((result = i2c_transfer(priv->i2c, &msg, 1)) != 1) {
658 return result;
659 }
Andrew de Quincey272bc4d2006-04-18 17:47:12 -0300660 return 0;
Andrew de Quincey272bc4d2006-04-18 17:47:12 -0300661 }
Trent Piephod519dcf2007-03-19 02:24:09 -0300662 /* Shouldn't be called when initdata is NULL, maybe BUG()? */
663 return -EINVAL;
Andrew de Quincey272bc4d2006-04-18 17:47:12 -0300664}
665
Mauro Carvalho Chehab14d24d12011-12-24 12:24:33 -0300666static int dvb_pll_set_params(struct dvb_frontend *fe)
Andrew de Quincey272bc4d2006-04-18 17:47:12 -0300667{
Mauro Carvalho Chehab80d8d492011-12-21 11:16:39 -0300668 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
Andrew de Quincey272bc4d2006-04-18 17:47:12 -0300669 struct dvb_pll_priv *priv = fe->tuner_priv;
670 u8 buf[4];
671 struct i2c_msg msg =
Michael Krufky47ae9ae2006-11-20 16:38:42 -0300672 { .addr = priv->pll_i2c_address, .flags = 0,
673 .buf = buf, .len = sizeof(buf) };
Andrew de Quincey272bc4d2006-04-18 17:47:12 -0300674 int result;
Michael Krufky77d67502007-05-05 12:05:39 -0300675 u32 frequency = 0;
Andrew de Quincey272bc4d2006-04-18 17:47:12 -0300676
677 if (priv->i2c == NULL)
678 return -EINVAL;
679
Mauro Carvalho Chehab80d8d492011-12-21 11:16:39 -0300680 result = dvb_pll_configure(fe, buf, c->frequency);
681 if (result < 0)
Andrew de Quincey272bc4d2006-04-18 17:47:12 -0300682 return result;
Michael Krufky89faeef2006-11-20 16:45:29 -0300683 else
684 frequency = result;
Andrew de Quincey272bc4d2006-04-18 17:47:12 -0300685
Patrick Boettcherdea74862006-05-14 05:01:31 -0300686 if (fe->ops.i2c_gate_ctrl)
687 fe->ops.i2c_gate_ctrl(fe, 1);
Andrew de Quincey272bc4d2006-04-18 17:47:12 -0300688 if ((result = i2c_transfer(priv->i2c, &msg, 1)) != 1) {
689 return result;
690 }
691
Michael Krufky89faeef2006-11-20 16:45:29 -0300692 priv->frequency = frequency;
Mauro Carvalho Chehabc6f56e72011-12-26 20:02:28 -0300693 priv->bandwidth = c->bandwidth_hz;
Andrew de Quincey272bc4d2006-04-18 17:47:12 -0300694
695 return 0;
696}
697
Michael Krufky47ae9ae2006-11-20 16:38:42 -0300698static int dvb_pll_calc_regs(struct dvb_frontend *fe,
Michael Krufky47ae9ae2006-11-20 16:38:42 -0300699 u8 *buf, int buf_len)
Andrew de Quincey272bc4d2006-04-18 17:47:12 -0300700{
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300701 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
Andrew de Quincey272bc4d2006-04-18 17:47:12 -0300702 struct dvb_pll_priv *priv = fe->tuner_priv;
703 int result;
Michael Krufky77d67502007-05-05 12:05:39 -0300704 u32 frequency = 0;
Andrew de Quincey272bc4d2006-04-18 17:47:12 -0300705
706 if (buf_len < 5)
707 return -EINVAL;
708
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300709 result = dvb_pll_configure(fe, buf + 1, c->frequency);
Mauro Carvalho Chehab80d8d492011-12-21 11:16:39 -0300710 if (result < 0)
Andrew de Quincey272bc4d2006-04-18 17:47:12 -0300711 return result;
Michael Krufky89faeef2006-11-20 16:45:29 -0300712 else
713 frequency = result;
714
Andrew de Quincey272bc4d2006-04-18 17:47:12 -0300715 buf[0] = priv->pll_i2c_address;
716
Michael Krufky89faeef2006-11-20 16:45:29 -0300717 priv->frequency = frequency;
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300718 priv->bandwidth = c->bandwidth_hz;
Andrew de Quincey272bc4d2006-04-18 17:47:12 -0300719
720 return 5;
721}
722
723static int dvb_pll_get_frequency(struct dvb_frontend *fe, u32 *frequency)
724{
725 struct dvb_pll_priv *priv = fe->tuner_priv;
726 *frequency = priv->frequency;
727 return 0;
728}
729
730static int dvb_pll_get_bandwidth(struct dvb_frontend *fe, u32 *bandwidth)
731{
732 struct dvb_pll_priv *priv = fe->tuner_priv;
733 *bandwidth = priv->bandwidth;
734 return 0;
735}
736
Trent Piepho26aed922007-04-27 12:31:29 -0300737static int dvb_pll_init(struct dvb_frontend *fe)
738{
739 struct dvb_pll_priv *priv = fe->tuner_priv;
740
741 if (priv->i2c == NULL)
742 return -EINVAL;
743
744 if (priv->pll_desc->initdata) {
745 struct i2c_msg msg = { .flags = 0,
746 .addr = priv->pll_i2c_address,
747 .buf = priv->pll_desc->initdata + 1,
748 .len = priv->pll_desc->initdata[0] };
749
750 int result;
751 if (fe->ops.i2c_gate_ctrl)
752 fe->ops.i2c_gate_ctrl(fe, 1);
Malcolm Priestley2b743342011-02-06 12:29:51 -0300753 result = i2c_transfer(priv->i2c, &msg, 1);
754 if (result != 1)
Trent Piepho26aed922007-04-27 12:31:29 -0300755 return result;
Malcolm Priestley2b743342011-02-06 12:29:51 -0300756 if (priv->pll_desc->initdata2) {
757 msg.buf = priv->pll_desc->initdata2 + 1;
758 msg.len = priv->pll_desc->initdata2[0];
759 if (fe->ops.i2c_gate_ctrl)
760 fe->ops.i2c_gate_ctrl(fe, 1);
761 result = i2c_transfer(priv->i2c, &msg, 1);
762 if (result != 1)
763 return result;
Trent Piepho26aed922007-04-27 12:31:29 -0300764 }
765 return 0;
766 }
767 /* Shouldn't be called when initdata is NULL, maybe BUG()? */
768 return -EINVAL;
769}
770
Julia Lawall14c4bf32016-09-11 11:44:12 -0300771static const struct dvb_tuner_ops dvb_pll_tuner_ops = {
Mauro Carvalho Chehabf2709c22016-11-18 20:30:51 -0200772 .release = dvb_pll_release,
Andrew de Quincey272bc4d2006-04-18 17:47:12 -0300773 .sleep = dvb_pll_sleep,
Trent Piephod519dcf2007-03-19 02:24:09 -0300774 .init = dvb_pll_init,
Andrew de Quincey272bc4d2006-04-18 17:47:12 -0300775 .set_params = dvb_pll_set_params,
Andrew de Quinceybd4956b2006-04-18 21:38:49 -0300776 .calc_regs = dvb_pll_calc_regs,
Andrew de Quincey272bc4d2006-04-18 17:47:12 -0300777 .get_frequency = dvb_pll_get_frequency,
778 .get_bandwidth = dvb_pll_get_bandwidth,
779};
780
Michael Krufky47ae9ae2006-11-20 16:38:42 -0300781struct dvb_frontend *dvb_pll_attach(struct dvb_frontend *fe, int pll_addr,
782 struct i2c_adapter *i2c,
Michael Krufky47a99912007-06-12 16:10:51 -0300783 unsigned int pll_desc_id)
Andrew de Quincey272bc4d2006-04-18 17:47:12 -0300784{
Sean Youngb4756702017-09-02 07:42:42 -0400785 u8 *b1;
786 struct i2c_msg msg = { .addr = pll_addr, .flags = I2C_M_RD, .len = 1 };
Andrew de Quincey272bc4d2006-04-18 17:47:12 -0300787 struct dvb_pll_priv *priv = NULL;
Andrew de Quincey061b6232006-07-10 03:34:14 -0300788 int ret;
Joe Perches548146f2015-07-30 14:08:53 -0300789 const struct dvb_pll_desc *desc;
Michael Krufky47a99912007-06-12 16:10:51 -0300790
Sean Youngb4756702017-09-02 07:42:42 -0400791 b1 = kmalloc(1, GFP_KERNEL);
792 if (!b1)
793 return NULL;
794
795 b1[0] = 0;
796 msg.buf = b1;
797
Michael Krufky704e39b2007-09-07 18:27:43 -0300798 if ((id[dvb_pll_devcount] > DVB_PLL_UNDEFINED) &&
799 (id[dvb_pll_devcount] < ARRAY_SIZE(pll_list)))
800 pll_desc_id = id[dvb_pll_devcount];
801
Michael Krufky47a99912007-06-12 16:10:51 -0300802 BUG_ON(pll_desc_id < 1 || pll_desc_id >= ARRAY_SIZE(pll_list));
803
804 desc = pll_list[pll_desc_id];
Andrew de Quincey061b6232006-07-10 03:34:14 -0300805
Andrew de Quincey55c05b62006-07-16 19:41:41 -0300806 if (i2c != NULL) {
807 if (fe->ops.i2c_gate_ctrl)
808 fe->ops.i2c_gate_ctrl(fe, 1);
Andrew de Quincey061b6232006-07-10 03:34:14 -0300809
Andrew de Quincey95faba22006-07-18 16:37:13 -0300810 ret = i2c_transfer (i2c, &msg, 1);
Sean Youngb4756702017-09-02 07:42:42 -0400811 if (ret != 1) {
812 kfree(b1);
Andrew de Quincey2bfe0312006-08-08 09:10:08 -0300813 return NULL;
Sean Youngb4756702017-09-02 07:42:42 -0400814 }
Andrew de Quincey55c05b62006-07-16 19:41:41 -0300815 if (fe->ops.i2c_gate_ctrl)
816 fe->ops.i2c_gate_ctrl(fe, 0);
817 }
Andrew de Quincey272bc4d2006-04-18 17:47:12 -0300818
819 priv = kzalloc(sizeof(struct dvb_pll_priv), GFP_KERNEL);
Sean Youngb4756702017-09-02 07:42:42 -0400820 if (!priv) {
821 kfree(b1);
Andrew de Quincey2bfe0312006-08-08 09:10:08 -0300822 return NULL;
Sean Youngb4756702017-09-02 07:42:42 -0400823 }
Andrew de Quincey272bc4d2006-04-18 17:47:12 -0300824
825 priv->pll_i2c_address = pll_addr;
826 priv->i2c = i2c;
827 priv->pll_desc = desc;
Michael Krufkya27e5e72007-09-07 18:11:15 -0300828 priv->nr = dvb_pll_devcount++;
Andrew de Quincey272bc4d2006-04-18 17:47:12 -0300829
Michael Krufky47ae9ae2006-11-20 16:38:42 -0300830 memcpy(&fe->ops.tuner_ops, &dvb_pll_tuner_ops,
831 sizeof(struct dvb_tuner_ops));
832
Mauro Carvalho Chehab85709cb2018-09-10 08:19:16 -0400833 strscpy(fe->ops.tuner_ops.info.name, desc->name,
Trent Piepho982dd1b2007-04-27 12:31:27 -0300834 sizeof(fe->ops.tuner_ops.info.name));
Mauro Carvalho Chehab3d8e4502018-11-20 05:19:36 -0500835
836 fe->ops.tuner_ops.info.frequency_min_hz = desc->min;
837 fe->ops.tuner_ops.info.frequency_max_hz = desc->max;
838
839 dprintk("%s tuner, frequency range: %u...%u\n",
840 desc->name, desc->min, desc->max);
Mauro Carvalho Chehaba3f90c72018-07-05 18:59:35 -0400841
Trent Piephod519dcf2007-03-19 02:24:09 -0300842 if (!desc->initdata)
843 fe->ops.tuner_ops.init = NULL;
844 if (!desc->sleepdata)
845 fe->ops.tuner_ops.sleep = NULL;
Andrew de Quincey272bc4d2006-04-18 17:47:12 -0300846
847 fe->tuner_priv = priv;
Michael Krufkya27e5e72007-09-07 18:11:15 -0300848
Michael Krufky8528fa42007-09-09 05:08:30 -0300849 if ((debug) || (id[priv->nr] == pll_desc_id)) {
Mauro Carvalho Chehab5479a582016-10-13 15:32:32 -0300850 dprintk("dvb-pll[%d]", priv->nr);
Michael Krufkya27e5e72007-09-07 18:11:15 -0300851 if (i2c != NULL)
Mauro Carvalho Chehab5479a582016-10-13 15:32:32 -0300852 pr_cont(" %d-%04x", i2c_adapter_id(i2c), pll_addr);
853 pr_cont(": id# %d (%s) attached, %s\n", pll_desc_id, desc->name,
Michael Krufky704e39b2007-09-07 18:27:43 -0300854 id[priv->nr] == pll_desc_id ?
855 "insmod option" : "autodetected");
Michael Krufky4562fbe2007-09-09 05:16:34 -0300856 }
Michael Krufkya27e5e72007-09-07 18:11:15 -0300857
Sean Youngb4756702017-09-02 07:42:42 -0400858 kfree(b1);
859
Andrew de Quincey2bfe0312006-08-08 09:10:08 -0300860 return fe;
Andrew de Quincey272bc4d2006-04-18 17:47:12 -0300861}
862EXPORT_SYMBOL(dvb_pll_attach);
863
Akihiro Tsukadaeaa51fe2018-04-08 13:21:34 -0400864
865static int
866dvb_pll_probe(struct i2c_client *client, const struct i2c_device_id *id)
867{
868 struct dvb_pll_config *cfg;
869 struct dvb_frontend *fe;
870 unsigned int desc_id;
871
872 cfg = client->dev.platform_data;
873 fe = cfg->fe;
874 i2c_set_clientdata(client, fe);
875 desc_id = (unsigned int) id->driver_data;
876
877 if (!dvb_pll_attach(fe, client->addr, client->adapter, desc_id))
878 return -ENOMEM;
879
Akihiro Tsukadaf917fc02018-06-10 10:49:15 -0400880 /*
881 * Unset tuner_ops.release (== dvb_pll_release)
882 * which has been just set in the above dvb_pll_attach(),
883 * because if tuner_ops.release was left defined,
884 * this module would be 'put' twice on exit:
885 * once by dvb_frontend_detach() and another by dvb_module_release().
886 *
887 * dvb_pll_release is instead executed in the i2c driver's .remove(),
888 * keeping dvb_pll_attach untouched for legacy (dvb_attach) drivers.
889 */
890 fe->ops.tuner_ops.release = NULL;
Akihiro Tsukadaeaa51fe2018-04-08 13:21:34 -0400891 dev_info(&client->dev, "DVB Simple Tuner attached.\n");
892 return 0;
893}
894
895static int dvb_pll_remove(struct i2c_client *client)
896{
897 struct dvb_frontend *fe;
898
899 fe = i2c_get_clientdata(client);
900 dvb_pll_release(fe);
901 return 0;
902}
903
904
905static const struct i2c_device_id dvb_pll_id[] = {
906 {"dtt7579", DVB_PLL_THOMSON_DTT7579},
907 {"dtt759x", DVB_PLL_THOMSON_DTT759X},
908 {"z201", DVB_PLL_LG_Z201},
909 {"unknown_1", DVB_PLL_UNKNOWN_1},
910 {"tua6010xs", DVB_PLL_TUA6010XS},
911 {"env57h1xd5", DVB_PLL_ENV57H1XD5},
912 {"tua6034", DVB_PLL_TUA6034},
913 {"tda665x", DVB_PLL_TDA665X},
914 {"tded4", DVB_PLL_TDED4},
915 {"tdhu2", DVB_PLL_TDHU2},
916 {"tbmv", DVB_PLL_SAMSUNG_TBMV},
917 {"sd1878_tda8261", DVB_PLL_PHILIPS_SD1878_TDA8261},
918 {"opera1", DVB_PLL_OPERA1},
919 {"dtos403ih102a", DVB_PLL_SAMSUNG_DTOS403IH102A},
920 {"tdtc9251dh0", DVB_PLL_SAMSUNG_TDTC9251DH0},
921 {"tbdu18132", DVB_PLL_SAMSUNG_TBDU18132},
922 {"tbmu24112", DVB_PLL_SAMSUNG_TBMU24112},
923 {"tdee4", DVB_PLL_TDEE4},
924 {"dtt7520x", DVB_PLL_THOMSON_DTT7520X},
Akihiro Tsukada17459722018-04-08 13:21:35 -0400925 {"tua6034_friio", DVB_PLL_TUA6034_FRIIO},
Akihiro Tsukada648db062018-04-08 13:39:49 -0400926 {"tda665x_earthpt1", DVB_PLL_TDA665X_EARTH_PT1},
Akihiro Tsukadaeaa51fe2018-04-08 13:21:34 -0400927 {}
928};
929
930
931MODULE_DEVICE_TABLE(i2c, dvb_pll_id);
932
933static struct i2c_driver dvb_pll_driver = {
934 .driver = {
935 .name = "dvb_pll",
936 },
937 .probe = dvb_pll_probe,
938 .remove = dvb_pll_remove,
939 .id_table = dvb_pll_id,
940};
941
942module_i2c_driver(dvb_pll_driver);
943
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944MODULE_DESCRIPTION("dvb pll library");
945MODULE_AUTHOR("Gerd Knorr");
946MODULE_LICENSE("GPL");