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" |
Michael Krufky | 0df31f8 | 2008-04-22 14:46:13 -0300 | [diff] [blame] | 48 | #include "tuner-simple.h" |
Michael Krufky | 827855d | 2008-04-22 14:46:16 -0300 | [diff] [blame] | 49 | #include "tda9887.h" |
Steven Toth | d893d5d | 2008-04-25 03:46:43 -0300 | [diff] [blame] | 50 | #include "s5h1411.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 | |
Steven Toth | d893d5d | 2008-04-25 03:46:43 -0300 | [diff] [blame] | 467 | static struct s5h1411_config dvico_fusionhdtv7_config = { |
| 468 | .output_mode = S5H1411_SERIAL_OUTPUT, |
| 469 | .gpio = S5H1411_GPIO_ON, |
| 470 | .mpeg_timing = S5H1411_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK, |
| 471 | .qam_if = S5H1411_IF_44000, |
| 472 | .vsb_if = S5H1411_IF_44000, |
| 473 | .inversion = S5H1411_INVERSION_OFF, |
| 474 | .status_mode = S5H1411_DEMODLOCKING |
| 475 | }; |
| 476 | |
| 477 | static struct xc5000_config dvico_fusionhdtv7_tuner_config = { |
| 478 | .i2c_address = 0xc2 >> 1, |
| 479 | .if_khz = 5380, |
| 480 | .tuner_callback = cx88_tuner_callback, |
| 481 | }; |
| 482 | |
Mauro Carvalho Chehab | 23fb348 | 2008-04-22 14:45:30 -0300 | [diff] [blame] | 483 | static int attach_xc3028(u8 addr, struct cx8802_dev *dev) |
| 484 | { |
| 485 | struct dvb_frontend *fe; |
Mauro Carvalho Chehab | 99e09ea | 2008-03-27 23:18:30 -0300 | [diff] [blame] | 486 | struct xc2028_ctrl ctl; |
Mauro Carvalho Chehab | 23fb348 | 2008-04-22 14:45:30 -0300 | [diff] [blame] | 487 | struct xc2028_config cfg = { |
| 488 | .i2c_adap = &dev->core->i2c_adap, |
| 489 | .i2c_addr = addr, |
Mauro Carvalho Chehab | 99e09ea | 2008-03-27 23:18:30 -0300 | [diff] [blame] | 490 | .ctrl = &ctl, |
| 491 | .callback = cx88_tuner_callback, |
Mauro Carvalho Chehab | 23fb348 | 2008-04-22 14:45:30 -0300 | [diff] [blame] | 492 | }; |
| 493 | |
Mauro Carvalho Chehab | ddd5441 | 2008-04-22 14:45:46 -0300 | [diff] [blame] | 494 | if (!dev->dvb.frontend) { |
| 495 | printk(KERN_ERR "%s/2: dvb frontend not attached. " |
| 496 | "Can't attach xc3028\n", |
| 497 | dev->core->name); |
| 498 | return -EINVAL; |
| 499 | } |
| 500 | |
Mauro Carvalho Chehab | 99e09ea | 2008-03-27 23:18:30 -0300 | [diff] [blame] | 501 | /* |
| 502 | * Some xc3028 devices may be hidden by an I2C gate. This is known |
| 503 | * to happen with some s5h1409-based devices. |
| 504 | * Now that I2C gate is open, sets up xc3028 configuration |
| 505 | */ |
| 506 | cx88_setup_xc3028(dev->core, &ctl); |
| 507 | |
Mauro Carvalho Chehab | 23fb348 | 2008-04-22 14:45:30 -0300 | [diff] [blame] | 508 | fe = dvb_attach(xc2028_attach, dev->dvb.frontend, &cfg); |
| 509 | if (!fe) { |
| 510 | printk(KERN_ERR "%s/2: xc3028 attach failed\n", |
| 511 | dev->core->name); |
Mauro Carvalho Chehab | 23fb348 | 2008-04-22 14:45:30 -0300 | [diff] [blame] | 512 | return -EINVAL; |
| 513 | } |
| 514 | |
| 515 | printk(KERN_INFO "%s/2: xc3028 attached\n", |
| 516 | dev->core->name); |
| 517 | |
| 518 | return 0; |
| 519 | } |
Mauro Carvalho Chehab | 9507901 | 2008-04-22 14:45:15 -0300 | [diff] [blame] | 520 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 521 | static int dvb_register(struct cx8802_dev *dev) |
| 522 | { |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 523 | struct cx88_core *core = dev->core; |
| 524 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | /* init struct videobuf_dvb */ |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 526 | dev->dvb.name = core->name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 527 | dev->ts_gen_cntrl = 0x0c; |
| 528 | |
| 529 | /* init frontend */ |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 530 | switch (core->boardnr) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 531 | case CX88_BOARD_HAUPPAUGE_DVB_T1: |
Michael Krufky | f7b54b1 | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 532 | dev->dvb.frontend = dvb_attach(cx22702_attach, |
Michael Krufky | ed35526 | 2006-12-05 01:34:56 -0300 | [diff] [blame] | 533 | &connexant_refboard_config, |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 534 | &core->i2c_adap); |
Andrew de Quincey | f54376e | 2006-04-18 17:56:10 -0300 | [diff] [blame] | 535 | if (dev->dvb.frontend != NULL) { |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 536 | if (!dvb_attach(dvb_pll_attach, dev->dvb.frontend, |
| 537 | 0x61, &core->i2c_adap, |
| 538 | DVB_PLL_THOMSON_DTT759X)) |
| 539 | goto frontend_detach; |
Andrew de Quincey | f54376e | 2006-04-18 17:56:10 -0300 | [diff] [blame] | 540 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | break; |
Michael Krufky | e057ee1 | 2005-07-07 17:58:40 -0700 | [diff] [blame] | 542 | case CX88_BOARD_TERRATEC_CINERGY_1400_DVB_T1: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | case CX88_BOARD_CONEXANT_DVB_T1: |
Manenti Marco | f39624f | 2006-01-09 15:32:45 -0200 | [diff] [blame] | 544 | case CX88_BOARD_KWORLD_DVB_T_CX22702: |
David Shirley | 2b5200a | 2005-11-08 21:37:22 -0800 | [diff] [blame] | 545 | case CX88_BOARD_WINFAST_DTV1000: |
Michael Krufky | f7b54b1 | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 546 | dev->dvb.frontend = dvb_attach(cx22702_attach, |
| 547 | &connexant_refboard_config, |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 548 | &core->i2c_adap); |
Andrew de Quincey | f54376e | 2006-04-18 17:56:10 -0300 | [diff] [blame] | 549 | if (dev->dvb.frontend != NULL) { |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 550 | if (!dvb_attach(dvb_pll_attach, dev->dvb.frontend, |
| 551 | 0x60, &core->i2c_adap, |
| 552 | DVB_PLL_THOMSON_DTT7579)) |
| 553 | goto frontend_detach; |
Andrew de Quincey | f54376e | 2006-04-18 17:56:10 -0300 | [diff] [blame] | 554 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 555 | break; |
Malcolm Valentine | 4bd6e9d | 2006-05-29 13:51:59 -0300 | [diff] [blame] | 556 | case CX88_BOARD_WINFAST_DTV2000H: |
Steven Toth | 611900c | 2006-01-09 15:25:12 -0200 | [diff] [blame] | 557 | case CX88_BOARD_HAUPPAUGE_HVR1100: |
| 558 | case CX88_BOARD_HAUPPAUGE_HVR1100LP: |
Trent Piepho | a5a2ecf | 2007-03-09 15:07:07 -0300 | [diff] [blame] | 559 | case CX88_BOARD_HAUPPAUGE_HVR1300: |
| 560 | case CX88_BOARD_HAUPPAUGE_HVR3000: |
Michael Krufky | f7b54b1 | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 561 | dev->dvb.frontend = dvb_attach(cx22702_attach, |
Michael Krufky | ed35526 | 2006-12-05 01:34:56 -0300 | [diff] [blame] | 562 | &hauppauge_hvr_config, |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 563 | &core->i2c_adap); |
Andrew de Quincey | f54376e | 2006-04-18 17:56:10 -0300 | [diff] [blame] | 564 | if (dev->dvb.frontend != NULL) { |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 565 | if (!dvb_attach(simple_tuner_attach, dev->dvb.frontend, |
| 566 | &core->i2c_adap, 0x61, |
| 567 | TUNER_PHILIPS_FMD1216ME_MK3)) |
| 568 | goto frontend_detach; |
Andrew de Quincey | f54376e | 2006-04-18 17:56:10 -0300 | [diff] [blame] | 569 | } |
Steven Toth | 611900c | 2006-01-09 15:25:12 -0200 | [diff] [blame] | 570 | break; |
Chris Pascoe | 780dfef | 2006-02-28 08:34:59 -0300 | [diff] [blame] | 571 | case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_PLUS: |
Michael Krufky | f7b54b1 | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 572 | dev->dvb.frontend = dvb_attach(mt352_attach, |
| 573 | &dvico_fusionhdtv, |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 574 | &core->i2c_adap); |
Andrew de Quincey | f54376e | 2006-04-18 17:56:10 -0300 | [diff] [blame] | 575 | if (dev->dvb.frontend != NULL) { |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 576 | if (!dvb_attach(dvb_pll_attach, dev->dvb.frontend, |
| 577 | 0x60, NULL, DVB_PLL_THOMSON_DTT7579)) |
| 578 | goto frontend_detach; |
Chris Pascoe | 780dfef | 2006-02-28 08:34:59 -0300 | [diff] [blame] | 579 | break; |
Andrew de Quincey | f54376e | 2006-04-18 17:56:10 -0300 | [diff] [blame] | 580 | } |
Chris Pascoe | 780dfef | 2006-02-28 08:34:59 -0300 | [diff] [blame] | 581 | /* ZL10353 replaces MT352 on later cards */ |
Michael Krufky | f7b54b1 | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 582 | dev->dvb.frontend = dvb_attach(zl10353_attach, |
| 583 | &dvico_fusionhdtv_plus_v1_1, |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 584 | &core->i2c_adap); |
Andrew de Quincey | f54376e | 2006-04-18 17:56:10 -0300 | [diff] [blame] | 585 | if (dev->dvb.frontend != NULL) { |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 586 | if (!dvb_attach(dvb_pll_attach, dev->dvb.frontend, |
| 587 | 0x60, NULL, DVB_PLL_THOMSON_DTT7579)) |
| 588 | goto frontend_detach; |
Andrew de Quincey | f54376e | 2006-04-18 17:56:10 -0300 | [diff] [blame] | 589 | } |
Chris Pascoe | 780dfef | 2006-02-28 08:34:59 -0300 | [diff] [blame] | 590 | break; |
Michael Krufky | c2af3cd | 2006-06-12 14:06:22 -0300 | [diff] [blame] | 591 | case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_DUAL: |
Michael Krufky | c2af3cd | 2006-06-12 14:06:22 -0300 | [diff] [blame] | 592 | /* The tin box says DEE1601, but it seems to be DTT7579 |
| 593 | * compatible, with a slightly different MT352 AGC gain. */ |
Michael Krufky | f7b54b1 | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 594 | dev->dvb.frontend = dvb_attach(mt352_attach, |
| 595 | &dvico_fusionhdtv_dual, |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 596 | &core->i2c_adap); |
Michael Krufky | c2af3cd | 2006-06-12 14:06:22 -0300 | [diff] [blame] | 597 | if (dev->dvb.frontend != NULL) { |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 598 | if (!dvb_attach(dvb_pll_attach, dev->dvb.frontend, |
| 599 | 0x61, NULL, DVB_PLL_THOMSON_DTT7579)) |
| 600 | goto frontend_detach; |
Michael Krufky | c2af3cd | 2006-06-12 14:06:22 -0300 | [diff] [blame] | 601 | break; |
| 602 | } |
Michael Krufky | c2af3cd | 2006-06-12 14:06:22 -0300 | [diff] [blame] | 603 | /* ZL10353 replaces MT352 on later cards */ |
Michael Krufky | f7b54b1 | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 604 | dev->dvb.frontend = dvb_attach(zl10353_attach, |
| 605 | &dvico_fusionhdtv_plus_v1_1, |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 606 | &core->i2c_adap); |
Michael Krufky | c2af3cd | 2006-06-12 14:06:22 -0300 | [diff] [blame] | 607 | if (dev->dvb.frontend != NULL) { |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 608 | if (!dvb_attach(dvb_pll_attach, dev->dvb.frontend, |
| 609 | 0x61, NULL, DVB_PLL_THOMSON_DTT7579)) |
| 610 | goto frontend_detach; |
Michael Krufky | c2af3cd | 2006-06-12 14:06:22 -0300 | [diff] [blame] | 611 | } |
Michael Krufky | c2af3cd | 2006-06-12 14:06:22 -0300 | [diff] [blame] | 612 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 613 | case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T1: |
Michael Krufky | f7b54b1 | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 614 | dev->dvb.frontend = dvb_attach(mt352_attach, |
| 615 | &dvico_fusionhdtv, |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 616 | &core->i2c_adap); |
Andrew de Quincey | f54376e | 2006-04-18 17:56:10 -0300 | [diff] [blame] | 617 | if (dev->dvb.frontend != NULL) { |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 618 | if (!dvb_attach(dvb_pll_attach, dev->dvb.frontend, |
| 619 | 0x61, NULL, DVB_PLL_LG_Z201)) |
| 620 | goto frontend_detach; |
Andrew de Quincey | f54376e | 2006-04-18 17:56:10 -0300 | [diff] [blame] | 621 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 622 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 623 | case CX88_BOARD_KWORLD_DVB_T: |
| 624 | case CX88_BOARD_DNTV_LIVE_DVB_T: |
Mauro Carvalho Chehab | a82decf | 2005-07-07 17:58:36 -0700 | [diff] [blame] | 625 | case CX88_BOARD_ADSTECH_DVB_T_PCI: |
Michael Krufky | f7b54b1 | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 626 | dev->dvb.frontend = dvb_attach(mt352_attach, |
| 627 | &dntv_live_dvbt_config, |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 628 | &core->i2c_adap); |
Andrew de Quincey | f54376e | 2006-04-18 17:56:10 -0300 | [diff] [blame] | 629 | if (dev->dvb.frontend != NULL) { |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 630 | if (!dvb_attach(dvb_pll_attach, dev->dvb.frontend, |
| 631 | 0x61, NULL, DVB_PLL_UNKNOWN_1)) |
| 632 | goto frontend_detach; |
Andrew de Quincey | f54376e | 2006-04-18 17:56:10 -0300 | [diff] [blame] | 633 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 634 | break; |
Chris Pascoe | fc40b26 | 2006-01-09 15:25:35 -0200 | [diff] [blame] | 635 | case CX88_BOARD_DNTV_LIVE_DVB_T_PRO: |
Trent Piepho | ecf854d | 2007-05-05 20:11:32 -0300 | [diff] [blame] | 636 | #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] | 637 | /* 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] | 638 | dev->dvb.frontend = dvb_attach(mt352_attach, &dntv_live_dvbt_pro_config, |
Trent Piepho | f0ad909 | 2007-10-14 02:52:16 -0300 | [diff] [blame] | 639 | &dev->vp3054->adap); |
Andrew de Quincey | f54376e | 2006-04-18 17:56:10 -0300 | [diff] [blame] | 640 | if (dev->dvb.frontend != NULL) { |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 641 | if (!dvb_attach(simple_tuner_attach, dev->dvb.frontend, |
| 642 | &core->i2c_adap, 0x61, |
| 643 | TUNER_PHILIPS_FMD1216ME_MK3)) |
| 644 | goto frontend_detach; |
Andrew de Quincey | f54376e | 2006-04-18 17:56:10 -0300 | [diff] [blame] | 645 | } |
Chris Pascoe | fc40b26 | 2006-01-09 15:25:35 -0200 | [diff] [blame] | 646 | #else |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 647 | printk(KERN_ERR "%s/2: built without vp3054 support\n", |
| 648 | core->name); |
Chris Pascoe | fc40b26 | 2006-01-09 15:25:35 -0200 | [diff] [blame] | 649 | #endif |
| 650 | break; |
Chris Pascoe | 780dfef | 2006-02-28 08:34:59 -0300 | [diff] [blame] | 651 | case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_HYBRID: |
Michael Krufky | f7b54b1 | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 652 | dev->dvb.frontend = dvb_attach(zl10353_attach, |
| 653 | &dvico_fusionhdtv_hybrid, |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 654 | &core->i2c_adap); |
Andrew de Quincey | f54376e | 2006-04-18 17:56:10 -0300 | [diff] [blame] | 655 | if (dev->dvb.frontend != NULL) { |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 656 | if (!dvb_attach(simple_tuner_attach, dev->dvb.frontend, |
| 657 | &core->i2c_adap, 0x61, |
| 658 | TUNER_THOMSON_FE6600)) |
| 659 | goto frontend_detach; |
Andrew de Quincey | f54376e | 2006-04-18 17:56:10 -0300 | [diff] [blame] | 660 | } |
Chris Pascoe | 780dfef | 2006-02-28 08:34:59 -0300 | [diff] [blame] | 661 | break; |
Chris Pascoe | b3fb91d | 2008-04-22 14:45:15 -0300 | [diff] [blame] | 662 | case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_PRO: |
| 663 | dev->dvb.frontend = dvb_attach(zl10353_attach, |
| 664 | &dvico_fusionhdtv_xc3028, |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 665 | &core->i2c_adap); |
Chris Pascoe | b3fb91d | 2008-04-22 14:45:15 -0300 | [diff] [blame] | 666 | if (dev->dvb.frontend == NULL) |
| 667 | dev->dvb.frontend = dvb_attach(mt352_attach, |
| 668 | &dvico_fusionhdtv_mt352_xc3028, |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 669 | &core->i2c_adap); |
Chris Pascoe | 8765561 | 2008-04-22 14:45:15 -0300 | [diff] [blame] | 670 | /* |
| 671 | * On this board, the demod provides the I2C bus pullup. |
| 672 | * We must not permit gate_ctrl to be performed, or |
| 673 | * the xc3028 cannot communicate on the bus. |
| 674 | */ |
| 675 | if (dev->dvb.frontend) |
| 676 | dev->dvb.frontend->ops.i2c_gate_ctrl = NULL; |
Mauro Carvalho Chehab | 23fb348 | 2008-04-22 14:45:30 -0300 | [diff] [blame] | 677 | if (attach_xc3028(0x61, dev) < 0) |
| 678 | return -EINVAL; |
Chris Pascoe | b3fb91d | 2008-04-22 14:45:15 -0300 | [diff] [blame] | 679 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 680 | case CX88_BOARD_PCHDTV_HD3000: |
Michael Krufky | 4a39055 | 2006-12-05 02:00:53 -0300 | [diff] [blame] | 681 | dev->dvb.frontend = dvb_attach(or51132_attach, &pchdtv_hd3000, |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 682 | &core->i2c_adap); |
Andrew de Quincey | f54376e | 2006-04-18 17:56:10 -0300 | [diff] [blame] | 683 | if (dev->dvb.frontend != NULL) { |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 684 | if (!dvb_attach(simple_tuner_attach, dev->dvb.frontend, |
| 685 | &core->i2c_adap, 0x61, |
| 686 | TUNER_THOMSON_DTT761X)) |
| 687 | goto frontend_detach; |
Andrew de Quincey | f54376e | 2006-04-18 17:56:10 -0300 | [diff] [blame] | 688 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 689 | break; |
Michael Krufky | f179849 | 2005-07-07 17:58:39 -0700 | [diff] [blame] | 690 | case CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_Q: |
| 691 | dev->ts_gen_cntrl = 0x08; |
Michael Krufky | f179849 | 2005-07-07 17:58:39 -0700 | [diff] [blame] | 692 | |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 693 | /* Do a hardware reset of chip before using it. */ |
Michael Krufky | f179849 | 2005-07-07 17:58:39 -0700 | [diff] [blame] | 694 | cx_clear(MO_GP0_IO, 1); |
| 695 | mdelay(100); |
Michael Krufky | 0ccef6d | 2005-07-27 11:45:55 -0700 | [diff] [blame] | 696 | cx_set(MO_GP0_IO, 1); |
Michael Krufky | f179849 | 2005-07-07 17:58:39 -0700 | [diff] [blame] | 697 | mdelay(200); |
Michael Krufky | 0ccef6d | 2005-07-27 11:45:55 -0700 | [diff] [blame] | 698 | |
| 699 | /* Select RF connector callback */ |
Michael Krufky | 6ddcc91 | 2005-07-27 11:46:00 -0700 | [diff] [blame] | 700 | fusionhdtv_3_gold.pll_rf_set = lgdt330x_pll_rf_set; |
Michael Krufky | f7b54b1 | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 701 | dev->dvb.frontend = dvb_attach(lgdt330x_attach, |
| 702 | &fusionhdtv_3_gold, |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 703 | &core->i2c_adap); |
Andrew de Quincey | f54376e | 2006-04-18 17:56:10 -0300 | [diff] [blame] | 704 | if (dev->dvb.frontend != NULL) { |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 705 | if (!dvb_attach(simple_tuner_attach, dev->dvb.frontend, |
| 706 | &core->i2c_adap, 0x61, |
| 707 | TUNER_MICROTUNE_4042FI5)) |
| 708 | goto frontend_detach; |
Michael Krufky | f179849 | 2005-07-07 17:58:39 -0700 | [diff] [blame] | 709 | } |
| 710 | break; |
Michael Krufky | 0d723c0 | 2005-07-07 17:58:42 -0700 | [diff] [blame] | 711 | case CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_T: |
| 712 | dev->ts_gen_cntrl = 0x08; |
Michael Krufky | 0d723c0 | 2005-07-07 17:58:42 -0700 | [diff] [blame] | 713 | |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 714 | /* Do a hardware reset of chip before using it. */ |
Michael Krufky | 0d723c0 | 2005-07-07 17:58:42 -0700 | [diff] [blame] | 715 | cx_clear(MO_GP0_IO, 1); |
| 716 | mdelay(100); |
Michael Krufky | d975872 | 2005-07-27 11:45:56 -0700 | [diff] [blame] | 717 | cx_set(MO_GP0_IO, 9); |
Michael Krufky | 0d723c0 | 2005-07-07 17:58:42 -0700 | [diff] [blame] | 718 | mdelay(200); |
Michael Krufky | f7b54b1 | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 719 | dev->dvb.frontend = dvb_attach(lgdt330x_attach, |
| 720 | &fusionhdtv_3_gold, |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 721 | &core->i2c_adap); |
Andrew de Quincey | f54376e | 2006-04-18 17:56:10 -0300 | [diff] [blame] | 722 | if (dev->dvb.frontend != NULL) { |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 723 | if (!dvb_attach(simple_tuner_attach, dev->dvb.frontend, |
| 724 | &core->i2c_adap, 0x61, |
| 725 | TUNER_THOMSON_DTT761X)) |
| 726 | goto frontend_detach; |
Michael Krufky | 0d723c0 | 2005-07-07 17:58:42 -0700 | [diff] [blame] | 727 | } |
| 728 | break; |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 729 | case CX88_BOARD_DVICO_FUSIONHDTV_5_GOLD: |
| 730 | dev->ts_gen_cntrl = 0x08; |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 731 | |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 732 | /* Do a hardware reset of chip before using it. */ |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 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 | &fusionhdtv_5_gold, |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 739 | &core->i2c_adap); |
Andrew de Quincey | f54376e | 2006-04-18 17:56:10 -0300 | [diff] [blame] | 740 | if (dev->dvb.frontend != NULL) { |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 741 | if (!dvb_attach(simple_tuner_attach, dev->dvb.frontend, |
| 742 | &core->i2c_adap, 0x61, |
| 743 | TUNER_LG_TDVS_H06XF)) |
| 744 | goto frontend_detach; |
| 745 | if (!dvb_attach(tda9887_attach, dev->dvb.frontend, |
| 746 | &core->i2c_adap, 0x43)) |
| 747 | goto frontend_detach; |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 748 | } |
| 749 | break; |
Rusty Scott | da215d2 | 2006-04-07 02:21:31 -0300 | [diff] [blame] | 750 | case CX88_BOARD_PCHDTV_HD5500: |
| 751 | dev->ts_gen_cntrl = 0x08; |
Rusty Scott | da215d2 | 2006-04-07 02:21:31 -0300 | [diff] [blame] | 752 | |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 753 | /* Do a hardware reset of chip before using it. */ |
Rusty Scott | da215d2 | 2006-04-07 02:21:31 -0300 | [diff] [blame] | 754 | cx_clear(MO_GP0_IO, 1); |
| 755 | mdelay(100); |
| 756 | cx_set(MO_GP0_IO, 1); |
| 757 | mdelay(200); |
Michael Krufky | f7b54b1 | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 758 | dev->dvb.frontend = dvb_attach(lgdt330x_attach, |
| 759 | &pchdtv_hd5500, |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 760 | &core->i2c_adap); |
Andrew de Quincey | f54376e | 2006-04-18 17:56:10 -0300 | [diff] [blame] | 761 | if (dev->dvb.frontend != NULL) { |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 762 | if (!dvb_attach(simple_tuner_attach, dev->dvb.frontend, |
| 763 | &core->i2c_adap, 0x61, |
| 764 | TUNER_LG_TDVS_H06XF)) |
| 765 | goto frontend_detach; |
| 766 | if (!dvb_attach(tda9887_attach, dev->dvb.frontend, |
| 767 | &core->i2c_adap, 0x43)) |
| 768 | goto frontend_detach; |
Rusty Scott | da215d2 | 2006-04-07 02:21:31 -0300 | [diff] [blame] | 769 | } |
| 770 | break; |
Kirk Lapray | fde6d31 | 2005-11-08 21:38:18 -0800 | [diff] [blame] | 771 | case CX88_BOARD_ATI_HDTVWONDER: |
Michael Krufky | f7b54b1 | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 772 | dev->dvb.frontend = dvb_attach(nxt200x_attach, |
| 773 | &ati_hdtvwonder, |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 774 | &core->i2c_adap); |
Andrew de Quincey | f54376e | 2006-04-18 17:56:10 -0300 | [diff] [blame] | 775 | if (dev->dvb.frontend != NULL) { |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 776 | if (!dvb_attach(simple_tuner_attach, dev->dvb.frontend, |
| 777 | &core->i2c_adap, 0x61, |
| 778 | TUNER_PHILIPS_TUV1236D)) |
| 779 | goto frontend_detach; |
Andrew de Quincey | f54376e | 2006-04-18 17:56:10 -0300 | [diff] [blame] | 780 | } |
Kirk Lapray | fde6d31 | 2005-11-08 21:38:18 -0800 | [diff] [blame] | 781 | break; |
Steven Toth | 0fa14aa | 2006-01-09 15:25:02 -0200 | [diff] [blame] | 782 | case CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1: |
| 783 | case CX88_BOARD_HAUPPAUGE_NOVASE2_S1: |
Michael Krufky | f7b54b1 | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 784 | dev->dvb.frontend = dvb_attach(cx24123_attach, |
| 785 | &hauppauge_novas_config, |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 786 | &core->i2c_adap); |
Andrew de Quincey | cd20ca9 | 2006-05-12 20:31:51 -0300 | [diff] [blame] | 787 | if (dev->dvb.frontend) { |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 788 | if (!dvb_attach(isl6421_attach, dev->dvb.frontend, |
| 789 | &core->i2c_adap, 0x08, 0x00, 0x00)) |
| 790 | goto frontend_detach; |
Andrew de Quincey | cd20ca9 | 2006-05-12 20:31:51 -0300 | [diff] [blame] | 791 | } |
Steven Toth | 0fa14aa | 2006-01-09 15:25:02 -0200 | [diff] [blame] | 792 | break; |
Vadim Catana | 0e0351e | 2006-01-09 15:25:02 -0200 | [diff] [blame] | 793 | case CX88_BOARD_KWORLD_DVBS_100: |
Michael Krufky | f7b54b1 | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 794 | dev->dvb.frontend = dvb_attach(cx24123_attach, |
| 795 | &kworld_dvbs_100_config, |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 796 | &core->i2c_adap); |
Andrew de Quincey | cd20ca9 | 2006-05-12 20:31:51 -0300 | [diff] [blame] | 797 | if (dev->dvb.frontend) { |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 798 | core->prev_set_voltage = dev->dvb.frontend->ops.set_voltage; |
Patrick Boettcher | dea7486 | 2006-05-14 05:01:31 -0300 | [diff] [blame] | 799 | dev->dvb.frontend->ops.set_voltage = kworld_dvbs_100_set_voltage; |
Andrew de Quincey | cd20ca9 | 2006-05-12 20:31:51 -0300 | [diff] [blame] | 800 | } |
Vadim Catana | 0e0351e | 2006-01-09 15:25:02 -0200 | [diff] [blame] | 801 | break; |
Saqeb Akhter | c02a34f | 2006-06-29 20:29:33 -0300 | [diff] [blame] | 802 | case CX88_BOARD_GENIATECH_DVBS: |
Michael Krufky | f7b54b1 | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 803 | dev->dvb.frontend = dvb_attach(cx24123_attach, |
| 804 | &geniatech_dvbs_config, |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 805 | &core->i2c_adap); |
Saqeb Akhter | c02a34f | 2006-06-29 20:29:33 -0300 | [diff] [blame] | 806 | if (dev->dvb.frontend) { |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 807 | core->prev_set_voltage = dev->dvb.frontend->ops.set_voltage; |
Saqeb Akhter | c02a34f | 2006-06-29 20:29:33 -0300 | [diff] [blame] | 808 | dev->dvb.frontend->ops.set_voltage = geniatech_dvbs_set_voltage; |
| 809 | } |
| 810 | break; |
Steven Toth | 60464da | 2008-01-05 16:53:01 -0300 | [diff] [blame] | 811 | case CX88_BOARD_PINNACLE_PCTV_HD_800i: |
Steven Toth | 60464da | 2008-01-05 16:53:01 -0300 | [diff] [blame] | 812 | dev->dvb.frontend = dvb_attach(s5h1409_attach, |
| 813 | &pinnacle_pctv_hd_800i_config, |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 814 | &core->i2c_adap); |
Steven Toth | 60464da | 2008-01-05 16:53:01 -0300 | [diff] [blame] | 815 | if (dev->dvb.frontend != NULL) { |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 816 | if (!dvb_attach(xc5000_attach, dev->dvb.frontend, |
| 817 | &core->i2c_adap, |
Michael Krufky | 3065096 | 2008-09-06 14:56:58 -0300 | [diff] [blame^] | 818 | &pinnacle_pctv_hd_800i_tuner_config)) |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 819 | goto frontend_detach; |
Steven Toth | 60464da | 2008-01-05 16:53:01 -0300 | [diff] [blame] | 820 | } |
| 821 | break; |
Steven Toth | 5c00fac | 2008-04-22 14:45:14 -0300 | [diff] [blame] | 822 | case CX88_BOARD_DVICO_FUSIONHDTV_5_PCI_NANO: |
| 823 | dev->dvb.frontend = dvb_attach(s5h1409_attach, |
| 824 | &dvico_hdtv5_pci_nano_config, |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 825 | &core->i2c_adap); |
Steven Toth | 5c00fac | 2008-04-22 14:45:14 -0300 | [diff] [blame] | 826 | if (dev->dvb.frontend != NULL) { |
| 827 | struct dvb_frontend *fe; |
| 828 | struct xc2028_config cfg = { |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 829 | .i2c_adap = &core->i2c_adap, |
Steven Toth | 5c00fac | 2008-04-22 14:45:14 -0300 | [diff] [blame] | 830 | .i2c_addr = 0x61, |
Mauro Carvalho Chehab | c4a3ce1 | 2008-04-22 14:45:31 -0300 | [diff] [blame] | 831 | .callback = cx88_pci_nano_callback, |
Steven Toth | 5c00fac | 2008-04-22 14:45:14 -0300 | [diff] [blame] | 832 | }; |
| 833 | static struct xc2028_ctrl ctl = { |
| 834 | .fname = "xc3028-v27.fw", |
| 835 | .max_len = 64, |
Mauro Carvalho Chehab | 33e5316 | 2008-04-21 06:58:48 -0300 | [diff] [blame] | 836 | .scode_table = XC3028_FE_OREN538, |
Steven Toth | 5c00fac | 2008-04-22 14:45:14 -0300 | [diff] [blame] | 837 | }; |
| 838 | |
| 839 | fe = dvb_attach(xc2028_attach, |
| 840 | dev->dvb.frontend, &cfg); |
| 841 | if (fe != NULL && fe->ops.tuner_ops.set_config != NULL) |
| 842 | fe->ops.tuner_ops.set_config(fe, &ctl); |
| 843 | } |
| 844 | break; |
Mauro Carvalho Chehab | 9507901 | 2008-04-22 14:45:15 -0300 | [diff] [blame] | 845 | case CX88_BOARD_PINNACLE_HYBRID_PCTV: |
| 846 | dev->dvb.frontend = dvb_attach(zl10353_attach, |
| 847 | &cx88_geniatech_x8000_mt, |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 848 | &core->i2c_adap); |
Mauro Carvalho Chehab | 23fb348 | 2008-04-22 14:45:30 -0300 | [diff] [blame] | 849 | if (attach_xc3028(0x61, dev) < 0) |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 850 | goto frontend_detach; |
Mauro Carvalho Chehab | 9507901 | 2008-04-22 14:45:15 -0300 | [diff] [blame] | 851 | break; |
| 852 | case CX88_BOARD_GENIATECH_X8000_MT: |
Mauro Carvalho Chehab | 99e09ea | 2008-03-27 23:18:30 -0300 | [diff] [blame] | 853 | dev->ts_gen_cntrl = 0x00; |
Mauro Carvalho Chehab | 9507901 | 2008-04-22 14:45:15 -0300 | [diff] [blame] | 854 | |
| 855 | dev->dvb.frontend = dvb_attach(zl10353_attach, |
| 856 | &cx88_geniatech_x8000_mt, |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 857 | &core->i2c_adap); |
Mauro Carvalho Chehab | 23fb348 | 2008-04-22 14:45:30 -0300 | [diff] [blame] | 858 | if (attach_xc3028(0x61, dev) < 0) |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 859 | goto frontend_detach; |
Mauro Carvalho Chehab | 9507901 | 2008-04-22 14:45:15 -0300 | [diff] [blame] | 860 | break; |
Mauro Carvalho Chehab | 99e09ea | 2008-03-27 23:18:30 -0300 | [diff] [blame] | 861 | case CX88_BOARD_KWORLD_ATSC_120: |
| 862 | dev->dvb.frontend = dvb_attach(s5h1409_attach, |
| 863 | &kworld_atsc_120_config, |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 864 | &core->i2c_adap); |
Mauro Carvalho Chehab | 99e09ea | 2008-03-27 23:18:30 -0300 | [diff] [blame] | 865 | if (attach_xc3028(0x61, dev) < 0) |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 866 | goto frontend_detach; |
Mauro Carvalho Chehab | 99e09ea | 2008-03-27 23:18:30 -0300 | [diff] [blame] | 867 | break; |
Steven Toth | d893d5d | 2008-04-25 03:46:43 -0300 | [diff] [blame] | 868 | case CX88_BOARD_DVICO_FUSIONHDTV_7_GOLD: |
| 869 | dev->dvb.frontend = dvb_attach(s5h1411_attach, |
| 870 | &dvico_fusionhdtv7_config, |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 871 | &core->i2c_adap); |
Steven Toth | d893d5d | 2008-04-25 03:46:43 -0300 | [diff] [blame] | 872 | if (dev->dvb.frontend != NULL) { |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 873 | if (!dvb_attach(xc5000_attach, dev->dvb.frontend, |
| 874 | &core->i2c_adap, |
Michael Krufky | 3065096 | 2008-09-06 14:56:58 -0300 | [diff] [blame^] | 875 | &dvico_fusionhdtv7_tuner_config)) |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 876 | goto frontend_detach; |
Steven Toth | d893d5d | 2008-04-25 03:46:43 -0300 | [diff] [blame] | 877 | } |
| 878 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 879 | default: |
Trent Piepho | 5772f81 | 2007-08-15 14:41:59 -0300 | [diff] [blame] | 880 | printk(KERN_ERR "%s/2: The frontend of your DVB/ATSC card isn't supported yet\n", |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 881 | core->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 882 | break; |
| 883 | } |
| 884 | if (NULL == dev->dvb.frontend) { |
Mauro Carvalho Chehab | 9507901 | 2008-04-22 14:45:15 -0300 | [diff] [blame] | 885 | printk(KERN_ERR |
| 886 | "%s/2: frontend initialization failed\n", |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 887 | core->name); |
Mauro Carvalho Chehab | 23fb348 | 2008-04-22 14:45:30 -0300 | [diff] [blame] | 888 | return -EINVAL; |
Mauro Carvalho Chehab | 9507901 | 2008-04-22 14:45:15 -0300 | [diff] [blame] | 889 | } |
| 890 | |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 891 | /* Ensure all frontends negotiate bus access */ |
| 892 | dev->dvb.frontend->ops.ts_bus_ctrl = cx88_dvb_bus_ctrl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 893 | |
Mauro Carvalho Chehab | 93352f5c | 2005-09-13 01:25:42 -0700 | [diff] [blame] | 894 | /* Put the analog decoder in standby to keep it quiet */ |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 895 | cx88_call_i2c_clients(core, TUNER_SET_STANDBY, NULL); |
Mauro Carvalho Chehab | 93352f5c | 2005-09-13 01:25:42 -0700 | [diff] [blame] | 896 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 897 | /* register everything */ |
Janne Grunau | 78e9200 | 2008-04-09 19:13:13 -0300 | [diff] [blame] | 898 | return videobuf_dvb_register(&dev->dvb, THIS_MODULE, dev, |
| 899 | &dev->pci->dev, adapter_nr); |
Mauro Carvalho Chehab | 0590d91 | 2008-04-30 18:14:36 -0300 | [diff] [blame] | 900 | |
| 901 | frontend_detach: |
| 902 | if (dev->dvb.frontend) { |
| 903 | dvb_frontend_detach(dev->dvb.frontend); |
| 904 | dev->dvb.frontend = NULL; |
| 905 | } |
| 906 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 907 | } |
| 908 | |
| 909 | /* ----------------------------------------------------------- */ |
| 910 | |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 911 | /* CX8802 MPEG -> mini driver - We have been given the hardware */ |
| 912 | static int cx8802_dvb_advise_acquire(struct cx8802_driver *drv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 913 | { |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 914 | struct cx88_core *core = drv->core; |
| 915 | int err = 0; |
Harvey Harrison | 32d83ef | 2008-04-08 23:20:00 -0300 | [diff] [blame] | 916 | dprintk( 1, "%s\n", __func__); |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 917 | |
Trent Piepho | 6a59d64 | 2007-08-15 14:41:57 -0300 | [diff] [blame] | 918 | switch (core->boardnr) { |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 919 | case CX88_BOARD_HAUPPAUGE_HVR1300: |
| 920 | /* We arrive here with either the cx23416 or the cx22702 |
| 921 | * on the bus. Take the bus from the cx23416 and enable the |
| 922 | * cx22702 demod |
| 923 | */ |
| 924 | cx_set(MO_GP0_IO, 0x00000080); /* cx22702 out of reset and enable */ |
| 925 | cx_clear(MO_GP0_IO, 0x00000004); |
| 926 | udelay(1000); |
| 927 | break; |
| 928 | default: |
| 929 | err = -ENODEV; |
| 930 | } |
| 931 | return err; |
| 932 | } |
| 933 | |
| 934 | /* CX8802 MPEG -> mini driver - We no longer have the hardware */ |
| 935 | static int cx8802_dvb_advise_release(struct cx8802_driver *drv) |
| 936 | { |
| 937 | struct cx88_core *core = drv->core; |
| 938 | int err = 0; |
Harvey Harrison | 32d83ef | 2008-04-08 23:20:00 -0300 | [diff] [blame] | 939 | dprintk( 1, "%s\n", __func__); |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 940 | |
Trent Piepho | 6a59d64 | 2007-08-15 14:41:57 -0300 | [diff] [blame] | 941 | switch (core->boardnr) { |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 942 | case CX88_BOARD_HAUPPAUGE_HVR1300: |
| 943 | /* Do Nothing, leave the cx22702 on the bus. */ |
| 944 | break; |
| 945 | default: |
| 946 | err = -ENODEV; |
| 947 | } |
| 948 | return err; |
| 949 | } |
| 950 | |
| 951 | static int cx8802_dvb_probe(struct cx8802_driver *drv) |
| 952 | { |
| 953 | struct cx88_core *core = drv->core; |
| 954 | struct cx8802_dev *dev = drv->core->dvbdev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 955 | int err; |
| 956 | |
Harvey Harrison | 32d83ef | 2008-04-08 23:20:00 -0300 | [diff] [blame] | 957 | dprintk( 1, "%s\n", __func__); |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 958 | 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] | 959 | core->boardnr, |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 960 | core->name, |
| 961 | core->pci_bus, |
| 962 | core->pci_slot); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 963 | |
| 964 | err = -ENODEV; |
Trent Piepho | 6a59d64 | 2007-08-15 14:41:57 -0300 | [diff] [blame] | 965 | if (!(core->board.mpeg & CX88_MPEG_DVB)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 966 | goto fail_core; |
| 967 | |
Trent Piepho | ecf854d | 2007-05-05 20:11:32 -0300 | [diff] [blame] | 968 | /* If vp3054 isn't enabled, a stub will just return 0 */ |
Chris Pascoe | fc40b26 | 2006-01-09 15:25:35 -0200 | [diff] [blame] | 969 | err = vp3054_i2c_probe(dev); |
| 970 | if (0 != err) |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 971 | goto fail_core; |
Chris Pascoe | fc40b26 | 2006-01-09 15:25:35 -0200 | [diff] [blame] | 972 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 973 | /* dvb stuff */ |
Trent Piepho | 5772f81 | 2007-08-15 14:41:59 -0300 | [diff] [blame] | 974 | 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] | 975 | videobuf_queue_sg_init(&dev->dvb.dvbq, &dvb_qops, |
| 976 | &dev->pci->dev, &dev->slock, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 977 | V4L2_BUF_TYPE_VIDEO_CAPTURE, |
| 978 | V4L2_FIELD_TOP, |
| 979 | sizeof(struct cx88_buffer), |
| 980 | dev); |
| 981 | err = dvb_register(dev); |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 982 | if (err != 0) |
Trent Piepho | 5772f81 | 2007-08-15 14:41:59 -0300 | [diff] [blame] | 983 | printk(KERN_ERR "%s/2: dvb_register failed (err = %d)\n", |
| 984 | core->name, err); |
Steven Toth | 611900c | 2006-01-09 15:25:12 -0200 | [diff] [blame] | 985 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 986 | fail_core: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 987 | return err; |
| 988 | } |
| 989 | |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 990 | static int cx8802_dvb_remove(struct cx8802_driver *drv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 991 | { |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 992 | struct cx8802_dev *dev = drv->core->dvbdev; |
Steven Toth | 611900c | 2006-01-09 15:25:12 -0200 | [diff] [blame] | 993 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 994 | /* dvb */ |
Mauro Carvalho Chehab | 9950c1b | 2008-04-11 11:29:44 -0300 | [diff] [blame] | 995 | if (dev->dvb.frontend) |
| 996 | videobuf_dvb_unregister(&dev->dvb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 997 | |
Chris Pascoe | fc40b26 | 2006-01-09 15:25:35 -0200 | [diff] [blame] | 998 | vp3054_i2c_remove(dev); |
Chris Pascoe | fc40b26 | 2006-01-09 15:25:35 -0200 | [diff] [blame] | 999 | |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 1000 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1001 | } |
| 1002 | |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 1003 | static struct cx8802_driver cx8802_dvb_driver = { |
| 1004 | .type_id = CX88_MPEG_DVB, |
| 1005 | .hw_access = CX8802_DRVCTL_SHARED, |
| 1006 | .probe = cx8802_dvb_probe, |
| 1007 | .remove = cx8802_dvb_remove, |
| 1008 | .advise_acquire = cx8802_dvb_advise_acquire, |
| 1009 | .advise_release = cx8802_dvb_advise_release, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1010 | }; |
| 1011 | |
| 1012 | static int dvb_init(void) |
| 1013 | { |
Trent Piepho | 5772f81 | 2007-08-15 14:41:59 -0300 | [diff] [blame] | 1014 | 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] | 1015 | (CX88_VERSION_CODE >> 16) & 0xff, |
| 1016 | (CX88_VERSION_CODE >> 8) & 0xff, |
| 1017 | CX88_VERSION_CODE & 0xff); |
| 1018 | #ifdef SNAPSHOT |
| 1019 | printk(KERN_INFO "cx2388x: snapshot date %04d-%02d-%02d\n", |
| 1020 | SNAPSHOT/10000, (SNAPSHOT/100)%100, SNAPSHOT%100); |
| 1021 | #endif |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 1022 | return cx8802_register_driver(&cx8802_dvb_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1023 | } |
| 1024 | |
| 1025 | static void dvb_fini(void) |
| 1026 | { |
Steven Toth | 6c5be74 | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 1027 | cx8802_unregister_driver(&cx8802_dvb_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1028 | } |
| 1029 | |
| 1030 | module_init(dvb_init); |
| 1031 | module_exit(dvb_fini); |
| 1032 | |
| 1033 | /* |
| 1034 | * Local variables: |
| 1035 | * c-basic-offset: 8 |
| 1036 | * compile-command: "make DVB=1" |
| 1037 | * End: |
| 1038 | */ |