spi-dw-pci.c 3.5 KB
Newer Older
1
/*
G
Grant Likely 已提交
2
 * PCI interface driver for DW SPI Core
3
 *
4
 * Copyright (c) 2009, 2014 Intel Corporation.
5 6 7 8 9 10 11 12 13 14 15 16 17
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms and conditions of the GNU General Public License,
 * version 2, as published by the Free Software Foundation.
 *
 * This program is distributed in the hope it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 * more details.
 */

#include <linux/interrupt.h>
#include <linux/pci.h>
18
#include <linux/slab.h>
19
#include <linux/spi/spi.h>
20
#include <linux/module.h>
21

G
Grant Likely 已提交
22
#include "spi-dw.h"
23

24 25
#define DRIVER_NAME "dw_spi_pci"

26 27
struct spi_pci_desc {
	int	(*setup)(struct dw_spi *);
28 29
	u16	num_cs;
	u16	bus_num;
30 31
};

32
static struct spi_pci_desc spi_pci_mid_desc_1 = {
33
	.setup = dw_spi_mid_init,
34
	.num_cs = 5,
35 36 37 38 39
	.bus_num = 0,
};

static struct spi_pci_desc spi_pci_mid_desc_2 = {
	.setup = dw_spi_mid_init,
40
	.num_cs = 2,
41
	.bus_num = 1,
42 43 44
};

static int spi_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
45 46
{
	struct dw_spi *dws;
47
	struct spi_pci_desc *desc = (struct spi_pci_desc *)ent->driver_data;
48 49 50
	int pci_bar = 0;
	int ret;

B
Baruch Siach 已提交
51
	ret = pcim_enable_device(pdev);
52 53 54
	if (ret)
		return ret;

55 56
	dws = devm_kzalloc(&pdev->dev, sizeof(*dws), GFP_KERNEL);
	if (!dws)
B
Baruch Siach 已提交
57
		return -ENOMEM;
58 59 60 61

	/* Get basic io resource and map it */
	dws->paddr = pci_resource_start(pdev, pci_bar);

62
	ret = pcim_iomap_regions(pdev, 1 << pci_bar, pci_name(pdev));
63
	if (ret)
B
Baruch Siach 已提交
64
		return ret;
65

66
	dws->regs = pcim_iomap_table(pdev)[pci_bar];
67
	dws->irq = pdev->irq;
F
Feng Tang 已提交
68 69

	/*
70
	 * Specific handling for platforms, like dma setup,
F
Feng Tang 已提交
71 72
	 * clock rate, FIFO depth.
	 */
73
	if (desc) {
74 75 76
		dws->num_cs = desc->num_cs;
		dws->bus_num = desc->bus_num;

77 78 79 80 81 82 83
		if (desc->setup) {
			ret = desc->setup(dws);
			if (ret)
				return ret;
		}
	} else {
		return -ENODEV;
F
Feng Tang 已提交
84
	}
85

B
Baruch Siach 已提交
86
	ret = dw_spi_add_host(&pdev->dev, dws);
87
	if (ret)
B
Baruch Siach 已提交
88
		return ret;
89 90

	/* PCI hook and SPI hook use the same drv data */
91
	pci_set_drvdata(pdev, dws);
92

93 94 95
	dev_info(&pdev->dev, "found PCI SPI controller(ID: %04x:%04x)\n",
		pdev->vendor, pdev->device);

B
Baruch Siach 已提交
96
	return 0;
97 98
}

99
static void spi_pci_remove(struct pci_dev *pdev)
100
{
101
	struct dw_spi *dws = pci_get_drvdata(pdev);
102

103
	dw_spi_remove_host(dws);
104 105
}

106 107
#ifdef CONFIG_PM_SLEEP
static int spi_suspend(struct device *dev)
108
{
109
	struct pci_dev *pdev = to_pci_dev(dev);
110
	struct dw_spi *dws = pci_get_drvdata(pdev);
111

112
	return dw_spi_suspend_host(dws);
113 114
}

115
static int spi_resume(struct device *dev)
116
{
117
	struct pci_dev *pdev = to_pci_dev(dev);
118
	struct dw_spi *dws = pci_get_drvdata(pdev);
119

120
	return dw_spi_resume_host(dws);
121 122 123
}
#endif

124 125
static SIMPLE_DEV_PM_OPS(dw_spi_pm_ops, spi_suspend, spi_resume);

126
static const struct pci_device_id pci_ids[] = {
F
Feng Tang 已提交
127
	/* Intel MID platform SPI controller 0 */
128 129 130 131 132 133 134 135
	/*
	 * The access to the device 8086:0801 is disabled by HW, since it's
	 * exclusively used by SCU to communicate with MSIC.
	 */
	/* Intel MID platform SPI controller 1 */
	{ PCI_VDEVICE(INTEL, 0x0800), (kernel_ulong_t)&spi_pci_mid_desc_1},
	/* Intel MID platform SPI controller 2 */
	{ PCI_VDEVICE(INTEL, 0x0812), (kernel_ulong_t)&spi_pci_mid_desc_2},
136 137 138 139 140 141 142
	{},
};

static struct pci_driver dw_spi_driver = {
	.name =		DRIVER_NAME,
	.id_table =	pci_ids,
	.probe =	spi_pci_probe,
143
	.remove =	spi_pci_remove,
144 145 146
	.driver         = {
		.pm     = &dw_spi_pm_ops,
	},
147 148
};

A
Axel Lin 已提交
149
module_pci_driver(dw_spi_driver);
150 151 152 153

MODULE_AUTHOR("Feng Tang <feng.tang@intel.com>");
MODULE_DESCRIPTION("PCI interface driver for DW SPI Core");
MODULE_LICENSE("GPL v2");