2 * Synopsys DesignWare I2C adapter driver (master only).
4 * Based on the TI DAVINCI I2C adapter driver.
6 * Copyright (C) 2006 Texas Instruments.
7 * Copyright (C) 2007 MontaVista Software Inc.
8 * Copyright (C) 2009 Provigent Ltd.
9 * Copyright (C) 2011, 2015, 2016 Intel Corporation.
11 * ----------------------------------------------------------------------------
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 * ----------------------------------------------------------------------------
26 #include <linux/acpi.h>
27 #include <linux/delay.h>
28 #include <linux/err.h>
29 #include <linux/errno.h>
30 #include <linux/i2c.h>
31 #include <linux/interrupt.h>
33 #include <linux/kernel.h>
34 #include <linux/module.h>
35 #include <linux/pci.h>
36 #include <linux/pm_runtime.h>
37 #include <linux/sched.h>
38 #include <linux/slab.h>
40 #include "i2c-designware-core.h"
42 #define DRIVER_NAME "i2c-designware-pci"
44 enum dw_pci_ctl_id_t
{
51 struct dw_scl_sda_cfg
{
59 struct dw_pci_controller
{
66 struct dw_scl_sda_cfg
*scl_sda_cfg
;
67 int (*setup
)(struct pci_dev
*pdev
, struct dw_pci_controller
*c
);
70 #define INTEL_MID_STD_CFG (DW_IC_CON_MASTER | \
71 DW_IC_CON_SLAVE_DISABLE | \
74 #define DW_DEFAULT_FUNCTIONALITY (I2C_FUNC_I2C | \
75 I2C_FUNC_SMBUS_BYTE | \
76 I2C_FUNC_SMBUS_BYTE_DATA | \
77 I2C_FUNC_SMBUS_WORD_DATA | \
78 I2C_FUNC_SMBUS_I2C_BLOCK)
80 /* Merrifield HCNT/LCNT/SDA hold time */
81 static struct dw_scl_sda_cfg mrfld_config
= {
88 /* BayTrail HCNT/LCNT/SDA hold time */
89 static struct dw_scl_sda_cfg byt_config
= {
97 /* Haswell HCNT/LCNT/SDA hold time */
98 static struct dw_scl_sda_cfg hsw_config
= {
106 static int mfld_setup(struct pci_dev
*pdev
, struct dw_pci_controller
*c
)
108 switch (pdev
->device
) {
110 c
->bus_cfg
&= ~DW_IC_CON_SPEED_MASK
;
111 c
->bus_cfg
|= DW_IC_CON_SPEED_STD
;
114 c
->bus_num
= pdev
->device
- 0x817 + 3;
119 c
->bus_num
= pdev
->device
- 0x82C + 0;
125 static int mrfld_setup(struct pci_dev
*pdev
, struct dw_pci_controller
*c
)
128 * On Intel Merrifield the user visible i2c busses are enumerated
129 * [1..7]. So, we add 1 to shift the default range. Besides that the
130 * first PCI slot provides 4 functions, that's why we have to add 0 to
131 * the first slot and 4 to the next one.
133 switch (PCI_SLOT(pdev
->devfn
)) {
135 c
->bus_num
= PCI_FUNC(pdev
->devfn
) + 0 + 1;
138 c
->bus_num
= PCI_FUNC(pdev
->devfn
) + 4 + 1;
144 static struct dw_pci_controller dw_pci_controllers
[] = {
147 .bus_cfg
= INTEL_MID_STD_CFG
| DW_IC_CON_SPEED_FAST
,
155 .bus_cfg
= INTEL_MID_STD_CFG
| DW_IC_CON_SPEED_FAST
,
158 .scl_sda_cfg
= &mrfld_config
,
159 .setup
= mrfld_setup
,
163 .bus_cfg
= INTEL_MID_STD_CFG
| DW_IC_CON_SPEED_FAST
,
166 .functionality
= I2C_FUNC_10BIT_ADDR
,
167 .scl_sda_cfg
= &byt_config
,
171 .bus_cfg
= INTEL_MID_STD_CFG
| DW_IC_CON_SPEED_FAST
,
174 .functionality
= I2C_FUNC_10BIT_ADDR
,
175 .scl_sda_cfg
= &hsw_config
,
180 static int i2c_dw_pci_suspend(struct device
*dev
)
182 struct pci_dev
*pdev
= to_pci_dev(dev
);
184 i2c_dw_disable(pci_get_drvdata(pdev
));
188 static int i2c_dw_pci_resume(struct device
*dev
)
190 struct pci_dev
*pdev
= to_pci_dev(dev
);
192 return i2c_dw_init(pci_get_drvdata(pdev
));
196 static UNIVERSAL_DEV_PM_OPS(i2c_dw_pm_ops
, i2c_dw_pci_suspend
,
197 i2c_dw_pci_resume
, NULL
);
199 static u32
i2c_dw_get_clk_rate_khz(struct dw_i2c_dev
*dev
)
201 return dev
->controller
->clk_khz
;
204 static int i2c_dw_pci_probe(struct pci_dev
*pdev
,
205 const struct pci_device_id
*id
)
207 struct dw_i2c_dev
*dev
;
208 struct i2c_adapter
*adap
;
210 struct dw_pci_controller
*controller
;
211 struct dw_scl_sda_cfg
*cfg
;
213 if (id
->driver_data
>= ARRAY_SIZE(dw_pci_controllers
)) {
214 dev_err(&pdev
->dev
, "%s: invalid driver data %ld\n", __func__
,
219 controller
= &dw_pci_controllers
[id
->driver_data
];
221 r
= pcim_enable_device(pdev
);
223 dev_err(&pdev
->dev
, "Failed to enable I2C PCI device (%d)\n",
228 r
= pcim_iomap_regions(pdev
, 1 << 0, pci_name(pdev
));
230 dev_err(&pdev
->dev
, "I/O memory remapping failed\n");
234 dev
= devm_kzalloc(&pdev
->dev
, sizeof(struct dw_i2c_dev
), GFP_KERNEL
);
239 dev
->controller
= controller
;
240 dev
->get_clk_rate_khz
= i2c_dw_get_clk_rate_khz
;
241 dev
->base
= pcim_iomap_table(pdev
)[0];
242 dev
->dev
= &pdev
->dev
;
243 dev
->irq
= pdev
->irq
;
245 if (controller
->setup
) {
246 r
= controller
->setup(pdev
, controller
);
251 dev
->functionality
= controller
->functionality
|
252 DW_DEFAULT_FUNCTIONALITY
;
254 dev
->master_cfg
= controller
->bus_cfg
;
255 if (controller
->scl_sda_cfg
) {
256 cfg
= controller
->scl_sda_cfg
;
257 dev
->ss_hcnt
= cfg
->ss_hcnt
;
258 dev
->fs_hcnt
= cfg
->fs_hcnt
;
259 dev
->ss_lcnt
= cfg
->ss_lcnt
;
260 dev
->fs_lcnt
= cfg
->fs_lcnt
;
261 dev
->sda_hold_time
= cfg
->sda_hold
;
264 pci_set_drvdata(pdev
, dev
);
266 dev
->tx_fifo_depth
= controller
->tx_fifo_depth
;
267 dev
->rx_fifo_depth
= controller
->rx_fifo_depth
;
269 adap
= &dev
->adapter
;
270 adap
->owner
= THIS_MODULE
;
272 ACPI_COMPANION_SET(&adap
->dev
, ACPI_COMPANION(&pdev
->dev
));
273 adap
->nr
= controller
->bus_num
;
275 r
= i2c_dw_probe(dev
);
279 pm_runtime_set_autosuspend_delay(&pdev
->dev
, 1000);
280 pm_runtime_use_autosuspend(&pdev
->dev
);
281 pm_runtime_put_autosuspend(&pdev
->dev
);
282 pm_runtime_allow(&pdev
->dev
);
287 static void i2c_dw_pci_remove(struct pci_dev
*pdev
)
289 struct dw_i2c_dev
*dev
= pci_get_drvdata(pdev
);
292 pm_runtime_forbid(&pdev
->dev
);
293 pm_runtime_get_noresume(&pdev
->dev
);
295 i2c_del_adapter(&dev
->adapter
);
298 /* work with hotplug and coldplug */
299 MODULE_ALIAS("i2c_designware-pci");
301 static const struct pci_device_id i2_designware_pci_ids
[] = {
303 { PCI_VDEVICE(INTEL
, 0x0817), medfield
},
304 { PCI_VDEVICE(INTEL
, 0x0818), medfield
},
305 { PCI_VDEVICE(INTEL
, 0x0819), medfield
},
306 { PCI_VDEVICE(INTEL
, 0x082C), medfield
},
307 { PCI_VDEVICE(INTEL
, 0x082D), medfield
},
308 { PCI_VDEVICE(INTEL
, 0x082E), medfield
},
310 { PCI_VDEVICE(INTEL
, 0x1195), merrifield
},
311 { PCI_VDEVICE(INTEL
, 0x1196), merrifield
},
313 { PCI_VDEVICE(INTEL
, 0x0F41), baytrail
},
314 { PCI_VDEVICE(INTEL
, 0x0F42), baytrail
},
315 { PCI_VDEVICE(INTEL
, 0x0F43), baytrail
},
316 { PCI_VDEVICE(INTEL
, 0x0F44), baytrail
},
317 { PCI_VDEVICE(INTEL
, 0x0F45), baytrail
},
318 { PCI_VDEVICE(INTEL
, 0x0F46), baytrail
},
319 { PCI_VDEVICE(INTEL
, 0x0F47), baytrail
},
321 { PCI_VDEVICE(INTEL
, 0x9c61), haswell
},
322 { PCI_VDEVICE(INTEL
, 0x9c62), haswell
},
323 /* Braswell / Cherrytrail */
324 { PCI_VDEVICE(INTEL
, 0x22C1), baytrail
},
325 { PCI_VDEVICE(INTEL
, 0x22C2), baytrail
},
326 { PCI_VDEVICE(INTEL
, 0x22C3), baytrail
},
327 { PCI_VDEVICE(INTEL
, 0x22C4), baytrail
},
328 { PCI_VDEVICE(INTEL
, 0x22C5), baytrail
},
329 { PCI_VDEVICE(INTEL
, 0x22C6), baytrail
},
330 { PCI_VDEVICE(INTEL
, 0x22C7), baytrail
},
333 MODULE_DEVICE_TABLE(pci
, i2_designware_pci_ids
);
335 static struct pci_driver dw_i2c_driver
= {
337 .id_table
= i2_designware_pci_ids
,
338 .probe
= i2c_dw_pci_probe
,
339 .remove
= i2c_dw_pci_remove
,
341 .pm
= &i2c_dw_pm_ops
,
345 module_pci_driver(dw_i2c_driver
);
347 MODULE_AUTHOR("Baruch Siach <baruch@tkos.co.il>");
348 MODULE_DESCRIPTION("Synopsys DesignWare PCI I2C bus adapter");
349 MODULE_LICENSE("GPL");