blob: 3dd2de31a2f8d380f71ff61c562a53d8638f9eb5 [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.
Dirk Brandewie2373f6b2011-10-29 10:57:23 +010021 * ----------------------------------------------------------------------------
22 *
23 */
24#include <linux/kernel.h>
25#include <linux/module.h>
26#include <linux/delay.h>
27#include <linux/i2c.h>
28#include <linux/clk.h>
Carl Penga4459002014-09-30 13:04:55 +030029#include <linux/clk-provider.h>
Dirk Brandewie2373f6b2011-10-29 10:57:23 +010030#include <linux/errno.h>
31#include <linux/sched.h>
32#include <linux/err.h>
33#include <linux/interrupt.h>
Christian Ruppert9803f862013-06-26 10:55:06 +020034#include <linux/of.h>
Dirk Brandewie2373f6b2011-10-29 10:57:23 +010035#include <linux/platform_device.h>
Deepak Sikri3bf3b282012-02-24 17:01:15 +053036#include <linux/pm.h>
Mika Westerberg72721942013-01-17 12:31:06 +020037#include <linux/pm_runtime.h>
Dirk Brandewie2373f6b2011-10-29 10:57:23 +010038#include <linux/io.h>
39#include <linux/slab.h>
Mika Westerbergb61b1412013-01-17 12:31:07 +020040#include <linux/acpi.h>
Tan, Raymond4bcfda02014-09-03 10:41:38 +080041#include <linux/platform_data/i2c-designware.h>
Dirk Brandewie2373f6b2011-10-29 10:57:23 +010042#include "i2c-designware-core.h"
43
44static struct i2c_algorithm i2c_dw_algo = {
45 .master_xfer = i2c_dw_xfer,
46 .functionality = i2c_dw_func,
47};
Dirk Brandewie1d31b582011-10-06 11:26:30 -070048static u32 i2c_dw_get_clk_rate_khz(struct dw_i2c_dev *dev)
49{
50 return clk_get_rate(dev->clk)/1000;
51}
Dirk Brandewie2373f6b2011-10-29 10:57:23 +010052
Mika Westerbergb61b1412013-01-17 12:31:07 +020053#ifdef CONFIG_ACPI
Mika Westerberg57cd1e32013-08-19 15:07:54 +030054static void dw_i2c_acpi_params(struct platform_device *pdev, char method[],
55 u16 *hcnt, u16 *lcnt, u32 *sda_hold)
56{
57 struct acpi_buffer buf = { ACPI_ALLOCATE_BUFFER };
58 acpi_handle handle = ACPI_HANDLE(&pdev->dev);
59 union acpi_object *obj;
60
61 if (ACPI_FAILURE(acpi_evaluate_object(handle, method, NULL, &buf)))
62 return;
63
64 obj = (union acpi_object *)buf.pointer;
65 if (obj->type == ACPI_TYPE_PACKAGE && obj->package.count == 3) {
66 const union acpi_object *objs = obj->package.elements;
67
68 *hcnt = (u16)objs[0].integer.value;
69 *lcnt = (u16)objs[1].integer.value;
70 if (sda_hold)
71 *sda_hold = (u32)objs[2].integer.value;
72 }
73
74 kfree(buf.pointer);
75}
76
Mika Westerbergb61b1412013-01-17 12:31:07 +020077static int dw_i2c_acpi_configure(struct platform_device *pdev)
78{
79 struct dw_i2c_dev *dev = platform_get_drvdata(pdev);
Carl Penga4459002014-09-30 13:04:55 +030080 const struct acpi_device_id *id;
Mika Westerbergb61b1412013-01-17 12:31:07 +020081
Mika Westerbergb61b1412013-01-17 12:31:07 +020082 dev->adapter.nr = -1;
Mika Westerbergb61b1412013-01-17 12:31:07 +020083 dev->tx_fifo_depth = 32;
84 dev->rx_fifo_depth = 32;
Mika Westerberg57cd1e32013-08-19 15:07:54 +030085
86 /*
87 * Try to get SDA hold time and *CNT values from an ACPI method if
88 * it exists for both supported speed modes.
89 */
Mika Westerberg0b26c842014-09-30 13:04:53 +030090 dw_i2c_acpi_params(pdev, "SSCN", &dev->ss_hcnt, &dev->ss_lcnt, NULL);
Mika Westerberg57cd1e32013-08-19 15:07:54 +030091 dw_i2c_acpi_params(pdev, "FMCN", &dev->fs_hcnt, &dev->fs_lcnt,
Mika Westerberg0b26c842014-09-30 13:04:53 +030092 &dev->sda_hold_time);
Mika Westerberg57cd1e32013-08-19 15:07:54 +030093
Carl Penga4459002014-09-30 13:04:55 +030094 /*
95 * Provide a way for Designware I2C host controllers that are not
96 * based on Intel LPSS to specify their input clock frequency via
97 * id->driver_data.
98 */
99 id = acpi_match_device(pdev->dev.driver->acpi_match_table, &pdev->dev);
100 if (id && id->driver_data)
101 clk_register_fixed_rate(&pdev->dev, dev_name(&pdev->dev), NULL,
102 CLK_IS_ROOT, id->driver_data);
103
Mika Westerbergb61b1412013-01-17 12:31:07 +0200104 return 0;
105}
106
Carl Penga4459002014-09-30 13:04:55 +0300107static void dw_i2c_acpi_unconfigure(struct platform_device *pdev)
108{
109 struct dw_i2c_dev *dev = platform_get_drvdata(pdev);
110 const struct acpi_device_id *id;
111
112 id = acpi_match_device(pdev->dev.driver->acpi_match_table, &pdev->dev);
113 if (id && id->driver_data)
114 clk_unregister(dev->clk);
115}
116
Mika Westerbergb61b1412013-01-17 12:31:07 +0200117static const struct acpi_device_id dw_i2c_acpi_match[] = {
118 { "INT33C2", 0 },
119 { "INT33C3", 0 },
Mika Westerberg25b3dfc2013-11-12 11:57:30 +0200120 { "INT3432", 0 },
121 { "INT3433", 0 },
Mika Westerberg5a7e6bd2013-05-13 00:54:31 +0000122 { "80860F41", 0 },
Alan Cox04095162014-07-23 13:06:57 +0100123 { "808622C1", 0 },
Carl Penga4459002014-09-30 13:04:55 +0300124 { "AMD0010", 133 * 1000 * 1000 },
Mika Westerbergb61b1412013-01-17 12:31:07 +0200125 { }
126};
127MODULE_DEVICE_TABLE(acpi, dw_i2c_acpi_match);
128#else
129static inline int dw_i2c_acpi_configure(struct platform_device *pdev)
130{
131 return -ENODEV;
132}
Carl Penga4459002014-09-30 13:04:55 +0300133static inline void dw_i2c_acpi_unconfigure(struct platform_device *pdev) { }
Mika Westerbergb61b1412013-01-17 12:31:07 +0200134#endif
135
Bill Pemberton0b255e92012-11-27 15:59:38 -0500136static int dw_i2c_probe(struct platform_device *pdev)
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100137{
138 struct dw_i2c_dev *dev;
139 struct i2c_adapter *adap;
Andy Shevchenko1cb715c2013-04-10 00:36:36 +0000140 struct resource *mem;
Tan, Raymond4bcfda02014-09-03 10:41:38 +0800141 struct dw_i2c_platform_data *pdata;
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100142 int irq, r;
Mika Westerberg925ddb22014-09-30 13:04:54 +0300143 u32 clk_freq, ht = 0;
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100144
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100145 irq = platform_get_irq(pdev, 0);
Alexey Brodkinb20d3862015-03-09 12:03:12 +0300146 if (irq < 0)
147 return irq;
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100148
Andy Shevchenko1cb715c2013-04-10 00:36:36 +0000149 dev = devm_kzalloc(&pdev->dev, sizeof(struct dw_i2c_dev), GFP_KERNEL);
150 if (!dev)
151 return -ENOMEM;
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100152
Wolfram Sang3cc2d002013-05-10 10:16:54 +0200153 mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Andy Shevchenko1cb715c2013-04-10 00:36:36 +0000154 dev->base = devm_ioremap_resource(&pdev->dev, mem);
155 if (IS_ERR(dev->base))
156 return PTR_ERR(dev->base);
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100157
158 init_completion(&dev->cmd_complete);
159 mutex_init(&dev->lock);
Andy Shevchenko1cb715c2013-04-10 00:36:36 +0000160 dev->dev = &pdev->dev;
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100161 dev->irq = irq;
162 platform_set_drvdata(pdev, dev);
163
Romain Baeriswyl8e5f6b22014-08-20 16:29:08 +0200164 /* fast mode by default because of legacy reasons */
165 clk_freq = 400000;
166
Rafael J. Wysockica5b74d2015-03-16 23:49:08 +0100167 if (has_acpi_companion(&pdev->dev)) {
Mika Westerberg925ddb22014-09-30 13:04:54 +0300168 dw_i2c_acpi_configure(pdev);
169 } else if (pdev->dev.of_node) {
Christian Ruppert9803f862013-06-26 10:55:06 +0200170 of_property_read_u32(pdev->dev.of_node,
171 "i2c-sda-hold-time-ns", &ht);
Romain Baeriswyl64682762014-01-20 17:43:43 +0100172
173 of_property_read_u32(pdev->dev.of_node,
174 "i2c-sda-falling-time-ns",
175 &dev->sda_falling_time);
176 of_property_read_u32(pdev->dev.of_node,
177 "i2c-scl-falling-time-ns",
178 &dev->scl_falling_time);
Romain Baeriswyl8e5f6b22014-08-20 16:29:08 +0200179
180 of_property_read_u32(pdev->dev.of_node, "clock-frequency",
181 &clk_freq);
182
183 /* Only standard mode at 100kHz and fast mode at 400kHz
184 * are supported.
185 */
186 if (clk_freq != 100000 && clk_freq != 400000) {
187 dev_err(&pdev->dev, "Only 100kHz and 400kHz supported");
188 return -EINVAL;
189 }
Tan, Raymond4bcfda02014-09-03 10:41:38 +0800190 } else {
191 pdata = dev_get_platdata(&pdev->dev);
192 if (pdata)
193 clk_freq = pdata->i2c_scl_freq;
Christian Ruppert9803f862013-06-26 10:55:06 +0200194 }
195
David Box894acb22015-01-15 01:12:17 -0800196 r = i2c_dw_eval_lock_support(dev);
197 if (r)
198 return r;
199
Dirk Brandewie2fa83262011-10-06 11:26:31 -0700200 dev->functionality =
201 I2C_FUNC_I2C |
202 I2C_FUNC_10BIT_ADDR |
203 I2C_FUNC_SMBUS_BYTE |
204 I2C_FUNC_SMBUS_BYTE_DATA |
205 I2C_FUNC_SMBUS_WORD_DATA |
206 I2C_FUNC_SMBUS_I2C_BLOCK;
Romain Baeriswyl8e5f6b22014-08-20 16:29:08 +0200207 if (clk_freq == 100000)
208 dev->master_cfg = DW_IC_CON_MASTER | DW_IC_CON_SLAVE_DISABLE |
209 DW_IC_CON_RESTART_EN | DW_IC_CON_SPEED_STD;
210 else
211 dev->master_cfg = DW_IC_CON_MASTER | DW_IC_CON_SLAVE_DISABLE |
212 DW_IC_CON_RESTART_EN | DW_IC_CON_SPEED_FAST;
Dirk Brandewie2fa83262011-10-06 11:26:31 -0700213
Mika Westerberg925ddb22014-09-30 13:04:54 +0300214 dev->clk = devm_clk_get(&pdev->dev, NULL);
215 dev->get_clk_rate_khz = i2c_dw_get_clk_rate_khz;
216 if (IS_ERR(dev->clk))
217 return PTR_ERR(dev->clk);
218 clk_prepare_enable(dev->clk);
219
220 if (!dev->sda_hold_time && ht) {
221 u32 ic_clk = dev->get_clk_rate_khz(dev);
222
223 dev->sda_hold_time = div_u64((u64)ic_clk * ht + 500000,
224 1000000);
225 }
226
227 if (!dev->tx_fifo_depth) {
Dirk Brandewief3fa9f32011-10-06 11:26:34 -0700228 u32 param1 = i2c_dw_read_comp_param(dev);
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100229
230 dev->tx_fifo_depth = ((param1 >> 16) & 0xff) + 1;
231 dev->rx_fifo_depth = ((param1 >> 8) & 0xff) + 1;
Mika Westerbergb61b1412013-01-17 12:31:07 +0200232 dev->adapter.nr = pdev->id;
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100233 }
234 r = i2c_dw_init(dev);
235 if (r)
Andy Shevchenko1cb715c2013-04-10 00:36:36 +0000236 return r;
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100237
Dirk Brandewief3fa9f32011-10-06 11:26:34 -0700238 i2c_dw_disable_int(dev);
Andy Shevchenko1cb715c2013-04-10 00:36:36 +0000239 r = devm_request_irq(&pdev->dev, dev->irq, i2c_dw_isr, IRQF_SHARED,
240 pdev->name, dev);
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100241 if (r) {
242 dev_err(&pdev->dev, "failure requesting irq %i\n", dev->irq);
Andy Shevchenko1cb715c2013-04-10 00:36:36 +0000243 return r;
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100244 }
245
246 adap = &dev->adapter;
247 i2c_set_adapdata(adap, dev);
248 adap->owner = THIS_MODULE;
Wolfram Sang70fba832014-07-10 13:46:26 +0200249 adap->class = I2C_CLASS_DEPRECATED;
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100250 strlcpy(adap->name, "Synopsys DesignWare I2C adapter",
251 sizeof(adap->name));
252 adap->algo = &i2c_dw_algo;
253 adap->dev.parent = &pdev->dev;
Rob Herringaf711002011-11-08 14:43:47 -0600254 adap->dev.of_node = pdev->dev.of_node;
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100255
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100256 r = i2c_add_numbered_adapter(adap);
257 if (r) {
258 dev_err(&pdev->dev, "failure adding adapter\n");
Andy Shevchenko1cb715c2013-04-10 00:36:36 +0000259 return r;
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100260 }
261
David Box894acb22015-01-15 01:12:17 -0800262 if (dev->pm_runtime_disabled) {
263 pm_runtime_forbid(&pdev->dev);
264 } else {
265 pm_runtime_set_autosuspend_delay(&pdev->dev, 1000);
266 pm_runtime_use_autosuspend(&pdev->dev);
267 pm_runtime_set_active(&pdev->dev);
268 pm_runtime_enable(&pdev->dev);
269 }
Mika Westerberg72721942013-01-17 12:31:06 +0200270
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100271 return 0;
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100272}
273
Bill Pemberton0b255e92012-11-27 15:59:38 -0500274static int dw_i2c_remove(struct platform_device *pdev)
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100275{
276 struct dw_i2c_dev *dev = platform_get_drvdata(pdev);
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100277
Mika Westerberg72721942013-01-17 12:31:06 +0200278 pm_runtime_get_sync(&pdev->dev);
279
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100280 i2c_del_adapter(&dev->adapter);
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100281
Dirk Brandewief3fa9f32011-10-06 11:26:34 -0700282 i2c_dw_disable(dev);
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100283
Mika Westerbergedfc3902015-06-17 12:08:38 +0300284 pm_runtime_dont_use_autosuspend(&pdev->dev);
285 pm_runtime_put_sync(&pdev->dev);
Mika Westerberg72721942013-01-17 12:31:06 +0200286 pm_runtime_disable(&pdev->dev);
287
Rafael J. Wysockica5b74d2015-03-16 23:49:08 +0100288 if (has_acpi_companion(&pdev->dev))
Carl Penga4459002014-09-30 13:04:55 +0300289 dw_i2c_acpi_unconfigure(pdev);
290
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100291 return 0;
292}
293
Rob Herringaf711002011-11-08 14:43:47 -0600294#ifdef CONFIG_OF
295static const struct of_device_id dw_i2c_of_match[] = {
296 { .compatible = "snps,designware-i2c", },
297 {},
298};
299MODULE_DEVICE_TABLE(of, dw_i2c_of_match);
300#endif
301
Jisheng Zhang8503ff12015-05-20 22:33:13 +0800302#ifdef CONFIG_PM_SLEEP
303static int dw_i2c_prepare(struct device *dev)
304{
305 return pm_runtime_suspended(dev);
306}
307
308static void dw_i2c_complete(struct device *dev)
309{
310 if (dev->power.direct_complete)
311 pm_request_resume(dev);
312}
313#else
314#define dw_i2c_prepare NULL
315#define dw_i2c_complete NULL
316#endif
317
Mika Westerberg1fc2fe22014-05-15 17:37:23 +0300318#ifdef CONFIG_PM
Deepak Sikri3bf3b282012-02-24 17:01:15 +0530319static int dw_i2c_suspend(struct device *dev)
320{
321 struct platform_device *pdev = to_platform_device(dev);
322 struct dw_i2c_dev *i_dev = platform_get_drvdata(pdev);
323
Mika Westerbergf5372952014-05-15 17:37:22 +0300324 i2c_dw_disable(i_dev);
Viresh Kumare1fac692012-04-17 17:04:31 +0530325 clk_disable_unprepare(i_dev->clk);
Deepak Sikri3bf3b282012-02-24 17:01:15 +0530326
327 return 0;
328}
329
330static int dw_i2c_resume(struct device *dev)
331{
332 struct platform_device *pdev = to_platform_device(dev);
333 struct dw_i2c_dev *i_dev = platform_get_drvdata(pdev);
334
Viresh Kumare1fac692012-04-17 17:04:31 +0530335 clk_prepare_enable(i_dev->clk);
David Box894acb22015-01-15 01:12:17 -0800336
337 if (!i_dev->pm_runtime_disabled)
338 i2c_dw_init(i_dev);
Deepak Sikri3bf3b282012-02-24 17:01:15 +0530339
340 return 0;
341}
Deepak Sikri3bf3b282012-02-24 17:01:15 +0530342
Jisheng Zhang8503ff12015-05-20 22:33:13 +0800343static const struct dev_pm_ops dw_i2c_dev_pm_ops = {
344 .prepare = dw_i2c_prepare,
345 .complete = dw_i2c_complete,
346 SET_SYSTEM_SLEEP_PM_OPS(dw_i2c_suspend, dw_i2c_resume)
347 SET_RUNTIME_PM_OPS(dw_i2c_suspend, dw_i2c_resume, NULL)
348};
349
350#define DW_I2C_DEV_PMOPS (&dw_i2c_dev_pm_ops)
351#else
352#define DW_I2C_DEV_PMOPS NULL
353#endif
Mika Westerberg1fc2fe22014-05-15 17:37:23 +0300354
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100355/* work with hotplug and coldplug */
356MODULE_ALIAS("platform:i2c_designware");
357
358static struct platform_driver dw_i2c_driver = {
Wolfram Sangcccdcea2013-10-08 22:35:33 +0200359 .probe = dw_i2c_probe,
360 .remove = dw_i2c_remove,
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100361 .driver = {
362 .name = "i2c_designware",
Rob Herringaf711002011-11-08 14:43:47 -0600363 .of_match_table = of_match_ptr(dw_i2c_of_match),
Mika Westerbergb61b1412013-01-17 12:31:07 +0200364 .acpi_match_table = ACPI_PTR(dw_i2c_acpi_match),
Jisheng Zhang8503ff12015-05-20 22:33:13 +0800365 .pm = DW_I2C_DEV_PMOPS,
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100366 },
367};
368
369static int __init dw_i2c_init_driver(void)
370{
Wolfram Sangcccdcea2013-10-08 22:35:33 +0200371 return platform_driver_register(&dw_i2c_driver);
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100372}
Pratyush Anand10452282012-02-29 12:27:46 +0530373subsys_initcall(dw_i2c_init_driver);
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100374
375static void __exit dw_i2c_exit_driver(void)
376{
377 platform_driver_unregister(&dw_i2c_driver);
378}
379module_exit(dw_i2c_exit_driver);
380
381MODULE_AUTHOR("Baruch Siach <baruch@tkos.co.il>");
382MODULE_DESCRIPTION("Synopsys DesignWare I2C bus adapter");
383MODULE_LICENSE("GPL");