On Tue, Oct 22, 2013 at 4:05 AM, Guest <info@xxxxxx> wrote: > From: Буди Романто <knightrider@xxxxxx> > > DKMS support is removed in this patch. The full package is still available at > https://github.com/knight-rider/ptx/tree/master/pt3_dvb > > Signed-off-by: Budi Rachmanto <knightrider @ are.ma> > --- > drivers/media/pci/Kconfig | 1 + > drivers/media/pci/Makefile | 1 + > drivers/media/pci/pt3_dvb/Kconfig | 12 + > drivers/media/pci/pt3_dvb/Makefile | 44 +++ > drivers/media/pci/pt3_dvb/pt3.c | 532 ++++++++++++++++++++++++++++++++++++ > drivers/media/pci/pt3_dvb/pt3.h | 216 +++++++++++++++ > drivers/media/pci/pt3_dvb/pt3_bus.c | 150 ++++++++++ > drivers/media/pci/pt3_dvb/pt3_dma.c | 360 ++++++++++++++++++++++++ > drivers/media/pci/pt3_dvb/pt3_i2c.c | 60 ++++ > drivers/media/pci/pt3_dvb/pt3_mx.c | 285 +++++++++++++++++++ > drivers/media/pci/pt3_dvb/pt3_qm.c | 376 +++++++++++++++++++++++++ > drivers/media/pci/pt3_dvb/pt3_tc.c | 449 ++++++++++++++++++++++++++++++ > drivers/media/pci/pt3_dvb/pt3s.c | 239 ++++++++++++++++ > drivers/media/pci/pt3_dvb/pt3t.c | 227 +++++++++++++++ > 14 files changed, 2952 insertions(+) > create mode 100644 drivers/media/pci/pt3_dvb/Kconfig > create mode 100644 drivers/media/pci/pt3_dvb/Makefile > create mode 100644 drivers/media/pci/pt3_dvb/pt3.c > create mode 100644 drivers/media/pci/pt3_dvb/pt3.h > create mode 100644 drivers/media/pci/pt3_dvb/pt3_bus.c > create mode 100644 drivers/media/pci/pt3_dvb/pt3_dma.c > create mode 100644 drivers/media/pci/pt3_dvb/pt3_i2c.c > create mode 100644 drivers/media/pci/pt3_dvb/pt3_mx.c > create mode 100644 drivers/media/pci/pt3_dvb/pt3_qm.c > create mode 100644 drivers/media/pci/pt3_dvb/pt3_tc.c > create mode 100644 drivers/media/pci/pt3_dvb/pt3s.c > create mode 100644 drivers/media/pci/pt3_dvb/pt3t.c > > diff --git a/drivers/media/pci/Kconfig b/drivers/media/pci/Kconfig > index 53196f1..5060c83 100644 > --- a/drivers/media/pci/Kconfig > +++ b/drivers/media/pci/Kconfig > @@ -40,6 +40,7 @@ source "drivers/media/pci/b2c2/Kconfig" > source "drivers/media/pci/pluto2/Kconfig" > source "drivers/media/pci/dm1105/Kconfig" > source "drivers/media/pci/pt1/Kconfig" > +source "drivers/media/pci/pt3_dvb/Kconfig" > source "drivers/media/pci/mantis/Kconfig" > source "drivers/media/pci/ngene/Kconfig" > source "drivers/media/pci/ddbridge/Kconfig" > diff --git a/drivers/media/pci/Makefile b/drivers/media/pci/Makefile > index 35cc578..02c6857 100644 > --- a/drivers/media/pci/Makefile > +++ b/drivers/media/pci/Makefile > @@ -7,6 +7,7 @@ obj-y += ttpci/ \ > pluto2/ \ > dm1105/ \ > pt1/ \ > + pt3_dvb/ \ > mantis/ \ > ngene/ \ > ddbridge/ \ > diff --git a/drivers/media/pci/pt3_dvb/Kconfig b/drivers/media/pci/pt3_dvb/Kconfig > new file mode 100644 > index 0000000..f9ba00d > --- /dev/null > +++ b/drivers/media/pci/pt3_dvb/Kconfig > @@ -0,0 +1,12 @@ > +config PT3_DVB > + tristate "Earthsoft PT3 cards" > + depends on DVB_CORE && PCI > + help > + Support for Earthsoft PT3 PCI-Express cards. > + > + Since these cards have no MPEG decoder onboard, they transmit > + only compressed MPEG data over the PCI bus, so you need > + an external software decoder to watch TV on your computer. > + > + Say Y or M if you own such a device and want to use it. > + > diff --git a/drivers/media/pci/pt3_dvb/Makefile b/drivers/media/pci/pt3_dvb/Makefile > new file mode 100644 > index 0000000..e8bbabe > --- /dev/null > +++ b/drivers/media/pci/pt3_dvb/Makefile > @@ -0,0 +1,44 @@ > +obj-$(CONFIG_PT3_DVB) += pt3_dvb.o > +ccflags-y += -Idrivers/media/dvb-core -Idrivers/media/dvb-frontends > + > +TARGET := pt3_dvb.ko > +VERBOSITY = 0 > +EXTRA_CFLAGS += -Wformat=2 -Wall -Werror -Idrivers/media/dvb-core -Idrivers/media/dvb-frontends > +KVER ?= `uname -r` > + > +KBUILD = /lib/modules/$(KVER)/build > +INSTALL_DIR = /lib/modules/$(KVER)/kernel/drivers/video > + > +all: ${TARGET} > + > +pt3_dvb.ko: pt3.c pt3.h pt3_dma.c pt3_bus.c pt3_qm.c pt3_mx.c pt3_i2c.c pt3_tc.c pt3s.c pt3t.c > + make -C $(KBUILD) M=`pwd` V=$(VERBOSITY) modules > + > +clean: > + make -C $(KBUILD) M=`pwd` V=$(VERBOSITY) clean > + > +obj-m := pt3_dvb.o > + > +pt3_dvb-objs := pt3.o > + > +clean-files := *.o *.ko *.mod.[co] *~ > + > +uninstall: > + rm -vf $(INSTALL_DIR)/$(TARGET)* > + > +install: uninstall > + install -d $(INSTALL_DIR) > + install -m 644 $(TARGET) $(INSTALL_DIR) > + depmod -a > + > +install_compress: install > + . $(KBUILD)/.config ; \ > + if [ $$CONFIG_DECOMPRESS_XZ = "y" ] ; then \ > + xz -9e $(INSTALL_DIR)/$(TARGET); \ > + elif [ $$CONFIG_DECOMPRESS_BZIP2 = "y" ] ; then \ > + bzip2 -9 $(INSTALL_DIR)/$(TARGET); \ > + elif [ $$CONFIG_DECOMPRESS_GZIP = "y" ] ; then \ > + gzip -9 $(INSTALL_DIR)/$(TARGET); \ > + fi > + depmod -a > + > diff --git a/drivers/media/pci/pt3_dvb/pt3.c b/drivers/media/pci/pt3_dvb/pt3.c > new file mode 100644 > index 0000000..9d3101a > --- /dev/null > +++ b/drivers/media/pci/pt3_dvb/pt3.c > @@ -0,0 +1,532 @@ > +#include "pt3.h" > +#include "pt3_bus.c" > +#include "pt3_i2c.c" > +#include "pt3_tc.c" > +#include "pt3_qm.c" > +#include "pt3_mx.c" > +#include "pt3_dma.c" > +#include "pt3s.c" > +#include "pt3t.c" > + > +static int pt3_set_frequency(PT3_ADAPTER *adap, __u32 channel, __s32 offset) > +{ > + int ret; > + > + PT3_PRINTK(KERN_DEBUG, "#%d %s set_freq channel=%d offset=%d\n", adap->idx, adap->str, channel, offset); > + > + if (adap->type == SYS_ISDBS) > + ret = pt3_qm_set_frequency(adap->qm, channel); > + else > + ret = pt3_mx_set_frequency(adap, channel, offset); > + return ret; > +} > + > +static int pt3_set_tuner_sleep(PT3_ADAPTER *adap, bool sleep) > +{ > + int ret; > + > + PT3_PRINTK(KERN_INFO, "#%d %p %s %s\n", adap->idx, adap, adap->str, sleep ? "Sleep" : "Wakeup"); > + > + if (adap->type == SYS_ISDBS) { > + ret = pt3_qm_set_sleep(adap->qm, sleep); > + } else { > + ret = pt3_mx_set_sleep(adap, sleep); > + } > + PT3_WAIT_MS_INT(10); > + return ret; > +} > + > +static int pt3_update_lnb(PT3_BOARD *pt3) > +{ > + u8 i, lnb_eff = 0; > + > + if (pt3->reset) { > + writel(pt3_lnb[0].bits, pt3->reg[0] + REG_SYSTEM_W); > + pt3->reset = false; > + pt3->lnb = 0; > + } else { > + PT3_ADAPTER *adap; > + mutex_lock(&pt3->lock); > + for (i = 0; i < PT3_NR_ADAPS; i++) { > + adap = pt3->adap[i]; > + PT3_PRINTK(KERN_DEBUG, "#%d in_use %d sleep %d\n", adap->idx, adap->in_use, adap->sleep); > + if ((adap->type == SYS_ISDBS) && (!adap->sleep)) { > + lnb_eff |= adap->voltage == SEC_VOLTAGE_13 ? 1 : > + adap->voltage == SEC_VOLTAGE_18 ? 2 : > + lnb; > + } > + } > + mutex_unlock(&pt3->lock); > + if (unlikely(lnb_eff < 0 || 2 < lnb_eff)) { > + PT3_PRINTK(KERN_ALERT, "Inconsistent LNB settings\n"); > + return -EINVAL; > + } > + if (pt3->lnb != lnb_eff) { > + writel(pt3_lnb[lnb_eff].bits, pt3->reg[0] + REG_SYSTEM_W); > + pt3->lnb = lnb_eff; > + } > + } > + PT3_PRINTK(KERN_INFO, "LNB=%s\n", pt3_lnb[lnb_eff].str); > + return 0; > +} > + > +int pt3_thread(void *data) > +{ > + size_t ret; > + PT3_ADAPTER *adap = data; > + loff_t ppos = 0; > + > + set_freezable(); > + while (!kthread_should_stop()) { > + try_to_freeze(); > + while ((ret = pt3_dma_copy(adap->dma, &adap->demux, &ppos)) > 0); > + if (ret < 0) { > + PT3_PRINTK(KERN_INFO, "#%d fail dma_copy\n", adap->idx); > + PT3_WAIT_MS_INT(1); > + } > + } > + return 0; > +} > + > +static int pt3_start_polling(PT3_ADAPTER *adap) > +{ > + int ret = 0; > + > + mutex_lock(&adap->lock); > + if (!adap->kthread) { > + adap->kthread = kthread_run(pt3_thread, adap, DRV_NAME "_%d", adap->idx); > + if (IS_ERR(adap->kthread)) { > + ret = PTR_ERR(adap->kthread); > + adap->kthread = NULL; > + } else { > + pt3_dma_set_test_mode(adap->dma, RESET, 0); // reset_error_count > + pt3_dma_set_enabled(adap->dma, true); > + } > + } > + mutex_unlock(&adap->lock); > + return ret; > +} > + > +static void pt3_stop_polling(PT3_ADAPTER *adap) > +{ > + mutex_lock(&adap->lock); > + if (adap->kthread) { > + pt3_dma_set_enabled(adap->dma, false); > + PT3_PRINTK(KERN_INFO, "#%d DMA ts_err packet cnt %d\n", > + adap->idx, pt3_dma_get_ts_error_packet_count(adap->dma)); > + kthread_stop(adap->kthread); > + adap->kthread = NULL; > + } > + mutex_unlock(&adap->lock); > +} > + > +static int pt3_start_feed(DVB_DEMUX_FEED *feed) > +{ > + int ret; > + PT3_ADAPTER *adap = container_of(feed->demux, PT3_ADAPTER, demux); > + if (!adap->users++) { > + if (adap->in_use) { > + PT3_PRINTK(KERN_DEBUG, "device is already used\n"); > + return -EIO; > + } > + PT3_PRINTK(KERN_DEBUG, "#%d %s selected, DMA %s\n", > + adap->idx, adap->str, pt3_dma_get_status(adap->dma) & 1 ? "ON" : "OFF"); > + adap->in_use = true; > + if ((ret = pt3_start_polling(adap))) return ret; > + } > + return 0; > +} > + > +static int pt3_stop_feed(DVB_DEMUX_FEED *feed) > +{ > + PT3_ADAPTER *adap = container_of(feed->demux, PT3_ADAPTER, demux); > + if (!--adap->users) { > + pt3_stop_polling(adap); > + adap->in_use = false; > + PT3_WAIT_MS_INT(40); > + } > + return 0; > +} > + > +DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr); > + > +static PT3_ADAPTER *pt3_alloc_adapter(PT3_BOARD *pt3) > +{ > + PT3_ADAPTER *adap; > + DVB_ADAPTER *dvb; > + DVB_DEMUX *demux; > + DMXDEV *dmxdev; > + int ret; > + > + if (!(adap = kzalloc(sizeof(PT3_ADAPTER), GFP_KERNEL))) { > + ret = -ENOMEM; > + goto err; > + } > + adap->pt3 = pt3; > + adap->voltage = SEC_VOLTAGE_OFF; > + adap->sleep = true; > + > + dvb = &adap->dvb; > + dvb->priv = adap; > + if ((ret = dvb_register_adapter(dvb, DRV_NAME, THIS_MODULE, &pt3->pdev->dev, adapter_nr)) < 0) > + goto err_kfree; > + > + demux = &adap->demux; > + demux->dmx.capabilities = DMX_TS_FILTERING | DMX_SECTION_FILTERING; > + demux->priv = adap; > + demux->feednum = 256; > + demux->filternum = 256; > + demux->start_feed = pt3_start_feed; > + demux->stop_feed = pt3_stop_feed; > + demux->write_to_decoder = NULL; > + ret = dvb_dmx_init(demux); > + if (ret < 0) > + goto err_unregister_adapter; > + > + dmxdev = &adap->dmxdev; > + dmxdev->filternum = 256; > + dmxdev->demux = &demux->dmx; > + dmxdev->capabilities = 0; > + ret = dvb_dmxdev_init(dmxdev, dvb); > + if (ret < 0) > + goto err_dmx_release; > + > + return adap; > + > +err_dmx_release: > + dvb_dmx_release(demux); > +err_unregister_adapter: > + dvb_unregister_adapter(dvb); > +err_kfree: > + kfree(adap); > +err: > + return ERR_PTR(ret); > +} > + > +static int pt3_tuner_init_s(PT3_I2C *i2c, PT3_ADAPTER *adap) > +{ > + int ret; > + PT3_BUS *bus; > + > + pt3_qm_init_reg_param(adap->qm); > + > + if (!(bus = vzalloc(sizeof(PT3_BUS)))) > + return -ENOMEM; > + pt3_qm_dummy_reset(adap->qm, bus); > + pt3_bus_end(bus); > + ret = pt3_i2c_run(i2c, bus, true); > + vfree(bus); > + if (ret) { > + PT3_PRINTK(KERN_DEBUG, "fail pt3_tuner_init_s dummy reset ret=%d\n", ret); > + return ret; > + } > + > + if (!(bus = vzalloc(sizeof(PT3_BUS)))) > + return -ENOMEM; > + if ((ret = pt3_qm_init(adap->qm, bus))) { > + vfree(bus); > + return ret; > + } > + pt3_bus_end(bus); > + ret = pt3_i2c_run(i2c, bus, true); > + vfree(bus); > + if (ret) { > + PT3_PRINTK(KERN_DEBUG, "fail pt3_tuner_init_s qm init ret=%d\n", ret); > + return ret; > + } > + return ret; > +} > + > +static int pt3_tuner_power_on(PT3_BOARD *pt3, PT3_BUS *bus) > +{ > + int ret, i, j; > + PT3_TS_PINS_MODE pins; > + > + for (i = 0; i < PT3_NR_ADAPS; i++) { > + ret = pt3_tc_init(pt3->adap[i]); > + PT3_PRINTK(KERN_INFO, "#%d tc_init ret=%d\n", i, ret); > + } > + if ((ret = pt3_tc_set_powers(pt3->adap[PT3_NR_ADAPS-1], NULL, true, false))) { > + PT3_PRINTK(KERN_DEBUG, "fail set powers.\n"); > + goto last; > + } > + > + pins.clock_data = PT3_TS_PIN_MODE_NORMAL; > + pins.byte = PT3_TS_PIN_MODE_NORMAL; > + pins.valid = PT3_TS_PIN_MODE_NORMAL; > + > + for (i = 0; i < PT3_NR_ADAPS; i++) { > + ret = pt3_tc_set_ts_pins_mode(pt3->adap[i], &pins); > + if (ret) PT3_PRINTK(KERN_INFO, "#%d %s fail set ts pins mode ret=%d\n", i, pt3->adap[i]->str, ret); > + } > + PT3_WAIT_MS_INT(1); > + > + for (i = 0; i < PT3_NR_ADAPS; i++) if (pt3->adap[i]->type == SYS_ISDBS) { > + for (j = 0; j < 10; j++) { > + if (j) PT3_PRINTK(KERN_INFO, "retry pt3_tuner_init_s\n"); > + if (!(ret = pt3_tuner_init_s(pt3->i2c, pt3->adap[i]))) > + break; > + PT3_WAIT_MS_INT(1); > + } > + if (ret) { > + PT3_PRINTK(KERN_INFO, "fail pt3_tuner_init_s %d ret=0x%x\n", i, ret); > + goto last; > + } > + } > + if (unlikely(bus->cmd_addr < 4096)) > + pt3_i2c_copy(pt3->i2c, bus); > + > + bus->cmd_addr = PT3_BUS_CMD_ADDR1; > + if ((ret = pt3_i2c_run(pt3->i2c, bus, false))) { > + PT3_PRINTK(KERN_INFO, "failed cmd_addr=0x%x ret=0x%x\n", PT3_BUS_CMD_ADDR1, ret); > + goto last; > + } > + if ((ret = pt3_tc_set_powers(pt3->adap[PT3_NR_ADAPS-1], NULL, true, true))) { > + PT3_PRINTK(KERN_INFO, "fail tc_set_powers,\n"); > + goto last; > + } > +last: > + return ret; > +} > + > +static int pt3_tuner_init_all(PT3_BOARD *pt3) > +{ > + int ret, i; > + PT3_I2C *i2c = pt3->i2c; > + PT3_BUS *bus = vzalloc(sizeof(PT3_BUS)); > + > + if (!bus) return -ENOMEM; > + pt3_bus_end(bus); > + bus->cmd_addr = PT3_BUS_CMD_ADDR0; > + > + if (!pt3_i2c_is_clean(i2c)) { > + PT3_PRINTK(KERN_INFO, "cleanup I2C bus\n"); > + if ((ret = pt3_i2c_run(i2c, bus, false))) > + goto last; > + PT3_WAIT_MS_INT(10); > + } > + if ((ret = pt3_tuner_power_on(pt3, bus))) > + goto last; > + PT3_PRINTK(KERN_DEBUG, "tuner_power_on\n"); > + > + for (i = 0; i < PT3_NR_ADAPS; i++) { > + PT3_ADAPTER *adap = pt3->adap[i]; > + if ((ret = pt3_set_tuner_sleep(adap, false))) > + goto last; > + if ((ret = pt3_set_frequency(adap, adap->init_ch, 0))) > + PT3_PRINTK(KERN_DEBUG, "fail set_frequency, ret=%d\n", ret); > + if ((ret = pt3_set_tuner_sleep(adap, true))) > + goto last; > + } > +last: > + vfree(bus); > + return ret; > +} > + > +static void pt3_cleanup_adapters(PT3_BOARD *pt3) > +{ > + int i; > + PT3_ADAPTER *adap; > + for (i = 0; i < PT3_NR_ADAPS; i++) if ((adap = pt3->adap[i])) { > + if (adap->kthread) kthread_stop(adap->kthread); > + if (adap->fe) dvb_unregister_frontend(adap->fe); > + if (!adap->sleep) pt3_set_tuner_sleep(adap, true); > + if (adap->qm) vfree(adap->qm); > + if (adap->dma) { > + if (adap->dma->enabled) pt3_dma_set_enabled(adap->dma, false); > + pt3_dma_free(adap->dma); > + } > + adap->demux.dmx.close(&adap->demux.dmx); > + dvb_dmxdev_release(&adap->dmxdev); > + dvb_dmx_release(&adap->demux); > + dvb_unregister_adapter(&adap->dvb); > + kfree(adap); > + } > +} > + > +static int pt3_fe_set_voltage(DVB_FRONTEND *fe, fe_sec_voltage_t voltage) > +{ > + PT3_ADAPTER *adap = container_of(fe->dvb, PT3_ADAPTER, dvb); > + adap->voltage = voltage; > + return (adap->orig_voltage) ? adap->orig_voltage(fe, voltage) : 0; > +} > + > +static int pt3_fe_sleep(DVB_FRONTEND *fe) > +{ > + PT3_ADAPTER *adap = container_of(fe->dvb, PT3_ADAPTER, dvb); > + adap->sleep = true; > + pt3_update_lnb(adap->pt3); > + return (adap->orig_sleep) ? adap->orig_sleep(fe) : 0; > +} > + > +static int pt3_fe_wakeup(DVB_FRONTEND *fe) > +{ > + PT3_ADAPTER *adap = container_of(fe->dvb, PT3_ADAPTER, dvb); > + adap->sleep = false; > + pt3_update_lnb(adap->pt3); > + PT3_WAIT_MS_UNINT(1); > + return (adap->orig_init) ? adap->orig_init(fe) : 0; > +} > + > +static int pt3_init_frontend(PT3_ADAPTER *adap, DVB_FRONTEND *fe) > +{ > + int ret = 0; > + > + adap->orig_voltage = fe->ops.set_voltage; > + adap->orig_sleep = fe->ops.sleep; > + adap->orig_init = fe->ops.init; > + fe->ops.set_voltage = pt3_fe_set_voltage; > + fe->ops.sleep = pt3_fe_sleep; > + fe->ops.init = pt3_fe_wakeup; > + > + if ((ret = dvb_register_frontend(&adap->dvb, fe)) >= 0) adap->fe = fe; > + return ret; > +} > + > +static int pt3_init_frontends(PT3_BOARD *pt3) > +{ > + DVB_FRONTEND *fe[PT3_NR_ADAPS]; > + int i, ret; > + > + for (i = 0; i < PT3_NR_ADAPS; i++) if (pt3->adap[i]->type == SYS_ISDBS) { > + if (!(fe[i] = pt3s_attach(pt3->adap[i]))) break; > + } else { > + if (!(fe[i] = pt3t_attach(pt3->adap[i]))) break; > + } > + if (i < PT3_NR_ADAPS) { > + while (i--) fe[i]->ops.release(fe[i]); > + return -ENOMEM; > + } > + for (i = 0; i < PT3_NR_ADAPS; i++) > + if ((ret = pt3_init_frontend(pt3->adap[i], fe[i])) < 0) { > + while(i--) dvb_unregister_frontend(fe[i]); > + for (i = 0; i < PT3_NR_ADAPS; i++) fe[i]->ops.release(fe[i]); > + return ret; > + } > + return 0; > +} > + > +static void pt3_remove(struct pci_dev *pdev) > +{ > + PT3_BOARD *pt3 = pci_get_drvdata(pdev); > + > + if (pt3) { > + pt3->reset = true; > + pt3_update_lnb(pt3); > + if (pt3->i2c) { > + if (pt3->adap[PT3_NR_ADAPS-1]) > + pt3_tc_set_powers(pt3->adap[PT3_NR_ADAPS-1], NULL, false, false); > + pt3_i2c_reset(pt3->i2c); > + vfree(pt3->i2c); > + } > + pt3_cleanup_adapters(pt3); > + if (pt3->reg[1]) iounmap(pt3->reg[1]); > + if (pt3->reg[0]) iounmap(pt3->reg[0]); > + pci_release_selected_regions(pdev, pt3->bars); > + kfree(pt3); > + } > + pci_disable_device(pdev); > +} > + > +static int pt3_abort(PCI_DEV *pdev, int ret, char *fmt, ...) > +{ > + va_list ap; > + char *s = NULL; > + int slen; > + > + va_start(ap,fmt); > + if ((slen = vsnprintf(s,0,fmt,ap)) > 0) if ((s = vzalloc(slen))) { > + vsnprintf(s,slen,fmt,ap); > + dev_printk(KERN_ALERT, &pdev->dev, "%s", s); > + vfree(s); > + } > + va_end(ap); > + pt3_remove(pdev); > + return ret; > +} > + > +static int pt3_probe(struct pci_dev *pdev, const struct pci_device_id *ent) > +{ > + PT3_BOARD *pt3; > + PT3_ADAPTER *adap; > + int i, ret; > + > + int bars = pci_select_bars(pdev, IORESOURCE_MEM); > + if ((ret = pci_enable_device(pdev)) < 0) > + return pt3_abort(pdev, ret, "PCI device unusable\n"); > + if ((ret = pci_set_dma_mask(pdev, DMA_BIT_MASK(64)))) > + return pt3_abort(pdev, ret, "DMA mask error\n"); > + pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64)); > + > + pci_read_config_dword(pdev, PCI_CLASS_REVISION, &i); > + if ((i & 0xFF) != 1) > + return pt3_abort(pdev, ret, "Revision 0x%x is not supported\n", i & 0xFF); > + if ((ret = pci_request_selected_regions(pdev, bars, DRV_NAME)) < 0) > + return pt3_abort(pdev, ret, "Could not request regions\n"); > + > + pci_set_master(pdev); > + if ((ret = pci_save_state(pdev))) > + return pt3_abort(pdev, ret, "Failed pci_save_state\n"); > + if (!(pt3 = kzalloc(sizeof(PT3_BOARD), GFP_KERNEL))) > + return pt3_abort(pdev, -ENOMEM, "PT3_BOARD out of memory\n"); > + > + pt3->bars = bars; > + pt3->pdev = pdev; > + pci_set_drvdata(pdev, pt3); > + if ( !(pt3->reg[0] = pci_ioremap_bar(pdev, 0)) > + || !(pt3->reg[1] = pci_ioremap_bar(pdev, 2)) ) > + return pt3_abort(pdev, -EIO, "Failed pci_ioremap_bar\n"); > + > + ret = readl(pt3->reg[0] + REG_VERSION); > + if ((i = ((ret >> 24) & 0xFF)) != 3) > + return pt3_abort(pdev, -EIO, "ID=0x%x, not a PT3\n", i); > + if ((i = ((ret >> 8) & 0xFF)) != 0x04) > + return pt3_abort(pdev, -EIO, "FPGA version 0x%x is not supported\n", i); > + mutex_init(&pt3->lock); > + > + for (i = 0; i < PT3_NR_ADAPS; i++) { > + pt3->adap[i] = NULL; > + if (IS_ERR(adap = pt3_alloc_adapter(pt3))) > + return pt3_abort(pdev, PTR_ERR(adap), "Failed pt3_alloc_adapter\n"); > + if (!(adap->dma = pt3_dma_create(adap))) > + return pt3_abort(pdev, -ENOMEM, "Failed pt3_dma_create\n"); > + mutex_init(&adap->lock); > + adap->idx = i; > + pt3->adap[i] = adap; > + adap->type = pt3_config[i].type; > + adap->addr_tuner = pt3_config[i].addr_tuner; > + adap->addr_tc = pt3_config[i].addr_tc; > + adap->init_ch = pt3_config[i].init_ch; > + adap->str = pt3_config[i].str; > + if (adap->type == SYS_ISDBS) { > + if (!(adap->qm = vzalloc(sizeof(PT3_QM)))) > + return pt3_abort(pdev, -ENOMEM, "QM out of memory\n"); > + adap->qm->adap = adap; > + } > + adap->sleep = true; > + } > + pt3->reset = true; > + pt3_update_lnb(pt3); > + > + if (!(pt3->i2c = vzalloc(sizeof(PT3_I2C)))) > + return pt3_abort(pdev, -ENOMEM, "Cannot allocate I2C\n"); > + mutex_init(&pt3->i2c->lock); > + pt3->i2c->reg[0] = pt3->reg[0]; > + pt3->i2c->reg[1] = pt3->reg[1]; > + > + if ((ret = pt3_tuner_init_all(pt3))) > + return pt3_abort(pdev, ret, "Failed pt3_tuner_init_all\n"); > + if ((ret = pt3_init_frontends(pt3))<0) > + return pt3_abort(pdev, ret, "Failed pt3_init_frontends\n"); > + return ret; > +} > + > +static struct pci_driver pt3_driver = { > + .name = DRV_NAME, > + .probe = pt3_probe, > + .remove = pt3_remove, > + .id_table = pt3_id_table, > +}; > + > +module_pci_driver(pt3_driver); > + > diff --git a/drivers/media/pci/pt3_dvb/pt3.h b/drivers/media/pci/pt3_dvb/pt3.h > new file mode 100644 > index 0000000..43e11e5 > --- /dev/null > +++ b/drivers/media/pci/pt3_dvb/pt3.h > @@ -0,0 +1,216 @@ > +#ifndef __PT3_H__ > +#define __PT3_H__ > + > +#include <linux/pci.h> > +#include <linux/kthread.h> > +#include <linux/freezer.h> > +#include "dvb_demux.h" > +#include "dmxdev.h" > +#include "dvb_frontend.h" > + > +#define DRV_NAME "pt3_dvb" > +#define ID_VEN_ALTERA 0x1172 > +#define ID_DEV_PT3 0x4c15 > + > +#define PT3_NR_ADAPS 4 > + > +#define PT3_SHIFT_MASK(val, shift, mask) (((val) >> (shift)) & (((__u64)1<<(mask))-1)) > + > +// register idx > +#define REG_VERSION 0x00 /* R Version */ > +#define REG_BUS 0x04 /* R Bus */ > +#define REG_SYSTEM_W 0x08 /* W System */ > +#define REG_SYSTEM_R 0x0c /* R System */ > +#define REG_I2C_W 0x10 /* W I2C */ > +#define REG_I2C_R 0x14 /* R I2C */ > +#define REG_RAM_W 0x18 /* W RAM */ > +#define REG_RAM_R 0x1c /* R RAM */ > +#define REG_BASE 0x40 /* + 0x18*idx */ > +#define REG_DMA_DESC_L 0x00 /* W DMA */ > +#define REG_DMA_DESC_H 0x04 /* W DMA */ > +#define REG_DMA_CTL 0x08 /* W DMA */ > +#define REG_TS_CTL 0x0c /* W TS */ > +#define REG_STATUS 0x10 /* R DMA/FIFO/TS */ > +#define REG_TS_ERR 0x14 /* R TS */ > + > +#define PT3_MS(x) msecs_to_jiffies(x) > +#define PT3_WAIT_MS_INT(x) schedule_timeout_interruptible(PT3_MS(x)) > +#define PT3_WAIT_MS_UNINT(x) schedule_timeout_uninterruptible(PT3_MS(x)) > + > +#define PT3_PRINTK(level, fmt, args...)\ > + {if (debug + 48 >= level[1]) printk(DRV_NAME " " level " " fmt, ##args);} > + > +static int lnb = 2; // LNB OFF:0 +11V:1 +15V:2 > +module_param(lnb, int, 0); > +MODULE_PARM_DESC(lnb, "LNB level (0:OFF 1:+11V 2:+15V)"); > + > +int debug = 0; // 1 normal messages, 0 quiet .. 7 verbose > +module_param(debug, int, S_IRUGO | S_IWUSR); > +MODULE_PARM_DESC(debug, "debug level (0-7)"); > + > +MODULE_AUTHOR("Budi Rachmanto <knightrider @ are.ma>"); > +MODULE_DESCRIPTION("Earthsoft PT3 DVB Driver"); > +MODULE_LICENSE("GPL"); > + > +typedef struct file FILE; > +typedef struct mutex MUTEX; > +typedef struct pci_dev PCI_DEV; > +typedef struct pci_device_id PCI_DEV_ID; > +typedef struct task_struct TASK_STRUCT; > +typedef struct dvb_adapter DVB_ADAPTER; > +typedef struct dvb_demux DVB_DEMUX; > +typedef struct dvb_demux_feed DVB_DEMUX_FEED; > +typedef struct dmxdev DMXDEV; > +typedef struct dvb_frontend DVB_FRONTEND; > +typedef struct dvb_frontend_ops DVB_FRONTEND_OPS; > + > +static PCI_DEV_ID pt3_id_table[] = { > + { PCI_DEVICE(ID_VEN_ALTERA, ID_DEV_PT3) }, > + { }, > +}; > +MODULE_DEVICE_TABLE(pci, pt3_id_table); > + > +typedef struct { > + dma_addr_t addr; > + __u8 *data; > + __u32 size, data_pos; > +} PT3_DMA_PAGE; > + > +typedef struct { > + __u8 __iomem *reg[2]; > + MUTEX lock; > +} PT3_I2C; > + > +typedef enum { > + LAYER_INDEX_L = 0, > + LAYER_INDEX_H, > + > + LAYER_INDEX_A = 0, > + LAYER_INDEX_B, > + LAYER_INDEX_C > +} LAYER_INDEX; > + > +typedef enum { > + LAYER_COUNT_S = LAYER_INDEX_H + 1, > + LAYER_COUNT_T = LAYER_INDEX_C + 1, > +} LAYER_COUNT; > + > +// Transmission and Multiplexing Configuration Control > + > +typedef struct { > + __u32 indicator; > + __u32 mode[4]; > + __u32 slot[4]; > + __u32 id[8]; > + __u32 emergency; > + __u32 uplink; > + __u32 extflag; > +} TMCC_S; > + > +typedef struct { > + __u32 system; > + __u32 indicator; > + __u32 emergency; > + __u32 partial; > + __u32 mode[LAYER_COUNT_T]; > + __u32 rate[LAYER_COUNT_T]; > + __u32 interleave[LAYER_COUNT_T]; > + __u32 segment[LAYER_COUNT_T]; > +} TMCC_T; > + > +typedef struct _PT3_ADAPTER PT3_ADAPTER; > + > +typedef struct { > + PT3_ADAPTER *adap; > + bool enabled; > + __u32 ts_pos, ts_count, desc_count; > + PT3_DMA_PAGE *ts_info, *desc_info; > + MUTEX lock; > +} PT3_DMA; > + > +typedef struct { > + PT3_ADAPTER *adap; > + __u8 reg[32]; > + > + // QM PARAM > + bool standby; > + __u32 wait_time_lpf, wait_time_search_fast, wait_time_search_normal; > + TMCC_S tmcc; > +} PT3_QM; > + > +typedef struct { > + MUTEX lock; > + bool reset; > + int lnb; > + > + // PCI & I2C > + PCI_DEV *pdev; > + void __iomem *reg[2]; > + int bars; > + PT3_I2C *i2c; > + > + PT3_ADAPTER *adap[PT3_NR_ADAPS]; > +} PT3_BOARD; > + > +struct _PT3_ADAPTER { > + MUTEX lock; > + PT3_BOARD *pt3; > + > + // tuner & DMA > + int idx, init_ch; > + char *str; > + fe_delivery_system_t type; > + bool in_use, sleep; > + __u32 channel; > + __s32 offset; > + __u8 addr_tc, addr_tuner; > + __u32 freq; > + PT3_QM *qm; > + PT3_DMA *dma; > + TASK_STRUCT *kthread; > + > + // DVB > + DVB_ADAPTER dvb; > + DVB_DEMUX demux; > + int users; > + DMXDEV dmxdev; > + DVB_FRONTEND *fe; > + int (*orig_voltage)(DVB_FRONTEND *fe, fe_sec_voltage_t voltage); > + int (*orig_sleep )(DVB_FRONTEND *fe ); > + int (*orig_init )(DVB_FRONTEND *fe ); > + fe_sec_voltage_t voltage; > +}; > + > +struct { > + fe_delivery_system_t type; > + __u8 addr_tuner, addr_tc; > + int init_ch; > + char *str; > +} pt3_config[] = { > + {SYS_ISDBS, 0x63, 0b00010001, 0, "ISDB_S"}, > + {SYS_ISDBS, 0x60, 0b00010011, 0, "ISDB_S"}, > + {SYS_ISDBT, 0x62, 0b00010000, 70, "ISDB_T"}, > + {SYS_ISDBT, 0x61, 0b00010010, 71, "ISDB_T"}, > +}; > + > +struct { > + __u32 bits; > + char *str; > +} pt3_lnb[] = { > + {0b1100, "0V"}, > + {0b1101, "11V"}, > + {0b1111, "15V"}, > +}; > + > +typedef enum { > + PT3_TS_PIN_MODE_NORMAL, > + PT3_TS_PIN_MODE_LOW, > + PT3_TS_PIN_MODE_HIGH, > +} PT3_TS_PIN_MODE; > + > +typedef struct { > + PT3_TS_PIN_MODE clock_data, byte, valid; > +} PT3_TS_PINS_MODE; > + > +#endif > + > diff --git a/drivers/media/pci/pt3_dvb/pt3_bus.c b/drivers/media/pci/pt3_dvb/pt3_bus.c > new file mode 100644 > index 0000000..597760a > --- /dev/null > +++ b/drivers/media/pci/pt3_dvb/pt3_bus.c > @@ -0,0 +1,150 @@ > +#define PT3_BUS_CMD_MAX 4096 > +#define PT3_BUS_CMD_ADDR0 4096 + 0 > +#define PT3_BUS_CMD_ADDR1 4096 + 2042 > + > +typedef struct { > + __u32 read_addr, cmd_addr, cmd_count, cmd_pos, buf_pos, buf_size; > + __u8 cmd_tmp, cmds[PT3_BUS_CMD_MAX], *buf; > +} PT3_BUS; > + > +typedef enum { > + I_END, > + I_ADDRESS, > + I_CLOCK_L, > + I_CLOCK_H, > + I_DATA_L, > + I_DATA_H, > + I_RESET, > + I_SLEEP, // Sleep 1ms > + I_DATA_L_NOP = 0x08, > + I_DATA_H_NOP = 0x0c, > + I_DATA_H_READ = 0x0d, > + I_DATA_H_ACK0 = 0x0e, > + I_DATA_H_ACK1 = 0x0f, > +} PT3_BUS_CMD; > + > +static void pt3_bus_add_cmd(PT3_BUS *bus, PT3_BUS_CMD cmd) > +{ > + if ((bus->cmd_count % 2) == 0) { > + bus->cmd_tmp = cmd; > + } else { > + bus->cmd_tmp |= cmd << 4; > + } > + > + if (bus->cmd_count % 2) { > + bus->cmds[bus->cmd_pos] = bus->cmd_tmp; > + bus->cmd_pos++; > + if (bus->cmd_pos >= sizeof(bus->cmds)) { > + PT3_PRINTK(KERN_ALERT, "bus->cmds is overflow\n"); > + bus->cmd_pos = 0; > + } > + } > + bus->cmd_count++; > +} > + > +__u8 pt3_bus_data1(PT3_BUS *bus, __u32 index) > +{ > + if (unlikely(!bus->buf)) { > + PT3_PRINTK(KERN_ALERT, "buf is not ready.\n"); > + return 0; > + } > + if (unlikely(bus->buf_size < index + 1)) { > + PT3_PRINTK(KERN_ALERT, "buf does not have enough size. buf_size=%d\n", > + bus->buf_size); > + return 0; > + } > + > + return bus->buf[index]; > +} > + > +void pt3_bus_start(PT3_BUS *bus) > +{ > + pt3_bus_add_cmd(bus, I_DATA_H); > + pt3_bus_add_cmd(bus, I_CLOCK_H); > + pt3_bus_add_cmd(bus, I_DATA_L); > + pt3_bus_add_cmd(bus, I_CLOCK_L); > +} > + > +void pt3_bus_stop(PT3_BUS *bus) > +{ > + pt3_bus_add_cmd(bus, I_DATA_L); > + pt3_bus_add_cmd(bus, I_CLOCK_H); > + pt3_bus_add_cmd(bus, I_DATA_H); > +} > + > +void pt3_bus_write(PT3_BUS *bus, const __u8 *data, __u32 size) > +{ > + __u32 i, j; > + __u8 byte; > + > + for (i = 0; i < size; i++) { > + byte = data[i]; > + for (j = 0; j < 8; j++) { > + pt3_bus_add_cmd(bus, PT3_SHIFT_MASK(byte, 7 - j, 1) ? I_DATA_H_NOP : I_DATA_L_NOP); > + } > + pt3_bus_add_cmd(bus, I_DATA_H_ACK0); > + } > +} > + > +__u32 pt3_bus_read(PT3_BUS *bus, __u8 *data, __u32 size) > +{ > + __u32 i, j; > + __u32 index; > + > + for (i = 0; i < size; i++) { > + for (j = 0; j < 8; j++) { > + pt3_bus_add_cmd(bus, I_DATA_H_READ); > + } > + > + if (i == (size - 1)) > + pt3_bus_add_cmd(bus, I_DATA_H_NOP); > + else > + pt3_bus_add_cmd(bus, I_DATA_L_NOP); > + } > + index = bus->read_addr; > + bus->read_addr += size; > + if (likely(bus->buf == NULL)) { > + bus->buf = data; > + bus->buf_pos = 0; > + bus->buf_size = size; > + } else > + PT3_PRINTK(KERN_ALERT, "bus read buf already exists.\n"); > + > + return index; > +} > + > +void pt3_bus_push_read_data(PT3_BUS *bus, __u8 data) > +{ > + if (unlikely(bus->buf)) { > + if (bus->buf_pos >= bus->buf_size) { > + PT3_PRINTK(KERN_ALERT, "buffer over run. pos=%d\n", bus->buf_pos); > + bus->buf_pos = 0; > + } > + bus->buf[bus->buf_pos] = data; > + bus->buf_pos++; > + } > +#if 0 > + PT3_PRINTK(KERN_DEBUG, "bus read data=0x%02x\n", data); > +#endif > +} > + > +void pt3_bus_sleep(PT3_BUS *bus, __u32 ms) > +{ > + __u32 i; > + for (i = 0; i< ms; i++) > + pt3_bus_add_cmd(bus, I_SLEEP); > +} > + > +void pt3_bus_end(PT3_BUS *bus) > +{ > + pt3_bus_add_cmd(bus, I_END); > + > + if (bus->cmd_count % 2) > + pt3_bus_add_cmd(bus, I_END); > +} > + > +void pt3_bus_reset(PT3_BUS *bus) > +{ > + pt3_bus_add_cmd(bus, I_RESET); > +} > + > diff --git a/drivers/media/pci/pt3_dvb/pt3_dma.c b/drivers/media/pci/pt3_dvb/pt3_dma.c > new file mode 100644 > index 0000000..ce135e0 > --- /dev/null > +++ b/drivers/media/pci/pt3_dvb/pt3_dma.c > @@ -0,0 +1,360 @@ > +#define PT3_DMA_DESC_SIZE 20 > +#define PT3_DMA_PAGE_SIZE 4096 > +#define PT3_DMA_MAX_DESCS 204 /* 4096 / 20 */ > +#define PT3_DMA_BLOCK_COUNT (17) > +#define PT3_DMA_BLOCK_SIZE (PT3_DMA_PAGE_SIZE * 47) > +#define PT3_DMA_TS_BUF_SIZE (PT3_DMA_BLOCK_SIZE * PT3_DMA_BLOCK_COUNT) > +#define PT3_DMA_NOT_SYNC_BYTE 0x74 > + > +static void pt3_dma_link_descriptor(__u64 next_addr, __u8 *desc) > +{ > + (*(__u64 *)(desc + 12)) = next_addr | 2; > +} > + > +static void pt3_dma_write_descriptor(__u64 ts_addr, __u32 size, __u64 next_addr, __u8 *desc) > +{ > + (*(__u64 *)(desc + 0)) = ts_addr | 7; > + (*(__u32 *)(desc + 8)) = size | 7; > + (*(__u64 *)(desc + 12)) = next_addr | 2; > +} > + > +void pt3_dma_build_page_descriptor(PT3_DMA *dma, bool loop) > +{ > + PT3_DMA_PAGE *desc_info, *ts_info; > + __u64 ts_addr, desc_addr; > + __u32 i, j, ts_size, desc_remain, ts_info_pos, desc_info_pos; > + __u8 *prev, *curr; > + > + if (unlikely(!dma)) { > + PT3_PRINTK(KERN_ALERT, "dma build page descriptor needs DMA\n"); > + return; > + } > +#if 0 > + PT3_PRINTK(KERN_DEBUG, "build page descriptor ts_count=%d ts_size=0x%x desc_count=%d desc_size=0x%x\n", > + dma->ts_count, dma->ts_info[0].size, dma->desc_count, dma->desc_info[0].size); > +#endif > + desc_info_pos = ts_info_pos = 0; > + if (unlikely(!(desc_info = &dma->desc_info[desc_info_pos]))) { > + PT3_PRINTK(KERN_ALERT, "dma maybe failed allocate desc_info %d\n", > + desc_info_pos); > + return; > + } > + desc_addr = desc_info->addr; > + desc_remain = desc_info->size; > + desc_info->data_pos = 0; > + prev = NULL; > + if (unlikely(!(curr = &desc_info->data[desc_info->data_pos]))) { > + PT3_PRINTK(KERN_ALERT, "dma maybe failed allocate desc_info->data %d\n", > + desc_info_pos); > + return; > + } > + desc_info_pos++; > + > + for (i = 0; i < dma->ts_count; i++) { > + if (unlikely(dma->ts_count <= ts_info_pos)) { > + PT3_PRINTK(KERN_ALERT, "ts_info overflow max=%d curr=%d\n", > + dma->ts_count, ts_info_pos); > + return; > + } > + if (unlikely(!(ts_info = &dma->ts_info[ts_info_pos]))) { > + PT3_PRINTK(KERN_ALERT, "dma maybe failed allocate ts_info %d\n", > + ts_info_pos); > + return; > + } > + ts_addr = ts_info->addr; > + ts_size = ts_info->size; > + ts_info_pos++; > + // PT3_PRINTK(KERN_DEBUG, "ts_info addr=0x%llx size=0x%x\n", ts_addr, ts_size); > +#if 1 > + if (unlikely(!ts_info)) { > + PT3_PRINTK(KERN_ALERT, "dma maybe failed allocate ts_info %d\n", > + ts_info_pos); > + return; > + } > +#endif > + for (j = 0; j < ts_size / PT3_DMA_PAGE_SIZE; j++) { > + if (desc_remain < PT3_DMA_DESC_SIZE) { > + if (unlikely(dma->desc_count <= desc_info_pos)) { > + PT3_PRINTK(KERN_ALERT, "desc_info overflow max=%d curr=%d\n", > + dma->desc_count, desc_info_pos); > + return; > + } > + desc_info = &dma->desc_info[desc_info_pos]; > + desc_info->data_pos = 0; > + if (unlikely(!(curr = &desc_info->data[desc_info->data_pos]))) { > + PT3_PRINTK(KERN_ALERT, "dma maybe failed allocate desc_info->data %d\n", > + desc_info_pos); > + return; > + } > + /* > + PT3_PRINTK(KERN_DEBUG, "desc_info_pos=%d ts_addr=0x%llx remain=%d\n", > + desc_info_pos, ts_addr, desc_remain); > + */ > + desc_addr = desc_info->addr; > + desc_remain = desc_info->size; > + desc_info_pos++; > + } > + if (prev) { > + pt3_dma_link_descriptor(desc_addr, prev); > + } > + pt3_dma_write_descriptor(ts_addr, PT3_DMA_PAGE_SIZE, 0, curr); > +#if 0 > + PT3_PRINTK(KERN_DEBUG, "dma write desc ts_addr=0x%llx desc_info_pos=%d\n", > + ts_addr, desc_info_pos); > +#endif > + ts_addr += PT3_DMA_PAGE_SIZE; > + > + prev = curr; > + desc_info->data_pos += PT3_DMA_DESC_SIZE; > + if (unlikely(desc_info->size <= desc_info->data_pos)) { > + PT3_PRINTK(KERN_ALERT, "dma desc_info data overflow.\n"); > + return; > + } > + curr = &desc_info->data[desc_info->data_pos]; > + desc_addr += PT3_DMA_DESC_SIZE; > + desc_remain -= PT3_DMA_DESC_SIZE; > + } > + } > + > + if (prev) { > + if (loop) > + pt3_dma_link_descriptor(dma->desc_info->addr, prev); > + else > + pt3_dma_link_descriptor(1, prev); > + } > +} > + > +void pt3_dma_free(PT3_DMA *dma) > +{ > + PT3_DMA_PAGE *page; > + __u32 i; > + > + if (dma->ts_info) { > + for (i = 0; i < dma->ts_count; i++) { > + page = &dma->ts_info[i]; > + if (page->data) > + pci_free_consistent(dma->adap->pt3->pdev, page->size, page->data, page->addr); > + } > + kfree(dma->ts_info); > + } > + if (dma->desc_info) { > + for (i = 0; i < dma->desc_count; i++) { > + page = &dma->desc_info[i]; > + if (page->data) > + pci_free_consistent(dma->adap->pt3->pdev, page->size, page->data, page->addr); > + } > + kfree(dma->desc_info); > + } > + kfree(dma); > +} > + > +PT3_DMA *pt3_dma_create(PT3_ADAPTER *adap) > +{ > + PT3_DMA_PAGE *page; > + __u32 i; > + > + PT3_DMA *dma = kzalloc(sizeof(PT3_DMA), GFP_KERNEL); > + if (!dma) { > + PT3_PRINTK(KERN_ALERT, "fail allocate PT3_DMA\n"); > + goto fail; > + } > + dma->adap = adap; > + dma->enabled = false; > + mutex_init(&dma->lock); > + > + dma->ts_count = PT3_DMA_BLOCK_COUNT; > + if (!(dma->ts_info = kzalloc(sizeof(PT3_DMA_PAGE) * dma->ts_count, GFP_KERNEL))) { > + PT3_PRINTK(KERN_ALERT, "fail allocate PT3_DMA_PAGE\n"); > + goto fail; > + } > + for (i = 0; i < dma->ts_count; i++) { > + page = &dma->ts_info[i]; > + page->size = PT3_DMA_BLOCK_SIZE; > + page->data_pos = 0; > + if (!(page->data = pci_alloc_consistent(adap->pt3->pdev, page->size, &page->addr))) { > + PT3_PRINTK(KERN_ALERT, "fail allocate consistent. %d\n", i); > + goto fail; > + } > + } > + PT3_PRINTK(KERN_DEBUG, "Allocate TS buffer.\n"); > + > + dma->desc_count = (PT3_DMA_TS_BUF_SIZE / (PT3_DMA_PAGE_SIZE) + PT3_DMA_MAX_DESCS - 1) / PT3_DMA_MAX_DESCS; > + if (!(dma->desc_info = kzalloc(sizeof(PT3_DMA_PAGE) * dma->desc_count, GFP_KERNEL))) { > + PT3_PRINTK(KERN_ALERT, "fail allocate PT3_DMA_PAGE\n"); > + goto fail; > + } > + for (i = 0; i < dma->desc_count; i++) { > + page = &dma->desc_info[i]; > + page->size = PT3_DMA_PAGE_SIZE; > + page->data_pos = 0; > + if (!(page->data = pci_alloc_consistent(adap->pt3->pdev, page->size, &page->addr))) { > + PT3_PRINTK(KERN_ALERT, "fail allocate consistent. %d\n", i); > + goto fail; > + } > + } > + PT3_PRINTK(KERN_DEBUG, "Allocate Descriptor buffer.\n"); > + > + pt3_dma_build_page_descriptor(dma, true); > + PT3_PRINTK(KERN_DEBUG, "set page descriptor.\n"); > + return dma; > +fail: > + if (dma) > + pt3_dma_free(dma); > + return NULL; > +} > + > +void __iomem *pt3_dma_get_base_addr(PT3_DMA *dma) > +{ > + return dma->adap->pt3->i2c->reg[0] + REG_BASE + (0x18 * dma->adap->idx); > +} > + > +void pt3_dma_reset(PT3_DMA *dma) > +{ > + PT3_DMA_PAGE *page; > + __u32 i; > + > + for (i = 0; i < dma->ts_count; i++) { > + page = &dma->ts_info[i]; > + memset(page->data, 0, page->size); > + page->data_pos = 0; > + *page->data = PT3_DMA_NOT_SYNC_BYTE; > + } > + dma->ts_pos = 0; > +} > + > +void pt3_dma_set_enabled(PT3_DMA *dma, bool enabled) > +{ > + void __iomem *base = pt3_dma_get_base_addr(dma); > + __u64 start_addr = dma->desc_info->addr; > + > + if (enabled) { > + PT3_PRINTK(KERN_DEBUG, "#%d DMA enable start_addr=%llx\n", dma->adap->idx, start_addr); > + pt3_dma_reset(dma); > + writel(1 << 1, base + REG_DMA_CTL); > + writel(PT3_SHIFT_MASK(start_addr, 0, 32), base + REG_DMA_DESC_L); > + writel(PT3_SHIFT_MASK(start_addr, 32, 32), base + REG_DMA_DESC_H); > + PT3_PRINTK(KERN_DEBUG, "set descriptor address low %llx\n", > + PT3_SHIFT_MASK(start_addr, 0, 32)); > + PT3_PRINTK(KERN_DEBUG, "set descriptor address high %llx\n", > + PT3_SHIFT_MASK(start_addr, 32, 32)); > + writel(1 << 0, base + REG_DMA_CTL); > + } else { > + PT3_PRINTK(KERN_DEBUG, "#%d DMA disable\n", dma->adap->idx); > + writel(1 << 1, base + REG_DMA_CTL); > + while (1) { > + if (!PT3_SHIFT_MASK(readl(base + REG_STATUS), 0, 1)) > + break; > + PT3_WAIT_MS_INT(1); > + } > + } > + dma->enabled = enabled; > +} > + > +static __u32 pt3_dma_gray2binary(__u32 gray, __u32 bit) > +{ > + __u32 binary = 0, i, j, k; > + > + for (i = 0; i < bit; i++) { > + k = 0; > + for (j = i; j < bit; j++) k = k ^ PT3_SHIFT_MASK(gray, j, 1); > + binary |= k << i; > + } > + return binary; > +} > + > +__u32 pt3_dma_get_ts_error_packet_count(PT3_DMA *dma) > +{ > + return pt3_dma_gray2binary(readl(pt3_dma_get_base_addr(dma) + REG_TS_ERR), 32); > +} > + > +typedef enum { > + USE_LFSR = 1 << 16, > + REVERSE = 1 << 17, > + RESET = 1 << 18, > +} PT3_DMA_MODE; > + > +void pt3_dma_set_test_mode(PT3_DMA *dma, PT3_DMA_MODE mode, __u16 initval) > +{ > + void __iomem *base = pt3_dma_get_base_addr(dma); > + __u32 data = mode | initval; > + PT3_PRINTK(KERN_DEBUG, "set_test_mode base=%p data=0x%04x\n", base, data); > + writel(data, base + REG_TS_CTL); > +} > + > +bool pt3_dma_ready(PT3_DMA *dma) > +{ > + PT3_DMA_PAGE *page; > + __u8 *p; > + > + __u32 next = dma->ts_pos + 1; > + if (next >= dma->ts_count) > + next = 0; > + page = &dma->ts_info[next]; > + p = &page->data[page->data_pos]; > + > + if (*p == 0x47) > + return true; > + if (*p == PT3_DMA_NOT_SYNC_BYTE) > + return false; > + > + PT3_PRINTK(KERN_DEBUG, "invalid sync byte value=0x%02x ts_pos=%d data_pos=%d curr=0x%02x\n", > + *p, next, page->data_pos, dma->ts_info[dma->ts_pos].data[0]); > + return false; > +} > + > +ssize_t pt3_dma_copy(PT3_DMA *dma, DVB_DEMUX *demux, loff_t *ppos) > +{ > + bool ready; > + PT3_DMA_PAGE *page; > + __u32 i, prev; > + size_t csize, remain = dma->ts_info[dma->ts_pos].size; > + > + mutex_lock(&dma->lock); > + PT3_PRINTK(KERN_DEBUG, "#%d dma_copy ts_pos=0x%x data_pos=0x%x ppos=0x%x\n", > + dma->adap->idx, dma->ts_pos, dma->ts_info[dma->ts_pos].data_pos, (int)(*ppos)); > + for (;;) { > + for (i = 0; i < 20; i++) { > + if ((ready = pt3_dma_ready(dma))) > + break; > + PT3_WAIT_MS_INT(30); > + } > + if (!ready) { > + PT3_PRINTK(KERN_DEBUG, "#%d dma_copy NOT READY\n", dma->adap->idx); > + goto last; > + } > + prev = dma->ts_pos - 1; > + if (prev < 0 || dma->ts_count <= prev) > + prev = dma->ts_count - 1; > + if (dma->ts_info[prev].data[0] != PT3_DMA_NOT_SYNC_BYTE) > + PT3_PRINTK(KERN_INFO, "#%d DMA buffer overflow. prev=%d data=0x%x\n", > + dma->adap->idx, prev, dma->ts_info[prev].data[0]); > + page = &dma->ts_info[dma->ts_pos]; > + for (;;) { > + csize = (remain < (page->size - page->data_pos)) ? > + remain : (page->size - page->data_pos); > + dvb_dmx_swfilter(demux, &page->data[page->data_pos], csize); > + *ppos += csize; > + remain -= csize; > + page->data_pos += csize; > + if (page->data_pos >= page->size) { > + page->data_pos = 0; > + page->data[page->data_pos] = PT3_DMA_NOT_SYNC_BYTE; > + dma->ts_pos++; > + if (dma->ts_pos >= dma->ts_count) > + dma->ts_pos = 0; > + break; > + } > + if (remain <= 0) > + goto last; > + } > + } > +last: > + mutex_unlock(&dma->lock); > + return dma->ts_info[dma->ts_pos].size - remain; > +} > + > +__u32 pt3_dma_get_status(PT3_DMA *dma) > +{ > + return readl(pt3_dma_get_base_addr(dma) + REG_STATUS); > +} > + > diff --git a/drivers/media/pci/pt3_dvb/pt3_i2c.c b/drivers/media/pci/pt3_dvb/pt3_i2c.c > new file mode 100644 > index 0000000..a1772a4 > --- /dev/null > +++ b/drivers/media/pci/pt3_dvb/pt3_i2c.c > @@ -0,0 +1,60 @@ > +#define PT3_I2C_DATA_OFFSET 2048 > + > +bool pt3_i2c_is_clean(PT3_I2C *i2c) > +{ > + return PT3_SHIFT_MASK(readl(i2c->reg[0] + REG_I2C_R), 3, 1); > +} > + > +void pt3_i2c_reset(PT3_I2C *i2c) > +{ > + writel(1 << 17, i2c->reg[0] + REG_I2C_W); // 0x00020000 > +} > + > +static void pt3_i2c_wait(PT3_I2C *i2c, __u32 *data) > +{ > + __u32 val; > + > + while (1) { > + val = readl(i2c->reg[0] + REG_I2C_R); > + if (!PT3_SHIFT_MASK(val, 0, 1)) break; > + PT3_WAIT_MS_INT(1); > + } > + if (data) *data = val; > +} > + > +void pt3_i2c_copy(PT3_I2C *i2c, PT3_BUS *bus) > +{ > + __u32 i; > + __u8 *src = &bus->cmds[0]; > + void __iomem *dst = i2c->reg[1] + PT3_I2C_DATA_OFFSET + (bus->cmd_addr / 2); > + > + for (i = 0; i < bus->cmd_pos; i++) > + writeb(src[i], dst + i); > +} > + > +int pt3_i2c_run(PT3_I2C *i2c, PT3_BUS *bus, bool copy) > +{ > + int ret = 0; > + __u32 data, a, i, start_addr = bus->cmd_addr; > + > + mutex_lock(&i2c->lock); > + if (copy) > + pt3_i2c_copy(i2c, bus); > + > + pt3_i2c_wait(i2c, &data); > + if (unlikely(start_addr >= (1 << 13))) > + PT3_PRINTK(KERN_DEBUG, "start address is over.\n"); > + writel(1 << 16 | start_addr, i2c->reg[0] + REG_I2C_W); // 0x00010000 > + pt3_i2c_wait(i2c, &data); > + > + if ((a = PT3_SHIFT_MASK(data, 1, 2))) { > + PT3_PRINTK(KERN_DEBUG, "fail i2c run_code ret=0x%x\n", data); > + ret = -EIO; > + } > + > + for (i = 0; i < bus->read_addr; i++) > + pt3_bus_push_read_data(bus, readb(i2c->reg[1] + PT3_I2C_DATA_OFFSET + i)); > + mutex_unlock(&i2c->lock); > + return ret; > +} > + > diff --git a/drivers/media/pci/pt3_dvb/pt3_mx.c b/drivers/media/pci/pt3_dvb/pt3_mx.c > new file mode 100644 > index 0000000..1103415 > --- /dev/null > +++ b/drivers/media/pci/pt3_dvb/pt3_mx.c > @@ -0,0 +1,285 @@ > +static struct { > + __u32 freq; // Channel center frequency @ kHz > + __u32 freq_th; // Offset frequency threshold @ kHz > + __u8 shf_val; // Spur shift value > + __u8 shf_dir; // Spur shift direction > +} SHF_DVBT_TAB[] = { > + { 64500, 500, 0x92, 0x07 }, > + { 191500, 300, 0xE2, 0x07 }, > + { 205500, 500, 0x2C, 0x04 }, > + { 212500, 500, 0x1E, 0x04 }, > + { 226500, 500, 0xD4, 0x07 }, > + { 99143, 500, 0x9C, 0x07 }, > + { 173143, 500, 0xD4, 0x07 }, > + { 191143, 300, 0xD4, 0x07 }, > + { 207143, 500, 0xCE, 0x07 }, > + { 225143, 500, 0xCE, 0x07 }, > + { 243143, 500, 0xD4, 0x07 }, > + { 261143, 500, 0xD4, 0x07 }, > + { 291143, 500, 0xD4, 0x07 }, > + { 339143, 500, 0x2C, 0x04 }, > + { 117143, 500, 0x7A, 0x07 }, > + { 135143, 300, 0x7A, 0x07 }, > + { 153143, 500, 0x01, 0x07 } > +}; > + > +static void pt3_mx_rftune(__u8 *data, __u32 *size, __u32 freq) > +{ > + __u32 dig_rf_freq ,temp ,frac_divider, khz, mhz, i; > + __u8 rf_data[] = { > + 0x13, 0x00, // abort tune > + 0x3B, 0xC0, > + 0x3B, 0x80, > + 0x10, 0x95, // BW > + 0x1A, 0x05, > + 0x61, 0x00, > + 0x62, 0xA0, > + 0x11, 0x40, // 2 bytes to store RF frequency > + 0x12, 0x0E, // 2 bytes to store RF frequency > + 0x13, 0x01 // start tune > + }; > + > + dig_rf_freq = 0; > + temp = 0; > + frac_divider = 1000000; > + khz = 1000; > + mhz = 1000000; > + > + dig_rf_freq = freq / mhz; > + temp = freq % mhz; > + > + for (i = 0; i < 6; i++) { > + dig_rf_freq <<= 1; > + frac_divider /= 2; > + if (temp > frac_divider) { > + temp -= frac_divider; > + dig_rf_freq++; > + } > + } > + if (temp > 7812) > + dig_rf_freq++; > + > + rf_data[2 * (7) + 1] = (__u8)(dig_rf_freq); > + rf_data[2 * (8) + 1] = (__u8)(dig_rf_freq >> 8); > + > + for (i = 0; i < sizeof(SHF_DVBT_TAB)/sizeof(*SHF_DVBT_TAB); i++) { > + if ( (freq >= (SHF_DVBT_TAB[i].freq - SHF_DVBT_TAB[i].freq_th) * khz) && > + (freq <= (SHF_DVBT_TAB[i].freq + SHF_DVBT_TAB[i].freq_th) * khz) ) { > + rf_data[2 * (5) + 1] = SHF_DVBT_TAB[i].shf_val; > + rf_data[2 * (6) + 1] = 0xa0 | SHF_DVBT_TAB[i].shf_dir; > + break; > + } > + } > + memcpy(data, rf_data, sizeof(rf_data)); > + *size = sizeof(rf_data); > + > + PT3_PRINTK(KERN_DEBUG, "mx_rftune freq=%d\n", freq); > +} > + > +static void pt3_mx_write(PT3_ADAPTER *adap, PT3_BUS *bus, __u8 *data, size_t size) > +{ > + pt3_tc_write_tuner_without_addr(adap, bus, data, size); > +} > + > +static void pt3_mx_standby(PT3_ADAPTER *adap) > +{ > + __u8 data[4] = {0x01, 0x00, 0x13, 0x00}; > + pt3_mx_write(adap, NULL, data, sizeof(data)); > +} > + > +static void pt3_mx_set_register(PT3_ADAPTER *adap, PT3_BUS *bus, __u8 addr, __u8 value) > +{ > + __u8 data[2] = {addr, value}; > + pt3_mx_write(adap, bus, data, sizeof(data)); > +} > + > +static void pt3_mx_idac_setting(PT3_ADAPTER *adap, PT3_BUS *bus) > +{ > + __u8 data[] = { > + 0x0D, 0x00, > + 0x0C, 0x67, > + 0x6F, 0x89, > + 0x70, 0x0C, > + 0x6F, 0x8A, > + 0x70, 0x0E, > + 0x6F, 0x8B, > + 0x70, 0x10+12, > + }; > + pt3_mx_write(adap, bus, data, sizeof(data)); > +} > + > +static void pt3_mx_tuner_rftune(PT3_ADAPTER *adap, PT3_BUS *bus, __u32 freq) > +{ > + __u8 data[100]; > + __u32 size; > + > + size = 0; > + adap->freq = freq; > + pt3_mx_rftune(data, &size, freq); > + if (size != 20) { > + PT3_PRINTK(KERN_ALERT, "fail mx_rftune size = %d\n", size); > + return; > + } > + pt3_mx_write(adap, bus, data, 14); > + PT3_WAIT_MS_INT(1); > + pt3_mx_write(adap, bus, data + 14, 6); > + PT3_WAIT_MS_INT(1); > + PT3_WAIT_MS_INT(30); > + pt3_mx_set_register(adap, bus, 0x1a, 0x0d); > + pt3_mx_idac_setting(adap, bus); > +} > + > +static void pt3_mx_wakeup(PT3_ADAPTER *adap) > +{ > + __u8 data[2] = {0x01, 0x01}; > + > + pt3_mx_write(adap, NULL, data, sizeof(data)); > + pt3_mx_tuner_rftune(adap, NULL, adap->freq); > +} > + > +static void pt3_mx_set_sleep_mode(PT3_ADAPTER *adap, bool sleep) > +{ > + if (sleep) pt3_mx_standby(adap); > + else pt3_mx_wakeup(adap); > +} > + > +int pt3_mx_set_sleep(PT3_ADAPTER *adap, bool sleep) > +{ > + int ret; > + > + if (sleep) { > + if ((ret = pt3_tc_set_agc_t(adap, PT3_TC_AGC_MANUAL))) > + return ret; > + pt3_mx_set_sleep_mode(adap, sleep); > + pt3_tc_write_sleep_time(adap, sleep); > + } else { > + pt3_tc_write_sleep_time(adap, sleep); > + pt3_mx_set_sleep_mode(adap, sleep); > + } > + adap->sleep = sleep; > + return 0; > +} > + > +static __u8 PT3_MX_FREQ_TABLE[][3] = { > + { 2, 0, 3 }, > + { 12, 1, 22 }, > + { 21, 0, 12 }, > + { 62, 1, 63 }, > + { 112, 0, 62 } > +}; > + > +void pt3_mx_get_channel_frequency(PT3_ADAPTER *adap, __u32 channel, bool *catv, __u32 *number, __u32 *freq) > +{ > + __u32 i; > + __s32 freq_offset = 0; > + > + if (12 <= channel) freq_offset += 2; > + if (17 <= channel) freq_offset -= 2; > + if (63 <= channel) freq_offset += 2; > + *freq = 93 + channel * 6 + freq_offset; > + > + for (i = 0; i < sizeof(PT3_MX_FREQ_TABLE) / sizeof(*PT3_MX_FREQ_TABLE); i++) { > + if (channel <= PT3_MX_FREQ_TABLE[i][0]) { > + *catv = PT3_MX_FREQ_TABLE[i][1] ? true : false; > + *number = channel + PT3_MX_FREQ_TABLE[i][2] - PT3_MX_FREQ_TABLE[i][0]; > + break; > + } > + } > +} > + > +static __u32 REAL_TABLE[112] = { > + 0x058d3f49,0x05e8ccc9,0x06445a49,0x069fe7c9,0x06fb7549, > + 0x075702c9,0x07b29049,0x080e1dc9,0x0869ab49,0x08c538c9, > + 0x0920c649,0x097c53c9,0x09f665c9,0x0a51f349,0x0aad80c9, > + 0x0b090e49,0x0b649bc9,0x0ba1a4c9,0x0bfd3249,0x0c58bfc9, > + 0x0cb44d49,0x0d0fdac9,0x0d6b6849,0x0dc6f5c9,0x0e228349, > + 0x0e7e10c9,0x0ed99e49,0x0f352bc9,0x0f90b949,0x0fec46c9, > + 0x1047d449,0x10a361c9,0x10feef49,0x115a7cc9,0x11b60a49, > + 0x121197c9,0x126d2549,0x12c8b2c9,0x13244049,0x137fcdc9, > + 0x13db5b49,0x1436e8c9,0x14927649,0x14ee03c9,0x15499149, > + 0x15a51ec9,0x1600ac49,0x165c39c9,0x16b7c749,0x171354c9, > + 0x176ee249,0x17ca6fc9,0x1825fd49,0x18818ac9,0x18dd1849, > + 0x1938a5c9,0x19943349,0x19efc0c9,0x1a4b4e49,0x1aa6dbc9, > + 0x1b026949,0x1b5df6c9,0x1bb98449,0x1c339649,0x1c8f23c9, > + 0x1ceab149,0x1d463ec9,0x1da1cc49,0x1dfd59c9,0x1e58e749, > + 0x1eb474c9,0x1f100249,0x1f6b8fc9,0x1fc71d49,0x2022aac9, > + 0x207e3849,0x20d9c5c9,0x21355349,0x2190e0c9,0x21ec6e49, > + 0x2247fbc9,0x22a38949,0x22ff16c9,0x235aa449,0x23b631c9, > + 0x2411bf49,0x246d4cc9,0x24c8da49,0x252467c9,0x257ff549, > + 0x25db82c9,0x26371049,0x26929dc9,0x26ee2b49,0x2749b8c9, > + 0x27a54649,0x2800d3c9,0x285c6149,0x28b7eec9,0x29137c49, > + 0x296f09c9,0x29ca9749,0x2a2624c9,0x2a81b249,0x2add3fc9, > + 0x2b38cd49,0x2b945ac9,0x2befe849,0x2c4b75c9,0x2ca70349, > + 0x2d0290c9,0x2d5e1e49, > +}; > + > +static void pt3_mx_read(PT3_ADAPTER *adap, PT3_BUS *bus, __u8 addr, __u8 *data) > +{ > + __u8 write[2] = {0xfb, addr}; > + > + pt3_tc_write_tuner_without_addr(adap, bus, write, sizeof(write)); > + pt3_tc_read_tuner_without_addr(adap, bus, data); > +} > + > +static void pt3_mx_rfsynth_lock_status(PT3_ADAPTER *adap, PT3_BUS *bus, bool *locked) > +{ > + __u8 data; > + > + *locked = false; > + pt3_mx_read(adap, bus, 0x16, &data); > + data &= 0x0c; > + if (data == 0x0c) > + *locked = true; > +} > + > +static void pt3_mx_refsynth_lock_status(PT3_ADAPTER *adap, PT3_BUS *bus, bool *locked) > +{ > + __u8 data; > + > + *locked = false; > + pt3_mx_read(adap, bus, 0x16, &data); > + data &= 0x03; > + if (data == 0x03) > + *locked = true; > +} > + > +bool pt3_mx_locked(PT3_ADAPTER *adap) > +{ > + bool locked1 = false, locked2 = false; > + struct timeval begin, now; > + > + do_gettimeofday(&begin); > + while (1) { > + do_gettimeofday(&now); > + pt3_mx_rfsynth_lock_status(adap, NULL, &locked1); > + pt3_mx_refsynth_lock_status(adap, NULL, &locked2); > + if (locked1 && locked2) > + break; > + if (pt3_tc_time_diff(&begin, &now) > 1000) > + break; > + PT3_WAIT_MS_INT(1); > + } > +#if 0 > + PT3_PRINTK(KERN_DEBUG, "mx locked1=%d locked2=%d\n", locked1, locked2); > +#endif > + return locked1 && locked2; > +} > + > +int pt3_mx_set_frequency(PT3_ADAPTER *adap, __u32 channel, __s32 offset) > +{ > + int ret; > + bool catv; > + __u32 number, freq, real_freq; > + > + if ((ret = pt3_tc_set_agc_t(adap, PT3_TC_AGC_MANUAL))) > + return ret; > + pt3_mx_get_channel_frequency(adap, channel, &catv, &number, &freq); > + PT3_PRINTK(KERN_DEBUG, "#%d ch%d%s no%d %dHz\n", adap->idx, channel, catv ? " CATV" : "", number, freq); > + //real_freq = (7 * freq + 1 + offset) * 1000000.0/7.0; > + real_freq = REAL_TABLE[channel]; > + > + pt3_mx_tuner_rftune(adap, NULL, real_freq); > + > + return (!pt3_mx_locked(adap)) ? -ETIMEDOUT : pt3_tc_set_agc_t(adap, PT3_TC_AGC_AUTO); > +} > + > diff --git a/drivers/media/pci/pt3_dvb/pt3_qm.c b/drivers/media/pci/pt3_dvb/pt3_qm.c > new file mode 100644 > index 0000000..7270a44 > --- /dev/null > +++ b/drivers/media/pci/pt3_dvb/pt3_qm.c > @@ -0,0 +1,376 @@ > +static __u8 pt3_qm_reg_rw[] = { > + 0x48, 0x1c, 0xa0, 0x10, 0xbc, 0xc5, 0x20, 0x33, > + 0x06, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, > + 0x00, 0xff, 0xf3, 0x00, 0x2a, 0x64, 0xa6, 0x86, > + 0x8c, 0xcf, 0xb8, 0xf1, 0xa8, 0xf2, 0x89, 0x00, > +}; > + > +void pt3_qm_init_reg_param(PT3_QM *qm) > +{ > + memcpy(qm->reg, pt3_qm_reg_rw, sizeof(pt3_qm_reg_rw)); > + > + qm->adap->freq = 0; > + qm->standby = false; > + qm->wait_time_lpf = 20; > + qm->wait_time_search_fast = 4; > + qm->wait_time_search_normal = 15; > +} > + > +static int pt3_qm_write(PT3_QM *qm, PT3_BUS *bus, __u8 addr, __u8 data) > +{ > + int ret = pt3_tc_write_tuner(qm->adap, bus, addr, &data, sizeof(data)); > + qm->reg[addr] = data; > + return ret; > +} > + > +#define PT3_QM_INIT_DUMMY_RESET 0x0c > + > +void pt3_qm_dummy_reset(PT3_QM *qm, PT3_BUS *bus) > +{ > + pt3_qm_write(qm, bus, 0x01, PT3_QM_INIT_DUMMY_RESET); > + pt3_qm_write(qm, bus, 0x01, PT3_QM_INIT_DUMMY_RESET); > +} > + > +static void pt3_qm_sleep(PT3_BUS *bus, __u32 ms) > +{ > + if (bus) pt3_bus_sleep(bus, ms); > + else PT3_WAIT_MS_INT(ms); > +} > + > +static int pt3_qm_read(PT3_QM *qm, PT3_BUS *bus, __u8 addr, __u8 *data) > +{ > + int ret = 0; > + if ((addr == 0x00) || (addr == 0x0d)) { > + ret = pt3_tc_read_tuner(qm->adap, bus, addr, data); > +#if 0 > + if (!bus) > + PT3_PRINTK(KERN_DEBUG "qm_read addr=0x%02x data=0x%02x\n", addr, *data); > +#endif > + } > + return ret; > +} > + > +static __u8 pt3_qm_flag[32] = { > + 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, > + 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 > +}; > + > +static int pt3_qm_set_sleep_mode(PT3_QM *qm, PT3_BUS *bus) > +{ > + int ret; > + > + if (qm->standby) { > + qm->reg[0x01] &= (~(1 << 3)) & 0xff; > + qm->reg[0x01] |= 1 << 0; > + qm->reg[0x05] |= 1 << 3; > + > + ret = pt3_qm_write(qm, bus, 0x05, qm->reg[0x05]); > + if (ret) > + return ret; > + ret = pt3_qm_write(qm, bus, 0x01, qm->reg[0x01]); > + if (ret) > + return ret; > + } else { > + qm->reg[0x01] |= 1 <<3; > + qm->reg[0x01] &= (~(1 << 0)) & 0xff; > + qm->reg[0x05] &= (~(1 << 3)) & 0xff; > + > + ret = pt3_qm_write(qm, bus, 0x01, qm->reg[0x01]); > + if (ret) > + return ret; > + ret = pt3_qm_write(qm, bus, 0x05, qm->reg[0x05]); > + if (ret) > + return ret; > + } > + > + return ret; > +} > + > +static int pt3_qm_set_search_mode(PT3_QM *qm, PT3_BUS *bus) > +{ > + qm->reg[3] &= 0xfe; > + return pt3_qm_write(qm, bus, 0x03, qm->reg[3]); > +} > + > +int pt3_qm_init(PT3_QM *qm, PT3_BUS *bus) > +{ > + __u8 i_data; > + __u32 i; > + int ret; > + > + // soft reset on > + if ((ret = pt3_qm_write(qm, bus, 0x01, PT3_QM_INIT_DUMMY_RESET))) > + return ret; > + > + pt3_qm_sleep(bus, 1); > + > + // soft reset off > + i_data = qm->reg[0x01] | 0x10; > + if ((ret = pt3_qm_write(qm, bus, 0x01, i_data))) > + return ret; > + > + // ID check > + if ((ret = pt3_qm_read(qm, bus, 0x00, &i_data))) > + return ret; > + > + if ((bus == NULL) && (i_data != 0x48)) > + return -EINVAL; > + > + // LPF tuning on > + pt3_qm_sleep(bus, 1); > + qm->reg[0x0c] |= 0x40; > + if ((ret = pt3_qm_write(qm, bus, 0x0c, qm->reg[0x0c]))) > + return ret; > + pt3_qm_sleep(bus, qm->wait_time_lpf); > + > + for (i = 0; i < sizeof(pt3_qm_flag); i++) { > + if (pt3_qm_flag[i] == 1) { > + if ((ret = pt3_qm_write(qm, bus, i, qm->reg[i]))) > + return ret; > + } > + } > + > + if ((ret = pt3_qm_set_sleep_mode(qm, bus))) > + return ret; > + if ((ret = pt3_qm_set_search_mode(qm, bus))) > + return ret; > + return ret; > +} > + > +int pt3_qm_set_sleep(PT3_QM *qm, bool sleep) > +{ > + int ret; > + PT3_TS_PIN_MODE mode; > + > + mode = sleep ? PT3_TS_PIN_MODE_LOW : PT3_TS_PIN_MODE_NORMAL; > + qm->standby = sleep; > + if (sleep) { > + if ((ret = pt3_tc_set_agc_s(qm->adap, PT3_TC_AGC_MANUAL))) > + return ret; > + pt3_qm_set_sleep_mode(qm, NULL); > + pt3_tc_set_sleep_s(qm->adap, NULL, sleep); > + } else { > + pt3_tc_set_sleep_s(qm->adap, NULL, sleep); > + pt3_qm_set_sleep_mode(qm, NULL); > + } > + qm->adap->sleep = sleep; > + return 0; > +} > + > +void pt3_qm_get_channel_freq(__u32 channel, __u32 *number, __u32 *freq) > +{ > + if (channel < 12) { > + *number = 1 + 2 * channel; > + *freq = 104948 + 3836 * channel; > + } else if (channel < 24) { > + channel -= 12; > + *number = 2 + 2 * channel; > + *freq = 161300 + 4000 * channel; > + } else { > + channel -= 24; > + *number = 1 + 2 * channel; > + *freq = 159300 + 4000 * channel; > + } > +} > + > +static __u32 PT3_QM_FREQ_TABLE[9][3] = { > + { 2151000, 1, 7 }, > + { 1950000, 1, 6 }, > + { 1800000, 1, 5 }, > + { 1600000, 1, 4 }, > + { 1450000, 1, 3 }, > + { 1250000, 1, 2 }, > + { 1200000, 0, 7 }, > + { 975000, 0, 6 }, > + { 950000, 0, 0 } > +}; > + > +static __u32 SD_TABLE[24][2][3] = { > + {{0x38fae1, 0x0d, 0x5},{0x39fae1, 0x0d, 0x5},}, > + {{0x3f570a, 0x0e, 0x3},{0x00570a, 0x0e, 0x3},}, > + {{0x05b333, 0x0e, 0x5},{0x06b333, 0x0e, 0x5},}, > + {{0x3c0f5c, 0x0f, 0x4},{0x3d0f5c, 0x0f, 0x4},}, > + {{0x026b85, 0x0f, 0x6},{0x036b85, 0x0f, 0x6},}, > + {{0x38c7ae, 0x10, 0x5},{0x39c7ae, 0x10, 0x5},}, > + {{0x3f23d7, 0x11, 0x3},{0x0023d7, 0x11, 0x3},}, > + {{0x058000, 0x11, 0x5},{0x068000, 0x11, 0x5},}, > + {{0x3bdc28, 0x12, 0x4},{0x3cdc28, 0x12, 0x4},}, > + {{0x023851, 0x12, 0x6},{0x033851, 0x12, 0x6},}, > + {{0x38947a, 0x13, 0x5},{0x39947a, 0x13, 0x5},}, > + {{0x3ef0a3, 0x14, 0x3},{0x3ff0a3, 0x14, 0x3},}, > + {{0x3c8000, 0x16, 0x4},{0x3d8000, 0x16, 0x4},}, > + {{0x048000, 0x16, 0x6},{0x058000, 0x16, 0x6},}, > + {{0x3c8000, 0x17, 0x5},{0x3d8000, 0x17, 0x5},}, > + {{0x048000, 0x18, 0x3},{0x058000, 0x18, 0x3},}, > + {{0x3c8000, 0x18, 0x6},{0x3d8000, 0x18, 0x6},}, > + {{0x048000, 0x19, 0x4},{0x058000, 0x19, 0x4},}, > + {{0x3c8000, 0x1a, 0x3},{0x3d8000, 0x1a, 0x3},}, > + {{0x048000, 0x1a, 0x5},{0x058000, 0x1a, 0x5},}, > + {{0x3c8000, 0x1b, 0x4},{0x3d8000, 0x1b, 0x4},}, > + {{0x048000, 0x1b, 0x6},{0x058000, 0x1b, 0x6},}, > + {{0x3c8000, 0x1c, 0x5},{0x3d8000, 0x1c, 0x5},}, > + {{0x048000, 0x1d, 0x3},{0x058000, 0x1d, 0x3},}, > +}; > + > +static int pt3_qm_tuning(PT3_QM *qm, PT3_BUS *bus, __u32 *sd, __u32 channel) > +{ > + int ret; > + PT3_ADAPTER *adap = qm->adap; > + __u8 i_data; > + __u32 index, i, N, A; > + > + qm->reg[0x08] &= 0xf0; > + qm->reg[0x08] |= 0x09; > + > + qm->reg[0x13] &= 0x9f; > + qm->reg[0x13] |= 0x20; > + > + for (i = 0; i < 8; i++) { > + if ((PT3_QM_FREQ_TABLE[i+1][0] <= adap->freq) && (adap->freq < PT3_QM_FREQ_TABLE[i][0])) { > + i_data = qm->reg[0x02]; > + i_data &= 0x0f; > + i_data |= PT3_QM_FREQ_TABLE[i][1] << 7; > + i_data |= PT3_QM_FREQ_TABLE[i][2] << 4; > + pt3_qm_write(qm, bus, 0x02, i_data); > + } > + } > + > + index = pt3_tc_index(qm->adap); > + *sd = SD_TABLE[channel][index][0]; > + N = SD_TABLE[channel][index][1]; > + A = SD_TABLE[channel][index][2]; > + > + qm->reg[0x06] &= 0x40; > + qm->reg[0x06] |= N; > + if ((ret = pt3_qm_write(qm, bus, 0x06, qm->reg[0x06]))) > + return ret; > + > + qm->reg[0x07] &= 0xf0; > + qm->reg[0x07] |= A & 0x0f; > + return pt3_qm_write(qm, bus, 0x07, qm->reg[0x07]); > +} > + > +static int pt3_qm_local_lpf_tuning(PT3_QM *qm, PT3_BUS *bus, int lpf, __u32 channel) > +{ > + __u8 i_data; > + __u32 sd = 0; > + int ret = pt3_qm_tuning(qm, bus, &sd, channel); > + > + if (ret) > + return ret; > + > + if (lpf) { > + i_data = qm->reg[0x08] & 0xf0; > + i_data |= 2; > + ret = pt3_qm_write(qm, bus, 0x08, i_data); > + } else { > + ret = pt3_qm_write(qm, bus, 0x08, qm->reg[0x08]); > + } > + if (ret) > + return ret; > + > + qm->reg[0x09] &= 0xc0; > + qm->reg[0x09] |= (sd >> 16) & 0x3f; > + qm->reg[0x0a] = (sd >> 8) & 0xff; > + qm->reg[0x0b] = (sd >> 0) & 0xff; > + if ((ret = pt3_qm_write(qm, bus, 0x09, qm->reg[0x09]))) > + return ret; > + if ((ret = pt3_qm_write(qm, bus, 0x0a, qm->reg[0x0a]))) > + return ret; > + if ((ret = pt3_qm_write(qm, bus, 0x0b, qm->reg[0x0b]))) > + return ret; > + > + if (lpf) { > + i_data = qm->reg[0x0c]; > + i_data &= 0x3f; > + if ((ret = pt3_qm_write(qm, bus, 0x0c, i_data))) > + return ret; > + pt3_qm_sleep(bus, 1); > + > + i_data = qm->reg[0x0c]; > + i_data |= 0xc0; > + if ((ret = pt3_qm_write(qm, bus, 0x0c, i_data))) > + return ret; > + pt3_qm_sleep(bus, qm->wait_time_lpf); > + if ((ret = pt3_qm_write(qm, bus, 0x08, 0x09))) > + return ret; > + if ((ret = pt3_qm_write(qm, bus, 0x13, qm->reg[0x13]))) > + return ret; > + } else { > + if ((ret = pt3_qm_write(qm, bus, 0x13, qm->reg[0x13]))) > + return ret; > + i_data = qm->reg[0x0c]; > + i_data &= 0x7f; > + if ((ret = pt3_qm_write(qm, bus, 0x0c, i_data))) > + return ret; > + pt3_qm_sleep(bus, 2); // 1024usec > + > + i_data = qm->reg[0x0c]; > + i_data |= 0x80; > + if ((ret = pt3_qm_write(qm, bus, 0x0c, i_data))) > + return ret; > + if (qm->reg[0x03] & 0x01) { > + pt3_qm_sleep(bus, qm->wait_time_search_fast); > + } else { > + pt3_qm_sleep(bus, qm->wait_time_search_normal); > + } > + } > + return ret; > +} > + > +int pt3_qm_get_locked(PT3_QM *qm, bool *locked) > +{ > + int ret; > + > + if ((ret = pt3_qm_read(qm, NULL, 0x0d, &qm->reg[0x0d]))) > + return ret; > + if (qm->reg[0x0d] & 0x40) *locked = true; > + else *locked = false; > + return ret; > +} > + > +int pt3_qm_set_frequency(PT3_QM *qm, __u32 channel) > +{ > + int ret; > + bool locked; > + __u32 number, freq, freq_khz; > + struct timeval begin, now; > + > + if ((ret = pt3_tc_set_agc_s(qm->adap, PT3_TC_AGC_MANUAL))) > + return ret; > + > + pt3_qm_get_channel_freq(channel, &number, &freq); > + freq_khz = freq * 10; > + if (pt3_tc_index(qm->adap) == 0) > + freq_khz -= 500; > + else > + freq_khz += 500; > + qm->adap->freq = freq_khz; > + > + PT3_PRINTK(KERN_DEBUG, "#%d ch %d freq %d kHz\n", qm->adap->idx, channel, freq_khz); > + > + if ((ret = pt3_qm_local_lpf_tuning(qm, NULL, 1, channel))) > + return ret; > + > + do_gettimeofday(&begin); > + while (1) { > + do_gettimeofday(&now); > + if ((ret = pt3_qm_get_locked(qm, &locked))) > + return ret; > + if (locked) > + break; > + if (pt3_tc_time_diff(&begin, &now) >= 100) > + break; > + PT3_WAIT_MS_INT(1); > + } > + // PT3_PRINTK(KERN_DEBUG, "qm_get_locked %d ret=0x%x\n", locked, ret); > + if (!locked) > + return -ETIMEDOUT; > + > + if(!(ret = pt3_tc_set_agc_s(qm->adap, PT3_TC_AGC_AUTO))) { > + qm->adap->channel = channel; > + qm->adap->offset = 0; > + } > + return ret; > +} > + > diff --git a/drivers/media/pci/pt3_dvb/pt3_tc.c b/drivers/media/pci/pt3_dvb/pt3_tc.c > new file mode 100644 > index 0000000..8f03faa > --- /dev/null > +++ b/drivers/media/pci/pt3_dvb/pt3_tc.c > @@ -0,0 +1,449 @@ > +int pt3_tc_write(PT3_ADAPTER *adap, PT3_BUS *bus, __u8 addr, const __u8 *data, __u32 size) > +{ > + int ret = 0; > + __u8 buf; > + PT3_BUS *p = bus ? bus : vzalloc(sizeof(PT3_BUS)); > + > + if (!p) { > + PT3_PRINTK(KERN_ALERT, "out of memory.\n"); > + return -ENOMEM; > + } > + > + pt3_bus_start(p); > + buf = adap->addr_tc << 1; > + pt3_bus_write(p, &buf, 1); > + pt3_bus_write(p, &addr, 1); > + pt3_bus_write(p, data, size); > + pt3_bus_stop(p); > + > + if (!bus) { > + pt3_bus_end(p); > + ret = pt3_i2c_run(adap->pt3->i2c, p, true); > + vfree(p); > + } > + return ret; > +} > + > +static int pt3_tc_write_pskmsrst(PT3_ADAPTER *adap) > +{ > + __u8 buf = 0x01; > + return pt3_tc_write(adap, NULL, 0x03, &buf, 1); > +} > + > +static int pt3_tc_write_imsrst(PT3_ADAPTER *adap) > +{ > + __u8 buf = 0x01 << 6; > + return pt3_tc_write(adap, NULL, 0x01, &buf, 1); > +} > + > +int pt3_tc_init(PT3_ADAPTER *adap) > +{ > + __u8 buf = 0x10; > + > + PT3_PRINTK(KERN_INFO, "#%d %s tuner=0x%x tc=0x%x\n", adap->idx, adap->str, adap->addr_tuner, adap->addr_tc); > + if (adap->type == SYS_ISDBS) { > + int ret = pt3_tc_write_pskmsrst(adap); > + return ret ? ret : pt3_tc_write(adap, NULL, 0x1e, &buf, 1); > + } else { > + int ret = pt3_tc_write_imsrst(adap); > + return ret ? ret : pt3_tc_write(adap, NULL, 0x1c, &buf, 1); > + } > +} > + > +int pt3_tc_set_powers(PT3_ADAPTER *adap, PT3_BUS *bus, bool tuner, bool amp) > +{ > + __u8 tuner_power = tuner ? 0x03 : 0x02, > + amp_power = amp ? 0x03 : 0x02, > + data = (tuner_power << 6) | (0x01 << 4) | (amp_power << 2) | 0x01 << 0; > + PT3_PRINTK(KERN_DEBUG, "#%d tuner %s amp %s\n", adap->idx, tuner ? "ON" : "OFF", amp ? "ON" : "OFF"); > + return pt3_tc_write(adap, bus, 0x1e, &data, 1); > +} > + > +int pt3_tc_set_ts_pins_mode(PT3_ADAPTER *adap, PT3_TS_PINS_MODE *mode) > +{ > + __u32 clock_data = mode->clock_data, > + byte = mode->byte, > + valid = mode->valid; > + > + if (clock_data) clock_data++; > + if (byte) byte++; > + if (valid) valid++; > + if (adap->type == SYS_ISDBS) { > + __u8 data[2]; > + int ret; > + data[0] = 0x15 | (valid << 6); > + data[1] = 0x04 | (clock_data << 4) | byte; > + > + if ((ret = pt3_tc_write(adap, NULL, 0x1c, &data[0], 1))) return ret; > + return pt3_tc_write(adap, NULL, 0x1f, &data[1], 1); > + } else { > + __u8 data = (__u8)(0x01 | (clock_data << 6) | (byte << 4) | (valid << 2)) ; > + return pt3_tc_write(adap, NULL, 0x1d, &data, 1); > + } > +} > + > +#define PT3_TC_THROUGH 0xfe > +int pt3_tc_write_tuner(PT3_ADAPTER *adap, PT3_BUS *bus, __u8 addr, const __u8 *data, __u32 size) > +{ > + int ret = 0; > + __u8 buf; > + PT3_BUS *p = bus ? bus : vzalloc(sizeof(PT3_BUS)); > + > + if (!p) { > + PT3_PRINTK(KERN_ALERT, "out of memory.\n"); > + return -ENOMEM; > + } > + > + pt3_bus_start(p); > + buf = adap->addr_tc << 1; > + pt3_bus_write(p, &buf, 1); > + buf = PT3_TC_THROUGH; > + pt3_bus_write(p, &buf, 1); > + buf = adap->addr_tuner << 1; > + pt3_bus_write(p, &buf, 1); > + pt3_bus_write(p, &addr, 1); > + pt3_bus_write(p, data, size); > + pt3_bus_stop(p); > + > + if (!bus) { > + pt3_bus_end(p); > + ret = pt3_i2c_run(adap->pt3->i2c, p, true); > + vfree(p); > + } > + return ret; > +} > + > +int pt3_tc_read_tuner(PT3_ADAPTER *adap, PT3_BUS *bus, __u8 addr, __u8 *data) > +{ > + int ret = 0; > + __u8 buf; > + size_t rindex; > + PT3_BUS *p; > + > + if (!(p = bus ? bus : vzalloc(sizeof(PT3_BUS)))) { > + PT3_PRINTK(KERN_ALERT, "out of memory.\n"); > + return -ENOMEM; > + } > + > + pt3_bus_start(p); > + buf = adap->addr_tc << 1; > + pt3_bus_write(p, &buf, 1); > + buf = PT3_TC_THROUGH; > + pt3_bus_write(p, &buf, 1); > + buf = adap->addr_tuner << 1; > + pt3_bus_write(p, &buf, 1); > + pt3_bus_write(p, &addr, 1); > + > + pt3_bus_start(p); > + buf = adap->addr_tc << 1; > + pt3_bus_write(p, &buf, 1); > + buf = PT3_TC_THROUGH; > + pt3_bus_write(p, &buf, 1); > + buf = (adap->addr_tuner << 1) | 1; > + pt3_bus_write(p, &buf, 1); > + > + pt3_bus_start(p); > + buf = (adap->addr_tc << 1) | 1; > + pt3_bus_write(p, &buf, 1); > + rindex = pt3_bus_read(p, &buf, 1); > + pt3_bus_stop(p); > + > + if (!bus) { > + pt3_bus_end(p); > + ret = pt3_i2c_run(adap->pt3->i2c, p, true); > + data[0] = pt3_bus_data1(p, rindex); > + vfree(p); > + } > +//#if 0 > + PT3_PRINTK(KERN_DEBUG, "#%d read_tuner addr_tc=0x%x addr_tuner=0x%x\n", > + adap->idx, adap->addr_tc, adap->addr_tuner); > +//#endif > + return ret; > +} > + > +typedef enum { > + PT3_TC_AGC_AUTO, > + PT3_TC_AGC_MANUAL, > +} PT3_TC_AGC; > + > +static __u8 agc_data_s[2] = { 0xb0, 0x30 }; > + > +__u32 pt3_tc_index(PT3_ADAPTER *adap) > +{ > + return PT3_SHIFT_MASK(adap->addr_tc, 1, 1); > +} > + > +// ISDB_S > +int pt3_tc_set_agc_s(PT3_ADAPTER *adap, PT3_TC_AGC agc) > +{ > + int ret; > + __u8 data = (agc == PT3_TC_AGC_AUTO) ? 0xff : 0x00; > + if ((ret = pt3_tc_write(adap, NULL, 0x0a, &data, 1))) return ret; > + > + data = agc_data_s[pt3_tc_index(adap)]; > + data |= (agc == PT3_TC_AGC_AUTO) ? 0x01 : 0x00; > + if ((ret = pt3_tc_write(adap, NULL, 0x10, &data, 1))) return ret; > + > + data = (agc == PT3_TC_AGC_AUTO) ? 0x40 : 0x00; > + if ((ret = pt3_tc_write(adap, NULL, 0x11, &data, 1))) return ret; > + return pt3_tc_write_pskmsrst(adap); > +} > + > +int pt3_tc_set_sleep_s(PT3_ADAPTER *adap, PT3_BUS *bus, bool sleep) > +{ > + __u8 buf = sleep ? 1 : 0; > + return pt3_tc_write(adap, bus, 0x17, &buf, 1); > +} > + > +// ISDB_T > +int pt3_tc_set_agc_t(PT3_ADAPTER *adap, PT3_TC_AGC agc) > +{ > + int ret; > + __u8 data = (agc == PT3_TC_AGC_AUTO) ? 0x40 : 0x00; > + > + if ((ret = pt3_tc_write(adap, NULL, 0x25, &data, 1))) return ret; > + > + data = 0x4c; > + data |= (agc == PT3_TC_AGC_AUTO) ? 0x00 : 0x01; > + if ((ret = pt3_tc_write(adap, NULL, 0x23, &data, 1))) return ret; > + return pt3_tc_write_imsrst(adap); > +} > + > +int pt3_tc_write_tuner_without_addr(PT3_ADAPTER *adap, PT3_BUS *bus, const __u8 *data, __u32 size) > +{ > + int ret = 0; > + __u8 buf; > + PT3_BUS *p = bus ? bus : vzalloc(sizeof(PT3_BUS)); > + if (!p) { > + PT3_PRINTK(KERN_ALERT, "out of memory.\n"); > + return -ENOMEM; > + } > + > + pt3_bus_start(p); > + buf = adap->addr_tc << 1; > + pt3_bus_write(p, &buf, 1); > + buf = PT3_TC_THROUGH; > + pt3_bus_write(p, &buf, 1); > + buf = adap->addr_tuner << 1; > + pt3_bus_write(p, &buf, 1); > + pt3_bus_write(p, data, size); > + pt3_bus_stop(p); > + > + if (!bus) { > + pt3_bus_end(p); > + ret = pt3_i2c_run(adap->pt3->i2c, p, true); > + vfree(p); > + } > + return ret; > +} > + > +int pt3_tc_write_sleep_time(PT3_ADAPTER *adap, int sleep) > +{ > + __u8 data = (1 << 7) | ((sleep ? 1 : 0) << 4); > + return pt3_tc_write(adap, NULL, 0x03, &data, 1); > +} > + > +__u32 pt3_tc_time_diff(struct timeval *st, struct timeval *et) > +{ > + __u32 diff = ((et->tv_sec - st->tv_sec) * 1000000 + (et->tv_usec - st->tv_usec)) / 1000; > +#if 0 > + PT3_PRINTK(KERN_DEBUG, "time diff = %d\n", diff); > +#endif > + return diff; > +} > + > +int pt3_tc_read_tuner_without_addr(PT3_ADAPTER *adap, PT3_BUS *bus, __u8 *data) > +{ > + int ret = 0; > + __u8 buf; > + __u32 rindex; > + PT3_BUS *p = bus ? bus : vzalloc(sizeof(PT3_BUS)); > + > + if (!p) { > + PT3_PRINTK(KERN_ALERT, "out of memory.\n"); > + return -ENOMEM; > + } > + > + pt3_bus_start(p); > + buf = adap->addr_tc << 1; > + pt3_bus_write(p, &buf, 1); > + buf = PT3_TC_THROUGH; > + pt3_bus_write(p, &buf, 1); > + buf = (adap->addr_tuner << 1) | 0x01; > + pt3_bus_write(p, &buf, 1); > + > + pt3_bus_start(p); > + buf = (adap->addr_tc << 1) | 0x01; > + pt3_bus_write(p, &buf, 1); > + rindex = pt3_bus_read(p, &buf, 1); > + pt3_bus_stop(p); > + > + if (!bus) { > + pt3_bus_end(p); > + ret = pt3_i2c_run(adap->pt3->i2c, p, true); > + data[0] = pt3_bus_data1(p, rindex); > + vfree(p); > + } > +#if 0 > + PT3_PRINTK(KERN_DEBUG, "read_tuner_without addr_tc=0x%x addr_tuner=0x%x\n", adap->addr_tc, adap->addr_tuner); > +#endif > + return ret; > +} > + > +static int pt3_tc_read(PT3_ADAPTER *adap, PT3_BUS *bus, __u8 addr, __u8 *data, __u32 size) > +{ > + int ret = 0; > + __u8 buf[size]; > + __u32 i, rindex; > + PT3_BUS *p = bus ? bus : vzalloc(sizeof(PT3_BUS)); > + if (!p) { > + PT3_PRINTK(KERN_ALERT, "out of memory.\n"); > + return -ENOMEM; > + } > + > + pt3_bus_start(p); > + buf[0] = adap->addr_tc << 1; > + pt3_bus_write(p, &buf[0], 1); > + pt3_bus_write(p, &addr, 1); > + > + pt3_bus_start(p); > + buf[0] = adap->addr_tc << 1 | 1; > + pt3_bus_write(p, &buf[0], 1); > + rindex = pt3_bus_read(p, &buf[0], size); > + pt3_bus_stop(p); > + > + if (!bus) { > + pt3_bus_end(p); > + ret = pt3_i2c_run(adap->pt3->i2c, p, true); > + for (i = 0; i < size; i++) > + data[i] = pt3_bus_data1(p, rindex + i); > + vfree(p); > + } > + return ret; > +} > + > +static __u32 pt3_tc_byten(const __u8 *data, __u32 n) > +{ > + __u32 i, value = 0; > + > + for (i = 0; i < n; i++) { > + value <<= 8; > + value |= data[i]; > + } > + return value; > +} > + > +int pt3_tc_read_cn_s(PT3_ADAPTER *adap, PT3_BUS *bus, __u32 *cn) > +{ > + __u8 data[2]; > + int ret = pt3_tc_read(adap, bus, 0xbc, data, sizeof(data)); > + if (!ret) *cn = pt3_tc_byten(data,2); > + return ret; > +} > + > +int pt3_tc_read_cndat_t(PT3_ADAPTER *adap, PT3_BUS *bus, __u32 *cn) > +{ > + __u8 data[3]; > + int ret = pt3_tc_read(adap, bus, 0x8b, data, sizeof(data)); > + if (!ret) *cn = pt3_tc_byten(data,3); > + return ret; > +} > + > +int pt3_tc_read_retryov_tmunvld_fulock(PT3_ADAPTER *adap, PT3_BUS *bus, int *retryov, int *tmunvld, int *fulock) > +{ > + __u8 data; > + int ret = pt3_tc_read(adap, bus, 0x80, &data, 1); > + if (!ret) { > + *retryov = PT3_SHIFT_MASK(data, 7, 1) ? 1 : 0; > + *tmunvld = PT3_SHIFT_MASK(data, 5, 1) ? 1 : 0; > + *fulock = PT3_SHIFT_MASK(data, 3, 1) ? 1 : 0; > + } > + return ret; > +} > + > +int pt3_tc_read_tmcc_t(PT3_ADAPTER *adap, PT3_BUS *bus, TMCC_T *tmcc) > +{ > + int ret; > + __u8 data[8]; > + __u32 interleave0h, interleave0l, segment1h, segment1l; > + > + if ((ret = pt3_tc_read(adap, bus, 0xb2+0, &data[0], 4))) return ret; > + if ((ret = pt3_tc_read(adap, bus, 0xb2+4, &data[4], 4))) return ret; > + > + tmcc->system = PT3_SHIFT_MASK(data[0], 6, 2); > + tmcc->indicator = PT3_SHIFT_MASK(data[0], 2, 4); > + tmcc->emergency = PT3_SHIFT_MASK(data[0], 1, 1); > + tmcc->partial = PT3_SHIFT_MASK(data[0], 0, 1); > + > + tmcc->mode[0] = PT3_SHIFT_MASK(data[1], 5, 3); > + tmcc->mode[1] = PT3_SHIFT_MASK(data[2], 0, 3); > + tmcc->mode[2] = PT3_SHIFT_MASK(data[4], 3, 3); > + > + tmcc->rate[0] = PT3_SHIFT_MASK(data[1], 2, 3); > + tmcc->rate[1] = PT3_SHIFT_MASK(data[3], 5, 3); > + tmcc->rate[2] = PT3_SHIFT_MASK(data[4], 0, 3); > + > + interleave0h = PT3_SHIFT_MASK(data[1], 0, 2); > + interleave0l = PT3_SHIFT_MASK(data[2], 7, 1); > + > + tmcc->interleave[0] = interleave0h << 1 | interleave0l << 0; > + tmcc->interleave[1] = PT3_SHIFT_MASK(data[3], 2, 3); > + tmcc->interleave[2] = PT3_SHIFT_MASK(data[5], 5, 3); > + > + segment1h = PT3_SHIFT_MASK(data[3], 0, 2); > + segment1l = PT3_SHIFT_MASK(data[4], 6, 2); > + > + tmcc->segment[0] = PT3_SHIFT_MASK(data[2], 3, 4); > + tmcc->segment[1] = segment1h << 2 | segment1l << 0; > + tmcc->segment[2] = PT3_SHIFT_MASK(data[5], 1, 4); > + > + return ret; > +} > + > +int pt3_tc_read_tmcc_s(PT3_ADAPTER *adap, PT3_BUS *bus, TMCC_S *tmcc) > +{ > + enum { > + BASE = 0xc5, > + SIZE = 0xe5 - BASE + 1 > + }; > + int ret; > + __u8 data[SIZE]; > + __u32 i, byte_offset, bit_offset; > + > + if ((ret = pt3_tc_read(adap, bus, 0xc3, data, 1))) return ret; > + if (PT3_SHIFT_MASK(data[0], 4, 1)) return -EBADMSG; > + if ((ret = pt3_tc_read(adap, bus, 0xce, data, 2))) return ret; > + if (pt3_tc_byten(data,2) == 0) return -EBADMSG; > + if ((ret = pt3_tc_read(adap, bus, 0xc3, data, 1))) return ret; > + tmcc->emergency = PT3_SHIFT_MASK(data[0], 2, 1); > + tmcc->extflag = PT3_SHIFT_MASK(data[0], 1, 1); > + > + if ((ret = pt3_tc_read(adap, bus, 0xc5, data, SIZE))) return ret; > + tmcc->indicator = PT3_SHIFT_MASK(data[0xc5 - BASE], 3, 5); > + tmcc->uplink = PT3_SHIFT_MASK(data[0xc7 - BASE], 0, 4); > + > + for (i = 0; i < 4; i++) { > + byte_offset = i / 2; > + bit_offset = (i % 2) ? 0 : 4; > + tmcc->mode[i] = PT3_SHIFT_MASK(data[0xc8 + byte_offset - BASE], bit_offset, 4); > + tmcc->slot[i] = PT3_SHIFT_MASK(data[0xca + i - BASE], 0, 6); > + } > + for (i = 0; i < 8; i++) > + tmcc->id[i] = pt3_tc_byten(data + 0xce + i * 2 - BASE, 2); > + return ret; > +} > + > +int pt3_tc_write_id_s(PT3_ADAPTER *adap, PT3_BUS *bus, __u16 id) > +{ > + __u8 data[2] = { id >> 8, (__u8)id }; > + return pt3_tc_write(adap, bus, 0x8f, data, sizeof(data)); > +} > + > +int pt3_tc_read_id_s(PT3_ADAPTER *adap, PT3_BUS *bus, __u16 *id) > +{ > + __u8 data[2]; > + int ret = pt3_tc_read(adap, bus, 0xe6, data, sizeof(data)); > + if (!ret) *id = pt3_tc_byten(data,2); > + return ret; > +} > + > diff --git a/drivers/media/pci/pt3_dvb/pt3s.c b/drivers/media/pci/pt3_dvb/pt3s.c > new file mode 100644 > index 0000000..7c39faf > --- /dev/null > +++ b/drivers/media/pci/pt3_dvb/pt3s.c > @@ -0,0 +1,239 @@ > +typedef enum { > + PT3S_IDLE, > + PT3S_SET_FREQUENCY, > + PT3S_SET_MODULATION, > + PT3S_CHECK_MODULATION, > + PT3S_SET_TS_ID, > + PT3S_CHECK_TS_ID, > + PT3S_TRACK, > +} PT3S_TUNE_STATE; > + > +typedef struct { > + PT3_ADAPTER *adap; > + DVB_FRONTEND fe; > + PT3S_TUNE_STATE tune_state; > +} PT3S_STATE; > + > +static int pt3s_read_snr(DVB_FRONTEND *fe, u16 *snr) > +{ > + PT3S_STATE *state = fe->demodulator_priv; > + PT3_ADAPTER *adap = state->adap; > + u32 cn = 0; > + s32 x1, x2, x3, x4, x5, y; > + > + int ret = pt3_tc_read_cn_s(adap, NULL, &cn); > + if (ret) return ret; > + > + cn -= 3000; > + x1 = int_sqrt(cn << 16) * ((15625ll << 21) / 1000000); > + x2 = (s64)x1 * x1 >> 31; > + x3 = (s64)x2 * x1 >> 31; > + x4 = (s64)x2 * x2 >> 31; > + x5 = (s64)x4 * x1 >> 31; > + > + y = (58857ll << 23) / 1000; > + y -= (s64)x1 * ((89565ll << 24) / 1000) >> 30; > + y += (s64)x2 * ((88977ll << 24) / 1000) >> 28; > + y -= (s64)x3 * ((50259ll << 25) / 1000) >> 27; > + y += (s64)x4 * ((14341ll << 27) / 1000) >> 27; > + y -= (s64)x5 * ((16346ll << 30) / 10000) >> 28; > + > + *snr = y < 0 ? 0 : y >> 15; > + PT3_PRINTK(KERN_INFO, "#%d cn=%d s/n=%d\n", adap->idx, cn, *snr); > + return 0; > +} > + > +static int pt3s_get_frontend_algo(DVB_FRONTEND *fe) > +{ > + return DVBFE_ALGO_HW; > +} > + > +static void pt3s_release(DVB_FRONTEND *fe) > +{ > + kfree(fe->demodulator_priv); > +} > + > +static int pt3s_init(DVB_FRONTEND *fe) > +{ > + PT3S_STATE *state = fe->demodulator_priv; > + state->tune_state = PT3S_IDLE; > + return pt3_qm_set_sleep(state->adap->qm, false); > +} > + > +static int pt3s_sleep(DVB_FRONTEND *fe) > +{ > + PT3S_STATE *state = fe->demodulator_priv; > + return pt3_qm_set_sleep(state->adap->qm, true); > +} > + > +u32 pt3s_get_channel(u32 frequency) > +{ > + u32 freq = frequency / 10, > + ch0 = (freq - 104948) / 3836, diff0 = freq - (104948 + 3836 * ch0), > + ch1 = (freq - 161300) / 4000, diff1 = freq - (161300 + 4000 * ch1), > + ch2 = (freq - 159300) / 4000, diff2 = freq - (159300 + 4000 * ch2), > + min = diff0 < diff1 ? diff0 : diff1; > + > + if (diff2 < min) { > + return ch2 + 24; > + } else if (min == diff1) { > + return ch1 + 12; > + } else return ch0; > +} > + > +static int pt3s_read_status(DVB_FRONTEND *fe, fe_status_t *status) > +{ > + PT3S_STATE *state = fe->demodulator_priv; > + > + switch (state->tune_state) { > + case PT3S_IDLE: > + case PT3S_SET_FREQUENCY: > + *status = 0; > + return 0; > + > + case PT3S_SET_MODULATION: > + case PT3S_CHECK_MODULATION: > + *status |= FE_HAS_SIGNAL; > + return 0; > + > + case PT3S_SET_TS_ID: > + case PT3S_CHECK_TS_ID: > + *status |= FE_HAS_SIGNAL | FE_HAS_CARRIER; > + return 0; > + > + case PT3S_TRACK: > + *status |= FE_HAS_SIGNAL | FE_HAS_CARRIER | FE_HAS_LOCK; > + return 0; > + } > + BUG(); > +} > + > +static int pt3s_tune(DVB_FRONTEND *fe, bool re_tune, unsigned int mode_flags, unsigned int *delay, fe_status_t *status) > +{ > + PT3S_STATE *state = fe->demodulator_priv; > + PT3_ADAPTER *adap = state->adap; > + TMCC_S *tmcc = &adap->qm->tmcc; > + int i, ret, > + freq = state->fe.dtv_property_cache.frequency, > + tsid = state->fe.dtv_property_cache.stream_id, > + ch = (freq < 1024) ? freq : pt3s_get_channel(freq); // consider as freqno if freq is low > + > + if (re_tune) state->tune_state = PT3S_SET_FREQUENCY; > + > + switch (state->tune_state) { > + case PT3S_IDLE: > + *delay = 3 * HZ; > + *status = 0; > + return 0; > + > + case PT3S_SET_FREQUENCY: > + PT3_PRINTK(KERN_DEBUG, "#%d freq %d tsid 0x%x ch %d\n", adap->idx, freq, tsid, ch); > + if ((ret = pt3_qm_set_frequency(adap->qm, ch))) > + return ret; > + adap->channel = ch; > + state->tune_state = PT3S_SET_MODULATION; > + *delay = 0; > + *status = FE_HAS_SIGNAL; > + return 0; > + > + case PT3S_SET_MODULATION: > + for (i = 0; i < 1000; i++) { > + if (!(ret = pt3_tc_read_tmcc_s(adap, NULL, tmcc))) break; > + PT3_WAIT_MS_INT(1); > + } > + if (ret) { > + PT3_PRINTK(KERN_ALERT, "fail tc_read_tmcc_s ret=0x%x\n", ret); > + return ret; > + } > + PT3_PRINTK(KERN_DEBUG, "slots=%d,%d,%d,%d mode=%d,%d,%d,%d\n", > + tmcc->slot[0], tmcc->slot[1], tmcc->slot[2], tmcc->slot[3], > + tmcc->mode[0], tmcc->mode[1], tmcc->mode[2], tmcc->mode[3]); > + state->tune_state = PT3S_CHECK_MODULATION; > + *delay = 0; > + *status = FE_HAS_SIGNAL; > + return 0; > + > + case PT3S_CHECK_MODULATION: > + PT3_PRINTK(KERN_DEBUG, "tmcc->id=0x%x,0x%x,0x%x,0x%x,0x%x,0x%x,0x%x,0x%x\n", > + tmcc->id[0], tmcc->id[1], tmcc->id[2], tmcc->id[3], > + tmcc->id[4], tmcc->id[5], tmcc->id[6], tmcc->id[7]); > + for (i = 0; i < sizeof(tmcc->id)/sizeof(tmcc->id[0]); i++) { > + PT3_PRINTK(KERN_DEBUG, "tsid %x i %d tmcc->id %x\n", tsid, i, tmcc->id[i]); > + if (tmcc->id[i] == tsid) break; > + } > + if (tsid < sizeof(tmcc->id)/sizeof(tmcc->id[0])) i = tsid; // consider as slot# > + if (i == sizeof(tmcc->id)/sizeof(tmcc->id[0])) { > + PT3_PRINTK(KERN_ALERT, "#%d i%d tsid 0x%x not found\n", adap->idx, i, tsid); > + return -EINVAL; > + } > + adap->offset = i; > + PT3_PRINTK(KERN_INFO, "#%d found tsid 0x%x on slot %d\n", adap->idx, tsid, i); > + state->tune_state = PT3S_SET_TS_ID; > + *delay = 0; > + *status = FE_HAS_SIGNAL | FE_HAS_CARRIER; > + return 0; > + > + case PT3S_SET_TS_ID: > + if ((ret = pt3_tc_write_id_s(adap, NULL, (__u16)tmcc->id[adap->offset]))) { > + PT3_PRINTK(KERN_ALERT, "fail set_tmcc_s ret=%d\n", ret); > + return ret; > + } > + state->tune_state = PT3S_CHECK_TS_ID; > + return 0; > + > + case PT3S_CHECK_TS_ID: > + for (i = 0; i < 1000; i++) { > + u16 short_id; > + if ((ret = pt3_tc_read_id_s(adap, NULL, &short_id))) { > + PT3_PRINTK(KERN_ERR, "fail get_id_s ret=%d\n", ret); > + return ret; > + } > + tsid = short_id; > + PT3_PRINTK(KERN_DEBUG, "#%d tsid=0x%x\n", adap->idx, tsid); > + if ((tsid & 0xffff) == tmcc->id[adap->offset]) > + break; > + PT3_WAIT_MS_INT(1); > + } > + state->tune_state = PT3S_TRACK; > + // fall through > + > + case PT3S_TRACK: > + *delay = 3 * HZ; > + *status = FE_HAS_SIGNAL | FE_HAS_CARRIER | FE_HAS_LOCK; > + return 0; > + } > + BUG(); > +} > + > +static DVB_FRONTEND_OPS pt3s_ops = { > + .delsys = { SYS_ISDBS }, > + .info = { > + .name = "PT3 ISDB-S", > + .frequency_min = 1,//950000, > + .frequency_max = 2150000, > + .frequency_stepsize = 1000, > + .caps = FE_CAN_INVERSION_AUTO | FE_CAN_FEC_AUTO | FE_CAN_QAM_AUTO | FE_CAN_MULTISTREAM | > + FE_CAN_TRANSMISSION_MODE_AUTO | FE_CAN_GUARD_INTERVAL_AUTO | FE_CAN_HIERARCHY_AUTO, > + }, > + .read_snr = pt3s_read_snr, > + .read_status = pt3s_read_status, > + .get_frontend_algo = pt3s_get_frontend_algo, > + .release = pt3s_release, > + .init = pt3s_init, > + .sleep = pt3s_sleep, > + .tune = pt3s_tune, > +}; > + > +DVB_FRONTEND *pt3s_attach(PT3_ADAPTER *adap) > +{ > + DVB_FRONTEND *fe; > + PT3S_STATE *state = kzalloc(sizeof(PT3S_STATE), GFP_KERNEL); > + > + if (!state) return NULL; > + state->adap = adap; > + fe = &state->fe; > + memcpy(&fe->ops, &pt3s_ops, sizeof(DVB_FRONTEND_OPS)); > + fe->demodulator_priv = state; > + return fe; > +} > + > diff --git a/drivers/media/pci/pt3_dvb/pt3t.c b/drivers/media/pci/pt3_dvb/pt3t.c > new file mode 100644 > index 0000000..41689e2 > --- /dev/null > +++ b/drivers/media/pci/pt3_dvb/pt3t.c > @@ -0,0 +1,227 @@ > +#include "dvb_math.h" > + > +typedef enum { > + PT3T_IDLE, > + PT3T_SET_FREQUENCY, > + PT3T_CHECK_FREQUENCY, > + PT3T_SET_MODULATION, > + PT3T_CHECK_MODULATION, > + PT3T_TRACK, > + PT3T_ABORT, > +} PT3T_TUNE_STATE; > + > +typedef struct { > + PT3_ADAPTER *adap; > + DVB_FRONTEND fe; > + PT3T_TUNE_STATE tune_state; > +} PT3T_STATE; > + > +static int pt3t_read_snr(DVB_FRONTEND *fe, u16 *snr) // signal to noise ratio > +{ > + PT3T_STATE *state = fe->demodulator_priv; > + PT3_ADAPTER *adap = state->adap; > + u32 cn = 0; > + s32 x, y; > + > + int ret = pt3_tc_read_cndat_t(adap, NULL, &cn); > + if (ret) return ret; > + > + x = 10 * (intlog10(0x540000 * 100 / cn) - (2 << 24)); > + y = (24ll << 46) / 1000000; > + y = ((s64)y * x >> 30) - (16ll << 40) / 10000; > + y = ((s64)y * x >> 29) + (398ll << 35) / 10000; > + y = ((s64)y * x >> 30) + (5491ll << 29) / 10000; > + y = ((s64)y * x >> 30) + (30965ll << 23) / 10000; > + *snr = y >> 15; > + PT3_PRINTK(KERN_INFO, "#%d CN=%d S/N=%d\n", adap->idx, cn, *snr); > + return 0; > +} > + > +static int pt3t_get_frontend_algo(DVB_FRONTEND *fe) > +{ > + return DVBFE_ALGO_HW; > +} > + > +static void pt3t_release(DVB_FRONTEND *fe) > +{ > + kfree(fe->demodulator_priv); > +} > + > +static int pt3t_init(DVB_FRONTEND *fe) > +{ > + PT3T_STATE *state = fe->demodulator_priv; > + state->tune_state = PT3T_IDLE; > + return pt3_mx_set_sleep(state->adap, false); > +} > + > +static int pt3t_sleep(DVB_FRONTEND *fe) > +{ > + PT3T_STATE *state = fe->demodulator_priv; > + return pt3_mx_set_sleep(state->adap, true); > +} > + > +static int pt3t_get_tmcc(PT3_ADAPTER *adap, TMCC_T *tmcc) > +{ > + int b = 0, retryov, tmunvld, fulock; > + > + if (unlikely(!tmcc)) return -EINVAL; > + while (1) { > + pt3_tc_read_retryov_tmunvld_fulock(adap, NULL, &retryov, &tmunvld, &fulock); > + if (!fulock) { > + b = 1; > + break; > + } else { > + if (retryov) > + break; > + } > + PT3_WAIT_MS_INT(1); > + } > + if (likely(b)) > + pt3_tc_read_tmcc_t(adap, NULL, tmcc); > + return b ? 0 : -EBADMSG; > +} > + > +static int pt3t_read_status(DVB_FRONTEND *fe, fe_status_t *status) > +{ > + PT3T_STATE *state = fe->demodulator_priv; > + > + switch (state->tune_state) { > + case PT3T_IDLE: > + case PT3T_SET_FREQUENCY: > + case PT3T_CHECK_FREQUENCY: > + *status = 0; > + return 0; > + > + case PT3T_SET_MODULATION: > + case PT3T_CHECK_MODULATION: > + case PT3T_ABORT: > + *status |= FE_HAS_SIGNAL; > + return 0; > + > + case PT3T_TRACK: > + *status |= FE_HAS_SIGNAL | FE_HAS_CARRIER | FE_HAS_LOCK; > + return 0; > + } > + BUG(); > +} > + > +#define NHK (REAL_TABLE[77]) > +int pt3t_freq(int freq) > +{ > + if (freq > 255) return freq; // real_freq > + if (freq > 127) return REAL_TABLE[freq - 128]; // freqno (io_no) > + if (freq > 63) { // CATV > + freq -= 64; > + if (freq > 22) return REAL_TABLE[freq - 1]; // C23-C62 > + if (freq > 12) return REAL_TABLE[freq - 10]; // C13-C22 > + return NHK; > + } > + if (freq > 62) return NHK; > + if (freq > 12) return REAL_TABLE[freq + 50]; // 13-62 > + if (freq > 3) return REAL_TABLE[freq + 9]; // 4-12 > + if (freq) return REAL_TABLE[freq - 1]; // 1-3 > + return NHK; > +} > + > +static int pt3t_tune(DVB_FRONTEND *fe, bool re_tune, unsigned int mode_flags, unsigned int *delay, fe_status_t *status) > +{ > + TMCC_T tmcc_t; > + int ret, i; > + PT3T_STATE *state = fe->demodulator_priv; > + > + if (re_tune) state->tune_state = PT3T_SET_FREQUENCY; > + > + switch (state->tune_state) { > + case PT3T_IDLE: > + *delay = 3 * HZ; > + *status = 0; > + return 0; > + > + case PT3T_SET_FREQUENCY: > + if ((ret = pt3_tc_set_agc_t(state->adap, PT3_TC_AGC_MANUAL))) > + return ret; > + pt3_mx_tuner_rftune(state->adap, NULL, pt3t_freq(state->fe.dtv_property_cache.frequency)); > + state->tune_state = PT3T_CHECK_FREQUENCY; > + *delay = 0; > + *status = 0; > + return 0; > + > + case PT3T_CHECK_FREQUENCY: > + if (!pt3_mx_locked(state->adap)) { > + *delay = PT3_MS(1); > + *status = 0; > + return 0; > + } > + state->tune_state = PT3T_SET_MODULATION; > + *delay = 0; > + *status = FE_HAS_SIGNAL; > + return 0; > + > + case PT3T_SET_MODULATION: > + if ((ret = pt3_tc_set_agc_t(state->adap, PT3_TC_AGC_AUTO))) > + return ret; > + state->tune_state = PT3T_CHECK_MODULATION; > + *delay = 0; > + *status = FE_HAS_SIGNAL; > + return 0; > + > + case PT3T_CHECK_MODULATION: > + for (i = 0; i < 1000; i++) { > + if (!(ret = pt3t_get_tmcc(state->adap, &tmcc_t))) > + break; > + PT3_WAIT_MS_INT(2); > + } > + if (ret) { > + PT3_PRINTK(KERN_ALERT, "#%d fail get_tmcc_t ret=%d\n", state->adap->idx, ret); > + state->tune_state = PT3T_ABORT; > + *delay = 3 * HZ; > + return 0; > + } > + state->tune_state = PT3T_TRACK; > + // fall through > + > + case PT3T_TRACK: > + *delay = 3 * HZ; > + *status = FE_HAS_SIGNAL | FE_HAS_CARRIER | FE_HAS_LOCK; > + return 0; > + > + case PT3T_ABORT: > + *delay = 3 * HZ; > + *status = FE_HAS_SIGNAL; > + return 0; > + } > + BUG(); > +} > + > +static DVB_FRONTEND_OPS pt3t_ops = { > + .delsys = { SYS_ISDBT }, > + .info = { > + .name = "PT3 ISDB-T", > + .frequency_min = 1,//90000000, > + .frequency_max = 770000000, > + .frequency_stepsize = 142857, > + .caps = FE_CAN_INVERSION_AUTO | FE_CAN_FEC_AUTO | FE_CAN_QAM_AUTO | > + FE_CAN_TRANSMISSION_MODE_AUTO | FE_CAN_GUARD_INTERVAL_AUTO | FE_CAN_HIERARCHY_AUTO, > + }, > + .read_snr = pt3t_read_snr, > + .get_frontend_algo = pt3t_get_frontend_algo, > + .release = pt3t_release, > + .init = pt3t_init, > + .sleep = pt3t_sleep, > + .read_status = pt3t_read_status, > + .tune = pt3t_tune, > +}; > + > +DVB_FRONTEND *pt3t_attach(PT3_ADAPTER *adap) > +{ > + DVB_FRONTEND *fe; > + PT3T_STATE *state = kzalloc(sizeof(PT3T_STATE), GFP_KERNEL); > + > + if (!state) return NULL; > + state->adap = adap; > + fe = &state->fe; > + memcpy(&fe->ops, &pt3t_ops, sizeof(DVB_FRONTEND_OPS)); > + fe->demodulator_priv = state; > + return fe; > +} > + > -- > 1.8.4 > > -- > To unsubscribe from this list: send the line "unsubscribe linux-media" in > the body of a message to majordomo@xxxxxxxxxxxxxxx > More majordomo info at http://vger.kernel.org/majordomo-info.html Budi, Is there any reason why you send this from a 'guest' email account other than that from which you signed-off from? It's not a problem, I'm just wondering. Provided that you will be able to receive replies to both emails, this is fine. Please make sure that when you submit a patch, the patch description describes what the patch is doing. Perhaps your earlier patch sent in private may have had a description, but the folks reading the mailing list haven't seen that. Please remove all typedef's - this is not allowed. For example, if you are using a struct dvb_frontend, then use a struct dvb_frontend - do not obfuscate these types with typedefs. You may declare enums, but do not use typedefs. Please move all code out of header files and into c files - header files can be used for function prototypes, struct definitions and any #define's but anything that results is code generation such as MODULE_AUTHOR or any function definitions should be moved into the appropriate c file. If you need to access these objects from multiple c files then you can put the reference in the header but the actual code must be inside c files. Do not use UPPERCASE unless there is a *very* good reason, such as a #define, macro or constants defined within an enum. When touching files that already exist, do not add new items in the middle of an existing list - always append to the end as appropriate - this applies to Kconfig and Makefile as well. Do not use // style comments in the kernel. In the kernel, use /* comments styled this way */ Do not use __u8 or __u32 and so on - just use u8 and u32 etc. I didn't have a chance to fully review this driver yet, but I will take another pass at it on your next submission. Thanks for your hard work - I look forward to your next patch. Best regards, Michael Krufky -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html