]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/spi/spi-dw-pci.c
spi: dw-pci: provide platform specific data via driver_data
[mirror_ubuntu-artful-kernel.git] / drivers / spi / spi-dw-pci.c
CommitLineData
e24c7452 1/*
ca632f55 2 * PCI interface driver for DW SPI Core
e24c7452
FT
3 *
4 * Copyright (c) 2009, Intel Corporation.
5 *
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.
9 *
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
13 * more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20#include <linux/interrupt.h>
21#include <linux/pci.h>
5a0e3ad6 22#include <linux/slab.h>
e24c7452 23#include <linux/spi/spi.h>
d7614de4 24#include <linux/module.h>
e24c7452 25
ca632f55 26#include "spi-dw.h"
568a60ed 27
e24c7452
FT
28#define DRIVER_NAME "dw_spi_pci"
29
30struct dw_spi_pci {
7063c0d9
FT
31 struct pci_dev *pdev;
32 struct dw_spi dws;
e24c7452
FT
33};
34
c95791b6
AS
35struct spi_pci_desc {
36 int (*setup)(struct dw_spi *);
37};
38
39static struct spi_pci_desc spi_pci_mid_desc = {
40 .setup = dw_spi_mid_init,
41};
42
43static int spi_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
e24c7452
FT
44{
45 struct dw_spi_pci *dwpci;
46 struct dw_spi *dws;
c95791b6 47 struct spi_pci_desc *desc = (struct spi_pci_desc *)ent->driver_data;
e24c7452
FT
48 int pci_bar = 0;
49 int ret;
50
04f421e7 51 ret = pcim_enable_device(pdev);
e24c7452
FT
52 if (ret)
53 return ret;
54
fa4934a0
BS
55 dwpci = devm_kzalloc(&pdev->dev, sizeof(struct dw_spi_pci),
56 GFP_KERNEL);
04f421e7
BS
57 if (!dwpci)
58 return -ENOMEM;
e24c7452
FT
59
60 dwpci->pdev = pdev;
61 dws = &dwpci->dws;
62
63 /* Get basic io resource and map it */
64 dws->paddr = pci_resource_start(pdev, pci_bar);
e24c7452 65
ceb86de9 66 ret = pcim_iomap_regions(pdev, 1 << pci_bar, pci_name(pdev));
e24c7452 67 if (ret)
04f421e7 68 return ret;
e24c7452 69
e24c7452
FT
70 dws->bus_num = 0;
71 dws->num_cs = 4;
e24c7452 72 dws->irq = pdev->irq;
7063c0d9
FT
73
74 /*
c95791b6 75 * Specific handling for paltforms, like dma setup,
7063c0d9
FT
76 * clock rate, FIFO depth.
77 */
c95791b6
AS
78 if (desc && desc->setup) {
79 ret = desc->setup(dws);
7063c0d9 80 if (ret)
04f421e7 81 return ret;
7063c0d9 82 }
e24c7452 83
04f421e7 84 ret = dw_spi_add_host(&pdev->dev, dws);
e24c7452 85 if (ret)
04f421e7 86 return ret;
e24c7452
FT
87
88 /* PCI hook and SPI hook use the same drv data */
89 pci_set_drvdata(pdev, dwpci);
e24c7452 90
fcf0af44
AS
91 dev_info(&pdev->dev, "found PCI SPI controller(ID: %04x:%04x)\n",
92 pdev->vendor, pdev->device);
93
04f421e7 94 return 0;
e24c7452
FT
95}
96
fd4a319b 97static void spi_pci_remove(struct pci_dev *pdev)
e24c7452
FT
98{
99 struct dw_spi_pci *dwpci = pci_get_drvdata(pdev);
100
51f921c1 101 dw_spi_remove_host(&dwpci->dws);
e24c7452
FT
102}
103
35f2d413
AS
104#ifdef CONFIG_PM_SLEEP
105static int spi_suspend(struct device *dev)
e24c7452 106{
35f2d413 107 struct pci_dev *pdev = to_pci_dev(dev);
e24c7452 108 struct dw_spi_pci *dwpci = pci_get_drvdata(pdev);
e24c7452 109
35f2d413 110 return dw_spi_suspend_host(&dwpci->dws);
e24c7452
FT
111}
112
35f2d413 113static int spi_resume(struct device *dev)
e24c7452 114{
35f2d413 115 struct pci_dev *pdev = to_pci_dev(dev);
e24c7452 116 struct dw_spi_pci *dwpci = pci_get_drvdata(pdev);
e24c7452 117
e24c7452
FT
118 return dw_spi_resume_host(&dwpci->dws);
119}
e24c7452
FT
120#endif
121
35f2d413
AS
122static SIMPLE_DEV_PM_OPS(dw_spi_pm_ops, spi_suspend, spi_resume);
123
9a21e477 124static const struct pci_device_id pci_ids[] = {
7063c0d9 125 /* Intel MID platform SPI controller 0 */
c95791b6 126 { PCI_VDEVICE(INTEL, 0x0800), (kernel_ulong_t)&spi_pci_mid_desc},
e24c7452
FT
127 {},
128};
129
130static struct pci_driver dw_spi_driver = {
131 .name = DRIVER_NAME,
132 .id_table = pci_ids,
133 .probe = spi_pci_probe,
fd4a319b 134 .remove = spi_pci_remove,
35f2d413
AS
135 .driver = {
136 .pm = &dw_spi_pm_ops,
137 },
e24c7452
FT
138};
139
8ebb35fd 140module_pci_driver(dw_spi_driver);
e24c7452
FT
141
142MODULE_AUTHOR("Feng Tang <feng.tang@intel.com>");
143MODULE_DESCRIPTION("PCI interface driver for DW SPI Core");
144MODULE_LICENSE("GPL v2");