blob: a7431150acf7c3da87e248e4e2f25fa3ffa16589 [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>
Carl Penga4459002014-09-30 13:04:55 +030033#include <linux/clk-provider.h>
Dirk Brandewie2373f6b2011-10-29 10:57:23 +010034#include <linux/errno.h>
35#include <linux/sched.h>
36#include <linux/err.h>
37#include <linux/interrupt.h>
Christian Ruppert9803f862013-06-26 10:55:06 +020038#include <linux/of.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>
Tan, Raymond4bcfda02014-09-03 10:41:38 +080045#include <linux/platform_data/i2c-designware.h>
Dirk Brandewie2373f6b2011-10-29 10:57:23 +010046#include "i2c-designware-core.h"
47
48static struct i2c_algorithm i2c_dw_algo = {
49 .master_xfer = i2c_dw_xfer,
50 .functionality = i2c_dw_func,
51};
Dirk Brandewie1d31b582011-10-06 11:26:30 -070052static u32 i2c_dw_get_clk_rate_khz(struct dw_i2c_dev *dev)
53{
54 return clk_get_rate(dev->clk)/1000;
55}
Dirk Brandewie2373f6b2011-10-29 10:57:23 +010056
Mika Westerbergb61b1412013-01-17 12:31:07 +020057#ifdef CONFIG_ACPI
Mika Westerberg57cd1e32013-08-19 15:07:54 +030058static void dw_i2c_acpi_params(struct platform_device *pdev, char method[],
59 u16 *hcnt, u16 *lcnt, u32 *sda_hold)
60{
61 struct acpi_buffer buf = { ACPI_ALLOCATE_BUFFER };
62 acpi_handle handle = ACPI_HANDLE(&pdev->dev);
63 union acpi_object *obj;
64
65 if (ACPI_FAILURE(acpi_evaluate_object(handle, method, NULL, &buf)))
66 return;
67
68 obj = (union acpi_object *)buf.pointer;
69 if (obj->type == ACPI_TYPE_PACKAGE && obj->package.count == 3) {
70 const union acpi_object *objs = obj->package.elements;
71
72 *hcnt = (u16)objs[0].integer.value;
73 *lcnt = (u16)objs[1].integer.value;
74 if (sda_hold)
75 *sda_hold = (u32)objs[2].integer.value;
76 }
77
78 kfree(buf.pointer);
79}
80
Mika Westerbergb61b1412013-01-17 12:31:07 +020081static int dw_i2c_acpi_configure(struct platform_device *pdev)
82{
83 struct dw_i2c_dev *dev = platform_get_drvdata(pdev);
Carl Penga4459002014-09-30 13:04:55 +030084 const struct acpi_device_id *id;
Mika Westerbergb61b1412013-01-17 12:31:07 +020085
Mika Westerbergb61b1412013-01-17 12:31:07 +020086 dev->adapter.nr = -1;
Mika Westerbergb61b1412013-01-17 12:31:07 +020087 dev->tx_fifo_depth = 32;
88 dev->rx_fifo_depth = 32;
Mika Westerberg57cd1e32013-08-19 15:07:54 +030089
90 /*
91 * Try to get SDA hold time and *CNT values from an ACPI method if
92 * it exists for both supported speed modes.
93 */
Mika Westerberg0b26c842014-09-30 13:04:53 +030094 dw_i2c_acpi_params(pdev, "SSCN", &dev->ss_hcnt, &dev->ss_lcnt, NULL);
Mika Westerberg57cd1e32013-08-19 15:07:54 +030095 dw_i2c_acpi_params(pdev, "FMCN", &dev->fs_hcnt, &dev->fs_lcnt,
Mika Westerberg0b26c842014-09-30 13:04:53 +030096 &dev->sda_hold_time);
Mika Westerberg57cd1e32013-08-19 15:07:54 +030097
Carl Penga4459002014-09-30 13:04:55 +030098 /*
99 * Provide a way for Designware I2C host controllers that are not
100 * based on Intel LPSS to specify their input clock frequency via
101 * id->driver_data.
102 */
103 id = acpi_match_device(pdev->dev.driver->acpi_match_table, &pdev->dev);
104 if (id && id->driver_data)
105 clk_register_fixed_rate(&pdev->dev, dev_name(&pdev->dev), NULL,
106 CLK_IS_ROOT, id->driver_data);
107
Mika Westerbergb61b1412013-01-17 12:31:07 +0200108 return 0;
109}
110
Carl Penga4459002014-09-30 13:04:55 +0300111static void dw_i2c_acpi_unconfigure(struct platform_device *pdev)
112{
113 struct dw_i2c_dev *dev = platform_get_drvdata(pdev);
114 const struct acpi_device_id *id;
115
116 id = acpi_match_device(pdev->dev.driver->acpi_match_table, &pdev->dev);
117 if (id && id->driver_data)
118 clk_unregister(dev->clk);
119}
120
Mika Westerbergb61b1412013-01-17 12:31:07 +0200121static const struct acpi_device_id dw_i2c_acpi_match[] = {
122 { "INT33C2", 0 },
123 { "INT33C3", 0 },
Mika Westerberg25b3dfc2013-11-12 11:57:30 +0200124 { "INT3432", 0 },
125 { "INT3433", 0 },
Mika Westerberg5a7e6bd2013-05-13 00:54:31 +0000126 { "80860F41", 0 },
Alan Cox04095162014-07-23 13:06:57 +0100127 { "808622C1", 0 },
Carl Penga4459002014-09-30 13:04:55 +0300128 { "AMD0010", 133 * 1000 * 1000 },
Mika Westerbergb61b1412013-01-17 12:31:07 +0200129 { }
130};
131MODULE_DEVICE_TABLE(acpi, dw_i2c_acpi_match);
132#else
133static inline int dw_i2c_acpi_configure(struct platform_device *pdev)
134{
135 return -ENODEV;
136}
Carl Penga4459002014-09-30 13:04:55 +0300137static inline void dw_i2c_acpi_unconfigure(struct platform_device *pdev) { }
Mika Westerbergb61b1412013-01-17 12:31:07 +0200138#endif
139
Bill Pemberton0b255e92012-11-27 15:59:38 -0500140static int dw_i2c_probe(struct platform_device *pdev)
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100141{
142 struct dw_i2c_dev *dev;
143 struct i2c_adapter *adap;
Andy Shevchenko1cb715c2013-04-10 00:36:36 +0000144 struct resource *mem;
Tan, Raymond4bcfda02014-09-03 10:41:38 +0800145 struct dw_i2c_platform_data *pdata;
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100146 int irq, r;
Mika Westerberg925ddb22014-09-30 13:04:54 +0300147 u32 clk_freq, ht = 0;
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100148
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100149 irq = platform_get_irq(pdev, 0);
150 if (irq < 0) {
151 dev_err(&pdev->dev, "no irq resource?\n");
152 return irq; /* -ENXIO */
153 }
154
Andy Shevchenko1cb715c2013-04-10 00:36:36 +0000155 dev = devm_kzalloc(&pdev->dev, sizeof(struct dw_i2c_dev), GFP_KERNEL);
156 if (!dev)
157 return -ENOMEM;
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100158
Wolfram Sang3cc2d002013-05-10 10:16:54 +0200159 mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Andy Shevchenko1cb715c2013-04-10 00:36:36 +0000160 dev->base = devm_ioremap_resource(&pdev->dev, mem);
161 if (IS_ERR(dev->base))
162 return PTR_ERR(dev->base);
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100163
164 init_completion(&dev->cmd_complete);
165 mutex_init(&dev->lock);
Andy Shevchenko1cb715c2013-04-10 00:36:36 +0000166 dev->dev = &pdev->dev;
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100167 dev->irq = irq;
168 platform_set_drvdata(pdev, dev);
169
Romain Baeriswyl8e5f6b22014-08-20 16:29:08 +0200170 /* fast mode by default because of legacy reasons */
171 clk_freq = 400000;
172
Mika Westerberg925ddb22014-09-30 13:04:54 +0300173 if (ACPI_COMPANION(&pdev->dev)) {
174 dw_i2c_acpi_configure(pdev);
175 } else if (pdev->dev.of_node) {
Christian Ruppert9803f862013-06-26 10:55:06 +0200176 of_property_read_u32(pdev->dev.of_node,
177 "i2c-sda-hold-time-ns", &ht);
Romain Baeriswyl64682762014-01-20 17:43:43 +0100178
179 of_property_read_u32(pdev->dev.of_node,
180 "i2c-sda-falling-time-ns",
181 &dev->sda_falling_time);
182 of_property_read_u32(pdev->dev.of_node,
183 "i2c-scl-falling-time-ns",
184 &dev->scl_falling_time);
Romain Baeriswyl8e5f6b22014-08-20 16:29:08 +0200185
186 of_property_read_u32(pdev->dev.of_node, "clock-frequency",
187 &clk_freq);
188
189 /* Only standard mode at 100kHz and fast mode at 400kHz
190 * are supported.
191 */
192 if (clk_freq != 100000 && clk_freq != 400000) {
193 dev_err(&pdev->dev, "Only 100kHz and 400kHz supported");
194 return -EINVAL;
195 }
Tan, Raymond4bcfda02014-09-03 10:41:38 +0800196 } else {
197 pdata = dev_get_platdata(&pdev->dev);
198 if (pdata)
199 clk_freq = pdata->i2c_scl_freq;
Christian Ruppert9803f862013-06-26 10:55:06 +0200200 }
201
Dirk Brandewie2fa83262011-10-06 11:26:31 -0700202 dev->functionality =
203 I2C_FUNC_I2C |
204 I2C_FUNC_10BIT_ADDR |
205 I2C_FUNC_SMBUS_BYTE |
206 I2C_FUNC_SMBUS_BYTE_DATA |
207 I2C_FUNC_SMBUS_WORD_DATA |
208 I2C_FUNC_SMBUS_I2C_BLOCK;
Romain Baeriswyl8e5f6b22014-08-20 16:29:08 +0200209 if (clk_freq == 100000)
210 dev->master_cfg = DW_IC_CON_MASTER | DW_IC_CON_SLAVE_DISABLE |
211 DW_IC_CON_RESTART_EN | DW_IC_CON_SPEED_STD;
212 else
213 dev->master_cfg = DW_IC_CON_MASTER | DW_IC_CON_SLAVE_DISABLE |
214 DW_IC_CON_RESTART_EN | DW_IC_CON_SPEED_FAST;
Dirk Brandewie2fa83262011-10-06 11:26:31 -0700215
Mika Westerberg925ddb22014-09-30 13:04:54 +0300216 dev->clk = devm_clk_get(&pdev->dev, NULL);
217 dev->get_clk_rate_khz = i2c_dw_get_clk_rate_khz;
218 if (IS_ERR(dev->clk))
219 return PTR_ERR(dev->clk);
220 clk_prepare_enable(dev->clk);
221
222 if (!dev->sda_hold_time && ht) {
223 u32 ic_clk = dev->get_clk_rate_khz(dev);
224
225 dev->sda_hold_time = div_u64((u64)ic_clk * ht + 500000,
226 1000000);
227 }
228
229 if (!dev->tx_fifo_depth) {
Dirk Brandewief3fa9f32011-10-06 11:26:34 -0700230 u32 param1 = i2c_dw_read_comp_param(dev);
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100231
232 dev->tx_fifo_depth = ((param1 >> 16) & 0xff) + 1;
233 dev->rx_fifo_depth = ((param1 >> 8) & 0xff) + 1;
Mika Westerbergb61b1412013-01-17 12:31:07 +0200234 dev->adapter.nr = pdev->id;
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100235 }
236 r = i2c_dw_init(dev);
237 if (r)
Andy Shevchenko1cb715c2013-04-10 00:36:36 +0000238 return r;
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100239
Dirk Brandewief3fa9f32011-10-06 11:26:34 -0700240 i2c_dw_disable_int(dev);
Andy Shevchenko1cb715c2013-04-10 00:36:36 +0000241 r = devm_request_irq(&pdev->dev, dev->irq, i2c_dw_isr, IRQF_SHARED,
242 pdev->name, dev);
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100243 if (r) {
244 dev_err(&pdev->dev, "failure requesting irq %i\n", dev->irq);
Andy Shevchenko1cb715c2013-04-10 00:36:36 +0000245 return r;
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100246 }
247
248 adap = &dev->adapter;
249 i2c_set_adapdata(adap, dev);
250 adap->owner = THIS_MODULE;
Wolfram Sang70fba832014-07-10 13:46:26 +0200251 adap->class = I2C_CLASS_DEPRECATED;
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100252 strlcpy(adap->name, "Synopsys DesignWare I2C adapter",
253 sizeof(adap->name));
254 adap->algo = &i2c_dw_algo;
255 adap->dev.parent = &pdev->dev;
Rob Herringaf711002011-11-08 14:43:47 -0600256 adap->dev.of_node = pdev->dev.of_node;
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100257
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100258 r = i2c_add_numbered_adapter(adap);
259 if (r) {
260 dev_err(&pdev->dev, "failure adding adapter\n");
Andy Shevchenko1cb715c2013-04-10 00:36:36 +0000261 return r;
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100262 }
263
Mika Westerberg43452332013-04-10 00:36:42 +0000264 pm_runtime_set_autosuspend_delay(&pdev->dev, 1000);
265 pm_runtime_use_autosuspend(&pdev->dev);
Mika Westerberg72721942013-01-17 12:31:06 +0200266 pm_runtime_set_active(&pdev->dev);
267 pm_runtime_enable(&pdev->dev);
Mika Westerberg72721942013-01-17 12:31:06 +0200268
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100269 return 0;
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100270}
271
Bill Pemberton0b255e92012-11-27 15:59:38 -0500272static int dw_i2c_remove(struct platform_device *pdev)
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100273{
274 struct dw_i2c_dev *dev = platform_get_drvdata(pdev);
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100275
Mika Westerberg72721942013-01-17 12:31:06 +0200276 pm_runtime_get_sync(&pdev->dev);
277
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100278 i2c_del_adapter(&dev->adapter);
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100279
Dirk Brandewief3fa9f32011-10-06 11:26:34 -0700280 i2c_dw_disable(dev);
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100281
Mika Westerberg72721942013-01-17 12:31:06 +0200282 pm_runtime_put(&pdev->dev);
283 pm_runtime_disable(&pdev->dev);
284
Carl Penga4459002014-09-30 13:04:55 +0300285 if (ACPI_COMPANION(&pdev->dev))
286 dw_i2c_acpi_unconfigure(pdev);
287
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100288 return 0;
289}
290
Rob Herringaf711002011-11-08 14:43:47 -0600291#ifdef CONFIG_OF
292static const struct of_device_id dw_i2c_of_match[] = {
293 { .compatible = "snps,designware-i2c", },
294 {},
295};
296MODULE_DEVICE_TABLE(of, dw_i2c_of_match);
297#endif
298
Mika Westerberg1fc2fe22014-05-15 17:37:23 +0300299#ifdef CONFIG_PM
Deepak Sikri3bf3b282012-02-24 17:01:15 +0530300static int dw_i2c_suspend(struct device *dev)
301{
302 struct platform_device *pdev = to_platform_device(dev);
303 struct dw_i2c_dev *i_dev = platform_get_drvdata(pdev);
304
Mika Westerbergf5372952014-05-15 17:37:22 +0300305 i2c_dw_disable(i_dev);
Viresh Kumare1fac692012-04-17 17:04:31 +0530306 clk_disable_unprepare(i_dev->clk);
Deepak Sikri3bf3b282012-02-24 17:01:15 +0530307
308 return 0;
309}
310
311static int dw_i2c_resume(struct device *dev)
312{
313 struct platform_device *pdev = to_platform_device(dev);
314 struct dw_i2c_dev *i_dev = platform_get_drvdata(pdev);
315
Viresh Kumare1fac692012-04-17 17:04:31 +0530316 clk_prepare_enable(i_dev->clk);
Deepak Sikri3bf3b282012-02-24 17:01:15 +0530317 i2c_dw_init(i_dev);
318
319 return 0;
320}
Jingoo Handfb03fb2013-07-15 11:28:59 +0900321#endif
Deepak Sikri3bf3b282012-02-24 17:01:15 +0530322
Mika Westerberg1fc2fe22014-05-15 17:37:23 +0300323static UNIVERSAL_DEV_PM_OPS(dw_i2c_dev_pm_ops, dw_i2c_suspend,
324 dw_i2c_resume, NULL);
325
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100326/* work with hotplug and coldplug */
327MODULE_ALIAS("platform:i2c_designware");
328
329static struct platform_driver dw_i2c_driver = {
Wolfram Sangcccdcea2013-10-08 22:35:33 +0200330 .probe = dw_i2c_probe,
331 .remove = dw_i2c_remove,
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100332 .driver = {
333 .name = "i2c_designware",
334 .owner = THIS_MODULE,
Rob Herringaf711002011-11-08 14:43:47 -0600335 .of_match_table = of_match_ptr(dw_i2c_of_match),
Mika Westerbergb61b1412013-01-17 12:31:07 +0200336 .acpi_match_table = ACPI_PTR(dw_i2c_acpi_match),
Mika Westerberg1fc2fe22014-05-15 17:37:23 +0300337 .pm = &dw_i2c_dev_pm_ops,
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100338 },
339};
340
341static int __init dw_i2c_init_driver(void)
342{
Wolfram Sangcccdcea2013-10-08 22:35:33 +0200343 return platform_driver_register(&dw_i2c_driver);
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100344}
Pratyush Anand10452282012-02-29 12:27:46 +0530345subsys_initcall(dw_i2c_init_driver);
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100346
347static void __exit dw_i2c_exit_driver(void)
348{
349 platform_driver_unregister(&dw_i2c_driver);
350}
351module_exit(dw_i2c_exit_driver);
352
353MODULE_AUTHOR("Baruch Siach <baruch@tkos.co.il>");
354MODULE_DESCRIPTION("Synopsys DesignWare I2C bus adapter");
355MODULE_LICENSE("GPL");