blob: 027da577c4072bbc8455920900d06ca69f966095 [file] [log] [blame]
Andreas Oberritterc7cadb32005-07-07 17:57:46 -07001/*
2 * pluto2.c - Satelco Easywatch Mobile Terrestrial Receiver [DVB-T]
3 *
4 * Copyright (C) 2005 Andreas Oberritter <obi@linuxtv.org>
5 *
6 * based on pluto2.c 1.10 - http://instinct-wp8.no-ip.org/pluto/
7 * by Dany Salman <salmandany@yahoo.fr>
8 * Copyright (c) 2004 TDF
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 *
24 */
25
26#include <linux/i2c.h>
27#include <linux/i2c-algo-bit.h>
28#include <linux/init.h>
Alexey Dobriyana6b7a402011-06-06 10:43:46 +000029#include <linux/interrupt.h>
Andreas Oberritterc7cadb32005-07-07 17:57:46 -070030#include <linux/kernel.h>
31#include <linux/module.h>
32#include <linux/pci.h>
33#include <linux/dma-mapping.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090034#include <linux/slab.h>
Andreas Oberritterc7cadb32005-07-07 17:57:46 -070035
36#include "demux.h"
37#include "dmxdev.h"
38#include "dvb_demux.h"
39#include "dvb_frontend.h"
40#include "dvb_net.h"
41#include "dvbdev.h"
42#include "tda1004x.h"
43
Janne Grunau78e92002008-04-09 19:13:13 -030044DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr);
45
Andreas Oberritterc7cadb32005-07-07 17:57:46 -070046#define DRIVER_NAME "pluto2"
47
48#define REG_PIDn(n) ((n) << 2) /* PID n pattern registers */
49#define REG_PCAR 0x0020 /* PC address register */
50#define REG_TSCR 0x0024 /* TS ctrl & status */
51#define REG_MISC 0x0028 /* miscellaneous */
52#define REG_MMAC 0x002c /* MSB MAC address */
53#define REG_IMAC 0x0030 /* ISB MAC address */
54#define REG_LMAC 0x0034 /* LSB MAC address */
55#define REG_SPID 0x0038 /* SPI data */
56#define REG_SLCS 0x003c /* serial links ctrl/status */
57
58#define PID0_NOFIL (0x0001 << 16)
59#define PIDn_ENP (0x0001 << 15)
60#define PID0_END (0x0001 << 14)
61#define PID0_AFIL (0x0001 << 13)
62#define PIDn_PID (0x1fff << 0)
63
64#define TSCR_NBPACKETS (0x00ff << 24)
65#define TSCR_DEM (0x0001 << 17)
66#define TSCR_DE (0x0001 << 16)
67#define TSCR_RSTN (0x0001 << 15)
68#define TSCR_MSKO (0x0001 << 14)
69#define TSCR_MSKA (0x0001 << 13)
70#define TSCR_MSKL (0x0001 << 12)
71#define TSCR_OVR (0x0001 << 11)
72#define TSCR_AFUL (0x0001 << 10)
73#define TSCR_LOCK (0x0001 << 9)
74#define TSCR_IACK (0x0001 << 8)
75#define TSCR_ADEF (0x007f << 0)
76
77#define MISC_DVR (0x0fff << 4)
78#define MISC_ALED (0x0001 << 3)
79#define MISC_FRST (0x0001 << 2)
80#define MISC_LED1 (0x0001 << 1)
81#define MISC_LED0 (0x0001 << 0)
82
83#define SPID_SPIDR (0x00ff << 0)
84
85#define SLCS_SCL (0x0001 << 7)
86#define SLCS_SDA (0x0001 << 6)
87#define SLCS_CSN (0x0001 << 2)
88#define SLCS_OVR (0x0001 << 1)
89#define SLCS_SWC (0x0001 << 0)
90
91#define TS_DMA_PACKETS (8)
92#define TS_DMA_BYTES (188 * TS_DMA_PACKETS)
93
94#define I2C_ADDR_TDA10046 0x10
95#define I2C_ADDR_TUA6034 0xc2
96#define NHWFILTERS 8
97
98struct pluto {
99 /* pci */
100 struct pci_dev *pdev;
101 u8 __iomem *io_mem;
102
103 /* dvb */
104 struct dmx_frontend hw_frontend;
105 struct dmx_frontend mem_frontend;
106 struct dmxdev dmxdev;
107 struct dvb_adapter dvb_adapter;
108 struct dvb_demux demux;
109 struct dvb_frontend *fe;
110 struct dvb_net dvbnet;
111 unsigned int full_ts_users;
112 unsigned int users;
113
114 /* i2c */
115 struct i2c_algo_bit_data i2c_bit;
116 struct i2c_adapter i2c_adap;
117 unsigned int i2cbug;
118
119 /* irq */
120 unsigned int overflow;
Alan Cox0b61dca2009-03-26 17:47:48 -0300121 unsigned int dead;
Andreas Oberritterc7cadb32005-07-07 17:57:46 -0700122
123 /* dma */
124 dma_addr_t dma_addr;
125 u8 dma_buf[TS_DMA_BYTES];
126 u8 dummy[4096];
127};
128
129static inline struct pluto *feed_to_pluto(struct dvb_demux_feed *feed)
130{
131 return container_of(feed->demux, struct pluto, demux);
132}
133
134static inline struct pluto *frontend_to_pluto(struct dvb_frontend *fe)
135{
136 return container_of(fe->dvb, struct pluto, dvb_adapter);
137}
138
139static inline u32 pluto_readreg(struct pluto *pluto, u32 reg)
140{
141 return readl(&pluto->io_mem[reg]);
142}
143
144static inline void pluto_writereg(struct pluto *pluto, u32 reg, u32 val)
145{
146 writel(val, &pluto->io_mem[reg]);
147}
148
149static inline void pluto_rw(struct pluto *pluto, u32 reg, u32 mask, u32 bits)
150{
151 u32 val = readl(&pluto->io_mem[reg]);
152 val &= ~mask;
153 val |= bits;
154 writel(val, &pluto->io_mem[reg]);
155}
156
Andreas Oberritter1489f902007-04-02 10:44:35 -0300157static void pluto_write_tscr(struct pluto *pluto, u32 val)
158{
159 /* set the number of packets */
160 val &= ~TSCR_ADEF;
161 val |= TS_DMA_PACKETS / 2;
162
163 pluto_writereg(pluto, REG_TSCR, val);
164}
165
Andreas Oberritterc7cadb32005-07-07 17:57:46 -0700166static void pluto_setsda(void *data, int state)
167{
168 struct pluto *pluto = data;
169
170 if (state)
171 pluto_rw(pluto, REG_SLCS, SLCS_SDA, SLCS_SDA);
172 else
173 pluto_rw(pluto, REG_SLCS, SLCS_SDA, 0);
174}
175
176static void pluto_setscl(void *data, int state)
177{
178 struct pluto *pluto = data;
179
180 if (state)
181 pluto_rw(pluto, REG_SLCS, SLCS_SCL, SLCS_SCL);
182 else
183 pluto_rw(pluto, REG_SLCS, SLCS_SCL, 0);
184
185 /* try to detect i2c_inb() to workaround hardware bug:
186 * reset SDA to high after SCL has been set to low */
187 if ((state) && (pluto->i2cbug == 0)) {
188 pluto->i2cbug = 1;
189 } else {
190 if ((!state) && (pluto->i2cbug == 1))
191 pluto_setsda(pluto, 1);
192 pluto->i2cbug = 0;
193 }
194}
195
196static int pluto_getsda(void *data)
197{
198 struct pluto *pluto = data;
199
200 return pluto_readreg(pluto, REG_SLCS) & SLCS_SDA;
201}
202
203static int pluto_getscl(void *data)
204{
205 struct pluto *pluto = data;
206
207 return pluto_readreg(pluto, REG_SLCS) & SLCS_SCL;
208}
209
210static void pluto_reset_frontend(struct pluto *pluto, int reenable)
211{
212 u32 val = pluto_readreg(pluto, REG_MISC);
213
214 if (val & MISC_FRST) {
215 val &= ~MISC_FRST;
216 pluto_writereg(pluto, REG_MISC, val);
217 }
218 if (reenable) {
219 val |= MISC_FRST;
220 pluto_writereg(pluto, REG_MISC, val);
221 }
222}
223
224static void pluto_reset_ts(struct pluto *pluto, int reenable)
225{
226 u32 val = pluto_readreg(pluto, REG_TSCR);
227
228 if (val & TSCR_RSTN) {
229 val &= ~TSCR_RSTN;
Andreas Oberritter1489f902007-04-02 10:44:35 -0300230 pluto_write_tscr(pluto, val);
Andreas Oberritterc7cadb32005-07-07 17:57:46 -0700231 }
232 if (reenable) {
233 val |= TSCR_RSTN;
Andreas Oberritter1489f902007-04-02 10:44:35 -0300234 pluto_write_tscr(pluto, val);
Andreas Oberritterc7cadb32005-07-07 17:57:46 -0700235 }
236}
237
238static void pluto_set_dma_addr(struct pluto *pluto)
239{
Al Viro67778b32008-06-22 14:20:39 -0300240 pluto_writereg(pluto, REG_PCAR, pluto->dma_addr);
Andreas Oberritterc7cadb32005-07-07 17:57:46 -0700241}
242
243static int __devinit pluto_dma_map(struct pluto *pluto)
244{
245 pluto->dma_addr = pci_map_single(pluto->pdev, pluto->dma_buf,
246 TS_DMA_BYTES, PCI_DMA_FROMDEVICE);
247
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700248 return pci_dma_mapping_error(pluto->pdev, pluto->dma_addr);
Andreas Oberritterc7cadb32005-07-07 17:57:46 -0700249}
250
251static void pluto_dma_unmap(struct pluto *pluto)
252{
253 pci_unmap_single(pluto->pdev, pluto->dma_addr,
254 TS_DMA_BYTES, PCI_DMA_FROMDEVICE);
255}
256
257static int pluto_start_feed(struct dvb_demux_feed *f)
258{
259 struct pluto *pluto = feed_to_pluto(f);
260
261 /* enable PID filtering */
262 if (pluto->users++ == 0)
263 pluto_rw(pluto, REG_PIDn(0), PID0_AFIL | PID0_NOFIL, 0);
264
265 if ((f->pid < 0x2000) && (f->index < NHWFILTERS))
266 pluto_rw(pluto, REG_PIDn(f->index), PIDn_ENP | PIDn_PID, PIDn_ENP | f->pid);
267 else if (pluto->full_ts_users++ == 0)
268 pluto_rw(pluto, REG_PIDn(0), PID0_NOFIL, PID0_NOFIL);
269
270 return 0;
271}
272
273static int pluto_stop_feed(struct dvb_demux_feed *f)
274{
275 struct pluto *pluto = feed_to_pluto(f);
276
277 /* disable PID filtering */
278 if (--pluto->users == 0)
279 pluto_rw(pluto, REG_PIDn(0), PID0_AFIL, PID0_AFIL);
280
281 if ((f->pid < 0x2000) && (f->index < NHWFILTERS))
282 pluto_rw(pluto, REG_PIDn(f->index), PIDn_ENP | PIDn_PID, 0x1fff);
283 else if (--pluto->full_ts_users == 0)
284 pluto_rw(pluto, REG_PIDn(0), PID0_NOFIL, 0);
285
286 return 0;
287}
288
289static void pluto_dma_end(struct pluto *pluto, unsigned int nbpackets)
290{
291 /* synchronize the DMA transfer with the CPU
292 * first so that we see updated contents. */
293 pci_dma_sync_single_for_cpu(pluto->pdev, pluto->dma_addr,
294 TS_DMA_BYTES, PCI_DMA_FROMDEVICE);
295
296 /* Workaround for broken hardware:
297 * [1] On startup NBPACKETS seems to contain an uninitialized value,
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300298 * but no packets have been transferred.
Andreas Oberritterc7cadb32005-07-07 17:57:46 -0700299 * [2] Sometimes (actually very often) NBPACKETS stays at zero
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300300 * although one packet has been transferred.
holger@muscate-magnussen.de4d845172007-05-01 09:25:56 -0300301 * [3] Sometimes (actually rarely), the card gets into an erroneous
302 * mode where it continuously generates interrupts, claiming it
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300303 * has received nbpackets>TS_DMA_PACKETS packets, but no packet
304 * has been transferred. Only a reset seems to solve this
Andreas Oberritterc7cadb32005-07-07 17:57:46 -0700305 */
306 if ((nbpackets == 0) || (nbpackets > TS_DMA_PACKETS)) {
Andreas Oberritter6573dd72005-11-08 21:35:14 -0800307 unsigned int i = 0;
Andreas Oberritterc7cadb32005-07-07 17:57:46 -0700308 while (pluto->dma_buf[i] == 0x47)
309 i += 188;
Andreas Oberritter6573dd72005-11-08 21:35:14 -0800310 nbpackets = i / 188;
holger@muscate-magnussen.de4d845172007-05-01 09:25:56 -0300311 if (i == 0) {
312 pluto_reset_ts(pluto, 1);
313 dev_printk(KERN_DEBUG, &pluto->pdev->dev, "resetting TS because of invalid packet counter\n");
314 }
Andreas Oberritterc7cadb32005-07-07 17:57:46 -0700315 }
316
317 dvb_dmx_swfilter_packets(&pluto->demux, pluto->dma_buf, nbpackets);
318
319 /* clear the dma buffer. this is needed to be able to identify
320 * new valid ts packets above */
321 memset(pluto->dma_buf, 0, nbpackets * 188);
322
323 /* reset the dma address */
324 pluto_set_dma_addr(pluto);
325
326 /* sync the buffer and give it back to the card */
327 pci_dma_sync_single_for_device(pluto->pdev, pluto->dma_addr,
328 TS_DMA_BYTES, PCI_DMA_FROMDEVICE);
329}
330
David Howells7d12e782006-10-05 14:55:46 +0100331static irqreturn_t pluto_irq(int irq, void *dev_id)
Andreas Oberritterc7cadb32005-07-07 17:57:46 -0700332{
333 struct pluto *pluto = dev_id;
334 u32 tscr;
335
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300336 /* check whether an interrupt occurred on this device */
Andreas Oberritterc7cadb32005-07-07 17:57:46 -0700337 tscr = pluto_readreg(pluto, REG_TSCR);
338 if (!(tscr & (TSCR_DE | TSCR_OVR)))
339 return IRQ_NONE;
340
341 if (tscr == 0xffffffff) {
Alan Cox0b61dca2009-03-26 17:47:48 -0300342 if (pluto->dead == 0)
343 dev_err(&pluto->pdev->dev, "card has hung or been ejected.\n");
344 /* It's dead Jim */
345 pluto->dead = 1;
Andreas Oberritterc7cadb32005-07-07 17:57:46 -0700346 return IRQ_HANDLED;
347 }
348
349 /* dma end interrupt */
350 if (tscr & TSCR_DE) {
351 pluto_dma_end(pluto, (tscr & TSCR_NBPACKETS) >> 24);
352 /* overflow interrupt */
353 if (tscr & TSCR_OVR)
354 pluto->overflow++;
355 if (pluto->overflow) {
356 dev_err(&pluto->pdev->dev, "overflow irq (%d)\n",
357 pluto->overflow);
358 pluto_reset_ts(pluto, 1);
359 pluto->overflow = 0;
360 }
361 } else if (tscr & TSCR_OVR) {
362 pluto->overflow++;
363 }
364
365 /* ACK the interrupt */
Andreas Oberritter1489f902007-04-02 10:44:35 -0300366 pluto_write_tscr(pluto, tscr | TSCR_IACK);
Andreas Oberritterc7cadb32005-07-07 17:57:46 -0700367
368 return IRQ_HANDLED;
369}
370
371static void __devinit pluto_enable_irqs(struct pluto *pluto)
372{
373 u32 val = pluto_readreg(pluto, REG_TSCR);
374
Andreas Oberritterc7cadb32005-07-07 17:57:46 -0700375 /* disable AFUL and LOCK interrupts */
376 val |= (TSCR_MSKA | TSCR_MSKL);
377 /* enable DMA and OVERFLOW interrupts */
378 val &= ~(TSCR_DEM | TSCR_MSKO);
379 /* clear pending interrupts */
380 val |= TSCR_IACK;
381
Andreas Oberritter1489f902007-04-02 10:44:35 -0300382 pluto_write_tscr(pluto, val);
Andreas Oberritterc7cadb32005-07-07 17:57:46 -0700383}
384
385static void pluto_disable_irqs(struct pluto *pluto)
386{
387 u32 val = pluto_readreg(pluto, REG_TSCR);
388
389 /* disable all interrupts */
390 val |= (TSCR_DEM | TSCR_MSKO | TSCR_MSKA | TSCR_MSKL);
391 /* clear pending interrupts */
392 val |= TSCR_IACK;
393
Andreas Oberritter1489f902007-04-02 10:44:35 -0300394 pluto_write_tscr(pluto, val);
Andreas Oberritterc7cadb32005-07-07 17:57:46 -0700395}
396
397static int __devinit pluto_hw_init(struct pluto *pluto)
398{
399 pluto_reset_frontend(pluto, 1);
400
401 /* set automatic LED control by FPGA */
402 pluto_rw(pluto, REG_MISC, MISC_ALED, MISC_ALED);
403
404 /* set data endianess */
405#ifdef __LITTLE_ENDIAN
406 pluto_rw(pluto, REG_PIDn(0), PID0_END, PID0_END);
407#else
408 pluto_rw(pluto, REG_PIDn(0), PID0_END, 0);
409#endif
410 /* map DMA and set address */
411 pluto_dma_map(pluto);
412 pluto_set_dma_addr(pluto);
413
414 /* enable interrupts */
415 pluto_enable_irqs(pluto);
416
417 /* reset TS logic */
418 pluto_reset_ts(pluto, 1);
419
420 return 0;
421}
422
423static void pluto_hw_exit(struct pluto *pluto)
424{
425 /* disable interrupts */
426 pluto_disable_irqs(pluto);
427
428 pluto_reset_ts(pluto, 0);
429
430 /* LED: disable automatic control, enable yellow, disable green */
431 pluto_rw(pluto, REG_MISC, MISC_ALED | MISC_LED1 | MISC_LED0, MISC_LED1);
432
433 /* unmap DMA */
434 pluto_dma_unmap(pluto);
435
436 pluto_reset_frontend(pluto, 0);
437}
438
439static inline u32 divide(u32 numerator, u32 denominator)
440{
441 if (denominator == 0)
442 return ~0;
443
Julia Lawall75b697f2009-08-01 16:48:41 -0300444 return DIV_ROUND_CLOSEST(numerator, denominator);
Andreas Oberritterc7cadb32005-07-07 17:57:46 -0700445}
446
447/* LG Innotek TDTE-E001P (Infineon TUA6034) */
Andrew de Quincey4b4c9152006-04-18 17:47:11 -0300448static int lg_tdtpe001p_tuner_set_params(struct dvb_frontend *fe,
Mauro Carvalho Chehab2f786bb2011-12-23 07:05:31 -0300449 struct dvb_frontend_parameters *foo)
Andreas Oberritterc7cadb32005-07-07 17:57:46 -0700450{
Mauro Carvalho Chehab2f786bb2011-12-23 07:05:31 -0300451 struct dtv_frontend_properties *p = &fe->dtv_property_cache;
Andreas Oberritterc7cadb32005-07-07 17:57:46 -0700452 struct pluto *pluto = frontend_to_pluto(fe);
453 struct i2c_msg msg;
454 int ret;
455 u8 buf[4];
456 u32 div;
457
458 // Fref = 166.667 Hz
459 // Fref * 3 = 500.000 Hz
460 // IF = 36166667
461 // IF / Fref = 217
462 //div = divide(p->frequency + 36166667, 166667);
463 div = divide(p->frequency * 3, 500000) + 217;
464 buf[0] = (div >> 8) & 0x7f;
465 buf[1] = (div >> 0) & 0xff;
466
467 if (p->frequency < 611000000)
468 buf[2] = 0xb4;
469 else if (p->frequency < 811000000)
470 buf[2] = 0xbc;
471 else
472 buf[2] = 0xf4;
473
474 // VHF: 174-230 MHz
475 // center: 350 MHz
476 // UHF: 470-862 MHz
477 if (p->frequency < 350000000)
478 buf[3] = 0x02;
479 else
480 buf[3] = 0x04;
481
Mauro Carvalho Chehab2f786bb2011-12-23 07:05:31 -0300482 if (p->bandwidth_hz == 8000000)
Andreas Oberritterc7cadb32005-07-07 17:57:46 -0700483 buf[3] |= 0x08;
484
485 if (sizeof(buf) == 6) {
486 buf[4] = buf[2];
487 buf[4] &= ~0x1c;
488 buf[4] |= 0x18;
489
490 buf[5] = (0 << 7) | (2 << 4);
491 }
492
493 msg.addr = I2C_ADDR_TUA6034 >> 1;
494 msg.flags = 0;
495 msg.buf = buf;
496 msg.len = sizeof(buf);
497
Patrick Boettcherdea74862006-05-14 05:01:31 -0300498 if (fe->ops.i2c_gate_ctrl)
499 fe->ops.i2c_gate_ctrl(fe, 1);
Andreas Oberritterc7cadb32005-07-07 17:57:46 -0700500 ret = i2c_transfer(&pluto->i2c_adap, &msg, 1);
501 if (ret < 0)
502 return ret;
503 else if (ret == 0)
504 return -EREMOTEIO;
505
506 return 0;
507}
508
509static int pluto2_request_firmware(struct dvb_frontend *fe,
510 const struct firmware **fw, char *name)
511{
512 struct pluto *pluto = frontend_to_pluto(fe);
513
514 return request_firmware(fw, name, &pluto->pdev->dev);
515}
516
517static struct tda1004x_config pluto2_fe_config __devinitdata = {
518 .demod_address = I2C_ADDR_TDA10046 >> 1,
519 .invert = 1,
520 .invert_oclk = 0,
521 .xtal_freq = TDA10046_XTAL_16M,
522 .agc_config = TDA10046_AGC_DEFAULT,
523 .if_freq = TDA10046_FREQ_3617,
Andreas Oberritterc7cadb32005-07-07 17:57:46 -0700524 .request_firmware = pluto2_request_firmware,
525};
526
527static int __devinit frontend_init(struct pluto *pluto)
528{
529 int ret;
530
531 pluto->fe = tda10046_attach(&pluto2_fe_config, &pluto->i2c_adap);
532 if (!pluto->fe) {
533 dev_err(&pluto->pdev->dev, "could not attach frontend\n");
534 return -ENODEV;
535 }
Patrick Boettcherdea74862006-05-14 05:01:31 -0300536 pluto->fe->ops.tuner_ops.set_params = lg_tdtpe001p_tuner_set_params;
Andreas Oberritterc7cadb32005-07-07 17:57:46 -0700537
538 ret = dvb_register_frontend(&pluto->dvb_adapter, pluto->fe);
539 if (ret < 0) {
Patrick Boettcherdea74862006-05-14 05:01:31 -0300540 if (pluto->fe->ops.release)
541 pluto->fe->ops.release(pluto->fe);
Andreas Oberritterc7cadb32005-07-07 17:57:46 -0700542 return ret;
543 }
544
545 return 0;
546}
547
548static void __devinit pluto_read_rev(struct pluto *pluto)
549{
550 u32 val = pluto_readreg(pluto, REG_MISC) & MISC_DVR;
551 dev_info(&pluto->pdev->dev, "board revision %d.%d\n",
552 (val >> 12) & 0x0f, (val >> 4) & 0xff);
553}
554
555static void __devinit pluto_read_mac(struct pluto *pluto, u8 *mac)
556{
557 u32 val = pluto_readreg(pluto, REG_MMAC);
558 mac[0] = (val >> 8) & 0xff;
559 mac[1] = (val >> 0) & 0xff;
560
561 val = pluto_readreg(pluto, REG_IMAC);
562 mac[2] = (val >> 8) & 0xff;
563 mac[3] = (val >> 0) & 0xff;
564
565 val = pluto_readreg(pluto, REG_LMAC);
566 mac[4] = (val >> 8) & 0xff;
567 mac[5] = (val >> 0) & 0xff;
568
Johannes Berg7c510e42008-10-27 17:47:26 -0700569 dev_info(&pluto->pdev->dev, "MAC %pM\n", mac);
Andreas Oberritterc7cadb32005-07-07 17:57:46 -0700570}
571
572static int __devinit pluto_read_serial(struct pluto *pluto)
573{
574 struct pci_dev *pdev = pluto->pdev;
575 unsigned int i, j;
576 u8 __iomem *cis;
577
578 cis = pci_iomap(pdev, 1, 0);
579 if (!cis)
580 return -EIO;
581
582 dev_info(&pdev->dev, "S/N ");
583
584 for (i = 0xe0; i < 0x100; i += 4) {
585 u32 val = readl(&cis[i]);
586 for (j = 0; j < 32; j += 8) {
587 if ((val & 0xff) == 0xff)
588 goto out;
589 printk("%c", val & 0xff);
590 val >>= 8;
591 }
592 }
593out:
594 printk("\n");
595 pci_iounmap(pdev, cis);
596
597 return 0;
598}
599
600static int __devinit pluto2_probe(struct pci_dev *pdev,
601 const struct pci_device_id *ent)
602{
603 struct pluto *pluto;
604 struct dvb_adapter *dvb_adapter;
605 struct dvb_demux *dvbdemux;
606 struct dmx_demux *dmx;
607 int ret = -ENOMEM;
608
Panagiotis Issaris74081872006-01-11 19:40:56 -0200609 pluto = kzalloc(sizeof(struct pluto), GFP_KERNEL);
Andreas Oberritterc7cadb32005-07-07 17:57:46 -0700610 if (!pluto)
611 goto out;
612
Andreas Oberritterc7cadb32005-07-07 17:57:46 -0700613 pluto->pdev = pdev;
614
615 ret = pci_enable_device(pdev);
616 if (ret < 0)
617 goto err_kfree;
618
619 /* enable interrupts */
620 pci_write_config_dword(pdev, 0x6c, 0x8000);
621
Yang Hongyang284901a2009-04-06 19:01:15 -0700622 ret = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Andreas Oberritterc7cadb32005-07-07 17:57:46 -0700623 if (ret < 0)
624 goto err_pci_disable_device;
625
626 pci_set_master(pdev);
627
628 ret = pci_request_regions(pdev, DRIVER_NAME);
629 if (ret < 0)
630 goto err_pci_disable_device;
631
632 pluto->io_mem = pci_iomap(pdev, 0, 0x40);
633 if (!pluto->io_mem) {
634 ret = -EIO;
635 goto err_pci_release_regions;
636 }
637
638 pci_set_drvdata(pdev, pluto);
639
Thomas Gleixner8076fe32006-07-01 19:29:37 -0700640 ret = request_irq(pdev->irq, pluto_irq, IRQF_SHARED, DRIVER_NAME, pluto);
Andreas Oberritterc7cadb32005-07-07 17:57:46 -0700641 if (ret < 0)
642 goto err_pci_iounmap;
643
644 ret = pluto_hw_init(pluto);
645 if (ret < 0)
646 goto err_free_irq;
647
648 /* i2c */
649 i2c_set_adapdata(&pluto->i2c_adap, pluto);
650 strcpy(pluto->i2c_adap.name, DRIVER_NAME);
651 pluto->i2c_adap.owner = THIS_MODULE;
Andreas Oberritterc7cadb32005-07-07 17:57:46 -0700652 pluto->i2c_adap.dev.parent = &pdev->dev;
653 pluto->i2c_adap.algo_data = &pluto->i2c_bit;
654 pluto->i2c_bit.data = pluto;
655 pluto->i2c_bit.setsda = pluto_setsda;
656 pluto->i2c_bit.setscl = pluto_setscl;
657 pluto->i2c_bit.getsda = pluto_getsda;
658 pluto->i2c_bit.getscl = pluto_getscl;
659 pluto->i2c_bit.udelay = 10;
660 pluto->i2c_bit.timeout = 10;
661
662 /* Raise SCL and SDA */
663 pluto_setsda(pluto, 1);
664 pluto_setscl(pluto, 1);
665
666 ret = i2c_bit_add_bus(&pluto->i2c_adap);
667 if (ret < 0)
668 goto err_pluto_hw_exit;
669
670 /* dvb */
Janne Grunau78e92002008-04-09 19:13:13 -0300671 ret = dvb_register_adapter(&pluto->dvb_adapter, DRIVER_NAME,
672 THIS_MODULE, &pdev->dev, adapter_nr);
Andreas Oberritterc7cadb32005-07-07 17:57:46 -0700673 if (ret < 0)
Jean Delvare32697112006-12-10 21:21:33 +0100674 goto err_i2c_del_adapter;
Andreas Oberritterc7cadb32005-07-07 17:57:46 -0700675
676 dvb_adapter = &pluto->dvb_adapter;
677
678 pluto_read_rev(pluto);
679 pluto_read_serial(pluto);
680 pluto_read_mac(pluto, dvb_adapter->proposed_mac);
681
682 dvbdemux = &pluto->demux;
683 dvbdemux->filternum = 256;
684 dvbdemux->feednum = 256;
685 dvbdemux->start_feed = pluto_start_feed;
686 dvbdemux->stop_feed = pluto_stop_feed;
687 dvbdemux->dmx.capabilities = (DMX_TS_FILTERING |
688 DMX_SECTION_FILTERING | DMX_MEMORY_BASED_FILTERING);
689 ret = dvb_dmx_init(dvbdemux);
690 if (ret < 0)
691 goto err_dvb_unregister_adapter;
692
693 dmx = &dvbdemux->dmx;
694
695 pluto->hw_frontend.source = DMX_FRONTEND_0;
696 pluto->mem_frontend.source = DMX_MEMORY_FE;
697 pluto->dmxdev.filternum = NHWFILTERS;
698 pluto->dmxdev.demux = dmx;
699
700 ret = dvb_dmxdev_init(&pluto->dmxdev, dvb_adapter);
701 if (ret < 0)
702 goto err_dvb_dmx_release;
703
704 ret = dmx->add_frontend(dmx, &pluto->hw_frontend);
705 if (ret < 0)
706 goto err_dvb_dmxdev_release;
707
708 ret = dmx->add_frontend(dmx, &pluto->mem_frontend);
709 if (ret < 0)
710 goto err_remove_hw_frontend;
711
712 ret = dmx->connect_frontend(dmx, &pluto->hw_frontend);
713 if (ret < 0)
714 goto err_remove_mem_frontend;
715
716 ret = frontend_init(pluto);
717 if (ret < 0)
718 goto err_disconnect_frontend;
719
720 dvb_net_init(dvb_adapter, &pluto->dvbnet, dmx);
721out:
722 return ret;
723
724err_disconnect_frontend:
725 dmx->disconnect_frontend(dmx);
726err_remove_mem_frontend:
727 dmx->remove_frontend(dmx, &pluto->mem_frontend);
728err_remove_hw_frontend:
729 dmx->remove_frontend(dmx, &pluto->hw_frontend);
730err_dvb_dmxdev_release:
731 dvb_dmxdev_release(&pluto->dmxdev);
732err_dvb_dmx_release:
733 dvb_dmx_release(dvbdemux);
734err_dvb_unregister_adapter:
735 dvb_unregister_adapter(dvb_adapter);
Jean Delvare32697112006-12-10 21:21:33 +0100736err_i2c_del_adapter:
737 i2c_del_adapter(&pluto->i2c_adap);
Andreas Oberritterc7cadb32005-07-07 17:57:46 -0700738err_pluto_hw_exit:
739 pluto_hw_exit(pluto);
740err_free_irq:
741 free_irq(pdev->irq, pluto);
742err_pci_iounmap:
743 pci_iounmap(pdev, pluto->io_mem);
744err_pci_release_regions:
745 pci_release_regions(pdev);
746err_pci_disable_device:
747 pci_disable_device(pdev);
748err_kfree:
749 pci_set_drvdata(pdev, NULL);
750 kfree(pluto);
751 goto out;
752}
753
754static void __devexit pluto2_remove(struct pci_dev *pdev)
755{
756 struct pluto *pluto = pci_get_drvdata(pdev);
757 struct dvb_adapter *dvb_adapter = &pluto->dvb_adapter;
758 struct dvb_demux *dvbdemux = &pluto->demux;
759 struct dmx_demux *dmx = &dvbdemux->dmx;
760
761 dmx->close(dmx);
762 dvb_net_release(&pluto->dvbnet);
763 if (pluto->fe)
764 dvb_unregister_frontend(pluto->fe);
765
766 dmx->disconnect_frontend(dmx);
767 dmx->remove_frontend(dmx, &pluto->mem_frontend);
768 dmx->remove_frontend(dmx, &pluto->hw_frontend);
769 dvb_dmxdev_release(&pluto->dmxdev);
770 dvb_dmx_release(dvbdemux);
771 dvb_unregister_adapter(dvb_adapter);
Jean Delvare32697112006-12-10 21:21:33 +0100772 i2c_del_adapter(&pluto->i2c_adap);
Andreas Oberritterc7cadb32005-07-07 17:57:46 -0700773 pluto_hw_exit(pluto);
774 free_irq(pdev->irq, pluto);
775 pci_iounmap(pdev, pluto->io_mem);
776 pci_release_regions(pdev);
777 pci_disable_device(pdev);
778 pci_set_drvdata(pdev, NULL);
779 kfree(pluto);
780}
781
782#ifndef PCI_VENDOR_ID_SCM
783#define PCI_VENDOR_ID_SCM 0x0432
784#endif
785#ifndef PCI_DEVICE_ID_PLUTO2
786#define PCI_DEVICE_ID_PLUTO2 0x0001
787#endif
788
789static struct pci_device_id pluto2_id_table[] __devinitdata = {
790 {
791 .vendor = PCI_VENDOR_ID_SCM,
792 .device = PCI_DEVICE_ID_PLUTO2,
793 .subvendor = PCI_ANY_ID,
794 .subdevice = PCI_ANY_ID,
795 }, {
796 /* empty */
797 },
798};
799
800MODULE_DEVICE_TABLE(pci, pluto2_id_table);
801
802static struct pci_driver pluto2_driver = {
803 .name = DRIVER_NAME,
804 .id_table = pluto2_id_table,
805 .probe = pluto2_probe,
806 .remove = __devexit_p(pluto2_remove),
807};
808
809static int __init pluto2_init(void)
810{
811 return pci_register_driver(&pluto2_driver);
812}
813
814static void __exit pluto2_exit(void)
815{
816 pci_unregister_driver(&pluto2_driver);
817}
818
819module_init(pluto2_init);
820module_exit(pluto2_exit);
821
822MODULE_AUTHOR("Andreas Oberritter <obi@linuxtv.org>");
823MODULE_DESCRIPTION("Pluto2 driver");
824MODULE_LICENSE("GPL");