Linux Audio

Check our new training course

Loading...
v4.6
  1/*
  2 * Memory-mapped interface driver for DW SPI Core
  3 *
  4 * Copyright (c) 2010, Octasic semiconductor.
  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
 11#include <linux/clk.h>
 12#include <linux/err.h>
 13#include <linux/interrupt.h>
 14#include <linux/platform_device.h>
 15#include <linux/slab.h>
 16#include <linux/spi/spi.h>
 17#include <linux/scatterlist.h>
 18#include <linux/module.h>
 19#include <linux/of.h>
 20#include <linux/of_gpio.h>
 21#include <linux/of_platform.h>
 22#include <linux/property.h>
 23
 24#include "spi-dw.h"
 25
 26#define DRIVER_NAME "dw_spi_mmio"
 27
 28struct dw_spi_mmio {
 29	struct dw_spi  dws;
 30	struct clk     *clk;
 31};
 32
 33static int dw_spi_mmio_probe(struct platform_device *pdev)
 34{
 35	struct dw_spi_mmio *dwsmmio;
 36	struct dw_spi *dws;
 37	struct resource *mem;
 38	int ret;
 39	int num_cs;
 40
 41	dwsmmio = devm_kzalloc(&pdev->dev, sizeof(struct dw_spi_mmio),
 42			GFP_KERNEL);
 43	if (!dwsmmio)
 44		return -ENOMEM;
 
 45
 46	dws = &dwsmmio->dws;
 47
 48	/* Get basic io resource and map it */
 49	mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
 50	dws->regs = devm_ioremap_resource(&pdev->dev, mem);
 51	if (IS_ERR(dws->regs)) {
 52		dev_err(&pdev->dev, "SPI region map failed\n");
 53		return PTR_ERR(dws->regs);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 54	}
 55
 56	dws->irq = platform_get_irq(pdev, 0);
 57	if (dws->irq < 0) {
 58		dev_err(&pdev->dev, "no irq resource?\n");
 59		return dws->irq; /* -ENXIO */
 
 60	}
 61
 62	dwsmmio->clk = devm_clk_get(&pdev->dev, NULL);
 63	if (IS_ERR(dwsmmio->clk))
 64		return PTR_ERR(dwsmmio->clk);
 65	ret = clk_prepare_enable(dwsmmio->clk);
 66	if (ret)
 67		return ret;
 68
 69	dws->bus_num = pdev->id;
 70
 
 
 
 71	dws->max_freq = clk_get_rate(dwsmmio->clk);
 72
 73	device_property_read_u32(&pdev->dev, "reg-io-width", &dws->reg_io_width);
 74
 75	num_cs = 4;
 76
 77	device_property_read_u32(&pdev->dev, "num-cs", &num_cs);
 78
 79	dws->num_cs = num_cs;
 80
 81	if (pdev->dev.of_node) {
 82		int i;
 83
 84		for (i = 0; i < dws->num_cs; i++) {
 85			int cs_gpio = of_get_named_gpio(pdev->dev.of_node,
 86					"cs-gpios", i);
 87
 88			if (cs_gpio == -EPROBE_DEFER) {
 89				ret = cs_gpio;
 90				goto out;
 91			}
 92
 93			if (gpio_is_valid(cs_gpio)) {
 94				ret = devm_gpio_request(&pdev->dev, cs_gpio,
 95						dev_name(&pdev->dev));
 96				if (ret)
 97					goto out;
 98			}
 99		}
100	}
101
102	ret = dw_spi_add_host(&pdev->dev, dws);
103	if (ret)
104		goto out;
105
106	platform_set_drvdata(pdev, dwsmmio);
107	return 0;
108
109out:
110	clk_disable_unprepare(dwsmmio->clk);
 
 
 
 
 
 
 
 
 
 
 
111	return ret;
112}
113
114static int dw_spi_mmio_remove(struct platform_device *pdev)
115{
116	struct dw_spi_mmio *dwsmmio = platform_get_drvdata(pdev);
 
 
 
 
 
 
 
117
118	clk_disable_unprepare(dwsmmio->clk);
119	dw_spi_remove_host(&dwsmmio->dws);
 
 
120
 
 
121	return 0;
122}
123
124static const struct of_device_id dw_spi_mmio_of_match[] = {
125	{ .compatible = "snps,dw-apb-ssi", },
126	{ /* end of table */}
127};
128MODULE_DEVICE_TABLE(of, dw_spi_mmio_of_match);
129
130static struct platform_driver dw_spi_mmio_driver = {
131	.probe		= dw_spi_mmio_probe,
132	.remove		= dw_spi_mmio_remove,
133	.driver		= {
134		.name	= DRIVER_NAME,
135		.of_match_table = dw_spi_mmio_of_match,
136	},
137};
138module_platform_driver(dw_spi_mmio_driver);
139
140MODULE_AUTHOR("Jean-Hugues Deschenes <jean-hugues.deschenes@octasic.com>");
141MODULE_DESCRIPTION("Memory-mapped I/O interface driver for DW SPI Core");
142MODULE_LICENSE("GPL v2");
v3.5.6
  1/*
  2 * Memory-mapped interface driver for DW SPI Core
  3 *
  4 * Copyright (c) 2010, Octasic semiconductor.
  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
 11#include <linux/clk.h>
 12#include <linux/err.h>
 13#include <linux/interrupt.h>
 14#include <linux/platform_device.h>
 15#include <linux/slab.h>
 16#include <linux/spi/spi.h>
 17#include <linux/scatterlist.h>
 18#include <linux/module.h>
 
 
 
 
 19
 20#include "spi-dw.h"
 21
 22#define DRIVER_NAME "dw_spi_mmio"
 23
 24struct dw_spi_mmio {
 25	struct dw_spi  dws;
 26	struct clk     *clk;
 27};
 28
 29static int __devinit dw_spi_mmio_probe(struct platform_device *pdev)
 30{
 31	struct dw_spi_mmio *dwsmmio;
 32	struct dw_spi *dws;
 33	struct resource *mem, *ioarea;
 34	int ret;
 
 35
 36	dwsmmio = kzalloc(sizeof(struct dw_spi_mmio), GFP_KERNEL);
 37	if (!dwsmmio) {
 38		ret = -ENOMEM;
 39		goto err_end;
 40	}
 41
 42	dws = &dwsmmio->dws;
 43
 44	/* Get basic io resource and map it */
 45	mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
 46	if (!mem) {
 47		dev_err(&pdev->dev, "no mem resource?\n");
 48		ret = -EINVAL;
 49		goto err_kfree;
 50	}
 51
 52	ioarea = request_mem_region(mem->start, resource_size(mem),
 53			pdev->name);
 54	if (!ioarea) {
 55		dev_err(&pdev->dev, "SPI region already claimed\n");
 56		ret = -EBUSY;
 57		goto err_kfree;
 58	}
 59
 60	dws->regs = ioremap_nocache(mem->start, resource_size(mem));
 61	if (!dws->regs) {
 62		dev_err(&pdev->dev, "SPI region already mapped\n");
 63		ret = -ENOMEM;
 64		goto err_release_reg;
 65	}
 66
 67	dws->irq = platform_get_irq(pdev, 0);
 68	if (dws->irq < 0) {
 69		dev_err(&pdev->dev, "no irq resource?\n");
 70		ret = dws->irq; /* -ENXIO */
 71		goto err_unmap;
 72	}
 73
 74	dwsmmio->clk = clk_get(&pdev->dev, NULL);
 75	if (IS_ERR(dwsmmio->clk)) {
 76		ret = PTR_ERR(dwsmmio->clk);
 77		goto err_irq;
 78	}
 79	clk_enable(dwsmmio->clk);
 
 
 80
 81	dws->parent_dev = &pdev->dev;
 82	dws->bus_num = 0;
 83	dws->num_cs = 4;
 84	dws->max_freq = clk_get_rate(dwsmmio->clk);
 85
 86	ret = dw_spi_add_host(dws);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 87	if (ret)
 88		goto err_clk;
 89
 90	platform_set_drvdata(pdev, dwsmmio);
 91	return 0;
 92
 93err_clk:
 94	clk_disable(dwsmmio->clk);
 95	clk_put(dwsmmio->clk);
 96	dwsmmio->clk = NULL;
 97err_irq:
 98	free_irq(dws->irq, dws);
 99err_unmap:
100	iounmap(dws->regs);
101err_release_reg:
102	release_mem_region(mem->start, resource_size(mem));
103err_kfree:
104	kfree(dwsmmio);
105err_end:
106	return ret;
107}
108
109static int __devexit dw_spi_mmio_remove(struct platform_device *pdev)
110{
111	struct dw_spi_mmio *dwsmmio = platform_get_drvdata(pdev);
112	struct resource *mem;
113
114	platform_set_drvdata(pdev, NULL);
115
116	clk_disable(dwsmmio->clk);
117	clk_put(dwsmmio->clk);
118	dwsmmio->clk = NULL;
119
120	free_irq(dwsmmio->dws.irq, &dwsmmio->dws);
121	dw_spi_remove_host(&dwsmmio->dws);
122	iounmap(dwsmmio->dws.regs);
123	kfree(dwsmmio);
124
125	mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
126	release_mem_region(mem->start, resource_size(mem));
127	return 0;
128}
129
 
 
 
 
 
 
130static struct platform_driver dw_spi_mmio_driver = {
131	.probe		= dw_spi_mmio_probe,
132	.remove		= __devexit_p(dw_spi_mmio_remove),
133	.driver		= {
134		.name	= DRIVER_NAME,
135		.owner	= THIS_MODULE,
136	},
137};
138module_platform_driver(dw_spi_mmio_driver);
139
140MODULE_AUTHOR("Jean-Hugues Deschenes <jean-hugues.deschenes@octasic.com>");
141MODULE_DESCRIPTION("Memory-mapped I/O interface driver for DW SPI Core");
142MODULE_LICENSE("GPL v2");