📄 pluto2.c
字号:
/* * pluto2.c - Satelco Easywatch Mobile Terrestrial Receiver [DVB-T] * * Copyright (C) 2005 Andreas Oberritter <obi@linuxtv.org> * * based on pluto2.c 1.10 - http://instinct-wp8.no-ip.org/pluto/ * by Dany Salman <salmandany@yahoo.fr> * Copyright (c) 2004 TDF * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * */#include <linux/i2c.h>#include <linux/i2c-algo-bit.h>#include <linux/init.h>#include <linux/kernel.h>#include <linux/module.h>#include <linux/pci.h>#include <linux/dma-mapping.h>#include "demux.h"#include "dmxdev.h"#include "dvb_demux.h"#include "dvb_frontend.h"#include "dvb_net.h"#include "dvbdev.h"#include "tda1004x.h"#define DRIVER_NAME "pluto2"#define REG_PIDn(n) ((n) << 2) /* PID n pattern registers */#define REG_PCAR 0x0020 /* PC address register */#define REG_TSCR 0x0024 /* TS ctrl & status */#define REG_MISC 0x0028 /* miscellaneous */#define REG_MMAC 0x002c /* MSB MAC address */#define REG_IMAC 0x0030 /* ISB MAC address */#define REG_LMAC 0x0034 /* LSB MAC address */#define REG_SPID 0x0038 /* SPI data */#define REG_SLCS 0x003c /* serial links ctrl/status */#define PID0_NOFIL (0x0001 << 16)#define PIDn_ENP (0x0001 << 15)#define PID0_END (0x0001 << 14)#define PID0_AFIL (0x0001 << 13)#define PIDn_PID (0x1fff << 0)#define TSCR_NBPACKETS (0x00ff << 24)#define TSCR_DEM (0x0001 << 17)#define TSCR_DE (0x0001 << 16)#define TSCR_RSTN (0x0001 << 15)#define TSCR_MSKO (0x0001 << 14)#define TSCR_MSKA (0x0001 << 13)#define TSCR_MSKL (0x0001 << 12)#define TSCR_OVR (0x0001 << 11)#define TSCR_AFUL (0x0001 << 10)#define TSCR_LOCK (0x0001 << 9)#define TSCR_IACK (0x0001 << 8)#define TSCR_ADEF (0x007f << 0)#define MISC_DVR (0x0fff << 4)#define MISC_ALED (0x0001 << 3)#define MISC_FRST (0x0001 << 2)#define MISC_LED1 (0x0001 << 1)#define MISC_LED0 (0x0001 << 0)#define SPID_SPIDR (0x00ff << 0)#define SLCS_SCL (0x0001 << 7)#define SLCS_SDA (0x0001 << 6)#define SLCS_CSN (0x0001 << 2)#define SLCS_OVR (0x0001 << 1)#define SLCS_SWC (0x0001 << 0)#define TS_DMA_PACKETS (8)#define TS_DMA_BYTES (188 * TS_DMA_PACKETS)#define I2C_ADDR_TDA10046 0x10#define I2C_ADDR_TUA6034 0xc2#define NHWFILTERS 8struct pluto { /* pci */ struct pci_dev *pdev; u8 __iomem *io_mem; /* dvb */ struct dmx_frontend hw_frontend; struct dmx_frontend mem_frontend; struct dmxdev dmxdev; struct dvb_adapter dvb_adapter; struct dvb_demux demux; struct dvb_frontend *fe; struct dvb_net dvbnet; unsigned int full_ts_users; unsigned int users; /* i2c */ struct i2c_algo_bit_data i2c_bit; struct i2c_adapter i2c_adap; unsigned int i2cbug; /* irq */ unsigned int overflow; /* dma */ dma_addr_t dma_addr; u8 dma_buf[TS_DMA_BYTES]; u8 dummy[4096];};static inline struct pluto *feed_to_pluto(struct dvb_demux_feed *feed){ return container_of(feed->demux, struct pluto, demux);}static inline struct pluto *frontend_to_pluto(struct dvb_frontend *fe){ return container_of(fe->dvb, struct pluto, dvb_adapter);}static inline u32 pluto_readreg(struct pluto *pluto, u32 reg){ return readl(&pluto->io_mem[reg]);}static inline void pluto_writereg(struct pluto *pluto, u32 reg, u32 val){ writel(val, &pluto->io_mem[reg]);}static inline void pluto_rw(struct pluto *pluto, u32 reg, u32 mask, u32 bits){ u32 val = readl(&pluto->io_mem[reg]); val &= ~mask; val |= bits; writel(val, &pluto->io_mem[reg]);}static void pluto_setsda(void *data, int state){ struct pluto *pluto = data; if (state) pluto_rw(pluto, REG_SLCS, SLCS_SDA, SLCS_SDA); else pluto_rw(pluto, REG_SLCS, SLCS_SDA, 0);}static void pluto_setscl(void *data, int state){ struct pluto *pluto = data; if (state) pluto_rw(pluto, REG_SLCS, SLCS_SCL, SLCS_SCL); else pluto_rw(pluto, REG_SLCS, SLCS_SCL, 0); /* try to detect i2c_inb() to workaround hardware bug: * reset SDA to high after SCL has been set to low */ if ((state) && (pluto->i2cbug == 0)) { pluto->i2cbug = 1; } else { if ((!state) && (pluto->i2cbug == 1)) pluto_setsda(pluto, 1); pluto->i2cbug = 0; }}static int pluto_getsda(void *data){ struct pluto *pluto = data; return pluto_readreg(pluto, REG_SLCS) & SLCS_SDA;}static int pluto_getscl(void *data){ struct pluto *pluto = data; return pluto_readreg(pluto, REG_SLCS) & SLCS_SCL;}static void pluto_reset_frontend(struct pluto *pluto, int reenable){ u32 val = pluto_readreg(pluto, REG_MISC); if (val & MISC_FRST) { val &= ~MISC_FRST; pluto_writereg(pluto, REG_MISC, val); } if (reenable) { val |= MISC_FRST; pluto_writereg(pluto, REG_MISC, val); }}static void pluto_reset_ts(struct pluto *pluto, int reenable){ u32 val = pluto_readreg(pluto, REG_TSCR); if (val & TSCR_RSTN) { val &= ~TSCR_RSTN; pluto_writereg(pluto, REG_TSCR, val); } if (reenable) { val |= TSCR_RSTN; pluto_writereg(pluto, REG_TSCR, val); }}static void pluto_set_dma_addr(struct pluto *pluto){ pluto_writereg(pluto, REG_PCAR, cpu_to_le32(pluto->dma_addr));}static int __devinit pluto_dma_map(struct pluto *pluto){ pluto->dma_addr = pci_map_single(pluto->pdev, pluto->dma_buf, TS_DMA_BYTES, PCI_DMA_FROMDEVICE); return pci_dma_mapping_error(pluto->dma_addr);}static void pluto_dma_unmap(struct pluto *pluto){ pci_unmap_single(pluto->pdev, pluto->dma_addr, TS_DMA_BYTES, PCI_DMA_FROMDEVICE);}static int pluto_start_feed(struct dvb_demux_feed *f){ struct pluto *pluto = feed_to_pluto(f); /* enable PID filtering */ if (pluto->users++ == 0) pluto_rw(pluto, REG_PIDn(0), PID0_AFIL | PID0_NOFIL, 0); if ((f->pid < 0x2000) && (f->index < NHWFILTERS)) pluto_rw(pluto, REG_PIDn(f->index), PIDn_ENP | PIDn_PID, PIDn_ENP | f->pid); else if (pluto->full_ts_users++ == 0) pluto_rw(pluto, REG_PIDn(0), PID0_NOFIL, PID0_NOFIL); return 0;}static int pluto_stop_feed(struct dvb_demux_feed *f){ struct pluto *pluto = feed_to_pluto(f); /* disable PID filtering */ if (--pluto->users == 0) pluto_rw(pluto, REG_PIDn(0), PID0_AFIL, PID0_AFIL); if ((f->pid < 0x2000) && (f->index < NHWFILTERS)) pluto_rw(pluto, REG_PIDn(f->index), PIDn_ENP | PIDn_PID, 0x1fff); else if (--pluto->full_ts_users == 0) pluto_rw(pluto, REG_PIDn(0), PID0_NOFIL, 0); return 0;}static void pluto_dma_end(struct pluto *pluto, unsigned int nbpackets){ /* synchronize the DMA transfer with the CPU * first so that we see updated contents. */ pci_dma_sync_single_for_cpu(pluto->pdev, pluto->dma_addr, TS_DMA_BYTES, PCI_DMA_FROMDEVICE); /* Workaround for broken hardware: * [1] On startup NBPACKETS seems to contain an uninitialized value, * but no packets have been transfered. * [2] Sometimes (actually very often) NBPACKETS stays at zero * although one packet has been transfered. */ if ((nbpackets == 0) || (nbpackets > TS_DMA_PACKETS)) { unsigned int i = 0; while (pluto->dma_buf[i] == 0x47) i += 188; nbpackets = i / 188; } dvb_dmx_swfilter_packets(&pluto->demux, pluto->dma_buf, nbpackets); /* clear the dma buffer. this is needed to be able to identify * new valid ts packets above */ memset(pluto->dma_buf, 0, nbpackets * 188); /* reset the dma address */ pluto_set_dma_addr(pluto); /* sync the buffer and give it back to the card */ pci_dma_sync_single_for_device(pluto->pdev, pluto->dma_addr, TS_DMA_BYTES, PCI_DMA_FROMDEVICE);}static irqreturn_t pluto_irq(int irq, void *dev_id, struct pt_regs *regs){ struct pluto *pluto = dev_id; u32 tscr; /* check whether an interrupt occured on this device */ tscr = pluto_readreg(pluto, REG_TSCR); if (!(tscr & (TSCR_DE | TSCR_OVR))) return IRQ_NONE; if (tscr == 0xffffffff) { // FIXME: maybe recover somehow dev_err(&pluto->pdev->dev, "card hung up :(\n"); return IRQ_HANDLED; } /* dma end interrupt */ if (tscr & TSCR_DE) { pluto_dma_end(pluto, (tscr & TSCR_NBPACKETS) >> 24); /* overflow interrupt */ if (tscr & TSCR_OVR) pluto->overflow++; if (pluto->overflow) { dev_err(&pluto->pdev->dev, "overflow irq (%d)\n", pluto->overflow); pluto_reset_ts(pluto, 1); pluto->overflow = 0; } } else if (tscr & TSCR_OVR) { pluto->overflow++; } /* ACK the interrupt */ pluto_writereg(pluto, REG_TSCR, tscr | TSCR_IACK); return IRQ_HANDLED;}static void __devinit pluto_enable_irqs(struct pluto *pluto){ u32 val = pluto_readreg(pluto, REG_TSCR); /* set the number of packets */ val &= ~TSCR_ADEF; val |= TS_DMA_PACKETS / 2; /* disable AFUL and LOCK interrupts */ val |= (TSCR_MSKA | TSCR_MSKL); /* enable DMA and OVERFLOW interrupts */ val &= ~(TSCR_DEM | TSCR_MSKO); /* clear pending interrupts */ val |= TSCR_IACK; pluto_writereg(pluto, REG_TSCR, val);}static void pluto_disable_irqs(struct pluto *pluto){ u32 val = pluto_readreg(pluto, REG_TSCR); /* disable all interrupts */ val |= (TSCR_DEM | TSCR_MSKO | TSCR_MSKA | TSCR_MSKL); /* clear pending interrupts */ val |= TSCR_IACK; pluto_writereg(pluto, REG_TSCR, val);}static int __devinit pluto_hw_init(struct pluto *pluto){ pluto_reset_frontend(pluto, 1); /* set automatic LED control by FPGA */ pluto_rw(pluto, REG_MISC, MISC_ALED, MISC_ALED); /* set data endianess */#ifdef __LITTLE_ENDIAN pluto_rw(pluto, REG_PIDn(0), PID0_END, PID0_END);#else pluto_rw(pluto, REG_PIDn(0), PID0_END, 0);#endif /* map DMA and set address */ pluto_dma_map(pluto); pluto_set_dma_addr(pluto); /* enable interrupts */ pluto_enable_irqs(pluto); /* reset TS logic */ pluto_reset_ts(pluto, 1); return 0;}static void pluto_hw_exit(struct pluto *pluto)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -