usbvision-i2c.h 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /*
  2. * I2C_ALGO_USB.H
  3. * i2c algorithm for USB-I2C Bridges
  4. *
  5. * Copyright (c) 1999-2005 Joerg Heckenbach <joerg@heckenbach-aw.de>
  6. *
  7. * This module is part of usbvision driver project.
  8. * Updates to driver completed by Dwaine P. Garden
  9. *
  10. * This program is free software; you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License as published by
  12. * the Free Software Foundation; either version 2 of the License, or
  13. * (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public License
  21. * along with this program; if not, write to the Free Software
  22. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  23. */
  24. #ifndef I2C_ALGO_USB_H
  25. #define I2C_ALGO_USB_H 1
  26. #include <linux/i2c.h>
  27. struct i2c_algo_usb_data {
  28. void *data; /* private data for lowlevel routines */
  29. int (*inb) (void *data, unsigned char addr, char *buf, short len);
  30. int (*outb) (void *data, unsigned char addr, char *buf, short len);
  31. /* local settings */
  32. int udelay;
  33. int mdelay;
  34. int timeout;
  35. };
  36. #define I2C_USB_ADAP_MAX 16
  37. int usbvision_i2c_usb_add_bus(struct i2c_adapter *);
  38. int usbvision_i2c_usb_del_bus(struct i2c_adapter *);
  39. static inline void *i2c_get_algo_usb_data (struct i2c_algo_usb_data *dev)
  40. {
  41. return dev->data;
  42. }
  43. static inline void i2c_set_algo_usb_data (struct i2c_algo_usb_data *dev, void *data)
  44. {
  45. dev->data = data;
  46. }
  47. #endif //I2C_ALGO_USB_H