2 * Intel Quark MFD PCI driver for I2C & GPIO
4 * Copyright(c) 2014 Intel Corporation.
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms and conditions of the GNU General Public License,
8 * version 2, as published by the Free Software Foundation.
10 * This program is distributed in the hope it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 * Intel Quark PCI device for I2C and GPIO controller sharing the same
16 * PCI function. This PCI driver will split the 2 devices into their
20 #include <linux/kernel.h>
21 #include <linux/module.h>
22 #include <linux/pci.h>
23 #include <linux/mfd/core.h>
24 #include <linux/clkdev.h>
25 #include <linux/clk-provider.h>
26 #include <linux/dmi.h>
27 #include <linux/platform_data/gpio-dwapb.h>
28 #include <linux/platform_data/i2c-designware.h>
30 /* PCI BAR for register base address */
32 #define MFD_GPIO_BAR 1
34 /* ACPI _ADR value to match the child node */
35 #define MFD_ACPI_MATCH_GPIO 0ULL
36 #define MFD_ACPI_MATCH_I2C 1ULL
38 /* The base GPIO number under GPIOLIB framework */
39 #define INTEL_QUARK_MFD_GPIO_BASE 8
41 /* The default number of South-Cluster GPIO on Quark. */
42 #define INTEL_QUARK_MFD_NGPIO 8
44 /* The DesignWare GPIO ports on Quark. */
45 #define INTEL_QUARK_GPIO_NPORTS 1
47 #define INTEL_QUARK_IORES_MEM 0
48 #define INTEL_QUARK_IORES_IRQ 1
50 #define INTEL_QUARK_I2C_CONTROLLER_CLK "i2c_designware.0"
52 /* The Quark I2C controller source clock */
53 #define INTEL_QUARK_I2C_CLK_HZ 33000000
55 struct intel_quark_mfd
{
58 struct clk_lookup
*i2c_clk_lookup
;
61 static const struct dmi_system_id dmi_platform_info
[] = {
64 DMI_EXACT_MATCH(DMI_BOARD_NAME
, "Galileo"),
66 .driver_data
= (void *)100000,
70 DMI_EXACT_MATCH(DMI_BOARD_NAME
, "GalileoGen2"),
72 .driver_data
= (void *)400000,
76 DMI_EXACT_MATCH(DMI_BOARD_NAME
, "SIMATIC IOT2000"),
77 DMI_EXACT_MATCH(DMI_BOARD_ASSET_TAG
,
78 "6ES7647-0AA00-0YA2"),
80 .driver_data
= (void *)400000,
84 DMI_EXACT_MATCH(DMI_BOARD_NAME
, "SIMATIC IOT2000"),
85 DMI_EXACT_MATCH(DMI_BOARD_ASSET_TAG
,
86 "6ES7647-0AA00-1YA2"),
88 .driver_data
= (void *)400000,
93 static struct resource intel_quark_i2c_res
[] = {
94 [INTEL_QUARK_IORES_MEM
] = {
95 .flags
= IORESOURCE_MEM
,
97 [INTEL_QUARK_IORES_IRQ
] = {
98 .flags
= IORESOURCE_IRQ
,
102 static struct mfd_cell_acpi_match intel_quark_acpi_match_i2c
= {
103 .adr
= MFD_ACPI_MATCH_I2C
,
106 static struct resource intel_quark_gpio_res
[] = {
107 [INTEL_QUARK_IORES_MEM
] = {
108 .flags
= IORESOURCE_MEM
,
112 static struct mfd_cell_acpi_match intel_quark_acpi_match_gpio
= {
113 .adr
= MFD_ACPI_MATCH_GPIO
,
116 static struct mfd_cell intel_quark_mfd_cells
[] = {
119 .name
= "gpio-dwapb",
120 .acpi_match
= &intel_quark_acpi_match_gpio
,
121 .num_resources
= ARRAY_SIZE(intel_quark_gpio_res
),
122 .resources
= intel_quark_gpio_res
,
123 .ignore_resource_conflicts
= true,
127 .name
= "i2c_designware",
128 .acpi_match
= &intel_quark_acpi_match_i2c
,
129 .num_resources
= ARRAY_SIZE(intel_quark_i2c_res
),
130 .resources
= intel_quark_i2c_res
,
131 .ignore_resource_conflicts
= true,
135 static const struct pci_device_id intel_quark_mfd_ids
[] = {
136 { PCI_VDEVICE(INTEL
, 0x0934), },
139 MODULE_DEVICE_TABLE(pci
, intel_quark_mfd_ids
);
141 static int intel_quark_register_i2c_clk(struct device
*dev
)
143 struct intel_quark_mfd
*quark_mfd
= dev_get_drvdata(dev
);
146 i2c_clk
= clk_register_fixed_rate(dev
,
147 INTEL_QUARK_I2C_CONTROLLER_CLK
, NULL
,
148 0, INTEL_QUARK_I2C_CLK_HZ
);
150 return PTR_ERR(i2c_clk
);
152 quark_mfd
->i2c_clk
= i2c_clk
;
153 quark_mfd
->i2c_clk_lookup
= clkdev_create(i2c_clk
, NULL
,
154 INTEL_QUARK_I2C_CONTROLLER_CLK
);
156 if (!quark_mfd
->i2c_clk_lookup
) {
157 clk_unregister(quark_mfd
->i2c_clk
);
158 dev_err(dev
, "Fixed clk register failed\n");
165 static void intel_quark_unregister_i2c_clk(struct device
*dev
)
167 struct intel_quark_mfd
*quark_mfd
= dev_get_drvdata(dev
);
169 if (!quark_mfd
->i2c_clk_lookup
)
172 clkdev_drop(quark_mfd
->i2c_clk_lookup
);
173 clk_unregister(quark_mfd
->i2c_clk
);
176 static int intel_quark_i2c_setup(struct pci_dev
*pdev
, struct mfd_cell
*cell
)
178 const struct dmi_system_id
*dmi_id
;
179 struct dw_i2c_platform_data
*pdata
;
180 struct resource
*res
= (struct resource
*)cell
->resources
;
181 struct device
*dev
= &pdev
->dev
;
183 res
[INTEL_QUARK_IORES_MEM
].start
=
184 pci_resource_start(pdev
, MFD_I2C_BAR
);
185 res
[INTEL_QUARK_IORES_MEM
].end
=
186 pci_resource_end(pdev
, MFD_I2C_BAR
);
188 res
[INTEL_QUARK_IORES_IRQ
].start
= pdev
->irq
;
189 res
[INTEL_QUARK_IORES_IRQ
].end
= pdev
->irq
;
191 pdata
= devm_kzalloc(dev
, sizeof(*pdata
), GFP_KERNEL
);
195 /* Normal mode by default */
196 pdata
->i2c_scl_freq
= 100000;
198 dmi_id
= dmi_first_match(dmi_platform_info
);
200 pdata
->i2c_scl_freq
= (uintptr_t)dmi_id
->driver_data
;
202 cell
->platform_data
= pdata
;
203 cell
->pdata_size
= sizeof(*pdata
);
208 static int intel_quark_gpio_setup(struct pci_dev
*pdev
, struct mfd_cell
*cell
)
210 struct dwapb_platform_data
*pdata
;
211 struct resource
*res
= (struct resource
*)cell
->resources
;
212 struct device
*dev
= &pdev
->dev
;
214 res
[INTEL_QUARK_IORES_MEM
].start
=
215 pci_resource_start(pdev
, MFD_GPIO_BAR
);
216 res
[INTEL_QUARK_IORES_MEM
].end
=
217 pci_resource_end(pdev
, MFD_GPIO_BAR
);
219 pdata
= devm_kzalloc(dev
, sizeof(*pdata
), GFP_KERNEL
);
223 /* For intel quark x1000, it has only one port: portA */
224 pdata
->nports
= INTEL_QUARK_GPIO_NPORTS
;
225 pdata
->properties
= devm_kcalloc(dev
, pdata
->nports
,
226 sizeof(*pdata
->properties
),
228 if (!pdata
->properties
)
231 /* Set the properties for portA */
232 pdata
->properties
->fwnode
= NULL
;
233 pdata
->properties
->idx
= 0;
234 pdata
->properties
->ngpio
= INTEL_QUARK_MFD_NGPIO
;
235 pdata
->properties
->gpio_base
= INTEL_QUARK_MFD_GPIO_BASE
;
236 pdata
->properties
->irq
= pdev
->irq
;
237 pdata
->properties
->irq_shared
= true;
239 cell
->platform_data
= pdata
;
240 cell
->pdata_size
= sizeof(*pdata
);
245 static int intel_quark_mfd_probe(struct pci_dev
*pdev
,
246 const struct pci_device_id
*id
)
248 struct intel_quark_mfd
*quark_mfd
;
251 ret
= pcim_enable_device(pdev
);
255 quark_mfd
= devm_kzalloc(&pdev
->dev
, sizeof(*quark_mfd
), GFP_KERNEL
);
259 quark_mfd
->dev
= &pdev
->dev
;
260 dev_set_drvdata(&pdev
->dev
, quark_mfd
);
262 ret
= intel_quark_register_i2c_clk(&pdev
->dev
);
266 ret
= intel_quark_i2c_setup(pdev
, &intel_quark_mfd_cells
[1]);
268 goto err_unregister_i2c_clk
;
270 ret
= intel_quark_gpio_setup(pdev
, &intel_quark_mfd_cells
[0]);
272 goto err_unregister_i2c_clk
;
274 ret
= mfd_add_devices(&pdev
->dev
, 0, intel_quark_mfd_cells
,
275 ARRAY_SIZE(intel_quark_mfd_cells
), NULL
, 0,
278 goto err_unregister_i2c_clk
;
282 err_unregister_i2c_clk
:
283 intel_quark_unregister_i2c_clk(&pdev
->dev
);
287 static void intel_quark_mfd_remove(struct pci_dev
*pdev
)
289 intel_quark_unregister_i2c_clk(&pdev
->dev
);
290 mfd_remove_devices(&pdev
->dev
);
293 static struct pci_driver intel_quark_mfd_driver
= {
294 .name
= "intel_quark_mfd_i2c_gpio",
295 .id_table
= intel_quark_mfd_ids
,
296 .probe
= intel_quark_mfd_probe
,
297 .remove
= intel_quark_mfd_remove
,
300 module_pci_driver(intel_quark_mfd_driver
);
302 MODULE_AUTHOR("Raymond Tan <raymond.tan@intel.com>");
303 MODULE_DESCRIPTION("Intel Quark MFD PCI driver for I2C & GPIO");
304 MODULE_LICENSE("GPL v2");