~ubuntu-branches/ubuntu/trusty/linux-armadaxp/trusty

« back to all changes in this revision

Viewing changes to drivers/spi/spi-dw-pci.c

  • Committer: Package Import Robot
  • Author(s): Michael Casadevall, Bryan Wu, Dann Frazier, Michael Casadeall
  • Date: 2012-03-10 15:00:54 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20120310150054-flugb39zon8vvgwe
Tags: 3.2.0-1600.1
[ Bryan Wu ]
* UBUNTU: import debian/debian.env and debian.armadaxp

[ Dann Frazier ]
* ARM: Armada XP: remove trailing '/' in dirnames in mvRules.mk

[ Michael Casadeall ]
* tools: add some tools for Marvell Armada XP processor
* kernel: timer tick hacking from Marvell
* kernel: Sheeva Errata: add delay on Sheeva when powering down
* net: add Marvell NFP netfilter
* net: socket and skb modifications made by Marvell
* miscdevice: add minor IDs for some Marvell Armada drivers
* fs: introduce memory pool for splice()
* video: EDID detection updates from Marvell Armada XP patchset
* video: backlight: add Marvell Dove LCD backlight driver
* video: display: add THS8200 display driver
* video: framebuffer: add Marvell Dove and Armada XP processor onchip LCD controller driver
* usbtest: add Interrupt transfer testing by Marvell Armada XP code
* usb: ehci: add support for Marvell EHCI controler
* tty/serial: 8250: add support for Marvell Armada XP processor and DeviceTree work
* rtc: add support for Marvell Armada XP onchip RTC controller
* net: pppoe: add Marvell ethernet NFP hook in PPPoE networking driver
* mtd: nand: add support for Marvell Armada XP Nand Flash Controller
* mtd: maps: add Marvell Armada XP specific map driver
* mmc: add support for Marvell Armada XP MMC/SD host controller
* i2c: add support for Marvell Armada XP onchip i2c bus controller
* hwmon: add Kconfig option for Armada XP onchip thermal sensor driver
* dmaengine: add Net DMA support for splice and update Marvell XOR DMA engine driver
* ata: add support for Marvell Armada XP SATA controller and update some quirks
* ARM: add Marvell Armada XP machine to mach-types
* ARM: oprofile: add support for Marvell PJ4B core
* ARM: mm: more ARMv6 switches for Marvell Armada XP
* ARM: remove static declaration to allow compilation
* ARM: alignment access fault trick
* ARM: mm: skip some fault fixing when run on NONE SMP ARMv6 mode during early abort event
* ARM: mm: add Marvell Sheeva CPU Architecture for PJ4B
* ARM: introduce optimized copy operation for Marvell Armada XP
* ARM: SAUCE: hardware breakpoint trick for Marvell Armada XP
* ARM: big endian and little endian tricks for Marvell Armada XP
* ARM: SAUCE: Add Marvell Armada XP build rules to arch/arm/kernel/Makefile
* ARM: vfp: add special handling for Marvell Armada XP
* ARM: add support for Marvell U-Boot
* ARM: add mv_controller_num for ARM PCI drivers
* ARM: add support for local PMUs, general SMP tweaks and cache flushing
* ARM: add Marvell device identifies in glue-proc.h
* ARM: add IPC driver support for Marvell platforms
* ARM: add DMA mapping for Marvell platforms
* ARM: add Sheeva errata and PJ4B code for booting
* ARM: update Kconfig and Makefile to include Marvell Armada XP platforms
* ARM: Armada XP: import LSP from Marvell for Armada XP 3.2 kernel enablement

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * PCI interface driver for DW SPI Core
 
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>
 
22
#include <linux/slab.h>
 
23
#include <linux/spi/spi.h>
 
24
#include <linux/module.h>
 
25
 
 
26
#include "spi-dw.h"
 
27
 
 
28
#define DRIVER_NAME "dw_spi_pci"
 
29
 
 
30
struct dw_spi_pci {
 
31
        struct pci_dev  *pdev;
 
32
        struct dw_spi   dws;
 
33
};
 
34
 
 
35
static int __devinit spi_pci_probe(struct pci_dev *pdev,
 
36
        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
 
 
43
        printk(KERN_INFO "DW: found PCI SPI controller(ID: %04x:%04x)\n",
 
44
                pdev->vendor, pdev->device);
 
45
 
 
46
        ret = pci_enable_device(pdev);
 
47
        if (ret)
 
48
                return ret;
 
49
 
 
50
        dwpci = kzalloc(sizeof(struct dw_spi_pci), GFP_KERNEL);
 
51
        if (!dwpci) {
 
52
                ret = -ENOMEM;
 
53
                goto err_disable;
 
54
        }
 
55
 
 
56
        dwpci->pdev = pdev;
 
57
        dws = &dwpci->dws;
 
58
 
 
59
        /* Get basic io resource and map it */
 
60
        dws->paddr = pci_resource_start(pdev, pci_bar);
 
61
        dws->iolen = pci_resource_len(pdev, pci_bar);
 
62
 
 
63
        ret = pci_request_region(pdev, pci_bar, dev_name(&pdev->dev));
 
64
        if (ret)
 
65
                goto err_kfree;
 
66
 
 
67
        dws->regs = ioremap_nocache((unsigned long)dws->paddr,
 
68
                                pci_resource_len(pdev, pci_bar));
 
69
        if (!dws->regs) {
 
70
                ret = -ENOMEM;
 
71
                goto err_release_reg;
 
72
        }
 
73
 
 
74
        dws->parent_dev = &pdev->dev;
 
75
        dws->bus_num = 0;
 
76
        dws->num_cs = 4;
 
77
        dws->irq = pdev->irq;
 
78
 
 
79
        /*
 
80
         * Specific handling for Intel MID paltforms, like dma setup,
 
81
         * clock rate, FIFO depth.
 
82
         */
 
83
        if (pdev->device == 0x0800) {
 
84
                ret = dw_spi_mid_init(dws);
 
85
                if (ret)
 
86
                        goto err_unmap;
 
87
        }
 
88
 
 
89
        ret = dw_spi_add_host(dws);
 
90
        if (ret)
 
91
                goto err_unmap;
 
92
 
 
93
        /* PCI hook and SPI hook use the same drv data */
 
94
        pci_set_drvdata(pdev, dwpci);
 
95
        return 0;
 
96
 
 
97
err_unmap:
 
98
        iounmap(dws->regs);
 
99
err_release_reg:
 
100
        pci_release_region(pdev, pci_bar);
 
101
err_kfree:
 
102
        kfree(dwpci);
 
103
err_disable:
 
104
        pci_disable_device(pdev);
 
105
        return ret;
 
106
}
 
107
 
 
108
static void __devexit spi_pci_remove(struct pci_dev *pdev)
 
109
{
 
110
        struct dw_spi_pci *dwpci = pci_get_drvdata(pdev);
 
111
 
 
112
        pci_set_drvdata(pdev, NULL);
 
113
        dw_spi_remove_host(&dwpci->dws);
 
114
        iounmap(dwpci->dws.regs);
 
115
        pci_release_region(pdev, 0);
 
116
        kfree(dwpci);
 
117
        pci_disable_device(pdev);
 
118
}
 
119
 
 
120
#ifdef CONFIG_PM
 
121
static int spi_suspend(struct pci_dev *pdev, pm_message_t state)
 
122
{
 
123
        struct dw_spi_pci *dwpci = pci_get_drvdata(pdev);
 
124
        int ret;
 
125
 
 
126
        ret = dw_spi_suspend_host(&dwpci->dws);
 
127
        if (ret)
 
128
                return ret;
 
129
        pci_save_state(pdev);
 
130
        pci_disable_device(pdev);
 
131
        pci_set_power_state(pdev, pci_choose_state(pdev, state));
 
132
        return ret;
 
133
}
 
134
 
 
135
static int spi_resume(struct pci_dev *pdev)
 
136
{
 
137
        struct dw_spi_pci *dwpci = pci_get_drvdata(pdev);
 
138
        int ret;
 
139
 
 
140
        pci_set_power_state(pdev, PCI_D0);
 
141
        pci_restore_state(pdev);
 
142
        ret = pci_enable_device(pdev);
 
143
        if (ret)
 
144
                return ret;
 
145
        return dw_spi_resume_host(&dwpci->dws);
 
146
}
 
147
#else
 
148
#define spi_suspend     NULL
 
149
#define spi_resume      NULL
 
150
#endif
 
151
 
 
152
static const struct pci_device_id pci_ids[] __devinitdata = {
 
153
        /* Intel MID platform SPI controller 0 */
 
154
        { PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x0800) },
 
155
        {},
 
156
};
 
157
 
 
158
static struct pci_driver dw_spi_driver = {
 
159
        .name =         DRIVER_NAME,
 
160
        .id_table =     pci_ids,
 
161
        .probe =        spi_pci_probe,
 
162
        .remove =       __devexit_p(spi_pci_remove),
 
163
        .suspend =      spi_suspend,
 
164
        .resume =       spi_resume,
 
165
};
 
166
 
 
167
static int __init mrst_spi_init(void)
 
168
{
 
169
        return pci_register_driver(&dw_spi_driver);
 
170
}
 
171
 
 
172
static void __exit mrst_spi_exit(void)
 
173
{
 
174
        pci_unregister_driver(&dw_spi_driver);
 
175
}
 
176
 
 
177
module_init(mrst_spi_init);
 
178
module_exit(mrst_spi_exit);
 
179
 
 
180
MODULE_AUTHOR("Feng Tang <feng.tang@intel.com>");
 
181
MODULE_DESCRIPTION("PCI interface driver for DW SPI Core");
 
182
MODULE_LICENSE("GPL v2");