i2c-designware-platdrv.c 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264
  1. /*
  2. * Synopsys DesignWare I2C adapter driver (master only).
  3. *
  4. * Based on the TI DAVINCI I2C adapter driver.
  5. *
  6. * Copyright (C) 2006 Texas Instruments.
  7. * Copyright (C) 2007 MontaVista Software Inc.
  8. * Copyright (C) 2009 Provigent Ltd.
  9. *
  10. * ----------------------------------------------------------------------------
  11. *
  12. * This program is free software; you can redistribute it and/or modify
  13. * it under the terms of the GNU General Public License as published by
  14. * the Free Software Foundation; either version 2 of the License, or
  15. * (at your option) any later version.
  16. *
  17. * This program is distributed in the hope that it will be useful,
  18. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  20. * GNU General Public License for more details.
  21. *
  22. * You should have received a copy of the GNU General Public License
  23. * along with this program; if not, write to the Free Software
  24. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  25. * ----------------------------------------------------------------------------
  26. *
  27. */
  28. #include <linux/kernel.h>
  29. #include <linux/module.h>
  30. #include <linux/delay.h>
  31. #include <linux/i2c.h>
  32. #include <linux/clk.h>
  33. #include <linux/errno.h>
  34. #include <linux/sched.h>
  35. #include <linux/err.h>
  36. #include <linux/interrupt.h>
  37. #include <linux/of.h>
  38. #include <linux/platform_device.h>
  39. #include <linux/pm.h>
  40. #include <linux/pm_runtime.h>
  41. #include <linux/io.h>
  42. #include <linux/slab.h>
  43. #include <linux/acpi.h>
  44. #include "i2c-designware-core.h"
  45. static struct i2c_algorithm i2c_dw_algo = {
  46. .master_xfer = i2c_dw_xfer,
  47. .functionality = i2c_dw_func,
  48. };
  49. static u32 i2c_dw_get_clk_rate_khz(struct dw_i2c_dev *dev)
  50. {
  51. return clk_get_rate(dev->clk)/1000;
  52. }
  53. #ifdef CONFIG_ACPI
  54. static int dw_i2c_acpi_configure(struct platform_device *pdev)
  55. {
  56. struct dw_i2c_dev *dev = platform_get_drvdata(pdev);
  57. if (!ACPI_HANDLE(&pdev->dev))
  58. return -ENODEV;
  59. dev->adapter.nr = -1;
  60. dev->tx_fifo_depth = 32;
  61. dev->rx_fifo_depth = 32;
  62. return 0;
  63. }
  64. static const struct acpi_device_id dw_i2c_acpi_match[] = {
  65. { "INT33C2", 0 },
  66. { "INT33C3", 0 },
  67. { "80860F41", 0 },
  68. { }
  69. };
  70. MODULE_DEVICE_TABLE(acpi, dw_i2c_acpi_match);
  71. #else
  72. static inline int dw_i2c_acpi_configure(struct platform_device *pdev)
  73. {
  74. return -ENODEV;
  75. }
  76. #endif
  77. static int dw_i2c_probe(struct platform_device *pdev)
  78. {
  79. struct dw_i2c_dev *dev;
  80. struct i2c_adapter *adap;
  81. struct resource *mem;
  82. int irq, r;
  83. irq = platform_get_irq(pdev, 0);
  84. if (irq < 0) {
  85. dev_err(&pdev->dev, "no irq resource?\n");
  86. return irq; /* -ENXIO */
  87. }
  88. dev = devm_kzalloc(&pdev->dev, sizeof(struct dw_i2c_dev), GFP_KERNEL);
  89. if (!dev)
  90. return -ENOMEM;
  91. mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
  92. dev->base = devm_ioremap_resource(&pdev->dev, mem);
  93. if (IS_ERR(dev->base))
  94. return PTR_ERR(dev->base);
  95. init_completion(&dev->cmd_complete);
  96. mutex_init(&dev->lock);
  97. dev->dev = &pdev->dev;
  98. dev->irq = irq;
  99. platform_set_drvdata(pdev, dev);
  100. dev->clk = devm_clk_get(&pdev->dev, NULL);
  101. dev->get_clk_rate_khz = i2c_dw_get_clk_rate_khz;
  102. if (IS_ERR(dev->clk))
  103. return PTR_ERR(dev->clk);
  104. clk_prepare_enable(dev->clk);
  105. if (pdev->dev.of_node) {
  106. u32 ht = 0;
  107. u32 ic_clk = dev->get_clk_rate_khz(dev);
  108. of_property_read_u32(pdev->dev.of_node,
  109. "i2c-sda-hold-time-ns", &ht);
  110. dev->sda_hold_time = div_u64((u64)ic_clk * ht + 500000,
  111. 1000000);
  112. }
  113. dev->functionality =
  114. I2C_FUNC_I2C |
  115. I2C_FUNC_10BIT_ADDR |
  116. I2C_FUNC_SMBUS_BYTE |
  117. I2C_FUNC_SMBUS_BYTE_DATA |
  118. I2C_FUNC_SMBUS_WORD_DATA |
  119. I2C_FUNC_SMBUS_I2C_BLOCK;
  120. dev->master_cfg = DW_IC_CON_MASTER | DW_IC_CON_SLAVE_DISABLE |
  121. DW_IC_CON_RESTART_EN | DW_IC_CON_SPEED_FAST;
  122. /* Try first if we can configure the device from ACPI */
  123. r = dw_i2c_acpi_configure(pdev);
  124. if (r) {
  125. u32 param1 = i2c_dw_read_comp_param(dev);
  126. dev->tx_fifo_depth = ((param1 >> 16) & 0xff) + 1;
  127. dev->rx_fifo_depth = ((param1 >> 8) & 0xff) + 1;
  128. dev->adapter.nr = pdev->id;
  129. }
  130. r = i2c_dw_init(dev);
  131. if (r)
  132. return r;
  133. i2c_dw_disable_int(dev);
  134. r = devm_request_irq(&pdev->dev, dev->irq, i2c_dw_isr, IRQF_SHARED,
  135. pdev->name, dev);
  136. if (r) {
  137. dev_err(&pdev->dev, "failure requesting irq %i\n", dev->irq);
  138. return r;
  139. }
  140. adap = &dev->adapter;
  141. i2c_set_adapdata(adap, dev);
  142. adap->owner = THIS_MODULE;
  143. adap->class = I2C_CLASS_HWMON;
  144. strlcpy(adap->name, "Synopsys DesignWare I2C adapter",
  145. sizeof(adap->name));
  146. adap->algo = &i2c_dw_algo;
  147. adap->dev.parent = &pdev->dev;
  148. adap->dev.of_node = pdev->dev.of_node;
  149. r = i2c_add_numbered_adapter(adap);
  150. if (r) {
  151. dev_err(&pdev->dev, "failure adding adapter\n");
  152. return r;
  153. }
  154. acpi_i2c_register_devices(adap);
  155. pm_runtime_set_autosuspend_delay(&pdev->dev, 1000);
  156. pm_runtime_use_autosuspend(&pdev->dev);
  157. pm_runtime_set_active(&pdev->dev);
  158. pm_runtime_enable(&pdev->dev);
  159. return 0;
  160. }
  161. static int dw_i2c_remove(struct platform_device *pdev)
  162. {
  163. struct dw_i2c_dev *dev = platform_get_drvdata(pdev);
  164. pm_runtime_get_sync(&pdev->dev);
  165. i2c_del_adapter(&dev->adapter);
  166. i2c_dw_disable(dev);
  167. pm_runtime_put(&pdev->dev);
  168. pm_runtime_disable(&pdev->dev);
  169. return 0;
  170. }
  171. #ifdef CONFIG_OF
  172. static const struct of_device_id dw_i2c_of_match[] = {
  173. { .compatible = "snps,designware-i2c", },
  174. {},
  175. };
  176. MODULE_DEVICE_TABLE(of, dw_i2c_of_match);
  177. #endif
  178. #ifdef CONFIG_PM_SLEEP
  179. static int dw_i2c_suspend(struct device *dev)
  180. {
  181. struct platform_device *pdev = to_platform_device(dev);
  182. struct dw_i2c_dev *i_dev = platform_get_drvdata(pdev);
  183. clk_disable_unprepare(i_dev->clk);
  184. return 0;
  185. }
  186. static int dw_i2c_resume(struct device *dev)
  187. {
  188. struct platform_device *pdev = to_platform_device(dev);
  189. struct dw_i2c_dev *i_dev = platform_get_drvdata(pdev);
  190. clk_prepare_enable(i_dev->clk);
  191. i2c_dw_init(i_dev);
  192. return 0;
  193. }
  194. static SIMPLE_DEV_PM_OPS(dw_i2c_dev_pm_ops, dw_i2c_suspend, dw_i2c_resume);
  195. #define DW_I2C_DEV_PM_OPS (&dw_i2c_dev_pm_ops)
  196. #else
  197. #define DW_I2C_DEV_PM_OPS NULL
  198. #endif
  199. /* work with hotplug and coldplug */
  200. MODULE_ALIAS("platform:i2c_designware");
  201. static struct platform_driver dw_i2c_driver = {
  202. .remove = dw_i2c_remove,
  203. .driver = {
  204. .name = "i2c_designware",
  205. .owner = THIS_MODULE,
  206. .of_match_table = of_match_ptr(dw_i2c_of_match),
  207. .acpi_match_table = ACPI_PTR(dw_i2c_acpi_match),
  208. .pm = DW_I2C_DEV_PM_OPS,
  209. },
  210. };
  211. static int __init dw_i2c_init_driver(void)
  212. {
  213. return platform_driver_probe(&dw_i2c_driver, dw_i2c_probe);
  214. }
  215. subsys_initcall(dw_i2c_init_driver);
  216. static void __exit dw_i2c_exit_driver(void)
  217. {
  218. platform_driver_unregister(&dw_i2c_driver);
  219. }
  220. module_exit(dw_i2c_exit_driver);
  221. MODULE_AUTHOR("Baruch Siach <baruch@tkos.co.il>");
  222. MODULE_DESCRIPTION("Synopsys DesignWare I2C bus adapter");
  223. MODULE_LICENSE("GPL");