blob: 64ffb908641cafad0bce655ce922247640577254 [file] [log] [blame]
Dirk Brandewie2373f6b2011-10-29 10:57:23 +01001/*
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>
Christian Ruppert9803f862013-06-26 10:55:06 +020037#include <linux/of.h>
Rob Herringaf711002011-11-08 14:43:47 -060038#include <linux/of_i2c.h>
Dirk Brandewie2373f6b2011-10-29 10:57:23 +010039#include <linux/platform_device.h>
Deepak Sikri3bf3b282012-02-24 17:01:15 +053040#include <linux/pm.h>
Mika Westerberg72721942013-01-17 12:31:06 +020041#include <linux/pm_runtime.h>
Dirk Brandewie2373f6b2011-10-29 10:57:23 +010042#include <linux/io.h>
43#include <linux/slab.h>
Mika Westerbergb61b1412013-01-17 12:31:07 +020044#include <linux/acpi.h>
Dirk Brandewie2373f6b2011-10-29 10:57:23 +010045#include "i2c-designware-core.h"
46
47static struct i2c_algorithm i2c_dw_algo = {
48 .master_xfer = i2c_dw_xfer,
49 .functionality = i2c_dw_func,
50};
Dirk Brandewie1d31b582011-10-06 11:26:30 -070051static u32 i2c_dw_get_clk_rate_khz(struct dw_i2c_dev *dev)
52{
53 return clk_get_rate(dev->clk)/1000;
54}
Dirk Brandewie2373f6b2011-10-29 10:57:23 +010055
Mika Westerbergb61b1412013-01-17 12:31:07 +020056#ifdef CONFIG_ACPI
57static int dw_i2c_acpi_configure(struct platform_device *pdev)
58{
59 struct dw_i2c_dev *dev = platform_get_drvdata(pdev);
Mika Westerbergb61b1412013-01-17 12:31:07 +020060
61 if (!ACPI_HANDLE(&pdev->dev))
62 return -ENODEV;
63
Mika Westerbergb61b1412013-01-17 12:31:07 +020064 dev->adapter.nr = -1;
Mika Westerbergb61b1412013-01-17 12:31:07 +020065 dev->tx_fifo_depth = 32;
66 dev->rx_fifo_depth = 32;
67 return 0;
68}
69
70static const struct acpi_device_id dw_i2c_acpi_match[] = {
71 { "INT33C2", 0 },
72 { "INT33C3", 0 },
Mika Westerberg5a7e6bd2013-05-13 00:54:31 +000073 { "80860F41", 0 },
Mika Westerbergb61b1412013-01-17 12:31:07 +020074 { }
75};
76MODULE_DEVICE_TABLE(acpi, dw_i2c_acpi_match);
77#else
78static inline int dw_i2c_acpi_configure(struct platform_device *pdev)
79{
80 return -ENODEV;
81}
82#endif
83
Bill Pemberton0b255e92012-11-27 15:59:38 -050084static int dw_i2c_probe(struct platform_device *pdev)
Dirk Brandewie2373f6b2011-10-29 10:57:23 +010085{
86 struct dw_i2c_dev *dev;
87 struct i2c_adapter *adap;
Andy Shevchenko1cb715c2013-04-10 00:36:36 +000088 struct resource *mem;
Dirk Brandewie2373f6b2011-10-29 10:57:23 +010089 int irq, r;
90
Dirk Brandewie2373f6b2011-10-29 10:57:23 +010091 irq = platform_get_irq(pdev, 0);
92 if (irq < 0) {
93 dev_err(&pdev->dev, "no irq resource?\n");
94 return irq; /* -ENXIO */
95 }
96
Andy Shevchenko1cb715c2013-04-10 00:36:36 +000097 dev = devm_kzalloc(&pdev->dev, sizeof(struct dw_i2c_dev), GFP_KERNEL);
98 if (!dev)
99 return -ENOMEM;
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100100
Wolfram Sang3cc2d002013-05-10 10:16:54 +0200101 mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Andy Shevchenko1cb715c2013-04-10 00:36:36 +0000102 dev->base = devm_ioremap_resource(&pdev->dev, mem);
103 if (IS_ERR(dev->base))
104 return PTR_ERR(dev->base);
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100105
106 init_completion(&dev->cmd_complete);
107 mutex_init(&dev->lock);
Andy Shevchenko1cb715c2013-04-10 00:36:36 +0000108 dev->dev = &pdev->dev;
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100109 dev->irq = irq;
110 platform_set_drvdata(pdev, dev);
111
Andy Shevchenko1cb715c2013-04-10 00:36:36 +0000112 dev->clk = devm_clk_get(&pdev->dev, NULL);
Dirk Brandewie1d31b582011-10-06 11:26:30 -0700113 dev->get_clk_rate_khz = i2c_dw_get_clk_rate_khz;
114
Andy Shevchenko1cb715c2013-04-10 00:36:36 +0000115 if (IS_ERR(dev->clk))
116 return PTR_ERR(dev->clk);
Viresh Kumare1fac692012-04-17 17:04:31 +0530117 clk_prepare_enable(dev->clk);
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100118
Christian Ruppert9803f862013-06-26 10:55:06 +0200119 if (pdev->dev.of_node) {
120 u32 ht = 0;
121 u32 ic_clk = dev->get_clk_rate_khz(dev);
122
123 of_property_read_u32(pdev->dev.of_node,
124 "i2c-sda-hold-time-ns", &ht);
Vincent Stehlé97191d72013-07-02 11:46:54 +0200125 dev->sda_hold_time = div_u64((u64)ic_clk * ht + 500000,
126 1000000);
Christian Ruppert9803f862013-06-26 10:55:06 +0200127 }
128
Dirk Brandewie2fa83262011-10-06 11:26:31 -0700129 dev->functionality =
130 I2C_FUNC_I2C |
131 I2C_FUNC_10BIT_ADDR |
132 I2C_FUNC_SMBUS_BYTE |
133 I2C_FUNC_SMBUS_BYTE_DATA |
134 I2C_FUNC_SMBUS_WORD_DATA |
135 I2C_FUNC_SMBUS_I2C_BLOCK;
Dirk Brandewiee18563f2011-10-06 11:26:32 -0700136 dev->master_cfg = DW_IC_CON_MASTER | DW_IC_CON_SLAVE_DISABLE |
137 DW_IC_CON_RESTART_EN | DW_IC_CON_SPEED_FAST;
Dirk Brandewie2fa83262011-10-06 11:26:31 -0700138
Mika Westerbergb61b1412013-01-17 12:31:07 +0200139 /* Try first if we can configure the device from ACPI */
140 r = dw_i2c_acpi_configure(pdev);
141 if (r) {
Dirk Brandewief3fa9f32011-10-06 11:26:34 -0700142 u32 param1 = i2c_dw_read_comp_param(dev);
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100143
144 dev->tx_fifo_depth = ((param1 >> 16) & 0xff) + 1;
145 dev->rx_fifo_depth = ((param1 >> 8) & 0xff) + 1;
Mika Westerbergb61b1412013-01-17 12:31:07 +0200146 dev->adapter.nr = pdev->id;
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100147 }
148 r = i2c_dw_init(dev);
149 if (r)
Andy Shevchenko1cb715c2013-04-10 00:36:36 +0000150 return r;
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100151
Dirk Brandewief3fa9f32011-10-06 11:26:34 -0700152 i2c_dw_disable_int(dev);
Andy Shevchenko1cb715c2013-04-10 00:36:36 +0000153 r = devm_request_irq(&pdev->dev, dev->irq, i2c_dw_isr, IRQF_SHARED,
154 pdev->name, dev);
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100155 if (r) {
156 dev_err(&pdev->dev, "failure requesting irq %i\n", dev->irq);
Andy Shevchenko1cb715c2013-04-10 00:36:36 +0000157 return r;
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100158 }
159
160 adap = &dev->adapter;
161 i2c_set_adapdata(adap, dev);
162 adap->owner = THIS_MODULE;
163 adap->class = I2C_CLASS_HWMON;
164 strlcpy(adap->name, "Synopsys DesignWare I2C adapter",
165 sizeof(adap->name));
166 adap->algo = &i2c_dw_algo;
167 adap->dev.parent = &pdev->dev;
Rob Herringaf711002011-11-08 14:43:47 -0600168 adap->dev.of_node = pdev->dev.of_node;
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100169
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100170 r = i2c_add_numbered_adapter(adap);
171 if (r) {
172 dev_err(&pdev->dev, "failure adding adapter\n");
Andy Shevchenko1cb715c2013-04-10 00:36:36 +0000173 return r;
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100174 }
Rob Herringaf711002011-11-08 14:43:47 -0600175 of_i2c_register_devices(adap);
Mika Westerbergb61b1412013-01-17 12:31:07 +0200176 acpi_i2c_register_devices(adap);
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100177
Mika Westerberg43452332013-04-10 00:36:42 +0000178 pm_runtime_set_autosuspend_delay(&pdev->dev, 1000);
179 pm_runtime_use_autosuspend(&pdev->dev);
Mika Westerberg72721942013-01-17 12:31:06 +0200180 pm_runtime_set_active(&pdev->dev);
181 pm_runtime_enable(&pdev->dev);
Mika Westerberg72721942013-01-17 12:31:06 +0200182
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100183 return 0;
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100184}
185
Bill Pemberton0b255e92012-11-27 15:59:38 -0500186static int dw_i2c_remove(struct platform_device *pdev)
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100187{
188 struct dw_i2c_dev *dev = platform_get_drvdata(pdev);
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100189
Mika Westerberg72721942013-01-17 12:31:06 +0200190 pm_runtime_get_sync(&pdev->dev);
191
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100192 i2c_del_adapter(&dev->adapter);
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100193
Dirk Brandewief3fa9f32011-10-06 11:26:34 -0700194 i2c_dw_disable(dev);
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100195
Mika Westerberg72721942013-01-17 12:31:06 +0200196 pm_runtime_put(&pdev->dev);
197 pm_runtime_disable(&pdev->dev);
198
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100199 return 0;
200}
201
Rob Herringaf711002011-11-08 14:43:47 -0600202#ifdef CONFIG_OF
203static const struct of_device_id dw_i2c_of_match[] = {
204 { .compatible = "snps,designware-i2c", },
205 {},
206};
207MODULE_DEVICE_TABLE(of, dw_i2c_of_match);
208#endif
209
Jingoo Handfb03fb2013-07-15 11:28:59 +0900210#ifdef CONFIG_PM_SLEEP
Deepak Sikri3bf3b282012-02-24 17:01:15 +0530211static int dw_i2c_suspend(struct device *dev)
212{
213 struct platform_device *pdev = to_platform_device(dev);
214 struct dw_i2c_dev *i_dev = platform_get_drvdata(pdev);
215
Viresh Kumare1fac692012-04-17 17:04:31 +0530216 clk_disable_unprepare(i_dev->clk);
Deepak Sikri3bf3b282012-02-24 17:01:15 +0530217
218 return 0;
219}
220
221static int dw_i2c_resume(struct device *dev)
222{
223 struct platform_device *pdev = to_platform_device(dev);
224 struct dw_i2c_dev *i_dev = platform_get_drvdata(pdev);
225
Viresh Kumare1fac692012-04-17 17:04:31 +0530226 clk_prepare_enable(i_dev->clk);
Deepak Sikri3bf3b282012-02-24 17:01:15 +0530227 i2c_dw_init(i_dev);
228
229 return 0;
230}
Deepak Sikri3bf3b282012-02-24 17:01:15 +0530231
232static SIMPLE_DEV_PM_OPS(dw_i2c_dev_pm_ops, dw_i2c_suspend, dw_i2c_resume);
Jingoo Handfb03fb2013-07-15 11:28:59 +0900233#define DW_I2C_DEV_PM_OPS (&dw_i2c_dev_pm_ops)
234#else
235#define DW_I2C_DEV_PM_OPS NULL
236#endif
Deepak Sikri3bf3b282012-02-24 17:01:15 +0530237
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100238/* work with hotplug and coldplug */
239MODULE_ALIAS("platform:i2c_designware");
240
241static struct platform_driver dw_i2c_driver = {
Bill Pemberton0b255e92012-11-27 15:59:38 -0500242 .remove = dw_i2c_remove,
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100243 .driver = {
244 .name = "i2c_designware",
245 .owner = THIS_MODULE,
Rob Herringaf711002011-11-08 14:43:47 -0600246 .of_match_table = of_match_ptr(dw_i2c_of_match),
Mika Westerbergb61b1412013-01-17 12:31:07 +0200247 .acpi_match_table = ACPI_PTR(dw_i2c_acpi_match),
Jingoo Handfb03fb2013-07-15 11:28:59 +0900248 .pm = DW_I2C_DEV_PM_OPS,
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100249 },
250};
251
252static int __init dw_i2c_init_driver(void)
253{
254 return platform_driver_probe(&dw_i2c_driver, dw_i2c_probe);
255}
Pratyush Anand10452282012-02-29 12:27:46 +0530256subsys_initcall(dw_i2c_init_driver);
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100257
258static void __exit dw_i2c_exit_driver(void)
259{
260 platform_driver_unregister(&dw_i2c_driver);
261}
262module_exit(dw_i2c_exit_driver);
263
264MODULE_AUTHOR("Baruch Siach <baruch@tkos.co.il>");
265MODULE_DESCRIPTION("Synopsys DesignWare I2C bus adapter");
266MODULE_LICENSE("GPL");