1 // SPDX-License-Identifier: GPL-2.0-only
3 * PCI interface driver for DW SPI Core
5 * Copyright (c) 2009, 2014 Intel Corporation.
9 #include <linux/pm_runtime.h>
10 #include <linux/slab.h>
11 #include <linux/spi/spi.h>
12 #include <linux/module.h>
16 #define DRIVER_NAME "dw_spi_pci"
18 /* HW info for MRST Clk Control Unit, 32b reg per controller */
19 #define MRST_SPI_CLK_BASE 100000000 /* 100m */
20 #define MRST_CLK_SPI_REG 0xff11d86c
21 #define CLK_SPI_BDIV_OFFSET 0
22 #define CLK_SPI_BDIV_MASK 0x00000007
23 #define CLK_SPI_CDIV_OFFSET 9
24 #define CLK_SPI_CDIV_MASK 0x00000e00
25 #define CLK_SPI_DISABLE_OFFSET 8
28 int (*setup
)(struct dw_spi
*);
34 static int spi_mid_init(struct dw_spi
*dws
)
36 void __iomem
*clk_reg
;
39 clk_reg
= ioremap(MRST_CLK_SPI_REG
, 16);
43 /* Get SPI controller operating freq info */
44 clk_cdiv
= readl(clk_reg
+ dws
->bus_num
* sizeof(u32
));
45 clk_cdiv
&= CLK_SPI_CDIV_MASK
;
46 clk_cdiv
>>= CLK_SPI_CDIV_OFFSET
;
47 dws
->max_freq
= MRST_SPI_CLK_BASE
/ (clk_cdiv
+ 1);
51 /* Register hook to configure CTRLR0 */
52 dws
->update_cr0
= dw_spi_update_cr0
;
54 dw_spi_dma_setup_mfld(dws
);
59 static int spi_generic_init(struct dw_spi
*dws
)
61 /* Register hook to configure CTRLR0 */
62 dws
->update_cr0
= dw_spi_update_cr0
;
64 dw_spi_dma_setup_generic(dws
);
69 static struct spi_pci_desc spi_pci_mid_desc_1
= {
70 .setup
= spi_mid_init
,
75 static struct spi_pci_desc spi_pci_mid_desc_2
= {
76 .setup
= spi_mid_init
,
81 static struct spi_pci_desc spi_pci_ehl_desc
= {
82 .setup
= spi_generic_init
,
85 .max_freq
= 100000000,
88 static int spi_pci_probe(struct pci_dev
*pdev
, const struct pci_device_id
*ent
)
91 struct spi_pci_desc
*desc
= (struct spi_pci_desc
*)ent
->driver_data
;
95 ret
= pcim_enable_device(pdev
);
99 dws
= devm_kzalloc(&pdev
->dev
, sizeof(*dws
), GFP_KERNEL
);
103 /* Get basic io resource and map it */
104 dws
->paddr
= pci_resource_start(pdev
, pci_bar
);
105 pci_set_master(pdev
);
107 ret
= pcim_iomap_regions(pdev
, 1 << pci_bar
, pci_name(pdev
));
111 ret
= pci_alloc_irq_vectors(pdev
, 1, 1, PCI_IRQ_ALL_TYPES
);
115 dws
->regs
= pcim_iomap_table(pdev
)[pci_bar
];
116 dws
->irq
= pci_irq_vector(pdev
, 0);
119 * Specific handling for platforms, like dma setup,
120 * clock rate, FIFO depth.
123 dws
->num_cs
= desc
->num_cs
;
124 dws
->bus_num
= desc
->bus_num
;
125 dws
->max_freq
= desc
->max_freq
;
128 ret
= desc
->setup(dws
);
130 goto err_free_irq_vectors
;
134 goto err_free_irq_vectors
;
137 ret
= dw_spi_add_host(&pdev
->dev
, dws
);
139 goto err_free_irq_vectors
;
141 /* PCI hook and SPI hook use the same drv data */
142 pci_set_drvdata(pdev
, dws
);
144 dev_info(&pdev
->dev
, "found PCI SPI controller(ID: %04x:%04x)\n",
145 pdev
->vendor
, pdev
->device
);
147 pm_runtime_set_autosuspend_delay(&pdev
->dev
, 1000);
148 pm_runtime_use_autosuspend(&pdev
->dev
);
149 pm_runtime_put_autosuspend(&pdev
->dev
);
150 pm_runtime_allow(&pdev
->dev
);
154 err_free_irq_vectors
:
155 pci_free_irq_vectors(pdev
);
159 static void spi_pci_remove(struct pci_dev
*pdev
)
161 struct dw_spi
*dws
= pci_get_drvdata(pdev
);
163 pm_runtime_forbid(&pdev
->dev
);
164 pm_runtime_get_noresume(&pdev
->dev
);
166 dw_spi_remove_host(dws
);
167 pci_free_irq_vectors(pdev
);
170 #ifdef CONFIG_PM_SLEEP
171 static int spi_suspend(struct device
*dev
)
173 struct dw_spi
*dws
= dev_get_drvdata(dev
);
175 return dw_spi_suspend_host(dws
);
178 static int spi_resume(struct device
*dev
)
180 struct dw_spi
*dws
= dev_get_drvdata(dev
);
182 return dw_spi_resume_host(dws
);
186 static SIMPLE_DEV_PM_OPS(dw_spi_pm_ops
, spi_suspend
, spi_resume
);
188 static const struct pci_device_id pci_ids
[] = {
189 /* Intel MID platform SPI controller 0 */
191 * The access to the device 8086:0801 is disabled by HW, since it's
192 * exclusively used by SCU to communicate with MSIC.
194 /* Intel MID platform SPI controller 1 */
195 { PCI_VDEVICE(INTEL
, 0x0800), (kernel_ulong_t
)&spi_pci_mid_desc_1
},
196 /* Intel MID platform SPI controller 2 */
197 { PCI_VDEVICE(INTEL
, 0x0812), (kernel_ulong_t
)&spi_pci_mid_desc_2
},
198 /* Intel Elkhart Lake PSE SPI controllers */
199 { PCI_VDEVICE(INTEL
, 0x4b84), (kernel_ulong_t
)&spi_pci_ehl_desc
},
200 { PCI_VDEVICE(INTEL
, 0x4b85), (kernel_ulong_t
)&spi_pci_ehl_desc
},
201 { PCI_VDEVICE(INTEL
, 0x4b86), (kernel_ulong_t
)&spi_pci_ehl_desc
},
202 { PCI_VDEVICE(INTEL
, 0x4b87), (kernel_ulong_t
)&spi_pci_ehl_desc
},
205 MODULE_DEVICE_TABLE(pci
, pci_ids
);
207 static struct pci_driver dw_spi_driver
= {
210 .probe
= spi_pci_probe
,
211 .remove
= spi_pci_remove
,
213 .pm
= &dw_spi_pm_ops
,
217 module_pci_driver(dw_spi_driver
);
219 MODULE_AUTHOR("Feng Tang <feng.tang@intel.com>");
220 MODULE_DESCRIPTION("PCI interface driver for DW SPI Core");
221 MODULE_LICENSE("GPL v2");