Thomas Gleixner | 75a6faf | 2019-06-01 10:08:37 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 2 | /* |
Grant Likely | ca632f5 | 2011-06-06 01:16:30 -0600 | [diff] [blame] | 3 | * Memory-mapped interface driver for DW SPI Core |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 4 | * |
| 5 | * Copyright (c) 2010, Octasic semiconductor. |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <linux/clk.h> |
Jamie Iles | 50c01fc | 2011-01-11 12:43:52 +0000 | [diff] [blame] | 9 | #include <linux/err.h> |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 10 | #include <linux/platform_device.h> |
Jarkko Nikula | b9fc2d2 | 2019-10-18 16:21:29 +0300 | [diff] [blame] | 11 | #include <linux/pm_runtime.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 12 | #include <linux/slab.h> |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 13 | #include <linux/spi/spi.h> |
Grant Likely | 568a60e | 2011-02-28 12:47:12 -0700 | [diff] [blame] | 14 | #include <linux/scatterlist.h> |
Alexandre Belloni | c2c25cc | 2018-07-27 21:53:56 +0200 | [diff] [blame] | 15 | #include <linux/mfd/syscon.h> |
Paul Gortmaker | d7614de | 2011-07-03 15:44:29 -0400 | [diff] [blame] | 16 | #include <linux/module.h> |
Steffen Trumtrar | 22dae17 | 2014-06-13 15:36:18 +0200 | [diff] [blame] | 17 | #include <linux/of.h> |
Steffen Trumtrar | 22dae17 | 2014-06-13 15:36:18 +0200 | [diff] [blame] | 18 | #include <linux/of_platform.h> |
Jay Fang | 32215a6 | 2018-12-03 11:15:50 +0800 | [diff] [blame] | 19 | #include <linux/acpi.h> |
Andy Shevchenko | 9899995 | 2015-10-14 23:12:25 +0300 | [diff] [blame] | 20 | #include <linux/property.h> |
Alexandre Belloni | c2c25cc | 2018-07-27 21:53:56 +0200 | [diff] [blame] | 21 | #include <linux/regmap.h> |
Dinh Nguyen | 7830c0e | 2020-05-29 10:58:05 -0500 | [diff] [blame] | 22 | #include <linux/reset.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; |
Phil Edworthy | 560ee7e | 2019-03-19 15:52:07 +0000 | [diff] [blame] | 31 | struct clk *pclk; |
Alexandre Belloni | c2c25cc | 2018-07-27 21:53:56 +0200 | [diff] [blame] | 32 | void *priv; |
Dinh Nguyen | 7830c0e | 2020-05-29 10:58:05 -0500 | [diff] [blame] | 33 | struct reset_control *rstc; |
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 | |
Lars Povlsen | 53a0963 | 2020-08-24 22:30:06 +0200 | [diff] [blame] | 48 | #define SPARX5_FORCE_ENA 0xa4 |
| 49 | #define SPARX5_FORCE_VAL 0xa8 |
| 50 | |
Alexandre Belloni | c2c25cc | 2018-07-27 21:53:56 +0200 | [diff] [blame] | 51 | struct dw_spi_mscc { |
| 52 | struct regmap *syscon; |
Lars Povlsen | 53a0963 | 2020-08-24 22:30:06 +0200 | [diff] [blame] | 53 | void __iomem *spi_mst; /* Not sparx5 */ |
Alexandre Belloni | c2c25cc | 2018-07-27 21:53:56 +0200 | [diff] [blame] | 54 | }; |
| 55 | |
| 56 | /* |
| 57 | * The Designware SPI controller (referred to as master in the documentation) |
| 58 | * automatically deasserts chip select when the tx fifo is empty. The chip |
Jay Fang | db56d03 | 2021-05-10 14:58:22 +0800 | [diff] [blame] | 59 | * selects then needs to be either driven as GPIOs or, for the first 4 using |
Alexandre Belloni | c2c25cc | 2018-07-27 21:53:56 +0200 | [diff] [blame] | 60 | * the SPI boot controller registers. the final chip select is an OR gate |
| 61 | * between the Designware SPI controller and the SPI boot controller. |
| 62 | */ |
| 63 | static void dw_spi_mscc_set_cs(struct spi_device *spi, bool enable) |
| 64 | { |
| 65 | struct dw_spi *dws = spi_master_get_devdata(spi->master); |
| 66 | struct dw_spi_mmio *dwsmmio = container_of(dws, struct dw_spi_mmio, dws); |
| 67 | struct dw_spi_mscc *dwsmscc = dwsmmio->priv; |
| 68 | u32 cs = spi->chip_select; |
| 69 | |
| 70 | if (cs < 4) { |
| 71 | u32 sw_mode = MSCC_SPI_MST_SW_MODE_SW_PIN_CTRL_MODE; |
| 72 | |
| 73 | if (!enable) |
| 74 | sw_mode |= MSCC_SPI_MST_SW_MODE_SW_SPI_CS(BIT(cs)); |
| 75 | |
| 76 | writel(sw_mode, dwsmscc->spi_mst + MSCC_SPI_MST_SW_MODE); |
| 77 | } |
| 78 | |
| 79 | dw_spi_set_cs(spi, enable); |
| 80 | } |
| 81 | |
| 82 | static int dw_spi_mscc_init(struct platform_device *pdev, |
Alexandre Belloni | be17ee0 | 2018-08-29 14:45:48 +0200 | [diff] [blame] | 83 | struct dw_spi_mmio *dwsmmio, |
| 84 | const char *cpu_syscon, u32 if_si_owner_offset) |
Alexandre Belloni | c2c25cc | 2018-07-27 21:53:56 +0200 | [diff] [blame] | 85 | { |
| 86 | struct dw_spi_mscc *dwsmscc; |
Alexandre Belloni | c2c25cc | 2018-07-27 21:53:56 +0200 | [diff] [blame] | 87 | |
| 88 | dwsmscc = devm_kzalloc(&pdev->dev, sizeof(*dwsmscc), GFP_KERNEL); |
| 89 | if (!dwsmscc) |
| 90 | return -ENOMEM; |
| 91 | |
YueHaibing | 5cc6fdc | 2019-09-04 21:58:54 +0800 | [diff] [blame] | 92 | dwsmscc->spi_mst = devm_platform_ioremap_resource(pdev, 1); |
Alexandre Belloni | c2c25cc | 2018-07-27 21:53:56 +0200 | [diff] [blame] | 93 | if (IS_ERR(dwsmscc->spi_mst)) { |
| 94 | dev_err(&pdev->dev, "SPI_MST region map failed\n"); |
| 95 | return PTR_ERR(dwsmscc->spi_mst); |
| 96 | } |
| 97 | |
Alexandre Belloni | be17ee0 | 2018-08-29 14:45:48 +0200 | [diff] [blame] | 98 | dwsmscc->syscon = syscon_regmap_lookup_by_compatible(cpu_syscon); |
Alexandre Belloni | c2c25cc | 2018-07-27 21:53:56 +0200 | [diff] [blame] | 99 | if (IS_ERR(dwsmscc->syscon)) |
| 100 | return PTR_ERR(dwsmscc->syscon); |
| 101 | |
| 102 | /* Deassert all CS */ |
| 103 | writel(0, dwsmscc->spi_mst + MSCC_SPI_MST_SW_MODE); |
| 104 | |
| 105 | /* Select the owner of the SI interface */ |
| 106 | regmap_update_bits(dwsmscc->syscon, MSCC_CPU_SYSTEM_CTRL_GENERAL_CTRL, |
Alexandre Belloni | c1d8b08 | 2018-08-31 13:40:46 +0200 | [diff] [blame] | 107 | MSCC_IF_SI_OWNER_MASK << if_si_owner_offset, |
Alexandre Belloni | be17ee0 | 2018-08-29 14:45:48 +0200 | [diff] [blame] | 108 | MSCC_IF_SI_OWNER_SIMC << if_si_owner_offset); |
Alexandre Belloni | c2c25cc | 2018-07-27 21:53:56 +0200 | [diff] [blame] | 109 | |
| 110 | dwsmmio->dws.set_cs = dw_spi_mscc_set_cs; |
| 111 | dwsmmio->priv = dwsmscc; |
| 112 | |
| 113 | return 0; |
| 114 | } |
| 115 | |
Alexandre Belloni | be17ee0 | 2018-08-29 14:45:48 +0200 | [diff] [blame] | 116 | static int dw_spi_mscc_ocelot_init(struct platform_device *pdev, |
| 117 | struct dw_spi_mmio *dwsmmio) |
| 118 | { |
| 119 | return dw_spi_mscc_init(pdev, dwsmmio, "mscc,ocelot-cpu-syscon", |
| 120 | OCELOT_IF_SI_OWNER_OFFSET); |
| 121 | } |
| 122 | |
| 123 | static int dw_spi_mscc_jaguar2_init(struct platform_device *pdev, |
| 124 | struct dw_spi_mmio *dwsmmio) |
| 125 | { |
| 126 | return dw_spi_mscc_init(pdev, dwsmmio, "mscc,jaguar2-cpu-syscon", |
| 127 | JAGUAR2_IF_SI_OWNER_OFFSET); |
| 128 | } |
| 129 | |
Lars Povlsen | 53a0963 | 2020-08-24 22:30:06 +0200 | [diff] [blame] | 130 | /* |
| 131 | * The Designware SPI controller (referred to as master in the |
| 132 | * documentation) automatically deasserts chip select when the tx fifo |
| 133 | * is empty. The chip selects then needs to be driven by a CS override |
| 134 | * register. enable is an active low signal. |
| 135 | */ |
| 136 | static void dw_spi_sparx5_set_cs(struct spi_device *spi, bool enable) |
| 137 | { |
| 138 | struct dw_spi *dws = spi_master_get_devdata(spi->master); |
| 139 | struct dw_spi_mmio *dwsmmio = container_of(dws, struct dw_spi_mmio, dws); |
| 140 | struct dw_spi_mscc *dwsmscc = dwsmmio->priv; |
| 141 | u8 cs = spi->chip_select; |
| 142 | |
| 143 | if (!enable) { |
| 144 | /* CS override drive enable */ |
| 145 | regmap_write(dwsmscc->syscon, SPARX5_FORCE_ENA, 1); |
| 146 | /* Now set CSx enabled */ |
| 147 | regmap_write(dwsmscc->syscon, SPARX5_FORCE_VAL, ~BIT(cs)); |
| 148 | /* Allow settle */ |
| 149 | usleep_range(1, 5); |
| 150 | } else { |
| 151 | /* CS value */ |
| 152 | regmap_write(dwsmscc->syscon, SPARX5_FORCE_VAL, ~0); |
| 153 | /* Allow settle */ |
| 154 | usleep_range(1, 5); |
| 155 | /* CS override drive disable */ |
| 156 | regmap_write(dwsmscc->syscon, SPARX5_FORCE_ENA, 0); |
| 157 | } |
| 158 | |
| 159 | dw_spi_set_cs(spi, enable); |
| 160 | } |
| 161 | |
| 162 | static int dw_spi_mscc_sparx5_init(struct platform_device *pdev, |
| 163 | struct dw_spi_mmio *dwsmmio) |
| 164 | { |
| 165 | const char *syscon_name = "microchip,sparx5-cpu-syscon"; |
| 166 | struct device *dev = &pdev->dev; |
| 167 | struct dw_spi_mscc *dwsmscc; |
| 168 | |
| 169 | if (!IS_ENABLED(CONFIG_SPI_MUX)) { |
| 170 | dev_err(dev, "This driver needs CONFIG_SPI_MUX\n"); |
| 171 | return -EOPNOTSUPP; |
| 172 | } |
| 173 | |
| 174 | dwsmscc = devm_kzalloc(dev, sizeof(*dwsmscc), GFP_KERNEL); |
| 175 | if (!dwsmscc) |
| 176 | return -ENOMEM; |
| 177 | |
| 178 | dwsmscc->syscon = |
| 179 | syscon_regmap_lookup_by_compatible(syscon_name); |
| 180 | if (IS_ERR(dwsmscc->syscon)) { |
| 181 | dev_err(dev, "No syscon map %s\n", syscon_name); |
| 182 | return PTR_ERR(dwsmscc->syscon); |
| 183 | } |
| 184 | |
| 185 | dwsmmio->dws.set_cs = dw_spi_sparx5_set_cs; |
| 186 | dwsmmio->priv = dwsmscc; |
| 187 | |
Lars Povlsen | 53a0963 | 2020-08-24 22:30:06 +0200 | [diff] [blame] | 188 | return 0; |
| 189 | } |
| 190 | |
Talel Shenhar | f2d7047 | 2018-10-11 14:20:07 +0300 | [diff] [blame] | 191 | static int dw_spi_alpine_init(struct platform_device *pdev, |
| 192 | struct dw_spi_mmio *dwsmmio) |
| 193 | { |
Serge Semin | cc760f3 | 2020-09-20 14:28:53 +0300 | [diff] [blame] | 194 | dwsmmio->dws.caps = DW_SPI_CAP_CS_OVERRIDE; |
Talel Shenhar | f2d7047 | 2018-10-11 14:20:07 +0300 | [diff] [blame] | 195 | |
Wan Ahmad Zainie | c4eadee | 2020-05-05 21:06:13 +0800 | [diff] [blame] | 196 | return 0; |
| 197 | } |
| 198 | |
| 199 | static int dw_spi_dw_apb_init(struct platform_device *pdev, |
| 200 | struct dw_spi_mmio *dwsmmio) |
| 201 | { |
Serge Semin | 0fdad59 | 2020-05-29 16:12:03 +0300 | [diff] [blame] | 202 | dw_spi_dma_setup_generic(&dwsmmio->dws); |
| 203 | |
Talel Shenhar | f2d7047 | 2018-10-11 14:20:07 +0300 | [diff] [blame] | 204 | return 0; |
| 205 | } |
| 206 | |
Wan Ahmad Zainie | e539f43 | 2020-05-05 21:06:14 +0800 | [diff] [blame] | 207 | static int dw_spi_dwc_ssi_init(struct platform_device *pdev, |
| 208 | struct dw_spi_mmio *dwsmmio) |
| 209 | { |
Serge Semin | d6bbd11 | 2020-10-08 02:54:51 +0300 | [diff] [blame] | 210 | dwsmmio->dws.caps = DW_SPI_CAP_DWC_SSI; |
Wan Ahmad Zainie | e539f43 | 2020-05-05 21:06:14 +0800 | [diff] [blame] | 211 | |
Serge Semin | 0fdad59 | 2020-05-29 16:12:03 +0300 | [diff] [blame] | 212 | dw_spi_dma_setup_generic(&dwsmmio->dws); |
| 213 | |
Wan Ahmad Zainie | e539f43 | 2020-05-05 21:06:14 +0800 | [diff] [blame] | 214 | return 0; |
| 215 | } |
| 216 | |
Wan Ahmad Zainie | f423779 | 2020-05-05 21:06:16 +0800 | [diff] [blame] | 217 | static int dw_spi_keembay_init(struct platform_device *pdev, |
| 218 | struct dw_spi_mmio *dwsmmio) |
| 219 | { |
Serge Semin | d6bbd11 | 2020-10-08 02:54:51 +0300 | [diff] [blame] | 220 | dwsmmio->dws.caps = DW_SPI_CAP_KEEMBAY_MST | DW_SPI_CAP_DWC_SSI; |
Wan Ahmad Zainie | f423779 | 2020-05-05 21:06:16 +0800 | [diff] [blame] | 221 | |
| 222 | return 0; |
| 223 | } |
| 224 | |
Damien Le Moal | b0dfd94 | 2020-12-06 10:18:17 +0900 | [diff] [blame] | 225 | static int dw_spi_canaan_k210_init(struct platform_device *pdev, |
| 226 | struct dw_spi_mmio *dwsmmio) |
| 227 | { |
| 228 | /* |
| 229 | * The Canaan Kendryte K210 SoC DW apb_ssi v4 spi controller is |
| 230 | * documented to have a 32 word deep TX and RX FIFO, which |
| 231 | * spi_hw_init() detects. However, when the RX FIFO is filled up to |
| 232 | * 32 entries (RXFLR = 32), an RX FIFO overrun error occurs. Avoid this |
| 233 | * problem by force setting fifo_len to 31. |
| 234 | */ |
| 235 | dwsmmio->dws.fifo_len = 31; |
| 236 | |
| 237 | return 0; |
| 238 | } |
| 239 | |
Grant Likely | fd4a319 | 2012-12-07 16:57:14 +0000 | [diff] [blame] | 240 | static int dw_spi_mmio_probe(struct platform_device *pdev) |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 241 | { |
Alexandre Belloni | c2c25cc | 2018-07-27 21:53:56 +0200 | [diff] [blame] | 242 | int (*init_func)(struct platform_device *pdev, |
| 243 | struct dw_spi_mmio *dwsmmio); |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 244 | struct dw_spi_mmio *dwsmmio; |
Serge Semin | 77810d4 | 2020-05-15 13:47:50 +0300 | [diff] [blame] | 245 | struct resource *mem; |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 246 | struct dw_spi *dws; |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 247 | int ret; |
Steffen Trumtrar | 22dae17 | 2014-06-13 15:36:18 +0200 | [diff] [blame] | 248 | int num_cs; |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 249 | |
Baruch Siach | 04f421e | 2013-12-30 20:30:44 +0200 | [diff] [blame] | 250 | dwsmmio = devm_kzalloc(&pdev->dev, sizeof(struct dw_spi_mmio), |
| 251 | GFP_KERNEL); |
| 252 | if (!dwsmmio) |
| 253 | return -ENOMEM; |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 254 | |
| 255 | dws = &dwsmmio->dws; |
| 256 | |
| 257 | /* Get basic io resource and map it */ |
Serge Semin | 77810d4 | 2020-05-15 13:47:50 +0300 | [diff] [blame] | 258 | dws->regs = devm_platform_get_and_ioremap_resource(pdev, 0, &mem); |
Andy Shevchenko | afb7f565 | 2020-05-12 14:03:15 +0300 | [diff] [blame] | 259 | if (IS_ERR(dws->regs)) |
Baruch Siach | 04f421e | 2013-12-30 20:30:44 +0200 | [diff] [blame] | 260 | return PTR_ERR(dws->regs); |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 261 | |
Serge Semin | 77810d4 | 2020-05-15 13:47:50 +0300 | [diff] [blame] | 262 | dws->paddr = mem->start; |
| 263 | |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 264 | dws->irq = platform_get_irq(pdev, 0); |
Stephen Boyd | 6b8ac10 | 2019-07-30 11:15:41 -0700 | [diff] [blame] | 265 | if (dws->irq < 0) |
Baruch Siach | 04f421e | 2013-12-30 20:30:44 +0200 | [diff] [blame] | 266 | return dws->irq; /* -ENXIO */ |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 267 | |
Baruch Siach | 04f421e | 2013-12-30 20:30:44 +0200 | [diff] [blame] | 268 | dwsmmio->clk = devm_clk_get(&pdev->dev, NULL); |
| 269 | if (IS_ERR(dwsmmio->clk)) |
| 270 | return PTR_ERR(dwsmmio->clk); |
Baruch Siach | 020fe3f | 2013-12-30 20:30:45 +0200 | [diff] [blame] | 271 | ret = clk_prepare_enable(dwsmmio->clk); |
Baruch Siach | 04f421e | 2013-12-30 20:30:44 +0200 | [diff] [blame] | 272 | if (ret) |
| 273 | return ret; |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 274 | |
Phil Edworthy | 560ee7e | 2019-03-19 15:52:07 +0000 | [diff] [blame] | 275 | /* Optional clock needed to access the registers */ |
| 276 | dwsmmio->pclk = devm_clk_get_optional(&pdev->dev, "pclk"); |
Andy Shevchenko | 3da9834 | 2019-07-10 14:42:43 +0300 | [diff] [blame] | 277 | if (IS_ERR(dwsmmio->pclk)) { |
| 278 | ret = PTR_ERR(dwsmmio->pclk); |
| 279 | goto out_clk; |
| 280 | } |
Phil Edworthy | 560ee7e | 2019-03-19 15:52:07 +0000 | [diff] [blame] | 281 | ret = clk_prepare_enable(dwsmmio->pclk); |
| 282 | if (ret) |
| 283 | goto out_clk; |
| 284 | |
Dinh Nguyen | 7830c0e | 2020-05-29 10:58:05 -0500 | [diff] [blame] | 285 | /* find an optional reset controller */ |
| 286 | dwsmmio->rstc = devm_reset_control_get_optional_exclusive(&pdev->dev, "spi"); |
| 287 | if (IS_ERR(dwsmmio->rstc)) { |
| 288 | ret = PTR_ERR(dwsmmio->rstc); |
| 289 | goto out_clk; |
| 290 | } |
| 291 | reset_control_deassert(dwsmmio->rstc); |
| 292 | |
Baruch Siach | 2418991e | 2014-01-26 10:14:32 +0200 | [diff] [blame] | 293 | dws->bus_num = pdev->id; |
Steffen Trumtrar | 22dae17 | 2014-06-13 15:36:18 +0200 | [diff] [blame] | 294 | |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 295 | dws->max_freq = clk_get_rate(dwsmmio->clk); |
| 296 | |
Andy Shevchenko | 9899995 | 2015-10-14 23:12:25 +0300 | [diff] [blame] | 297 | 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] | 298 | |
Steffen Trumtrar | 22dae17 | 2014-06-13 15:36:18 +0200 | [diff] [blame] | 299 | num_cs = 4; |
| 300 | |
Andy Shevchenko | 9899995 | 2015-10-14 23:12:25 +0300 | [diff] [blame] | 301 | device_property_read_u32(&pdev->dev, "num-cs", &num_cs); |
Steffen Trumtrar | 22dae17 | 2014-06-13 15:36:18 +0200 | [diff] [blame] | 302 | |
| 303 | dws->num_cs = num_cs; |
| 304 | |
Alexandre Belloni | c2c25cc | 2018-07-27 21:53:56 +0200 | [diff] [blame] | 305 | init_func = device_get_match_data(&pdev->dev); |
| 306 | if (init_func) { |
| 307 | ret = init_func(pdev, dwsmmio); |
| 308 | if (ret) |
| 309 | goto out; |
| 310 | } |
| 311 | |
Jarkko Nikula | b9fc2d2 | 2019-10-18 16:21:29 +0300 | [diff] [blame] | 312 | pm_runtime_enable(&pdev->dev); |
| 313 | |
Baruch Siach | 04f421e | 2013-12-30 20:30:44 +0200 | [diff] [blame] | 314 | ret = dw_spi_add_host(&pdev->dev, dws); |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 315 | if (ret) |
Baruch Siach | 04f421e | 2013-12-30 20:30:44 +0200 | [diff] [blame] | 316 | goto out; |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 317 | |
| 318 | platform_set_drvdata(pdev, dwsmmio); |
| 319 | return 0; |
| 320 | |
Baruch Siach | 04f421e | 2013-12-30 20:30:44 +0200 | [diff] [blame] | 321 | out: |
Jarkko Nikula | b9fc2d2 | 2019-10-18 16:21:29 +0300 | [diff] [blame] | 322 | pm_runtime_disable(&pdev->dev); |
Phil Edworthy | 560ee7e | 2019-03-19 15:52:07 +0000 | [diff] [blame] | 323 | clk_disable_unprepare(dwsmmio->pclk); |
| 324 | out_clk: |
Baruch Siach | 020fe3f | 2013-12-30 20:30:45 +0200 | [diff] [blame] | 325 | clk_disable_unprepare(dwsmmio->clk); |
Dinh Nguyen | 7830c0e | 2020-05-29 10:58:05 -0500 | [diff] [blame] | 326 | reset_control_assert(dwsmmio->rstc); |
| 327 | |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 328 | return ret; |
| 329 | } |
| 330 | |
Grant Likely | fd4a319 | 2012-12-07 16:57:14 +0000 | [diff] [blame] | 331 | static int dw_spi_mmio_remove(struct platform_device *pdev) |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 332 | { |
| 333 | struct dw_spi_mmio *dwsmmio = platform_get_drvdata(pdev); |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 334 | |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 335 | dw_spi_remove_host(&dwsmmio->dws); |
Jarkko Nikula | b9fc2d2 | 2019-10-18 16:21:29 +0300 | [diff] [blame] | 336 | pm_runtime_disable(&pdev->dev); |
Phil Edworthy | 560ee7e | 2019-03-19 15:52:07 +0000 | [diff] [blame] | 337 | clk_disable_unprepare(dwsmmio->pclk); |
Marek Vasut | 400c18e | 2017-04-18 20:09:06 +0200 | [diff] [blame] | 338 | clk_disable_unprepare(dwsmmio->clk); |
Dinh Nguyen | 7830c0e | 2020-05-29 10:58:05 -0500 | [diff] [blame] | 339 | reset_control_assert(dwsmmio->rstc); |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 340 | |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 341 | return 0; |
| 342 | } |
| 343 | |
Steffen Trumtrar | 22dae17 | 2014-06-13 15:36:18 +0200 | [diff] [blame] | 344 | static const struct of_device_id dw_spi_mmio_of_match[] = { |
Wan Ahmad Zainie | c4eadee | 2020-05-05 21:06:13 +0800 | [diff] [blame] | 345 | { .compatible = "snps,dw-apb-ssi", .data = dw_spi_dw_apb_init}, |
Alexandre Belloni | be17ee0 | 2018-08-29 14:45:48 +0200 | [diff] [blame] | 346 | { .compatible = "mscc,ocelot-spi", .data = dw_spi_mscc_ocelot_init}, |
| 347 | { .compatible = "mscc,jaguar2-spi", .data = dw_spi_mscc_jaguar2_init}, |
Talel Shenhar | f2d7047 | 2018-10-11 14:20:07 +0300 | [diff] [blame] | 348 | { .compatible = "amazon,alpine-dw-apb-ssi", .data = dw_spi_alpine_init}, |
Wan Ahmad Zainie | c4eadee | 2020-05-05 21:06:13 +0800 | [diff] [blame] | 349 | { .compatible = "renesas,rzn1-spi", .data = dw_spi_dw_apb_init}, |
Wan Ahmad Zainie | e539f43 | 2020-05-05 21:06:14 +0800 | [diff] [blame] | 350 | { .compatible = "snps,dwc-ssi-1.01a", .data = dw_spi_dwc_ssi_init}, |
Wan Ahmad Zainie | f423779 | 2020-05-05 21:06:16 +0800 | [diff] [blame] | 351 | { .compatible = "intel,keembay-ssi", .data = dw_spi_keembay_init}, |
Lars Povlsen | 53a0963 | 2020-08-24 22:30:06 +0200 | [diff] [blame] | 352 | { .compatible = "microchip,sparx5-spi", dw_spi_mscc_sparx5_init}, |
Damien Le Moal | b0dfd94 | 2020-12-06 10:18:17 +0900 | [diff] [blame] | 353 | { .compatible = "canaan,k210-spi", dw_spi_canaan_k210_init}, |
Steffen Trumtrar | 22dae17 | 2014-06-13 15:36:18 +0200 | [diff] [blame] | 354 | { /* end of table */} |
| 355 | }; |
| 356 | MODULE_DEVICE_TABLE(of, dw_spi_mmio_of_match); |
| 357 | |
Jay Fang | 4dd227a | 2020-05-09 10:29:51 +0800 | [diff] [blame] | 358 | #ifdef CONFIG_ACPI |
Jay Fang | 32215a6 | 2018-12-03 11:15:50 +0800 | [diff] [blame] | 359 | static const struct acpi_device_id dw_spi_mmio_acpi_match[] = { |
Wan Ahmad Zainie | c4eadee | 2020-05-05 21:06:13 +0800 | [diff] [blame] | 360 | {"HISI0173", (kernel_ulong_t)dw_spi_dw_apb_init}, |
Jay Fang | 32215a6 | 2018-12-03 11:15:50 +0800 | [diff] [blame] | 361 | {}, |
| 362 | }; |
| 363 | MODULE_DEVICE_TABLE(acpi, dw_spi_mmio_acpi_match); |
Jay Fang | 4dd227a | 2020-05-09 10:29:51 +0800 | [diff] [blame] | 364 | #endif |
Jay Fang | 32215a6 | 2018-12-03 11:15:50 +0800 | [diff] [blame] | 365 | |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 366 | static struct platform_driver dw_spi_mmio_driver = { |
Grant Likely | 940ab88 | 2011-10-05 11:29:49 -0600 | [diff] [blame] | 367 | .probe = dw_spi_mmio_probe, |
Grant Likely | fd4a319 | 2012-12-07 16:57:14 +0000 | [diff] [blame] | 368 | .remove = dw_spi_mmio_remove, |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 369 | .driver = { |
| 370 | .name = DRIVER_NAME, |
Steffen Trumtrar | 22dae17 | 2014-06-13 15:36:18 +0200 | [diff] [blame] | 371 | .of_match_table = dw_spi_mmio_of_match, |
Jay Fang | 32215a6 | 2018-12-03 11:15:50 +0800 | [diff] [blame] | 372 | .acpi_match_table = ACPI_PTR(dw_spi_mmio_acpi_match), |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 373 | }, |
| 374 | }; |
Grant Likely | 940ab88 | 2011-10-05 11:29:49 -0600 | [diff] [blame] | 375 | module_platform_driver(dw_spi_mmio_driver); |
Jean-Hugues Deschenes | f7b6fd6 | 2010-01-21 07:46:42 -0700 | [diff] [blame] | 376 | |
| 377 | MODULE_AUTHOR("Jean-Hugues Deschenes <jean-hugues.deschenes@octasic.com>"); |
| 378 | MODULE_DESCRIPTION("Memory-mapped I/O interface driver for DW SPI Core"); |
| 379 | MODULE_LICENSE("GPL v2"); |