Merge branch 'fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs
[linux-block.git] / drivers / i2c / busses / i2c-designware-platdrv.c
CommitLineData
15c566fc 1// SPDX-License-Identifier: GPL-2.0-or-later
2373f6b9 2/*
5b6d721b 3 * Synopsys DesignWare I2C adapter driver.
2373f6b9
DB
4 *
5 * Based on the TI DAVINCI I2C adapter driver.
6 *
7 * Copyright (C) 2006 Texas Instruments.
8 * Copyright (C) 2007 MontaVista Software Inc.
9 * Copyright (C) 2009 Provigent Ltd.
2373f6b9 10 */
e393f674
LO
11#include <linux/acpi.h>
12#include <linux/clk-provider.h>
13#include <linux/clk.h>
2373f6b9 14#include <linux/delay.h>
56d4b8a2 15#include <linux/dmi.h>
2373f6b9 16#include <linux/err.h>
e393f674
LO
17#include <linux/errno.h>
18#include <linux/i2c.h>
2373f6b9 19#include <linux/interrupt.h>
e393f674
LO
20#include <linux/io.h>
21#include <linux/kernel.h>
22#include <linux/module.h>
9803f868 23#include <linux/of.h>
e393f674 24#include <linux/platform_data/i2c-designware.h>
2373f6b9 25#include <linux/platform_device.h>
3bf3b289 26#include <linux/pm.h>
7272194e 27#include <linux/pm_runtime.h>
4c5301ab 28#include <linux/property.h>
ab809fd8 29#include <linux/reset.h>
e393f674 30#include <linux/sched.h>
2373f6b9 31#include <linux/slab.h>
02e45646 32#include <linux/suspend.h>
e393f674 33
2373f6b9
DB
34#include "i2c-designware-core.h"
35
1d31b58f
DB
36static u32 i2c_dw_get_clk_rate_khz(struct dw_i2c_dev *dev)
37{
38 return clk_get_rate(dev->clk)/1000;
39}
2373f6b9 40
b61b1415 41#ifdef CONFIG_ACPI
56d4b8a2
MW
42/*
43 * The HCNT/LCNT information coming from ACPI should be the most accurate
44 * for given platform. However, some systems get it wrong. On such systems
45 * we get better results by calculating those based on the input clock.
46 */
47static const struct dmi_system_id dw_i2c_no_acpi_params[] = {
48 {
49 .ident = "Dell Inspiron 7348",
50 .matches = {
51 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
52 DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron 7348"),
53 },
54 },
55 { }
56};
57
57cd1e30
MW
58static 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
56d4b8a2
MW
65 if (dmi_check_system(dw_i2c_no_acpi_params))
66 return;
67
57cd1e30
MW
68 if (ACPI_FAILURE(acpi_evaluate_object(handle, method, NULL, &buf)))
69 return;
70
71 obj = (union acpi_object *)buf.pointer;
72 if (obj->type == ACPI_TYPE_PACKAGE && obj->package.count == 3) {
73 const union acpi_object *objs = obj->package.elements;
74
75 *hcnt = (u16)objs[0].integer.value;
76 *lcnt = (u16)objs[1].integer.value;
bd698d24 77 *sda_hold = (u32)objs[2].integer.value;
57cd1e30
MW
78 }
79
80 kfree(buf.pointer);
81}
82
b61b1415
MW
83static int dw_i2c_acpi_configure(struct platform_device *pdev)
84{
85 struct dw_i2c_dev *dev = platform_get_drvdata(pdev);
e3ea52b5 86 struct i2c_timings *t = &dev->timings;
ad258fb9 87 u32 ss_ht = 0, fp_ht = 0, hs_ht = 0, fs_ht = 0;
a3d411fb 88 acpi_handle handle = ACPI_HANDLE(&pdev->dev);
2d244c81 89 const struct acpi_device_id *id;
a3d411fb
HG
90 struct acpi_device *adev;
91 const char *uid;
b61b1415 92
b61b1415 93 dev->adapter.nr = -1;
b61b1415
MW
94 dev->tx_fifo_depth = 32;
95 dev->rx_fifo_depth = 32;
57cd1e30
MW
96
97 /*
bd698d24 98 * Try to get SDA hold time and *CNT values from an ACPI method for
99 * selected speed modes.
57cd1e30 100 */
9d640843
AB
101 dw_i2c_acpi_params(pdev, "SSCN", &dev->ss_hcnt, &dev->ss_lcnt, &ss_ht);
102 dw_i2c_acpi_params(pdev, "FPCN", &dev->fp_hcnt, &dev->fp_lcnt, &fp_ht);
103 dw_i2c_acpi_params(pdev, "HSCN", &dev->hs_hcnt, &dev->hs_lcnt, &hs_ht);
104 dw_i2c_acpi_params(pdev, "FMCN", &dev->fs_hcnt, &dev->fs_lcnt, &fs_ht);
105
e3ea52b5 106 switch (t->bus_freq_hz) {
bd698d24 107 case 100000:
9d640843 108 dev->sda_hold_time = ss_ht;
bd698d24 109 break;
110 case 1000000:
9d640843 111 dev->sda_hold_time = fp_ht;
bd698d24 112 break;
113 case 3400000:
9d640843 114 dev->sda_hold_time = hs_ht;
bd698d24 115 break;
116 case 400000:
117 default:
9d640843 118 dev->sda_hold_time = fs_ht;
bd698d24 119 break;
120 }
57cd1e30 121
2d244c81
XY
122 id = acpi_match_device(pdev->dev.driver->acpi_match_table, &pdev->dev);
123 if (id && id->driver_data)
86524e54 124 dev->flags |= (u32)id->driver_data;
2d244c81 125
a3d411fb
HG
126 if (acpi_bus_get_device(handle, &adev))
127 return -ENODEV;
128
129 /*
130 * Cherrytrail I2C7 gets used for the PMIC which gets accessed
131 * through ACPI opregions during late suspend / early resume
132 * disable pm for it.
133 */
134 uid = adev->pnp.unique_id;
135 if ((dev->flags & MODEL_CHERRYTRAIL) && !strcmp(uid, "7"))
136 dev->pm_disabled = true;
137
b61b1415
MW
138 return 0;
139}
140
141static const struct acpi_device_id dw_i2c_acpi_match[] = {
142 { "INT33C2", 0 },
143 { "INT33C3", 0 },
25b3dfc8
MW
144 { "INT3432", 0 },
145 { "INT3433", 0 },
5a7e6bd8 146 { "80860F41", 0 },
fd476fa2 147 { "808622C1", MODEL_CHERRYTRAIL },
2d244c81 148 { "AMD0010", ACCESS_INTR_MASK },
e4e666ba 149 { "AMDI0010", ACCESS_INTR_MASK },
90708ce2 150 { "AMDI0510", 0 },
04a407f6 151 { "APMC0D0F", 0 },
58dd8abf
HG
152 { "HISI02A1", 0 },
153 { "HISI02A2", 0 },
b61b1415
MW
154 { }
155};
156MODULE_DEVICE_TABLE(acpi, dw_i2c_acpi_match);
157#else
158static inline int dw_i2c_acpi_configure(struct platform_device *pdev)
159{
160 return -ENODEV;
161}
162#endif
163
89a1e1bd
LO
164static void i2c_dw_configure_master(struct dw_i2c_dev *dev)
165{
e3ea52b5
AS
166 struct i2c_timings *t = &dev->timings;
167
5b6d721b
LO
168 dev->functionality = I2C_FUNC_10BIT_ADDR | DW_IC_DEFAULT_FUNCTIONALITY;
169
89a1e1bd
LO
170 dev->master_cfg = DW_IC_CON_MASTER | DW_IC_CON_SLAVE_DISABLE |
171 DW_IC_CON_RESTART_EN;
172
5b6d721b
LO
173 dev->mode = DW_IC_MASTER;
174
e3ea52b5 175 switch (t->bus_freq_hz) {
89a1e1bd
LO
176 case 100000:
177 dev->master_cfg |= DW_IC_CON_SPEED_STD;
178 break;
179 case 3400000:
180 dev->master_cfg |= DW_IC_CON_SPEED_HIGH;
181 break;
182 default:
183 dev->master_cfg |= DW_IC_CON_SPEED_FAST;
184 }
185}
186
5b6d721b
LO
187static void i2c_dw_configure_slave(struct dw_i2c_dev *dev)
188{
189 dev->functionality = I2C_FUNC_SLAVE | DW_IC_DEFAULT_FUNCTIONALITY;
190
191 dev->slave_cfg = DW_IC_CON_RX_FIFO_FULL_HLD_CTRL |
4e2d93de 192 DW_IC_CON_RESTART_EN | DW_IC_CON_STOP_DET_IFADDRESSED;
5b6d721b
LO
193
194 dev->mode = DW_IC_SLAVE;
b33af11d
SS
195}
196
8e598769
TH
197static void dw_i2c_set_fifo_size(struct dw_i2c_dev *dev, int id)
198{
199 u32 param, tx_fifo_depth, rx_fifo_depth;
200
201 /*
202 * Try to detect the FIFO depth if not set by interface driver,
203 * the depth could be from 2 to 256 from HW spec.
204 */
205 param = i2c_dw_read_comp_param(dev);
206 tx_fifo_depth = ((param >> 16) & 0xff) + 1;
207 rx_fifo_depth = ((param >> 8) & 0xff) + 1;
208 if (!dev->tx_fifo_depth) {
209 dev->tx_fifo_depth = tx_fifo_depth;
210 dev->rx_fifo_depth = rx_fifo_depth;
211 dev->adapter.nr = id;
212 } else if (tx_fifo_depth >= 2) {
213 dev->tx_fifo_depth = min_t(u32, dev->tx_fifo_depth,
214 tx_fifo_depth);
215 dev->rx_fifo_depth = min_t(u32, dev->rx_fifo_depth,
216 rx_fifo_depth);
217 }
218}
219
126dbc6b
RW
220static void dw_i2c_plat_pm_cleanup(struct dw_i2c_dev *dev)
221{
222 pm_runtime_disable(dev->dev);
223
224 if (dev->pm_disabled)
225 pm_runtime_put_noidle(dev->dev);
226}
227
6ad6fde3 228static int dw_i2c_plat_probe(struct platform_device *pdev)
2373f6b9 229{
4c5301ab 230 struct dw_i2c_platform_data *pdata = dev_get_platdata(&pdev->dev);
2373f6b9 231 struct i2c_adapter *adap;
e393f674 232 struct dw_i2c_dev *dev;
e3ea52b5
AS
233 struct i2c_timings *t;
234 u32 acpi_speed;
e393f674 235 struct resource *mem;
231d069f 236 int i, irq, ret;
4ce8e88f
CIK
237 static const int supported_speeds[] = {
238 0, 100000, 400000, 1000000, 3400000
239 };
2373f6b9 240
2373f6b9 241 irq = platform_get_irq(pdev, 0);
b20d3864
AB
242 if (irq < 0)
243 return irq;
2373f6b9 244
1cb715ca
AS
245 dev = devm_kzalloc(&pdev->dev, sizeof(struct dw_i2c_dev), GFP_KERNEL);
246 if (!dev)
247 return -ENOMEM;
2373f6b9 248
3cc2d009 249 mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1cb715ca
AS
250 dev->base = devm_ioremap_resource(&pdev->dev, mem);
251 if (IS_ERR(dev->base))
252 return PTR_ERR(dev->base);
2373f6b9 253
1cb715ca 254 dev->dev = &pdev->dev;
2373f6b9
DB
255 dev->irq = irq;
256 platform_set_drvdata(pdev, dev);
257
ab809fd8
ZG
258 dev->rst = devm_reset_control_get_optional_exclusive(&pdev->dev, NULL);
259 if (IS_ERR(dev->rst)) {
260 if (PTR_ERR(dev->rst) == -EPROBE_DEFER)
261 return -EPROBE_DEFER;
262 } else {
263 reset_control_deassert(dev->rst);
264 }
265
e3ea52b5
AS
266 t = &dev->timings;
267 if (pdata)
268 t->bus_freq_hz = pdata->i2c_scl_freq;
269 else
270 i2c_parse_fw_timings(&pdev->dev, t, false);
4c5301ab 271
10f8e7fb 272 acpi_speed = i2c_acpi_find_bus_speed(&pdev->dev);
231d069f
HG
273 /*
274 * Some DSTDs use a non standard speed, round down to the lowest
275 * standard speed.
276 */
277 for (i = 1; i < ARRAY_SIZE(supported_speeds); i++) {
278 if (acpi_speed < supported_speeds[i])
279 break;
280 }
281 acpi_speed = supported_speeds[i - 1];
282
973652db
JN
283 /*
284 * Find bus speed from the "clock-frequency" device property, ACPI
285 * or by using fast mode if neither is set.
286 */
e3ea52b5
AS
287 if (acpi_speed && t->bus_freq_hz)
288 t->bus_freq_hz = min(t->bus_freq_hz, acpi_speed);
289 else if (acpi_speed || t->bus_freq_hz)
290 t->bus_freq_hz = max(t->bus_freq_hz, acpi_speed);
973652db 291 else
e3ea52b5 292 t->bus_freq_hz = 400000;
10f8e7fb 293
4c5301ab
MW
294 if (has_acpi_companion(&pdev->dev))
295 dw_i2c_acpi_configure(pdev);
296
297 /*
d608c3d9 298 * Only standard mode at 100kHz, fast mode at 400kHz,
b6e67145 299 * fast mode plus at 1MHz and high speed mode at 3.4MHz are supported.
4c5301ab 300 */
e3ea52b5
AS
301 if (t->bus_freq_hz != 100000 && t->bus_freq_hz != 400000 &&
302 t->bus_freq_hz != 1000000 && t->bus_freq_hz != 3400000) {
d608c3d9 303 dev_err(&pdev->dev,
22acc37b 304 "%d Hz is unsupported, only 100kHz, 400kHz, 1MHz and 3.4MHz are supported\n",
e3ea52b5 305 t->bus_freq_hz);
e393f674 306 ret = -EINVAL;
ab809fd8 307 goto exit_reset;
9803f868
CR
308 }
309
e393f674
LO
310 ret = i2c_dw_probe_lock_support(dev);
311 if (ret)
ab809fd8 312 goto exit_reset;
894acb2f 313
5b6d721b
LO
314 if (i2c_detect_slave_mode(&pdev->dev))
315 i2c_dw_configure_slave(dev);
316 else
317 i2c_dw_configure_master(dev);
2fa8326b 318
925ddb24 319 dev->clk = devm_clk_get(&pdev->dev, NULL);
0326f9f8 320 if (!i2c_dw_prepare_clk(dev, true)) {
e3ea52b5
AS
321 u64 clk_khz;
322
b33af11d 323 dev->get_clk_rate_khz = i2c_dw_get_clk_rate_khz;
e3ea52b5 324 clk_khz = dev->get_clk_rate_khz(dev);
925ddb24 325
e3ea52b5
AS
326 if (!dev->sda_hold_time && t->sda_hold_ns)
327 dev->sda_hold_time =
328 div_u64(clk_khz * t->sda_hold_ns + 500000, 1000000);
925ddb24
MW
329 }
330
8e598769 331 dw_i2c_set_fifo_size(dev, pdev->id);
2373f6b9
DB
332
333 adap = &dev->adapter;
2373f6b9 334 adap->owner = THIS_MODULE;
70fba830 335 adap->class = I2C_CLASS_DEPRECATED;
8eb5c87a 336 ACPI_COMPANION_SET(&adap->dev, ACPI_COMPANION(&pdev->dev));
af71100c 337 adap->dev.of_node = pdev->dev.of_node;
2373f6b9 338
02e45646
RW
339 dev_pm_set_driver_flags(&pdev->dev,
340 DPM_FLAG_SMART_PREPARE |
341 DPM_FLAG_SMART_SUSPEND |
342 DPM_FLAG_LEAVE_SUSPENDED);
422cb781 343
126dbc6b
RW
344 /* The code below assumes runtime PM to be disabled. */
345 WARN_ON(pm_runtime_enabled(&pdev->dev));
346
347 pm_runtime_set_autosuspend_delay(&pdev->dev, 1000);
348 pm_runtime_use_autosuspend(&pdev->dev);
349 pm_runtime_set_active(&pdev->dev);
350
351 if (dev->pm_disabled)
352 pm_runtime_get_noresume(&pdev->dev);
353
354 pm_runtime_enable(&pdev->dev);
7272194e 355
5b6d721b
LO
356 if (dev->mode == DW_IC_SLAVE)
357 ret = i2c_dw_probe_slave(dev);
358 else
359 ret = i2c_dw_probe(dev);
360
e393f674 361 if (ret)
ab809fd8 362 goto exit_probe;
36d48fb5 363
e393f674 364 return ret;
ab809fd8
ZG
365
366exit_probe:
126dbc6b 367 dw_i2c_plat_pm_cleanup(dev);
ab809fd8
ZG
368exit_reset:
369 if (!IS_ERR_OR_NULL(dev->rst))
370 reset_control_assert(dev->rst);
e393f674 371 return ret;
2373f6b9
DB
372}
373
6ad6fde3 374static int dw_i2c_plat_remove(struct platform_device *pdev)
2373f6b9
DB
375{
376 struct dw_i2c_dev *dev = platform_get_drvdata(pdev);
2373f6b9 377
7272194e
MW
378 pm_runtime_get_sync(&pdev->dev);
379
2373f6b9 380 i2c_del_adapter(&dev->adapter);
2373f6b9 381
90312351 382 dev->disable(dev);
2373f6b9 383
edfc3901
MW
384 pm_runtime_dont_use_autosuspend(&pdev->dev);
385 pm_runtime_put_sync(&pdev->dev);
126dbc6b
RW
386 dw_i2c_plat_pm_cleanup(dev);
387
ab809fd8
ZG
388 if (!IS_ERR_OR_NULL(dev->rst))
389 reset_control_assert(dev->rst);
7272194e 390
086cb4af
HG
391 i2c_dw_remove_lock_support(dev);
392
2373f6b9
DB
393 return 0;
394}
395
af71100c
RH
396#ifdef CONFIG_OF
397static const struct of_device_id dw_i2c_of_match[] = {
398 { .compatible = "snps,designware-i2c", },
399 {},
400};
401MODULE_DEVICE_TABLE(of, dw_i2c_of_match);
402#endif
403
8503ff16 404#ifdef CONFIG_PM_SLEEP
6ad6fde3 405static int dw_i2c_plat_prepare(struct device *dev)
8503ff16 406{
422cb781
RW
407 /*
408 * If the ACPI companion device object is present for this device, it
409 * may be accessed during suspend and resume of other devices via I2C
410 * operation regions, so tell the PM core and middle layers to avoid
411 * skipping system suspend/resume callbacks for it in that case.
412 */
413 return !has_acpi_companion(dev);
8503ff16
JZ
414}
415
6ad6fde3 416static void dw_i2c_plat_complete(struct device *dev)
8503ff16 417{
02e45646
RW
418 /*
419 * The device can only be in runtime suspend at this point if it has not
420 * been resumed throughout the ending system suspend/resume cycle, so if
421 * the platform firmware might mess up with it, request the runtime PM
422 * framework to resume it.
423 */
424 if (pm_runtime_suspended(dev) && pm_resume_via_firmware())
8503ff16
JZ
425 pm_request_resume(dev);
426}
427#else
319d7f05
JN
428#define dw_i2c_plat_prepare NULL
429#define dw_i2c_plat_complete NULL
8503ff16
JZ
430#endif
431
1fc2fe20 432#ifdef CONFIG_PM
54152772 433static int dw_i2c_plat_suspend(struct device *dev)
3bf3b289 434{
9242e72a 435 struct dw_i2c_dev *i_dev = dev_get_drvdata(dev);
3bf3b289 436
9d9a152e
HG
437 if (i_dev->pm_disabled)
438 return 0;
439
90312351 440 i_dev->disable(i_dev);
0326f9f8 441 i2c_dw_prepare_clk(i_dev, false);
3bf3b289
DS
442
443 return 0;
444}
445
6ad6fde3 446static int dw_i2c_plat_resume(struct device *dev)
3bf3b289 447{
9242e72a 448 struct dw_i2c_dev *i_dev = dev_get_drvdata(dev);
3bf3b289 449
9d9a152e
HG
450 if (!i_dev->pm_disabled)
451 i2c_dw_prepare_clk(i_dev, true);
452
90312351 453 i_dev->init(i_dev);
3bf3b289 454
54152772 455 return 0;
a23318fe 456}
a23318fe 457
8503ff16 458static const struct dev_pm_ops dw_i2c_dev_pm_ops = {
6ad6fde3
JN
459 .prepare = dw_i2c_plat_prepare,
460 .complete = dw_i2c_plat_complete,
54152772
RW
461 SET_LATE_SYSTEM_SLEEP_PM_OPS(dw_i2c_plat_suspend, dw_i2c_plat_resume)
462 SET_RUNTIME_PM_OPS(dw_i2c_plat_suspend, dw_i2c_plat_resume, NULL)
8503ff16
JZ
463};
464
465#define DW_I2C_DEV_PMOPS (&dw_i2c_dev_pm_ops)
466#else
467#define DW_I2C_DEV_PMOPS NULL
468#endif
1fc2fe20 469
e393f674 470/* Work with hotplug and coldplug */
2373f6b9
DB
471MODULE_ALIAS("platform:i2c_designware");
472
473static struct platform_driver dw_i2c_driver = {
6ad6fde3
JN
474 .probe = dw_i2c_plat_probe,
475 .remove = dw_i2c_plat_remove,
2373f6b9
DB
476 .driver = {
477 .name = "i2c_designware",
af71100c 478 .of_match_table = of_match_ptr(dw_i2c_of_match),
b61b1415 479 .acpi_match_table = ACPI_PTR(dw_i2c_acpi_match),
8503ff16 480 .pm = DW_I2C_DEV_PMOPS,
2373f6b9
DB
481 },
482};
483
484static int __init dw_i2c_init_driver(void)
485{
cccdcea1 486 return platform_driver_register(&dw_i2c_driver);
2373f6b9 487}
10452280 488subsys_initcall(dw_i2c_init_driver);
2373f6b9
DB
489
490static void __exit dw_i2c_exit_driver(void)
491{
492 platform_driver_unregister(&dw_i2c_driver);
493}
494module_exit(dw_i2c_exit_driver);
495
496MODULE_AUTHOR("Baruch Siach <baruch@tkos.co.il>");
497MODULE_DESCRIPTION("Synopsys DesignWare I2C bus adapter");
498MODULE_LICENSE("GPL");