Linux Audio

Check our new training course

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