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 | * |
| 3 | * device driver for Conexant 2388x based TV cards |
| 4 | * MPEG Transport Stream (DVB) routines |
| 5 | * |
Chris Pascoe | fc40b26 | 2006-01-09 15:25:35 -0200 | [diff] [blame] | 6 | * (c) 2004, 2005 Chris Pascoe <c.pascoe@itee.uq.edu.au> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * (c) 2004 Gerd Knorr <kraxel@bytesex.org> [SuSE Labs] |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or modify |
| 10 | * it under the terms of the GNU General Public License as published by |
| 11 | * the Free Software Foundation; either version 2 of the License, or |
| 12 | * (at your option) any later version. |
| 13 | * |
| 14 | * This program is distributed in the hope that it will be useful, |
| 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 17 | * GNU General Public License for more details. |
| 18 | * |
| 19 | * You should have received a copy of the GNU General Public License |
| 20 | * along with this program; if not, write to the Free Software |
| 21 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
| 22 | */ |
| 23 | |
| 24 | #include <linux/module.h> |
| 25 | #include <linux/init.h> |
| 26 | #include <linux/device.h> |
| 27 | #include <linux/fs.h> |
| 28 | #include <linux/kthread.h> |
| 29 | #include <linux/file.h> |
| 30 | #include <linux/suspend.h> |
| 31 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #include "cx88.h" |
| 33 | #include "dvb-pll.h" |
Michael Krufky | 5e453dc | 2006-01-09 15:32:31 -0200 | [diff] [blame] | 34 | #include <media/v4l2-common.h> |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 35 | |
Andrew de Quincey | 1f10c7a | 2006-08-08 09:10:09 -0300 | [diff] [blame] | 36 | #include "mt352.h" |
| 37 | #include "mt352_priv.h" |
Trent Piepho | ecf854d | 2007-05-05 20:11:32 -0300 | [diff] [blame] | 38 | #include "cx88-vp3054-i2c.h" |
Andrew de Quincey | 1f10c7a | 2006-08-08 09:10:09 -0300 | [diff] [blame] | 39 | #include "zl10353.h" |
| 40 | #include "cx22702.h" |
| 41 | #include "or51132.h" |
| 42 | #include "lgdt330x.h" |
Steven Toth | 60464da | 2008-01-05 16:53:01 -0300 | [diff] [blame] | 43 | #include "s5h1409.h" |
| 44 | #include "xc5000.h" |
Andrew de Quincey | 1f10c7a | 2006-08-08 09:10:09 -0300 | [diff] [blame] | 45 | #include "nxt200x.h" |
| 46 | #include "cx24123.h" |
Andrew de Quincey | cd20ca9 | 2006-05-12 20:31:51 -0300 | [diff] [blame] | 47 | #include "isl6421.h" |
Steven Toth | 5c00fac | 2008-04-22 14:45:14 -0300 | [diff] [blame] | 48 | #include "tuner-xc2028-types.h" |
Michael Krufky | 0df31f8 | 2008-04-22 14:46:13 -0300 | [diff] [blame] | 49 | #include "tuner-simple.h" |
Michael Krufky | 827855d | 2008-04-22 14:46:16 -0300 | [diff] [blame] | 50 | #include "tda9887.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | |
| 52 | MODULE_DESCRIPTION("driver for cx2388x based DVB cards"); |
| 53 | MODULE_AUTHOR("Chris Pascoe <c.pascoe@itee.uq.edu.au>"); |
| 54 | MODULE_AUTHOR("Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]"); |
| 55 | MODULE_LICENSE("GPL"); |
| 56 | |
Douglas Schilling Landgraf | ff699e6 | 2008-04-22 14:41:48 -0300 | [diff] [blame] | 57 | static unsigned int debug; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | module_param(debug, int, 0644); |
| 59 | MODULE_PARM_DESC(debug,"enable debug messages [dvb]"); |
| 60 | |
Janne Grunau | 78e9200 | 2008-04-09 19:13:13 -0300 | [diff] [blame^] | 61 | DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr); |
| 62 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | #define dprintk(level,fmt, arg...) if (debug >= level) \ |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 64 | printk(KERN_DEBUG "%s/2-dvb: " fmt, core->name, ## arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | |
| 66 | /* ------------------------------------------------------------------ */ |
| 67 | |
| 68 | static int dvb_buf_setup(struct videobuf_queue *q, |
| 69 | unsigned int *count, unsigned int *size) |
| 70 | { |
| 71 | struct cx8802_dev *dev = q->priv_data; |
| 72 | |
| 73 | dev->ts_packet_size = 188 * 4; |
| 74 | dev->ts_packet_count = 32; |
| 75 | |
| 76 | *size = dev->ts_packet_size * dev->ts_packet_count; |
| 77 | *count = 32; |
| 78 | return 0; |
| 79 | } |
| 80 | |
Michael Krufky | 4a39055 | 2006-12-05 02:00:53 -0300 | [diff] [blame] | 81 | static int dvb_buf_prepare(struct videobuf_queue *q, |
| 82 | struct videobuf_buffer *vb, enum v4l2_field field) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | { |
| 84 | struct cx8802_dev *dev = q->priv_data; |
Mauro Carvalho Chehab | c7b0ac0 | 2006-03-10 12:29:15 -0300 | [diff] [blame] | 85 | return cx8802_buf_prepare(q, dev, (struct cx88_buffer*)vb,field); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | } |
| 87 | |
| 88 | static void dvb_buf_queue(struct videobuf_queue *q, struct videobuf_buffer *vb) |
| 89 | { |
| 90 | struct cx8802_dev *dev = q->priv_data; |
| 91 | cx8802_buf_queue(dev, (struct cx88_buffer*)vb); |
| 92 | } |
| 93 | |
Michael Krufky | 4a39055 | 2006-12-05 02:00:53 -0300 | [diff] [blame] | 94 | static void dvb_buf_release(struct videobuf_queue *q, |
| 95 | struct videobuf_buffer *vb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | { |
Mauro Carvalho Chehab | c7b0ac0 | 2006-03-10 12:29:15 -0300 | [diff] [blame] | 97 | cx88_free_buffer(q, (struct cx88_buffer*)vb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | } |
| 99 | |
Adrian Bunk | 408b664 | 2005-05-01 08:59:29 -0700 | [diff] [blame] | 100 | static struct videobuf_queue_ops dvb_qops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | .buf_setup = dvb_buf_setup, |
| 102 | .buf_prepare = dvb_buf_prepare, |
| 103 | .buf_queue = dvb_buf_queue, |
| 104 | .buf_release = dvb_buf_release, |
| 105 | }; |
| 106 | |
| 107 | /* ------------------------------------------------------------------ */ |
Michael Krufky | 22f3f17 | 2006-12-05 01:38:58 -0300 | [diff] [blame] | 108 | |
| 109 | static int cx88_dvb_bus_ctrl(struct dvb_frontend* fe, int acquire) |
| 110 | { |
| 111 | struct cx8802_dev *dev= fe->dvb->priv; |
| 112 | struct cx8802_driver *drv = NULL; |
| 113 | int ret = 0; |
| 114 | |
| 115 | drv = cx8802_get_driver(dev, CX88_MPEG_DVB); |
| 116 | if (drv) { |
Michael Krufky | 4a39055 | 2006-12-05 02:00:53 -0300 | [diff] [blame] | 117 | if (acquire) |
Michael Krufky | 22f3f17 | 2006-12-05 01:38:58 -0300 | [diff] [blame] | 118 | ret = drv->request_acquire(drv); |
| 119 | else |
| 120 | ret = drv->request_release(drv); |
| 121 | } |
| 122 | |
| 123 | return ret; |
| 124 | } |
| 125 | |
| 126 | /* ------------------------------------------------------------------ */ |
| 127 | |
Chris Pascoe | 3d7d027 | 2006-01-09 18:21:31 -0200 | [diff] [blame] | 128 | static int dvico_fusionhdtv_demod_init(struct dvb_frontend* fe) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | { |
| 130 | static u8 clock_config [] = { CLOCK_CTL, 0x38, 0x39 }; |
| 131 | static u8 reset [] = { RESET, 0x80 }; |
| 132 | static u8 adc_ctl_1_cfg [] = { ADC_CTL_1, 0x40 }; |
| 133 | static u8 agc_cfg [] = { AGC_TARGET, 0x24, 0x20 }; |
| 134 | static u8 gpp_ctl_cfg [] = { GPP_CTL, 0x33 }; |
| 135 | static u8 capt_range_cfg[] = { CAPT_RANGE, 0x32 }; |
| 136 | |
| 137 | mt352_write(fe, clock_config, sizeof(clock_config)); |
| 138 | udelay(200); |
| 139 | mt352_write(fe, reset, sizeof(reset)); |
| 140 | mt352_write(fe, adc_ctl_1_cfg, sizeof(adc_ctl_1_cfg)); |
| 141 | |
| 142 | mt352_write(fe, agc_cfg, sizeof(agc_cfg)); |
| 143 | mt352_write(fe, gpp_ctl_cfg, sizeof(gpp_ctl_cfg)); |
| 144 | mt352_write(fe, capt_range_cfg, sizeof(capt_range_cfg)); |
| 145 | return 0; |
| 146 | } |
| 147 | |
Chris Pascoe | 43eabb4 | 2006-01-09 18:21:28 -0200 | [diff] [blame] | 148 | static int dvico_dual_demod_init(struct dvb_frontend *fe) |
| 149 | { |
| 150 | static u8 clock_config [] = { CLOCK_CTL, 0x38, 0x38 }; |
| 151 | static u8 reset [] = { RESET, 0x80 }; |
| 152 | static u8 adc_ctl_1_cfg [] = { ADC_CTL_1, 0x40 }; |
| 153 | static u8 agc_cfg [] = { AGC_TARGET, 0x28, 0x20 }; |
| 154 | static u8 gpp_ctl_cfg [] = { GPP_CTL, 0x33 }; |
| 155 | static u8 capt_range_cfg[] = { CAPT_RANGE, 0x32 }; |
| 156 | |
| 157 | mt352_write(fe, clock_config, sizeof(clock_config)); |
| 158 | udelay(200); |
| 159 | mt352_write(fe, reset, sizeof(reset)); |
| 160 | mt352_write(fe, adc_ctl_1_cfg, sizeof(adc_ctl_1_cfg)); |
| 161 | |
| 162 | mt352_write(fe, agc_cfg, sizeof(agc_cfg)); |
| 163 | mt352_write(fe, gpp_ctl_cfg, sizeof(gpp_ctl_cfg)); |
| 164 | mt352_write(fe, capt_range_cfg, sizeof(capt_range_cfg)); |
| 165 | |
| 166 | return 0; |
| 167 | } |
| 168 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | static int dntv_live_dvbt_demod_init(struct dvb_frontend* fe) |
| 170 | { |
| 171 | static u8 clock_config [] = { 0x89, 0x38, 0x39 }; |
| 172 | static u8 reset [] = { 0x50, 0x80 }; |
| 173 | static u8 adc_ctl_1_cfg [] = { 0x8E, 0x40 }; |
| 174 | static u8 agc_cfg [] = { 0x67, 0x10, 0x23, 0x00, 0xFF, 0xFF, |
Mauro Carvalho Chehab | f2421ca | 2005-11-08 21:37:45 -0800 | [diff] [blame] | 175 | 0x00, 0xFF, 0x00, 0x40, 0x40 }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | static u8 dntv_extra[] = { 0xB5, 0x7A }; |
| 177 | static u8 capt_range_cfg[] = { 0x75, 0x32 }; |
| 178 | |
| 179 | mt352_write(fe, clock_config, sizeof(clock_config)); |
| 180 | udelay(2000); |
| 181 | mt352_write(fe, reset, sizeof(reset)); |
| 182 | mt352_write(fe, adc_ctl_1_cfg, sizeof(adc_ctl_1_cfg)); |
| 183 | |
| 184 | mt352_write(fe, agc_cfg, sizeof(agc_cfg)); |
| 185 | udelay(2000); |
| 186 | mt352_write(fe, dntv_extra, sizeof(dntv_extra)); |
| 187 | mt352_write(fe, capt_range_cfg, sizeof(capt_range_cfg)); |
| 188 | |
| 189 | return 0; |
| 190 | } |
| 191 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | static struct mt352_config dvico_fusionhdtv = { |
Michael Krufky | f7b54b1 | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 193 | .demod_address = 0x0f, |
Chris Pascoe | 3d7d027 | 2006-01-09 18:21:31 -0200 | [diff] [blame] | 194 | .demod_init = dvico_fusionhdtv_demod_init, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | }; |
| 196 | |
| 197 | static struct mt352_config dntv_live_dvbt_config = { |
| 198 | .demod_address = 0x0f, |
| 199 | .demod_init = dntv_live_dvbt_demod_init, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | }; |
Chris Pascoe | fc40b26 | 2006-01-09 15:25:35 -0200 | [diff] [blame] | 201 | |
Chris Pascoe | 43eabb4 | 2006-01-09 18:21:28 -0200 | [diff] [blame] | 202 | static struct mt352_config dvico_fusionhdtv_dual = { |
Michael Krufky | f7b54b1 | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 203 | .demod_address = 0x0f, |
Chris Pascoe | 43eabb4 | 2006-01-09 18:21:28 -0200 | [diff] [blame] | 204 | .demod_init = dvico_dual_demod_init, |
Chris Pascoe | 43eabb4 | 2006-01-09 18:21:28 -0200 | [diff] [blame] | 205 | }; |
| 206 | |
Trent Piepho | ecf854d | 2007-05-05 20:11:32 -0300 | [diff] [blame] | 207 | #if defined(CONFIG_VIDEO_CX88_VP3054) || (defined(CONFIG_VIDEO_CX88_VP3054_MODULE) && defined(MODULE)) |
Chris Pascoe | 3d7d027 | 2006-01-09 18:21:31 -0200 | [diff] [blame] | 208 | static int dntv_live_dvbt_pro_demod_init(struct dvb_frontend* fe) |
| 209 | { |
| 210 | static u8 clock_config [] = { 0x89, 0x38, 0x38 }; |
| 211 | static u8 reset [] = { 0x50, 0x80 }; |
| 212 | static u8 adc_ctl_1_cfg [] = { 0x8E, 0x40 }; |
| 213 | static u8 agc_cfg [] = { 0x67, 0x10, 0x20, 0x00, 0xFF, 0xFF, |
| 214 | 0x00, 0xFF, 0x00, 0x40, 0x40 }; |
| 215 | static u8 dntv_extra[] = { 0xB5, 0x7A }; |
| 216 | static u8 capt_range_cfg[] = { 0x75, 0x32 }; |
| 217 | |
| 218 | mt352_write(fe, clock_config, sizeof(clock_config)); |
| 219 | udelay(2000); |
| 220 | mt352_write(fe, reset, sizeof(reset)); |
| 221 | mt352_write(fe, adc_ctl_1_cfg, sizeof(adc_ctl_1_cfg)); |
| 222 | |
| 223 | mt352_write(fe, agc_cfg, sizeof(agc_cfg)); |
| 224 | udelay(2000); |
| 225 | mt352_write(fe, dntv_extra, sizeof(dntv_extra)); |
| 226 | mt352_write(fe, capt_range_cfg, sizeof(capt_range_cfg)); |
| 227 | |
| 228 | return 0; |
| 229 | } |
| 230 | |
Chris Pascoe | fc40b26 | 2006-01-09 15:25:35 -0200 | [diff] [blame] | 231 | static struct mt352_config dntv_live_dvbt_pro_config = { |
| 232 | .demod_address = 0x0f, |
| 233 | .no_tuner = 1, |
Chris Pascoe | 3d7d027 | 2006-01-09 18:21:31 -0200 | [diff] [blame] | 234 | .demod_init = dntv_live_dvbt_pro_demod_init, |
Chris Pascoe | fc40b26 | 2006-01-09 15:25:35 -0200 | [diff] [blame] | 235 | }; |
| 236 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | |
Chris Pascoe | 780dfef | 2006-02-28 08:34:59 -0300 | [diff] [blame] | 238 | static struct zl10353_config dvico_fusionhdtv_hybrid = { |
Michael Krufky | f7b54b1 | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 239 | .demod_address = 0x0f, |
Andrew de Quincey | f54376e | 2006-04-18 17:56:10 -0300 | [diff] [blame] | 240 | .no_tuner = 1, |
Chris Pascoe | 780dfef | 2006-02-28 08:34:59 -0300 | [diff] [blame] | 241 | }; |
| 242 | |
Chris Pascoe | b3fb91d | 2008-04-22 14:45:15 -0300 | [diff] [blame] | 243 | static struct zl10353_config dvico_fusionhdtv_xc3028 = { |
| 244 | .demod_address = 0x0f, |
| 245 | .if2 = 45600, |
| 246 | .no_tuner = 1, |
| 247 | }; |
| 248 | |
| 249 | static struct mt352_config dvico_fusionhdtv_mt352_xc3028 = { |
| 250 | .demod_address = 0x0f, |
| 251 | .if2 = 4560, |
| 252 | .no_tuner = 1, |
| 253 | .demod_init = dvico_fusionhdtv_demod_init, |
| 254 | }; |
| 255 | |
Chris Pascoe | 780dfef | 2006-02-28 08:34:59 -0300 | [diff] [blame] | 256 | static struct zl10353_config dvico_fusionhdtv_plus_v1_1 = { |
Michael Krufky | f7b54b1 | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 257 | .demod_address = 0x0f, |
Chris Pascoe | 780dfef | 2006-02-28 08:34:59 -0300 | [diff] [blame] | 258 | }; |
Chris Pascoe | 780dfef | 2006-02-28 08:34:59 -0300 | [diff] [blame] | 259 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | static struct cx22702_config connexant_refboard_config = { |
| 261 | .demod_address = 0x43, |
Patrick Boettcher | 38d84c3 | 2005-07-15 12:20:26 -0700 | [diff] [blame] | 262 | .output_mode = CX22702_SERIAL_OUTPUT, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | }; |
| 264 | |
Michael Krufky | ed35526 | 2006-12-05 01:34:56 -0300 | [diff] [blame] | 265 | static struct cx22702_config hauppauge_hvr_config = { |
Steven Toth | aa481a6 | 2006-09-14 15:41:13 -0300 | [diff] [blame] | 266 | .demod_address = 0x63, |
| 267 | .output_mode = CX22702_SERIAL_OUTPUT, |
| 268 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | |
Michael Krufky | 4a39055 | 2006-12-05 02:00:53 -0300 | [diff] [blame] | 270 | static int or51132_set_ts_param(struct dvb_frontend* fe, int is_punctured) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | { |
| 272 | struct cx8802_dev *dev= fe->dvb->priv; |
| 273 | dev->ts_gen_cntrl = is_punctured ? 0x04 : 0x00; |
| 274 | return 0; |
| 275 | } |
| 276 | |
Adrian Bunk | 408b664 | 2005-05-01 08:59:29 -0700 | [diff] [blame] | 277 | static struct or51132_config pchdtv_hd3000 = { |
Michael Krufky | f7b54b1 | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 278 | .demod_address = 0x15, |
| 279 | .set_ts_params = or51132_set_ts_param, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | |
Michael Krufky | 6ddcc91 | 2005-07-27 11:46:00 -0700 | [diff] [blame] | 282 | static int lgdt330x_pll_rf_set(struct dvb_frontend* fe, int index) |
Michael Krufky | 0ccef6d | 2005-07-27 11:45:55 -0700 | [diff] [blame] | 283 | { |
| 284 | struct cx8802_dev *dev= fe->dvb->priv; |
| 285 | struct cx88_core *core = dev->core; |
| 286 | |
Harvey Harrison | 32d83ef | 2008-04-08 23:20:00 -0300 | [diff] [blame] | 287 | dprintk(1, "%s: index = %d\n", __func__, index); |
Michael Krufky | 0ccef6d | 2005-07-27 11:45:55 -0700 | [diff] [blame] | 288 | if (index == 0) |
| 289 | cx_clear(MO_GP0_IO, 8); |
| 290 | else |
| 291 | cx_set(MO_GP0_IO, 8); |
| 292 | return 0; |
| 293 | } |
| 294 | |
Michael Krufky | 6ddcc91 | 2005-07-27 11:46:00 -0700 | [diff] [blame] | 295 | static int lgdt330x_set_ts_param(struct dvb_frontend* fe, int is_punctured) |
Michael Krufky | f179849 | 2005-07-07 17:58:39 -0700 | [diff] [blame] | 296 | { |
| 297 | struct cx8802_dev *dev= fe->dvb->priv; |
| 298 | if (is_punctured) |
| 299 | dev->ts_gen_cntrl |= 0x04; |
| 300 | else |
| 301 | dev->ts_gen_cntrl &= ~0x04; |
| 302 | return 0; |
| 303 | } |
| 304 | |
Michael Krufky | 6ddcc91 | 2005-07-27 11:46:00 -0700 | [diff] [blame] | 305 | static struct lgdt330x_config fusionhdtv_3_gold = { |
Michael Krufky | f7b54b1 | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 306 | .demod_address = 0x0e, |
| 307 | .demod_chip = LGDT3302, |
| 308 | .serial_mpeg = 0x04, /* TPSERIAL for 3302 in TOP_CONTROL */ |
| 309 | .set_ts_params = lgdt330x_set_ts_param, |
Michael Krufky | 0d723c0 | 2005-07-07 17:58:42 -0700 | [diff] [blame] | 310 | }; |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 311 | |
| 312 | static struct lgdt330x_config fusionhdtv_5_gold = { |
Michael Krufky | f7b54b1 | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 313 | .demod_address = 0x0e, |
| 314 | .demod_chip = LGDT3303, |
| 315 | .serial_mpeg = 0x40, /* TPSERIAL for 3303 in TOP_CONTROL */ |
| 316 | .set_ts_params = lgdt330x_set_ts_param, |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 317 | }; |
Rusty Scott | da215d2 | 2006-04-07 02:21:31 -0300 | [diff] [blame] | 318 | |
| 319 | static struct lgdt330x_config pchdtv_hd5500 = { |
Michael Krufky | f7b54b1 | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 320 | .demod_address = 0x59, |
| 321 | .demod_chip = LGDT3303, |
| 322 | .serial_mpeg = 0x40, /* TPSERIAL for 3303 in TOP_CONTROL */ |
| 323 | .set_ts_params = lgdt330x_set_ts_param, |
Rusty Scott | da215d2 | 2006-04-07 02:21:31 -0300 | [diff] [blame] | 324 | }; |
Michael Krufky | f179849 | 2005-07-07 17:58:39 -0700 | [diff] [blame] | 325 | |
Michael Krufky | 4a39055 | 2006-12-05 02:00:53 -0300 | [diff] [blame] | 326 | static int nxt200x_set_ts_param(struct dvb_frontend* fe, int is_punctured) |
Kirk Lapray | fde6d31 | 2005-11-08 21:38:18 -0800 | [diff] [blame] | 327 | { |
| 328 | struct cx8802_dev *dev= fe->dvb->priv; |
| 329 | dev->ts_gen_cntrl = is_punctured ? 0x04 : 0x00; |
| 330 | return 0; |
| 331 | } |
| 332 | |
| 333 | static struct nxt200x_config ati_hdtvwonder = { |
Michael Krufky | f7b54b1 | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 334 | .demod_address = 0x0a, |
Michael Krufky | f7b54b1 | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 335 | .set_ts_params = nxt200x_set_ts_param, |
Kirk Lapray | fde6d31 | 2005-11-08 21:38:18 -0800 | [diff] [blame] | 336 | }; |
Kirk Lapray | fde6d31 | 2005-11-08 21:38:18 -0800 | [diff] [blame] | 337 | |
Steven Toth | 0fa14aa | 2006-01-09 15:25:02 -0200 | [diff] [blame] | 338 | static int cx24123_set_ts_param(struct dvb_frontend* fe, |
| 339 | int is_punctured) |
| 340 | { |
| 341 | struct cx8802_dev *dev= fe->dvb->priv; |
Michael Krufky | f7b54b1 | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 342 | dev->ts_gen_cntrl = 0x02; |
Steven Toth | 0fa14aa | 2006-01-09 15:25:02 -0200 | [diff] [blame] | 343 | return 0; |
| 344 | } |
| 345 | |
Michael Krufky | f7b54b1 | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 346 | static int kworld_dvbs_100_set_voltage(struct dvb_frontend* fe, |
| 347 | fe_sec_voltage_t voltage) |
Vadim Catana | 0e0351e | 2006-01-09 15:25:02 -0200 | [diff] [blame] | 348 | { |
| 349 | struct cx8802_dev *dev= fe->dvb->priv; |
| 350 | struct cx88_core *core = dev->core; |
| 351 | |
Michael Krufky | 4a39055 | 2006-12-05 02:00:53 -0300 | [diff] [blame] | 352 | if (voltage == SEC_VOLTAGE_OFF) |
Michael Krufky | f7b54b1 | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 353 | cx_write(MO_GP0_IO, 0x000006fb); |
Michael Krufky | 4a39055 | 2006-12-05 02:00:53 -0300 | [diff] [blame] | 354 | else |
Andrew de Quincey | cd20ca9 | 2006-05-12 20:31:51 -0300 | [diff] [blame] | 355 | cx_write(MO_GP0_IO, 0x000006f9); |
Andrew de Quincey | cd20ca9 | 2006-05-12 20:31:51 -0300 | [diff] [blame] | 356 | |
| 357 | if (core->prev_set_voltage) |
| 358 | return core->prev_set_voltage(fe, voltage); |
| 359 | return 0; |
Vadim Catana | 0e0351e | 2006-01-09 15:25:02 -0200 | [diff] [blame] | 360 | } |
| 361 | |
Michael Krufky | f7b54b1 | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 362 | static int geniatech_dvbs_set_voltage(struct dvb_frontend *fe, |
| 363 | fe_sec_voltage_t voltage) |
Saqeb Akhter | c02a34f | 2006-06-29 20:29:33 -0300 | [diff] [blame] | 364 | { |
| 365 | struct cx8802_dev *dev= fe->dvb->priv; |
| 366 | struct cx88_core *core = dev->core; |
| 367 | |
| 368 | if (voltage == SEC_VOLTAGE_OFF) { |
| 369 | dprintk(1,"LNB Voltage OFF\n"); |
| 370 | cx_write(MO_GP0_IO, 0x0000efff); |
| 371 | } |
| 372 | |
| 373 | if (core->prev_set_voltage) |
| 374 | return core->prev_set_voltage(fe, voltage); |
| 375 | return 0; |
| 376 | } |
| 377 | |
Mauro Carvalho Chehab | c4a3ce1 | 2008-04-22 14:45:31 -0300 | [diff] [blame] | 378 | static int cx88_pci_nano_callback(void *ptr, int command, int arg) |
Steven Toth | 5c00fac | 2008-04-22 14:45:14 -0300 | [diff] [blame] | 379 | { |
| 380 | struct cx88_core *core = ptr; |
| 381 | |
| 382 | switch (command) { |
| 383 | case XC2028_TUNER_RESET: |
| 384 | /* Send the tuner in then out of reset */ |
Harvey Harrison | 32d83ef | 2008-04-08 23:20:00 -0300 | [diff] [blame] | 385 | dprintk(1, "%s: XC2028_TUNER_RESET %d\n", __func__, arg); |
Steven Toth | 5c00fac | 2008-04-22 14:45:14 -0300 | [diff] [blame] | 386 | |
| 387 | switch (core->boardnr) { |
| 388 | case CX88_BOARD_DVICO_FUSIONHDTV_5_PCI_NANO: |
| 389 | /* GPIO-4 xc3028 tuner */ |
| 390 | |
| 391 | cx_set(MO_GP0_IO, 0x00001000); |
| 392 | cx_clear(MO_GP0_IO, 0x00000010); |
| 393 | msleep(100); |
| 394 | cx_set(MO_GP0_IO, 0x00000010); |
| 395 | msleep(100); |
| 396 | break; |
| 397 | } |
| 398 | |
| 399 | break; |
| 400 | case XC2028_RESET_CLK: |
Harvey Harrison | 32d83ef | 2008-04-08 23:20:00 -0300 | [diff] [blame] | 401 | dprintk(1, "%s: XC2028_RESET_CLK %d\n", __func__, arg); |
Steven Toth | 5c00fac | 2008-04-22 14:45:14 -0300 | [diff] [blame] | 402 | break; |
| 403 | default: |
Harvey Harrison | 32d83ef | 2008-04-08 23:20:00 -0300 | [diff] [blame] | 404 | dprintk(1, "%s: unknown command %d, arg %d\n", __func__, |
Steven Toth | 5c00fac | 2008-04-22 14:45:14 -0300 | [diff] [blame] | 405 | command, arg); |
| 406 | return -EINVAL; |
| 407 | } |
| 408 | |
| 409 | return 0; |
| 410 | } |
| 411 | |
Saqeb Akhter | c02a34f | 2006-06-29 20:29:33 -0300 | [diff] [blame] | 412 | static struct cx24123_config geniatech_dvbs_config = { |
Michael Krufky | f7b54b1 | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 413 | .demod_address = 0x55, |
| 414 | .set_ts_params = cx24123_set_ts_param, |
Saqeb Akhter | c02a34f | 2006-06-29 20:29:33 -0300 | [diff] [blame] | 415 | }; |
| 416 | |
Steven Toth | 0fa14aa | 2006-01-09 15:25:02 -0200 | [diff] [blame] | 417 | static struct cx24123_config hauppauge_novas_config = { |
Michael Krufky | f7b54b1 | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 418 | .demod_address = 0x55, |
| 419 | .set_ts_params = cx24123_set_ts_param, |
Vadim Catana | 0e0351e | 2006-01-09 15:25:02 -0200 | [diff] [blame] | 420 | }; |
| 421 | |
| 422 | static struct cx24123_config kworld_dvbs_100_config = { |
Michael Krufky | f7b54b1 | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 423 | .demod_address = 0x15, |
| 424 | .set_ts_params = cx24123_set_ts_param, |
Yeasah Pell | ef76856 | 2006-09-26 12:30:14 -0300 | [diff] [blame] | 425 | .lnb_polarity = 1, |
Steven Toth | 0fa14aa | 2006-01-09 15:25:02 -0200 | [diff] [blame] | 426 | }; |
Steven Toth | 0fa14aa | 2006-01-09 15:25:02 -0200 | [diff] [blame] | 427 | |
Steven Toth | 60464da | 2008-01-05 16:53:01 -0300 | [diff] [blame] | 428 | static struct s5h1409_config pinnacle_pctv_hd_800i_config = { |
| 429 | .demod_address = 0x32 >> 1, |
| 430 | .output_mode = S5H1409_PARALLEL_OUTPUT, |
| 431 | .gpio = S5H1409_GPIO_ON, |
| 432 | .qam_if = 44000, |
| 433 | .inversion = S5H1409_INVERSION_OFF, |
| 434 | .status_mode = S5H1409_DEMODLOCKING, |
Steven Toth | 4917019 | 2008-01-15 21:57:14 -0300 | [diff] [blame] | 435 | .mpeg_timing = S5H1409_MPEGTIMING_NONCONTINOUS_NONINVERTING_CLOCK, |
Steven Toth | 60464da | 2008-01-05 16:53:01 -0300 | [diff] [blame] | 436 | }; |
| 437 | |
Steven Toth | 5c00fac | 2008-04-22 14:45:14 -0300 | [diff] [blame] | 438 | static struct s5h1409_config dvico_hdtv5_pci_nano_config = { |
| 439 | .demod_address = 0x32 >> 1, |
| 440 | .output_mode = S5H1409_SERIAL_OUTPUT, |
| 441 | .gpio = S5H1409_GPIO_OFF, |
| 442 | .inversion = S5H1409_INVERSION_OFF, |
| 443 | .status_mode = S5H1409_DEMODLOCKING, |
| 444 | .mpeg_timing = S5H1409_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK, |
| 445 | }; |
| 446 | |
Mauro Carvalho Chehab | 99e09ea | 2008-03-27 23:18:30 -0300 | [diff] [blame] | 447 | static struct s5h1409_config kworld_atsc_120_config = { |
| 448 | .demod_address = 0x32 >> 1, |
Mauro Carvalho Chehab | 99e09ea | 2008-03-27 23:18:30 -0300 | [diff] [blame] | 449 | .output_mode = S5H1409_SERIAL_OUTPUT, |
| 450 | .gpio = S5H1409_GPIO_OFF, |
| 451 | .inversion = S5H1409_INVERSION_OFF, |
| 452 | .status_mode = S5H1409_DEMODLOCKING, |
| 453 | .mpeg_timing = S5H1409_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK, |
| 454 | }; |
| 455 | |
Steven Toth | 60464da | 2008-01-05 16:53:01 -0300 | [diff] [blame] | 456 | static struct xc5000_config pinnacle_pctv_hd_800i_tuner_config = { |
| 457 | .i2c_address = 0x64, |
| 458 | .if_khz = 5380, |
Steven Toth | 60464da | 2008-01-05 16:53:01 -0300 | [diff] [blame] | 459 | .tuner_callback = cx88_tuner_callback, |
| 460 | }; |
| 461 | |
Mauro Carvalho Chehab | 9507901 | 2008-04-22 14:45:15 -0300 | [diff] [blame] | 462 | static struct zl10353_config cx88_geniatech_x8000_mt = { |
| 463 | .demod_address = (0x1e >> 1), |
| 464 | .no_tuner = 1, |
| 465 | }; |
| 466 | |
Mauro Carvalho Chehab | 23fb348 | 2008-04-22 14:45:30 -0300 | [diff] [blame] | 467 | static int attach_xc3028(u8 addr, struct cx8802_dev *dev) |
| 468 | { |
| 469 | struct dvb_frontend *fe; |
Mauro Carvalho Chehab | 99e09ea | 2008-03-27 23:18:30 -0300 | [diff] [blame] | 470 | struct xc2028_ctrl ctl; |
Mauro Carvalho Chehab | 23fb348 | 2008-04-22 14:45:30 -0300 | [diff] [blame] | 471 | struct xc2028_config cfg = { |
| 472 | .i2c_adap = &dev->core->i2c_adap, |
| 473 | .i2c_addr = addr, |
Mauro Carvalho Chehab | 99e09ea | 2008-03-27 23:18:30 -0300 | [diff] [blame] | 474 | .ctrl = &ctl, |
| 475 | .callback = cx88_tuner_callback, |
Mauro Carvalho Chehab | 23fb348 | 2008-04-22 14:45:30 -0300 | [diff] [blame] | 476 | }; |
| 477 | |
Mauro Carvalho Chehab | ddd5441 | 2008-04-22 14:45:46 -0300 | [diff] [blame] | 478 | if (!dev->dvb.frontend) { |
| 479 | printk(KERN_ERR "%s/2: dvb frontend not attached. " |
| 480 | "Can't attach xc3028\n", |
| 481 | dev->core->name); |
| 482 | return -EINVAL; |
| 483 | } |
| 484 | |
Mauro Carvalho Chehab | 99e09ea | 2008-03-27 23:18:30 -0300 | [diff] [blame] | 485 | /* |
| 486 | * Some xc3028 devices may be hidden by an I2C gate. This is known |
| 487 | * to happen with some s5h1409-based devices. |
| 488 | * Now that I2C gate is open, sets up xc3028 configuration |
| 489 | */ |
| 490 | cx88_setup_xc3028(dev->core, &ctl); |
| 491 | |
Mauro Carvalho Chehab | 23fb348 | 2008-04-22 14:45:30 -0300 | [diff] [blame] | 492 | fe = dvb_attach(xc2028_attach, dev->dvb.frontend, &cfg); |
| 493 | if (!fe) { |
| 494 | printk(KERN_ERR "%s/2: xc3028 attach failed\n", |
| 495 | dev->core->name); |
| 496 | dvb_frontend_detach(dev->dvb.frontend); |
| 497 | dvb_unregister_frontend(dev->dvb.frontend); |
| 498 | dev->dvb.frontend = NULL; |
| 499 | return -EINVAL; |
| 500 | } |
| 501 | |
| 502 | printk(KERN_INFO "%s/2: xc3028 attached\n", |
| 503 | dev->core->name); |
| 504 | |
| 505 | return 0; |
| 506 | } |
Mauro Carvalho Chehab | 9507901 | 2008-04-22 14:45:15 -0300 | [diff] [blame] | 507 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 508 | static int dvb_register(struct cx8802_dev *dev) |
| 509 | { |
| 510 | /* init struct videobuf_dvb */ |
| 511 | dev->dvb.name = dev->core->name; |
| 512 | dev->ts_gen_cntrl = 0x0c; |
| 513 | |
| 514 | /* init frontend */ |
Trent Piepho | 6a59d64 | 2007-08-15 14:41:57 -0300 | [diff] [blame] | 515 | switch (dev->core->boardnr) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | case CX88_BOARD_HAUPPAUGE_DVB_T1: |
Michael Krufky | f7b54b1 | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 517 | dev->dvb.frontend = dvb_attach(cx22702_attach, |
Michael Krufky | ed35526 | 2006-12-05 01:34:56 -0300 | [diff] [blame] | 518 | &connexant_refboard_config, |
Michael Krufky | f7b54b1 | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 519 | &dev->core->i2c_adap); |
Andrew de Quincey | f54376e | 2006-04-18 17:56:10 -0300 | [diff] [blame] | 520 | if (dev->dvb.frontend != NULL) { |
Andrew de Quincey | 2bfe031 | 2006-08-08 09:10:08 -0300 | [diff] [blame] | 521 | dvb_attach(dvb_pll_attach, dev->dvb.frontend, 0x61, |
Michael Krufky | f7b54b1 | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 522 | &dev->core->i2c_adap, |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 523 | DVB_PLL_THOMSON_DTT759X); |
Andrew de Quincey | f54376e | 2006-04-18 17:56:10 -0300 | [diff] [blame] | 524 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | break; |
Michael Krufky | e057ee1 | 2005-07-07 17:58:40 -0700 | [diff] [blame] | 526 | case CX88_BOARD_TERRATEC_CINERGY_1400_DVB_T1: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 527 | case CX88_BOARD_CONEXANT_DVB_T1: |
Manenti Marco | f39624f | 2006-01-09 15:32:45 -0200 | [diff] [blame] | 528 | case CX88_BOARD_KWORLD_DVB_T_CX22702: |
David Shirley | 2b5200a | 2005-11-08 21:37:22 -0800 | [diff] [blame] | 529 | case CX88_BOARD_WINFAST_DTV1000: |
Michael Krufky | f7b54b1 | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 530 | dev->dvb.frontend = dvb_attach(cx22702_attach, |
| 531 | &connexant_refboard_config, |
| 532 | &dev->core->i2c_adap); |
Andrew de Quincey | f54376e | 2006-04-18 17:56:10 -0300 | [diff] [blame] | 533 | if (dev->dvb.frontend != NULL) { |
Andrew de Quincey | 2bfe031 | 2006-08-08 09:10:08 -0300 | [diff] [blame] | 534 | dvb_attach(dvb_pll_attach, dev->dvb.frontend, 0x60, |
Michael Krufky | f7b54b1 | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 535 | &dev->core->i2c_adap, |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 536 | DVB_PLL_THOMSON_DTT7579); |
Andrew de Quincey | f54376e | 2006-04-18 17:56:10 -0300 | [diff] [blame] | 537 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | break; |
Malcolm Valentine | 4bd6e9d | 2006-05-29 13:51:59 -0300 | [diff] [blame] | 539 | case CX88_BOARD_WINFAST_DTV2000H: |
Steven Toth | 611900c | 2006-01-09 15:25:12 -0200 | [diff] [blame] | 540 | case CX88_BOARD_HAUPPAUGE_HVR1100: |
| 541 | case CX88_BOARD_HAUPPAUGE_HVR1100LP: |
Trent Piepho | a5a2ecf | 2007-03-09 15:07:07 -0300 | [diff] [blame] | 542 | case CX88_BOARD_HAUPPAUGE_HVR1300: |
| 543 | case CX88_BOARD_HAUPPAUGE_HVR3000: |
Michael Krufky | f7b54b1 | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 544 | dev->dvb.frontend = dvb_attach(cx22702_attach, |
Michael Krufky | ed35526 | 2006-12-05 01:34:56 -0300 | [diff] [blame] | 545 | &hauppauge_hvr_config, |
Michael Krufky | f7b54b1 | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 546 | &dev->core->i2c_adap); |
Andrew de Quincey | f54376e | 2006-04-18 17:56:10 -0300 | [diff] [blame] | 547 | if (dev->dvb.frontend != NULL) { |
Michael Krufky | cb89cd3 | 2008-04-22 14:46:16 -0300 | [diff] [blame] | 548 | dvb_attach(simple_tuner_attach, dev->dvb.frontend, |
| 549 | &dev->core->i2c_adap, 0x61, |
| 550 | TUNER_PHILIPS_FMD1216ME_MK3); |
Andrew de Quincey | f54376e | 2006-04-18 17:56:10 -0300 | [diff] [blame] | 551 | } |
Steven Toth | 611900c | 2006-01-09 15:25:12 -0200 | [diff] [blame] | 552 | break; |
Chris Pascoe | 780dfef | 2006-02-28 08:34:59 -0300 | [diff] [blame] | 553 | case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_PLUS: |
Michael Krufky | f7b54b1 | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 554 | dev->dvb.frontend = dvb_attach(mt352_attach, |
| 555 | &dvico_fusionhdtv, |
| 556 | &dev->core->i2c_adap); |
Andrew de Quincey | f54376e | 2006-04-18 17:56:10 -0300 | [diff] [blame] | 557 | if (dev->dvb.frontend != NULL) { |
Andrew de Quincey | 2bfe031 | 2006-08-08 09:10:08 -0300 | [diff] [blame] | 558 | dvb_attach(dvb_pll_attach, dev->dvb.frontend, 0x60, |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 559 | NULL, DVB_PLL_THOMSON_DTT7579); |
Chris Pascoe | 780dfef | 2006-02-28 08:34:59 -0300 | [diff] [blame] | 560 | break; |
Andrew de Quincey | f54376e | 2006-04-18 17:56:10 -0300 | [diff] [blame] | 561 | } |
Chris Pascoe | 780dfef | 2006-02-28 08:34:59 -0300 | [diff] [blame] | 562 | /* ZL10353 replaces MT352 on later cards */ |
Michael Krufky | f7b54b1 | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 563 | dev->dvb.frontend = dvb_attach(zl10353_attach, |
| 564 | &dvico_fusionhdtv_plus_v1_1, |
| 565 | &dev->core->i2c_adap); |
Andrew de Quincey | f54376e | 2006-04-18 17:56:10 -0300 | [diff] [blame] | 566 | if (dev->dvb.frontend != NULL) { |
Andrew de Quincey | 2bfe031 | 2006-08-08 09:10:08 -0300 | [diff] [blame] | 567 | dvb_attach(dvb_pll_attach, dev->dvb.frontend, 0x60, |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 568 | NULL, DVB_PLL_THOMSON_DTT7579); |
Andrew de Quincey | f54376e | 2006-04-18 17:56:10 -0300 | [diff] [blame] | 569 | } |
Chris Pascoe | 780dfef | 2006-02-28 08:34:59 -0300 | [diff] [blame] | 570 | break; |
Michael Krufky | c2af3cd | 2006-06-12 14:06:22 -0300 | [diff] [blame] | 571 | case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_DUAL: |
Michael Krufky | c2af3cd | 2006-06-12 14:06:22 -0300 | [diff] [blame] | 572 | /* The tin box says DEE1601, but it seems to be DTT7579 |
| 573 | * compatible, with a slightly different MT352 AGC gain. */ |
Michael Krufky | f7b54b1 | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 574 | dev->dvb.frontend = dvb_attach(mt352_attach, |
| 575 | &dvico_fusionhdtv_dual, |
| 576 | &dev->core->i2c_adap); |
Michael Krufky | c2af3cd | 2006-06-12 14:06:22 -0300 | [diff] [blame] | 577 | if (dev->dvb.frontend != NULL) { |
Andrew de Quincey | 2bfe031 | 2006-08-08 09:10:08 -0300 | [diff] [blame] | 578 | dvb_attach(dvb_pll_attach, dev->dvb.frontend, 0x61, |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 579 | NULL, DVB_PLL_THOMSON_DTT7579); |
Michael Krufky | c2af3cd | 2006-06-12 14:06:22 -0300 | [diff] [blame] | 580 | break; |
| 581 | } |
Michael Krufky | c2af3cd | 2006-06-12 14:06:22 -0300 | [diff] [blame] | 582 | /* ZL10353 replaces MT352 on later cards */ |
Michael Krufky | f7b54b1 | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 583 | dev->dvb.frontend = dvb_attach(zl10353_attach, |
| 584 | &dvico_fusionhdtv_plus_v1_1, |
| 585 | &dev->core->i2c_adap); |
Michael Krufky | c2af3cd | 2006-06-12 14:06:22 -0300 | [diff] [blame] | 586 | if (dev->dvb.frontend != NULL) { |
Andrew de Quincey | 2bfe031 | 2006-08-08 09:10:08 -0300 | [diff] [blame] | 587 | dvb_attach(dvb_pll_attach, dev->dvb.frontend, 0x61, |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 588 | NULL, DVB_PLL_THOMSON_DTT7579); |
Michael Krufky | c2af3cd | 2006-06-12 14:06:22 -0300 | [diff] [blame] | 589 | } |
Michael Krufky | c2af3cd | 2006-06-12 14:06:22 -0300 | [diff] [blame] | 590 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 591 | case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T1: |
Michael Krufky | f7b54b1 | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 592 | dev->dvb.frontend = dvb_attach(mt352_attach, |
| 593 | &dvico_fusionhdtv, |
| 594 | &dev->core->i2c_adap); |
Andrew de Quincey | f54376e | 2006-04-18 17:56:10 -0300 | [diff] [blame] | 595 | if (dev->dvb.frontend != NULL) { |
Andrew de Quincey | 2bfe031 | 2006-08-08 09:10:08 -0300 | [diff] [blame] | 596 | dvb_attach(dvb_pll_attach, dev->dvb.frontend, 0x61, |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 597 | NULL, DVB_PLL_LG_Z201); |
Andrew de Quincey | f54376e | 2006-04-18 17:56:10 -0300 | [diff] [blame] | 598 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 600 | case CX88_BOARD_KWORLD_DVB_T: |
| 601 | case CX88_BOARD_DNTV_LIVE_DVB_T: |
Mauro Carvalho Chehab | a82decf | 2005-07-07 17:58:36 -0700 | [diff] [blame] | 602 | case CX88_BOARD_ADSTECH_DVB_T_PCI: |
Michael Krufky | f7b54b1 | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 603 | dev->dvb.frontend = dvb_attach(mt352_attach, |
| 604 | &dntv_live_dvbt_config, |
| 605 | &dev->core->i2c_adap); |
Andrew de Quincey | f54376e | 2006-04-18 17:56:10 -0300 | [diff] [blame] | 606 | if (dev->dvb.frontend != NULL) { |
Andrew de Quincey | 2bfe031 | 2006-08-08 09:10:08 -0300 | [diff] [blame] | 607 | dvb_attach(dvb_pll_attach, dev->dvb.frontend, 0x61, |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 608 | NULL, DVB_PLL_UNKNOWN_1); |
Andrew de Quincey | f54376e | 2006-04-18 17:56:10 -0300 | [diff] [blame] | 609 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 610 | break; |
Chris Pascoe | fc40b26 | 2006-01-09 15:25:35 -0200 | [diff] [blame] | 611 | case CX88_BOARD_DNTV_LIVE_DVB_T_PRO: |
Trent Piepho | ecf854d | 2007-05-05 20:11:32 -0300 | [diff] [blame] | 612 | #if defined(CONFIG_VIDEO_CX88_VP3054) || (defined(CONFIG_VIDEO_CX88_VP3054_MODULE) && defined(MODULE)) |
Trent Piepho | f0ad909 | 2007-10-14 02:52:16 -0300 | [diff] [blame] | 613 | /* MT352 is on a secondary I2C bus made from some GPIO lines */ |
Andrew de Quincey | 2bfe031 | 2006-08-08 09:10:08 -0300 | [diff] [blame] | 614 | dev->dvb.frontend = dvb_attach(mt352_attach, &dntv_live_dvbt_pro_config, |
Trent Piepho | f0ad909 | 2007-10-14 02:52:16 -0300 | [diff] [blame] | 615 | &dev->vp3054->adap); |
Andrew de Quincey | f54376e | 2006-04-18 17:56:10 -0300 | [diff] [blame] | 616 | if (dev->dvb.frontend != NULL) { |
Michael Krufky | cb89cd3 | 2008-04-22 14:46:16 -0300 | [diff] [blame] | 617 | dvb_attach(simple_tuner_attach, dev->dvb.frontend, |
| 618 | &dev->core->i2c_adap, 0x61, |
| 619 | TUNER_PHILIPS_FMD1216ME_MK3); |
Andrew de Quincey | f54376e | 2006-04-18 17:56:10 -0300 | [diff] [blame] | 620 | } |
Chris Pascoe | fc40b26 | 2006-01-09 15:25:35 -0200 | [diff] [blame] | 621 | #else |
Trent Piepho | 5772f81 | 2007-08-15 14:41:59 -0300 | [diff] [blame] | 622 | printk(KERN_ERR "%s/2: built without vp3054 support\n", dev->core->name); |
Chris Pascoe | fc40b26 | 2006-01-09 15:25:35 -0200 | [diff] [blame] | 623 | #endif |
| 624 | break; |
Chris Pascoe | 780dfef | 2006-02-28 08:34:59 -0300 | [diff] [blame] | 625 | case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_HYBRID: |
Michael Krufky | f7b54b1 | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 626 | dev->dvb.frontend = dvb_attach(zl10353_attach, |
| 627 | &dvico_fusionhdtv_hybrid, |
| 628 | &dev->core->i2c_adap); |
Andrew de Quincey | f54376e | 2006-04-18 17:56:10 -0300 | [diff] [blame] | 629 | if (dev->dvb.frontend != NULL) { |
Michael Krufky | 0efad81 | 2008-04-22 14:46:13 -0300 | [diff] [blame] | 630 | dvb_attach(simple_tuner_attach, dev->dvb.frontend, |
| 631 | &dev->core->i2c_adap, 0x61, |
| 632 | TUNER_THOMSON_FE6600); |
Andrew de Quincey | f54376e | 2006-04-18 17:56:10 -0300 | [diff] [blame] | 633 | } |
Chris Pascoe | 780dfef | 2006-02-28 08:34:59 -0300 | [diff] [blame] | 634 | break; |
Chris Pascoe | b3fb91d | 2008-04-22 14:45:15 -0300 | [diff] [blame] | 635 | case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_PRO: |
| 636 | dev->dvb.frontend = dvb_attach(zl10353_attach, |
| 637 | &dvico_fusionhdtv_xc3028, |
| 638 | &dev->core->i2c_adap); |
| 639 | if (dev->dvb.frontend == NULL) |
| 640 | dev->dvb.frontend = dvb_attach(mt352_attach, |
| 641 | &dvico_fusionhdtv_mt352_xc3028, |
| 642 | &dev->core->i2c_adap); |
Chris Pascoe | 8765561 | 2008-04-22 14:45:15 -0300 | [diff] [blame] | 643 | /* |
| 644 | * On this board, the demod provides the I2C bus pullup. |
| 645 | * We must not permit gate_ctrl to be performed, or |
| 646 | * the xc3028 cannot communicate on the bus. |
| 647 | */ |
| 648 | if (dev->dvb.frontend) |
| 649 | dev->dvb.frontend->ops.i2c_gate_ctrl = NULL; |
Mauro Carvalho Chehab | 23fb348 | 2008-04-22 14:45:30 -0300 | [diff] [blame] | 650 | if (attach_xc3028(0x61, dev) < 0) |
| 651 | return -EINVAL; |
Chris Pascoe | b3fb91d | 2008-04-22 14:45:15 -0300 | [diff] [blame] | 652 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 653 | case CX88_BOARD_PCHDTV_HD3000: |
Michael Krufky | 4a39055 | 2006-12-05 02:00:53 -0300 | [diff] [blame] | 654 | dev->dvb.frontend = dvb_attach(or51132_attach, &pchdtv_hd3000, |
Michael Krufky | f7b54b1 | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 655 | &dev->core->i2c_adap); |
Andrew de Quincey | f54376e | 2006-04-18 17:56:10 -0300 | [diff] [blame] | 656 | if (dev->dvb.frontend != NULL) { |
Michael Krufky | 0df31f8 | 2008-04-22 14:46:13 -0300 | [diff] [blame] | 657 | dvb_attach(simple_tuner_attach, dev->dvb.frontend, |
| 658 | &dev->core->i2c_adap, 0x61, |
| 659 | TUNER_THOMSON_DTT761X); |
Andrew de Quincey | f54376e | 2006-04-18 17:56:10 -0300 | [diff] [blame] | 660 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 661 | break; |
Michael Krufky | f179849 | 2005-07-07 17:58:39 -0700 | [diff] [blame] | 662 | case CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_Q: |
| 663 | dev->ts_gen_cntrl = 0x08; |
| 664 | { |
| 665 | /* Do a hardware reset of chip before using it. */ |
| 666 | struct cx88_core *core = dev->core; |
| 667 | |
| 668 | cx_clear(MO_GP0_IO, 1); |
| 669 | mdelay(100); |
Michael Krufky | 0ccef6d | 2005-07-27 11:45:55 -0700 | [diff] [blame] | 670 | cx_set(MO_GP0_IO, 1); |
Michael Krufky | f179849 | 2005-07-07 17:58:39 -0700 | [diff] [blame] | 671 | mdelay(200); |
Michael Krufky | 0ccef6d | 2005-07-27 11:45:55 -0700 | [diff] [blame] | 672 | |
| 673 | /* Select RF connector callback */ |
Michael Krufky | 6ddcc91 | 2005-07-27 11:46:00 -0700 | [diff] [blame] | 674 | fusionhdtv_3_gold.pll_rf_set = lgdt330x_pll_rf_set; |
Michael Krufky | f7b54b1 | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 675 | dev->dvb.frontend = dvb_attach(lgdt330x_attach, |
| 676 | &fusionhdtv_3_gold, |
| 677 | &dev->core->i2c_adap); |
Andrew de Quincey | f54376e | 2006-04-18 17:56:10 -0300 | [diff] [blame] | 678 | if (dev->dvb.frontend != NULL) { |
Michael Krufky | 7e35c9f | 2008-04-22 14:46:13 -0300 | [diff] [blame] | 679 | dvb_attach(simple_tuner_attach, dev->dvb.frontend, |
| 680 | &dev->core->i2c_adap, 0x61, |
| 681 | TUNER_MICROTUNE_4042FI5); |
Andrew de Quincey | f54376e | 2006-04-18 17:56:10 -0300 | [diff] [blame] | 682 | } |
Michael Krufky | f179849 | 2005-07-07 17:58:39 -0700 | [diff] [blame] | 683 | } |
| 684 | break; |
Michael Krufky | 0d723c0 | 2005-07-07 17:58:42 -0700 | [diff] [blame] | 685 | case CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_T: |
| 686 | dev->ts_gen_cntrl = 0x08; |
| 687 | { |
| 688 | /* Do a hardware reset of chip before using it. */ |
| 689 | struct cx88_core *core = dev->core; |
| 690 | |
| 691 | cx_clear(MO_GP0_IO, 1); |
| 692 | mdelay(100); |
Michael Krufky | d975872 | 2005-07-27 11:45:56 -0700 | [diff] [blame] | 693 | cx_set(MO_GP0_IO, 9); |
Michael Krufky | 0d723c0 | 2005-07-07 17:58:42 -0700 | [diff] [blame] | 694 | mdelay(200); |
Michael Krufky | f7b54b1 | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 695 | dev->dvb.frontend = dvb_attach(lgdt330x_attach, |
| 696 | &fusionhdtv_3_gold, |
| 697 | &dev->core->i2c_adap); |
Andrew de Quincey | f54376e | 2006-04-18 17:56:10 -0300 | [diff] [blame] | 698 | if (dev->dvb.frontend != NULL) { |
Michael Krufky | 0df31f8 | 2008-04-22 14:46:13 -0300 | [diff] [blame] | 699 | dvb_attach(simple_tuner_attach, dev->dvb.frontend, |
| 700 | &dev->core->i2c_adap, 0x61, |
| 701 | TUNER_THOMSON_DTT761X); |
Andrew de Quincey | f54376e | 2006-04-18 17:56:10 -0300 | [diff] [blame] | 702 | } |
Michael Krufky | 0d723c0 | 2005-07-07 17:58:42 -0700 | [diff] [blame] | 703 | } |
| 704 | break; |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 705 | case CX88_BOARD_DVICO_FUSIONHDTV_5_GOLD: |
| 706 | dev->ts_gen_cntrl = 0x08; |
| 707 | { |
| 708 | /* Do a hardware reset of chip before using it. */ |
| 709 | struct cx88_core *core = dev->core; |
| 710 | |
| 711 | cx_clear(MO_GP0_IO, 1); |
| 712 | mdelay(100); |
| 713 | cx_set(MO_GP0_IO, 1); |
| 714 | mdelay(200); |
Michael Krufky | f7b54b1 | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 715 | dev->dvb.frontend = dvb_attach(lgdt330x_attach, |
| 716 | &fusionhdtv_5_gold, |
| 717 | &dev->core->i2c_adap); |
Andrew de Quincey | f54376e | 2006-04-18 17:56:10 -0300 | [diff] [blame] | 718 | if (dev->dvb.frontend != NULL) { |
Michael Krufky | 827855d | 2008-04-22 14:46:16 -0300 | [diff] [blame] | 719 | dvb_attach(simple_tuner_attach, dev->dvb.frontend, |
| 720 | &dev->core->i2c_adap, 0x61, |
| 721 | TUNER_LG_TDVS_H06XF); |
| 722 | dvb_attach(tda9887_attach, dev->dvb.frontend, |
| 723 | &dev->core->i2c_adap, 0x43); |
Andrew de Quincey | f54376e | 2006-04-18 17:56:10 -0300 | [diff] [blame] | 724 | } |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 725 | } |
| 726 | break; |
Rusty Scott | da215d2 | 2006-04-07 02:21:31 -0300 | [diff] [blame] | 727 | case CX88_BOARD_PCHDTV_HD5500: |
| 728 | dev->ts_gen_cntrl = 0x08; |
| 729 | { |
| 730 | /* Do a hardware reset of chip before using it. */ |
| 731 | struct cx88_core *core = dev->core; |
| 732 | |
| 733 | cx_clear(MO_GP0_IO, 1); |
| 734 | mdelay(100); |
| 735 | cx_set(MO_GP0_IO, 1); |
| 736 | mdelay(200); |
Michael Krufky | f7b54b1 | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 737 | dev->dvb.frontend = dvb_attach(lgdt330x_attach, |
| 738 | &pchdtv_hd5500, |
| 739 | &dev->core->i2c_adap); |
Andrew de Quincey | f54376e | 2006-04-18 17:56:10 -0300 | [diff] [blame] | 740 | if (dev->dvb.frontend != NULL) { |
Michael Krufky | 827855d | 2008-04-22 14:46:16 -0300 | [diff] [blame] | 741 | dvb_attach(simple_tuner_attach, dev->dvb.frontend, |
| 742 | &dev->core->i2c_adap, 0x61, |
| 743 | TUNER_LG_TDVS_H06XF); |
| 744 | dvb_attach(tda9887_attach, dev->dvb.frontend, |
| 745 | &dev->core->i2c_adap, 0x43); |
Andrew de Quincey | f54376e | 2006-04-18 17:56:10 -0300 | [diff] [blame] | 746 | } |
Rusty Scott | da215d2 | 2006-04-07 02:21:31 -0300 | [diff] [blame] | 747 | } |
| 748 | break; |
Kirk Lapray | fde6d31 | 2005-11-08 21:38:18 -0800 | [diff] [blame] | 749 | case CX88_BOARD_ATI_HDTVWONDER: |
Michael Krufky | f7b54b1 | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 750 | dev->dvb.frontend = dvb_attach(nxt200x_attach, |
| 751 | &ati_hdtvwonder, |
| 752 | &dev->core->i2c_adap); |
Andrew de Quincey | f54376e | 2006-04-18 17:56:10 -0300 | [diff] [blame] | 753 | if (dev->dvb.frontend != NULL) { |
Michael Krufky | 62ff817 | 2008-04-22 14:46:17 -0300 | [diff] [blame] | 754 | dvb_attach(simple_tuner_attach, dev->dvb.frontend, |
| 755 | &dev->core->i2c_adap, 0x61, |
| 756 | TUNER_PHILIPS_TUV1236D); |
Andrew de Quincey | f54376e | 2006-04-18 17:56:10 -0300 | [diff] [blame] | 757 | } |
Kirk Lapray | fde6d31 | 2005-11-08 21:38:18 -0800 | [diff] [blame] | 758 | break; |
Steven Toth | 0fa14aa | 2006-01-09 15:25:02 -0200 | [diff] [blame] | 759 | case CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1: |
| 760 | case CX88_BOARD_HAUPPAUGE_NOVASE2_S1: |
Michael Krufky | f7b54b1 | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 761 | dev->dvb.frontend = dvb_attach(cx24123_attach, |
| 762 | &hauppauge_novas_config, |
| 763 | &dev->core->i2c_adap); |
Andrew de Quincey | cd20ca9 | 2006-05-12 20:31:51 -0300 | [diff] [blame] | 764 | if (dev->dvb.frontend) { |
Michael Krufky | f7b54b1 | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 765 | dvb_attach(isl6421_attach, dev->dvb.frontend, |
| 766 | &dev->core->i2c_adap, 0x08, 0x00, 0x00); |
Andrew de Quincey | cd20ca9 | 2006-05-12 20:31:51 -0300 | [diff] [blame] | 767 | } |
Steven Toth | 0fa14aa | 2006-01-09 15:25:02 -0200 | [diff] [blame] | 768 | break; |
Vadim Catana | 0e0351e | 2006-01-09 15:25:02 -0200 | [diff] [blame] | 769 | case CX88_BOARD_KWORLD_DVBS_100: |
Michael Krufky | f7b54b1 | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 770 | dev->dvb.frontend = dvb_attach(cx24123_attach, |
| 771 | &kworld_dvbs_100_config, |
| 772 | &dev->core->i2c_adap); |
Andrew de Quincey | cd20ca9 | 2006-05-12 20:31:51 -0300 | [diff] [blame] | 773 | if (dev->dvb.frontend) { |
Patrick Boettcher | dea7486 | 2006-05-14 05:01:31 -0300 | [diff] [blame] | 774 | dev->core->prev_set_voltage = dev->dvb.frontend->ops.set_voltage; |
| 775 | dev->dvb.frontend->ops.set_voltage = kworld_dvbs_100_set_voltage; |
Andrew de Quincey | cd20ca9 | 2006-05-12 20:31:51 -0300 | [diff] [blame] | 776 | } |
Vadim Catana | 0e0351e | 2006-01-09 15:25:02 -0200 | [diff] [blame] | 777 | break; |
Saqeb Akhter | c02a34f | 2006-06-29 20:29:33 -0300 | [diff] [blame] | 778 | case CX88_BOARD_GENIATECH_DVBS: |
Michael Krufky | f7b54b1 | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 779 | dev->dvb.frontend = dvb_attach(cx24123_attach, |
| 780 | &geniatech_dvbs_config, |
| 781 | &dev->core->i2c_adap); |
Saqeb Akhter | c02a34f | 2006-06-29 20:29:33 -0300 | [diff] [blame] | 782 | if (dev->dvb.frontend) { |
| 783 | dev->core->prev_set_voltage = dev->dvb.frontend->ops.set_voltage; |
| 784 | dev->dvb.frontend->ops.set_voltage = geniatech_dvbs_set_voltage; |
| 785 | } |
| 786 | break; |
Steven Toth | 60464da | 2008-01-05 16:53:01 -0300 | [diff] [blame] | 787 | case CX88_BOARD_PINNACLE_PCTV_HD_800i: |
Steven Toth | 60464da | 2008-01-05 16:53:01 -0300 | [diff] [blame] | 788 | dev->dvb.frontend = dvb_attach(s5h1409_attach, |
| 789 | &pinnacle_pctv_hd_800i_config, |
| 790 | &dev->core->i2c_adap); |
| 791 | if (dev->dvb.frontend != NULL) { |
| 792 | /* tuner_config.video_dev must point to |
| 793 | * i2c_adap.algo_data |
| 794 | */ |
Steven Toth | 73c993a | 2008-01-05 17:08:05 -0300 | [diff] [blame] | 795 | pinnacle_pctv_hd_800i_tuner_config.priv = |
Steven Toth | 60464da | 2008-01-05 16:53:01 -0300 | [diff] [blame] | 796 | dev->core->i2c_adap.algo_data; |
| 797 | dvb_attach(xc5000_attach, dev->dvb.frontend, |
| 798 | &dev->core->i2c_adap, |
| 799 | &pinnacle_pctv_hd_800i_tuner_config); |
| 800 | } |
| 801 | break; |
Steven Toth | 5c00fac | 2008-04-22 14:45:14 -0300 | [diff] [blame] | 802 | case CX88_BOARD_DVICO_FUSIONHDTV_5_PCI_NANO: |
| 803 | dev->dvb.frontend = dvb_attach(s5h1409_attach, |
| 804 | &dvico_hdtv5_pci_nano_config, |
| 805 | &dev->core->i2c_adap); |
| 806 | if (dev->dvb.frontend != NULL) { |
| 807 | struct dvb_frontend *fe; |
| 808 | struct xc2028_config cfg = { |
| 809 | .i2c_adap = &dev->core->i2c_adap, |
| 810 | .i2c_addr = 0x61, |
Mauro Carvalho Chehab | c4a3ce1 | 2008-04-22 14:45:31 -0300 | [diff] [blame] | 811 | .callback = cx88_pci_nano_callback, |
Steven Toth | 5c00fac | 2008-04-22 14:45:14 -0300 | [diff] [blame] | 812 | }; |
| 813 | static struct xc2028_ctrl ctl = { |
| 814 | .fname = "xc3028-v27.fw", |
| 815 | .max_len = 64, |
| 816 | .scode_table = OREN538, |
| 817 | }; |
| 818 | |
| 819 | fe = dvb_attach(xc2028_attach, |
| 820 | dev->dvb.frontend, &cfg); |
| 821 | if (fe != NULL && fe->ops.tuner_ops.set_config != NULL) |
| 822 | fe->ops.tuner_ops.set_config(fe, &ctl); |
| 823 | } |
| 824 | break; |
Mauro Carvalho Chehab | 9507901 | 2008-04-22 14:45:15 -0300 | [diff] [blame] | 825 | case CX88_BOARD_PINNACLE_HYBRID_PCTV: |
| 826 | dev->dvb.frontend = dvb_attach(zl10353_attach, |
| 827 | &cx88_geniatech_x8000_mt, |
| 828 | &dev->core->i2c_adap); |
Mauro Carvalho Chehab | 23fb348 | 2008-04-22 14:45:30 -0300 | [diff] [blame] | 829 | if (attach_xc3028(0x61, dev) < 0) |
| 830 | return -EINVAL; |
Mauro Carvalho Chehab | 9507901 | 2008-04-22 14:45:15 -0300 | [diff] [blame] | 831 | break; |
| 832 | case CX88_BOARD_GENIATECH_X8000_MT: |
Mauro Carvalho Chehab | 99e09ea | 2008-03-27 23:18:30 -0300 | [diff] [blame] | 833 | dev->ts_gen_cntrl = 0x00; |
Mauro Carvalho Chehab | 9507901 | 2008-04-22 14:45:15 -0300 | [diff] [blame] | 834 | |
| 835 | dev->dvb.frontend = dvb_attach(zl10353_attach, |
| 836 | &cx88_geniatech_x8000_mt, |
| 837 | &dev->core->i2c_adap); |
Mauro Carvalho Chehab | 23fb348 | 2008-04-22 14:45:30 -0300 | [diff] [blame] | 838 | if (attach_xc3028(0x61, dev) < 0) |
| 839 | return -EINVAL; |
Mauro Carvalho Chehab | 9507901 | 2008-04-22 14:45:15 -0300 | [diff] [blame] | 840 | break; |
Mauro Carvalho Chehab | 99e09ea | 2008-03-27 23:18:30 -0300 | [diff] [blame] | 841 | case CX88_BOARD_KWORLD_ATSC_120: |
| 842 | dev->dvb.frontend = dvb_attach(s5h1409_attach, |
| 843 | &kworld_atsc_120_config, |
| 844 | &dev->core->i2c_adap); |
| 845 | if (attach_xc3028(0x61, dev) < 0) |
| 846 | return -EINVAL; |
| 847 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 848 | default: |
Trent Piepho | 5772f81 | 2007-08-15 14:41:59 -0300 | [diff] [blame] | 849 | printk(KERN_ERR "%s/2: The frontend of your DVB/ATSC card isn't supported yet\n", |
Gerd Knorr | 1622c3f | 2005-05-01 08:59:19 -0700 | [diff] [blame] | 850 | dev->core->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 851 | break; |
| 852 | } |
| 853 | if (NULL == dev->dvb.frontend) { |
Mauro Carvalho Chehab | 9507901 | 2008-04-22 14:45:15 -0300 | [diff] [blame] | 854 | printk(KERN_ERR |
| 855 | "%s/2: frontend initialization failed\n", |
| 856 | dev->core->name); |
Mauro Carvalho Chehab | 23fb348 | 2008-04-22 14:45:30 -0300 | [diff] [blame] | 857 | return -EINVAL; |
Mauro Carvalho Chehab | 9507901 | 2008-04-22 14:45:15 -0300 | [diff] [blame] | 858 | } |
| 859 | |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 860 | /* Ensure all frontends negotiate bus access */ |
| 861 | dev->dvb.frontend->ops.ts_bus_ctrl = cx88_dvb_bus_ctrl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 862 | |
Mauro Carvalho Chehab | 93352f5 | 2005-09-13 01:25:42 -0700 | [diff] [blame] | 863 | /* Put the analog decoder in standby to keep it quiet */ |
| 864 | cx88_call_i2c_clients (dev->core, TUNER_SET_STANDBY, NULL); |
| 865 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 866 | /* register everything */ |
Janne Grunau | 78e9200 | 2008-04-09 19:13:13 -0300 | [diff] [blame^] | 867 | return videobuf_dvb_register(&dev->dvb, THIS_MODULE, dev, |
| 868 | &dev->pci->dev, adapter_nr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 869 | } |
| 870 | |
| 871 | /* ----------------------------------------------------------- */ |
| 872 | |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 873 | /* CX8802 MPEG -> mini driver - We have been given the hardware */ |
| 874 | static int cx8802_dvb_advise_acquire(struct cx8802_driver *drv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 875 | { |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 876 | struct cx88_core *core = drv->core; |
| 877 | int err = 0; |
Harvey Harrison | 32d83ef | 2008-04-08 23:20:00 -0300 | [diff] [blame] | 878 | dprintk( 1, "%s\n", __func__); |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 879 | |
Trent Piepho | 6a59d64 | 2007-08-15 14:41:57 -0300 | [diff] [blame] | 880 | switch (core->boardnr) { |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 881 | case CX88_BOARD_HAUPPAUGE_HVR1300: |
| 882 | /* We arrive here with either the cx23416 or the cx22702 |
| 883 | * on the bus. Take the bus from the cx23416 and enable the |
| 884 | * cx22702 demod |
| 885 | */ |
| 886 | cx_set(MO_GP0_IO, 0x00000080); /* cx22702 out of reset and enable */ |
| 887 | cx_clear(MO_GP0_IO, 0x00000004); |
| 888 | udelay(1000); |
| 889 | break; |
| 890 | default: |
| 891 | err = -ENODEV; |
| 892 | } |
| 893 | return err; |
| 894 | } |
| 895 | |
| 896 | /* CX8802 MPEG -> mini driver - We no longer have the hardware */ |
| 897 | static int cx8802_dvb_advise_release(struct cx8802_driver *drv) |
| 898 | { |
| 899 | struct cx88_core *core = drv->core; |
| 900 | int err = 0; |
Harvey Harrison | 32d83ef | 2008-04-08 23:20:00 -0300 | [diff] [blame] | 901 | dprintk( 1, "%s\n", __func__); |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 902 | |
Trent Piepho | 6a59d64 | 2007-08-15 14:41:57 -0300 | [diff] [blame] | 903 | switch (core->boardnr) { |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 904 | case CX88_BOARD_HAUPPAUGE_HVR1300: |
| 905 | /* Do Nothing, leave the cx22702 on the bus. */ |
| 906 | break; |
| 907 | default: |
| 908 | err = -ENODEV; |
| 909 | } |
| 910 | return err; |
| 911 | } |
| 912 | |
| 913 | static int cx8802_dvb_probe(struct cx8802_driver *drv) |
| 914 | { |
| 915 | struct cx88_core *core = drv->core; |
| 916 | struct cx8802_dev *dev = drv->core->dvbdev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 917 | int err; |
| 918 | |
Harvey Harrison | 32d83ef | 2008-04-08 23:20:00 -0300 | [diff] [blame] | 919 | dprintk( 1, "%s\n", __func__); |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 920 | dprintk( 1, " ->being probed by Card=%d Name=%s, PCI %02x:%02x\n", |
Trent Piepho | 6a59d64 | 2007-08-15 14:41:57 -0300 | [diff] [blame] | 921 | core->boardnr, |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 922 | core->name, |
| 923 | core->pci_bus, |
| 924 | core->pci_slot); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 925 | |
| 926 | err = -ENODEV; |
Trent Piepho | 6a59d64 | 2007-08-15 14:41:57 -0300 | [diff] [blame] | 927 | if (!(core->board.mpeg & CX88_MPEG_DVB)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 928 | goto fail_core; |
| 929 | |
Trent Piepho | ecf854d | 2007-05-05 20:11:32 -0300 | [diff] [blame] | 930 | /* If vp3054 isn't enabled, a stub will just return 0 */ |
Chris Pascoe | fc40b26 | 2006-01-09 15:25:35 -0200 | [diff] [blame] | 931 | err = vp3054_i2c_probe(dev); |
| 932 | if (0 != err) |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 933 | goto fail_core; |
Chris Pascoe | fc40b26 | 2006-01-09 15:25:35 -0200 | [diff] [blame] | 934 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 935 | /* dvb stuff */ |
Trent Piepho | 5772f81 | 2007-08-15 14:41:59 -0300 | [diff] [blame] | 936 | printk(KERN_INFO "%s/2: cx2388x based DVB/ATSC card\n", core->name); |
Guennadi Liakhovetski | 0705135 | 2008-04-22 14:42:13 -0300 | [diff] [blame] | 937 | videobuf_queue_sg_init(&dev->dvb.dvbq, &dvb_qops, |
| 938 | &dev->pci->dev, &dev->slock, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 939 | V4L2_BUF_TYPE_VIDEO_CAPTURE, |
| 940 | V4L2_FIELD_TOP, |
| 941 | sizeof(struct cx88_buffer), |
| 942 | dev); |
| 943 | err = dvb_register(dev); |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 944 | if (err != 0) |
Trent Piepho | 5772f81 | 2007-08-15 14:41:59 -0300 | [diff] [blame] | 945 | printk(KERN_ERR "%s/2: dvb_register failed (err = %d)\n", |
| 946 | core->name, err); |
Steven Toth | 611900c | 2006-01-09 15:25:12 -0200 | [diff] [blame] | 947 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 948 | fail_core: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 949 | return err; |
| 950 | } |
| 951 | |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 952 | static int cx8802_dvb_remove(struct cx8802_driver *drv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 953 | { |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 954 | struct cx8802_dev *dev = drv->core->dvbdev; |
Steven Toth | 611900c | 2006-01-09 15:25:12 -0200 | [diff] [blame] | 955 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 956 | /* dvb */ |
Mauro Carvalho Chehab | 9950c1b | 2008-04-11 11:29:44 -0300 | [diff] [blame] | 957 | if (dev->dvb.frontend) |
| 958 | videobuf_dvb_unregister(&dev->dvb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 959 | |
Chris Pascoe | fc40b26 | 2006-01-09 15:25:35 -0200 | [diff] [blame] | 960 | vp3054_i2c_remove(dev); |
Chris Pascoe | fc40b26 | 2006-01-09 15:25:35 -0200 | [diff] [blame] | 961 | |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 962 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 963 | } |
| 964 | |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 965 | static struct cx8802_driver cx8802_dvb_driver = { |
| 966 | .type_id = CX88_MPEG_DVB, |
| 967 | .hw_access = CX8802_DRVCTL_SHARED, |
| 968 | .probe = cx8802_dvb_probe, |
| 969 | .remove = cx8802_dvb_remove, |
| 970 | .advise_acquire = cx8802_dvb_advise_acquire, |
| 971 | .advise_release = cx8802_dvb_advise_release, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 972 | }; |
| 973 | |
| 974 | static int dvb_init(void) |
| 975 | { |
Trent Piepho | 5772f81 | 2007-08-15 14:41:59 -0300 | [diff] [blame] | 976 | printk(KERN_INFO "cx88/2: cx2388x dvb driver version %d.%d.%d loaded\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 977 | (CX88_VERSION_CODE >> 16) & 0xff, |
| 978 | (CX88_VERSION_CODE >> 8) & 0xff, |
| 979 | CX88_VERSION_CODE & 0xff); |
| 980 | #ifdef SNAPSHOT |
| 981 | printk(KERN_INFO "cx2388x: snapshot date %04d-%02d-%02d\n", |
| 982 | SNAPSHOT/10000, (SNAPSHOT/100)%100, SNAPSHOT%100); |
| 983 | #endif |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 984 | return cx8802_register_driver(&cx8802_dvb_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 985 | } |
| 986 | |
| 987 | static void dvb_fini(void) |
| 988 | { |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 989 | cx8802_unregister_driver(&cx8802_dvb_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 990 | } |
| 991 | |
| 992 | module_init(dvb_init); |
| 993 | module_exit(dvb_fini); |
| 994 | |
| 995 | /* |
| 996 | * Local variables: |
| 997 | * c-basic-offset: 8 |
| 998 | * compile-command: "make DVB=1" |
| 999 | * End: |
| 1000 | */ |