Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Bt8xx based DVB adapter driver |
| 3 | * |
| 4 | * Copyright (C) 2002,2003 Florian Schirmer <jolt@tuxbox.org> |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by |
| 8 | * the Free Software Foundation; either version 2 of the License, or |
| 9 | * (at your option) any later version. |
| 10 | * |
| 11 | * This program is distributed in the hope that it will be useful, |
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | * GNU General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License |
| 17 | * along with this program; if not, write to the Free Software |
| 18 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
| 19 | * |
| 20 | */ |
| 21 | |
Jonathan Nieder | 6c59eef | 2012-01-06 14:26:41 -0300 | [diff] [blame] | 22 | #define pr_fmt(fmt) "dvb_bt8xx: " fmt |
| 23 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include <linux/bitops.h> |
| 25 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include <linux/init.h> |
Ahmed S. Darwish | 0496daa | 2007-02-14 22:57:42 -0200 | [diff] [blame] | 27 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include <linux/device.h> |
| 29 | #include <linux/delay.h> |
| 30 | #include <linux/slab.h> |
| 31 | #include <linux/i2c.h> |
| 32 | |
| 33 | #include "dmxdev.h" |
| 34 | #include "dvbdev.h" |
| 35 | #include "dvb_demux.h" |
| 36 | #include "dvb_frontend.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | #include "dvb-bt8xx.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | #include "bt878.h" |
| 39 | |
| 40 | static int debug; |
| 41 | |
| 42 | module_param(debug, int, 0644); |
| 43 | MODULE_PARM_DESC(debug, "Turn on/off debugging (default:off)."); |
| 44 | |
Janne Grunau | 78e9200 | 2008-04-09 19:13:13 -0300 | [diff] [blame] | 45 | DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr); |
| 46 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | #define dprintk( args... ) \ |
Harvey Harrison | 1744a77 | 2008-04-22 14:45:32 -0300 | [diff] [blame] | 48 | do { \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | if (debug) printk(KERN_DEBUG args); \ |
Harvey Harrison | 1744a77 | 2008-04-22 14:45:32 -0300 | [diff] [blame] | 50 | } while (0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | |
David Johnson | 05ade5a | 2005-09-09 13:02:55 -0700 | [diff] [blame] | 52 | #define IF_FREQUENCYx6 217 /* 6 * 36.16666666667MHz */ |
| 53 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | static void dvb_bt8xx_task(unsigned long data) |
| 55 | { |
| 56 | struct dvb_bt8xx_card *card = (struct dvb_bt8xx_card *)data; |
| 57 | |
| 58 | //printk("%d ", card->bt->finished_block); |
| 59 | |
| 60 | while (card->bt->last_block != card->bt->finished_block) { |
| 61 | (card->bt->TS_Size ? dvb_dmx_swfilter_204 : dvb_dmx_swfilter) |
| 62 | (&card->demux, |
| 63 | &card->bt->buf_cpu[card->bt->last_block * |
| 64 | card->bt->block_bytes], |
| 65 | card->bt->block_bytes); |
| 66 | card->bt->last_block = (card->bt->last_block + 1) % |
| 67 | card->bt->block_count; |
| 68 | } |
| 69 | } |
| 70 | |
| 71 | static int dvb_bt8xx_start_feed(struct dvb_demux_feed *dvbdmxfeed) |
| 72 | { |
Andrew de Quincey | 2bfe031 | 2006-08-08 09:10:08 -0300 | [diff] [blame] | 73 | struct dvb_demux*dvbdmx = dvbdmxfeed->demux; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | struct dvb_bt8xx_card *card = dvbdmx->priv; |
| 75 | int rc; |
| 76 | |
| 77 | dprintk("dvb_bt8xx: start_feed\n"); |
| 78 | |
| 79 | if (!dvbdmx->dmx.frontend) |
| 80 | return -EINVAL; |
| 81 | |
Ingo Molnar | 3593cab | 2006-02-07 06:49:14 -0200 | [diff] [blame] | 82 | mutex_lock(&card->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | card->nfeeds++; |
| 84 | rc = card->nfeeds; |
| 85 | if (card->nfeeds == 1) |
| 86 | bt878_start(card->bt, card->gpio_mode, |
| 87 | card->op_sync_orin, card->irq_err_ignore); |
Ingo Molnar | 3593cab | 2006-02-07 06:49:14 -0200 | [diff] [blame] | 88 | mutex_unlock(&card->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | return rc; |
| 90 | } |
| 91 | |
| 92 | static int dvb_bt8xx_stop_feed(struct dvb_demux_feed *dvbdmxfeed) |
| 93 | { |
| 94 | struct dvb_demux *dvbdmx = dvbdmxfeed->demux; |
| 95 | struct dvb_bt8xx_card *card = dvbdmx->priv; |
| 96 | |
| 97 | dprintk("dvb_bt8xx: stop_feed\n"); |
| 98 | |
| 99 | if (!dvbdmx->dmx.frontend) |
| 100 | return -EINVAL; |
| 101 | |
Ingo Molnar | 3593cab | 2006-02-07 06:49:14 -0200 | [diff] [blame] | 102 | mutex_lock(&card->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | card->nfeeds--; |
| 104 | if (card->nfeeds == 0) |
| 105 | bt878_stop(card->bt); |
Ingo Molnar | 3593cab | 2006-02-07 06:49:14 -0200 | [diff] [blame] | 106 | mutex_unlock(&card->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | |
| 108 | return 0; |
| 109 | } |
| 110 | |
| 111 | static int is_pci_slot_eq(struct pci_dev* adev, struct pci_dev* bdev) |
| 112 | { |
| 113 | if ((adev->subsystem_vendor == bdev->subsystem_vendor) && |
| 114 | (adev->subsystem_device == bdev->subsystem_device) && |
| 115 | (adev->bus->number == bdev->bus->number) && |
| 116 | (PCI_SLOT(adev->devfn) == PCI_SLOT(bdev->devfn))) |
| 117 | return 1; |
| 118 | return 0; |
| 119 | } |
| 120 | |
Jean Delvare | 8b6c879 | 2006-05-23 15:56:50 -0300 | [diff] [blame] | 121 | static struct bt878 __devinit *dvb_bt8xx_878_match(unsigned int bttv_nr, struct pci_dev* bttv_pci_dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | { |
| 123 | unsigned int card_nr; |
| 124 | |
| 125 | /* Hmm, n squared. Hope n is small */ |
David Johnson | 1f15ddd | 2005-09-09 13:02:54 -0700 | [diff] [blame] | 126 | for (card_nr = 0; card_nr < bt878_num; card_nr++) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | if (is_pci_slot_eq(bt878[card_nr].dev, bttv_pci_dev)) |
| 128 | return &bt878[card_nr]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | return NULL; |
| 130 | } |
| 131 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | static int thomson_dtt7579_demod_init(struct dvb_frontend* fe) |
| 133 | { |
| 134 | static u8 mt352_clock_config [] = { 0x89, 0x38, 0x38 }; |
| 135 | static u8 mt352_reset [] = { 0x50, 0x80 }; |
| 136 | static u8 mt352_adc_ctl_1_cfg [] = { 0x8E, 0x40 }; |
| 137 | static u8 mt352_agc_cfg [] = { 0x67, 0x28, 0x20 }; |
| 138 | static u8 mt352_gpp_ctl_cfg [] = { 0x8C, 0x33 }; |
| 139 | static u8 mt352_capt_range_cfg[] = { 0x75, 0x32 }; |
| 140 | |
| 141 | mt352_write(fe, mt352_clock_config, sizeof(mt352_clock_config)); |
| 142 | udelay(2000); |
| 143 | mt352_write(fe, mt352_reset, sizeof(mt352_reset)); |
| 144 | mt352_write(fe, mt352_adc_ctl_1_cfg, sizeof(mt352_adc_ctl_1_cfg)); |
| 145 | |
| 146 | mt352_write(fe, mt352_agc_cfg, sizeof(mt352_agc_cfg)); |
Johannes Stezenbach | 50b215a | 2005-05-16 21:54:41 -0700 | [diff] [blame] | 147 | mt352_write(fe, mt352_gpp_ctl_cfg, sizeof(mt352_gpp_ctl_cfg)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | mt352_write(fe, mt352_capt_range_cfg, sizeof(mt352_capt_range_cfg)); |
| 149 | |
| 150 | return 0; |
| 151 | } |
| 152 | |
Mauro Carvalho Chehab | 249fa0b | 2011-12-24 12:03:05 -0300 | [diff] [blame] | 153 | static int thomson_dtt7579_tuner_calc_regs(struct dvb_frontend *fe, u8* pllbuf, int buf_len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | { |
Mauro Carvalho Chehab | 249fa0b | 2011-12-24 12:03:05 -0300 | [diff] [blame] | 155 | struct dtv_frontend_properties *c = &fe->dtv_property_cache; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | u32 div; |
| 157 | unsigned char bs = 0; |
| 158 | unsigned char cp = 0; |
| 159 | |
Andrew de Quincey | 74aa7a2 | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 160 | if (buf_len < 5) |
| 161 | return -EINVAL; |
| 162 | |
Mauro Carvalho Chehab | 249fa0b | 2011-12-24 12:03:05 -0300 | [diff] [blame] | 163 | div = (((c->frequency + 83333) * 3) / 500000) + IF_FREQUENCYx6; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | |
Mauro Carvalho Chehab | 249fa0b | 2011-12-24 12:03:05 -0300 | [diff] [blame] | 165 | if (c->frequency < 542000000) |
David Johnson | 1f15ddd | 2005-09-09 13:02:54 -0700 | [diff] [blame] | 166 | cp = 0xb4; |
Mauro Carvalho Chehab | 249fa0b | 2011-12-24 12:03:05 -0300 | [diff] [blame] | 167 | else if (c->frequency < 771000000) |
David Johnson | 1f15ddd | 2005-09-09 13:02:54 -0700 | [diff] [blame] | 168 | cp = 0xbc; |
| 169 | else |
| 170 | cp = 0xf4; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | |
Mauro Carvalho Chehab | 249fa0b | 2011-12-24 12:03:05 -0300 | [diff] [blame] | 172 | if (c->frequency == 0) |
David Johnson | 1f15ddd | 2005-09-09 13:02:54 -0700 | [diff] [blame] | 173 | bs = 0x03; |
Mauro Carvalho Chehab | 249fa0b | 2011-12-24 12:03:05 -0300 | [diff] [blame] | 174 | else if (c->frequency < 443250000) |
David Johnson | 1f15ddd | 2005-09-09 13:02:54 -0700 | [diff] [blame] | 175 | bs = 0x02; |
| 176 | else |
| 177 | bs = 0x08; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | |
Andrew de Quincey | 74aa7a2 | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 179 | pllbuf[0] = 0x60; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | pllbuf[1] = div >> 8; |
| 181 | pllbuf[2] = div & 0xff; |
| 182 | pllbuf[3] = cp; |
| 183 | pllbuf[4] = bs; |
| 184 | |
Andrew de Quincey | 74aa7a2 | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 185 | return 5; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | } |
| 187 | |
| 188 | static struct mt352_config thomson_dtt7579_config = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | .demod_address = 0x0f, |
| 190 | .demod_init = thomson_dtt7579_demod_init, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | }; |
| 192 | |
Michael Krufky | 8c99024 | 2006-04-11 01:46:46 -0300 | [diff] [blame] | 193 | static struct zl10353_config thomson_dtt7579_zl10353_config = { |
| 194 | .demod_address = 0x0f, |
Michael Krufky | 8c99024 | 2006-04-11 01:46:46 -0300 | [diff] [blame] | 195 | }; |
| 196 | |
Mauro Carvalho Chehab | 14d24d1 | 2011-12-24 12:24:33 -0300 | [diff] [blame] | 197 | static int cx24108_tuner_set_params(struct dvb_frontend *fe) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | { |
Mauro Carvalho Chehab | cba3f88 | 2011-12-21 10:21:21 -0300 | [diff] [blame] | 199 | struct dtv_frontend_properties *c = &fe->dtv_property_cache; |
| 200 | u32 freq = c->frequency; |
David Johnson | 1f15ddd | 2005-09-09 13:02:54 -0700 | [diff] [blame] | 201 | int i, a, n, pump; |
| 202 | u32 band, pll; |
David Johnson | 1f15ddd | 2005-09-09 13:02:54 -0700 | [diff] [blame] | 203 | u32 osci[]={950000,1019000,1075000,1178000,1296000,1432000, |
| 204 | 1576000,1718000,1856000,2036000,2150000}; |
| 205 | u32 bandsel[]={0,0x00020000,0x00040000,0x00100800,0x00101000, |
| 206 | 0x00102000,0x00104000,0x00108000,0x00110000, |
| 207 | 0x00120000,0x00140000}; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | |
David Johnson | 1f15ddd | 2005-09-09 13:02:54 -0700 | [diff] [blame] | 209 | #define XTAL 1011100 /* Hz, really 1.0111 MHz and a /10 prescaler */ |
Jonathan Nieder | 3796554 | 2012-01-06 14:26:14 -0300 | [diff] [blame] | 210 | dprintk("cx24108 debug: entering SetTunerFreq, freq=%d\n", freq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | |
Johannes Stezenbach | 50b215a | 2005-05-16 21:54:41 -0700 | [diff] [blame] | 212 | /* This is really the bit driving the tuner chip cx24108 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | |
David Johnson | 1f15ddd | 2005-09-09 13:02:54 -0700 | [diff] [blame] | 214 | if (freq<950000) |
| 215 | freq = 950000; /* kHz */ |
| 216 | else if (freq>2150000) |
| 217 | freq = 2150000; /* satellite IF is 950..2150MHz */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | |
Johannes Stezenbach | 50b215a | 2005-05-16 21:54:41 -0700 | [diff] [blame] | 219 | /* decide which VCO to use for the input frequency */ |
Hans Verkuil | 491aa96 | 2009-11-25 18:48:54 -0300 | [diff] [blame] | 220 | for(i = 1; (i < ARRAY_SIZE(osci) - 1) && (osci[i] < freq); i++); |
Jonathan Nieder | 3796554 | 2012-01-06 14:26:14 -0300 | [diff] [blame] | 221 | dprintk("cx24108 debug: select vco #%d (f=%d)\n", i, freq); |
Johannes Stezenbach | 50b215a | 2005-05-16 21:54:41 -0700 | [diff] [blame] | 222 | band=bandsel[i]; |
| 223 | /* the gain values must be set by SetSymbolrate */ |
| 224 | /* compute the pll divider needed, from Conexant data sheet, |
| 225 | resolved for (n*32+a), remember f(vco) is f(receive) *2 or *4, |
| 226 | depending on the divider bit. It is set to /4 on the 2 lowest |
| 227 | bands */ |
| 228 | n=((i<=2?2:1)*freq*10L)/(XTAL/100); |
| 229 | a=n%32; n/=32; if(a==0) n--; |
| 230 | pump=(freq<(osci[i-1]+osci[i])/2); |
| 231 | pll=0xf8000000| |
| 232 | ((pump?1:2)<<(14+11))| |
| 233 | ((n&0x1ff)<<(5+11))| |
| 234 | ((a&0x1f)<<11); |
| 235 | /* everything is shifted left 11 bits to left-align the bits in the |
| 236 | 32bit word. Output to the tuner goes MSB-aligned, after all */ |
Jonathan Nieder | 3796554 | 2012-01-06 14:26:14 -0300 | [diff] [blame] | 237 | dprintk("cx24108 debug: pump=%d, n=%d, a=%d\n", pump, n, a); |
Johannes Stezenbach | 50b215a | 2005-05-16 21:54:41 -0700 | [diff] [blame] | 238 | cx24110_pll_write(fe,band); |
| 239 | /* set vga and vca to their widest-band settings, as a precaution. |
| 240 | SetSymbolrate might not be called to set this up */ |
| 241 | cx24110_pll_write(fe,0x500c0000); |
| 242 | cx24110_pll_write(fe,0x83f1f800); |
| 243 | cx24110_pll_write(fe,pll); |
David Johnson | 1f15ddd | 2005-09-09 13:02:54 -0700 | [diff] [blame] | 244 | //writereg(client,0x56,0x7f); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | |
| 246 | return 0; |
| 247 | } |
| 248 | |
Andrew de Quincey | 74aa7a2 | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 249 | static int pinnsat_tuner_init(struct dvb_frontend* fe) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | { |
Manu Abraham | e7ac464 | 2006-02-27 00:09:29 -0300 | [diff] [blame] | 251 | struct dvb_bt8xx_card *card = fe->dvb->priv; |
| 252 | |
| 253 | bttv_gpio_enable(card->bttv_nr, 1, 1); /* output */ |
| 254 | bttv_write_gpio(card->bttv_nr, 1, 1); /* relay on */ |
Ian Pickworth | 6457af5 | 2006-02-27 00:09:45 -0300 | [diff] [blame] | 255 | |
Manu Abraham | e7ac464 | 2006-02-27 00:09:29 -0300 | [diff] [blame] | 256 | return 0; |
| 257 | } |
| 258 | |
Andrew de Quincey | 74aa7a2 | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 259 | static int pinnsat_tuner_sleep(struct dvb_frontend* fe) |
Manu Abraham | e7ac464 | 2006-02-27 00:09:29 -0300 | [diff] [blame] | 260 | { |
| 261 | struct dvb_bt8xx_card *card = fe->dvb->priv; |
| 262 | |
| 263 | bttv_write_gpio(card->bttv_nr, 1, 0); /* relay off */ |
| 264 | |
David Johnson | 1f15ddd | 2005-09-09 13:02:54 -0700 | [diff] [blame] | 265 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | } |
| 267 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | static struct cx24110_config pctvsat_config = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | .demod_address = 0x55, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | }; |
| 271 | |
Mauro Carvalho Chehab | 14d24d1 | 2011-12-24 12:24:33 -0300 | [diff] [blame] | 272 | static int microtune_mt7202dtf_tuner_set_params(struct dvb_frontend *fe) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | { |
Mauro Carvalho Chehab | cba3f88 | 2011-12-21 10:21:21 -0300 | [diff] [blame] | 274 | struct dtv_frontend_properties *c = &fe->dtv_property_cache; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | struct dvb_bt8xx_card *card = (struct dvb_bt8xx_card *) fe->dvb->priv; |
| 276 | u8 cfg, cpump, band_select; |
| 277 | u8 data[4]; |
| 278 | u32 div; |
| 279 | struct i2c_msg msg = { .addr = 0x60, .flags = 0, .buf = data, .len = sizeof(data) }; |
| 280 | |
Mauro Carvalho Chehab | cba3f88 | 2011-12-21 10:21:21 -0300 | [diff] [blame] | 281 | div = (36000000 + c->frequency + 83333) / 166666; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | cfg = 0x88; |
| 283 | |
Mauro Carvalho Chehab | cba3f88 | 2011-12-21 10:21:21 -0300 | [diff] [blame] | 284 | if (c->frequency < 175000000) |
David Johnson | 1f15ddd | 2005-09-09 13:02:54 -0700 | [diff] [blame] | 285 | cpump = 2; |
Mauro Carvalho Chehab | cba3f88 | 2011-12-21 10:21:21 -0300 | [diff] [blame] | 286 | else if (c->frequency < 390000000) |
David Johnson | 1f15ddd | 2005-09-09 13:02:54 -0700 | [diff] [blame] | 287 | cpump = 1; |
Mauro Carvalho Chehab | cba3f88 | 2011-12-21 10:21:21 -0300 | [diff] [blame] | 288 | else if (c->frequency < 470000000) |
David Johnson | 1f15ddd | 2005-09-09 13:02:54 -0700 | [diff] [blame] | 289 | cpump = 2; |
Mauro Carvalho Chehab | cba3f88 | 2011-12-21 10:21:21 -0300 | [diff] [blame] | 290 | else if (c->frequency < 750000000) |
David Johnson | 1f15ddd | 2005-09-09 13:02:54 -0700 | [diff] [blame] | 291 | cpump = 2; |
| 292 | else |
| 293 | cpump = 3; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | |
Mauro Carvalho Chehab | cba3f88 | 2011-12-21 10:21:21 -0300 | [diff] [blame] | 295 | if (c->frequency < 175000000) |
David Johnson | 1f15ddd | 2005-09-09 13:02:54 -0700 | [diff] [blame] | 296 | band_select = 0x0e; |
Mauro Carvalho Chehab | cba3f88 | 2011-12-21 10:21:21 -0300 | [diff] [blame] | 297 | else if (c->frequency < 470000000) |
David Johnson | 1f15ddd | 2005-09-09 13:02:54 -0700 | [diff] [blame] | 298 | band_select = 0x05; |
| 299 | else |
| 300 | band_select = 0x03; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | |
| 302 | data[0] = (div >> 8) & 0x7f; |
| 303 | data[1] = div & 0xff; |
| 304 | data[2] = ((div >> 10) & 0x60) | cfg; |
Michael Krufky | 2b70a2f | 2005-11-08 21:35:16 -0800 | [diff] [blame] | 305 | data[3] = (cpump << 6) | band_select; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | |
Patrick Boettcher | dea7486 | 2006-05-14 05:01:31 -0300 | [diff] [blame] | 307 | if (fe->ops.i2c_gate_ctrl) |
| 308 | fe->ops.i2c_gate_ctrl(fe, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | i2c_transfer(card->i2c_adapter, &msg, 1); |
| 310 | return (div * 166666 - 36000000); |
| 311 | } |
| 312 | |
| 313 | static int microtune_mt7202dtf_request_firmware(struct dvb_frontend* fe, const struct firmware **fw, char* name) |
| 314 | { |
| 315 | struct dvb_bt8xx_card* bt = (struct dvb_bt8xx_card*) fe->dvb->priv; |
| 316 | |
| 317 | return request_firmware(fw, name, &bt->bt->dev->dev); |
| 318 | } |
| 319 | |
| 320 | static struct sp887x_config microtune_mt7202dtf_config = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | .demod_address = 0x70, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | .request_firmware = microtune_mt7202dtf_request_firmware, |
| 323 | }; |
| 324 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | static int advbt771_samsung_tdtc9251dh0_demod_init(struct dvb_frontend* fe) |
| 326 | { |
| 327 | static u8 mt352_clock_config [] = { 0x89, 0x38, 0x2d }; |
| 328 | static u8 mt352_reset [] = { 0x50, 0x80 }; |
| 329 | static u8 mt352_adc_ctl_1_cfg [] = { 0x8E, 0x40 }; |
| 330 | static u8 mt352_agc_cfg [] = { 0x67, 0x10, 0x23, 0x00, 0xFF, 0xFF, |
Johannes Stezenbach | 50b215a | 2005-05-16 21:54:41 -0700 | [diff] [blame] | 331 | 0x00, 0xFF, 0x00, 0x40, 0x40 }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | static u8 mt352_av771_extra[] = { 0xB5, 0x7A }; |
| 333 | static u8 mt352_capt_range_cfg[] = { 0x75, 0x32 }; |
| 334 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | mt352_write(fe, mt352_clock_config, sizeof(mt352_clock_config)); |
| 336 | udelay(2000); |
| 337 | mt352_write(fe, mt352_reset, sizeof(mt352_reset)); |
| 338 | mt352_write(fe, mt352_adc_ctl_1_cfg, sizeof(mt352_adc_ctl_1_cfg)); |
| 339 | |
| 340 | mt352_write(fe, mt352_agc_cfg,sizeof(mt352_agc_cfg)); |
| 341 | udelay(2000); |
| 342 | mt352_write(fe, mt352_av771_extra,sizeof(mt352_av771_extra)); |
| 343 | mt352_write(fe, mt352_capt_range_cfg, sizeof(mt352_capt_range_cfg)); |
| 344 | |
| 345 | return 0; |
| 346 | } |
| 347 | |
Mauro Carvalho Chehab | 249fa0b | 2011-12-24 12:03:05 -0300 | [diff] [blame] | 348 | static int advbt771_samsung_tdtc9251dh0_tuner_calc_regs(struct dvb_frontend *fe, u8 *pllbuf, int buf_len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | { |
Mauro Carvalho Chehab | 249fa0b | 2011-12-24 12:03:05 -0300 | [diff] [blame] | 350 | struct dtv_frontend_properties *c = &fe->dtv_property_cache; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | u32 div; |
| 352 | unsigned char bs = 0; |
| 353 | unsigned char cp = 0; |
| 354 | |
Andrew de Quincey | 74aa7a2 | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 355 | if (buf_len < 5) return -EINVAL; |
| 356 | |
Mauro Carvalho Chehab | 249fa0b | 2011-12-24 12:03:05 -0300 | [diff] [blame] | 357 | div = (((c->frequency + 83333) * 3) / 500000) + IF_FREQUENCYx6; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | |
Mauro Carvalho Chehab | 249fa0b | 2011-12-24 12:03:05 -0300 | [diff] [blame] | 359 | if (c->frequency < 150000000) |
David Johnson | 1f15ddd | 2005-09-09 13:02:54 -0700 | [diff] [blame] | 360 | cp = 0xB4; |
Mauro Carvalho Chehab | 249fa0b | 2011-12-24 12:03:05 -0300 | [diff] [blame] | 361 | else if (c->frequency < 173000000) |
David Johnson | 1f15ddd | 2005-09-09 13:02:54 -0700 | [diff] [blame] | 362 | cp = 0xBC; |
Mauro Carvalho Chehab | 249fa0b | 2011-12-24 12:03:05 -0300 | [diff] [blame] | 363 | else if (c->frequency < 250000000) |
David Johnson | 1f15ddd | 2005-09-09 13:02:54 -0700 | [diff] [blame] | 364 | cp = 0xB4; |
Mauro Carvalho Chehab | 249fa0b | 2011-12-24 12:03:05 -0300 | [diff] [blame] | 365 | else if (c->frequency < 400000000) |
David Johnson | 1f15ddd | 2005-09-09 13:02:54 -0700 | [diff] [blame] | 366 | cp = 0xBC; |
Mauro Carvalho Chehab | 249fa0b | 2011-12-24 12:03:05 -0300 | [diff] [blame] | 367 | else if (c->frequency < 420000000) |
David Johnson | 1f15ddd | 2005-09-09 13:02:54 -0700 | [diff] [blame] | 368 | cp = 0xF4; |
Mauro Carvalho Chehab | 249fa0b | 2011-12-24 12:03:05 -0300 | [diff] [blame] | 369 | else if (c->frequency < 470000000) |
David Johnson | 1f15ddd | 2005-09-09 13:02:54 -0700 | [diff] [blame] | 370 | cp = 0xFC; |
Mauro Carvalho Chehab | 249fa0b | 2011-12-24 12:03:05 -0300 | [diff] [blame] | 371 | else if (c->frequency < 600000000) |
David Johnson | 1f15ddd | 2005-09-09 13:02:54 -0700 | [diff] [blame] | 372 | cp = 0xBC; |
Mauro Carvalho Chehab | 249fa0b | 2011-12-24 12:03:05 -0300 | [diff] [blame] | 373 | else if (c->frequency < 730000000) |
David Johnson | 1f15ddd | 2005-09-09 13:02:54 -0700 | [diff] [blame] | 374 | cp = 0xF4; |
| 375 | else |
| 376 | cp = 0xFC; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | |
Mauro Carvalho Chehab | 249fa0b | 2011-12-24 12:03:05 -0300 | [diff] [blame] | 378 | if (c->frequency < 150000000) |
David Johnson | 1f15ddd | 2005-09-09 13:02:54 -0700 | [diff] [blame] | 379 | bs = 0x01; |
Mauro Carvalho Chehab | 249fa0b | 2011-12-24 12:03:05 -0300 | [diff] [blame] | 380 | else if (c->frequency < 173000000) |
David Johnson | 1f15ddd | 2005-09-09 13:02:54 -0700 | [diff] [blame] | 381 | bs = 0x01; |
Mauro Carvalho Chehab | 249fa0b | 2011-12-24 12:03:05 -0300 | [diff] [blame] | 382 | else if (c->frequency < 250000000) |
David Johnson | 1f15ddd | 2005-09-09 13:02:54 -0700 | [diff] [blame] | 383 | bs = 0x02; |
Mauro Carvalho Chehab | 249fa0b | 2011-12-24 12:03:05 -0300 | [diff] [blame] | 384 | else if (c->frequency < 400000000) |
David Johnson | 1f15ddd | 2005-09-09 13:02:54 -0700 | [diff] [blame] | 385 | bs = 0x02; |
Mauro Carvalho Chehab | 249fa0b | 2011-12-24 12:03:05 -0300 | [diff] [blame] | 386 | else if (c->frequency < 420000000) |
David Johnson | 1f15ddd | 2005-09-09 13:02:54 -0700 | [diff] [blame] | 387 | bs = 0x02; |
Mauro Carvalho Chehab | 249fa0b | 2011-12-24 12:03:05 -0300 | [diff] [blame] | 388 | else if (c->frequency < 470000000) |
David Johnson | 1f15ddd | 2005-09-09 13:02:54 -0700 | [diff] [blame] | 389 | bs = 0x02; |
Mauro Carvalho Chehab | 249fa0b | 2011-12-24 12:03:05 -0300 | [diff] [blame] | 390 | else if (c->frequency < 600000000) |
David Johnson | 1f15ddd | 2005-09-09 13:02:54 -0700 | [diff] [blame] | 391 | bs = 0x08; |
Mauro Carvalho Chehab | 249fa0b | 2011-12-24 12:03:05 -0300 | [diff] [blame] | 392 | else if (c->frequency < 730000000) |
David Johnson | 1f15ddd | 2005-09-09 13:02:54 -0700 | [diff] [blame] | 393 | bs = 0x08; |
| 394 | else |
| 395 | bs = 0x08; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | |
Andrew de Quincey | 74aa7a2 | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 397 | pllbuf[0] = 0x61; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | pllbuf[1] = div >> 8; |
| 399 | pllbuf[2] = div & 0xff; |
| 400 | pllbuf[3] = cp; |
| 401 | pllbuf[4] = bs; |
| 402 | |
Andrew de Quincey | 74aa7a2 | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 403 | return 5; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | } |
| 405 | |
| 406 | static struct mt352_config advbt771_samsung_tdtc9251dh0_config = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | .demod_address = 0x0f, |
| 408 | .demod_init = advbt771_samsung_tdtc9251dh0_demod_init, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | }; |
| 410 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | static struct dst_config dst_config = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | .demod_address = 0x55, |
| 413 | }; |
| 414 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 415 | static int or51211_request_firmware(struct dvb_frontend* fe, const struct firmware **fw, char* name) |
| 416 | { |
| 417 | struct dvb_bt8xx_card* bt = (struct dvb_bt8xx_card*) fe->dvb->priv; |
| 418 | |
| 419 | return request_firmware(fw, name, &bt->bt->dev->dev); |
| 420 | } |
| 421 | |
| 422 | static void or51211_setmode(struct dvb_frontend * fe, int mode) |
| 423 | { |
| 424 | struct dvb_bt8xx_card *bt = fe->dvb->priv; |
| 425 | bttv_write_gpio(bt->bttv_nr, 0x0002, mode); /* Reset */ |
| 426 | msleep(20); |
| 427 | } |
| 428 | |
| 429 | static void or51211_reset(struct dvb_frontend * fe) |
| 430 | { |
| 431 | struct dvb_bt8xx_card *bt = fe->dvb->priv; |
| 432 | |
| 433 | /* RESET DEVICE |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 434 | * reset is controlled by GPIO-0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | * when set to 0 causes reset and when to 1 for normal op |
| 436 | * must remain reset for 128 clock cycles on a 50Mhz clock |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 437 | * also PRM1 PRM2 & PRM4 are controlled by GPIO-1,GPIO-2 & GPIO-4 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | * We assume that the reset has be held low long enough or we |
| 439 | * have been reset by a power on. When the driver is unloaded |
| 440 | * reset set to 0 so if reloaded we have been reset. |
| 441 | */ |
| 442 | /* reset & PRM1,2&4 are outputs */ |
| 443 | int ret = bttv_gpio_enable(bt->bttv_nr, 0x001F, 0x001F); |
David Johnson | 1f15ddd | 2005-09-09 13:02:54 -0700 | [diff] [blame] | 444 | if (ret != 0) |
David Johnson | 05ade5a | 2005-09-09 13:02:55 -0700 | [diff] [blame] | 445 | printk(KERN_WARNING "or51211: Init Error - Can't Reset DVR (%i)\n", ret); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 446 | bttv_write_gpio(bt->bttv_nr, 0x001F, 0x0000); /* Reset */ |
| 447 | msleep(20); |
| 448 | /* Now set for normal operation */ |
| 449 | bttv_write_gpio(bt->bttv_nr, 0x0001F, 0x0001); |
| 450 | /* wait for operation to begin */ |
| 451 | msleep(500); |
| 452 | } |
| 453 | |
| 454 | static void or51211_sleep(struct dvb_frontend * fe) |
| 455 | { |
| 456 | struct dvb_bt8xx_card *bt = fe->dvb->priv; |
| 457 | bttv_write_gpio(bt->bttv_nr, 0x0001, 0x0000); |
| 458 | } |
| 459 | |
| 460 | static struct or51211_config or51211_config = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | .demod_address = 0x15, |
| 462 | .request_firmware = or51211_request_firmware, |
| 463 | .setmode = or51211_setmode, |
| 464 | .reset = or51211_reset, |
| 465 | .sleep = or51211_sleep, |
| 466 | }; |
| 467 | |
Mauro Carvalho Chehab | 14d24d1 | 2011-12-24 12:24:33 -0300 | [diff] [blame] | 468 | static int vp3021_alps_tded4_tuner_set_params(struct dvb_frontend *fe) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | { |
Mauro Carvalho Chehab | cba3f88 | 2011-12-21 10:21:21 -0300 | [diff] [blame] | 470 | struct dtv_frontend_properties *c = &fe->dtv_property_cache; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | struct dvb_bt8xx_card *card = (struct dvb_bt8xx_card *) fe->dvb->priv; |
| 472 | u8 buf[4]; |
| 473 | u32 div; |
| 474 | struct i2c_msg msg = { .addr = 0x60, .flags = 0, .buf = buf, .len = sizeof(buf) }; |
| 475 | |
Mauro Carvalho Chehab | cba3f88 | 2011-12-21 10:21:21 -0300 | [diff] [blame] | 476 | div = (c->frequency + 36166667) / 166667; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 477 | |
| 478 | buf[0] = (div >> 8) & 0x7F; |
| 479 | buf[1] = div & 0xFF; |
| 480 | buf[2] = 0x85; |
Mauro Carvalho Chehab | cba3f88 | 2011-12-21 10:21:21 -0300 | [diff] [blame] | 481 | if ((c->frequency >= 47000000) && (c->frequency < 153000000)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | buf[3] = 0x01; |
Mauro Carvalho Chehab | cba3f88 | 2011-12-21 10:21:21 -0300 | [diff] [blame] | 483 | else if ((c->frequency >= 153000000) && (c->frequency < 430000000)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | buf[3] = 0x02; |
Mauro Carvalho Chehab | cba3f88 | 2011-12-21 10:21:21 -0300 | [diff] [blame] | 485 | else if ((c->frequency >= 430000000) && (c->frequency < 824000000)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | buf[3] = 0x0C; |
Mauro Carvalho Chehab | cba3f88 | 2011-12-21 10:21:21 -0300 | [diff] [blame] | 487 | else if ((c->frequency >= 824000000) && (c->frequency < 863000000)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 488 | buf[3] = 0x8C; |
| 489 | else |
| 490 | return -EINVAL; |
| 491 | |
Patrick Boettcher | dea7486 | 2006-05-14 05:01:31 -0300 | [diff] [blame] | 492 | if (fe->ops.i2c_gate_ctrl) |
| 493 | fe->ops.i2c_gate_ctrl(fe, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | i2c_transfer(card->i2c_adapter, &msg, 1); |
| 495 | return 0; |
| 496 | } |
| 497 | |
| 498 | static struct nxt6000_config vp3021_alps_tded4_config = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 499 | .demod_address = 0x0a, |
| 500 | .clock_inversion = 1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 501 | }; |
| 502 | |
David Johnson | 05ade5a | 2005-09-09 13:02:55 -0700 | [diff] [blame] | 503 | static int digitv_alps_tded4_demod_init(struct dvb_frontend* fe) |
| 504 | { |
| 505 | static u8 mt352_clock_config [] = { 0x89, 0x38, 0x2d }; |
| 506 | static u8 mt352_reset [] = { 0x50, 0x80 }; |
| 507 | static u8 mt352_adc_ctl_1_cfg [] = { 0x8E, 0x40 }; |
| 508 | static u8 mt352_agc_cfg [] = { 0x67, 0x20, 0xa0 }; |
| 509 | static u8 mt352_capt_range_cfg[] = { 0x75, 0x32 }; |
| 510 | |
| 511 | mt352_write(fe, mt352_clock_config, sizeof(mt352_clock_config)); |
| 512 | udelay(2000); |
| 513 | mt352_write(fe, mt352_reset, sizeof(mt352_reset)); |
| 514 | mt352_write(fe, mt352_adc_ctl_1_cfg, sizeof(mt352_adc_ctl_1_cfg)); |
| 515 | mt352_write(fe, mt352_agc_cfg,sizeof(mt352_agc_cfg)); |
| 516 | mt352_write(fe, mt352_capt_range_cfg, sizeof(mt352_capt_range_cfg)); |
| 517 | |
| 518 | return 0; |
| 519 | } |
| 520 | |
Mauro Carvalho Chehab | 249fa0b | 2011-12-24 12:03:05 -0300 | [diff] [blame] | 521 | static int digitv_alps_tded4_tuner_calc_regs(struct dvb_frontend *fe, u8 *pllbuf, int buf_len) |
David Johnson | 05ade5a | 2005-09-09 13:02:55 -0700 | [diff] [blame] | 522 | { |
| 523 | u32 div; |
Mauro Carvalho Chehab | 249fa0b | 2011-12-24 12:03:05 -0300 | [diff] [blame] | 524 | struct dtv_frontend_properties *c = &fe->dtv_property_cache; |
David Johnson | 05ade5a | 2005-09-09 13:02:55 -0700 | [diff] [blame] | 525 | |
Andrew de Quincey | 74aa7a2 | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 526 | if (buf_len < 5) |
| 527 | return -EINVAL; |
| 528 | |
Mauro Carvalho Chehab | 249fa0b | 2011-12-24 12:03:05 -0300 | [diff] [blame] | 529 | div = (((c->frequency + 83333) * 3) / 500000) + IF_FREQUENCYx6; |
David Johnson | 05ade5a | 2005-09-09 13:02:55 -0700 | [diff] [blame] | 530 | |
Andrew de Quincey | 74aa7a2 | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 531 | pllbuf[0] = 0x61; |
David Johnson | 05ade5a | 2005-09-09 13:02:55 -0700 | [diff] [blame] | 532 | pllbuf[1] = (div >> 8) & 0x7F; |
| 533 | pllbuf[2] = div & 0xFF; |
| 534 | pllbuf[3] = 0x85; |
| 535 | |
Mauro Carvalho Chehab | 249fa0b | 2011-12-24 12:03:05 -0300 | [diff] [blame] | 536 | dprintk("frequency %u, div %u\n", c->frequency, div); |
David Johnson | 05ade5a | 2005-09-09 13:02:55 -0700 | [diff] [blame] | 537 | |
Mauro Carvalho Chehab | 249fa0b | 2011-12-24 12:03:05 -0300 | [diff] [blame] | 538 | if (c->frequency < 470000000) |
David Johnson | 05ade5a | 2005-09-09 13:02:55 -0700 | [diff] [blame] | 539 | pllbuf[4] = 0x02; |
Mauro Carvalho Chehab | 249fa0b | 2011-12-24 12:03:05 -0300 | [diff] [blame] | 540 | else if (c->frequency > 823000000) |
David Johnson | 05ade5a | 2005-09-09 13:02:55 -0700 | [diff] [blame] | 541 | pllbuf[4] = 0x88; |
| 542 | else |
| 543 | pllbuf[4] = 0x08; |
| 544 | |
Mauro Carvalho Chehab | 249fa0b | 2011-12-24 12:03:05 -0300 | [diff] [blame] | 545 | if (c->bandwidth_hz == 8000000) |
David Johnson | 05ade5a | 2005-09-09 13:02:55 -0700 | [diff] [blame] | 546 | pllbuf[4] |= 0x04; |
| 547 | |
Andrew de Quincey | 74aa7a2 | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 548 | return 5; |
David Johnson | 05ade5a | 2005-09-09 13:02:55 -0700 | [diff] [blame] | 549 | } |
| 550 | |
| 551 | static void digitv_alps_tded4_reset(struct dvb_bt8xx_card *bt) |
| 552 | { |
| 553 | /* |
| 554 | * Reset the frontend, must be called before trying |
| 555 | * to initialise the MT352 or mt352_attach |
Stuart Auchterlonie | 163d8fe | 2005-11-08 21:35:40 -0800 | [diff] [blame] | 556 | * will fail. Same goes for the nxt6000 frontend. |
David Johnson | 05ade5a | 2005-09-09 13:02:55 -0700 | [diff] [blame] | 557 | * |
| 558 | */ |
| 559 | |
| 560 | int ret = bttv_gpio_enable(bt->bttv_nr, 0x08, 0x08); |
| 561 | if (ret != 0) |
| 562 | printk(KERN_WARNING "digitv_alps_tded4: Init Error - Can't Reset DVR (%i)\n", ret); |
| 563 | |
| 564 | /* Pulse the reset line */ |
| 565 | bttv_write_gpio(bt->bttv_nr, 0x08, 0x08); /* High */ |
| 566 | bttv_write_gpio(bt->bttv_nr, 0x08, 0x00); /* Low */ |
| 567 | msleep(100); |
| 568 | |
| 569 | bttv_write_gpio(bt->bttv_nr, 0x08, 0x08); /* High */ |
| 570 | } |
| 571 | |
| 572 | static struct mt352_config digitv_alps_tded4_config = { |
| 573 | .demod_address = 0x0a, |
| 574 | .demod_init = digitv_alps_tded4_demod_init, |
David Johnson | 05ade5a | 2005-09-09 13:02:55 -0700 | [diff] [blame] | 575 | }; |
| 576 | |
Michael Krufky | 3cff00d | 2005-11-08 21:35:12 -0800 | [diff] [blame] | 577 | static struct lgdt330x_config tdvs_tua6034_config = { |
| 578 | .demod_address = 0x0e, |
| 579 | .demod_chip = LGDT3303, |
| 580 | .serial_mpeg = 0x40, /* TPSERIAL for 3303 in TOP_CONTROL */ |
Michael Krufky | 3cff00d | 2005-11-08 21:35:12 -0800 | [diff] [blame] | 581 | }; |
| 582 | |
| 583 | static void lgdt330x_reset(struct dvb_bt8xx_card *bt) |
| 584 | { |
| 585 | /* Set pin 27 of the lgdt3303 chip high to reset the frontend */ |
| 586 | |
| 587 | /* Pulse the reset line */ |
| 588 | bttv_write_gpio(bt->bttv_nr, 0x00e00007, 0x00000001); /* High */ |
| 589 | bttv_write_gpio(bt->bttv_nr, 0x00e00007, 0x00000000); /* Low */ |
| 590 | msleep(100); |
| 591 | |
| 592 | bttv_write_gpio(bt->bttv_nr, 0x00e00007, 0x00000001); /* High */ |
| 593 | msleep(100); |
| 594 | } |
| 595 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | static void frontend_init(struct dvb_bt8xx_card *card, u32 type) |
| 597 | { |
Johannes Stezenbach | 50b215a | 2005-05-16 21:54:41 -0700 | [diff] [blame] | 598 | struct dst_state* state = NULL; |
| 599 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 600 | switch(type) { |
Michael Krufky | 6cffcc2 | 2005-11-08 21:38:36 -0800 | [diff] [blame] | 601 | case BTTV_BOARD_DVICO_DVBT_LITE: |
Andrew de Quincey | 2bfe031 | 2006-08-08 09:10:08 -0300 | [diff] [blame] | 602 | card->fe = dvb_attach(mt352_attach, &thomson_dtt7579_config, card->i2c_adapter); |
Michael Krufky | 8c99024 | 2006-04-11 01:46:46 -0300 | [diff] [blame] | 603 | |
| 604 | if (card->fe == NULL) |
Andrew de Quincey | 2bfe031 | 2006-08-08 09:10:08 -0300 | [diff] [blame] | 605 | card->fe = dvb_attach(zl10353_attach, &thomson_dtt7579_zl10353_config, |
Michael Krufky | 8c99024 | 2006-04-11 01:46:46 -0300 | [diff] [blame] | 606 | card->i2c_adapter); |
| 607 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 608 | if (card->fe != NULL) { |
Patrick Boettcher | dea7486 | 2006-05-14 05:01:31 -0300 | [diff] [blame] | 609 | card->fe->ops.tuner_ops.calc_regs = thomson_dtt7579_tuner_calc_regs; |
| 610 | card->fe->ops.info.frequency_min = 174000000; |
| 611 | card->fe->ops.info.frequency_max = 862000000; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 612 | } |
| 613 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | |
Michael Krufky | 6cffcc2 | 2005-11-08 21:38:36 -0800 | [diff] [blame] | 615 | case BTTV_BOARD_DVICO_FUSIONHDTV_5_LITE: |
Michael Krufky | 3cff00d | 2005-11-08 21:35:12 -0800 | [diff] [blame] | 616 | lgdt330x_reset(card); |
Andrew de Quincey | 2bfe031 | 2006-08-08 09:10:08 -0300 | [diff] [blame] | 617 | card->fe = dvb_attach(lgdt330x_attach, &tdvs_tua6034_config, card->i2c_adapter); |
Andrew de Quincey | 74aa7a2 | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 618 | if (card->fe != NULL) { |
Michael Krufky | 827855d | 2008-04-22 14:46:16 -0300 | [diff] [blame] | 619 | dvb_attach(simple_tuner_attach, card->fe, |
| 620 | card->i2c_adapter, 0x61, |
| 621 | TUNER_LG_TDVS_H06XF); |
Michael Krufky | 3cff00d | 2005-11-08 21:35:12 -0800 | [diff] [blame] | 622 | dprintk ("dvb_bt8xx: lgdt330x detected\n"); |
Andrew de Quincey | 74aa7a2 | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 623 | } |
Michael Krufky | 3cff00d | 2005-11-08 21:35:12 -0800 | [diff] [blame] | 624 | break; |
Michael Krufky | 3cff00d | 2005-11-08 21:35:12 -0800 | [diff] [blame] | 625 | |
Michael Krufky | 6cffcc2 | 2005-11-08 21:38:36 -0800 | [diff] [blame] | 626 | case BTTV_BOARD_NEBULA_DIGITV: |
David Johnson | 05ade5a | 2005-09-09 13:02:55 -0700 | [diff] [blame] | 627 | /* |
| 628 | * It is possible to determine the correct frontend using the I2C bus (see the Nebula SDK); |
| 629 | * this would be a cleaner solution than trying each frontend in turn. |
| 630 | */ |
| 631 | |
| 632 | /* Old Nebula (marked (c)2003 on high profile pci card) has nxt6000 demod */ |
Stuart Auchterlonie | 163d8fe | 2005-11-08 21:35:40 -0800 | [diff] [blame] | 633 | digitv_alps_tded4_reset(card); |
Andrew de Quincey | 2bfe031 | 2006-08-08 09:10:08 -0300 | [diff] [blame] | 634 | card->fe = dvb_attach(nxt6000_attach, &vp3021_alps_tded4_config, card->i2c_adapter); |
Stuart Auchterlonie | f30db06 | 2005-09-09 13:02:56 -0700 | [diff] [blame] | 635 | if (card->fe != NULL) { |
Patrick Boettcher | dea7486 | 2006-05-14 05:01:31 -0300 | [diff] [blame] | 636 | card->fe->ops.tuner_ops.set_params = vp3021_alps_tded4_tuner_set_params; |
David Johnson | 05ade5a | 2005-09-09 13:02:55 -0700 | [diff] [blame] | 637 | dprintk ("dvb_bt8xx: an nxt6000 was detected on your digitv card\n"); |
Stuart Auchterlonie | f30db06 | 2005-09-09 13:02:56 -0700 | [diff] [blame] | 638 | break; |
| 639 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 640 | |
David Johnson | 05ade5a | 2005-09-09 13:02:55 -0700 | [diff] [blame] | 641 | /* New Nebula (marked (c)2005 on low profile pci card) has mt352 demod */ |
| 642 | digitv_alps_tded4_reset(card); |
Andrew de Quincey | 2bfe031 | 2006-08-08 09:10:08 -0300 | [diff] [blame] | 643 | card->fe = dvb_attach(mt352_attach, &digitv_alps_tded4_config, card->i2c_adapter); |
David Johnson | 05ade5a | 2005-09-09 13:02:55 -0700 | [diff] [blame] | 644 | |
Andrew de Quincey | 74aa7a2 | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 645 | if (card->fe != NULL) { |
Patrick Boettcher | dea7486 | 2006-05-14 05:01:31 -0300 | [diff] [blame] | 646 | card->fe->ops.tuner_ops.calc_regs = digitv_alps_tded4_tuner_calc_regs; |
David Johnson | 05ade5a | 2005-09-09 13:02:55 -0700 | [diff] [blame] | 647 | dprintk ("dvb_bt8xx: an mt352 was detected on your digitv card\n"); |
Andrew de Quincey | 74aa7a2 | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 648 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 649 | break; |
| 650 | |
Michael Krufky | 6cffcc2 | 2005-11-08 21:38:36 -0800 | [diff] [blame] | 651 | case BTTV_BOARD_AVDVBT_761: |
Andrew de Quincey | 2bfe031 | 2006-08-08 09:10:08 -0300 | [diff] [blame] | 652 | card->fe = dvb_attach(sp887x_attach, µtune_mt7202dtf_config, card->i2c_adapter); |
Andrew de Quincey | 74aa7a2 | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 653 | if (card->fe) { |
Patrick Boettcher | dea7486 | 2006-05-14 05:01:31 -0300 | [diff] [blame] | 654 | card->fe->ops.tuner_ops.set_params = microtune_mt7202dtf_tuner_set_params; |
Andrew de Quincey | 74aa7a2 | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 655 | } |
David Johnson | 05ade5a | 2005-09-09 13:02:55 -0700 | [diff] [blame] | 656 | break; |
| 657 | |
Michael Krufky | 6cffcc2 | 2005-11-08 21:38:36 -0800 | [diff] [blame] | 658 | case BTTV_BOARD_AVDVBT_771: |
Andrew de Quincey | 2bfe031 | 2006-08-08 09:10:08 -0300 | [diff] [blame] | 659 | card->fe = dvb_attach(mt352_attach, &advbt771_samsung_tdtc9251dh0_config, card->i2c_adapter); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 660 | if (card->fe != NULL) { |
Patrick Boettcher | dea7486 | 2006-05-14 05:01:31 -0300 | [diff] [blame] | 661 | card->fe->ops.tuner_ops.calc_regs = advbt771_samsung_tdtc9251dh0_tuner_calc_regs; |
| 662 | card->fe->ops.info.frequency_min = 174000000; |
| 663 | card->fe->ops.info.frequency_max = 862000000; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 664 | } |
| 665 | break; |
| 666 | |
Michael Krufky | 6cffcc2 | 2005-11-08 21:38:36 -0800 | [diff] [blame] | 667 | case BTTV_BOARD_TWINHAN_DST: |
Johannes Stezenbach | 50b215a | 2005-05-16 21:54:41 -0700 | [diff] [blame] | 668 | /* DST is not a frontend driver !!! */ |
Robert P. J. Day | 5cbded5 | 2006-12-13 00:35:56 -0800 | [diff] [blame] | 669 | state = kmalloc(sizeof (struct dst_state), GFP_KERNEL); |
Amit Choudhary | 626ae83 | 2006-10-09 15:50:10 -0300 | [diff] [blame] | 670 | if (!state) { |
Jonathan Nieder | 6c59eef | 2012-01-06 14:26:41 -0300 | [diff] [blame] | 671 | pr_err("No memory\n"); |
Amit Choudhary | 626ae83 | 2006-10-09 15:50:10 -0300 | [diff] [blame] | 672 | break; |
| 673 | } |
Johannes Stezenbach | 50b215a | 2005-05-16 21:54:41 -0700 | [diff] [blame] | 674 | /* Setup the Card */ |
| 675 | state->config = &dst_config; |
| 676 | state->i2c = card->i2c_adapter; |
| 677 | state->bt = card->bt; |
Manu Abraham | bbdd11f | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 678 | state->dst_ca = NULL; |
Johannes Stezenbach | 50b215a | 2005-05-16 21:54:41 -0700 | [diff] [blame] | 679 | /* DST is not a frontend, attaching the ASIC */ |
Andrew de Quincey | 2bfe031 | 2006-08-08 09:10:08 -0300 | [diff] [blame] | 680 | if (dvb_attach(dst_attach, state, &card->dvb_adapter) == NULL) { |
Jonathan Nieder | 6c59eef | 2012-01-06 14:26:41 -0300 | [diff] [blame] | 681 | pr_err("%s: Could not find a Twinhan DST\n", __func__); |
Johannes Stezenbach | 50b215a | 2005-05-16 21:54:41 -0700 | [diff] [blame] | 682 | break; |
| 683 | } |
Manu Abraham | bbdd11f | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 684 | /* Attach other DST peripherals if any */ |
| 685 | /* Conditional Access device */ |
Johannes Stezenbach | 50b215a | 2005-05-16 21:54:41 -0700 | [diff] [blame] | 686 | card->fe = &state->frontend; |
Manu Abraham | bbdd11f | 2006-08-08 15:48:08 -0300 | [diff] [blame] | 687 | if (state->dst_hw_cap & DST_TYPE_HAS_CA) |
| 688 | dvb_attach(dst_ca_attach, state, &card->dvb_adapter); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 689 | break; |
| 690 | |
Michael Krufky | 6cffcc2 | 2005-11-08 21:38:36 -0800 | [diff] [blame] | 691 | case BTTV_BOARD_PINNACLESAT: |
Andrew de Quincey | 2bfe031 | 2006-08-08 09:10:08 -0300 | [diff] [blame] | 692 | card->fe = dvb_attach(cx24110_attach, &pctvsat_config, card->i2c_adapter); |
Andrew de Quincey | 74aa7a2 | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 693 | if (card->fe) { |
Patrick Boettcher | dea7486 | 2006-05-14 05:01:31 -0300 | [diff] [blame] | 694 | card->fe->ops.tuner_ops.init = pinnsat_tuner_init; |
| 695 | card->fe->ops.tuner_ops.sleep = pinnsat_tuner_sleep; |
| 696 | card->fe->ops.tuner_ops.set_params = cx24108_tuner_set_params; |
Andrew de Quincey | 74aa7a2 | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 697 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 698 | break; |
| 699 | |
Michael Krufky | 6cffcc2 | 2005-11-08 21:38:36 -0800 | [diff] [blame] | 700 | case BTTV_BOARD_PC_HDTV: |
Andrew de Quincey | 2bfe031 | 2006-08-08 09:10:08 -0300 | [diff] [blame] | 701 | card->fe = dvb_attach(or51211_attach, &or51211_config, card->i2c_adapter); |
Michael Krufky | cd2cd0a | 2007-06-24 18:14:52 -0300 | [diff] [blame] | 702 | if (card->fe != NULL) |
Michael Krufky | 967be9a | 2008-04-22 14:46:13 -0300 | [diff] [blame] | 703 | dvb_attach(simple_tuner_attach, card->fe, |
| 704 | card->i2c_adapter, 0x61, |
| 705 | TUNER_PHILIPS_FCV1236D); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 706 | break; |
| 707 | } |
| 708 | |
David Johnson | 1f15ddd | 2005-09-09 13:02:54 -0700 | [diff] [blame] | 709 | if (card->fe == NULL) |
Jonathan Nieder | 6c59eef | 2012-01-06 14:26:41 -0300 | [diff] [blame] | 710 | pr_err("A frontend driver was not found for device [%04x:%04x] subsystem [%04x:%04x]\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 711 | card->bt->dev->vendor, |
| 712 | card->bt->dev->device, |
| 713 | card->bt->dev->subsystem_vendor, |
| 714 | card->bt->dev->subsystem_device); |
David Johnson | 1f15ddd | 2005-09-09 13:02:54 -0700 | [diff] [blame] | 715 | else |
Johannes Stezenbach | fdc53a6 | 2005-05-16 21:54:39 -0700 | [diff] [blame] | 716 | if (dvb_register_frontend(&card->dvb_adapter, card->fe)) { |
Jonathan Nieder | 6c59eef | 2012-01-06 14:26:41 -0300 | [diff] [blame] | 717 | pr_err("Frontend registration failed!\n"); |
Andrew de Quincey | f52a838 | 2006-08-08 09:10:09 -0300 | [diff] [blame] | 718 | dvb_frontend_detach(card->fe); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 719 | card->fe = NULL; |
| 720 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 721 | } |
| 722 | |
Jean Delvare | 8b6c879 | 2006-05-23 15:56:50 -0300 | [diff] [blame] | 723 | static int __devinit dvb_bt8xx_load_card(struct dvb_bt8xx_card *card, u32 type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 724 | { |
| 725 | int result; |
| 726 | |
Janne Grunau | 78e9200 | 2008-04-09 19:13:13 -0300 | [diff] [blame] | 727 | result = dvb_register_adapter(&card->dvb_adapter, card->card_name, |
| 728 | THIS_MODULE, &card->bt->dev->dev, |
| 729 | adapter_nr); |
| 730 | if (result < 0) { |
Jonathan Nieder | 6c59eef | 2012-01-06 14:26:41 -0300 | [diff] [blame] | 731 | pr_err("dvb_register_adapter failed (errno = %d)\n", result); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 732 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | } |
Johannes Stezenbach | fdc53a6 | 2005-05-16 21:54:39 -0700 | [diff] [blame] | 734 | card->dvb_adapter.priv = card; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 735 | |
| 736 | card->bt->adapter = card->i2c_adapter; |
| 737 | |
| 738 | memset(&card->demux, 0, sizeof(struct dvb_demux)); |
| 739 | |
| 740 | card->demux.dmx.capabilities = DMX_TS_FILTERING | DMX_SECTION_FILTERING | DMX_MEMORY_BASED_FILTERING; |
| 741 | |
| 742 | card->demux.priv = card; |
| 743 | card->demux.filternum = 256; |
| 744 | card->demux.feednum = 256; |
| 745 | card->demux.start_feed = dvb_bt8xx_start_feed; |
| 746 | card->demux.stop_feed = dvb_bt8xx_stop_feed; |
| 747 | card->demux.write_to_decoder = NULL; |
| 748 | |
Jonathan Nieder | e4b8537 | 2011-12-31 07:58:34 -0300 | [diff] [blame] | 749 | result = dvb_dmx_init(&card->demux); |
| 750 | if (result < 0) { |
Jonathan Nieder | 6c59eef | 2012-01-06 14:26:41 -0300 | [diff] [blame] | 751 | pr_err("dvb_dmx_init failed (errno = %d)\n", result); |
Jonathan Nieder | e4b8537 | 2011-12-31 07:58:34 -0300 | [diff] [blame] | 752 | goto err_unregister_adaptor; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 753 | } |
| 754 | |
| 755 | card->dmxdev.filternum = 256; |
| 756 | card->dmxdev.demux = &card->demux.dmx; |
| 757 | card->dmxdev.capabilities = 0; |
| 758 | |
Jonathan Nieder | e4b8537 | 2011-12-31 07:58:34 -0300 | [diff] [blame] | 759 | result = dvb_dmxdev_init(&card->dmxdev, &card->dvb_adapter); |
| 760 | if (result < 0) { |
Jonathan Nieder | 6c59eef | 2012-01-06 14:26:41 -0300 | [diff] [blame] | 761 | pr_err("dvb_dmxdev_init failed (errno = %d)\n", result); |
Jonathan Nieder | e4b8537 | 2011-12-31 07:58:34 -0300 | [diff] [blame] | 762 | goto err_dmx_release; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 763 | } |
| 764 | |
| 765 | card->fe_hw.source = DMX_FRONTEND_0; |
| 766 | |
Jonathan Nieder | e4b8537 | 2011-12-31 07:58:34 -0300 | [diff] [blame] | 767 | result = card->demux.dmx.add_frontend(&card->demux.dmx, &card->fe_hw); |
| 768 | if (result < 0) { |
Jonathan Nieder | 6c59eef | 2012-01-06 14:26:41 -0300 | [diff] [blame] | 769 | pr_err("dvb_dmx_init failed (errno = %d)\n", result); |
Jonathan Nieder | e4b8537 | 2011-12-31 07:58:34 -0300 | [diff] [blame] | 770 | goto err_dmxdev_release; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 771 | } |
| 772 | |
| 773 | card->fe_mem.source = DMX_MEMORY_FE; |
| 774 | |
Jonathan Nieder | e4b8537 | 2011-12-31 07:58:34 -0300 | [diff] [blame] | 775 | result = card->demux.dmx.add_frontend(&card->demux.dmx, &card->fe_mem); |
| 776 | if (result < 0) { |
Jonathan Nieder | 6c59eef | 2012-01-06 14:26:41 -0300 | [diff] [blame] | 777 | pr_err("dvb_dmx_init failed (errno = %d)\n", result); |
Jonathan Nieder | e4b8537 | 2011-12-31 07:58:34 -0300 | [diff] [blame] | 778 | goto err_remove_hw_frontend; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 779 | } |
| 780 | |
Jonathan Nieder | e4b8537 | 2011-12-31 07:58:34 -0300 | [diff] [blame] | 781 | result = card->demux.dmx.connect_frontend(&card->demux.dmx, &card->fe_hw); |
| 782 | if (result < 0) { |
Jonathan Nieder | 6c59eef | 2012-01-06 14:26:41 -0300 | [diff] [blame] | 783 | pr_err("dvb_dmx_init failed (errno = %d)\n", result); |
Jonathan Nieder | e4b8537 | 2011-12-31 07:58:34 -0300 | [diff] [blame] | 784 | goto err_remove_mem_frontend; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 785 | } |
| 786 | |
Jonathan Nieder | 2dbbac3 | 2011-12-31 08:06:37 -0300 | [diff] [blame] | 787 | result = dvb_net_init(&card->dvb_adapter, &card->dvbnet, &card->demux.dmx); |
| 788 | if (result < 0) { |
Jonathan Nieder | 6c59eef | 2012-01-06 14:26:41 -0300 | [diff] [blame] | 789 | pr_err("dvb_net_init failed (errno = %d)\n", result); |
Jonathan Nieder | 2dbbac3 | 2011-12-31 08:06:37 -0300 | [diff] [blame] | 790 | goto err_disconnect_frontend; |
| 791 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 792 | |
| 793 | tasklet_init(&card->bt->tasklet, dvb_bt8xx_task, (unsigned long) card); |
| 794 | |
| 795 | frontend_init(card, type); |
| 796 | |
| 797 | return 0; |
Jonathan Nieder | e4b8537 | 2011-12-31 07:58:34 -0300 | [diff] [blame] | 798 | |
Jonathan Nieder | 2dbbac3 | 2011-12-31 08:06:37 -0300 | [diff] [blame] | 799 | err_disconnect_frontend: |
| 800 | card->demux.dmx.disconnect_frontend(&card->demux.dmx); |
Jonathan Nieder | e4b8537 | 2011-12-31 07:58:34 -0300 | [diff] [blame] | 801 | err_remove_mem_frontend: |
| 802 | card->demux.dmx.remove_frontend(&card->demux.dmx, &card->fe_mem); |
| 803 | err_remove_hw_frontend: |
| 804 | card->demux.dmx.remove_frontend(&card->demux.dmx, &card->fe_hw); |
| 805 | err_dmxdev_release: |
| 806 | dvb_dmxdev_release(&card->dmxdev); |
| 807 | err_dmx_release: |
| 808 | dvb_dmx_release(&card->demux); |
| 809 | err_unregister_adaptor: |
| 810 | dvb_unregister_adapter(&card->dvb_adapter); |
| 811 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 812 | } |
| 813 | |
Jean Delvare | 8b6c879 | 2006-05-23 15:56:50 -0300 | [diff] [blame] | 814 | static int __devinit dvb_bt8xx_probe(struct bttv_sub_device *sub) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 815 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 816 | struct dvb_bt8xx_card *card; |
| 817 | struct pci_dev* bttv_pci_dev; |
| 818 | int ret; |
| 819 | |
Panagiotis Issaris | 7408187 | 2006-01-11 19:40:56 -0200 | [diff] [blame] | 820 | if (!(card = kzalloc(sizeof(struct dvb_bt8xx_card), GFP_KERNEL))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 821 | return -ENOMEM; |
| 822 | |
Ingo Molnar | 3593cab | 2006-02-07 06:49:14 -0200 | [diff] [blame] | 823 | mutex_init(&card->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 824 | card->bttv_nr = sub->core->nr; |
Hans Verkuil | 74fc7bd | 2009-03-14 12:36:54 -0300 | [diff] [blame] | 825 | strlcpy(card->card_name, sub->core->v4l2_dev.name, sizeof(card->card_name)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 826 | card->i2c_adapter = &sub->core->i2c_adap; |
| 827 | |
David Johnson | 1f15ddd | 2005-09-09 13:02:54 -0700 | [diff] [blame] | 828 | switch(sub->core->type) { |
Michael Krufky | 6cffcc2 | 2005-11-08 21:38:36 -0800 | [diff] [blame] | 829 | case BTTV_BOARD_PINNACLESAT: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 830 | card->gpio_mode = 0x0400c060; |
| 831 | /* should be: BT878_A_GAIN=0,BT878_A_PWRDN,BT878_DA_DPM,BT878_DA_SBR, |
Johannes Stezenbach | 50b215a | 2005-05-16 21:54:41 -0700 | [diff] [blame] | 832 | BT878_DA_IOM=1,BT878_DA_APP to enable serial highspeed mode. */ |
Manu Abraham | df5a4f4 | 2006-02-27 00:09:37 -0300 | [diff] [blame] | 833 | card->op_sync_orin = BT878_RISC_SYNC_MASK; |
| 834 | card->irq_err_ignore = BT878_AFBUS | BT878_AFDSR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 835 | break; |
| 836 | |
Michael Krufky | 6cffcc2 | 2005-11-08 21:38:36 -0800 | [diff] [blame] | 837 | case BTTV_BOARD_DVICO_DVBT_LITE: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 838 | card->gpio_mode = 0x0400C060; |
Manu Abraham | df5a4f4 | 2006-02-27 00:09:37 -0300 | [diff] [blame] | 839 | card->op_sync_orin = BT878_RISC_SYNC_MASK; |
| 840 | card->irq_err_ignore = BT878_AFBUS | BT878_AFDSR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 841 | /* 26, 15, 14, 6, 5 |
| 842 | * A_PWRDN DA_DPM DA_SBR DA_IOM_DA |
| 843 | * DA_APP(parallel) */ |
| 844 | break; |
| 845 | |
Michael Krufky | 6cffcc2 | 2005-11-08 21:38:36 -0800 | [diff] [blame] | 846 | case BTTV_BOARD_DVICO_FUSIONHDTV_5_LITE: |
Michael Krufky | 3cff00d | 2005-11-08 21:35:12 -0800 | [diff] [blame] | 847 | card->gpio_mode = 0x0400c060; |
| 848 | card->op_sync_orin = BT878_RISC_SYNC_MASK; |
| 849 | card->irq_err_ignore = BT878_AFBUS | BT878_AFDSR; |
| 850 | break; |
| 851 | |
Michael Krufky | 6cffcc2 | 2005-11-08 21:38:36 -0800 | [diff] [blame] | 852 | case BTTV_BOARD_NEBULA_DIGITV: |
Michael Krufky | 6cffcc2 | 2005-11-08 21:38:36 -0800 | [diff] [blame] | 853 | case BTTV_BOARD_AVDVBT_761: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 854 | card->gpio_mode = (1 << 26) | (1 << 14) | (1 << 5); |
Manu Abraham | df5a4f4 | 2006-02-27 00:09:37 -0300 | [diff] [blame] | 855 | card->op_sync_orin = BT878_RISC_SYNC_MASK; |
| 856 | card->irq_err_ignore = BT878_AFBUS | BT878_AFDSR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 857 | /* A_PWRDN DA_SBR DA_APP (high speed serial) */ |
| 858 | break; |
| 859 | |
Michael Krufky | 6cffcc2 | 2005-11-08 21:38:36 -0800 | [diff] [blame] | 860 | case BTTV_BOARD_AVDVBT_771: //case 0x07711461: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 861 | card->gpio_mode = 0x0400402B; |
| 862 | card->op_sync_orin = BT878_RISC_SYNC_MASK; |
Manu Abraham | df5a4f4 | 2006-02-27 00:09:37 -0300 | [diff] [blame] | 863 | card->irq_err_ignore = BT878_AFBUS | BT878_AFDSR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 864 | /* A_PWRDN DA_SBR DA_APP[0] PKTP=10 RISC_ENABLE FIFO_ENABLE*/ |
| 865 | break; |
| 866 | |
Michael Krufky | 6cffcc2 | 2005-11-08 21:38:36 -0800 | [diff] [blame] | 867 | case BTTV_BOARD_TWINHAN_DST: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 868 | card->gpio_mode = 0x2204f2c; |
| 869 | card->op_sync_orin = BT878_RISC_SYNC_MASK; |
| 870 | card->irq_err_ignore = BT878_APABORT | BT878_ARIPERR | |
| 871 | BT878_APPERR | BT878_AFBUS; |
| 872 | /* 25,21,14,11,10,9,8,3,2 then |
| 873 | * 0x33 = 5,4,1,0 |
| 874 | * A_SEL=SML, DA_MLB, DA_SBR, |
| 875 | * DA_SDR=f, fifo trigger = 32 DWORDS |
| 876 | * IOM = 0 == audio A/D |
| 877 | * DPM = 0 == digital audio mode |
| 878 | * == async data parallel port |
| 879 | * then 0x33 (13 is set by start_capture) |
| 880 | * DA_APP = async data parallel port, |
| 881 | * ACAP_EN = 1, |
| 882 | * RISC+FIFO ENABLE */ |
| 883 | break; |
| 884 | |
Michael Krufky | 6cffcc2 | 2005-11-08 21:38:36 -0800 | [diff] [blame] | 885 | case BTTV_BOARD_PC_HDTV: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 886 | card->gpio_mode = 0x0100EC7B; |
Manu Abraham | df5a4f4 | 2006-02-27 00:09:37 -0300 | [diff] [blame] | 887 | card->op_sync_orin = BT878_RISC_SYNC_MASK; |
| 888 | card->irq_err_ignore = BT878_AFBUS | BT878_AFDSR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 889 | break; |
| 890 | |
David Johnson | 05ade5a | 2005-09-09 13:02:55 -0700 | [diff] [blame] | 891 | default: |
Jonathan Nieder | 6c59eef | 2012-01-06 14:26:41 -0300 | [diff] [blame] | 892 | pr_err("Unknown bttv card type: %d\n", sub->core->type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 893 | kfree(card); |
| 894 | return -ENODEV; |
| 895 | } |
| 896 | |
| 897 | dprintk("dvb_bt8xx: identified card%d as %s\n", card->bttv_nr, card->card_name); |
| 898 | |
| 899 | if (!(bttv_pci_dev = bttv_get_pcidev(card->bttv_nr))) { |
Jonathan Nieder | 6c59eef | 2012-01-06 14:26:41 -0300 | [diff] [blame] | 900 | pr_err("no pci device for card %d\n", card->bttv_nr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 901 | kfree(card); |
Mauro Carvalho Chehab | 16d6c0b | 2011-07-06 09:05:41 -0300 | [diff] [blame] | 902 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 903 | } |
| 904 | |
| 905 | if (!(card->bt = dvb_bt8xx_878_match(card->bttv_nr, bttv_pci_dev))) { |
Jonathan Nieder | 6c59eef | 2012-01-06 14:26:41 -0300 | [diff] [blame] | 906 | pr_err("unable to determine DMA core of card %d,\n", card->bttv_nr); |
| 907 | pr_err("if you have the ALSA bt87x audio driver installed, try removing it.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 908 | |
| 909 | kfree(card); |
Mauro Carvalho Chehab | 16d6c0b | 2011-07-06 09:05:41 -0300 | [diff] [blame] | 910 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 911 | } |
| 912 | |
Ingo Molnar | 3593cab | 2006-02-07 06:49:14 -0200 | [diff] [blame] | 913 | mutex_init(&card->bt->gpio_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 914 | card->bt->bttv_nr = sub->core->nr; |
| 915 | |
| 916 | if ( (ret = dvb_bt8xx_load_card(card, sub->core->type)) ) { |
| 917 | kfree(card); |
| 918 | return ret; |
| 919 | } |
| 920 | |
Russell King | 348290a | 2006-01-06 11:42:03 +0000 | [diff] [blame] | 921 | dev_set_drvdata(&sub->dev, card); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 922 | return 0; |
| 923 | } |
| 924 | |
Dmitry Torokhov | a462e9f | 2006-01-15 23:32:53 -0500 | [diff] [blame] | 925 | static void dvb_bt8xx_remove(struct bttv_sub_device *sub) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 926 | { |
Russell King | 348290a | 2006-01-06 11:42:03 +0000 | [diff] [blame] | 927 | struct dvb_bt8xx_card *card = dev_get_drvdata(&sub->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 928 | |
| 929 | dprintk("dvb_bt8xx: unloading card%d\n", card->bttv_nr); |
| 930 | |
| 931 | bt878_stop(card->bt); |
| 932 | tasklet_kill(&card->bt->tasklet); |
| 933 | dvb_net_release(&card->dvbnet); |
| 934 | card->demux.dmx.remove_frontend(&card->demux.dmx, &card->fe_mem); |
| 935 | card->demux.dmx.remove_frontend(&card->demux.dmx, &card->fe_hw); |
| 936 | dvb_dmxdev_release(&card->dmxdev); |
| 937 | dvb_dmx_release(&card->demux); |
Andrew de Quincey | 2bfe031 | 2006-08-08 09:10:08 -0300 | [diff] [blame] | 938 | if (card->fe) { |
David Johnson | 1f15ddd | 2005-09-09 13:02:54 -0700 | [diff] [blame] | 939 | dvb_unregister_frontend(card->fe); |
Andrew de Quincey | f52a838 | 2006-08-08 09:10:09 -0300 | [diff] [blame] | 940 | dvb_frontend_detach(card->fe); |
Andrew de Quincey | 2bfe031 | 2006-08-08 09:10:08 -0300 | [diff] [blame] | 941 | } |
Johannes Stezenbach | fdc53a6 | 2005-05-16 21:54:39 -0700 | [diff] [blame] | 942 | dvb_unregister_adapter(&card->dvb_adapter); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 943 | |
| 944 | kfree(card); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 945 | } |
| 946 | |
| 947 | static struct bttv_sub_driver driver = { |
| 948 | .drv = { |
| 949 | .name = "dvb-bt8xx", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 950 | }, |
Russell King | 348290a | 2006-01-06 11:42:03 +0000 | [diff] [blame] | 951 | .probe = dvb_bt8xx_probe, |
| 952 | .remove = dvb_bt8xx_remove, |
| 953 | /* FIXME: |
| 954 | * .shutdown = dvb_bt8xx_shutdown, |
| 955 | * .suspend = dvb_bt8xx_suspend, |
| 956 | * .resume = dvb_bt8xx_resume, |
| 957 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 958 | }; |
| 959 | |
| 960 | static int __init dvb_bt8xx_init(void) |
| 961 | { |
| 962 | return bttv_sub_register(&driver, "dvb"); |
| 963 | } |
| 964 | |
| 965 | static void __exit dvb_bt8xx_exit(void) |
| 966 | { |
| 967 | bttv_sub_unregister(&driver); |
| 968 | } |
| 969 | |
| 970 | module_init(dvb_bt8xx_init); |
| 971 | module_exit(dvb_bt8xx_exit); |
| 972 | |
| 973 | MODULE_DESCRIPTION("Bt8xx based DVB adapter driver"); |
| 974 | MODULE_AUTHOR("Florian Schirmer <jolt@tuxbox.org>"); |
| 975 | MODULE_LICENSE("GPL"); |