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/mfd/syscon.h>
23 #include <linux/module.h>
25 #include <linux/platform_device.h>
27 #include <linux/pm_runtime.h>
28 #include <linux/property.h>
29 #include <linux/regmap.h>
30 #include <linux/reset.h>
31 #include <linux/sched.h>
32 #include <linux/slab.h>
33 #include <linux/suspend.h>
35 #include "i2c-designware-core.h"
37 static u32 i2c_dw_get_clk_rate_khz(struct dw_i2c_dev *dev)
39 return clk_get_rate(dev->clk)/1000;
43 static const struct acpi_device_id dw_i2c_acpi_match[] = {
48 { "80860F41", ACCESS_NO_IRQ_SUSPEND },
49 { "808622C1", ACCESS_NO_IRQ_SUSPEND },
50 { "AMD0010", ACCESS_INTR_MASK },
51 { "AMDI0010", ACCESS_INTR_MASK },
57 { "HYGO0010", ACCESS_INTR_MASK },
60 MODULE_DEVICE_TABLE(acpi, dw_i2c_acpi_match);
64 #define BT1_I2C_CTL 0x100
65 #define BT1_I2C_CTL_ADDR_MASK GENMASK(7, 0)
66 #define BT1_I2C_CTL_WR BIT(8)
67 #define BT1_I2C_CTL_GO BIT(31)
68 #define BT1_I2C_DI 0x104
69 #define BT1_I2C_DO 0x108
71 static int bt1_i2c_read(void *context, unsigned int reg, unsigned int *val)
73 struct dw_i2c_dev *dev = context;
77 * Note these methods shouldn't ever fail because the system controller
78 * registers are memory mapped. We check the return value just in case.
80 ret = regmap_write(dev->sysmap, BT1_I2C_CTL,
81 BT1_I2C_CTL_GO | (reg & BT1_I2C_CTL_ADDR_MASK));
85 return regmap_read(dev->sysmap, BT1_I2C_DO, val);
88 static int bt1_i2c_write(void *context, unsigned int reg, unsigned int val)
90 struct dw_i2c_dev *dev = context;
93 ret = regmap_write(dev->sysmap, BT1_I2C_DI, val);
97 return regmap_write(dev->sysmap, BT1_I2C_CTL,
98 BT1_I2C_CTL_GO | BT1_I2C_CTL_WR | (reg & BT1_I2C_CTL_ADDR_MASK));
101 static struct regmap_config bt1_i2c_cfg = {
106 .reg_read = bt1_i2c_read,
107 .reg_write = bt1_i2c_write,
108 .max_register = DW_IC_COMP_TYPE,
111 static int bt1_i2c_request_regs(struct dw_i2c_dev *dev)
113 dev->sysmap = syscon_node_to_regmap(dev->dev->of_node->parent);
114 if (IS_ERR(dev->sysmap))
115 return PTR_ERR(dev->sysmap);
117 dev->map = devm_regmap_init(dev->dev, NULL, dev, &bt1_i2c_cfg);
118 return PTR_ERR_OR_ZERO(dev->map);
121 #define MSCC_ICPU_CFG_TWI_DELAY 0x0
122 #define MSCC_ICPU_CFG_TWI_DELAY_ENABLE BIT(0)
123 #define MSCC_ICPU_CFG_TWI_SPIKE_FILTER 0x4
125 static int mscc_twi_set_sda_hold_time(struct dw_i2c_dev *dev)
127 writel((dev->sda_hold_time << 1) | MSCC_ICPU_CFG_TWI_DELAY_ENABLE,
128 dev->ext + MSCC_ICPU_CFG_TWI_DELAY);
133 static int dw_i2c_of_configure(struct platform_device *pdev)
135 struct dw_i2c_dev *dev = platform_get_drvdata(pdev);
137 switch (dev->flags & MODEL_MASK) {
138 case MODEL_MSCC_OCELOT:
139 dev->ext = devm_platform_ioremap_resource(pdev, 1);
140 if (!IS_ERR(dev->ext))
141 dev->set_sda_hold_time = mscc_twi_set_sda_hold_time;
150 static const struct of_device_id dw_i2c_of_match[] = {
151 { .compatible = "snps,designware-i2c", },
152 { .compatible = "mscc,ocelot-i2c", .data = (void *)MODEL_MSCC_OCELOT },
153 { .compatible = "baikal,bt1-sys-i2c", .data = (void *)MODEL_BAIKAL_BT1 },
156 MODULE_DEVICE_TABLE(of, dw_i2c_of_match);
158 static int bt1_i2c_request_regs(struct dw_i2c_dev *dev)
163 static inline int dw_i2c_of_configure(struct platform_device *pdev)
169 static void dw_i2c_plat_pm_cleanup(struct dw_i2c_dev *dev)
171 pm_runtime_disable(dev->dev);
173 if (dev->shared_with_punit)
174 pm_runtime_put_noidle(dev->dev);
177 static int dw_i2c_plat_request_regs(struct dw_i2c_dev *dev)
179 struct platform_device *pdev = to_platform_device(dev->dev);
182 switch (dev->flags & MODEL_MASK) {
183 case MODEL_BAIKAL_BT1:
184 ret = bt1_i2c_request_regs(dev);
187 dev->base = devm_platform_ioremap_resource(pdev, 0);
188 ret = PTR_ERR_OR_ZERO(dev->base);
195 static const struct dmi_system_id dw_i2c_hwmon_class_dmi[] = {
197 .ident = "Qtechnology QT5222",
199 DMI_MATCH(DMI_SYS_VENDOR, "Qtechnology"),
200 DMI_MATCH(DMI_PRODUCT_NAME, "QT5222"),
203 { } /* terminate list */
206 static int dw_i2c_plat_probe(struct platform_device *pdev)
208 struct i2c_adapter *adap;
209 struct dw_i2c_dev *dev;
210 struct i2c_timings *t;
213 irq = platform_get_irq(pdev, 0);
217 dev = devm_kzalloc(&pdev->dev, sizeof(struct dw_i2c_dev), GFP_KERNEL);
221 dev->flags = (uintptr_t)device_get_match_data(&pdev->dev);
222 dev->dev = &pdev->dev;
224 platform_set_drvdata(pdev, dev);
226 ret = dw_i2c_plat_request_regs(dev);
230 dev->rst = devm_reset_control_get_optional_exclusive(&pdev->dev, NULL);
231 if (IS_ERR(dev->rst))
232 return PTR_ERR(dev->rst);
234 reset_control_deassert(dev->rst);
237 i2c_parse_fw_timings(&pdev->dev, t, false);
239 i2c_dw_adjust_bus_speed(dev);
241 if (pdev->dev.of_node)
242 dw_i2c_of_configure(pdev);
244 if (has_acpi_companion(&pdev->dev))
245 i2c_dw_acpi_configure(&pdev->dev);
247 ret = i2c_dw_validate_speed(dev);
251 ret = i2c_dw_probe_lock_support(dev);
255 i2c_dw_configure(dev);
257 /* Optional interface clock */
258 dev->pclk = devm_clk_get_optional(&pdev->dev, "pclk");
259 if (IS_ERR(dev->pclk)) {
260 ret = PTR_ERR(dev->pclk);
264 dev->clk = devm_clk_get(&pdev->dev, NULL);
265 if (!i2c_dw_prepare_clk(dev, true)) {
268 dev->get_clk_rate_khz = i2c_dw_get_clk_rate_khz;
269 clk_khz = dev->get_clk_rate_khz(dev);
271 if (!dev->sda_hold_time && t->sda_hold_ns)
273 div_u64(clk_khz * t->sda_hold_ns + 500000, 1000000);
276 adap = &dev->adapter;
277 adap->owner = THIS_MODULE;
278 adap->class = dmi_check_system(dw_i2c_hwmon_class_dmi) ?
279 I2C_CLASS_HWMON : I2C_CLASS_DEPRECATED;
280 ACPI_COMPANION_SET(&adap->dev, ACPI_COMPANION(&pdev->dev));
281 adap->dev.of_node = pdev->dev.of_node;
284 if (dev->flags & ACCESS_NO_IRQ_SUSPEND) {
285 dev_pm_set_driver_flags(&pdev->dev,
286 DPM_FLAG_SMART_PREPARE |
287 DPM_FLAG_MAY_SKIP_RESUME);
289 dev_pm_set_driver_flags(&pdev->dev,
290 DPM_FLAG_SMART_PREPARE |
291 DPM_FLAG_SMART_SUSPEND |
292 DPM_FLAG_MAY_SKIP_RESUME);
295 /* The code below assumes runtime PM to be disabled. */
296 WARN_ON(pm_runtime_enabled(&pdev->dev));
298 pm_runtime_set_autosuspend_delay(&pdev->dev, 1000);
299 pm_runtime_use_autosuspend(&pdev->dev);
300 pm_runtime_set_active(&pdev->dev);
302 if (dev->shared_with_punit)
303 pm_runtime_get_noresume(&pdev->dev);
305 pm_runtime_enable(&pdev->dev);
307 ret = i2c_dw_probe(dev);
314 dw_i2c_plat_pm_cleanup(dev);
316 reset_control_assert(dev->rst);
320 static int dw_i2c_plat_remove(struct platform_device *pdev)
322 struct dw_i2c_dev *dev = platform_get_drvdata(pdev);
324 pm_runtime_get_sync(&pdev->dev);
326 i2c_del_adapter(&dev->adapter);
330 pm_runtime_dont_use_autosuspend(&pdev->dev);
331 pm_runtime_put_sync(&pdev->dev);
332 dw_i2c_plat_pm_cleanup(dev);
334 reset_control_assert(dev->rst);
339 #ifdef CONFIG_PM_SLEEP
340 static int dw_i2c_plat_prepare(struct device *dev)
343 * If the ACPI companion device object is present for this device, it
344 * may be accessed during suspend and resume of other devices via I2C
345 * operation regions, so tell the PM core and middle layers to avoid
346 * skipping system suspend/resume callbacks for it in that case.
348 return !has_acpi_companion(dev);
351 static void dw_i2c_plat_complete(struct device *dev)
354 * The device can only be in runtime suspend at this point if it has not
355 * been resumed throughout the ending system suspend/resume cycle, so if
356 * the platform firmware might mess up with it, request the runtime PM
357 * framework to resume it.
359 if (pm_runtime_suspended(dev) && pm_resume_via_firmware())
360 pm_request_resume(dev);
363 #define dw_i2c_plat_prepare NULL
364 #define dw_i2c_plat_complete NULL
368 static int dw_i2c_plat_suspend(struct device *dev)
370 struct dw_i2c_dev *i_dev = dev_get_drvdata(dev);
372 i_dev->suspended = true;
374 if (i_dev->shared_with_punit)
377 i_dev->disable(i_dev);
378 i2c_dw_prepare_clk(i_dev, false);
383 static int dw_i2c_plat_resume(struct device *dev)
385 struct dw_i2c_dev *i_dev = dev_get_drvdata(dev);
387 if (!i_dev->shared_with_punit)
388 i2c_dw_prepare_clk(i_dev, true);
391 i_dev->suspended = false;
396 static const struct dev_pm_ops dw_i2c_dev_pm_ops = {
397 .prepare = dw_i2c_plat_prepare,
398 .complete = dw_i2c_plat_complete,
399 SET_LATE_SYSTEM_SLEEP_PM_OPS(dw_i2c_plat_suspend, dw_i2c_plat_resume)
400 SET_RUNTIME_PM_OPS(dw_i2c_plat_suspend, dw_i2c_plat_resume, NULL)
403 #define DW_I2C_DEV_PMOPS (&dw_i2c_dev_pm_ops)
405 #define DW_I2C_DEV_PMOPS NULL
408 /* Work with hotplug and coldplug */
409 MODULE_ALIAS("platform:i2c_designware");
411 static struct platform_driver dw_i2c_driver = {
412 .probe = dw_i2c_plat_probe,
413 .remove = dw_i2c_plat_remove,
415 .name = "i2c_designware",
416 .of_match_table = of_match_ptr(dw_i2c_of_match),
417 .acpi_match_table = ACPI_PTR(dw_i2c_acpi_match),
418 .pm = DW_I2C_DEV_PMOPS,
422 static int __init dw_i2c_init_driver(void)
424 return platform_driver_register(&dw_i2c_driver);
426 subsys_initcall(dw_i2c_init_driver);
428 static void __exit dw_i2c_exit_driver(void)
430 platform_driver_unregister(&dw_i2c_driver);
432 module_exit(dw_i2c_exit_driver);
435 MODULE_DESCRIPTION("Synopsys DesignWare I2C bus adapter");
436 MODULE_LICENSE("GPL");