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> |
Alexandre Belloni | c2c25cc | 2018-07-27 21:53:56 +0200 | [diff] [blame] | 18 | #include <linux/mfd/syscon.h> |
Paul Gortmaker | d7614de | 2011-07-03 15:44:29 -0400 | [diff] [blame] | 19 | #include <linux/module.h> |
Steffen Trumtrar | 22dae17 | 2014-06-13 15:36:18 +0200 | [diff] [blame] | 20 | #include <linux/of.h> |
Baruch Siach | d9c73bb | 2014-01-31 12:07:47 +0200 | [diff] [blame] | 21 | #include <linux/of_gpio.h> |
Steffen Trumtrar | 22dae17 | 2014-06-13 15:36:18 +0200 | [diff] [blame] | 22 | #include <linux/of_platform.h> |
Andy Shevchenko | 9899995 | 2015-10-14 23:12:25 +0300 | [diff] [blame] | 23 | #include <linux/property.h> |
Alexandre Belloni | c2c25cc | 2018-07-27 21:53:56 +0200 | [diff] [blame] | 24 | #include <linux/regmap.h> |
Grant Likely | 568a60e | 2011-02-28 12:47:12 -0700 | [diff] [blame] | 25 | |
Grant Likely | ca632f5 | 2011-06-06 01:16:30 -0600 | [diff] [blame] | 26 | #include "spi-dw.h" |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 27 | |
| 28 | #define DRIVER_NAME "dw_spi_mmio" |
| 29 | |
| 30 | struct dw_spi_mmio { |
Jean-Hugues Deschenes | 0a4c1d7 | 2010-01-21 09:55:42 -0700 | [diff] [blame] | 31 | struct dw_spi dws; |
| 32 | struct clk *clk; |
Alexandre Belloni | c2c25cc | 2018-07-27 21:53:56 +0200 | [diff] [blame] | 33 | void *priv; |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 34 | }; |
| 35 | |
Alexandre Belloni | c2c25cc | 2018-07-27 21:53:56 +0200 | [diff] [blame] | 36 | #define MSCC_CPU_SYSTEM_CTRL_GENERAL_CTRL 0x24 |
Alexandre Belloni | c2c25cc | 2018-07-27 21:53:56 +0200 | [diff] [blame] | 37 | #define OCELOT_IF_SI_OWNER_OFFSET 4 |
Alexandre Belloni | be17ee0 | 2018-08-29 14:45:48 +0200 | [diff] [blame] | 38 | #define JAGUAR2_IF_SI_OWNER_OFFSET 6 |
Alexandre Belloni | c1d8b08 | 2018-08-31 13:40:46 +0200 | [diff] [blame] | 39 | #define MSCC_IF_SI_OWNER_MASK GENMASK(1, 0) |
Alexandre Belloni | c2c25cc | 2018-07-27 21:53:56 +0200 | [diff] [blame] | 40 | #define MSCC_IF_SI_OWNER_SISL 0 |
| 41 | #define MSCC_IF_SI_OWNER_SIBM 1 |
| 42 | #define MSCC_IF_SI_OWNER_SIMC 2 |
| 43 | |
| 44 | #define MSCC_SPI_MST_SW_MODE 0x14 |
| 45 | #define MSCC_SPI_MST_SW_MODE_SW_PIN_CTRL_MODE BIT(13) |
| 46 | #define MSCC_SPI_MST_SW_MODE_SW_SPI_CS(x) (x << 5) |
| 47 | |
| 48 | struct dw_spi_mscc { |
| 49 | struct regmap *syscon; |
| 50 | void __iomem *spi_mst; |
| 51 | }; |
| 52 | |
| 53 | /* |
| 54 | * The Designware SPI controller (referred to as master in the documentation) |
| 55 | * automatically deasserts chip select when the tx fifo is empty. The chip |
| 56 | * selects then needs to be either driven as GPIOs or, for the first 4 using the |
| 57 | * the SPI boot controller registers. the final chip select is an OR gate |
| 58 | * between the Designware SPI controller and the SPI boot controller. |
| 59 | */ |
| 60 | static void dw_spi_mscc_set_cs(struct spi_device *spi, bool enable) |
| 61 | { |
| 62 | struct dw_spi *dws = spi_master_get_devdata(spi->master); |
| 63 | struct dw_spi_mmio *dwsmmio = container_of(dws, struct dw_spi_mmio, dws); |
| 64 | struct dw_spi_mscc *dwsmscc = dwsmmio->priv; |
| 65 | u32 cs = spi->chip_select; |
| 66 | |
| 67 | if (cs < 4) { |
| 68 | u32 sw_mode = MSCC_SPI_MST_SW_MODE_SW_PIN_CTRL_MODE; |
| 69 | |
| 70 | if (!enable) |
| 71 | sw_mode |= MSCC_SPI_MST_SW_MODE_SW_SPI_CS(BIT(cs)); |
| 72 | |
| 73 | writel(sw_mode, dwsmscc->spi_mst + MSCC_SPI_MST_SW_MODE); |
| 74 | } |
| 75 | |
| 76 | dw_spi_set_cs(spi, enable); |
| 77 | } |
| 78 | |
| 79 | static int dw_spi_mscc_init(struct platform_device *pdev, |
Alexandre Belloni | be17ee0 | 2018-08-29 14:45:48 +0200 | [diff] [blame] | 80 | struct dw_spi_mmio *dwsmmio, |
| 81 | const char *cpu_syscon, u32 if_si_owner_offset) |
Alexandre Belloni | c2c25cc | 2018-07-27 21:53:56 +0200 | [diff] [blame] | 82 | { |
| 83 | struct dw_spi_mscc *dwsmscc; |
| 84 | struct resource *res; |
| 85 | |
| 86 | dwsmscc = devm_kzalloc(&pdev->dev, sizeof(*dwsmscc), GFP_KERNEL); |
| 87 | if (!dwsmscc) |
| 88 | return -ENOMEM; |
| 89 | |
| 90 | res = platform_get_resource(pdev, IORESOURCE_MEM, 1); |
| 91 | dwsmscc->spi_mst = devm_ioremap_resource(&pdev->dev, res); |
| 92 | if (IS_ERR(dwsmscc->spi_mst)) { |
| 93 | dev_err(&pdev->dev, "SPI_MST region map failed\n"); |
| 94 | return PTR_ERR(dwsmscc->spi_mst); |
| 95 | } |
| 96 | |
Alexandre Belloni | be17ee0 | 2018-08-29 14:45:48 +0200 | [diff] [blame] | 97 | dwsmscc->syscon = syscon_regmap_lookup_by_compatible(cpu_syscon); |
Alexandre Belloni | c2c25cc | 2018-07-27 21:53:56 +0200 | [diff] [blame] | 98 | if (IS_ERR(dwsmscc->syscon)) |
| 99 | return PTR_ERR(dwsmscc->syscon); |
| 100 | |
| 101 | /* Deassert all CS */ |
| 102 | writel(0, dwsmscc->spi_mst + MSCC_SPI_MST_SW_MODE); |
| 103 | |
| 104 | /* Select the owner of the SI interface */ |
| 105 | regmap_update_bits(dwsmscc->syscon, MSCC_CPU_SYSTEM_CTRL_GENERAL_CTRL, |
Alexandre Belloni | c1d8b08 | 2018-08-31 13:40:46 +0200 | [diff] [blame] | 106 | MSCC_IF_SI_OWNER_MASK << if_si_owner_offset, |
Alexandre Belloni | be17ee0 | 2018-08-29 14:45:48 +0200 | [diff] [blame] | 107 | MSCC_IF_SI_OWNER_SIMC << if_si_owner_offset); |
Alexandre Belloni | c2c25cc | 2018-07-27 21:53:56 +0200 | [diff] [blame] | 108 | |
| 109 | dwsmmio->dws.set_cs = dw_spi_mscc_set_cs; |
| 110 | dwsmmio->priv = dwsmscc; |
| 111 | |
| 112 | return 0; |
| 113 | } |
| 114 | |
Alexandre Belloni | be17ee0 | 2018-08-29 14:45:48 +0200 | [diff] [blame] | 115 | static int dw_spi_mscc_ocelot_init(struct platform_device *pdev, |
| 116 | struct dw_spi_mmio *dwsmmio) |
| 117 | { |
| 118 | return dw_spi_mscc_init(pdev, dwsmmio, "mscc,ocelot-cpu-syscon", |
| 119 | OCELOT_IF_SI_OWNER_OFFSET); |
| 120 | } |
| 121 | |
| 122 | static int dw_spi_mscc_jaguar2_init(struct platform_device *pdev, |
| 123 | struct dw_spi_mmio *dwsmmio) |
| 124 | { |
| 125 | return dw_spi_mscc_init(pdev, dwsmmio, "mscc,jaguar2-cpu-syscon", |
| 126 | JAGUAR2_IF_SI_OWNER_OFFSET); |
| 127 | } |
| 128 | |
Talel Shenhar | f2d7047 | 2018-10-11 14:20:07 +0300 | [diff] [blame] | 129 | static int dw_spi_alpine_init(struct platform_device *pdev, |
| 130 | struct dw_spi_mmio *dwsmmio) |
| 131 | { |
| 132 | dwsmmio->dws.cs_override = 1; |
| 133 | |
| 134 | return 0; |
| 135 | } |
| 136 | |
Grant Likely | fd4a319 | 2012-12-07 16:57:14 +0000 | [diff] [blame] | 137 | static int dw_spi_mmio_probe(struct platform_device *pdev) |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 138 | { |
Alexandre Belloni | c2c25cc | 2018-07-27 21:53:56 +0200 | [diff] [blame] | 139 | int (*init_func)(struct platform_device *pdev, |
| 140 | struct dw_spi_mmio *dwsmmio); |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 141 | struct dw_spi_mmio *dwsmmio; |
| 142 | struct dw_spi *dws; |
Baruch Siach | 04f421e | 2013-12-30 20:30:44 +0200 | [diff] [blame] | 143 | struct resource *mem; |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 144 | int ret; |
Steffen Trumtrar | 22dae17 | 2014-06-13 15:36:18 +0200 | [diff] [blame] | 145 | int num_cs; |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 146 | |
Baruch Siach | 04f421e | 2013-12-30 20:30:44 +0200 | [diff] [blame] | 147 | dwsmmio = devm_kzalloc(&pdev->dev, sizeof(struct dw_spi_mmio), |
| 148 | GFP_KERNEL); |
| 149 | if (!dwsmmio) |
| 150 | return -ENOMEM; |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 151 | |
| 152 | dws = &dwsmmio->dws; |
| 153 | |
| 154 | /* Get basic io resource and map it */ |
| 155 | mem = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
Baruch Siach | 04f421e | 2013-12-30 20:30:44 +0200 | [diff] [blame] | 156 | dws->regs = devm_ioremap_resource(&pdev->dev, mem); |
| 157 | if (IS_ERR(dws->regs)) { |
| 158 | dev_err(&pdev->dev, "SPI region map failed\n"); |
| 159 | return PTR_ERR(dws->regs); |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 160 | } |
| 161 | |
| 162 | dws->irq = platform_get_irq(pdev, 0); |
| 163 | if (dws->irq < 0) { |
| 164 | dev_err(&pdev->dev, "no irq resource?\n"); |
Baruch Siach | 04f421e | 2013-12-30 20:30:44 +0200 | [diff] [blame] | 165 | return dws->irq; /* -ENXIO */ |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 166 | } |
| 167 | |
Baruch Siach | 04f421e | 2013-12-30 20:30:44 +0200 | [diff] [blame] | 168 | dwsmmio->clk = devm_clk_get(&pdev->dev, NULL); |
| 169 | if (IS_ERR(dwsmmio->clk)) |
| 170 | return PTR_ERR(dwsmmio->clk); |
Baruch Siach | 020fe3f | 2013-12-30 20:30:45 +0200 | [diff] [blame] | 171 | ret = clk_prepare_enable(dwsmmio->clk); |
Baruch Siach | 04f421e | 2013-12-30 20:30:44 +0200 | [diff] [blame] | 172 | if (ret) |
| 173 | return ret; |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 174 | |
Baruch Siach | 2418991e | 2014-01-26 10:14:32 +0200 | [diff] [blame] | 175 | dws->bus_num = pdev->id; |
Steffen Trumtrar | 22dae17 | 2014-06-13 15:36:18 +0200 | [diff] [blame] | 176 | |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 177 | dws->max_freq = clk_get_rate(dwsmmio->clk); |
| 178 | |
Andy Shevchenko | 9899995 | 2015-10-14 23:12:25 +0300 | [diff] [blame] | 179 | 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] | 180 | |
Steffen Trumtrar | 22dae17 | 2014-06-13 15:36:18 +0200 | [diff] [blame] | 181 | num_cs = 4; |
| 182 | |
Andy Shevchenko | 9899995 | 2015-10-14 23:12:25 +0300 | [diff] [blame] | 183 | device_property_read_u32(&pdev->dev, "num-cs", &num_cs); |
Steffen Trumtrar | 22dae17 | 2014-06-13 15:36:18 +0200 | [diff] [blame] | 184 | |
| 185 | dws->num_cs = num_cs; |
| 186 | |
Baruch Siach | d9c73bb | 2014-01-31 12:07:47 +0200 | [diff] [blame] | 187 | if (pdev->dev.of_node) { |
| 188 | int i; |
| 189 | |
| 190 | for (i = 0; i < dws->num_cs; i++) { |
| 191 | int cs_gpio = of_get_named_gpio(pdev->dev.of_node, |
| 192 | "cs-gpios", i); |
| 193 | |
| 194 | if (cs_gpio == -EPROBE_DEFER) { |
| 195 | ret = cs_gpio; |
| 196 | goto out; |
| 197 | } |
| 198 | |
| 199 | if (gpio_is_valid(cs_gpio)) { |
| 200 | ret = devm_gpio_request(&pdev->dev, cs_gpio, |
| 201 | dev_name(&pdev->dev)); |
| 202 | if (ret) |
| 203 | goto out; |
| 204 | } |
| 205 | } |
| 206 | } |
| 207 | |
Alexandre Belloni | c2c25cc | 2018-07-27 21:53:56 +0200 | [diff] [blame] | 208 | init_func = device_get_match_data(&pdev->dev); |
| 209 | if (init_func) { |
| 210 | ret = init_func(pdev, dwsmmio); |
| 211 | if (ret) |
| 212 | goto out; |
| 213 | } |
| 214 | |
Baruch Siach | 04f421e | 2013-12-30 20:30:44 +0200 | [diff] [blame] | 215 | ret = dw_spi_add_host(&pdev->dev, dws); |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 216 | if (ret) |
Baruch Siach | 04f421e | 2013-12-30 20:30:44 +0200 | [diff] [blame] | 217 | goto out; |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 218 | |
| 219 | platform_set_drvdata(pdev, dwsmmio); |
| 220 | return 0; |
| 221 | |
Baruch Siach | 04f421e | 2013-12-30 20:30:44 +0200 | [diff] [blame] | 222 | out: |
Baruch Siach | 020fe3f | 2013-12-30 20:30:45 +0200 | [diff] [blame] | 223 | clk_disable_unprepare(dwsmmio->clk); |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 224 | return ret; |
| 225 | } |
| 226 | |
Grant Likely | fd4a319 | 2012-12-07 16:57:14 +0000 | [diff] [blame] | 227 | static int dw_spi_mmio_remove(struct platform_device *pdev) |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 228 | { |
| 229 | struct dw_spi_mmio *dwsmmio = platform_get_drvdata(pdev); |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 230 | |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 231 | dw_spi_remove_host(&dwsmmio->dws); |
Marek Vasut | 400c18e | 2017-04-18 20:09:06 +0200 | [diff] [blame] | 232 | clk_disable_unprepare(dwsmmio->clk); |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 233 | |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 234 | return 0; |
| 235 | } |
| 236 | |
Steffen Trumtrar | 22dae17 | 2014-06-13 15:36:18 +0200 | [diff] [blame] | 237 | static const struct of_device_id dw_spi_mmio_of_match[] = { |
| 238 | { .compatible = "snps,dw-apb-ssi", }, |
Alexandre Belloni | be17ee0 | 2018-08-29 14:45:48 +0200 | [diff] [blame] | 239 | { .compatible = "mscc,ocelot-spi", .data = dw_spi_mscc_ocelot_init}, |
| 240 | { .compatible = "mscc,jaguar2-spi", .data = dw_spi_mscc_jaguar2_init}, |
Talel Shenhar | f2d7047 | 2018-10-11 14:20:07 +0300 | [diff] [blame] | 241 | { .compatible = "amazon,alpine-dw-apb-ssi", .data = dw_spi_alpine_init}, |
Steffen Trumtrar | 22dae17 | 2014-06-13 15:36:18 +0200 | [diff] [blame] | 242 | { /* end of table */} |
| 243 | }; |
| 244 | MODULE_DEVICE_TABLE(of, dw_spi_mmio_of_match); |
| 245 | |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 246 | static struct platform_driver dw_spi_mmio_driver = { |
Grant Likely | 940ab88 | 2011-10-05 11:29:49 -0600 | [diff] [blame] | 247 | .probe = dw_spi_mmio_probe, |
Grant Likely | fd4a319 | 2012-12-07 16:57:14 +0000 | [diff] [blame] | 248 | .remove = dw_spi_mmio_remove, |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 249 | .driver = { |
| 250 | .name = DRIVER_NAME, |
Steffen Trumtrar | 22dae17 | 2014-06-13 15:36:18 +0200 | [diff] [blame] | 251 | .of_match_table = dw_spi_mmio_of_match, |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 252 | }, |
| 253 | }; |
Grant Likely | 940ab88 | 2011-10-05 11:29:49 -0600 | [diff] [blame] | 254 | module_platform_driver(dw_spi_mmio_driver); |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 255 | |
| 256 | MODULE_AUTHOR("Jean-Hugues Deschenes <jean-hugues.deschenes@octasic.com>"); |
| 257 | MODULE_DESCRIPTION("Memory-mapped I/O interface driver for DW SPI Core"); |
| 258 | MODULE_LICENSE("GPL v2"); |