i2c-algo-ite.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* ------------------------------------------------------------------------- */
  2. /* i2c-algo-ite.h i2c driver algorithms for ITE IIC adapters                 */
  3. /* ------------------------------------------------------------------------- */
  4. /*   Copyright (C) 1995-97 Simon G. Vogl
  5.                    1998-99 Hans Berglund
  6.     This program is free software; you can redistribute it and/or modify
  7.     it under the terms of the GNU General Public License as published by
  8.     the Free Software Foundation; either version 2 of the License, or
  9.     (at your option) any later version.
  10.     This program is distributed in the hope that it will be useful,
  11.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.     GNU General Public License for more details.
  14.     You should have received a copy of the GNU General Public License
  15.     along with this program; if not, write to the Free Software
  16.     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.                */
  17. /* ------------------------------------------------------------------------- */
  18. /* With some changes from Ky鰏ti M鋖kki <kmalkki@cc.hut.fi> and even
  19.    Frodo Looijaard <frodol@dds.nl> */
  20. /* Modifications by MontaVista Software, 2001
  21.    Changes made to support the ITE IIC peripheral */
  22. #ifndef I2C_ALGO_ITE_H
  23. #define I2C_ALGO_ITE_H 1
  24. #include <linux/i2c.h>
  25. /* Example of a sequential read request:
  26. struct i2c_iic_msg s_msg; 
  27. s_msg.addr=device_address;
  28. s_msg.len=length;
  29. s_msg.buf=buffer;
  30. s_msg.waddr=word_address;
  31. ioctl(file,I2C_SREAD, &s_msg);
  32.  */
  33. #define I2C_SREAD 0x780 /* SREAD ioctl command */
  34. struct i2c_iic_msg {
  35. __u16 addr; /* device address */
  36. __u16 waddr; /* word address */
  37. short len; /* msg length */
  38. char *buf; /* pointer to msg data */
  39. };
  40. struct i2c_algo_iic_data {
  41. void *data; /* private data for lolevel routines */
  42. void (*setiic) (void *data, int ctl, int val);
  43. int  (*getiic) (void *data, int ctl);
  44. int  (*getown) (void *data);
  45. int  (*getclock) (void *data);
  46. void (*waitforpin) (void);     
  47. /* local settings */
  48. int udelay;
  49. int mdelay;
  50. int timeout;
  51. };
  52. int i2c_iic_add_bus(struct i2c_adapter *);
  53. int i2c_iic_del_bus(struct i2c_adapter *);
  54. #endif /* I2C_ALGO_ITE_H */