1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Synopsys DesignWare I2C adapter driver.
5 * Based on the TI DAVINCI I2C adapter driver.
7 * Copyright (C) 2006 Texas Instruments.
8 * Copyright (C) 2007 MontaVista Software Inc.
9 * Copyright (C) 2009 Provigent Ltd.
11 #include <linux/acpi.h>
12 #include <linux/clk-provider.h>
13 #include <linux/clk.h>
14 #include <linux/delay.h>
15 #include <linux/dmi.h>
16 #include <linux/err.h>
17 #include <linux/errno.h>
18 #include <linux/i2c.h>
19 #include <linux/interrupt.h>
21 #include <linux/kernel.h>
22 #include <linux/module.h>
24 #include <linux/platform_data/i2c-designware.h>
25 #include <linux/platform_device.h>
27 #include <linux/pm_runtime.h>
28 #include <linux/property.h>
29 #include <linux/reset.h>
30 #include <linux/sched.h>
31 #include <linux/slab.h>
32 #include <linux/suspend.h>
34 #include "i2c-designware-core.h"
36 static u32
i2c_dw_get_clk_rate_khz(struct dw_i2c_dev
*dev
)
38 return clk_get_rate(dev
->clk
)/1000;
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.
47 static const struct dmi_system_id dw_i2c_no_acpi_params
[] = {
49 .ident
= "Dell Inspiron 7348",
51 DMI_MATCH(DMI_SYS_VENDOR
, "Dell Inc."),
52 DMI_MATCH(DMI_PRODUCT_NAME
, "Inspiron 7348"),
58 static void dw_i2c_acpi_params(struct platform_device
*pdev
, char method
[],
59 u16
*hcnt
, u16
*lcnt
, u32
*sda_hold
)
61 struct acpi_buffer buf
= { ACPI_ALLOCATE_BUFFER
};
62 acpi_handle handle
= ACPI_HANDLE(&pdev
->dev
);
63 union acpi_object
*obj
;
65 if (dmi_check_system(dw_i2c_no_acpi_params
))
68 if (ACPI_FAILURE(acpi_evaluate_object(handle
, method
, NULL
, &buf
)))
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
;
75 *hcnt
= (u16
)objs
[0].integer
.value
;
76 *lcnt
= (u16
)objs
[1].integer
.value
;
77 *sda_hold
= (u32
)objs
[2].integer
.value
;
83 static int dw_i2c_acpi_configure(struct platform_device
*pdev
)
85 struct dw_i2c_dev
*dev
= platform_get_drvdata(pdev
);
86 struct i2c_timings
*t
= &dev
->timings
;
87 u32 ss_ht
= 0, fp_ht
= 0, hs_ht
= 0, fs_ht
= 0;
88 acpi_handle handle
= ACPI_HANDLE(&pdev
->dev
);
89 const struct acpi_device_id
*id
;
90 struct acpi_device
*adev
;
94 dev
->tx_fifo_depth
= 32;
95 dev
->rx_fifo_depth
= 32;
98 * Try to get SDA hold time and *CNT values from an ACPI method for
99 * selected speed modes.
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
);
106 switch (t
->bus_freq_hz
) {
108 dev
->sda_hold_time
= ss_ht
;
111 dev
->sda_hold_time
= fp_ht
;
114 dev
->sda_hold_time
= hs_ht
;
118 dev
->sda_hold_time
= fs_ht
;
122 id
= acpi_match_device(pdev
->dev
.driver
->acpi_match_table
, &pdev
->dev
);
123 if (id
&& id
->driver_data
)
124 dev
->flags
|= (u32
)id
->driver_data
;
126 if (acpi_bus_get_device(handle
, &adev
))
130 * Cherrytrail I2C7 gets used for the PMIC which gets accessed
131 * through ACPI opregions during late suspend / early resume
134 uid
= adev
->pnp
.unique_id
;
135 if ((dev
->flags
& MODEL_CHERRYTRAIL
) && !strcmp(uid
, "7"))
136 dev
->pm_disabled
= true;
141 static const struct acpi_device_id dw_i2c_acpi_match
[] = {
147 { "808622C1", MODEL_CHERRYTRAIL
},
148 { "AMD0010", ACCESS_INTR_MASK
},
149 { "AMDI0010", ACCESS_INTR_MASK
},
156 MODULE_DEVICE_TABLE(acpi
, dw_i2c_acpi_match
);
158 static inline int dw_i2c_acpi_configure(struct platform_device
*pdev
)
164 static void i2c_dw_configure_master(struct dw_i2c_dev
*dev
)
166 struct i2c_timings
*t
= &dev
->timings
;
168 dev
->functionality
= I2C_FUNC_10BIT_ADDR
| DW_IC_DEFAULT_FUNCTIONALITY
;
170 dev
->master_cfg
= DW_IC_CON_MASTER
| DW_IC_CON_SLAVE_DISABLE
|
171 DW_IC_CON_RESTART_EN
;
173 dev
->mode
= DW_IC_MASTER
;
175 switch (t
->bus_freq_hz
) {
177 dev
->master_cfg
|= DW_IC_CON_SPEED_STD
;
180 dev
->master_cfg
|= DW_IC_CON_SPEED_HIGH
;
183 dev
->master_cfg
|= DW_IC_CON_SPEED_FAST
;
187 static void i2c_dw_configure_slave(struct dw_i2c_dev
*dev
)
189 dev
->functionality
= I2C_FUNC_SLAVE
| DW_IC_DEFAULT_FUNCTIONALITY
;
191 dev
->slave_cfg
= DW_IC_CON_RX_FIFO_FULL_HLD_CTRL
|
192 DW_IC_CON_RESTART_EN
| DW_IC_CON_STOP_DET_IFADDRESSED
;
194 dev
->mode
= DW_IC_SLAVE
;
197 static void dw_i2c_set_fifo_size(struct dw_i2c_dev
*dev
, int id
)
199 u32 param
, tx_fifo_depth
, rx_fifo_depth
;
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.
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
,
215 dev
->rx_fifo_depth
= min_t(u32
, dev
->rx_fifo_depth
,
220 static void dw_i2c_plat_pm_cleanup(struct dw_i2c_dev
*dev
)
222 pm_runtime_disable(dev
->dev
);
224 if (dev
->pm_disabled
)
225 pm_runtime_put_noidle(dev
->dev
);
228 static int dw_i2c_plat_probe(struct platform_device
*pdev
)
230 struct dw_i2c_platform_data
*pdata
= dev_get_platdata(&pdev
->dev
);
231 struct i2c_adapter
*adap
;
232 struct dw_i2c_dev
*dev
;
233 struct i2c_timings
*t
;
235 struct resource
*mem
;
237 static const int supported_speeds
[] = {
238 0, 100000, 400000, 1000000, 3400000
241 irq
= platform_get_irq(pdev
, 0);
245 dev
= devm_kzalloc(&pdev
->dev
, sizeof(struct dw_i2c_dev
), GFP_KERNEL
);
249 mem
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
250 dev
->base
= devm_ioremap_resource(&pdev
->dev
, mem
);
251 if (IS_ERR(dev
->base
))
252 return PTR_ERR(dev
->base
);
254 dev
->dev
= &pdev
->dev
;
256 platform_set_drvdata(pdev
, dev
);
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
;
263 reset_control_deassert(dev
->rst
);
268 t
->bus_freq_hz
= pdata
->i2c_scl_freq
;
270 i2c_parse_fw_timings(&pdev
->dev
, t
, false);
272 acpi_speed
= i2c_acpi_find_bus_speed(&pdev
->dev
);
274 * Some DSTDs use a non standard speed, round down to the lowest
277 for (i
= 1; i
< ARRAY_SIZE(supported_speeds
); i
++) {
278 if (acpi_speed
< supported_speeds
[i
])
281 acpi_speed
= supported_speeds
[i
- 1];
284 * Find bus speed from the "clock-frequency" device property, ACPI
285 * or by using fast mode if neither is set.
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
);
292 t
->bus_freq_hz
= 400000;
294 if (has_acpi_companion(&pdev
->dev
))
295 dw_i2c_acpi_configure(pdev
);
298 * Only standard mode at 100kHz, fast mode at 400kHz,
299 * fast mode plus at 1MHz and high speed mode at 3.4MHz are supported.
301 if (t
->bus_freq_hz
!= 100000 && t
->bus_freq_hz
!= 400000 &&
302 t
->bus_freq_hz
!= 1000000 && t
->bus_freq_hz
!= 3400000) {
304 "%d Hz is unsupported, only 100kHz, 400kHz, 1MHz and 3.4MHz are supported\n",
310 ret
= i2c_dw_probe_lock_support(dev
);
314 if (i2c_detect_slave_mode(&pdev
->dev
))
315 i2c_dw_configure_slave(dev
);
317 i2c_dw_configure_master(dev
);
319 dev
->clk
= devm_clk_get(&pdev
->dev
, NULL
);
320 if (!i2c_dw_prepare_clk(dev
, true)) {
323 dev
->get_clk_rate_khz
= i2c_dw_get_clk_rate_khz
;
324 clk_khz
= dev
->get_clk_rate_khz(dev
);
326 if (!dev
->sda_hold_time
&& t
->sda_hold_ns
)
328 div_u64(clk_khz
* t
->sda_hold_ns
+ 500000, 1000000);
331 dw_i2c_set_fifo_size(dev
, pdev
->id
);
333 adap
= &dev
->adapter
;
334 adap
->owner
= THIS_MODULE
;
335 adap
->class = I2C_CLASS_DEPRECATED
;
336 ACPI_COMPANION_SET(&adap
->dev
, ACPI_COMPANION(&pdev
->dev
));
337 adap
->dev
.of_node
= pdev
->dev
.of_node
;
339 dev_pm_set_driver_flags(&pdev
->dev
,
340 DPM_FLAG_SMART_PREPARE
|
341 DPM_FLAG_SMART_SUSPEND
|
342 DPM_FLAG_LEAVE_SUSPENDED
);
344 /* The code below assumes runtime PM to be disabled. */
345 WARN_ON(pm_runtime_enabled(&pdev
->dev
));
347 pm_runtime_set_autosuspend_delay(&pdev
->dev
, 1000);
348 pm_runtime_use_autosuspend(&pdev
->dev
);
349 pm_runtime_set_active(&pdev
->dev
);
351 if (dev
->pm_disabled
)
352 pm_runtime_get_noresume(&pdev
->dev
);
354 pm_runtime_enable(&pdev
->dev
);
356 if (dev
->mode
== DW_IC_SLAVE
)
357 ret
= i2c_dw_probe_slave(dev
);
359 ret
= i2c_dw_probe(dev
);
367 dw_i2c_plat_pm_cleanup(dev
);
369 if (!IS_ERR_OR_NULL(dev
->rst
))
370 reset_control_assert(dev
->rst
);
374 static int dw_i2c_plat_remove(struct platform_device
*pdev
)
376 struct dw_i2c_dev
*dev
= platform_get_drvdata(pdev
);
378 pm_runtime_get_sync(&pdev
->dev
);
380 i2c_del_adapter(&dev
->adapter
);
384 pm_runtime_dont_use_autosuspend(&pdev
->dev
);
385 pm_runtime_put_sync(&pdev
->dev
);
386 dw_i2c_plat_pm_cleanup(dev
);
388 if (!IS_ERR_OR_NULL(dev
->rst
))
389 reset_control_assert(dev
->rst
);
391 i2c_dw_remove_lock_support(dev
);
397 static const struct of_device_id dw_i2c_of_match
[] = {
398 { .compatible
= "snps,designware-i2c", },
401 MODULE_DEVICE_TABLE(of
, dw_i2c_of_match
);
404 #ifdef CONFIG_PM_SLEEP
405 static int dw_i2c_plat_prepare(struct device
*dev
)
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.
413 return !has_acpi_companion(dev
);
416 static void dw_i2c_plat_complete(struct device
*dev
)
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.
424 if (pm_runtime_suspended(dev
) && pm_resume_via_firmware())
425 pm_request_resume(dev
);
428 #define dw_i2c_plat_prepare NULL
429 #define dw_i2c_plat_complete NULL
433 static int dw_i2c_plat_suspend(struct device
*dev
)
435 struct dw_i2c_dev
*i_dev
= dev_get_drvdata(dev
);
437 if (i_dev
->pm_disabled
)
440 i_dev
->disable(i_dev
);
441 i2c_dw_prepare_clk(i_dev
, false);
446 static int dw_i2c_plat_resume(struct device
*dev
)
448 struct dw_i2c_dev
*i_dev
= dev_get_drvdata(dev
);
450 if (!i_dev
->pm_disabled
)
451 i2c_dw_prepare_clk(i_dev
, true);
458 static const struct dev_pm_ops dw_i2c_dev_pm_ops
= {
459 .prepare
= dw_i2c_plat_prepare
,
460 .complete
= dw_i2c_plat_complete
,
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
)
465 #define DW_I2C_DEV_PMOPS (&dw_i2c_dev_pm_ops)
467 #define DW_I2C_DEV_PMOPS NULL
470 /* Work with hotplug and coldplug */
471 MODULE_ALIAS("platform:i2c_designware");
473 static struct platform_driver dw_i2c_driver
= {
474 .probe
= dw_i2c_plat_probe
,
475 .remove
= dw_i2c_plat_remove
,
477 .name
= "i2c_designware",
478 .of_match_table
= of_match_ptr(dw_i2c_of_match
),
479 .acpi_match_table
= ACPI_PTR(dw_i2c_acpi_match
),
480 .pm
= DW_I2C_DEV_PMOPS
,
484 static int __init
dw_i2c_init_driver(void)
486 return platform_driver_register(&dw_i2c_driver
);
488 subsys_initcall(dw_i2c_init_driver
);
490 static void __exit
dw_i2c_exit_driver(void)
492 platform_driver_unregister(&dw_i2c_driver
);
494 module_exit(dw_i2c_exit_driver
);
496 MODULE_AUTHOR("Baruch Siach <baruch@tkos.co.il>");
497 MODULE_DESCRIPTION("Synopsys DesignWare I2C bus adapter");
498 MODULE_LICENSE("GPL");