blob: 760dc0017a33651d0f14c8cd549a379d152ad978 [file] [log] [blame]
Feng Tange24c7452009-12-14 14:20:22 -08001/*
Grant Likelyca632f52011-06-06 01:16:30 -06002 * PCI interface driver for DW SPI Core
Feng Tange24c7452009-12-14 14:20:22 -08003 *
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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090022#include <linux/slab.h>
Feng Tange24c7452009-12-14 14:20:22 -080023#include <linux/spi/spi.h>
Paul Gortmakerd7614de2011-07-03 15:44:29 -040024#include <linux/module.h>
Feng Tange24c7452009-12-14 14:20:22 -080025
Grant Likelyca632f52011-06-06 01:16:30 -060026#include "spi-dw.h"
Grant Likely568a60e2011-02-28 12:47:12 -070027
Feng Tange24c7452009-12-14 14:20:22 -080028#define DRIVER_NAME "dw_spi_pci"
29
30struct dw_spi_pci {
Feng Tang7063c0d2010-12-24 13:59:11 +080031 struct pci_dev *pdev;
32 struct dw_spi dws;
Feng Tange24c7452009-12-14 14:20:22 -080033};
34
Grant Likelyfd4a3192012-12-07 16:57:14 +000035static int spi_pci_probe(struct pci_dev *pdev,
Feng Tange24c7452009-12-14 14:20:22 -080036 const struct pci_device_id *ent)
37{
38 struct dw_spi_pci *dwpci;
39 struct dw_spi *dws;
40 int pci_bar = 0;
41 int ret;
42
Jingoo Hane0045eb2013-10-11 18:31:41 +090043 dev_info(&pdev->dev, "found PCI SPI controller(ID: %04x:%04x)\n",
Feng Tange24c7452009-12-14 14:20:22 -080044 pdev->vendor, pdev->device);
45
Baruch Siach04f421e2013-12-30 20:30:44 +020046 ret = pcim_enable_device(pdev);
Feng Tange24c7452009-12-14 14:20:22 -080047 if (ret)
48 return ret;
49
Baruch Siach04f421e2013-12-30 20:30:44 +020050 dwpci = devm_kzalloc(&pdev-dev, sizeof(struct dw_spi_pci), GFP_KERNEL);
51 if (!dwpci)
52 return -ENOMEM;
Feng Tange24c7452009-12-14 14:20:22 -080053
54 dwpci->pdev = pdev;
55 dws = &dwpci->dws;
56
57 /* Get basic io resource and map it */
58 dws->paddr = pci_resource_start(pdev, pci_bar);
Feng Tange24c7452009-12-14 14:20:22 -080059
Baruch Siach04f421e2013-12-30 20:30:44 +020060 ret = pcim_iomap_regions(pdev, 1, dev_name(&pdev->dev));
Feng Tange24c7452009-12-14 14:20:22 -080061 if (ret)
Baruch Siach04f421e2013-12-30 20:30:44 +020062 return ret;
Feng Tange24c7452009-12-14 14:20:22 -080063
Feng Tange24c7452009-12-14 14:20:22 -080064 dws->bus_num = 0;
65 dws->num_cs = 4;
Feng Tange24c7452009-12-14 14:20:22 -080066 dws->irq = pdev->irq;
Feng Tang7063c0d2010-12-24 13:59:11 +080067
68 /*
69 * Specific handling for Intel MID paltforms, like dma setup,
70 * clock rate, FIFO depth.
71 */
72 if (pdev->device == 0x0800) {
73 ret = dw_spi_mid_init(dws);
74 if (ret)
Baruch Siach04f421e2013-12-30 20:30:44 +020075 return ret;
Feng Tang7063c0d2010-12-24 13:59:11 +080076 }
Feng Tange24c7452009-12-14 14:20:22 -080077
Baruch Siach04f421e2013-12-30 20:30:44 +020078 ret = dw_spi_add_host(&pdev->dev, dws);
Feng Tange24c7452009-12-14 14:20:22 -080079 if (ret)
Baruch Siach04f421e2013-12-30 20:30:44 +020080 return ret;
Feng Tange24c7452009-12-14 14:20:22 -080081
82 /* PCI hook and SPI hook use the same drv data */
83 pci_set_drvdata(pdev, dwpci);
Feng Tange24c7452009-12-14 14:20:22 -080084
Baruch Siach04f421e2013-12-30 20:30:44 +020085 return 0;
Feng Tange24c7452009-12-14 14:20:22 -080086}
87
Grant Likelyfd4a3192012-12-07 16:57:14 +000088static void spi_pci_remove(struct pci_dev *pdev)
Feng Tange24c7452009-12-14 14:20:22 -080089{
90 struct dw_spi_pci *dwpci = pci_get_drvdata(pdev);
91
Feng Tang51f921c2010-01-20 13:49:45 -070092 dw_spi_remove_host(&dwpci->dws);
Feng Tange24c7452009-12-14 14:20:22 -080093 iounmap(dwpci->dws.regs);
94 pci_release_region(pdev, 0);
95 kfree(dwpci);
96 pci_disable_device(pdev);
97}
98
99#ifdef CONFIG_PM
100static int spi_suspend(struct pci_dev *pdev, pm_message_t state)
101{
102 struct dw_spi_pci *dwpci = pci_get_drvdata(pdev);
103 int ret;
104
105 ret = dw_spi_suspend_host(&dwpci->dws);
106 if (ret)
107 return ret;
108 pci_save_state(pdev);
109 pci_disable_device(pdev);
110 pci_set_power_state(pdev, pci_choose_state(pdev, state));
111 return ret;
112}
113
114static int spi_resume(struct pci_dev *pdev)
115{
116 struct dw_spi_pci *dwpci = pci_get_drvdata(pdev);
117 int ret;
118
119 pci_set_power_state(pdev, PCI_D0);
120 pci_restore_state(pdev);
121 ret = pci_enable_device(pdev);
122 if (ret)
123 return ret;
124 return dw_spi_resume_host(&dwpci->dws);
125}
126#else
127#define spi_suspend NULL
128#define spi_resume NULL
129#endif
130
Axel Line290cf22011-12-15 08:11:25 +0800131static DEFINE_PCI_DEVICE_TABLE(pci_ids) = {
Feng Tang7063c0d2010-12-24 13:59:11 +0800132 /* Intel MID platform SPI controller 0 */
Feng Tange24c7452009-12-14 14:20:22 -0800133 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x0800) },
134 {},
135};
136
137static struct pci_driver dw_spi_driver = {
138 .name = DRIVER_NAME,
139 .id_table = pci_ids,
140 .probe = spi_pci_probe,
Grant Likelyfd4a3192012-12-07 16:57:14 +0000141 .remove = spi_pci_remove,
Feng Tange24c7452009-12-14 14:20:22 -0800142 .suspend = spi_suspend,
143 .resume = spi_resume,
144};
145
Axel Lin8ebb35f2012-04-04 22:29:32 +0800146module_pci_driver(dw_spi_driver);
Feng Tange24c7452009-12-14 14:20:22 -0800147
148MODULE_AUTHOR("Feng Tang <feng.tang@intel.com>");
149MODULE_DESCRIPTION("PCI interface driver for DW SPI Core");
150MODULE_LICENSE("GPL v2");