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

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

?? i2c-algo-pcf.c

?? s3c2410上面的I2C驅動程序,直接insmod就可以用了
?? C
字號:
/* ------------------------------------------------------------------------- *//* i2c-algo-pcf.c i2c driver algorithms for PCF8584 adapters		     *//* ------------------------------------------------------------------------- *//*   Copyright (C) 1995-1997 Simon G. Vogl                   1998-2000 Hans Berglund    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.		     *//* ------------------------------------------------------------------------- *//* With some changes from Ky鰏ti M鋖kki <kmalkki@cc.hut.fi> and    Frodo Looijaard <frodol@dds.nl> ,and also from Martin Bailey   <mbailey@littlefeet-inc.com> *//* Partially rewriten by Oleg I. Vdovikin <vdovikin@jscc.ru> to handle multiple   messages, proper stop/repstart signaling during receive,   added detect code */#include <linux/kernel.h>#include <linux/module.h>#include <linux/delay.h>#include <linux/slab.h>#include <linux/version.h>#include <linux/init.h>#include <asm/uaccess.h>#include <linux/ioport.h>#include <linux/errno.h>#include <linux/sched.h>#include <linux/i2c.h>#include <linux/i2c-algo-pcf.h>#include "i2c-pcf8584.h"/* ----- global defines ----------------------------------------------- */#define DEB(x) if (i2c_debug>=1) x#define DEB2(x) if (i2c_debug>=2) x#define DEB3(x) if (i2c_debug>=3) x /* print several statistical values*/#define DEBPROTO(x) if (i2c_debug>=9) x; 	/* debug the protocol by showing transferred bits */#define DEF_TIMEOUT 16/* module parameters: */static int i2c_debug=0;static int pcf_scan=0;	/* have a look at what's hanging 'round		*//* --- setting states on the bus with the right timing: ---------------	*/#define set_pcf(adap, ctl, val) adap->setpcf(adap->data, ctl, val)#define get_pcf(adap, ctl) adap->getpcf(adap->data, ctl)#define get_own(adap) adap->getown(adap->data)#define get_clock(adap) adap->getclock(adap->data)#define i2c_outb(adap, val) adap->setpcf(adap->data, 0, val)#define i2c_inb(adap) adap->getpcf(adap->data, 0)/* --- other auxiliary functions --------------------------------------	*/static void i2c_start(struct i2c_algo_pcf_data *adap) {	DEBPROTO(printk("S "));	set_pcf(adap, 1, I2C_PCF_START);}static void i2c_repstart(struct i2c_algo_pcf_data *adap) {	DEBPROTO(printk(" Sr "));	set_pcf(adap, 1, I2C_PCF_REPSTART);}static void i2c_stop(struct i2c_algo_pcf_data *adap) {	DEBPROTO(printk("P\n"));	set_pcf(adap, 1, I2C_PCF_STOP);}static int wait_for_bb(struct i2c_algo_pcf_data *adap) {	int timeout = DEF_TIMEOUT;	int status;	status = get_pcf(adap, 1);#ifndef STUB_I2C	while (timeout-- && !(status & I2C_PCF_BB)) {		udelay(100); /* wait for 100 us */		status = get_pcf(adap, 1);	}#endif	if (timeout <= 0) {		printk("Timeout waiting for Bus Busy\n");	}		return (timeout<=0);}static inline void pcf_sleep(unsigned long timeout){	schedule_timeout( timeout * HZ);}static int wait_for_pin(struct i2c_algo_pcf_data *adap, int *status) {	int timeout = DEF_TIMEOUT;	*status = get_pcf(adap, 1);#ifndef STUB_I2C	while (timeout-- && (*status & I2C_PCF_PIN)) {		adap->waitforpin();		*status = get_pcf(adap, 1);	}#endif	if (timeout <= 0)		return(-1);	else		return(0);}/*  * This should perform the 'PCF8584 initialization sequence' as described * in the Philips IC12 data book (1995, Aug 29). * There should be a 30 clock cycle wait after reset, I assume this * has been fulfilled. * There should be a delay at the end equal to the longest I2C message * to synchronize the BB-bit (in multimaster systems). How long is * this? I assume 1 second is always long enough. * * vdovikin: added detect code for PCF8584 */static int pcf_init_8584 (struct i2c_algo_pcf_data *adap){	unsigned char temp;	DEB3(printk("i2c-algo-pcf.o: PCF state 0x%02x\n", get_pcf(adap, 1)));	/* S1=0x80: S0 selected, serial interface off */	set_pcf(adap, 1, I2C_PCF_PIN);	/* check to see S1 now used as R/W ctrl -	   PCF8584 does that when ESO is zero */	/* PCF also resets PIN bit */	if ((temp = get_pcf(adap, 1)) != (0)) {		DEB2(printk("i2c-algo-pcf.o: PCF detection failed -- can't select S0 (0x%02x).\n", temp));		return -ENXIO; /* definetly not PCF8584 */	}	/* load own address in S0, effective address is (own << 1)	*/	i2c_outb(adap, get_own(adap));	/* check it's realy writen */	if ((temp = i2c_inb(adap)) != get_own(adap)) {		DEB2(printk("i2c-algo-pcf.o: PCF detection failed -- can't set S0 (0x%02x).\n", temp));		return -ENXIO;	}	/* S1=0xA0, next byte in S2					*/	set_pcf(adap, 1, I2C_PCF_PIN | I2C_PCF_ES1);	/* check to see S2 now selected */	if ((temp = get_pcf(adap, 1)) != I2C_PCF_ES1) {		DEB2(printk("i2c-algo-pcf.o: PCF detection failed -- can't select S2 (0x%02x).\n", temp));		return -ENXIO;	}	/* load clock register S2					*/	i2c_outb(adap, get_clock(adap));	/* check it's realy writen, the only 5 lowest bits does matter */	if (((temp = i2c_inb(adap)) & 0x1f) != get_clock(adap)) {		DEB2(printk("i2c-algo-pcf.o: PCF detection failed -- can't set S2 (0x%02x).\n", temp));		return -ENXIO;	}	/* Enable serial interface, idle, S0 selected			*/	set_pcf(adap, 1, I2C_PCF_IDLE);	/* check to see PCF is realy idled and we can access status register */	if ((temp = get_pcf(adap, 1)) != (I2C_PCF_PIN | I2C_PCF_BB)) {		DEB2(printk("i2c-algo-pcf.o: PCF detection failed -- can't select S1` (0x%02x).\n", temp));		return -ENXIO;	}		printk("i2c-algo-pcf.o: deteted and initialized PCF8584.\n");	return 0;}/* ----- Utility functions */static inline int try_address(struct i2c_algo_pcf_data *adap,		       unsigned char addr, int retries){	int i, status, ret = -1;	for (i=0;i<retries;i++) {		i2c_outb(adap, addr);		i2c_start(adap);		status = get_pcf(adap, 1);		if (wait_for_pin(adap, &status) >= 0) {			if ((status & I2C_PCF_LRB) == 0) { 				i2c_stop(adap);				break;	/* success! */			}		}		i2c_stop(adap);		udelay(adap->udelay);	}	DEB2(if (i) printk("i2c-algo-pcf.o: needed %d retries for %d\n",i,	                   addr));	return ret;}static int pcf_sendbytes(struct i2c_adapter *i2c_adap, const char *buf,                         int count, int last){	struct i2c_algo_pcf_data *adap = i2c_adap->algo_data;	int wrcount, status, timeout;    	for (wrcount=0; wrcount<count; ++wrcount) {		DEB2(printk("i2c-algo-pcf.o: %s i2c_write: writing %2.2X\n",		      i2c_adap->name, buf[wrcount]&0xff));		i2c_outb(adap, buf[wrcount]);		timeout = wait_for_pin(adap, &status);		if (timeout) {			i2c_stop(adap);			printk("i2c-algo-pcf.o: %s i2c_write: "			       "error - timeout.\n", i2c_adap->name);			return -EREMOTEIO; /* got a better one ?? */		}#ifndef STUB_I2C		if (status & I2C_PCF_LRB) {			i2c_stop(adap);			printk("i2c-algo-pcf.o: %s i2c_write: "			       "error - no ack.\n", i2c_adap->name);			return -EREMOTEIO; /* got a better one ?? */		}#endif	}	if (last) {		i2c_stop(adap);	}	else {		i2c_repstart(adap);	}	return (wrcount);}static int pcf_readbytes(struct i2c_adapter *i2c_adap, char *buf,                         int count, int last){	int i, status;	struct i2c_algo_pcf_data *adap = i2c_adap->algo_data;	/* increment number of bytes to read by one -- read dummy byte */	for (i = 0; i <= count; i++) {		if (wait_for_pin(adap, &status)) {			i2c_stop(adap);			printk("i2c-algo-pcf.o: pcf_readbytes timed out.\n");			return (-1);		}#ifndef STUB_I2C		if ((status & I2C_PCF_LRB) && (i != count)) {			i2c_stop(adap);			printk("i2c-algo-pcf.o: i2c_read: i2c_inb, No ack.\n");			return (-1);		}#endif				if (i == count - 1) {			set_pcf(adap, 1, I2C_PCF_ESO);		} else 		if (i == count) {			if (last) {				i2c_stop(adap);			} else {				i2c_repstart(adap);			}		};		if (i) {			buf[i - 1] = i2c_inb(adap);		} else {			i2c_inb(adap); /* dummy read */		}	}	return (i - 1);}static inline int pcf_doAddress(struct i2c_algo_pcf_data *adap,                                struct i2c_msg *msg, int retries) {	unsigned short flags = msg->flags;	unsigned char addr;	int ret;	if ( (flags & I2C_M_TEN)  ) { 		/* a ten bit address */		addr = 0xf0 | (( msg->addr >> 7) & 0x03);		DEB2(printk("addr0: %d\n",addr));		/* try extended address code...*/		ret = try_address(adap, addr, retries);		if (ret!=1) {			printk("died at extended address code.\n");			return -EREMOTEIO;		}		/* the remaining 8 bit address */		i2c_outb(adap,msg->addr & 0x7f);/* Status check comes here */		if (ret != 1) {			printk("died at 2nd address code.\n");			return -EREMOTEIO;		}		if ( flags & I2C_M_RD ) {			i2c_repstart(adap);			/* okay, now switch into reading mode */			addr |= 0x01;			ret = try_address(adap, addr, retries);			if (ret!=1) {				printk("died at extended address code.\n");				return -EREMOTEIO;			}		}	} else {		/* normal 7bit address	*/		addr = ( msg->addr << 1 );		if (flags & I2C_M_RD )			addr |= 1;		if (flags & I2C_M_REV_DIR_ADDR )			addr ^= 1;		i2c_outb(adap, addr);	}	return 0;}static int pcf_xfer(struct i2c_adapter *i2c_adap,		    struct i2c_msg msgs[], 		    int num){	struct i2c_algo_pcf_data *adap = i2c_adap->algo_data;	struct i2c_msg *pmsg;	int i;	int ret=0, timeout, status;    	/* Check for bus busy */	timeout = wait_for_bb(adap);	if (timeout) {		DEB2(printk("i2c-algo-pcf.o: "		            "Timeout waiting for BB in pcf_xfer\n");)		return -EIO;	}		for (i = 0;ret >= 0 && i < num; i++) {		pmsg = &msgs[i];		DEB2(printk("i2c-algo-pcf.o: Doing %s %d bytes to 0x%02x - %d of %d messages\n",		     pmsg->flags & I2C_M_RD ? "read" : "write",                     pmsg->len, pmsg->addr, i + 1, num);)    		ret = pcf_doAddress(adap, pmsg, i2c_adap->retries);		/* Send START */		if (i == 0) {			i2c_start(adap); 		}    		/* Wait for PIN (pending interrupt NOT) */		timeout = wait_for_pin(adap, &status);		if (timeout) {			i2c_stop(adap);			DEB2(printk("i2c-algo-pcf.o: Timeout waiting "				    "for PIN(1) in pcf_xfer\n");)			return (-EREMOTEIO);		}    #ifndef STUB_I2C		/* Check LRB (last rcvd bit - slave ack) */		if (status & I2C_PCF_LRB) {			i2c_stop(adap);			DEB2(printk("i2c-algo-pcf.o: No LRB(1) in pcf_xfer\n");)			return (-EREMOTEIO);		}#endif    		DEB3(printk("i2c-algo-pcf.o: Msg %d, addr=0x%x, flags=0x%x, len=%d\n",			    i, msgs[i].addr, msgs[i].flags, msgs[i].len);)    		/* Read */		if (pmsg->flags & I2C_M_RD) {			/* read bytes into buffer*/			ret = pcf_readbytes(i2c_adap, pmsg->buf, pmsg->len,                                            (i + 1 == num));        			if (ret != pmsg->len) {				DEB2(printk("i2c-algo-pcf.o: fail: "					    "only read %d bytes.\n",ret));			} else {				DEB2(printk("i2c-algo-pcf.o: read %d bytes.\n",ret));			}		} else { /* Write */			ret = pcf_sendbytes(i2c_adap, pmsg->buf, pmsg->len,                                            (i + 1 == num));        			if (ret != pmsg->len) {				DEB2(printk("i2c-algo-pcf.o: fail: "					    "only wrote %d bytes.\n",ret));			} else {				DEB2(printk("i2c-algo-pcf.o: wrote %d bytes.\n",ret));			}		}	}	return (i);}static int algo_control(struct i2c_adapter *adapter, 	unsigned int cmd, unsigned long arg){	return 0;}static u32 pcf_func(struct i2c_adapter *adap){	return I2C_FUNC_SMBUS_EMUL | I2C_FUNC_10BIT_ADDR | 	       I2C_FUNC_PROTOCOL_MANGLING; }/* -----exported algorithm data: -------------------------------------	*/static struct i2c_algorithm pcf_algo = {	"PCF8584 algorithm",	I2C_ALGO_PCF,	pcf_xfer,	NULL,	NULL,				/* slave_xmit		*/	NULL,				/* slave_recv		*/	algo_control,			/* ioctl		*/	pcf_func,			/* functionality	*/};/*  * registering functions to load algorithms at runtime  */int i2c_pcf_add_bus(struct i2c_adapter *adap){	int i, status;	struct i2c_algo_pcf_data *pcf_adap = adap->algo_data;	DEB2(printk("i2c-algo-pcf.o: hw routines for %s registered.\n",	            adap->name));	/* register new adapter to i2c module... */	adap->id |= pcf_algo.id;	adap->algo = &pcf_algo;	adap->timeout = 100;		/* default values, should	*/	adap->retries = 3;		/* be replaced by defines	*/	if ((i = pcf_init_8584(pcf_adap))) {		return i;	}	MOD_INC_USE_COUNT;	i2c_add_adapter(adap);	/* scan bus */	if (pcf_scan) {		printk(KERN_INFO " i2c-algo-pcf.o: scanning bus %s.\n",		       adap->name);		for (i = 0x00; i < 0xff; i+=2) {			if (wait_for_bb(pcf_adap)) {    			printk(KERN_INFO " i2c-algo-pcf.o: scanning bus %s - TIMEOUTed.\n",		           adap->name);			    break;			}			i2c_outb(pcf_adap, i);			i2c_start(pcf_adap);			if ((wait_for_pin(pcf_adap, &status) >= 0) && 			    ((status & I2C_PCF_LRB) == 0)) { 				printk("(%02x)",i>>1); 			} else {				printk("."); 			}			i2c_stop(pcf_adap);			udelay(pcf_adap->udelay);		}		printk("\n");	}	return 0;}int i2c_pcf_del_bus(struct i2c_adapter *adap){	int res;	if ((res = i2c_del_adapter(adap)) < 0)		return res;	DEB2(printk("i2c-algo-pcf.o: adapter unregistered: %s\n",adap->name));	MOD_DEC_USE_COUNT;	return 0;}static int __init i2c_algo_pcf_init (void){	printk("i2c-algo-pcf.o: i2c pcf8584 algorithm module\n");	return 0;}EXPORT_SYMBOL(i2c_pcf_add_bus);EXPORT_SYMBOL(i2c_pcf_del_bus);MODULE_AUTHOR("Hans Berglund <hb@spacetec.no>");MODULE_DESCRIPTION("I2C-Bus PCF8584 algorithm");MODULE_LICENSE("GPL");MODULE_PARM(pcf_scan, "i");MODULE_PARM(i2c_debug,"i");MODULE_PARM_DESC(pcf_scan, "Scan for active chips on the bus");MODULE_PARM_DESC(i2c_debug,        "debug level - 0 off; 1 normal; 2,3 more verbose; 9 pcf-protocol");module_init(i2c_algo_pcf_init);

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久久99精品免费观看不卡| 国产欧美精品区一区二区三区 | 国产激情视频一区二区在线观看 | 成人理论电影网| 久久国产免费看| 狠狠v欧美v日韩v亚洲ⅴ| 午夜精品福利视频网站| 午夜欧美一区二区三区在线播放| 樱桃国产成人精品视频| 丝袜亚洲精品中文字幕一区| 日本大胆欧美人术艺术动态| 久久不见久久见免费视频7| 日韩精品一区第一页| 国产伦理精品不卡| 波多野结衣中文字幕一区二区三区 | 国产欧美精品区一区二区三区 | 欧洲视频一区二区| 色婷婷综合久久久中文一区二区| 欧美片网站yy| 一区二区中文视频| 国产日韩av一区| 欧美精三区欧美精三区| 精品国产凹凸成av人导航| 亚洲h动漫在线| 国产一区二区中文字幕| 91精品国产欧美一区二区18| 3atv在线一区二区三区| 一区二区中文字幕在线| 国产91精品一区二区| 精品国产精品网麻豆系列| 亚洲日韩欧美一区二区在线| 波多野结衣在线aⅴ中文字幕不卡| 精品国产成人在线影院 | 国产精品久久午夜夜伦鲁鲁| 久久精品国产99久久6| 8v天堂国产在线一区二区| 日本va欧美va精品发布| 欧美videos中文字幕| 国产美女视频91| 久久久久久久久97黄色工厂| 久久国产欧美日韩精品| 国产精品色哟哟网站| 91欧美激情一区二区三区成人| 亚洲国产精品精华液2区45| 欧美亚洲综合在线| 精品午夜一区二区三区在线观看| 日本一区二区高清| 欧美日韩一级视频| 在线播放亚洲一区| 亚洲欧美日韩人成在线播放| 一本大道av伊人久久综合| 午夜国产精品一区| 中文字幕免费在线观看视频一区| 91麻豆福利精品推荐| 久久国产婷婷国产香蕉| 一区二区三区在线观看网站| 久久综合九色综合欧美就去吻| 色成人在线视频| 99re这里只有精品首页| 狠狠色丁香婷综合久久| 亚洲精品国久久99热| 久久这里只有精品视频网| 色婷婷激情久久| 欧洲精品一区二区| 蜜桃av噜噜一区| 男男成人高潮片免费网站| 国产精品国产三级国产三级人妇| 久久久久久久性| 欧美人体做爰大胆视频| 色综合夜色一区| 日韩精品电影一区亚洲| 麻豆免费看一区二区三区| 亚洲图片欧美综合| 伦理电影国产精品| 国产另类ts人妖一区二区| 久久国产三级精品| 粉嫩一区二区三区在线看| 日本欧美一区二区在线观看| 强制捆绑调教一区二区| 日本午夜精品一区二区三区电影 | 欧美四级电影在线观看| 欧美日本韩国一区二区三区视频| 欧美日韩一区二区三区在线| 日韩一区和二区| 亚洲视频免费看| 免费在线欧美视频| 国产成人免费视频一区| 欧美午夜在线一二页| 欧美一二区视频| 婷婷成人综合网| 色综合视频在线观看| 久久综合狠狠综合| 青青青伊人色综合久久| 99vv1com这只有精品| 久久蜜桃av一区二区天堂| 亚洲第一会所有码转帖| av亚洲精华国产精华| 久久综合色天天久久综合图片| 欧美国产精品中文字幕| 一区二区三区av电影| 成人97人人超碰人人99| 欧美日韩日日夜夜| 一区二区三区四区在线播放| 日韩精品电影一区亚洲| 色综合久久综合网97色综合| 国产精品麻豆99久久久久久| 国产一区二区三区综合| 久久久欧美精品sm网站| 国产精品一区在线| 2021国产精品久久精品| 国产91色综合久久免费分享| 欧美无人高清视频在线观看| 久久精品视频网| 国产二区国产一区在线观看| 久久久久久电影| 六月丁香婷婷色狠狠久久| 日韩欧美卡一卡二| 国产高清亚洲一区| 国产精品美女久久久久久久| 91亚洲精品久久久蜜桃| 亚洲精品日日夜夜| 欧美一区二区三区电影| 国产精品一区在线观看你懂的| 久久综合五月天婷婷伊人| 91麻豆精东视频| 日本不卡一区二区| 中文幕一区二区三区久久蜜桃| 在线一区二区三区四区五区| 亚洲国产一区二区在线播放| 精品久久久久99| 欧美一区三区二区| 欧美色区777第一页| 福利一区二区在线观看| 国产精品久久毛片a| 日韩女优制服丝袜电影| 欧美日韩在线播放一区| 波多野结衣亚洲一区| 国产成人亚洲综合色影视| 丝袜诱惑亚洲看片| 亚洲色大成网站www久久九九| 日韩午夜电影在线观看| jizz一区二区| 成人免费黄色大片| 国内精品免费在线观看| 一区二区成人在线视频| 亚洲精品免费在线播放| 亚洲视频综合在线| 日韩一区中文字幕| 久久久久亚洲综合| 久久精品亚洲国产奇米99| 国产午夜精品一区二区三区视频 | 欧美福利视频一区| 欧美视频中文字幕| 欧美精品自拍偷拍| 日韩一卡二卡三卡四卡| 7777女厕盗摄久久久| 欧美午夜寂寞影院| 91丨国产丨九色丨pron| 蜜桃视频在线观看一区| 国产乱码精品一区二区三区五月婷| 国产精品综合在线视频| 色屁屁一区二区| 国产日产精品一区| 午夜精品在线看| 91香蕉视频在线| 久久久精品黄色| 亚洲一区免费视频| 一区二区三区精品在线观看| 精品亚洲国产成人av制服丝袜| 国产在线日韩欧美| 欧美日韩国产一区| 亚洲日本免费电影| 国产成人免费视| 久久久久亚洲综合| 亚洲成人资源网| 91黄色小视频| 亚洲欧美国产77777| 国产在线乱码一区二区三区| 91麻豆免费看| 亚洲欧美经典视频| 成人a级免费电影| 精品区一区二区| 久久99这里只有精品| 日韩色视频在线观看| 日本大胆欧美人术艺术动态 | 一本高清dvd不卡在线观看 | 日本不卡一区二区| 欧美性猛片xxxx免费看久爱| 国产精品国产馆在线真实露脸| 视频在线观看一区二区三区| 色菇凉天天综合网| 奇米777欧美一区二区| 91精品国产一区二区人妖| 日日摸夜夜添夜夜添亚洲女人| 日韩一级二级三级| 99热在这里有精品免费| 午夜精品在线视频一区| 欧美电影免费观看完整版| 成人黄色777网| 日韩成人免费看|