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> |
Steffen Trumtrar | 22dae17 | 2014-06-13 15:36:18 +0200 | [diff] [blame] | 19 | #include <linux/of.h> |
Baruch Siach | d9c73bb | 2014-01-31 12:07:47 +0200 | [diff] [blame] | 20 | #include <linux/of_gpio.h> |
Steffen Trumtrar | 22dae17 | 2014-06-13 15:36:18 +0200 | [diff] [blame] | 21 | #include <linux/of_platform.h> |
Andy Shevchenko | 9899995 | 2015-10-14 23:12:25 +0300 | [diff] [blame] | 22 | #include <linux/property.h> |
Grant Likely | 568a60e | 2011-02-28 12:47:12 -0700 | [diff] [blame] | 23 | |
Grant Likely | ca632f5 | 2011-06-06 01:16:30 -0600 | [diff] [blame] | 24 | #include "spi-dw.h" |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 25 | |
| 26 | #define DRIVER_NAME "dw_spi_mmio" |
| 27 | |
| 28 | struct dw_spi_mmio { |
Jean-Hugues Deschenes | 0a4c1d7 | 2010-01-21 09:55:42 -0700 | [diff] [blame] | 29 | struct dw_spi dws; |
| 30 | struct clk *clk; |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 31 | }; |
| 32 | |
Grant Likely | fd4a319 | 2012-12-07 16:57:14 +0000 | [diff] [blame] | 33 | static int dw_spi_mmio_probe(struct platform_device *pdev) |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 34 | { |
| 35 | struct dw_spi_mmio *dwsmmio; |
| 36 | struct dw_spi *dws; |
Baruch Siach | 04f421e | 2013-12-30 20:30:44 +0200 | [diff] [blame] | 37 | struct resource *mem; |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 38 | int ret; |
Steffen Trumtrar | 22dae17 | 2014-06-13 15:36:18 +0200 | [diff] [blame] | 39 | int num_cs; |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 40 | |
Baruch Siach | 04f421e | 2013-12-30 20:30:44 +0200 | [diff] [blame] | 41 | dwsmmio = devm_kzalloc(&pdev->dev, sizeof(struct dw_spi_mmio), |
| 42 | GFP_KERNEL); |
| 43 | if (!dwsmmio) |
| 44 | return -ENOMEM; |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 45 | |
| 46 | dws = &dwsmmio->dws; |
| 47 | |
| 48 | /* Get basic io resource and map it */ |
| 49 | mem = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
Baruch Siach | 04f421e | 2013-12-30 20:30:44 +0200 | [diff] [blame] | 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); |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 54 | } |
| 55 | |
| 56 | dws->irq = platform_get_irq(pdev, 0); |
| 57 | if (dws->irq < 0) { |
| 58 | dev_err(&pdev->dev, "no irq resource?\n"); |
Baruch Siach | 04f421e | 2013-12-30 20:30:44 +0200 | [diff] [blame] | 59 | return dws->irq; /* -ENXIO */ |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 60 | } |
| 61 | |
Baruch Siach | 04f421e | 2013-12-30 20:30:44 +0200 | [diff] [blame] | 62 | dwsmmio->clk = devm_clk_get(&pdev->dev, NULL); |
| 63 | if (IS_ERR(dwsmmio->clk)) |
| 64 | return PTR_ERR(dwsmmio->clk); |
Baruch Siach | 020fe3f | 2013-12-30 20:30:45 +0200 | [diff] [blame] | 65 | ret = clk_prepare_enable(dwsmmio->clk); |
Baruch Siach | 04f421e | 2013-12-30 20:30:44 +0200 | [diff] [blame] | 66 | if (ret) |
| 67 | return ret; |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 68 | |
Baruch Siach | 2418991e | 2014-01-26 10:14:32 +0200 | [diff] [blame] | 69 | dws->bus_num = pdev->id; |
Steffen Trumtrar | 22dae17 | 2014-06-13 15:36:18 +0200 | [diff] [blame] | 70 | |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 71 | dws->max_freq = clk_get_rate(dwsmmio->clk); |
| 72 | |
Andy Shevchenko | 9899995 | 2015-10-14 23:12:25 +0300 | [diff] [blame] | 73 | device_property_read_u32(&pdev->dev, "reg-io-width", &dws->reg_io_width); |
Michael van der Westhuizen | c4fe57f | 2015-08-18 22:21:53 +0200 | [diff] [blame] | 74 | |
Steffen Trumtrar | 22dae17 | 2014-06-13 15:36:18 +0200 | [diff] [blame] | 75 | num_cs = 4; |
| 76 | |
Andy Shevchenko | 9899995 | 2015-10-14 23:12:25 +0300 | [diff] [blame] | 77 | device_property_read_u32(&pdev->dev, "num-cs", &num_cs); |
Steffen Trumtrar | 22dae17 | 2014-06-13 15:36:18 +0200 | [diff] [blame] | 78 | |
| 79 | dws->num_cs = num_cs; |
| 80 | |
Baruch Siach | d9c73bb | 2014-01-31 12:07:47 +0200 | [diff] [blame] | 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 | |
Baruch Siach | 04f421e | 2013-12-30 20:30:44 +0200 | [diff] [blame] | 102 | ret = dw_spi_add_host(&pdev->dev, dws); |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 103 | if (ret) |
Baruch Siach | 04f421e | 2013-12-30 20:30:44 +0200 | [diff] [blame] | 104 | goto out; |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 105 | |
| 106 | platform_set_drvdata(pdev, dwsmmio); |
| 107 | return 0; |
| 108 | |
Baruch Siach | 04f421e | 2013-12-30 20:30:44 +0200 | [diff] [blame] | 109 | out: |
Baruch Siach | 020fe3f | 2013-12-30 20:30:45 +0200 | [diff] [blame] | 110 | clk_disable_unprepare(dwsmmio->clk); |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 111 | return ret; |
| 112 | } |
| 113 | |
Grant Likely | fd4a319 | 2012-12-07 16:57:14 +0000 | [diff] [blame] | 114 | static int dw_spi_mmio_remove(struct platform_device *pdev) |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 115 | { |
| 116 | struct dw_spi_mmio *dwsmmio = platform_get_drvdata(pdev); |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 117 | |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 118 | dw_spi_remove_host(&dwsmmio->dws); |
Marek Vasut | f5df9a5 | 2017-04-18 20:09:06 +0200 | [diff] [blame] | 119 | clk_disable_unprepare(dwsmmio->clk); |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 120 | |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 121 | return 0; |
| 122 | } |
| 123 | |
Steffen Trumtrar | 22dae17 | 2014-06-13 15:36:18 +0200 | [diff] [blame] | 124 | static const struct of_device_id dw_spi_mmio_of_match[] = { |
| 125 | { .compatible = "snps,dw-apb-ssi", }, |
| 126 | { /* end of table */} |
| 127 | }; |
| 128 | MODULE_DEVICE_TABLE(of, dw_spi_mmio_of_match); |
| 129 | |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 130 | static struct platform_driver dw_spi_mmio_driver = { |
Grant Likely | 940ab88 | 2011-10-05 11:29:49 -0600 | [diff] [blame] | 131 | .probe = dw_spi_mmio_probe, |
Grant Likely | fd4a319 | 2012-12-07 16:57:14 +0000 | [diff] [blame] | 132 | .remove = dw_spi_mmio_remove, |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 133 | .driver = { |
| 134 | .name = DRIVER_NAME, |
Steffen Trumtrar | 22dae17 | 2014-06-13 15:36:18 +0200 | [diff] [blame] | 135 | .of_match_table = dw_spi_mmio_of_match, |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 136 | }, |
| 137 | }; |
Grant Likely | 940ab88 | 2011-10-05 11:29:49 -0600 | [diff] [blame] | 138 | module_platform_driver(dw_spi_mmio_driver); |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 139 | |
| 140 | MODULE_AUTHOR("Jean-Hugues Deschenes <jean-hugues.deschenes@octasic.com>"); |
| 141 | MODULE_DESCRIPTION("Memory-mapped I/O interface driver for DW SPI Core"); |
| 142 | MODULE_LICENSE("GPL v2"); |