bbc_i2c.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* $Id: bbc_i2c.h,v 1.2 2001/04/02 09:59:25 davem Exp $ */
  2. #ifndef _BBC_I2C_H
  3. #define _BBC_I2C_H
  4. #include <asm/ebus.h>
  5. struct bbc_i2c_client;
  6. /* Probing and attachment. */
  7. extern struct linux_ebus_child *bbc_i2c_getdev(int);
  8. extern struct bbc_i2c_client *bbc_i2c_attach(struct linux_ebus_child *);
  9. extern void bbc_i2c_detach(struct bbc_i2c_client *);
  10. /* Register read/write.  NOTE: Blocking! */
  11. extern int bbc_i2c_writeb(struct bbc_i2c_client *, unsigned char val, int off);
  12. extern int bbc_i2c_readb(struct bbc_i2c_client *, unsigned char *byte, int off);
  13. extern int bbc_i2c_write_buf(struct bbc_i2c_client *, char *buf, int len, int off);
  14. extern int bbc_i2c_read_buf(struct bbc_i2c_client *, char *buf, int len, int off);
  15. #endif /* _BBC_I2C_H */