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 | |
| 21 | #include <linux/module.h> |
| 22 | #include <linux/dvb/frontend.h> |
| 23 | #include <asm/types.h> |
| 24 | |
| 25 | #include "dvb-pll.h" |
| 26 | |
Michael Krufky | 05a4611 | 2007-09-07 18:19:57 -0300 | [diff] [blame] | 27 | struct 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 Krufky | ff3e7dd | 2007-09-09 13:00:45 -0300 | [diff] [blame] | 43 | #define DVB_PLL_MAX 64 |
Michael Krufky | 05a4611 | 2007-09-07 18:19:57 -0300 | [diff] [blame] | 44 | |
| 45 | static unsigned int dvb_pll_devcount; |
| 46 | |
| 47 | static int debug = 0; |
| 48 | module_param(debug, int, 0644); |
| 49 | MODULE_PARM_DESC(debug, "enable verbose debug messages"); |
| 50 | |
| 51 | static unsigned int input[DVB_PLL_MAX] = { [ 0 ... (DVB_PLL_MAX-1) ] = 0 }; |
| 52 | module_param_array(input, int, NULL, 0644); |
| 53 | MODULE_PARM_DESC(input,"specify rf input choice, 0 for autoselect (default)"); |
| 54 | |
Michael Krufky | 704e39b | 2007-09-07 18:27:43 -0300 | [diff] [blame] | 55 | static unsigned int id[DVB_PLL_MAX] = |
| 56 | { [ 0 ... (DVB_PLL_MAX-1) ] = DVB_PLL_UNDEFINED }; |
| 57 | module_param_array(id, int, NULL, 0644); |
| 58 | MODULE_PARM_DESC(id, "force pll id to use (DEBUG ONLY)"); |
| 59 | |
Michael Krufky | 05a4611 | 2007-09-07 18:19:57 -0300 | [diff] [blame] | 60 | /* ----------------------------------------------------------- */ |
| 61 | |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 62 | struct dvb_pll_desc { |
| 63 | char *name; |
| 64 | u32 min; |
| 65 | u32 max; |
| 66 | u32 iffreq; |
Michael Krufky | 5d7802b | 2007-09-07 18:03:58 -0300 | [diff] [blame] | 67 | void (*set)(struct dvb_frontend *fe, u8 *buf, |
| 68 | const struct dvb_frontend_parameters *params); |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 69 | u8 *initdata; |
| 70 | u8 *sleepdata; |
| 71 | int count; |
| 72 | struct { |
| 73 | u32 limit; |
| 74 | u32 stepsize; |
| 75 | u8 config; |
| 76 | u8 cb; |
| 77 | } entries[12]; |
| 78 | }; |
| 79 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | /* ----------------------------------------------------------- */ |
| 81 | /* descriptions */ |
| 82 | |
Trent Piepho | 26aed92 | 2007-04-27 12:31:29 -0300 | [diff] [blame] | 83 | /* Set AGC TOP value to 103 dBuV: |
| 84 | 0x80 = Control Byte |
| 85 | 0x40 = 250 uA charge pump (irrelevant) |
| 86 | 0x18 = Aux Byte to follow |
| 87 | 0x06 = 64.5 kHz divider (irrelevant) |
| 88 | 0x01 = Disable Vt (aka sleep) |
| 89 | |
| 90 | 0x00 = AGC Time constant 2s Iagc = 300 nA (vs 0x80 = 9 nA) |
| 91 | 0x50 = AGC Take over point = 103 dBuV */ |
| 92 | static u8 tua603x_agc103[] = { 2, 0x80|0x40|0x18|0x06|0x01, 0x00|0x50 }; |
| 93 | |
Trent Piepho | b7754d7 | 2007-05-08 18:05:16 -0300 | [diff] [blame] | 94 | /* 0x04 = 166.67 kHz divider |
| 95 | |
| 96 | 0x80 = AGC Time constant 50ms Iagc = 9 uA |
| 97 | 0x20 = AGC Take over point = 112 dBuV */ |
| 98 | static u8 tua603x_agc112[] = { 2, 0x80|0x40|0x18|0x04|0x01, 0x80|0x20 }; |
| 99 | |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 100 | static struct dvb_pll_desc dvb_pll_thomson_dtt7579 = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | .name = "Thomson dtt7579", |
| 102 | .min = 177000000, |
| 103 | .max = 858000000, |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 104 | .iffreq= 36166667, |
Trent Piepho | d519dcf | 2007-03-19 02:24:09 -0300 | [diff] [blame] | 105 | .sleepdata = (u8[]){ 2, 0xb4, 0x03 }, |
| 106 | .count = 4, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | .entries = { |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 108 | { 443250000, 166667, 0xb4, 0x02 }, |
| 109 | { 542000000, 166667, 0xb4, 0x08 }, |
| 110 | { 771000000, 166667, 0xbc, 0x08 }, |
| 111 | { 999999999, 166667, 0xf4, 0x08 }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | }, |
| 113 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 115 | static struct dvb_pll_desc dvb_pll_thomson_dtt7610 = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | .name = "Thomson dtt7610", |
| 117 | .min = 44000000, |
| 118 | .max = 958000000, |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 119 | .iffreq= 44000000, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | .count = 3, |
| 121 | .entries = { |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 122 | { 157250000, 62500, 0x8e, 0x39 }, |
| 123 | { 454000000, 62500, 0x8e, 0x3a }, |
| 124 | { 999999999, 62500, 0x8e, 0x3c }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | }, |
| 126 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | |
Michael Krufky | 5d7802b | 2007-09-07 18:03:58 -0300 | [diff] [blame] | 128 | static void thomson_dtt759x_bw(struct dvb_frontend *fe, u8 *buf, |
Michael Krufky | 77d6750 | 2007-05-05 12:05:39 -0300 | [diff] [blame] | 129 | const struct dvb_frontend_parameters *params) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | { |
Michael Krufky | 77d6750 | 2007-05-05 12:05:39 -0300 | [diff] [blame] | 131 | if (BANDWIDTH_7_MHZ == params->u.ofdm.bandwidth) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | buf[3] |= 0x10; |
| 133 | } |
| 134 | |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 135 | static struct dvb_pll_desc dvb_pll_thomson_dtt759x = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | .name = "Thomson dtt759x", |
| 137 | .min = 177000000, |
| 138 | .max = 896000000, |
Michael Krufky | 77d6750 | 2007-05-05 12:05:39 -0300 | [diff] [blame] | 139 | .set = thomson_dtt759x_bw, |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 140 | .iffreq= 36166667, |
Trent Piepho | d519dcf | 2007-03-19 02:24:09 -0300 | [diff] [blame] | 141 | .sleepdata = (u8[]){ 2, 0x84, 0x03 }, |
| 142 | .count = 5, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | .entries = { |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 144 | { 264000000, 166667, 0xb4, 0x02 }, |
| 145 | { 470000000, 166667, 0xbc, 0x02 }, |
| 146 | { 735000000, 166667, 0xbc, 0x08 }, |
| 147 | { 835000000, 166667, 0xf4, 0x08 }, |
| 148 | { 999999999, 166667, 0xfc, 0x08 }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | }, |
| 150 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 152 | static struct dvb_pll_desc dvb_pll_lg_z201 = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | .name = "LG z201", |
| 154 | .min = 174000000, |
| 155 | .max = 862000000, |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 156 | .iffreq= 36166667, |
Trent Piepho | d519dcf | 2007-03-19 02:24:09 -0300 | [diff] [blame] | 157 | .sleepdata = (u8[]){ 2, 0xbc, 0x03 }, |
| 158 | .count = 5, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | .entries = { |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 160 | { 157500000, 166667, 0xbc, 0x01 }, |
| 161 | { 443250000, 166667, 0xbc, 0x02 }, |
| 162 | { 542000000, 166667, 0xbc, 0x04 }, |
| 163 | { 830000000, 166667, 0xf4, 0x04 }, |
| 164 | { 999999999, 166667, 0xfc, 0x04 }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | }, |
| 166 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 168 | static struct dvb_pll_desc dvb_pll_microtune_4042 = { |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 169 | .name = "Microtune 4042 FI5", |
| 170 | .min = 57000000, |
| 171 | .max = 858000000, |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 172 | .iffreq= 44000000, |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 173 | .count = 3, |
| 174 | .entries = { |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 175 | { 162000000, 62500, 0x8e, 0xa1 }, |
| 176 | { 457000000, 62500, 0x8e, 0x91 }, |
| 177 | { 999999999, 62500, 0x8e, 0x31 }, |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 178 | }, |
| 179 | }; |
Mac Michaels | d8667cb | 2005-07-07 17:58:29 -0700 | [diff] [blame] | 180 | |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 181 | static struct dvb_pll_desc dvb_pll_thomson_dtt761x = { |
Michael Krufky | 83ac8722 | 2006-01-09 15:25:29 -0200 | [diff] [blame] | 182 | /* DTT 7611 7611A 7612 7613 7613A 7614 7615 7615A */ |
| 183 | .name = "Thomson dtt761x", |
| 184 | .min = 57000000, |
| 185 | .max = 863000000, |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 186 | .iffreq= 44000000, |
Michael Krufky | 0d723c0 | 2005-07-07 17:58:42 -0700 | [diff] [blame] | 187 | .count = 3, |
Trent Piepho | 26aed92 | 2007-04-27 12:31:29 -0300 | [diff] [blame] | 188 | .initdata = tua603x_agc103, |
Michael Krufky | 0d723c0 | 2005-07-07 17:58:42 -0700 | [diff] [blame] | 189 | .entries = { |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 190 | { 147000000, 62500, 0x8e, 0x39 }, |
| 191 | { 417000000, 62500, 0x8e, 0x3a }, |
| 192 | { 999999999, 62500, 0x8e, 0x3c }, |
Michael Krufky | 0d723c0 | 2005-07-07 17:58:42 -0700 | [diff] [blame] | 193 | }, |
| 194 | }; |
Michael Krufky | 0d723c0 | 2005-07-07 17:58:42 -0700 | [diff] [blame] | 195 | |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 196 | static struct dvb_pll_desc dvb_pll_unknown_1 = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | .name = "unknown 1", /* used by dntv live dvb-t */ |
| 198 | .min = 174000000, |
| 199 | .max = 862000000, |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 200 | .iffreq= 36166667, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | .count = 9, |
| 202 | .entries = { |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 203 | { 150000000, 166667, 0xb4, 0x01 }, |
| 204 | { 173000000, 166667, 0xbc, 0x01 }, |
| 205 | { 250000000, 166667, 0xb4, 0x02 }, |
| 206 | { 400000000, 166667, 0xbc, 0x02 }, |
| 207 | { 420000000, 166667, 0xf4, 0x02 }, |
| 208 | { 470000000, 166667, 0xfc, 0x02 }, |
| 209 | { 600000000, 166667, 0xbc, 0x08 }, |
| 210 | { 730000000, 166667, 0xf4, 0x08 }, |
| 211 | { 999999999, 166667, 0xfc, 0x08 }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | }, |
| 213 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 215 | /* Infineon TUA6010XS |
| 216 | * used in Thomson Cable Tuner |
| 217 | */ |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 218 | static struct dvb_pll_desc dvb_pll_tua6010xs = { |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 219 | .name = "Infineon TUA6010XS", |
| 220 | .min = 44250000, |
| 221 | .max = 858000000, |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 222 | .iffreq= 36125000, |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 223 | .count = 3, |
| 224 | .entries = { |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 225 | { 115750000, 62500, 0x8e, 0x03 }, |
| 226 | { 403250000, 62500, 0x8e, 0x06 }, |
| 227 | { 999999999, 62500, 0x8e, 0x85 }, |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 228 | }, |
| 229 | }; |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 230 | |
| 231 | /* Panasonic env57h1xd5 (some Philips PLL ?) */ |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 232 | static struct dvb_pll_desc dvb_pll_env57h1xd5 = { |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 233 | .name = "Panasonic ENV57H1XD5", |
| 234 | .min = 44250000, |
| 235 | .max = 858000000, |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 236 | .iffreq= 36125000, |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 237 | .count = 4, |
| 238 | .entries = { |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 239 | { 153000000, 166667, 0xc2, 0x41 }, |
| 240 | { 470000000, 166667, 0xc2, 0x42 }, |
| 241 | { 526000000, 166667, 0xc2, 0x84 }, |
| 242 | { 999999999, 166667, 0xc2, 0xa4 }, |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 243 | }, |
| 244 | }; |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 245 | |
| 246 | /* Philips TDA6650/TDA6651 |
| 247 | * used in Panasonic ENV77H11D5 |
| 248 | */ |
Michael Krufky | 5d7802b | 2007-09-07 18:03:58 -0300 | [diff] [blame] | 249 | static void tda665x_bw(struct dvb_frontend *fe, u8 *buf, |
| 250 | const struct dvb_frontend_parameters *params) |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 251 | { |
Michael Krufky | 77d6750 | 2007-05-05 12:05:39 -0300 | [diff] [blame] | 252 | if (params->u.ofdm.bandwidth == BANDWIDTH_8_MHZ) |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 253 | buf[3] |= 0x08; |
| 254 | } |
| 255 | |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 256 | static struct dvb_pll_desc dvb_pll_tda665x = { |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 257 | .name = "Philips TDA6650/TDA6651", |
| 258 | .min = 44250000, |
| 259 | .max = 858000000, |
Michael Krufky | 77d6750 | 2007-05-05 12:05:39 -0300 | [diff] [blame] | 260 | .set = tda665x_bw, |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 261 | .iffreq= 36166667, |
Michael Krufky | fbfee86 | 2007-05-09 15:58:17 -0300 | [diff] [blame] | 262 | .initdata = (u8[]){ 4, 0x0b, 0xf5, 0x85, 0xab }, |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 263 | .count = 12, |
| 264 | .entries = { |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 265 | { 93834000, 166667, 0xca, 0x61 /* 011 0 0 0 01 */ }, |
| 266 | { 123834000, 166667, 0xca, 0xa1 /* 101 0 0 0 01 */ }, |
| 267 | { 161000000, 166667, 0xca, 0xa1 /* 101 0 0 0 01 */ }, |
| 268 | { 163834000, 166667, 0xca, 0xc2 /* 110 0 0 0 10 */ }, |
| 269 | { 253834000, 166667, 0xca, 0x62 /* 011 0 0 0 10 */ }, |
| 270 | { 383834000, 166667, 0xca, 0xa2 /* 101 0 0 0 10 */ }, |
| 271 | { 443834000, 166667, 0xca, 0xc2 /* 110 0 0 0 10 */ }, |
| 272 | { 444000000, 166667, 0xca, 0xc4 /* 110 0 0 1 00 */ }, |
| 273 | { 583834000, 166667, 0xca, 0x64 /* 011 0 0 1 00 */ }, |
| 274 | { 793834000, 166667, 0xca, 0xa4 /* 101 0 0 1 00 */ }, |
| 275 | { 444834000, 166667, 0xca, 0xc4 /* 110 0 0 1 00 */ }, |
| 276 | { 861000000, 166667, 0xca, 0xe4 /* 111 0 0 1 00 */ }, |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 277 | } |
| 278 | }; |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 279 | |
| 280 | /* Infineon TUA6034 |
| 281 | * used in LG TDTP E102P |
| 282 | */ |
Michael Krufky | 5d7802b | 2007-09-07 18:03:58 -0300 | [diff] [blame] | 283 | static void tua6034_bw(struct dvb_frontend *fe, u8 *buf, |
| 284 | const struct dvb_frontend_parameters *params) |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 285 | { |
Michael Krufky | 77d6750 | 2007-05-05 12:05:39 -0300 | [diff] [blame] | 286 | if (BANDWIDTH_7_MHZ != params->u.ofdm.bandwidth) |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 287 | buf[3] |= 0x08; |
| 288 | } |
| 289 | |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 290 | static struct dvb_pll_desc dvb_pll_tua6034 = { |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 291 | .name = "Infineon TUA6034", |
| 292 | .min = 44250000, |
| 293 | .max = 858000000, |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 294 | .iffreq= 36166667, |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 295 | .count = 3, |
Michael Krufky | 77d6750 | 2007-05-05 12:05:39 -0300 | [diff] [blame] | 296 | .set = tua6034_bw, |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 297 | .entries = { |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 298 | { 174500000, 62500, 0xce, 0x01 }, |
| 299 | { 230000000, 62500, 0xce, 0x02 }, |
| 300 | { 999999999, 62500, 0xce, 0x04 }, |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 301 | }, |
| 302 | }; |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 303 | |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 304 | /* Infineon TUA6034 |
Michael Krufky | d9e12f2 | 2006-04-22 16:15:11 -0300 | [diff] [blame] | 305 | * used in LG TDVS-H061F, LG TDVS-H062F and LG TDVS-H064F |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 306 | */ |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 307 | static struct dvb_pll_desc dvb_pll_lg_tdvs_h06xf = { |
Michael Krufky | d9e12f2 | 2006-04-22 16:15:11 -0300 | [diff] [blame] | 308 | .name = "LG TDVS-H06xF", |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 309 | .min = 54000000, |
| 310 | .max = 863000000, |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 311 | .iffreq= 44000000, |
Trent Piepho | 6bdcc6e | 2007-04-27 12:31:30 -0300 | [diff] [blame] | 312 | .initdata = tua603x_agc103, |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 313 | .count = 3, |
| 314 | .entries = { |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 315 | { 165000000, 62500, 0xce, 0x01 }, |
| 316 | { 450000000, 62500, 0xce, 0x02 }, |
| 317 | { 999999999, 62500, 0xce, 0x04 }, |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 318 | }, |
| 319 | }; |
Michael Krufky | 1963c90 | 2005-08-08 09:22:43 -0700 | [diff] [blame] | 320 | |
Patrick Boettcher | 49dc82f | 2005-07-07 17:58:09 -0700 | [diff] [blame] | 321 | /* Philips FMD1216ME |
| 322 | * used in Medion Hybrid PCMCIA card and USB Box |
| 323 | */ |
Michael Krufky | 5d7802b | 2007-09-07 18:03:58 -0300 | [diff] [blame] | 324 | static void fmd1216me_bw(struct dvb_frontend *fe, u8 *buf, |
| 325 | const struct dvb_frontend_parameters *params) |
Patrick Boettcher | 49dc82f | 2005-07-07 17:58:09 -0700 | [diff] [blame] | 326 | { |
Michael Krufky | 77d6750 | 2007-05-05 12:05:39 -0300 | [diff] [blame] | 327 | if (params->u.ofdm.bandwidth == BANDWIDTH_8_MHZ && |
| 328 | params->frequency >= 158870000) |
Patrick Boettcher | 49dc82f | 2005-07-07 17:58:09 -0700 | [diff] [blame] | 329 | buf[3] |= 0x08; |
| 330 | } |
| 331 | |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 332 | static struct dvb_pll_desc dvb_pll_fmd1216me = { |
Patrick Boettcher | 0589b8e | 2005-07-07 17:58:12 -0700 | [diff] [blame] | 333 | .name = "Philips FMD1216ME", |
Patrick Boettcher | 49dc82f | 2005-07-07 17:58:09 -0700 | [diff] [blame] | 334 | .min = 50870000, |
| 335 | .max = 858000000, |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 336 | .iffreq= 36125000, |
Michael Krufky | 77d6750 | 2007-05-05 12:05:39 -0300 | [diff] [blame] | 337 | .set = fmd1216me_bw, |
Trent Piepho | b7754d7 | 2007-05-08 18:05:16 -0300 | [diff] [blame] | 338 | .initdata = tua603x_agc112, |
| 339 | .sleepdata = (u8[]){ 4, 0x9c, 0x60, 0x85, 0x54 }, |
Patrick Boettcher | 49dc82f | 2005-07-07 17:58:09 -0700 | [diff] [blame] | 340 | .count = 7, |
| 341 | .entries = { |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 342 | { 143870000, 166667, 0xbc, 0x41 }, |
| 343 | { 158870000, 166667, 0xf4, 0x41 }, |
| 344 | { 329870000, 166667, 0xbc, 0x42 }, |
| 345 | { 441870000, 166667, 0xf4, 0x42 }, |
| 346 | { 625870000, 166667, 0xbc, 0x44 }, |
| 347 | { 803870000, 166667, 0xf4, 0x44 }, |
| 348 | { 999999999, 166667, 0xfc, 0x44 }, |
Patrick Boettcher | 49dc82f | 2005-07-07 17:58:09 -0700 | [diff] [blame] | 349 | } |
| 350 | }; |
Patrick Boettcher | 49dc82f | 2005-07-07 17:58:09 -0700 | [diff] [blame] | 351 | |
Patrick Boettcher | 0589b8e | 2005-07-07 17:58:12 -0700 | [diff] [blame] | 352 | /* ALPS TDED4 |
| 353 | * used in Nebula-Cards and USB boxes |
| 354 | */ |
Michael Krufky | 5d7802b | 2007-09-07 18:03:58 -0300 | [diff] [blame] | 355 | static void tded4_bw(struct dvb_frontend *fe, u8 *buf, |
| 356 | const struct dvb_frontend_parameters *params) |
Patrick Boettcher | 0589b8e | 2005-07-07 17:58:12 -0700 | [diff] [blame] | 357 | { |
Michael Krufky | 77d6750 | 2007-05-05 12:05:39 -0300 | [diff] [blame] | 358 | if (params->u.ofdm.bandwidth == BANDWIDTH_8_MHZ) |
Patrick Boettcher | 0589b8e | 2005-07-07 17:58:12 -0700 | [diff] [blame] | 359 | buf[3] |= 0x04; |
| 360 | } |
| 361 | |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 362 | static struct dvb_pll_desc dvb_pll_tded4 = { |
Patrick Boettcher | 0589b8e | 2005-07-07 17:58:12 -0700 | [diff] [blame] | 363 | .name = "ALPS TDED4", |
| 364 | .min = 47000000, |
| 365 | .max = 863000000, |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 366 | .iffreq= 36166667, |
Michael Krufky | 77d6750 | 2007-05-05 12:05:39 -0300 | [diff] [blame] | 367 | .set = tded4_bw, |
Patrick Boettcher | 0589b8e | 2005-07-07 17:58:12 -0700 | [diff] [blame] | 368 | .count = 4, |
| 369 | .entries = { |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 370 | { 153000000, 166667, 0x85, 0x01 }, |
| 371 | { 470000000, 166667, 0x85, 0x02 }, |
| 372 | { 823000000, 166667, 0x85, 0x08 }, |
| 373 | { 999999999, 166667, 0x85, 0x88 }, |
Patrick Boettcher | 0589b8e | 2005-07-07 17:58:12 -0700 | [diff] [blame] | 374 | } |
| 375 | }; |
Patrick Boettcher | 0589b8e | 2005-07-07 17:58:12 -0700 | [diff] [blame] | 376 | |
Kirk Lapray | 147418c | 2005-11-08 21:35:39 -0800 | [diff] [blame] | 377 | /* ALPS TDHU2 |
| 378 | * used in AverTVHD MCE A180 |
| 379 | */ |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 380 | static struct dvb_pll_desc dvb_pll_tdhu2 = { |
Kirk Lapray | 147418c | 2005-11-08 21:35:39 -0800 | [diff] [blame] | 381 | .name = "ALPS TDHU2", |
| 382 | .min = 54000000, |
| 383 | .max = 864000000, |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 384 | .iffreq= 44000000, |
Kirk Lapray | 147418c | 2005-11-08 21:35:39 -0800 | [diff] [blame] | 385 | .count = 4, |
| 386 | .entries = { |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 387 | { 162000000, 62500, 0x85, 0x01 }, |
| 388 | { 426000000, 62500, 0x85, 0x02 }, |
| 389 | { 782000000, 62500, 0x85, 0x08 }, |
| 390 | { 999999999, 62500, 0x85, 0x88 }, |
Kirk Lapray | 147418c | 2005-11-08 21:35:39 -0800 | [diff] [blame] | 391 | } |
| 392 | }; |
Kirk Lapray | 147418c | 2005-11-08 21:35:39 -0800 | [diff] [blame] | 393 | |
| 394 | /* Philips TUV1236D |
| 395 | * used in ATI HDTV Wonder |
| 396 | */ |
Michael Krufky | 5d7802b | 2007-09-07 18:03:58 -0300 | [diff] [blame] | 397 | static void tuv1236d_rf(struct dvb_frontend *fe, u8 *buf, |
| 398 | const struct dvb_frontend_parameters *params) |
Michael Krufky | 4abe9f9 | 2007-05-05 12:15:57 -0300 | [diff] [blame] | 399 | { |
Michael Krufky | 05a4611 | 2007-09-07 18:19:57 -0300 | [diff] [blame] | 400 | struct dvb_pll_priv *priv = fe->tuner_priv; |
| 401 | unsigned int new_rf = input[priv->nr]; |
| 402 | |
| 403 | if ((new_rf == 0) || (new_rf > 2)) { |
| 404 | switch (params->u.vsb.modulation) { |
| 405 | case QAM_64: |
| 406 | case QAM_256: |
| 407 | new_rf = 1; |
| 408 | break; |
| 409 | case VSB_8: |
| 410 | default: |
| 411 | new_rf = 2; |
| 412 | } |
| 413 | } |
| 414 | |
| 415 | switch (new_rf) { |
| 416 | case 1: |
Michael Krufky | 4abe9f9 | 2007-05-05 12:15:57 -0300 | [diff] [blame] | 417 | buf[3] |= 0x08; |
| 418 | break; |
Michael Krufky | 05a4611 | 2007-09-07 18:19:57 -0300 | [diff] [blame] | 419 | case 2: |
Michael Krufky | 4abe9f9 | 2007-05-05 12:15:57 -0300 | [diff] [blame] | 420 | buf[3] &= ~0x08; |
Michael Krufky | 05a4611 | 2007-09-07 18:19:57 -0300 | [diff] [blame] | 421 | break; |
| 422 | default: |
| 423 | printk(KERN_WARNING |
| 424 | "%s: unhandled rf input selection: %d", |
| 425 | __FUNCTION__, new_rf); |
Michael Krufky | 4abe9f9 | 2007-05-05 12:15:57 -0300 | [diff] [blame] | 426 | } |
| 427 | } |
| 428 | |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 429 | static struct dvb_pll_desc dvb_pll_tuv1236d = { |
Kirk Lapray | 147418c | 2005-11-08 21:35:39 -0800 | [diff] [blame] | 430 | .name = "Philips TUV1236D", |
Kirk Lapray | 04a4592 | 2005-11-08 21:35:46 -0800 | [diff] [blame] | 431 | .min = 54000000, |
Kirk Lapray | 147418c | 2005-11-08 21:35:39 -0800 | [diff] [blame] | 432 | .max = 864000000, |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 433 | .iffreq= 44000000, |
Michael Krufky | 4abe9f9 | 2007-05-05 12:15:57 -0300 | [diff] [blame] | 434 | .set = tuv1236d_rf, |
Kirk Lapray | 147418c | 2005-11-08 21:35:39 -0800 | [diff] [blame] | 435 | .count = 3, |
| 436 | .entries = { |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 437 | { 157250000, 62500, 0xc6, 0x41 }, |
| 438 | { 454000000, 62500, 0xc6, 0x42 }, |
| 439 | { 999999999, 62500, 0xc6, 0x44 }, |
Kirk Lapray | 147418c | 2005-11-08 21:35:39 -0800 | [diff] [blame] | 440 | }, |
| 441 | }; |
Kirk Lapray | 147418c | 2005-11-08 21:35:39 -0800 | [diff] [blame] | 442 | |
Michael Krufky | d76a617 | 2006-01-23 17:11:06 -0200 | [diff] [blame] | 443 | /* Samsung TBMV30111IN / TBMV30712IN1 |
Kirk Lapray | 147418c | 2005-11-08 21:35:39 -0800 | [diff] [blame] | 444 | * used in Air2PC ATSC - 2nd generation (nxt2002) |
| 445 | */ |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 446 | static struct dvb_pll_desc dvb_pll_samsung_tbmv = { |
Michael Krufky | 28f3d4b | 2006-01-23 17:11:07 -0200 | [diff] [blame] | 447 | .name = "Samsung TBMV30111IN / TBMV30712IN1", |
Kirk Lapray | 147418c | 2005-11-08 21:35:39 -0800 | [diff] [blame] | 448 | .min = 54000000, |
| 449 | .max = 860000000, |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 450 | .iffreq= 44000000, |
Michael Krufky | 17c37ef | 2006-01-15 19:04:04 -0200 | [diff] [blame] | 451 | .count = 6, |
Kirk Lapray | 147418c | 2005-11-08 21:35:39 -0800 | [diff] [blame] | 452 | .entries = { |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 453 | { 172000000, 166667, 0xb4, 0x01 }, |
| 454 | { 214000000, 166667, 0xb4, 0x02 }, |
| 455 | { 467000000, 166667, 0xbc, 0x02 }, |
| 456 | { 721000000, 166667, 0xbc, 0x08 }, |
| 457 | { 841000000, 166667, 0xf4, 0x08 }, |
| 458 | { 999999999, 166667, 0xfc, 0x02 }, |
Kirk Lapray | 147418c | 2005-11-08 21:35:39 -0800 | [diff] [blame] | 459 | } |
| 460 | }; |
Kirk Lapray | 147418c | 2005-11-08 21:35:39 -0800 | [diff] [blame] | 461 | |
Regis Prevot | f8bf134 | 2006-01-11 23:31:53 -0200 | [diff] [blame] | 462 | /* |
| 463 | * Philips SD1878 Tuner. |
| 464 | */ |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 465 | static struct dvb_pll_desc dvb_pll_philips_sd1878_tda8261 = { |
Regis Prevot | f8bf134 | 2006-01-11 23:31:53 -0200 | [diff] [blame] | 466 | .name = "Philips SD1878", |
| 467 | .min = 950000, |
| 468 | .max = 2150000, |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 469 | .iffreq= 249, /* zero-IF, offset 249 is to round up */ |
Regis Prevot | f8bf134 | 2006-01-11 23:31:53 -0200 | [diff] [blame] | 470 | .count = 4, |
| 471 | .entries = { |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 472 | { 1250000, 500, 0xc4, 0x00}, |
| 473 | { 1550000, 500, 0xc4, 0x40}, |
| 474 | { 2050000, 500, 0xc4, 0x80}, |
| 475 | { 2150000, 500, 0xc4, 0xc0}, |
Regis Prevot | f8bf134 | 2006-01-11 23:31:53 -0200 | [diff] [blame] | 476 | }, |
| 477 | }; |
Regis Prevot | f8bf134 | 2006-01-11 23:31:53 -0200 | [diff] [blame] | 478 | |
Jose Alberto Reguero | a78d0bf | 2006-02-07 06:25:14 -0200 | [diff] [blame] | 479 | /* |
| 480 | * Philips TD1316 Tuner. |
| 481 | */ |
Michael Krufky | 5d7802b | 2007-09-07 18:03:58 -0300 | [diff] [blame] | 482 | static void td1316_bw(struct dvb_frontend *fe, u8 *buf, |
| 483 | const struct dvb_frontend_parameters *params) |
Jose Alberto Reguero | a78d0bf | 2006-02-07 06:25:14 -0200 | [diff] [blame] | 484 | { |
| 485 | u8 band; |
| 486 | |
| 487 | /* determine band */ |
Michael Krufky | 77d6750 | 2007-05-05 12:05:39 -0300 | [diff] [blame] | 488 | if (params->frequency < 161000000) |
Jose Alberto Reguero | a78d0bf | 2006-02-07 06:25:14 -0200 | [diff] [blame] | 489 | band = 1; |
Michael Krufky | 77d6750 | 2007-05-05 12:05:39 -0300 | [diff] [blame] | 490 | else if (params->frequency < 444000000) |
Jose Alberto Reguero | a78d0bf | 2006-02-07 06:25:14 -0200 | [diff] [blame] | 491 | band = 2; |
| 492 | else |
| 493 | band = 4; |
| 494 | |
| 495 | buf[3] |= band; |
| 496 | |
| 497 | /* setup PLL filter */ |
Michael Krufky | 77d6750 | 2007-05-05 12:05:39 -0300 | [diff] [blame] | 498 | if (params->u.ofdm.bandwidth == BANDWIDTH_8_MHZ) |
Jose Alberto Reguero | a78d0bf | 2006-02-07 06:25:14 -0200 | [diff] [blame] | 499 | buf[3] |= 1 << 3; |
| 500 | } |
| 501 | |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 502 | static struct dvb_pll_desc dvb_pll_philips_td1316 = { |
Jose Alberto Reguero | a78d0bf | 2006-02-07 06:25:14 -0200 | [diff] [blame] | 503 | .name = "Philips TD1316", |
| 504 | .min = 87000000, |
| 505 | .max = 895000000, |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 506 | .iffreq= 36166667, |
Michael Krufky | 77d6750 | 2007-05-05 12:05:39 -0300 | [diff] [blame] | 507 | .set = td1316_bw, |
Jose Alberto Reguero | a78d0bf | 2006-02-07 06:25:14 -0200 | [diff] [blame] | 508 | .count = 9, |
| 509 | .entries = { |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 510 | { 93834000, 166667, 0xca, 0x60}, |
| 511 | { 123834000, 166667, 0xca, 0xa0}, |
| 512 | { 163834000, 166667, 0xca, 0xc0}, |
| 513 | { 253834000, 166667, 0xca, 0x60}, |
| 514 | { 383834000, 166667, 0xca, 0xa0}, |
| 515 | { 443834000, 166667, 0xca, 0xc0}, |
| 516 | { 583834000, 166667, 0xca, 0x60}, |
| 517 | { 793834000, 166667, 0xca, 0xa0}, |
| 518 | { 858834000, 166667, 0xca, 0xe0}, |
Jose Alberto Reguero | a78d0bf | 2006-02-07 06:25:14 -0200 | [diff] [blame] | 519 | }, |
| 520 | }; |
Jose Alberto Reguero | a78d0bf | 2006-02-07 06:25:14 -0200 | [diff] [blame] | 521 | |
Chris Pascoe | 780dfef | 2006-02-28 08:34:59 -0300 | [diff] [blame] | 522 | /* FE6600 used on DViCO Hybrid */ |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 523 | static struct dvb_pll_desc dvb_pll_thomson_fe6600 = { |
Michael Krufky | 91ae329 | 2006-03-01 00:04:42 -0300 | [diff] [blame] | 524 | .name = "Thomson FE6600", |
Chris Pascoe | 780dfef | 2006-02-28 08:34:59 -0300 | [diff] [blame] | 525 | .min = 44250000, |
| 526 | .max = 858000000, |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 527 | .iffreq= 36125000, |
Chris Pascoe | 780dfef | 2006-02-28 08:34:59 -0300 | [diff] [blame] | 528 | .count = 4, |
| 529 | .entries = { |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 530 | { 250000000, 166667, 0xb4, 0x12 }, |
| 531 | { 455000000, 166667, 0xfe, 0x11 }, |
| 532 | { 775500000, 166667, 0xbc, 0x18 }, |
| 533 | { 999999999, 166667, 0xf4, 0x18 }, |
Chris Pascoe | 780dfef | 2006-02-28 08:34:59 -0300 | [diff] [blame] | 534 | } |
| 535 | }; |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 536 | |
Michael Krufky | 5d7802b | 2007-09-07 18:03:58 -0300 | [diff] [blame] | 537 | static void opera1_bw(struct dvb_frontend *fe, u8 *buf, |
| 538 | const struct dvb_frontend_parameters *params) |
Marco Gittler | 941491f | 2007-04-19 11:26:47 -0300 | [diff] [blame] | 539 | { |
Michael Krufky | 77d6750 | 2007-05-05 12:05:39 -0300 | [diff] [blame] | 540 | if (params->u.ofdm.bandwidth == BANDWIDTH_8_MHZ) |
Marco Gittler | 941491f | 2007-04-19 11:26:47 -0300 | [diff] [blame] | 541 | buf[2] |= 0x08; |
| 542 | } |
| 543 | |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 544 | static struct dvb_pll_desc dvb_pll_opera1 = { |
Marco Gittler | 941491f | 2007-04-19 11:26:47 -0300 | [diff] [blame] | 545 | .name = "Opera Tuner", |
| 546 | .min = 900000, |
| 547 | .max = 2250000, |
| 548 | .iffreq= 0, |
Michael Krufky | 77d6750 | 2007-05-05 12:05:39 -0300 | [diff] [blame] | 549 | .set = opera1_bw, |
Marco Gittler | 941491f | 2007-04-19 11:26:47 -0300 | [diff] [blame] | 550 | .count = 8, |
| 551 | .entries = { |
| 552 | { 1064000, 500, 0xe5, 0xc6 }, |
| 553 | { 1169000, 500, 0xe5, 0xe6 }, |
| 554 | { 1299000, 500, 0xe5, 0x24 }, |
| 555 | { 1444000, 500, 0xe5, 0x44 }, |
| 556 | { 1606000, 500, 0xe5, 0x64 }, |
| 557 | { 1777000, 500, 0xe5, 0x84 }, |
| 558 | { 1941000, 500, 0xe5, 0xa4 }, |
| 559 | { 2250000, 500, 0xe5, 0xc4 }, |
| 560 | } |
| 561 | }; |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 562 | |
Michael Krufky | f1b2439 | 2006-10-13 22:18:01 -0300 | [diff] [blame] | 563 | /* Philips FCV1236D |
| 564 | */ |
Adrian Bunk | 0a0f2c8 | 2007-07-29 12:40:48 -0300 | [diff] [blame] | 565 | static struct dvb_pll_desc dvb_pll_fcv1236d = { |
Michael Krufky | f1b2439 | 2006-10-13 22:18:01 -0300 | [diff] [blame] | 566 | /* Bit_0: RF Input select |
| 567 | * Bit_1: 0=digital, 1=analog |
| 568 | */ |
| 569 | .name = "Philips FCV1236D", |
| 570 | .min = 53000000, |
| 571 | .max = 803000000, |
| 572 | .iffreq= 44000000, |
| 573 | .count = 3, |
| 574 | .entries = { |
| 575 | { 159000000, 62500, 0x8e, 0xa0 }, |
| 576 | { 453000000, 62500, 0x8e, 0x90 }, |
| 577 | { 999999999, 62500, 0x8e, 0x30 }, |
| 578 | }, |
| 579 | }; |
| 580 | |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 581 | /* ----------------------------------------------------------- */ |
| 582 | |
| 583 | static struct dvb_pll_desc *pll_list[] = { |
| 584 | [DVB_PLL_UNDEFINED] = NULL, |
| 585 | [DVB_PLL_THOMSON_DTT7579] = &dvb_pll_thomson_dtt7579, |
| 586 | [DVB_PLL_THOMSON_DTT759X] = &dvb_pll_thomson_dtt759x, |
| 587 | [DVB_PLL_THOMSON_DTT7610] = &dvb_pll_thomson_dtt7610, |
| 588 | [DVB_PLL_LG_Z201] = &dvb_pll_lg_z201, |
| 589 | [DVB_PLL_MICROTUNE_4042] = &dvb_pll_microtune_4042, |
| 590 | [DVB_PLL_THOMSON_DTT761X] = &dvb_pll_thomson_dtt761x, |
| 591 | [DVB_PLL_UNKNOWN_1] = &dvb_pll_unknown_1, |
| 592 | [DVB_PLL_TUA6010XS] = &dvb_pll_tua6010xs, |
| 593 | [DVB_PLL_ENV57H1XD5] = &dvb_pll_env57h1xd5, |
| 594 | [DVB_PLL_TUA6034] = &dvb_pll_tua6034, |
| 595 | [DVB_PLL_LG_TDVS_H06XF] = &dvb_pll_lg_tdvs_h06xf, |
| 596 | [DVB_PLL_TDA665X] = &dvb_pll_tda665x, |
| 597 | [DVB_PLL_FMD1216ME] = &dvb_pll_fmd1216me, |
| 598 | [DVB_PLL_TDED4] = &dvb_pll_tded4, |
| 599 | [DVB_PLL_TUV1236D] = &dvb_pll_tuv1236d, |
| 600 | [DVB_PLL_TDHU2] = &dvb_pll_tdhu2, |
| 601 | [DVB_PLL_SAMSUNG_TBMV] = &dvb_pll_samsung_tbmv, |
| 602 | [DVB_PLL_PHILIPS_SD1878_TDA8261] = &dvb_pll_philips_sd1878_tda8261, |
| 603 | [DVB_PLL_PHILIPS_TD1316] = &dvb_pll_philips_td1316, |
| 604 | [DVB_PLL_THOMSON_FE6600] = &dvb_pll_thomson_fe6600, |
| 605 | [DVB_PLL_OPERA1] = &dvb_pll_opera1, |
Michael Krufky | f1b2439 | 2006-10-13 22:18:01 -0300 | [diff] [blame] | 606 | [DVB_PLL_FCV1236D] = &dvb_pll_fcv1236d, |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 607 | }; |
| 608 | |
| 609 | /* ----------------------------------------------------------- */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 610 | /* code */ |
| 611 | |
Michael Krufky | 5d7802b | 2007-09-07 18:03:58 -0300 | [diff] [blame] | 612 | static int dvb_pll_configure(struct dvb_frontend *fe, u8 *buf, |
Trent Piepho | 4ce1567 | 2007-06-02 16:30:46 -0300 | [diff] [blame] | 613 | const struct dvb_frontend_parameters *params) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | { |
Michael Krufky | 5d7802b | 2007-09-07 18:03:58 -0300 | [diff] [blame] | 615 | struct dvb_pll_priv *priv = fe->tuner_priv; |
| 616 | struct dvb_pll_desc *desc = priv->pll_desc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | u32 div; |
| 618 | int i; |
| 619 | |
Michael Krufky | 77d6750 | 2007-05-05 12:05:39 -0300 | [diff] [blame] | 620 | if (params->frequency != 0 && (params->frequency < desc->min || |
| 621 | params->frequency > desc->max)) |
| 622 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 623 | |
| 624 | for (i = 0; i < desc->count; i++) { |
Michael Krufky | 77d6750 | 2007-05-05 12:05:39 -0300 | [diff] [blame] | 625 | if (params->frequency > desc->entries[i].limit) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 626 | continue; |
| 627 | break; |
| 628 | } |
Michael Krufky | 77d6750 | 2007-05-05 12:05:39 -0300 | [diff] [blame] | 629 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 630 | if (debug) |
Michael Krufky | 77d6750 | 2007-05-05 12:05:39 -0300 | [diff] [blame] | 631 | printk("pll: %s: freq=%d | i=%d/%d\n", desc->name, |
| 632 | params->frequency, i, desc->count); |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 633 | if (i == desc->count) |
| 634 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 635 | |
Michael Krufky | 77d6750 | 2007-05-05 12:05:39 -0300 | [diff] [blame] | 636 | div = (params->frequency + desc->iffreq + |
| 637 | desc->entries[i].stepsize/2) / desc->entries[i].stepsize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 638 | buf[0] = div >> 8; |
| 639 | buf[1] = div & 0xff; |
Michael Krufky | ab66b22 | 2006-01-23 17:11:11 -0200 | [diff] [blame] | 640 | buf[2] = desc->entries[i].config; |
| 641 | buf[3] = desc->entries[i].cb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 642 | |
Michael Krufky | 77d6750 | 2007-05-05 12:05:39 -0300 | [diff] [blame] | 643 | if (desc->set) |
Michael Krufky | 5d7802b | 2007-09-07 18:03:58 -0300 | [diff] [blame] | 644 | desc->set(fe, buf, params); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 645 | |
| 646 | if (debug) |
| 647 | printk("pll: %s: div=%d | buf=0x%02x,0x%02x,0x%02x,0x%02x\n", |
| 648 | desc->name, div, buf[0], buf[1], buf[2], buf[3]); |
| 649 | |
Michael Krufky | 89faeef | 2006-11-20 16:45:29 -0300 | [diff] [blame] | 650 | // calculate the frequency we set it to |
Trent Piepho | df78cb0 | 2007-03-19 02:24:04 -0300 | [diff] [blame] | 651 | return (div * desc->entries[i].stepsize) - desc->iffreq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 652 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 653 | |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 654 | static int dvb_pll_release(struct dvb_frontend *fe) |
| 655 | { |
Michael Krufky | 2213918 | 2006-11-19 19:49:11 -0300 | [diff] [blame] | 656 | kfree(fe->tuner_priv); |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 657 | fe->tuner_priv = NULL; |
| 658 | return 0; |
| 659 | } |
| 660 | |
| 661 | static int dvb_pll_sleep(struct dvb_frontend *fe) |
| 662 | { |
| 663 | struct dvb_pll_priv *priv = fe->tuner_priv; |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 664 | |
Chris Pascoe | c162dff | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 665 | if (priv->i2c == NULL) |
| 666 | return -EINVAL; |
| 667 | |
Trent Piepho | d519dcf | 2007-03-19 02:24:09 -0300 | [diff] [blame] | 668 | if (priv->pll_desc->sleepdata) { |
| 669 | struct i2c_msg msg = { .flags = 0, |
| 670 | .addr = priv->pll_i2c_address, |
| 671 | .buf = priv->pll_desc->sleepdata + 1, |
| 672 | .len = priv->pll_desc->sleepdata[0] }; |
| 673 | |
| 674 | int result; |
| 675 | |
| 676 | if (fe->ops.i2c_gate_ctrl) |
| 677 | fe->ops.i2c_gate_ctrl(fe, 1); |
| 678 | if ((result = i2c_transfer(priv->i2c, &msg, 1)) != 1) { |
| 679 | return result; |
| 680 | } |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 681 | return 0; |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 682 | } |
Trent Piepho | d519dcf | 2007-03-19 02:24:09 -0300 | [diff] [blame] | 683 | /* Shouldn't be called when initdata is NULL, maybe BUG()? */ |
| 684 | return -EINVAL; |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 685 | } |
| 686 | |
Michael Krufky | 47ae9ae | 2006-11-20 16:38:42 -0300 | [diff] [blame] | 687 | static int dvb_pll_set_params(struct dvb_frontend *fe, |
| 688 | struct dvb_frontend_parameters *params) |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 689 | { |
| 690 | struct dvb_pll_priv *priv = fe->tuner_priv; |
| 691 | u8 buf[4]; |
| 692 | struct i2c_msg msg = |
Michael Krufky | 47ae9ae | 2006-11-20 16:38:42 -0300 | [diff] [blame] | 693 | { .addr = priv->pll_i2c_address, .flags = 0, |
| 694 | .buf = buf, .len = sizeof(buf) }; |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 695 | int result; |
Michael Krufky | 77d6750 | 2007-05-05 12:05:39 -0300 | [diff] [blame] | 696 | u32 frequency = 0; |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 697 | |
| 698 | if (priv->i2c == NULL) |
| 699 | return -EINVAL; |
| 700 | |
Michael Krufky | 5d7802b | 2007-09-07 18:03:58 -0300 | [diff] [blame] | 701 | if ((result = dvb_pll_configure(fe, buf, params)) < 0) |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 702 | return result; |
Michael Krufky | 89faeef | 2006-11-20 16:45:29 -0300 | [diff] [blame] | 703 | else |
| 704 | frequency = result; |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 705 | |
Patrick Boettcher | dea7486 | 2006-05-14 05:01:31 -0300 | [diff] [blame] | 706 | if (fe->ops.i2c_gate_ctrl) |
| 707 | fe->ops.i2c_gate_ctrl(fe, 1); |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 708 | if ((result = i2c_transfer(priv->i2c, &msg, 1)) != 1) { |
| 709 | return result; |
| 710 | } |
| 711 | |
Michael Krufky | 89faeef | 2006-11-20 16:45:29 -0300 | [diff] [blame] | 712 | priv->frequency = frequency; |
Michael Krufky | 77d6750 | 2007-05-05 12:05:39 -0300 | [diff] [blame] | 713 | priv->bandwidth = (fe->ops.info.type == FE_OFDM) ? params->u.ofdm.bandwidth : 0; |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 714 | |
| 715 | return 0; |
| 716 | } |
| 717 | |
Michael Krufky | 47ae9ae | 2006-11-20 16:38:42 -0300 | [diff] [blame] | 718 | static int dvb_pll_calc_regs(struct dvb_frontend *fe, |
| 719 | struct dvb_frontend_parameters *params, |
| 720 | u8 *buf, int buf_len) |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 721 | { |
| 722 | struct dvb_pll_priv *priv = fe->tuner_priv; |
| 723 | int result; |
Michael Krufky | 77d6750 | 2007-05-05 12:05:39 -0300 | [diff] [blame] | 724 | u32 frequency = 0; |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 725 | |
| 726 | if (buf_len < 5) |
| 727 | return -EINVAL; |
| 728 | |
Michael Krufky | 5d7802b | 2007-09-07 18:03:58 -0300 | [diff] [blame] | 729 | if ((result = dvb_pll_configure(fe, buf+1, params)) < 0) |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 730 | return result; |
Michael Krufky | 89faeef | 2006-11-20 16:45:29 -0300 | [diff] [blame] | 731 | else |
| 732 | frequency = result; |
| 733 | |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 734 | buf[0] = priv->pll_i2c_address; |
| 735 | |
Michael Krufky | 89faeef | 2006-11-20 16:45:29 -0300 | [diff] [blame] | 736 | priv->frequency = frequency; |
Michael Krufky | 77d6750 | 2007-05-05 12:05:39 -0300 | [diff] [blame] | 737 | priv->bandwidth = (fe->ops.info.type == FE_OFDM) ? params->u.ofdm.bandwidth : 0; |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 738 | |
| 739 | return 5; |
| 740 | } |
| 741 | |
| 742 | static int dvb_pll_get_frequency(struct dvb_frontend *fe, u32 *frequency) |
| 743 | { |
| 744 | struct dvb_pll_priv *priv = fe->tuner_priv; |
| 745 | *frequency = priv->frequency; |
| 746 | return 0; |
| 747 | } |
| 748 | |
| 749 | static int dvb_pll_get_bandwidth(struct dvb_frontend *fe, u32 *bandwidth) |
| 750 | { |
| 751 | struct dvb_pll_priv *priv = fe->tuner_priv; |
| 752 | *bandwidth = priv->bandwidth; |
| 753 | return 0; |
| 754 | } |
| 755 | |
Trent Piepho | 26aed92 | 2007-04-27 12:31:29 -0300 | [diff] [blame] | 756 | static int dvb_pll_init(struct dvb_frontend *fe) |
| 757 | { |
| 758 | struct dvb_pll_priv *priv = fe->tuner_priv; |
| 759 | |
| 760 | if (priv->i2c == NULL) |
| 761 | return -EINVAL; |
| 762 | |
| 763 | if (priv->pll_desc->initdata) { |
| 764 | struct i2c_msg msg = { .flags = 0, |
| 765 | .addr = priv->pll_i2c_address, |
| 766 | .buf = priv->pll_desc->initdata + 1, |
| 767 | .len = priv->pll_desc->initdata[0] }; |
| 768 | |
| 769 | int result; |
| 770 | if (fe->ops.i2c_gate_ctrl) |
| 771 | fe->ops.i2c_gate_ctrl(fe, 1); |
| 772 | if ((result = i2c_transfer(priv->i2c, &msg, 1)) != 1) { |
| 773 | return result; |
| 774 | } |
| 775 | return 0; |
| 776 | } |
| 777 | /* Shouldn't be called when initdata is NULL, maybe BUG()? */ |
| 778 | return -EINVAL; |
| 779 | } |
| 780 | |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 781 | static struct dvb_tuner_ops dvb_pll_tuner_ops = { |
| 782 | .release = dvb_pll_release, |
| 783 | .sleep = dvb_pll_sleep, |
Trent Piepho | d519dcf | 2007-03-19 02:24:09 -0300 | [diff] [blame] | 784 | .init = dvb_pll_init, |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 785 | .set_params = dvb_pll_set_params, |
Andrew de Quincey | bd4956b | 2006-04-18 21:38:49 -0300 | [diff] [blame] | 786 | .calc_regs = dvb_pll_calc_regs, |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 787 | .get_frequency = dvb_pll_get_frequency, |
| 788 | .get_bandwidth = dvb_pll_get_bandwidth, |
| 789 | }; |
| 790 | |
Michael Krufky | 47ae9ae | 2006-11-20 16:38:42 -0300 | [diff] [blame] | 791 | struct dvb_frontend *dvb_pll_attach(struct dvb_frontend *fe, int pll_addr, |
| 792 | struct i2c_adapter *i2c, |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 793 | unsigned int pll_desc_id) |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 794 | { |
Andrew de Quincey | 061b623 | 2006-07-10 03:34:14 -0300 | [diff] [blame] | 795 | u8 b1 [] = { 0 }; |
Michael Krufky | 47ae9ae | 2006-11-20 16:38:42 -0300 | [diff] [blame] | 796 | struct i2c_msg msg = { .addr = pll_addr, .flags = I2C_M_RD, |
| 797 | .buf = b1, .len = 1 }; |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 798 | struct dvb_pll_priv *priv = NULL; |
Andrew de Quincey | 061b623 | 2006-07-10 03:34:14 -0300 | [diff] [blame] | 799 | int ret; |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 800 | struct dvb_pll_desc *desc; |
| 801 | |
Michael Krufky | 704e39b | 2007-09-07 18:27:43 -0300 | [diff] [blame] | 802 | if ((id[dvb_pll_devcount] > DVB_PLL_UNDEFINED) && |
| 803 | (id[dvb_pll_devcount] < ARRAY_SIZE(pll_list))) |
| 804 | pll_desc_id = id[dvb_pll_devcount]; |
| 805 | |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 806 | BUG_ON(pll_desc_id < 1 || pll_desc_id >= ARRAY_SIZE(pll_list)); |
| 807 | |
| 808 | desc = pll_list[pll_desc_id]; |
Andrew de Quincey | 061b623 | 2006-07-10 03:34:14 -0300 | [diff] [blame] | 809 | |
Andrew de Quincey | 55c05b6 | 2006-07-16 19:41:41 -0300 | [diff] [blame] | 810 | if (i2c != NULL) { |
| 811 | if (fe->ops.i2c_gate_ctrl) |
| 812 | fe->ops.i2c_gate_ctrl(fe, 1); |
Andrew de Quincey | 061b623 | 2006-07-10 03:34:14 -0300 | [diff] [blame] | 813 | |
Andrew de Quincey | 95faba2 | 2006-07-18 16:37:13 -0300 | [diff] [blame] | 814 | ret = i2c_transfer (i2c, &msg, 1); |
| 815 | if (ret != 1) |
Andrew de Quincey | 2bfe031 | 2006-08-08 09:10:08 -0300 | [diff] [blame] | 816 | return NULL; |
Andrew de Quincey | 55c05b6 | 2006-07-16 19:41:41 -0300 | [diff] [blame] | 817 | if (fe->ops.i2c_gate_ctrl) |
| 818 | fe->ops.i2c_gate_ctrl(fe, 0); |
| 819 | } |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 820 | |
| 821 | priv = kzalloc(sizeof(struct dvb_pll_priv), GFP_KERNEL); |
| 822 | if (priv == NULL) |
Andrew de Quincey | 2bfe031 | 2006-08-08 09:10:08 -0300 | [diff] [blame] | 823 | return NULL; |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 824 | |
| 825 | priv->pll_i2c_address = pll_addr; |
| 826 | priv->i2c = i2c; |
| 827 | priv->pll_desc = desc; |
Michael Krufky | a27e5e7 | 2007-09-07 18:11:15 -0300 | [diff] [blame] | 828 | priv->nr = dvb_pll_devcount++; |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 829 | |
Michael Krufky | 47ae9ae | 2006-11-20 16:38:42 -0300 | [diff] [blame] | 830 | memcpy(&fe->ops.tuner_ops, &dvb_pll_tuner_ops, |
| 831 | sizeof(struct dvb_tuner_ops)); |
| 832 | |
Trent Piepho | 982dd1b | 2007-04-27 12:31:27 -0300 | [diff] [blame] | 833 | strncpy(fe->ops.tuner_ops.info.name, desc->name, |
| 834 | sizeof(fe->ops.tuner_ops.info.name)); |
Patrick Boettcher | dea7486 | 2006-05-14 05:01:31 -0300 | [diff] [blame] | 835 | fe->ops.tuner_ops.info.frequency_min = desc->min; |
Trent Piepho | 0d84a62 | 2007-08-17 18:36:44 -0300 | [diff] [blame] | 836 | fe->ops.tuner_ops.info.frequency_max = desc->max; |
Trent Piepho | d519dcf | 2007-03-19 02:24:09 -0300 | [diff] [blame] | 837 | if (!desc->initdata) |
| 838 | fe->ops.tuner_ops.init = NULL; |
| 839 | if (!desc->sleepdata) |
| 840 | fe->ops.tuner_ops.sleep = NULL; |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 841 | |
| 842 | fe->tuner_priv = priv; |
Michael Krufky | a27e5e7 | 2007-09-07 18:11:15 -0300 | [diff] [blame] | 843 | |
Michael Krufky | 8528fa4 | 2007-09-09 05:08:30 -0300 | [diff] [blame] | 844 | if ((debug) || (id[priv->nr] == pll_desc_id)) { |
Michael Krufky | a27e5e7 | 2007-09-07 18:11:15 -0300 | [diff] [blame] | 845 | printk("dvb-pll[%d]", priv->nr); |
| 846 | if (i2c != NULL) |
| 847 | printk(" %d-%04x", i2c_adapter_id(i2c), pll_addr); |
Michael Krufky | 704e39b | 2007-09-07 18:27:43 -0300 | [diff] [blame] | 848 | printk(": id# %d (%s) attached, %s\n", pll_desc_id, desc->name, |
| 849 | id[priv->nr] == pll_desc_id ? |
| 850 | "insmod option" : "autodetected"); |
Michael Krufky | 4562fbe | 2007-09-09 05:16:34 -0300 | [diff] [blame^] | 851 | } |
| 852 | if ((debug) || (input[priv->nr] > 0)) { |
| 853 | printk("dvb-pll[%d]", priv->nr); |
| 854 | if (i2c != NULL) |
| 855 | printk(" %d-%04x", i2c_adapter_id(i2c), pll_addr); |
| 856 | printk(": tuner rf input will be "); |
| 857 | switch (input[priv->nr]) { |
| 858 | case 0: |
| 859 | printk("autoselected\n"); |
| 860 | break; |
| 861 | default: |
| 862 | printk("set to input %d (insmod option)\n", |
| 863 | input[priv->nr]); |
| 864 | } |
Michael Krufky | a27e5e7 | 2007-09-07 18:11:15 -0300 | [diff] [blame] | 865 | } |
| 866 | |
Andrew de Quincey | 2bfe031 | 2006-08-08 09:10:08 -0300 | [diff] [blame] | 867 | return fe; |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 868 | } |
| 869 | EXPORT_SYMBOL(dvb_pll_attach); |
| 870 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 871 | MODULE_DESCRIPTION("dvb pll library"); |
| 872 | MODULE_AUTHOR("Gerd Knorr"); |
| 873 | MODULE_LICENSE("GPL"); |