i2c-ixp2000.c 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. /*
  2. * drivers/i2c/busses/i2c-ixp2000.c
  3. *
  4. * I2C adapter for IXP2000 systems using GPIOs for I2C bus
  5. *
  6. * Author: Deepak Saxena <dsaxena@plexity.net>
  7. * Based on IXDP2400 code by: Naeem M. Afzal <naeem.m.afzal@intel.com>
  8. * Made generic by: Jeff Daly <jeffrey.daly@intel.com>
  9. *
  10. * Copyright (c) 2003-2004 MontaVista Software Inc.
  11. *
  12. * This file is licensed under the terms of the GNU General Public
  13. * License version 2. This program is licensed "as is" without any
  14. * warranty of any kind, whether express or implied.
  15. *
  16. * From Jeff Daly:
  17. *
  18. * I2C adapter driver for Intel IXDP2xxx platforms. This should work for any
  19. * IXP2000 platform if it uses the HW GPIO in the same manner. Basically,
  20. * SDA and SCL GPIOs have external pullups. Setting the respective GPIO to
  21. * an input will make the signal a '1' via the pullup. Setting them to
  22. * outputs will pull them down.
  23. *
  24. * The GPIOs are open drain signals and are used as configuration strap inputs
  25. * during power-up so there's generally a buffer on the board that needs to be
  26. * 'enabled' to drive the GPIOs.
  27. */
  28. #include <linux/config.h>
  29. #ifdef CONFIG_I2C_DEBUG_BUS
  30. #define DEBUG 1
  31. #endif
  32. #include <linux/kernel.h>
  33. #include <linux/init.h>
  34. #include <linux/device.h>
  35. #include <linux/module.h>
  36. #include <linux/i2c.h>
  37. #include <linux/i2c-algo-bit.h>
  38. #include <asm/hardware.h> /* Pick up IXP42000-specific bits */
  39. static inline int ixp2000_scl_pin(void *data)
  40. {
  41. return ((struct ixp2000_i2c_pins*)data)->scl_pin;
  42. }
  43. static inline int ixp2000_sda_pin(void *data)
  44. {
  45. return ((struct ixp2000_i2c_pins*)data)->sda_pin;
  46. }
  47. static void ixp2000_bit_setscl(void *data, int val)
  48. {
  49. int i = 5000;
  50. if (val) {
  51. gpio_line_config(ixp2000_scl_pin(data), GPIO_IN);
  52. while(!gpio_line_get(ixp2000_scl_pin(data)) && i--);
  53. } else {
  54. gpio_line_config(ixp2000_scl_pin(data), GPIO_OUT);
  55. }
  56. }
  57. static void ixp2000_bit_setsda(void *data, int val)
  58. {
  59. if (val) {
  60. gpio_line_config(ixp2000_sda_pin(data), GPIO_IN);
  61. } else {
  62. gpio_line_config(ixp2000_sda_pin(data), GPIO_OUT);
  63. }
  64. }
  65. static int ixp2000_bit_getscl(void *data)
  66. {
  67. return gpio_line_get(ixp2000_scl_pin(data));
  68. }
  69. static int ixp2000_bit_getsda(void *data)
  70. {
  71. return gpio_line_get(ixp2000_sda_pin(data));
  72. }
  73. struct ixp2000_i2c_data {
  74. struct ixp2000_i2c_pins *gpio_pins;
  75. struct i2c_adapter adapter;
  76. struct i2c_algo_bit_data algo_data;
  77. };
  78. static int ixp2000_i2c_remove(struct device *dev)
  79. {
  80. struct platform_device *plat_dev = to_platform_device(dev);
  81. struct ixp2000_i2c_data *drv_data = dev_get_drvdata(&plat_dev->dev);
  82. dev_set_drvdata(&plat_dev->dev, NULL);
  83. i2c_bit_del_bus(&drv_data->adapter);
  84. kfree(drv_data);
  85. return 0;
  86. }
  87. static int ixp2000_i2c_probe(struct device *dev)
  88. {
  89. int err;
  90. struct platform_device *plat_dev = to_platform_device(dev);
  91. struct ixp2000_i2c_pins *gpio = plat_dev->dev.platform_data;
  92. struct ixp2000_i2c_data *drv_data =
  93. kmalloc(sizeof(struct ixp2000_i2c_data), GFP_KERNEL);
  94. if (!drv_data)
  95. return -ENOMEM;
  96. memzero(drv_data, sizeof(*drv_data));
  97. drv_data->gpio_pins = gpio;
  98. drv_data->algo_data.data = gpio;
  99. drv_data->algo_data.setsda = ixp2000_bit_setsda;
  100. drv_data->algo_data.setscl = ixp2000_bit_setscl;
  101. drv_data->algo_data.getsda = ixp2000_bit_getsda;
  102. drv_data->algo_data.getscl = ixp2000_bit_getscl;
  103. drv_data->algo_data.udelay = 6;
  104. drv_data->algo_data.mdelay = 6;
  105. drv_data->algo_data.timeout = 100;
  106. drv_data->adapter.id = I2C_HW_B_IXP2000,
  107. drv_data->adapter.algo_data = &drv_data->algo_data,
  108. drv_data->adapter.dev.parent = &plat_dev->dev;
  109. gpio_line_config(gpio->sda_pin, GPIO_IN);
  110. gpio_line_config(gpio->scl_pin, GPIO_IN);
  111. gpio_line_set(gpio->scl_pin, 0);
  112. gpio_line_set(gpio->sda_pin, 0);
  113. if ((err = i2c_bit_add_bus(&drv_data->adapter)) != 0) {
  114. dev_err(dev, "Could not install, error %d\n", err);
  115. kfree(drv_data);
  116. return err;
  117. }
  118. dev_set_drvdata(&plat_dev->dev, drv_data);
  119. return 0;
  120. }
  121. static struct device_driver ixp2000_i2c_driver = {
  122. .name = "IXP2000-I2C",
  123. .bus = &platform_bus_type,
  124. .probe = ixp2000_i2c_probe,
  125. .remove = ixp2000_i2c_remove,
  126. };
  127. static int __init ixp2000_i2c_init(void)
  128. {
  129. return driver_register(&ixp2000_i2c_driver);
  130. }
  131. static void __exit ixp2000_i2c_exit(void)
  132. {
  133. driver_unregister(&ixp2000_i2c_driver);
  134. }
  135. module_init(ixp2000_i2c_init);
  136. module_exit(ixp2000_i2c_exit);
  137. MODULE_AUTHOR ("Deepak Saxena <dsaxena@plexity.net>");
  138. MODULE_DESCRIPTION("IXP2000 GPIO-based I2C bus driver");
  139. MODULE_LICENSE("GPL");