Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 1 | /* |
Grant Likely | ca632f5 | 2011-06-06 01:16:30 -0600 | [diff] [blame] | 2 | * Memory-mapped interface driver for DW SPI Core |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 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> |
Jamie Iles | 50c01fc | 2011-01-11 12:43:52 +0000 | [diff] [blame] | 12 | #include <linux/err.h> |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 13 | #include <linux/interrupt.h> |
| 14 | #include <linux/platform_device.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 15 | #include <linux/slab.h> |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 16 | #include <linux/spi/spi.h> |
Grant Likely | 568a60e | 2011-02-28 12:47:12 -0700 | [diff] [blame] | 17 | #include <linux/scatterlist.h> |
Paul Gortmaker | d7614de | 2011-07-03 15:44:29 -0400 | [diff] [blame] | 18 | #include <linux/module.h> |
Baruch Siach | d9c73bb | 2014-01-31 12:07:47 +0200 | [diff] [blame] | 19 | #include <linux/of_gpio.h> |
Grant Likely | 568a60e | 2011-02-28 12:47:12 -0700 | [diff] [blame] | 20 | |
Grant Likely | ca632f5 | 2011-06-06 01:16:30 -0600 | [diff] [blame] | 21 | #include "spi-dw.h" |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 22 | |
| 23 | #define DRIVER_NAME "dw_spi_mmio" |
| 24 | |
| 25 | struct dw_spi_mmio { |
Jean-Hugues Deschenes | 0a4c1d7 | 2010-01-21 09:55:42 -0700 | [diff] [blame] | 26 | struct dw_spi dws; |
| 27 | struct clk *clk; |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 28 | }; |
| 29 | |
Grant Likely | fd4a319 | 2012-12-07 16:57:14 +0000 | [diff] [blame] | 30 | static int dw_spi_mmio_probe(struct platform_device *pdev) |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 31 | { |
| 32 | struct dw_spi_mmio *dwsmmio; |
| 33 | struct dw_spi *dws; |
Baruch Siach | 04f421e | 2013-12-30 20:30:44 +0200 | [diff] [blame] | 34 | struct resource *mem; |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 35 | int ret; |
| 36 | |
Baruch Siach | 04f421e | 2013-12-30 20:30:44 +0200 | [diff] [blame] | 37 | dwsmmio = devm_kzalloc(&pdev->dev, sizeof(struct dw_spi_mmio), |
| 38 | GFP_KERNEL); |
| 39 | if (!dwsmmio) |
| 40 | return -ENOMEM; |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 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"); |
Baruch Siach | 04f421e | 2013-12-30 20:30:44 +0200 | [diff] [blame] | 48 | return -EINVAL; |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 49 | } |
| 50 | |
Baruch Siach | 04f421e | 2013-12-30 20:30:44 +0200 | [diff] [blame] | 51 | dws->regs = devm_ioremap_resource(&pdev->dev, mem); |
| 52 | if (IS_ERR(dws->regs)) { |
| 53 | dev_err(&pdev->dev, "SPI region map failed\n"); |
| 54 | return PTR_ERR(dws->regs); |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 55 | } |
| 56 | |
| 57 | dws->irq = platform_get_irq(pdev, 0); |
| 58 | if (dws->irq < 0) { |
| 59 | dev_err(&pdev->dev, "no irq resource?\n"); |
Baruch Siach | 04f421e | 2013-12-30 20:30:44 +0200 | [diff] [blame] | 60 | return dws->irq; /* -ENXIO */ |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 61 | } |
| 62 | |
Baruch Siach | 04f421e | 2013-12-30 20:30:44 +0200 | [diff] [blame] | 63 | dwsmmio->clk = devm_clk_get(&pdev->dev, NULL); |
| 64 | if (IS_ERR(dwsmmio->clk)) |
| 65 | return PTR_ERR(dwsmmio->clk); |
Baruch Siach | 020fe3f | 2013-12-30 20:30:45 +0200 | [diff] [blame] | 66 | ret = clk_prepare_enable(dwsmmio->clk); |
Baruch Siach | 04f421e | 2013-12-30 20:30:44 +0200 | [diff] [blame] | 67 | if (ret) |
| 68 | return ret; |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 69 | |
Baruch Siach | 2418991e | 2014-01-26 10:14:32 +0200 | [diff] [blame] | 70 | dws->bus_num = pdev->id; |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 71 | dws->num_cs = 4; |
| 72 | dws->max_freq = clk_get_rate(dwsmmio->clk); |
| 73 | |
Baruch Siach | d9c73bb | 2014-01-31 12:07:47 +0200 | [diff] [blame] | 74 | if (pdev->dev.of_node) { |
| 75 | int i; |
| 76 | |
| 77 | for (i = 0; i < dws->num_cs; i++) { |
| 78 | int cs_gpio = of_get_named_gpio(pdev->dev.of_node, |
| 79 | "cs-gpios", i); |
| 80 | |
| 81 | if (cs_gpio == -EPROBE_DEFER) { |
| 82 | ret = cs_gpio; |
| 83 | goto out; |
| 84 | } |
| 85 | |
| 86 | if (gpio_is_valid(cs_gpio)) { |
| 87 | ret = devm_gpio_request(&pdev->dev, cs_gpio, |
| 88 | dev_name(&pdev->dev)); |
| 89 | if (ret) |
| 90 | goto out; |
| 91 | } |
| 92 | } |
| 93 | } |
| 94 | |
Baruch Siach | 04f421e | 2013-12-30 20:30:44 +0200 | [diff] [blame] | 95 | ret = dw_spi_add_host(&pdev->dev, dws); |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 96 | if (ret) |
Baruch Siach | 04f421e | 2013-12-30 20:30:44 +0200 | [diff] [blame] | 97 | goto out; |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 98 | |
| 99 | platform_set_drvdata(pdev, dwsmmio); |
| 100 | return 0; |
| 101 | |
Baruch Siach | 04f421e | 2013-12-30 20:30:44 +0200 | [diff] [blame] | 102 | out: |
Baruch Siach | 020fe3f | 2013-12-30 20:30:45 +0200 | [diff] [blame] | 103 | clk_disable_unprepare(dwsmmio->clk); |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 104 | return ret; |
| 105 | } |
| 106 | |
Grant Likely | fd4a319 | 2012-12-07 16:57:14 +0000 | [diff] [blame] | 107 | static int dw_spi_mmio_remove(struct platform_device *pdev) |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 108 | { |
| 109 | struct dw_spi_mmio *dwsmmio = platform_get_drvdata(pdev); |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 110 | |
Baruch Siach | 020fe3f | 2013-12-30 20:30:45 +0200 | [diff] [blame] | 111 | clk_disable_unprepare(dwsmmio->clk); |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 112 | dw_spi_remove_host(&dwsmmio->dws); |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 113 | |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 114 | return 0; |
| 115 | } |
| 116 | |
| 117 | static struct platform_driver dw_spi_mmio_driver = { |
Grant Likely | 940ab88 | 2011-10-05 11:29:49 -0600 | [diff] [blame] | 118 | .probe = dw_spi_mmio_probe, |
Grant Likely | fd4a319 | 2012-12-07 16:57:14 +0000 | [diff] [blame] | 119 | .remove = dw_spi_mmio_remove, |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 120 | .driver = { |
| 121 | .name = DRIVER_NAME, |
| 122 | .owner = THIS_MODULE, |
| 123 | }, |
| 124 | }; |
Grant Likely | 940ab88 | 2011-10-05 11:29:49 -0600 | [diff] [blame] | 125 | module_platform_driver(dw_spi_mmio_driver); |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 126 | |
| 127 | MODULE_AUTHOR("Jean-Hugues Deschenes <jean-hugues.deschenes@octasic.com>"); |
| 128 | MODULE_DESCRIPTION("Memory-mapped I/O interface driver for DW SPI Core"); |
| 129 | MODULE_LICENSE("GPL v2"); |