📄 i2c-algo-pcf.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> *//* $Id: i2c-algo-pcf.c,v 1.25 2000/11/10 13:43:32 frodo Exp $ */#include <linux/kernel.h>#include <linux/module.h>#include <linux/delay.h>#include <linux/malloc.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/* debugging - slow down transfer to have a look at the data .. *//* I use this with two leds&resistors, each one connected to sda,scl *//* respectively. This makes sure that the algorithm works. Some chips *//* might not like this, as they have an internal timeout of some mils *//*#define SLO_IO jif=jiffies;while(jiffies<=jif+i2c_table[minor].veryslow)\ if (need_resched) schedule();*//* ----- global variables --------------------------------------------- */#ifdef SLO_IO int jif;#endif/* module parameters: */static int i2c_debug=1;static int pcf_test=0; /* see if the line-setting functions work */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(1000); /* How much is this? */ status = get_pcf(adap, 1); }#endif if (timeout<=0) printk("Timeout waiting for Bus Busy\n"); /* set_pcf(adap, 1, I2C_PCF_STOP); */ 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. */static int pcf_init_8584 (struct i2c_algo_pcf_data *adap){ /* S1=0x80: S0 selected, serial interface off */ set_pcf(adap, 1, I2C_PCF_PIN); /* load own address in S0, effective address is (own << 1) */ i2c_outb(adap, get_own(adap)); /* S1=0xA0, next byte in S2 */ set_pcf(adap, 1, I2C_PCF_PIN | I2C_PCF_ES1); /* load clock register S2 */ i2c_outb(adap, get_clock(adap)); /* Enable serial interface, idle, S0 selected */ set_pcf(adap, 1, I2C_PCF_IDLE); DEB2(printk("i2c-algo-pcf.o: irq: Initialized 8584.\n")); return 0;}/* * Sanity check for the adapter hardware - check the reaction of * the bus lines only if it seems to be idle. */static int test_bus(struct i2c_algo_pcf_data *adap, char *name) {#if 0 int scl,sda; sda=getsda(adap); if (adap->getscl==NULL) { printk("i2c-algo-pcf.o: Warning: Adapter can't read from clock line - skipping test.\n"); return 0; } scl=getscl(adap); printk("i2c-algo-pcf.o: Adapter: %s scl: %d sda: %d -- testing...\n", name,getscl(adap),getsda(adap)); if (!scl || !sda ) { printk("i2c-algo-pcf.o: %s seems to be busy.\n",adap->name); goto bailout; } sdalo(adap); printk("i2c-algo-pcf.o:1 scl: %d sda: %d \n",getscl(adap), getsda(adap)); if ( 0 != getsda(adap) ) { printk("i2c-algo-pcf.o: %s SDA stuck high!\n",name); sdahi(adap); goto bailout; } if ( 0 == getscl(adap) ) { printk("i2c-algo-pcf.o: %s SCL unexpected low while pulling SDA low!\n", name); goto bailout; } sdahi(adap); printk("i2c-algo-pcf.o:2 scl: %d sda: %d \n",getscl(adap), getsda(adap)); if ( 0 == getsda(adap) ) { printk("i2c-algo-pcf.o: %s SDA stuck low!\n",name); sdahi(adap); goto bailout; } if ( 0 == getscl(adap) ) { printk("i2c-algo-pcf.o: %s SCL unexpected low while SDA high!\n", adap->name); goto bailout; } scllo(adap); printk("i2c-algo-pcf.o:3 scl: %d sda: %d \n",getscl(adap), getsda(adap)); if ( 0 != getscl(adap) ) { printk("i2c-algo-pcf.o: %s SCL stuck high!\n",name); sclhi(adap); goto bailout; } if ( 0 == getsda(adap) ) { printk("i2c-algo-pcf.o: %s SDA unexpected low while pulling SCL low!\n", name); goto bailout; } sclhi(adap); printk("i2c-algo-pcf.o:4 scl: %d sda: %d \n",getscl(adap), getsda(adap)); if ( 0 == getscl(adap) ) { printk("i2c-algo-pcf.o: %s SCL stuck low!\n",name); sclhi(adap); goto bailout; } if ( 0 == getsda(adap) ) { printk("i2c-algo-pcf.o: %s SDA unexpected low while SCL high!\n", name); goto bailout; } printk("i2c-algo-pcf.o: %s passed test.\n",name); return 0;bailout: sdahi(adap); sclhi(adap); return -ENODEV;#endif 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){ 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: "
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -