i2c-designware-platdrv.c 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305
  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_i2c.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. struct acpi_device *adev;
  58. int busno, ret;
  59. if (!ACPI_HANDLE(&pdev->dev))
  60. return -ENODEV;
  61. ret = acpi_bus_get_device(ACPI_HANDLE(&pdev->dev), &adev);
  62. if (ret)
  63. return -ENODEV;
  64. dev->adapter.nr = -1;
  65. if (adev->pnp.unique_id && !kstrtoint(adev->pnp.unique_id, 0, &busno))
  66. dev->adapter.nr = busno;
  67. dev->tx_fifo_depth = 32;
  68. dev->rx_fifo_depth = 32;
  69. return 0;
  70. }
  71. static const struct acpi_device_id dw_i2c_acpi_match[] = {
  72. { "INT33C2", 0 },
  73. { "INT33C3", 0 },
  74. { }
  75. };
  76. MODULE_DEVICE_TABLE(acpi, dw_i2c_acpi_match);
  77. #else
  78. static inline int dw_i2c_acpi_configure(struct platform_device *pdev)
  79. {
  80. return -ENODEV;
  81. }
  82. #endif
  83. static int dw_i2c_probe(struct platform_device *pdev)
  84. {
  85. struct dw_i2c_dev *dev;
  86. struct i2c_adapter *adap;
  87. struct resource *mem, *ioarea;
  88. int irq, r;
  89. /* NOTE: driver uses the static register mapping */
  90. mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
  91. if (!mem) {
  92. dev_err(&pdev->dev, "no mem resource?\n");
  93. return -EINVAL;
  94. }
  95. irq = platform_get_irq(pdev, 0);
  96. if (irq < 0) {
  97. dev_err(&pdev->dev, "no irq resource?\n");
  98. return irq; /* -ENXIO */
  99. }
  100. ioarea = request_mem_region(mem->start, resource_size(mem),
  101. pdev->name);
  102. if (!ioarea) {
  103. dev_err(&pdev->dev, "I2C region already claimed\n");
  104. return -EBUSY;
  105. }
  106. dev = kzalloc(sizeof(struct dw_i2c_dev), GFP_KERNEL);
  107. if (!dev) {
  108. r = -ENOMEM;
  109. goto err_release_region;
  110. }
  111. init_completion(&dev->cmd_complete);
  112. mutex_init(&dev->lock);
  113. dev->dev = get_device(&pdev->dev);
  114. dev->irq = irq;
  115. platform_set_drvdata(pdev, dev);
  116. dev->clk = clk_get(&pdev->dev, NULL);
  117. dev->get_clk_rate_khz = i2c_dw_get_clk_rate_khz;
  118. if (IS_ERR(dev->clk)) {
  119. r = -ENODEV;
  120. goto err_free_mem;
  121. }
  122. clk_prepare_enable(dev->clk);
  123. dev->functionality =
  124. I2C_FUNC_I2C |
  125. I2C_FUNC_10BIT_ADDR |
  126. I2C_FUNC_SMBUS_BYTE |
  127. I2C_FUNC_SMBUS_BYTE_DATA |
  128. I2C_FUNC_SMBUS_WORD_DATA |
  129. I2C_FUNC_SMBUS_I2C_BLOCK;
  130. dev->master_cfg = DW_IC_CON_MASTER | DW_IC_CON_SLAVE_DISABLE |
  131. DW_IC_CON_RESTART_EN | DW_IC_CON_SPEED_FAST;
  132. dev->base = ioremap(mem->start, resource_size(mem));
  133. if (dev->base == NULL) {
  134. dev_err(&pdev->dev, "failure mapping io resources\n");
  135. r = -EBUSY;
  136. goto err_unuse_clocks;
  137. }
  138. /* Try first if we can configure the device from ACPI */
  139. r = dw_i2c_acpi_configure(pdev);
  140. if (r) {
  141. u32 param1 = i2c_dw_read_comp_param(dev);
  142. dev->tx_fifo_depth = ((param1 >> 16) & 0xff) + 1;
  143. dev->rx_fifo_depth = ((param1 >> 8) & 0xff) + 1;
  144. dev->adapter.nr = pdev->id;
  145. }
  146. r = i2c_dw_init(dev);
  147. if (r)
  148. goto err_iounmap;
  149. i2c_dw_disable_int(dev);
  150. r = request_irq(dev->irq, i2c_dw_isr, IRQF_SHARED, pdev->name, dev);
  151. if (r) {
  152. dev_err(&pdev->dev, "failure requesting irq %i\n", dev->irq);
  153. goto err_iounmap;
  154. }
  155. adap = &dev->adapter;
  156. i2c_set_adapdata(adap, dev);
  157. adap->owner = THIS_MODULE;
  158. adap->class = I2C_CLASS_HWMON;
  159. strlcpy(adap->name, "Synopsys DesignWare I2C adapter",
  160. sizeof(adap->name));
  161. adap->algo = &i2c_dw_algo;
  162. adap->dev.parent = &pdev->dev;
  163. adap->dev.of_node = pdev->dev.of_node;
  164. ACPI_HANDLE_SET(&adap->dev, ACPI_HANDLE(&pdev->dev));
  165. r = i2c_add_numbered_adapter(adap);
  166. if (r) {
  167. dev_err(&pdev->dev, "failure adding adapter\n");
  168. goto err_free_irq;
  169. }
  170. of_i2c_register_devices(adap);
  171. acpi_i2c_register_devices(adap);
  172. pm_runtime_set_active(&pdev->dev);
  173. pm_runtime_enable(&pdev->dev);
  174. pm_runtime_put(&pdev->dev);
  175. return 0;
  176. err_free_irq:
  177. free_irq(dev->irq, dev);
  178. err_iounmap:
  179. iounmap(dev->base);
  180. err_unuse_clocks:
  181. clk_disable_unprepare(dev->clk);
  182. clk_put(dev->clk);
  183. dev->clk = NULL;
  184. err_free_mem:
  185. put_device(&pdev->dev);
  186. kfree(dev);
  187. err_release_region:
  188. release_mem_region(mem->start, resource_size(mem));
  189. return r;
  190. }
  191. static int dw_i2c_remove(struct platform_device *pdev)
  192. {
  193. struct dw_i2c_dev *dev = platform_get_drvdata(pdev);
  194. struct resource *mem;
  195. pm_runtime_get_sync(&pdev->dev);
  196. i2c_del_adapter(&dev->adapter);
  197. put_device(&pdev->dev);
  198. clk_disable_unprepare(dev->clk);
  199. clk_put(dev->clk);
  200. dev->clk = NULL;
  201. i2c_dw_disable(dev);
  202. free_irq(dev->irq, dev);
  203. kfree(dev);
  204. pm_runtime_put(&pdev->dev);
  205. pm_runtime_disable(&pdev->dev);
  206. mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
  207. release_mem_region(mem->start, resource_size(mem));
  208. return 0;
  209. }
  210. #ifdef CONFIG_OF
  211. static const struct of_device_id dw_i2c_of_match[] = {
  212. { .compatible = "snps,designware-i2c", },
  213. {},
  214. };
  215. MODULE_DEVICE_TABLE(of, dw_i2c_of_match);
  216. #endif
  217. #ifdef CONFIG_PM
  218. static int dw_i2c_suspend(struct device *dev)
  219. {
  220. struct platform_device *pdev = to_platform_device(dev);
  221. struct dw_i2c_dev *i_dev = platform_get_drvdata(pdev);
  222. clk_disable_unprepare(i_dev->clk);
  223. return 0;
  224. }
  225. static int dw_i2c_resume(struct device *dev)
  226. {
  227. struct platform_device *pdev = to_platform_device(dev);
  228. struct dw_i2c_dev *i_dev = platform_get_drvdata(pdev);
  229. clk_prepare_enable(i_dev->clk);
  230. i2c_dw_init(i_dev);
  231. return 0;
  232. }
  233. #endif
  234. static SIMPLE_DEV_PM_OPS(dw_i2c_dev_pm_ops, dw_i2c_suspend, dw_i2c_resume);
  235. /* work with hotplug and coldplug */
  236. MODULE_ALIAS("platform:i2c_designware");
  237. static struct platform_driver dw_i2c_driver = {
  238. .remove = dw_i2c_remove,
  239. .driver = {
  240. .name = "i2c_designware",
  241. .owner = THIS_MODULE,
  242. .of_match_table = of_match_ptr(dw_i2c_of_match),
  243. .acpi_match_table = ACPI_PTR(dw_i2c_acpi_match),
  244. .pm = &dw_i2c_dev_pm_ops,
  245. },
  246. };
  247. static int __init dw_i2c_init_driver(void)
  248. {
  249. return platform_driver_probe(&dw_i2c_driver, dw_i2c_probe);
  250. }
  251. subsys_initcall(dw_i2c_init_driver);
  252. static void __exit dw_i2c_exit_driver(void)
  253. {
  254. platform_driver_unregister(&dw_i2c_driver);
  255. }
  256. module_exit(dw_i2c_exit_driver);
  257. MODULE_AUTHOR("Baruch Siach <baruch@tkos.co.il>");
  258. MODULE_DESCRIPTION("Synopsys DesignWare I2C bus adapter");
  259. MODULE_LICENSE("GPL");