Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * 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 | |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 21 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include <linux/module.h> |
| 23 | #include <linux/dvb/frontend.h> |
| 24 | #include <asm/types.h> |
| 25 | |
| 26 | #include "dvb-pll.h" |
| 27 | |
Michael Krufky | 05a4611 | 2007-09-07 18:19:57 -0300 | [diff] [blame] | 28 | struct dvb_pll_priv { |
| 29 | /* pll number */ |
| 30 | int nr; |
| 31 | |
| 32 | /* i2c details */ |
| 33 | int pll_i2c_address; |
| 34 | struct i2c_adapter *i2c; |
| 35 | |
| 36 | /* the PLL descriptor */ |
| 37 | struct dvb_pll_desc *pll_desc; |
| 38 | |
| 39 | /* cached frequency/bandwidth */ |
| 40 | u32 frequency; |
| 41 | u32 bandwidth; |
| 42 | }; |
| 43 | |
Michael Krufky | ff3e7dd | 2007-09-09 13:00:45 -0300 | [diff] [blame] | 44 | #define DVB_PLL_MAX 64 |
Michael Krufky | 05a4611 | 2007-09-07 18:19:57 -0300 | [diff] [blame] | 45 | |
| 46 | static unsigned int dvb_pll_devcount; |
| 47 | |
Douglas Schilling Landgraf | ff699e6 | 2008-04-22 14:41:48 -0300 | [diff] [blame] | 48 | static int debug; |
Michael Krufky | 05a4611 | 2007-09-07 18:19:57 -0300 | [diff] [blame] | 49 | module_param(debug, int, 0644); |
| 50 | MODULE_PARM_DESC(debug, "enable verbose debug messages"); |
| 51 | |
Michael Krufky | 704e39b | 2007-09-07 18:27:43 -0300 | [diff] [blame] | 52 | static unsigned int id[DVB_PLL_MAX] = |
| 53 | { [ 0 ... (DVB_PLL_MAX-1) ] = DVB_PLL_UNDEFINED }; |
| 54 | module_param_array(id, int, NULL, 0644); |
| 55 | MODULE_PARM_DESC(id, "force pll id to use (DEBUG ONLY)"); |
| 56 | |
Michael Krufky | 05a4611 | 2007-09-07 18:19:57 -0300 | [diff] [blame] | 57 | /* ----------------------------------------------------------- */ |
| 58 | |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 59 | struct dvb_pll_desc { |
| 60 | char *name; |
| 61 | u32 min; |
| 62 | u32 max; |
| 63 | u32 iffreq; |
Mauro Carvalho Chehab | 80d8d49 | 2011-12-21 11:16:39 -0300 | [diff] [blame] | 64 | void (*set)(struct dvb_frontend *fe, u8 *buf); |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 65 | u8 *initdata; |
Malcolm Priestley | 2b74334 | 2011-02-06 12:29:51 -0300 | [diff] [blame] | 66 | u8 *initdata2; |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 67 | u8 *sleepdata; |
| 68 | int count; |
| 69 | struct { |
| 70 | u32 limit; |
| 71 | u32 stepsize; |
| 72 | u8 config; |
| 73 | u8 cb; |
| 74 | } entries[12]; |
| 75 | }; |
| 76 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | /* ----------------------------------------------------------- */ |
| 78 | /* descriptions */ |
| 79 | |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 80 | static struct dvb_pll_desc dvb_pll_thomson_dtt7579 = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | .name = "Thomson dtt7579", |
| 82 | .min = 177000000, |
| 83 | .max = 858000000, |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 84 | .iffreq= 36166667, |
Trent Piepho | d519dcf | 2007-03-19 02:24:09 -0300 | [diff] [blame] | 85 | .sleepdata = (u8[]){ 2, 0xb4, 0x03 }, |
| 86 | .count = 4, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | .entries = { |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 88 | { 443250000, 166667, 0xb4, 0x02 }, |
| 89 | { 542000000, 166667, 0xb4, 0x08 }, |
| 90 | { 771000000, 166667, 0xbc, 0x08 }, |
| 91 | { 999999999, 166667, 0xf4, 0x08 }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | }, |
| 93 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | |
Mauro Carvalho Chehab | 80d8d49 | 2011-12-21 11:16:39 -0300 | [diff] [blame] | 95 | static void thomson_dtt759x_bw(struct dvb_frontend *fe, u8 *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | { |
Mauro Carvalho Chehab | 80d8d49 | 2011-12-21 11:16:39 -0300 | [diff] [blame] | 97 | u32 bw = fe->dtv_property_cache.bandwidth_hz; |
| 98 | if (bw == 7000000) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | buf[3] |= 0x10; |
| 100 | } |
| 101 | |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 102 | static struct dvb_pll_desc dvb_pll_thomson_dtt759x = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | .name = "Thomson dtt759x", |
| 104 | .min = 177000000, |
| 105 | .max = 896000000, |
Michael Krufky | 77d6750 | 2007-05-05 12:05:39 -0300 | [diff] [blame] | 106 | .set = thomson_dtt759x_bw, |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 107 | .iffreq= 36166667, |
Trent Piepho | d519dcf | 2007-03-19 02:24:09 -0300 | [diff] [blame] | 108 | .sleepdata = (u8[]){ 2, 0x84, 0x03 }, |
| 109 | .count = 5, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | .entries = { |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 111 | { 264000000, 166667, 0xb4, 0x02 }, |
| 112 | { 470000000, 166667, 0xbc, 0x02 }, |
| 113 | { 735000000, 166667, 0xbc, 0x08 }, |
| 114 | { 835000000, 166667, 0xf4, 0x08 }, |
| 115 | { 999999999, 166667, 0xfc, 0x08 }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | }, |
| 117 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 119 | static struct dvb_pll_desc dvb_pll_lg_z201 = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | .name = "LG z201", |
| 121 | .min = 174000000, |
| 122 | .max = 862000000, |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 123 | .iffreq= 36166667, |
Trent Piepho | d519dcf | 2007-03-19 02:24:09 -0300 | [diff] [blame] | 124 | .sleepdata = (u8[]){ 2, 0xbc, 0x03 }, |
| 125 | .count = 5, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | .entries = { |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 127 | { 157500000, 166667, 0xbc, 0x01 }, |
| 128 | { 443250000, 166667, 0xbc, 0x02 }, |
| 129 | { 542000000, 166667, 0xbc, 0x04 }, |
| 130 | { 830000000, 166667, 0xf4, 0x04 }, |
| 131 | { 999999999, 166667, 0xfc, 0x04 }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | }, |
| 133 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 135 | static struct dvb_pll_desc dvb_pll_unknown_1 = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | .name = "unknown 1", /* used by dntv live dvb-t */ |
| 137 | .min = 174000000, |
| 138 | .max = 862000000, |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 139 | .iffreq= 36166667, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | .count = 9, |
| 141 | .entries = { |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 142 | { 150000000, 166667, 0xb4, 0x01 }, |
| 143 | { 173000000, 166667, 0xbc, 0x01 }, |
| 144 | { 250000000, 166667, 0xb4, 0x02 }, |
| 145 | { 400000000, 166667, 0xbc, 0x02 }, |
| 146 | { 420000000, 166667, 0xf4, 0x02 }, |
| 147 | { 470000000, 166667, 0xfc, 0x02 }, |
| 148 | { 600000000, 166667, 0xbc, 0x08 }, |
| 149 | { 730000000, 166667, 0xf4, 0x08 }, |
| 150 | { 999999999, 166667, 0xfc, 0x08 }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | }, |
| 152 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 154 | /* Infineon TUA6010XS |
| 155 | * used in Thomson Cable Tuner |
| 156 | */ |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 157 | static struct dvb_pll_desc dvb_pll_tua6010xs = { |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 158 | .name = "Infineon TUA6010XS", |
| 159 | .min = 44250000, |
| 160 | .max = 858000000, |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 161 | .iffreq= 36125000, |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 162 | .count = 3, |
| 163 | .entries = { |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 164 | { 115750000, 62500, 0x8e, 0x03 }, |
| 165 | { 403250000, 62500, 0x8e, 0x06 }, |
| 166 | { 999999999, 62500, 0x8e, 0x85 }, |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 167 | }, |
| 168 | }; |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 169 | |
| 170 | /* Panasonic env57h1xd5 (some Philips PLL ?) */ |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 171 | static struct dvb_pll_desc dvb_pll_env57h1xd5 = { |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 172 | .name = "Panasonic ENV57H1XD5", |
| 173 | .min = 44250000, |
| 174 | .max = 858000000, |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 175 | .iffreq= 36125000, |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 176 | .count = 4, |
| 177 | .entries = { |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 178 | { 153000000, 166667, 0xc2, 0x41 }, |
| 179 | { 470000000, 166667, 0xc2, 0x42 }, |
| 180 | { 526000000, 166667, 0xc2, 0x84 }, |
| 181 | { 999999999, 166667, 0xc2, 0xa4 }, |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 182 | }, |
| 183 | }; |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 184 | |
| 185 | /* Philips TDA6650/TDA6651 |
| 186 | * used in Panasonic ENV77H11D5 |
| 187 | */ |
Mauro Carvalho Chehab | 80d8d49 | 2011-12-21 11:16:39 -0300 | [diff] [blame] | 188 | static void tda665x_bw(struct dvb_frontend *fe, u8 *buf) |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 189 | { |
Mauro Carvalho Chehab | 80d8d49 | 2011-12-21 11:16:39 -0300 | [diff] [blame] | 190 | u32 bw = fe->dtv_property_cache.bandwidth_hz; |
| 191 | if (bw == 8000000) |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 192 | buf[3] |= 0x08; |
| 193 | } |
| 194 | |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 195 | static struct dvb_pll_desc dvb_pll_tda665x = { |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 196 | .name = "Philips TDA6650/TDA6651", |
| 197 | .min = 44250000, |
| 198 | .max = 858000000, |
Michael Krufky | 77d6750 | 2007-05-05 12:05:39 -0300 | [diff] [blame] | 199 | .set = tda665x_bw, |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 200 | .iffreq= 36166667, |
Michael Krufky | fbfee86 | 2007-05-09 15:58:17 -0300 | [diff] [blame] | 201 | .initdata = (u8[]){ 4, 0x0b, 0xf5, 0x85, 0xab }, |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 202 | .count = 12, |
| 203 | .entries = { |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 204 | { 93834000, 166667, 0xca, 0x61 /* 011 0 0 0 01 */ }, |
| 205 | { 123834000, 166667, 0xca, 0xa1 /* 101 0 0 0 01 */ }, |
| 206 | { 161000000, 166667, 0xca, 0xa1 /* 101 0 0 0 01 */ }, |
| 207 | { 163834000, 166667, 0xca, 0xc2 /* 110 0 0 0 10 */ }, |
| 208 | { 253834000, 166667, 0xca, 0x62 /* 011 0 0 0 10 */ }, |
| 209 | { 383834000, 166667, 0xca, 0xa2 /* 101 0 0 0 10 */ }, |
| 210 | { 443834000, 166667, 0xca, 0xc2 /* 110 0 0 0 10 */ }, |
| 211 | { 444000000, 166667, 0xca, 0xc4 /* 110 0 0 1 00 */ }, |
| 212 | { 583834000, 166667, 0xca, 0x64 /* 011 0 0 1 00 */ }, |
| 213 | { 793834000, 166667, 0xca, 0xa4 /* 101 0 0 1 00 */ }, |
| 214 | { 444834000, 166667, 0xca, 0xc4 /* 110 0 0 1 00 */ }, |
| 215 | { 861000000, 166667, 0xca, 0xe4 /* 111 0 0 1 00 */ }, |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 216 | } |
| 217 | }; |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 218 | |
| 219 | /* Infineon TUA6034 |
| 220 | * used in LG TDTP E102P |
| 221 | */ |
Mauro Carvalho Chehab | 80d8d49 | 2011-12-21 11:16:39 -0300 | [diff] [blame] | 222 | static void tua6034_bw(struct dvb_frontend *fe, u8 *buf) |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 223 | { |
Mauro Carvalho Chehab | 80d8d49 | 2011-12-21 11:16:39 -0300 | [diff] [blame] | 224 | u32 bw = fe->dtv_property_cache.bandwidth_hz; |
| 225 | if (bw == 7000000) |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 226 | buf[3] |= 0x08; |
| 227 | } |
| 228 | |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 229 | static struct dvb_pll_desc dvb_pll_tua6034 = { |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 230 | .name = "Infineon TUA6034", |
| 231 | .min = 44250000, |
| 232 | .max = 858000000, |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 233 | .iffreq= 36166667, |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 234 | .count = 3, |
Michael Krufky | 77d6750 | 2007-05-05 12:05:39 -0300 | [diff] [blame] | 235 | .set = tua6034_bw, |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 236 | .entries = { |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 237 | { 174500000, 62500, 0xce, 0x01 }, |
| 238 | { 230000000, 62500, 0xce, 0x02 }, |
| 239 | { 999999999, 62500, 0xce, 0x04 }, |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 240 | }, |
| 241 | }; |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 242 | |
Patrick Boettcher | 0589b8e | 2005-07-07 17:58:12 -0700 | [diff] [blame] | 243 | /* ALPS TDED4 |
| 244 | * used in Nebula-Cards and USB boxes |
| 245 | */ |
Mauro Carvalho Chehab | 80d8d49 | 2011-12-21 11:16:39 -0300 | [diff] [blame] | 246 | static void tded4_bw(struct dvb_frontend *fe, u8 *buf) |
Patrick Boettcher | 0589b8e | 2005-07-07 17:58:12 -0700 | [diff] [blame] | 247 | { |
Mauro Carvalho Chehab | 80d8d49 | 2011-12-21 11:16:39 -0300 | [diff] [blame] | 248 | u32 bw = fe->dtv_property_cache.bandwidth_hz; |
| 249 | if (bw == 8000000) |
Patrick Boettcher | 0589b8e | 2005-07-07 17:58:12 -0700 | [diff] [blame] | 250 | buf[3] |= 0x04; |
| 251 | } |
| 252 | |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 253 | static struct dvb_pll_desc dvb_pll_tded4 = { |
Patrick Boettcher | 0589b8e | 2005-07-07 17:58:12 -0700 | [diff] [blame] | 254 | .name = "ALPS TDED4", |
| 255 | .min = 47000000, |
| 256 | .max = 863000000, |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 257 | .iffreq= 36166667, |
Michael Krufky | 77d6750 | 2007-05-05 12:05:39 -0300 | [diff] [blame] | 258 | .set = tded4_bw, |
Patrick Boettcher | 0589b8e | 2005-07-07 17:58:12 -0700 | [diff] [blame] | 259 | .count = 4, |
| 260 | .entries = { |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 261 | { 153000000, 166667, 0x85, 0x01 }, |
| 262 | { 470000000, 166667, 0x85, 0x02 }, |
| 263 | { 823000000, 166667, 0x85, 0x08 }, |
| 264 | { 999999999, 166667, 0x85, 0x88 }, |
Patrick Boettcher | 0589b8e | 2005-07-07 17:58:12 -0700 | [diff] [blame] | 265 | } |
| 266 | }; |
Patrick Boettcher | 0589b8e | 2005-07-07 17:58:12 -0700 | [diff] [blame] | 267 | |
Kirk Lapray | 147418c | 2005-11-08 21:35:39 -0800 | [diff] [blame] | 268 | /* ALPS TDHU2 |
| 269 | * used in AverTVHD MCE A180 |
| 270 | */ |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 271 | static struct dvb_pll_desc dvb_pll_tdhu2 = { |
Kirk Lapray | 147418c | 2005-11-08 21:35:39 -0800 | [diff] [blame] | 272 | .name = "ALPS TDHU2", |
| 273 | .min = 54000000, |
| 274 | .max = 864000000, |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 275 | .iffreq= 44000000, |
Kirk Lapray | 147418c | 2005-11-08 21:35:39 -0800 | [diff] [blame] | 276 | .count = 4, |
| 277 | .entries = { |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 278 | { 162000000, 62500, 0x85, 0x01 }, |
| 279 | { 426000000, 62500, 0x85, 0x02 }, |
| 280 | { 782000000, 62500, 0x85, 0x08 }, |
| 281 | { 999999999, 62500, 0x85, 0x88 }, |
Kirk Lapray | 147418c | 2005-11-08 21:35:39 -0800 | [diff] [blame] | 282 | } |
| 283 | }; |
Kirk Lapray | 147418c | 2005-11-08 21:35:39 -0800 | [diff] [blame] | 284 | |
Michael Krufky | d76a617 | 2006-01-23 17:11:06 -0200 | [diff] [blame] | 285 | /* Samsung TBMV30111IN / TBMV30712IN1 |
Kirk Lapray | 147418c | 2005-11-08 21:35:39 -0800 | [diff] [blame] | 286 | * used in Air2PC ATSC - 2nd generation (nxt2002) |
| 287 | */ |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 288 | static struct dvb_pll_desc dvb_pll_samsung_tbmv = { |
Michael Krufky | 28f3d4b | 2006-01-23 17:11:07 -0200 | [diff] [blame] | 289 | .name = "Samsung TBMV30111IN / TBMV30712IN1", |
Kirk Lapray | 147418c | 2005-11-08 21:35:39 -0800 | [diff] [blame] | 290 | .min = 54000000, |
| 291 | .max = 860000000, |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 292 | .iffreq= 44000000, |
Michael Krufky | 17c37ef | 2006-01-15 19:04:04 -0200 | [diff] [blame] | 293 | .count = 6, |
Kirk Lapray | 147418c | 2005-11-08 21:35:39 -0800 | [diff] [blame] | 294 | .entries = { |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 295 | { 172000000, 166667, 0xb4, 0x01 }, |
| 296 | { 214000000, 166667, 0xb4, 0x02 }, |
| 297 | { 467000000, 166667, 0xbc, 0x02 }, |
| 298 | { 721000000, 166667, 0xbc, 0x08 }, |
| 299 | { 841000000, 166667, 0xf4, 0x08 }, |
| 300 | { 999999999, 166667, 0xfc, 0x02 }, |
Kirk Lapray | 147418c | 2005-11-08 21:35:39 -0800 | [diff] [blame] | 301 | } |
| 302 | }; |
Kirk Lapray | 147418c | 2005-11-08 21:35:39 -0800 | [diff] [blame] | 303 | |
Regis Prevot | f8bf134 | 2006-01-11 23:31:53 -0200 | [diff] [blame] | 304 | /* |
| 305 | * Philips SD1878 Tuner. |
| 306 | */ |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 307 | static struct dvb_pll_desc dvb_pll_philips_sd1878_tda8261 = { |
Regis Prevot | f8bf134 | 2006-01-11 23:31:53 -0200 | [diff] [blame] | 308 | .name = "Philips SD1878", |
| 309 | .min = 950000, |
| 310 | .max = 2150000, |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 311 | .iffreq= 249, /* zero-IF, offset 249 is to round up */ |
Regis Prevot | f8bf134 | 2006-01-11 23:31:53 -0200 | [diff] [blame] | 312 | .count = 4, |
| 313 | .entries = { |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 314 | { 1250000, 500, 0xc4, 0x00}, |
Manu Abraham | b3332a9 | 2007-07-03 09:58:57 -0300 | [diff] [blame] | 315 | { 1450000, 500, 0xc4, 0x40}, |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 316 | { 2050000, 500, 0xc4, 0x80}, |
| 317 | { 2150000, 500, 0xc4, 0xc0}, |
Regis Prevot | f8bf134 | 2006-01-11 23:31:53 -0200 | [diff] [blame] | 318 | }, |
| 319 | }; |
Regis Prevot | f8bf134 | 2006-01-11 23:31:53 -0200 | [diff] [blame] | 320 | |
Mauro Carvalho Chehab | 80d8d49 | 2011-12-21 11:16:39 -0300 | [diff] [blame] | 321 | static void opera1_bw(struct dvb_frontend *fe, u8 *buf) |
Marco Gittler | 941491f | 2007-04-19 11:26:47 -0300 | [diff] [blame] | 322 | { |
Mauro Carvalho Chehab | 80d8d49 | 2011-12-21 11:16:39 -0300 | [diff] [blame] | 323 | struct dtv_frontend_properties *c = &fe->dtv_property_cache; |
Malcolm Priestley | 2b74334 | 2011-02-06 12:29:51 -0300 | [diff] [blame] | 324 | struct dvb_pll_priv *priv = fe->tuner_priv; |
Mauro Carvalho Chehab | 80d8d49 | 2011-12-21 11:16:39 -0300 | [diff] [blame] | 325 | u32 b_w = (c->symbol_rate * 27) / 32000; |
Malcolm Priestley | 2b74334 | 2011-02-06 12:29:51 -0300 | [diff] [blame] | 326 | struct i2c_msg msg = { |
| 327 | .addr = priv->pll_i2c_address, |
| 328 | .flags = 0, |
| 329 | .buf = buf, |
| 330 | .len = 4 |
| 331 | }; |
| 332 | int result; |
| 333 | u8 lpf; |
| 334 | |
| 335 | if (fe->ops.i2c_gate_ctrl) |
| 336 | fe->ops.i2c_gate_ctrl(fe, 1); |
| 337 | |
| 338 | result = i2c_transfer(priv->i2c, &msg, 1); |
| 339 | if (result != 1) |
| 340 | printk(KERN_ERR "%s: i2c_transfer failed:%d", |
| 341 | __func__, result); |
| 342 | |
| 343 | if (b_w <= 10000) |
| 344 | lpf = 0xc; |
| 345 | else if (b_w <= 12000) |
| 346 | lpf = 0x2; |
| 347 | else if (b_w <= 14000) |
| 348 | lpf = 0xa; |
| 349 | else if (b_w <= 16000) |
| 350 | lpf = 0x6; |
| 351 | else if (b_w <= 18000) |
| 352 | lpf = 0xe; |
| 353 | else if (b_w <= 20000) |
| 354 | lpf = 0x1; |
| 355 | else if (b_w <= 22000) |
| 356 | lpf = 0x9; |
| 357 | else if (b_w <= 24000) |
| 358 | lpf = 0x5; |
| 359 | else if (b_w <= 26000) |
| 360 | lpf = 0xd; |
| 361 | else if (b_w <= 28000) |
| 362 | lpf = 0x3; |
| 363 | else |
| 364 | lpf = 0xb; |
| 365 | buf[2] ^= 0x1c; /* Flip bits 3-5 */ |
| 366 | /* Set lpf */ |
| 367 | buf[2] |= ((lpf >> 2) & 0x3) << 3; |
| 368 | buf[3] |= (lpf & 0x3) << 2; |
| 369 | |
| 370 | return; |
Marco Gittler | 941491f | 2007-04-19 11:26:47 -0300 | [diff] [blame] | 371 | } |
| 372 | |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 373 | static struct dvb_pll_desc dvb_pll_opera1 = { |
Marco Gittler | 941491f | 2007-04-19 11:26:47 -0300 | [diff] [blame] | 374 | .name = "Opera Tuner", |
| 375 | .min = 900000, |
| 376 | .max = 2250000, |
Malcolm Priestley | 2b74334 | 2011-02-06 12:29:51 -0300 | [diff] [blame] | 377 | .initdata = (u8[]){ 4, 0x08, 0xe5, 0xe1, 0x00 }, |
| 378 | .initdata2 = (u8[]){ 4, 0x08, 0xe5, 0xe5, 0x00 }, |
Marco Gittler | 941491f | 2007-04-19 11:26:47 -0300 | [diff] [blame] | 379 | .iffreq= 0, |
Michael Krufky | 77d6750 | 2007-05-05 12:05:39 -0300 | [diff] [blame] | 380 | .set = opera1_bw, |
Marco Gittler | 941491f | 2007-04-19 11:26:47 -0300 | [diff] [blame] | 381 | .count = 8, |
| 382 | .entries = { |
Malcolm Priestley | 2b74334 | 2011-02-06 12:29:51 -0300 | [diff] [blame] | 383 | { 1064000, 500, 0xf9, 0xc2 }, |
| 384 | { 1169000, 500, 0xf9, 0xe2 }, |
| 385 | { 1299000, 500, 0xf9, 0x20 }, |
| 386 | { 1444000, 500, 0xf9, 0x40 }, |
| 387 | { 1606000, 500, 0xf9, 0x60 }, |
| 388 | { 1777000, 500, 0xf9, 0x80 }, |
| 389 | { 1941000, 500, 0xf9, 0xa0 }, |
| 390 | { 2250000, 500, 0xf9, 0xc0 }, |
Marco Gittler | 941491f | 2007-04-19 11:26:47 -0300 | [diff] [blame] | 391 | } |
| 392 | }; |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 393 | |
Mauro Carvalho Chehab | 80d8d49 | 2011-12-21 11:16:39 -0300 | [diff] [blame] | 394 | static void samsung_dtos403ih102a_set(struct dvb_frontend *fe, u8 *buf) |
Antti Palosaari | 139dfeb | 2008-05-17 23:02:00 -0300 | [diff] [blame] | 395 | { |
| 396 | struct dvb_pll_priv *priv = fe->tuner_priv; |
| 397 | struct i2c_msg msg = { |
| 398 | .addr = priv->pll_i2c_address, |
| 399 | .flags = 0, |
| 400 | .buf = buf, |
| 401 | .len = 4 |
| 402 | }; |
| 403 | int result; |
| 404 | |
| 405 | if (fe->ops.i2c_gate_ctrl) |
| 406 | fe->ops.i2c_gate_ctrl(fe, 1); |
| 407 | |
| 408 | result = i2c_transfer(priv->i2c, &msg, 1); |
| 409 | if (result != 1) |
| 410 | printk(KERN_ERR "%s: i2c_transfer failed:%d", |
| 411 | __func__, result); |
| 412 | |
| 413 | buf[2] = 0x9e; |
| 414 | buf[3] = 0x90; |
| 415 | |
| 416 | return; |
| 417 | } |
| 418 | |
| 419 | /* unknown pll used in Samsung DTOS403IH102A DVB-C tuner */ |
| 420 | static struct dvb_pll_desc dvb_pll_samsung_dtos403ih102a = { |
| 421 | .name = "Samsung DTOS403IH102A", |
| 422 | .min = 44250000, |
| 423 | .max = 858000000, |
| 424 | .iffreq = 36125000, |
| 425 | .count = 8, |
| 426 | .set = samsung_dtos403ih102a_set, |
| 427 | .entries = { |
| 428 | { 135000000, 62500, 0xbe, 0x01 }, |
| 429 | { 177000000, 62500, 0xf6, 0x01 }, |
| 430 | { 370000000, 62500, 0xbe, 0x02 }, |
| 431 | { 450000000, 62500, 0xf6, 0x02 }, |
| 432 | { 466000000, 62500, 0xfe, 0x02 }, |
| 433 | { 538000000, 62500, 0xbe, 0x08 }, |
| 434 | { 826000000, 62500, 0xf6, 0x08 }, |
| 435 | { 999999999, 62500, 0xfe, 0x08 }, |
| 436 | } |
| 437 | }; |
| 438 | |
Trent Piepho | a104ed0 | 2009-06-11 19:21:34 -0300 | [diff] [blame] | 439 | /* Samsung TDTC9251DH0 DVB-T NIM, as used on AirStar 2 */ |
| 440 | static struct dvb_pll_desc dvb_pll_samsung_tdtc9251dh0 = { |
| 441 | .name = "Samsung TDTC9251DH0", |
| 442 | .min = 48000000, |
| 443 | .max = 863000000, |
| 444 | .iffreq = 36166667, |
| 445 | .count = 3, |
| 446 | .entries = { |
| 447 | { 157500000, 166667, 0xcc, 0x09 }, |
| 448 | { 443000000, 166667, 0xcc, 0x0a }, |
| 449 | { 863000000, 166667, 0xcc, 0x08 }, |
| 450 | } |
| 451 | }; |
| 452 | |
Trent Piepho | f52c485 | 2009-06-11 19:21:34 -0300 | [diff] [blame] | 453 | /* Samsung TBDU18132 DVB-S NIM with TSA5059 PLL, used in SkyStar2 DVB-S 2.3 */ |
| 454 | static struct dvb_pll_desc dvb_pll_samsung_tbdu18132 = { |
| 455 | .name = "Samsung TBDU18132", |
| 456 | .min = 950000, |
| 457 | .max = 2150000, /* guesses */ |
| 458 | .iffreq = 0, |
| 459 | .count = 2, |
| 460 | .entries = { |
| 461 | { 1550000, 125, 0x84, 0x82 }, |
| 462 | { 4095937, 125, 0x84, 0x80 }, |
| 463 | } |
| 464 | /* TSA5059 PLL has a 17 bit divisor rather than the 15 bits supported |
| 465 | * by this driver. The two extra bits are 0x60 in the third byte. 15 |
| 466 | * bits is enough for over 4 GHz, which is enough to cover the range |
| 467 | * of this tuner. We could use the additional divisor bits by adding |
| 468 | * more entries, e.g. |
| 469 | { 0x0ffff * 125 + 125/2, 125, 0x84 | 0x20, }, |
| 470 | { 0x17fff * 125 + 125/2, 125, 0x84 | 0x40, }, |
| 471 | { 0x1ffff * 125 + 125/2, 125, 0x84 | 0x60, }, */ |
| 472 | }; |
| 473 | |
Trent Piepho | 9d5d75a | 2009-06-11 19:21:34 -0300 | [diff] [blame] | 474 | /* Samsung TBMU24112 DVB-S NIM with SL1935 zero-IF tuner */ |
| 475 | static struct dvb_pll_desc dvb_pll_samsung_tbmu24112 = { |
| 476 | .name = "Samsung TBMU24112", |
| 477 | .min = 950000, |
| 478 | .max = 2150000, /* guesses */ |
| 479 | .iffreq = 0, |
| 480 | .count = 2, |
| 481 | .entries = { |
| 482 | { 1500000, 125, 0x84, 0x18 }, |
| 483 | { 9999999, 125, 0x84, 0x08 }, |
| 484 | } |
| 485 | }; |
| 486 | |
Trent Piepho | d799ce5 | 2009-06-11 19:24:00 -0300 | [diff] [blame] | 487 | /* Alps TDEE4 DVB-C NIM, used on Cablestar 2 */ |
| 488 | /* byte 4 : 1 * * AGD R3 R2 R1 R0 |
| 489 | * byte 5 : C1 * RE RTS BS4 BS3 BS2 BS1 |
| 490 | * AGD = 1, R3 R2 R1 R0 = 0 1 0 1 => byte 4 = 1**10101 = 0x95 |
| 491 | * Range(MHz) C1 * RE RTS BS4 BS3 BS2 BS1 Byte 5 |
| 492 | * 47 - 153 0 * 0 0 0 0 0 1 0x01 |
| 493 | * 153 - 430 0 * 0 0 0 0 1 0 0x02 |
| 494 | * 430 - 822 0 * 0 0 1 0 0 0 0x08 |
| 495 | * 822 - 862 1 * 0 0 1 0 0 0 0x88 */ |
| 496 | static struct dvb_pll_desc dvb_pll_alps_tdee4 = { |
| 497 | .name = "ALPS TDEE4", |
| 498 | .min = 47000000, |
| 499 | .max = 862000000, |
| 500 | .iffreq = 36125000, |
| 501 | .count = 4, |
| 502 | .entries = { |
| 503 | { 153000000, 62500, 0x95, 0x01 }, |
| 504 | { 430000000, 62500, 0x95, 0x02 }, |
| 505 | { 822000000, 62500, 0x95, 0x08 }, |
| 506 | { 999999999, 62500, 0x95, 0x88 }, |
| 507 | } |
| 508 | }; |
| 509 | |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 510 | /* ----------------------------------------------------------- */ |
| 511 | |
| 512 | static struct dvb_pll_desc *pll_list[] = { |
| 513 | [DVB_PLL_UNDEFINED] = NULL, |
| 514 | [DVB_PLL_THOMSON_DTT7579] = &dvb_pll_thomson_dtt7579, |
| 515 | [DVB_PLL_THOMSON_DTT759X] = &dvb_pll_thomson_dtt759x, |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 516 | [DVB_PLL_LG_Z201] = &dvb_pll_lg_z201, |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 517 | [DVB_PLL_UNKNOWN_1] = &dvb_pll_unknown_1, |
| 518 | [DVB_PLL_TUA6010XS] = &dvb_pll_tua6010xs, |
| 519 | [DVB_PLL_ENV57H1XD5] = &dvb_pll_env57h1xd5, |
| 520 | [DVB_PLL_TUA6034] = &dvb_pll_tua6034, |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 521 | [DVB_PLL_TDA665X] = &dvb_pll_tda665x, |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 522 | [DVB_PLL_TDED4] = &dvb_pll_tded4, |
Trent Piepho | d799ce5 | 2009-06-11 19:24:00 -0300 | [diff] [blame] | 523 | [DVB_PLL_TDEE4] = &dvb_pll_alps_tdee4, |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 524 | [DVB_PLL_TDHU2] = &dvb_pll_tdhu2, |
| 525 | [DVB_PLL_SAMSUNG_TBMV] = &dvb_pll_samsung_tbmv, |
| 526 | [DVB_PLL_PHILIPS_SD1878_TDA8261] = &dvb_pll_philips_sd1878_tda8261, |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 527 | [DVB_PLL_OPERA1] = &dvb_pll_opera1, |
Antti Palosaari | 139dfeb | 2008-05-17 23:02:00 -0300 | [diff] [blame] | 528 | [DVB_PLL_SAMSUNG_DTOS403IH102A] = &dvb_pll_samsung_dtos403ih102a, |
Trent Piepho | a104ed0 | 2009-06-11 19:21:34 -0300 | [diff] [blame] | 529 | [DVB_PLL_SAMSUNG_TDTC9251DH0] = &dvb_pll_samsung_tdtc9251dh0, |
Trent Piepho | f52c485 | 2009-06-11 19:21:34 -0300 | [diff] [blame] | 530 | [DVB_PLL_SAMSUNG_TBDU18132] = &dvb_pll_samsung_tbdu18132, |
Trent Piepho | 9d5d75a | 2009-06-11 19:21:34 -0300 | [diff] [blame] | 531 | [DVB_PLL_SAMSUNG_TBMU24112] = &dvb_pll_samsung_tbmu24112, |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 532 | }; |
| 533 | |
| 534 | /* ----------------------------------------------------------- */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 535 | /* code */ |
| 536 | |
Michael Krufky | 5d7802b | 2007-09-07 18:03:58 -0300 | [diff] [blame] | 537 | static int dvb_pll_configure(struct dvb_frontend *fe, u8 *buf, |
Mauro Carvalho Chehab | 80d8d49 | 2011-12-21 11:16:39 -0300 | [diff] [blame] | 538 | const u32 frequency) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 539 | { |
Michael Krufky | 5d7802b | 2007-09-07 18:03:58 -0300 | [diff] [blame] | 540 | struct dvb_pll_priv *priv = fe->tuner_priv; |
| 541 | struct dvb_pll_desc *desc = priv->pll_desc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | u32 div; |
| 543 | int i; |
| 544 | |
Mauro Carvalho Chehab | 80d8d49 | 2011-12-21 11:16:39 -0300 | [diff] [blame] | 545 | if (frequency && (frequency < desc->min || frequency > desc->max)) |
Michael Krufky | 77d6750 | 2007-05-05 12:05:39 -0300 | [diff] [blame] | 546 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 547 | |
| 548 | for (i = 0; i < desc->count; i++) { |
Mauro Carvalho Chehab | 80d8d49 | 2011-12-21 11:16:39 -0300 | [diff] [blame] | 549 | if (frequency > desc->entries[i].limit) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 550 | continue; |
| 551 | break; |
| 552 | } |
Michael Krufky | 77d6750 | 2007-05-05 12:05:39 -0300 | [diff] [blame] | 553 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | if (debug) |
Michael Krufky | 77d6750 | 2007-05-05 12:05:39 -0300 | [diff] [blame] | 555 | printk("pll: %s: freq=%d | i=%d/%d\n", desc->name, |
Mauro Carvalho Chehab | 80d8d49 | 2011-12-21 11:16:39 -0300 | [diff] [blame] | 556 | frequency, i, desc->count); |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 557 | if (i == desc->count) |
| 558 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 559 | |
Mauro Carvalho Chehab | 80d8d49 | 2011-12-21 11:16:39 -0300 | [diff] [blame] | 560 | div = (frequency + desc->iffreq + |
Michael Krufky | 77d6750 | 2007-05-05 12:05:39 -0300 | [diff] [blame] | 561 | desc->entries[i].stepsize/2) / desc->entries[i].stepsize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | buf[0] = div >> 8; |
| 563 | buf[1] = div & 0xff; |
Michael Krufky | ab66b22 | 2006-01-23 17:11:11 -0200 | [diff] [blame] | 564 | buf[2] = desc->entries[i].config; |
| 565 | buf[3] = desc->entries[i].cb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 566 | |
Michael Krufky | 77d6750 | 2007-05-05 12:05:39 -0300 | [diff] [blame] | 567 | if (desc->set) |
Mauro Carvalho Chehab | 80d8d49 | 2011-12-21 11:16:39 -0300 | [diff] [blame] | 568 | desc->set(fe, buf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 | |
| 570 | if (debug) |
| 571 | printk("pll: %s: div=%d | buf=0x%02x,0x%02x,0x%02x,0x%02x\n", |
| 572 | desc->name, div, buf[0], buf[1], buf[2], buf[3]); |
| 573 | |
Michael Krufky | 89faeef | 2006-11-20 16:45:29 -0300 | [diff] [blame] | 574 | // calculate the frequency we set it to |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 575 | return (div * desc->entries[i].stepsize) - desc->iffreq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 576 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 577 | |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 578 | static int dvb_pll_release(struct dvb_frontend *fe) |
| 579 | { |
Michael Krufky | 2213918 | 2006-11-19 19:49:11 -0300 | [diff] [blame] | 580 | kfree(fe->tuner_priv); |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 581 | fe->tuner_priv = NULL; |
| 582 | return 0; |
| 583 | } |
| 584 | |
| 585 | static int dvb_pll_sleep(struct dvb_frontend *fe) |
| 586 | { |
| 587 | struct dvb_pll_priv *priv = fe->tuner_priv; |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 588 | |
Chris Pascoe | c162dff | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 589 | if (priv->i2c == NULL) |
| 590 | return -EINVAL; |
| 591 | |
Trent Piepho | d519dcf | 2007-03-19 02:24:09 -0300 | [diff] [blame] | 592 | if (priv->pll_desc->sleepdata) { |
| 593 | struct i2c_msg msg = { .flags = 0, |
| 594 | .addr = priv->pll_i2c_address, |
| 595 | .buf = priv->pll_desc->sleepdata + 1, |
| 596 | .len = priv->pll_desc->sleepdata[0] }; |
| 597 | |
| 598 | int result; |
| 599 | |
| 600 | if (fe->ops.i2c_gate_ctrl) |
| 601 | fe->ops.i2c_gate_ctrl(fe, 1); |
| 602 | if ((result = i2c_transfer(priv->i2c, &msg, 1)) != 1) { |
| 603 | return result; |
| 604 | } |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 605 | return 0; |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 606 | } |
Trent Piepho | d519dcf | 2007-03-19 02:24:09 -0300 | [diff] [blame] | 607 | /* Shouldn't be called when initdata is NULL, maybe BUG()? */ |
| 608 | return -EINVAL; |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 609 | } |
| 610 | |
Michael Krufky | 47ae9ae | 2006-11-20 16:38:42 -0300 | [diff] [blame] | 611 | static int dvb_pll_set_params(struct dvb_frontend *fe, |
| 612 | struct dvb_frontend_parameters *params) |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 613 | { |
Mauro Carvalho Chehab | 80d8d49 | 2011-12-21 11:16:39 -0300 | [diff] [blame] | 614 | struct dtv_frontend_properties *c = &fe->dtv_property_cache; |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 615 | struct dvb_pll_priv *priv = fe->tuner_priv; |
| 616 | u8 buf[4]; |
| 617 | struct i2c_msg msg = |
Michael Krufky | 47ae9ae | 2006-11-20 16:38:42 -0300 | [diff] [blame] | 618 | { .addr = priv->pll_i2c_address, .flags = 0, |
| 619 | .buf = buf, .len = sizeof(buf) }; |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 620 | int result; |
Michael Krufky | 77d6750 | 2007-05-05 12:05:39 -0300 | [diff] [blame] | 621 | u32 frequency = 0; |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 622 | |
| 623 | if (priv->i2c == NULL) |
| 624 | return -EINVAL; |
| 625 | |
Mauro Carvalho Chehab | 80d8d49 | 2011-12-21 11:16:39 -0300 | [diff] [blame] | 626 | result = dvb_pll_configure(fe, buf, c->frequency); |
| 627 | if (result < 0) |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 628 | return result; |
Michael Krufky | 89faeef | 2006-11-20 16:45:29 -0300 | [diff] [blame] | 629 | else |
| 630 | frequency = result; |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 631 | |
Patrick Boettcher | dea7486 | 2006-05-14 05:01:31 -0300 | [diff] [blame] | 632 | if (fe->ops.i2c_gate_ctrl) |
| 633 | fe->ops.i2c_gate_ctrl(fe, 1); |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 634 | if ((result = i2c_transfer(priv->i2c, &msg, 1)) != 1) { |
| 635 | return result; |
| 636 | } |
| 637 | |
Michael Krufky | 89faeef | 2006-11-20 16:45:29 -0300 | [diff] [blame] | 638 | priv->frequency = frequency; |
Mauro Carvalho Chehab | 80d8d49 | 2011-12-21 11:16:39 -0300 | [diff] [blame] | 639 | if (c->bandwidth_hz <= 6000000) |
| 640 | priv->bandwidth = BANDWIDTH_6_MHZ; |
| 641 | else if (c->bandwidth_hz <= 7000000) |
| 642 | priv->bandwidth = BANDWIDTH_7_MHZ; |
| 643 | if (c->bandwidth_hz <= 8000000) |
| 644 | priv->bandwidth = BANDWIDTH_8_MHZ; |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 645 | |
| 646 | return 0; |
| 647 | } |
| 648 | |
Michael Krufky | 47ae9ae | 2006-11-20 16:38:42 -0300 | [diff] [blame] | 649 | static int dvb_pll_calc_regs(struct dvb_frontend *fe, |
Michael Krufky | 47ae9ae | 2006-11-20 16:38:42 -0300 | [diff] [blame] | 650 | u8 *buf, int buf_len) |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 651 | { |
Mauro Carvalho Chehab | 249fa0b | 2011-12-24 12:03:05 -0300 | [diff] [blame^] | 652 | struct dtv_frontend_properties *c = &fe->dtv_property_cache; |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 653 | struct dvb_pll_priv *priv = fe->tuner_priv; |
| 654 | int result; |
Michael Krufky | 77d6750 | 2007-05-05 12:05:39 -0300 | [diff] [blame] | 655 | u32 frequency = 0; |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 656 | |
| 657 | if (buf_len < 5) |
| 658 | return -EINVAL; |
| 659 | |
Mauro Carvalho Chehab | 249fa0b | 2011-12-24 12:03:05 -0300 | [diff] [blame^] | 660 | result = dvb_pll_configure(fe, buf + 1, c->frequency); |
Mauro Carvalho Chehab | 80d8d49 | 2011-12-21 11:16:39 -0300 | [diff] [blame] | 661 | if (result < 0) |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 662 | return result; |
Michael Krufky | 89faeef | 2006-11-20 16:45:29 -0300 | [diff] [blame] | 663 | else |
| 664 | frequency = result; |
| 665 | |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 666 | buf[0] = priv->pll_i2c_address; |
| 667 | |
Michael Krufky | 89faeef | 2006-11-20 16:45:29 -0300 | [diff] [blame] | 668 | priv->frequency = frequency; |
Mauro Carvalho Chehab | 249fa0b | 2011-12-24 12:03:05 -0300 | [diff] [blame^] | 669 | priv->bandwidth = c->bandwidth_hz; |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 670 | |
| 671 | return 5; |
| 672 | } |
| 673 | |
| 674 | static int dvb_pll_get_frequency(struct dvb_frontend *fe, u32 *frequency) |
| 675 | { |
| 676 | struct dvb_pll_priv *priv = fe->tuner_priv; |
| 677 | *frequency = priv->frequency; |
| 678 | return 0; |
| 679 | } |
| 680 | |
| 681 | static int dvb_pll_get_bandwidth(struct dvb_frontend *fe, u32 *bandwidth) |
| 682 | { |
| 683 | struct dvb_pll_priv *priv = fe->tuner_priv; |
| 684 | *bandwidth = priv->bandwidth; |
| 685 | return 0; |
| 686 | } |
| 687 | |
Trent Piepho | 26aed92 | 2007-04-27 12:31:29 -0300 | [diff] [blame] | 688 | static int dvb_pll_init(struct dvb_frontend *fe) |
| 689 | { |
| 690 | struct dvb_pll_priv *priv = fe->tuner_priv; |
| 691 | |
| 692 | if (priv->i2c == NULL) |
| 693 | return -EINVAL; |
| 694 | |
| 695 | if (priv->pll_desc->initdata) { |
| 696 | struct i2c_msg msg = { .flags = 0, |
| 697 | .addr = priv->pll_i2c_address, |
| 698 | .buf = priv->pll_desc->initdata + 1, |
| 699 | .len = priv->pll_desc->initdata[0] }; |
| 700 | |
| 701 | int result; |
| 702 | if (fe->ops.i2c_gate_ctrl) |
| 703 | fe->ops.i2c_gate_ctrl(fe, 1); |
Malcolm Priestley | 2b74334 | 2011-02-06 12:29:51 -0300 | [diff] [blame] | 704 | result = i2c_transfer(priv->i2c, &msg, 1); |
| 705 | if (result != 1) |
Trent Piepho | 26aed92 | 2007-04-27 12:31:29 -0300 | [diff] [blame] | 706 | return result; |
Malcolm Priestley | 2b74334 | 2011-02-06 12:29:51 -0300 | [diff] [blame] | 707 | if (priv->pll_desc->initdata2) { |
| 708 | msg.buf = priv->pll_desc->initdata2 + 1; |
| 709 | msg.len = priv->pll_desc->initdata2[0]; |
| 710 | if (fe->ops.i2c_gate_ctrl) |
| 711 | fe->ops.i2c_gate_ctrl(fe, 1); |
| 712 | result = i2c_transfer(priv->i2c, &msg, 1); |
| 713 | if (result != 1) |
| 714 | return result; |
Trent Piepho | 26aed92 | 2007-04-27 12:31:29 -0300 | [diff] [blame] | 715 | } |
| 716 | return 0; |
| 717 | } |
| 718 | /* Shouldn't be called when initdata is NULL, maybe BUG()? */ |
| 719 | return -EINVAL; |
| 720 | } |
| 721 | |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 722 | static struct dvb_tuner_ops dvb_pll_tuner_ops = { |
| 723 | .release = dvb_pll_release, |
| 724 | .sleep = dvb_pll_sleep, |
Trent Piepho | d519dcf | 2007-03-19 02:24:09 -0300 | [diff] [blame] | 725 | .init = dvb_pll_init, |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 726 | .set_params = dvb_pll_set_params, |
Andrew de Quincey | bd4956b | 2006-04-18 21:38:49 -0300 | [diff] [blame] | 727 | .calc_regs = dvb_pll_calc_regs, |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 728 | .get_frequency = dvb_pll_get_frequency, |
| 729 | .get_bandwidth = dvb_pll_get_bandwidth, |
| 730 | }; |
| 731 | |
Michael Krufky | 47ae9ae | 2006-11-20 16:38:42 -0300 | [diff] [blame] | 732 | struct dvb_frontend *dvb_pll_attach(struct dvb_frontend *fe, int pll_addr, |
| 733 | struct i2c_adapter *i2c, |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 734 | unsigned int pll_desc_id) |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 735 | { |
Andrew de Quincey | 061b623 | 2006-07-10 03:34:14 -0300 | [diff] [blame] | 736 | u8 b1 [] = { 0 }; |
Michael Krufky | 47ae9ae | 2006-11-20 16:38:42 -0300 | [diff] [blame] | 737 | struct i2c_msg msg = { .addr = pll_addr, .flags = I2C_M_RD, |
| 738 | .buf = b1, .len = 1 }; |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 739 | struct dvb_pll_priv *priv = NULL; |
Andrew de Quincey | 061b623 | 2006-07-10 03:34:14 -0300 | [diff] [blame] | 740 | int ret; |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 741 | struct dvb_pll_desc *desc; |
| 742 | |
Michael Krufky | 704e39b | 2007-09-07 18:27:43 -0300 | [diff] [blame] | 743 | if ((id[dvb_pll_devcount] > DVB_PLL_UNDEFINED) && |
| 744 | (id[dvb_pll_devcount] < ARRAY_SIZE(pll_list))) |
| 745 | pll_desc_id = id[dvb_pll_devcount]; |
| 746 | |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 747 | BUG_ON(pll_desc_id < 1 || pll_desc_id >= ARRAY_SIZE(pll_list)); |
| 748 | |
| 749 | desc = pll_list[pll_desc_id]; |
Andrew de Quincey | 061b623 | 2006-07-10 03:34:14 -0300 | [diff] [blame] | 750 | |
Andrew de Quincey | 55c05b6 | 2006-07-16 19:41:41 -0300 | [diff] [blame] | 751 | if (i2c != NULL) { |
| 752 | if (fe->ops.i2c_gate_ctrl) |
| 753 | fe->ops.i2c_gate_ctrl(fe, 1); |
Andrew de Quincey | 061b623 | 2006-07-10 03:34:14 -0300 | [diff] [blame] | 754 | |
Andrew de Quincey | 95faba2 | 2006-07-18 16:37:13 -0300 | [diff] [blame] | 755 | ret = i2c_transfer (i2c, &msg, 1); |
| 756 | if (ret != 1) |
Andrew de Quincey | 2bfe031 | 2006-08-08 09:10:08 -0300 | [diff] [blame] | 757 | return NULL; |
Andrew de Quincey | 55c05b6 | 2006-07-16 19:41:41 -0300 | [diff] [blame] | 758 | if (fe->ops.i2c_gate_ctrl) |
| 759 | fe->ops.i2c_gate_ctrl(fe, 0); |
| 760 | } |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 761 | |
| 762 | priv = kzalloc(sizeof(struct dvb_pll_priv), GFP_KERNEL); |
| 763 | if (priv == NULL) |
Andrew de Quincey | 2bfe031 | 2006-08-08 09:10:08 -0300 | [diff] [blame] | 764 | return NULL; |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 765 | |
| 766 | priv->pll_i2c_address = pll_addr; |
| 767 | priv->i2c = i2c; |
| 768 | priv->pll_desc = desc; |
Michael Krufky | a27e5e7 | 2007-09-07 18:11:15 -0300 | [diff] [blame] | 769 | priv->nr = dvb_pll_devcount++; |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 770 | |
Michael Krufky | 47ae9ae | 2006-11-20 16:38:42 -0300 | [diff] [blame] | 771 | memcpy(&fe->ops.tuner_ops, &dvb_pll_tuner_ops, |
| 772 | sizeof(struct dvb_tuner_ops)); |
| 773 | |
Trent Piepho | 982dd1b | 2007-04-27 12:31:27 -0300 | [diff] [blame] | 774 | strncpy(fe->ops.tuner_ops.info.name, desc->name, |
| 775 | sizeof(fe->ops.tuner_ops.info.name)); |
Patrick Boettcher | dea7486 | 2006-05-14 05:01:31 -0300 | [diff] [blame] | 776 | fe->ops.tuner_ops.info.frequency_min = desc->min; |
Trent Piepho | 0d84a62 | 2007-08-17 18:36:44 -0300 | [diff] [blame] | 777 | fe->ops.tuner_ops.info.frequency_max = desc->max; |
Trent Piepho | d519dcf | 2007-03-19 02:24:09 -0300 | [diff] [blame] | 778 | if (!desc->initdata) |
| 779 | fe->ops.tuner_ops.init = NULL; |
| 780 | if (!desc->sleepdata) |
| 781 | fe->ops.tuner_ops.sleep = NULL; |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 782 | |
| 783 | fe->tuner_priv = priv; |
Michael Krufky | a27e5e7 | 2007-09-07 18:11:15 -0300 | [diff] [blame] | 784 | |
Michael Krufky | 8528fa4 | 2007-09-09 05:08:30 -0300 | [diff] [blame] | 785 | if ((debug) || (id[priv->nr] == pll_desc_id)) { |
Michael Krufky | a27e5e7 | 2007-09-07 18:11:15 -0300 | [diff] [blame] | 786 | printk("dvb-pll[%d]", priv->nr); |
| 787 | if (i2c != NULL) |
| 788 | printk(" %d-%04x", i2c_adapter_id(i2c), pll_addr); |
Michael Krufky | 704e39b | 2007-09-07 18:27:43 -0300 | [diff] [blame] | 789 | printk(": id# %d (%s) attached, %s\n", pll_desc_id, desc->name, |
| 790 | id[priv->nr] == pll_desc_id ? |
| 791 | "insmod option" : "autodetected"); |
Michael Krufky | 4562fbe | 2007-09-09 05:16:34 -0300 | [diff] [blame] | 792 | } |
Michael Krufky | a27e5e7 | 2007-09-07 18:11:15 -0300 | [diff] [blame] | 793 | |
Andrew de Quincey | 2bfe031 | 2006-08-08 09:10:08 -0300 | [diff] [blame] | 794 | return fe; |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 795 | } |
| 796 | EXPORT_SYMBOL(dvb_pll_attach); |
| 797 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 798 | MODULE_DESCRIPTION("dvb pll library"); |
| 799 | MODULE_AUTHOR("Gerd Knorr"); |
| 800 | MODULE_LICENSE("GPL"); |