亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? cx24110.c

?? dvb的系統(tǒng)程序。基于lunix系統(tǒng).經(jīng)過改進更新
?? C
?? 第 1 頁 / 共 2 頁
字號:
/*    cx24110 - Single Chip Satellite Channel Receiver driver module               used on the the Pinnacle PCTV Sat cards    Copyright (C) 2002 Peter Hettkamp <peter.hettkamp@t-online.de> based on    work    Copyright (C) 1999 Convergence Integrated Media GmbH <ralph@convergence.de>    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.*//* currently drives the Conexant cx24110 and cx24106 QPSK decoder chips,   connected via i2c to a Conexant Fusion 878 (this uses the standard   linux bttv driver). The tuner chip is supposed to be the Conexant   cx24108 digital satellite tuner, driven through the tuner interface   of the cx24110. SEC is also supplied by the cx24110.   Oct-2002: Migrate to API V3 (formerly known as NEWSTRUCT)*/#include <linux/slab.h>#include <linux/kernel.h>#include <linux/module.h>#include <linux/init.h>#include "dvb_frontend.h"#include "dvb_functions.h"static int debug = 0;#define dprintk	if (debug) printkstatic struct dvb_frontend_info cx24110_info = {	.name = "Conexant CX24110 with CX24108 tuner, aka HM1221/HM1811",	.type = FE_QPSK,	.frequency_min = 950000,	.frequency_max = 2150000,	.frequency_stepsize = 1011,  /* kHz for QPSK frontends, can be reduced					to 253kHz on the cx24108 tuner */	.frequency_tolerance = 29500,	.symbol_rate_min = 1000000,	.symbol_rate_max = 45000000,/*      .symbol_rate_tolerance = ???,*/	.notifier_delay = 50,                /* 1/20 s */	.caps = FE_CAN_INVERSION_AUTO |		FE_CAN_FEC_1_2 | FE_CAN_FEC_2_3 | FE_CAN_FEC_3_4 |		FE_CAN_FEC_5_6 | FE_CAN_FEC_7_8 | FE_CAN_FEC_AUTO |		FE_CAN_QPSK |		FE_CAN_CLEAN_SETUP};/* fixme: are these values correct? especially ..._tolerance and caps */static struct {u8 reg; u8 data;} cx24110_regdata[]=                      /* Comments beginning with @ denote this value should                         be the default */        {{0x09,0x01}, /* SoftResetAll */         {0x09,0x00}, /* release reset */         {0x01,0xe8}, /* MSB of code rate 27.5MS/s */         {0x02,0x17}, /* middle byte " */         {0x03,0x29}, /* LSB         " */         {0x05,0x03}, /* @ DVB mode, standard code rate 3/4 */         {0x06,0xa5}, /* @ PLL 60MHz */         {0x07,0x01}, /* @ Fclk, i.e. sampling clock, 60MHz */         {0x0a,0x00}, /* @ partial chip disables, do not set */         {0x0b,0x01}, /* set output clock in gapped mode, start signal low                         active for first byte */         {0x0c,0x11}, /* no parity bytes, large hold time, serial data out */         {0x0d,0x6f}, /* @ RS Sync/Unsync thresholds */         {0x10,0x40}, /* chip doc is misleading here: write bit 6 as 1                         to avoid starting the BER counter. Reset the                         CRC test bit. Finite counting selected */         {0x15,0xff}, /* @ size of the limited time window for RS BER                         estimation. It is <value>*256 RS blocks, this                         gives approx. 2.6 sec at 27.5MS/s, rate 3/4 */         {0x16,0x00}, /* @ enable all RS output ports */         {0x17,0x04}, /* @ time window allowed for the RS to sync */         {0x18,0xae}, /* @ allow all standard DVB code rates to be scanned                         for automatically */                      /* leave the current code rate and normalization                         registers as they are after reset... */         {0x21,0x10}, /* @ during AutoAcq, search each viterbi setting                         only once */         {0x23,0x18}, /* @ size of the limited time window for Viterbi BER                         estimation. It is <value>*65536 channel bits, i.e.                         approx. 38ms at 27.5MS/s, rate 3/4 */         {0x24,0x24}, /* do not trigger Viterbi CRC test. Finite count window */                      /* leave front-end AGC parameters at default values */                      /* leave decimation AGC parameters at default values */         {0x35,0x40}, /* disable all interrupts. They are not connected anyway */         {0x36,0xff}, /* clear all interrupt pending flags */         {0x37,0x00}, /* @ fully enable AutoAcqq state machine */         {0x38,0x07}, /* @ enable fade recovery, but not autostart AutoAcq */                      /* leave the equalizer parameters on their default values */                      /* leave the final AGC parameters on their default values */         {0x41,0x00}, /* @ MSB of front-end derotator frequency */         {0x42,0x00}, /* @ middle bytes " */         {0x43,0x00}, /* @ LSB          " */                      /* leave the carrier tracking loop parameters on default */                      /* leave the bit timing loop parameters at gefault */         {0x56,0x4d}, /* set the filtune voltage to 2.7V, as recommended by */                      /* the cx24108 data sheet for symbol rates above 15MS/s */         {0x57,0x00}, /* @ Filter sigma delta enabled, positive */         {0x61,0x95}, /* GPIO pins 1-4 have special function */         {0x62,0x05}, /* GPIO pin 5 has special function, pin 6 is GPIO */         {0x63,0x00}, /* All GPIO pins use CMOS output characteristics */         {0x64,0x20}, /* GPIO 6 is input, all others are outputs */         {0x6d,0x30}, /* tuner auto mode clock freq 62kHz */         {0x70,0x15}, /* use auto mode, tuner word is 21 bits long */         {0x73,0x00}, /* @ disable several demod bypasses */         {0x74,0x00}, /* @  " */         {0x75,0x00}  /* @  " */                      /* the remaining registers are for SEC */	};static int cx24110_writereg (struct dvb_i2c_bus *i2c, int reg, int data){        u8 buf [] = { reg, data };	struct i2c_msg msg = { .addr = 0x55, .flags = 0, .buf = buf, .len = 2 };/* fixme (medium): HW allows any i2c address. 0x55 is the default, but the   cx24110 might show up at any address */	int err;        if ((err = i2c->xfer (i2c, &msg, 1)) != 1) {		dprintk ("%s: writereg error (err == %i, reg == 0x%02x, data == 0x%02x)\n", __FUNCTION__, err, reg, data);		return -EREMOTEIO;	}        return 0;}static u8 cx24110_readreg (struct dvb_i2c_bus *i2c, u8 reg){	int ret;	u8 b0 [] = { reg };	u8 b1 [] = { 0 };	struct i2c_msg msg [] = { { .addr = 0x55, .flags = 0, .buf = b0, .len = 1 },			   { .addr = 0x55, .flags = I2C_M_RD, .buf = b1, .len = 1 } };/* fixme (medium): address might be different from 0x55 */	ret = i2c->xfer (i2c, msg, 2);	if (ret != 2)		dprintk("%s: readreg error (ret == %i)\n", __FUNCTION__, ret);	return b1[0];}static int cx24108_write (struct dvb_i2c_bus *i2c, u32 data){/* tuner data is 21 bits long, must be left-aligned in data *//* tuner cx24108 is written through a dedicated 3wire interface on the demod chip *//* FIXME (low): add error handling, avoid infinite loops if HW fails... */dprintk("cx24110 debug: cx24108_write(%8.8x)\n",data);        cx24110_writereg(i2c,0x6d,0x30); /* auto mode at 62kHz */        cx24110_writereg(i2c,0x70,0x15); /* auto mode 21 bits */        /* if the auto tuner writer is still busy, clear it out */        while (cx24110_readreg(i2c,0x6d)&0x80)		cx24110_writereg(i2c,0x72,0);        /* write the topmost 8 bits */        cx24110_writereg(i2c,0x72,(data>>24)&0xff);        /* wait for the send to be completed */        while ((cx24110_readreg(i2c,0x6d)&0xc0)==0x80)		;        /* send another 8 bytes */        cx24110_writereg(i2c,0x72,(data>>16)&0xff);        while ((cx24110_readreg(i2c,0x6d)&0xc0)==0x80)		;        /* and the topmost 5 bits of this byte */        cx24110_writereg(i2c,0x72,(data>>8)&0xff);        while ((cx24110_readreg(i2c,0x6d)&0xc0)==0x80)		;        /* now strobe the enable line once */        cx24110_writereg(i2c,0x6d,0x32);        cx24110_writereg(i2c,0x6d,0x30);        return 0;}static int cx24108_set_tv_freq (struct dvb_i2c_bus *i2c, u32 freq){/* fixme (low): error handling */        int i, a, n, pump;        u32 band, pll;        static const u32 osci[]={ 950000,1019000,1075000,1178000,			         1296000,1432000,1576000,1718000,				 1856000,2036000,2150000};        static const u32 bandsel[]={0,0x00020000,0x00040000,0x00100800,				      0x00101000,0x00102000,0x00104000,				      0x00108000,0x00110000,0x00120000,				      0x00140000};#define XTAL 1011100 /* Hz, really 1.0111 MHz and a /10 prescaler */        dprintk("cx24110 debug: cx24108_set_tv_freq, freq=%d\n",freq);        if (freq<950000)		freq=950000; /* kHz */        if (freq>2150000)		freq=2150000; /* satellite IF is 950..2150MHz */        /* decide which VCO to use for the input frequency */        for (i=1;(i<sizeof(osci)/sizeof(osci[0]))&&(osci[i]<freq);i++)		;        dprintk("cx24110 debug: select vco #%d (f=%d)\n",i,freq);        band=bandsel[i];        /* the gain values must be set by SetSymbolrate */        /* compute the pll divider needed, from Conexant data sheet,           resolved for (n*32+a), remember f(vco) is f(receive) *2 or *4,           depending on the divider bit. It is set to /4 on the 2 lowest           bands  */        n=((i<=2?2:1)*freq*10L)/(XTAL/100);        a=n%32; n/=32;	if (a==0)		n--;        pump=(freq<(osci[i-1]+osci[i])/2);        pll=0xf8000000|            ((pump?1:2)<<(14+11))|            ((n&0x1ff)<<(5+11))|            ((a&0x1f)<<11);        /* everything is shifted left 11 bits to left-align the bits in the           32bit word. Output to the tuner goes MSB-aligned, after all */        dprintk("cx24110 debug: pump=%d, n=%d, a=%d\n",pump,n,a);        cx24108_write(i2c,band);        /* set vga and vca to their widest-band settings, as a precaution.           SetSymbolrate might not be called to set this up */        cx24108_write(i2c,0x500c0000);        cx24108_write(i2c,0x83f1f800);        cx24108_write(i2c,pll);        cx24110_writereg(i2c,0x56,0x7f);	dvb_delay(10); /* wait a moment for the tuner pll to lock */	/* tuner pll lock can be monitored on GPIO pin 4 of cx24110 */        while (!(cx24110_readreg(i2c,0x66)&0x20)&&i<1000)		i++;        dprintk("cx24110 debug: GPIO IN=%2.2x(loop=%d)\n",                cx24110_readreg(i2c,0x66),i);        return 0;}static int cx24110_init (struct dvb_i2c_bus *i2c){/* fixme (low): error handling */        int i;	dprintk("%s: init chip\n", __FUNCTION__);        for(i=0;i<sizeof(cx24110_regdata)/sizeof(cx24110_regdata[0]);i++) {		cx24110_writereg(i2c,cx24110_regdata[i].reg,cx24110_regdata[i].data);        };	return 0;}static int cx24110_set_inversion (struct dvb_i2c_bus *i2c, fe_spectral_inversion_t inversion){/* fixme (low): error handling */	switch (inversion) {	case INVERSION_OFF:                cx24110_writereg(i2c,0x37,cx24110_readreg(i2c,0x37)|0x1);                /* AcqSpectrInvDis on. No idea why someone should want this */                cx24110_writereg(i2c,0x5,cx24110_readreg(i2c,0x5)&0xf7);                /* Initial value 0 at start of acq */                cx24110_writereg(i2c,0x22,cx24110_readreg(i2c,0x22)&0xef);                /* current value 0 */                /* The cx24110 manual tells us this reg is read-only.                   But what the heck... set it ayways */                break;	case INVERSION_ON:                cx24110_writereg(i2c,0x37,cx24110_readreg(i2c,0x37)|0x1);                /* AcqSpectrInvDis on. No idea why someone should want this */                cx24110_writereg(i2c,0x5,cx24110_readreg(i2c,0x5)|0x08);                /* Initial value 1 at start of acq */                cx24110_writereg(i2c,0x22,cx24110_readreg(i2c,0x22)|0x10);                /* current value 1 */                break;	case INVERSION_AUTO:                cx24110_writereg(i2c,0x37,cx24110_readreg(i2c,0x37)&0xfe);                /* AcqSpectrInvDis off. Leave initial & current states as is */                break;	default:		return -EINVAL;	}	return 0;}static int cx24110_set_fec (struct dvb_i2c_bus *i2c, fe_code_rate_t fec){/* fixme (low): error handling */        static const int rate[]={-1,1,2,3,5,7,-1};        static const int g1[]={-1,0x01,0x02,0x05,0x15,0x45,-1};        static const int g2[]={-1,0x01,0x03,0x06,0x1a,0x7a,-1};        /* Well, the AutoAcq engine of the cx24106 and 24110 automatically           searches all enabled viterbi rates, and can handle non-standard           rates as well. */        if (fec>FEC_AUTO)                fec=FEC_AUTO;        if (fec==FEC_AUTO) { /* (re-)establish AutoAcq behaviour */		cx24110_writereg(i2c,0x37,cx24110_readreg(i2c,0x37)&0xdf);		/* clear AcqVitDis bit */		cx24110_writereg(i2c,0x18,0xae);		/* allow all DVB standard code rates */		cx24110_writereg(i2c,0x05,(cx24110_readreg(i2c,0x05)&0xf0)|0x3);		/* set nominal Viterbi rate 3/4 */		cx24110_writereg(i2c,0x22,(cx24110_readreg(i2c,0x22)&0xf0)|0x3);		/* set current Viterbi rate 3/4 */		cx24110_writereg(i2c,0x1a,0x05); cx24110_writereg(i2c,0x1b,0x06);		/* set the puncture registers for code rate 3/4 */		return 0;        } else {		cx24110_writereg(i2c,0x37,cx24110_readreg(i2c,0x37)|0x20);		/* set AcqVitDis bit */		if(rate[fec]>0) {

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日本美女一区二区三区| 色综合久久中文综合久久牛| 99久久综合99久久综合网站| 欧美日韩精品一区二区在线播放| 欧美精品一区视频| 亚洲成人免费av| 丁香婷婷综合激情五月色| 欧美无砖砖区免费| 中文字幕制服丝袜一区二区三区| 老司机精品视频线观看86| 色国产综合视频| 中文字幕日韩一区| 国产综合色视频| 欧美乱妇15p| 麻豆精品一区二区av白丝在线| 91在线高清观看| 欧美国产精品一区二区三区| 久久99这里只有精品| 欧美日韩一区中文字幕| 亚洲六月丁香色婷婷综合久久 | 久久av老司机精品网站导航| 欧美日韩精品一二三区| 夜夜亚洲天天久久| 色素色在线综合| 亚洲精品欧美二区三区中文字幕| 成人av电影在线| 国产精品午夜久久| 成人白浆超碰人人人人| 日本一区二区电影| 国产成人aaa| 中国av一区二区三区| eeuss鲁一区二区三区| 国产精品美女久久久久久久久久久 | 午夜免费久久看| 欧美老肥妇做.爰bbww| 丝袜美腿亚洲一区二区图片| 欧美日本一道本| 麻豆精品一区二区av白丝在线| 日韩午夜在线影院| 国产资源精品在线观看| 国产亚洲综合色| av电影在线观看完整版一区二区| 中文字幕一区av| 色88888久久久久久影院野外| 亚洲国产精品久久艾草纯爱| 7777精品伊人久久久大香线蕉经典版下载 | 欧美丰满高潮xxxx喷水动漫| 日本aⅴ亚洲精品中文乱码| 日韩一区二区麻豆国产| 精品亚洲国内自在自线福利| 国产喂奶挤奶一区二区三区| 不卡的av电影| 一级精品视频在线观看宜春院| 欧美色倩网站大全免费| 日日夜夜精品视频天天综合网| 欧美一区二区女人| 国产精品主播直播| 亚洲乱码日产精品bd| 欧美日韩精品一区视频| 国产一区二区精品在线观看| 亚洲美女偷拍久久| 欧美一区二区三区电影| 激情综合色综合久久| 亚洲四区在线观看| 日韩欧美国产一区二区在线播放 | 国产精品视频yy9299一区| 日本韩国欧美在线| 国产在线不卡一区| 亚洲曰韩产成在线| 国产午夜精品一区二区三区视频| 在线国产电影不卡| 国产精品99久久久久| 一区二区高清视频在线观看| 精品久久久影院| 在线观看日韩一区| 成人激情视频网站| 美女在线一区二区| 亚洲已满18点击进入久久| 精品国产第一区二区三区观看体验| 色综合网色综合| 国产91富婆露脸刺激对白| 一区二区三区四区不卡视频 | 亚洲黄色片在线观看| 欧美成人aa大片| 欧美在线免费视屏| 懂色av中文一区二区三区| 青青青爽久久午夜综合久久午夜| 亚洲欧美乱综合| 国产欧美一区二区在线| 日韩区在线观看| 欧美日韩中文另类| 色悠久久久久综合欧美99| 国产美女精品人人做人人爽| 美女视频黄久久| 偷窥国产亚洲免费视频| 一区二区三区精品久久久| 国产精品沙发午睡系列990531| 26uuu精品一区二区三区四区在线 26uuu精品一区二区在线观看 | 成人美女在线视频| 九九九久久久精品| 日本欧美在线观看| 天天操天天色综合| 亚洲国产一区二区三区 | 精品视频在线免费看| 91在线视频网址| 成年人国产精品| 国产69精品一区二区亚洲孕妇| 久久99国产精品免费| 全国精品久久少妇| 免费观看在线色综合| 日韩 欧美一区二区三区| 污片在线观看一区二区| 午夜免费欧美电影| 日本不卡免费在线视频| 久久爱www久久做| 国产一区二区三区黄视频| 国产呦萝稀缺另类资源| 激情文学综合插| 国产精品亚洲成人| 成人激情午夜影院| 色综合天天综合狠狠| 在线亚洲+欧美+日本专区| 欧美视频在线观看一区二区| 91.xcao| 精品国产1区2区3区| 国产午夜精品久久久久久久| 中文字幕第一页久久| 亚洲天堂网中文字| 亚洲丰满少妇videoshd| 美女视频一区在线观看| 国产一区二区不卡| 99久久精品国产导航| 色美美综合视频| 日韩限制级电影在线观看| 久久久精品中文字幕麻豆发布| 亚洲天天做日日做天天谢日日欢| 亚洲高清视频中文字幕| 久久精工是国产品牌吗| 懂色av一区二区三区蜜臀| 色一情一乱一乱一91av| 欧美一级视频精品观看| 亚洲国产精品传媒在线观看| 一区二区三区美女| 麻豆极品一区二区三区| 波多野结衣亚洲| 欧美一区二区在线看| 国产精品私人自拍| 亚洲成人av免费| 国产成人精品三级| 欧美午夜精品久久久久久孕妇| 精品国产不卡一区二区三区| 亚洲美女免费视频| 经典三级视频一区| 色一区在线观看| 久久嫩草精品久久久精品| 亚洲一级电影视频| 成人av网站在线| 日韩午夜激情视频| 一区二区在线观看视频在线观看| 久久超级碰视频| 欧美日韩一区二区在线观看视频 | 婷婷久久综合九色综合绿巨人| 国产成人免费视频网站高清观看视频| 91欧美一区二区| 日韩精品一区二区三区蜜臀 | 日韩一区二区三区四区五区六区 | 色综合久久综合网欧美综合网| 欧美一级淫片007| 一区二区三区精密机械公司| 国产一区二区三区四| 欧美群妇大交群的观看方式| 国产精品九色蝌蚪自拍| 精品一区二区影视| 欧美精品1区2区3区| 亚洲欧美日韩系列| 成人三级在线视频| 久久久噜噜噜久噜久久综合| 三级成人在线视频| 91福利国产精品| 亚洲免费av高清| 一本色道久久综合亚洲aⅴ蜜桃| 国产女主播一区| 国产一区二区三区不卡在线观看| 91精品国产色综合久久不卡蜜臀 | 玖玖九九国产精品| 欧美日韩亚州综合| 一区二区理论电影在线观看| 91亚洲资源网| 亚洲欧美日韩久久| 91视频观看视频| 亚洲欧美区自拍先锋| 99re热这里只有精品免费视频| 国产精品麻豆网站| 高清av一区二区| 国产精品美女久久久久久久久久久| 国产精品香蕉一区二区三区| 精品日韩欧美一区二区| 蜜臀久久99精品久久久画质超高清| 欧美在线免费观看亚洲| 亚洲一区二区四区蜜桃|