i2c-gpio.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. /*
  2. * i2c-gpio interface to platform code
  3. *
  4. * Copyright (C) 2007 Atmel Corporation
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2 as
  8. * published by the Free Software Foundation.
  9. */
  10. #ifndef _LINUX_I2C_GPIO_H
  11. #define _LINUX_I2C_GPIO_H
  12. /**
  13. * struct i2c_gpio_platform_data - Platform-dependent data for i2c-gpio
  14. * @sda_pin: GPIO pin ID to use for SDA
  15. * @scl_pin: GPIO pin ID to use for SCL
  16. * @udelay: signal toggle delay. SCL frequency is (500 / udelay) kHz
  17. * @timeout: clock stretching timeout in jiffies. If the slave keeps
  18. * SCL low for longer than this, the transfer will time out.
  19. * @sda_is_open_drain: SDA is configured as open drain, i.e. the pin
  20. * isn't actively driven high when setting the output value high.
  21. * gpio_get_value() must return the actual pin state even if the
  22. * pin is configured as an output.
  23. * @scl_is_open_drain: SCL is set up as open drain. Same requirements
  24. * as for sda_is_open_drain apply.
  25. * @scl_is_output_only: SCL output drivers cannot be turned off.
  26. */
  27. struct i2c_gpio_platform_data {
  28. unsigned int sda_pin;
  29. unsigned int scl_pin;
  30. int udelay;
  31. int timeout;
  32. unsigned int sda_is_open_drain:1;
  33. unsigned int scl_is_open_drain:1;
  34. unsigned int scl_is_output_only:1;
  35. };
  36. #endif /* _LINUX_I2C_GPIO_H */