Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Stefan Roese | 5bef6fd | 2014-11-07 13:50:31 +0100 | [diff] [blame] | 2 | /* |
| 3 | * Designware master SPI core controller driver |
| 4 | * |
| 5 | * Copyright (C) 2014 Stefan Roese <sr@denx.de> |
| 6 | * |
Stefan Roese | a72f802 | 2014-11-16 12:47:01 +0100 | [diff] [blame] | 7 | * Very loosely based on the Linux driver: |
| 8 | * drivers/spi/spi-dw.c, which is: |
Stefan Roese | 5bef6fd | 2014-11-07 13:50:31 +0100 | [diff] [blame] | 9 | * Copyright (c) 2009, Intel Corporation. |
Stefan Roese | 5bef6fd | 2014-11-07 13:50:31 +0100 | [diff] [blame] | 10 | */ |
| 11 | |
Eugeniy Paltsev | bcdcb3e | 2018-03-22 13:50:46 +0300 | [diff] [blame] | 12 | #include <asm-generic/gpio.h> |
Stefan Roese | 5bef6fd | 2014-11-07 13:50:31 +0100 | [diff] [blame] | 13 | #include <common.h> |
Eugeniy Paltsev | 58c125b | 2017-12-28 15:09:03 +0300 | [diff] [blame] | 14 | #include <clk.h> |
Stefan Roese | 5bef6fd | 2014-11-07 13:50:31 +0100 | [diff] [blame] | 15 | #include <dm.h> |
| 16 | #include <errno.h> |
| 17 | #include <malloc.h> |
| 18 | #include <spi.h> |
| 19 | #include <fdtdec.h> |
Ley Foon Tan | 6ac5909 | 2018-09-07 14:25:29 +0800 | [diff] [blame] | 20 | #include <reset.h> |
Stefan Roese | 5bef6fd | 2014-11-07 13:50:31 +0100 | [diff] [blame] | 21 | #include <linux/compat.h> |
Eugeniy Paltsev | c6b4f03 | 2018-03-22 13:50:43 +0300 | [diff] [blame] | 22 | #include <linux/iopoll.h> |
Stefan Roese | 5bef6fd | 2014-11-07 13:50:31 +0100 | [diff] [blame] | 23 | #include <asm/io.h> |
| 24 | |
| 25 | DECLARE_GLOBAL_DATA_PTR; |
| 26 | |
| 27 | /* Register offsets */ |
| 28 | #define DW_SPI_CTRL0 0x00 |
| 29 | #define DW_SPI_CTRL1 0x04 |
| 30 | #define DW_SPI_SSIENR 0x08 |
| 31 | #define DW_SPI_MWCR 0x0c |
| 32 | #define DW_SPI_SER 0x10 |
| 33 | #define DW_SPI_BAUDR 0x14 |
| 34 | #define DW_SPI_TXFLTR 0x18 |
| 35 | #define DW_SPI_RXFLTR 0x1c |
| 36 | #define DW_SPI_TXFLR 0x20 |
| 37 | #define DW_SPI_RXFLR 0x24 |
| 38 | #define DW_SPI_SR 0x28 |
| 39 | #define DW_SPI_IMR 0x2c |
| 40 | #define DW_SPI_ISR 0x30 |
| 41 | #define DW_SPI_RISR 0x34 |
| 42 | #define DW_SPI_TXOICR 0x38 |
| 43 | #define DW_SPI_RXOICR 0x3c |
| 44 | #define DW_SPI_RXUICR 0x40 |
| 45 | #define DW_SPI_MSTICR 0x44 |
| 46 | #define DW_SPI_ICR 0x48 |
| 47 | #define DW_SPI_DMACR 0x4c |
| 48 | #define DW_SPI_DMATDLR 0x50 |
| 49 | #define DW_SPI_DMARDLR 0x54 |
| 50 | #define DW_SPI_IDR 0x58 |
| 51 | #define DW_SPI_VERSION 0x5c |
| 52 | #define DW_SPI_DR 0x60 |
| 53 | |
| 54 | /* Bit fields in CTRLR0 */ |
| 55 | #define SPI_DFS_OFFSET 0 |
| 56 | |
| 57 | #define SPI_FRF_OFFSET 4 |
| 58 | #define SPI_FRF_SPI 0x0 |
| 59 | #define SPI_FRF_SSP 0x1 |
| 60 | #define SPI_FRF_MICROWIRE 0x2 |
| 61 | #define SPI_FRF_RESV 0x3 |
| 62 | |
| 63 | #define SPI_MODE_OFFSET 6 |
| 64 | #define SPI_SCPH_OFFSET 6 |
| 65 | #define SPI_SCOL_OFFSET 7 |
| 66 | |
| 67 | #define SPI_TMOD_OFFSET 8 |
| 68 | #define SPI_TMOD_MASK (0x3 << SPI_TMOD_OFFSET) |
| 69 | #define SPI_TMOD_TR 0x0 /* xmit & recv */ |
| 70 | #define SPI_TMOD_TO 0x1 /* xmit only */ |
| 71 | #define SPI_TMOD_RO 0x2 /* recv only */ |
| 72 | #define SPI_TMOD_EPROMREAD 0x3 /* eeprom read mode */ |
| 73 | |
| 74 | #define SPI_SLVOE_OFFSET 10 |
| 75 | #define SPI_SRL_OFFSET 11 |
| 76 | #define SPI_CFS_OFFSET 12 |
| 77 | |
| 78 | /* Bit fields in SR, 7 bits */ |
Jagan Teki | 95e77d9 | 2015-10-23 01:01:36 +0530 | [diff] [blame] | 79 | #define SR_MASK GENMASK(6, 0) /* cover 7 bits */ |
Jagan Teki | 431a9f0 | 2015-10-23 01:36:23 +0530 | [diff] [blame] | 80 | #define SR_BUSY BIT(0) |
| 81 | #define SR_TF_NOT_FULL BIT(1) |
| 82 | #define SR_TF_EMPT BIT(2) |
| 83 | #define SR_RF_NOT_EMPT BIT(3) |
| 84 | #define SR_RF_FULL BIT(4) |
| 85 | #define SR_TX_ERR BIT(5) |
| 86 | #define SR_DCOL BIT(6) |
Stefan Roese | 5bef6fd | 2014-11-07 13:50:31 +0100 | [diff] [blame] | 87 | |
Stefan Roese | a72f802 | 2014-11-16 12:47:01 +0100 | [diff] [blame] | 88 | #define RX_TIMEOUT 1000 /* timeout in ms */ |
Stefan Roese | 5bef6fd | 2014-11-07 13:50:31 +0100 | [diff] [blame] | 89 | |
| 90 | struct dw_spi_platdata { |
| 91 | s32 frequency; /* Default clock frequency, -1 for none */ |
| 92 | void __iomem *regs; |
| 93 | }; |
| 94 | |
| 95 | struct dw_spi_priv { |
| 96 | void __iomem *regs; |
| 97 | unsigned int freq; /* Default frequency */ |
| 98 | unsigned int mode; |
Eugeniy Paltsev | 58c125b | 2017-12-28 15:09:03 +0300 | [diff] [blame] | 99 | struct clk clk; |
| 100 | unsigned long bus_clk_rate; |
Stefan Roese | 5bef6fd | 2014-11-07 13:50:31 +0100 | [diff] [blame] | 101 | |
Eugeniy Paltsev | bcdcb3e | 2018-03-22 13:50:46 +0300 | [diff] [blame] | 102 | struct gpio_desc cs_gpio; /* External chip-select gpio */ |
| 103 | |
Stefan Roese | 5bef6fd | 2014-11-07 13:50:31 +0100 | [diff] [blame] | 104 | int bits_per_word; |
| 105 | u8 cs; /* chip select pin */ |
Stefan Roese | 5bef6fd | 2014-11-07 13:50:31 +0100 | [diff] [blame] | 106 | u8 tmode; /* TR/TO/RO/EEPROM */ |
| 107 | u8 type; /* SPI/SSP/MicroWire */ |
| 108 | int len; |
| 109 | |
| 110 | u32 fifo_len; /* depth of the FIFO buffer */ |
| 111 | void *tx; |
| 112 | void *tx_end; |
| 113 | void *rx; |
| 114 | void *rx_end; |
Ley Foon Tan | 6ac5909 | 2018-09-07 14:25:29 +0800 | [diff] [blame] | 115 | |
| 116 | struct reset_ctl_bulk resets; |
Stefan Roese | 5bef6fd | 2014-11-07 13:50:31 +0100 | [diff] [blame] | 117 | }; |
| 118 | |
Eugeniy Paltsev | 4b5f6c5 | 2018-03-22 13:50:47 +0300 | [diff] [blame] | 119 | static inline u32 dw_read(struct dw_spi_priv *priv, u32 offset) |
Stefan Roese | 5bef6fd | 2014-11-07 13:50:31 +0100 | [diff] [blame] | 120 | { |
| 121 | return __raw_readl(priv->regs + offset); |
| 122 | } |
| 123 | |
Eugeniy Paltsev | 4b5f6c5 | 2018-03-22 13:50:47 +0300 | [diff] [blame] | 124 | static inline void dw_write(struct dw_spi_priv *priv, u32 offset, u32 val) |
Stefan Roese | 5bef6fd | 2014-11-07 13:50:31 +0100 | [diff] [blame] | 125 | { |
| 126 | __raw_writel(val, priv->regs + offset); |
| 127 | } |
| 128 | |
Eugeniy Paltsev | bcdcb3e | 2018-03-22 13:50:46 +0300 | [diff] [blame] | 129 | static int request_gpio_cs(struct udevice *bus) |
| 130 | { |
| 131 | #if defined(CONFIG_DM_GPIO) && !defined(CONFIG_SPL_BUILD) |
| 132 | struct dw_spi_priv *priv = dev_get_priv(bus); |
| 133 | int ret; |
| 134 | |
| 135 | /* External chip select gpio line is optional */ |
| 136 | ret = gpio_request_by_name(bus, "cs-gpio", 0, &priv->cs_gpio, 0); |
| 137 | if (ret == -ENOENT) |
| 138 | return 0; |
| 139 | |
| 140 | if (ret < 0) { |
| 141 | printf("Error: %d: Can't get %s gpio!\n", ret, bus->name); |
| 142 | return ret; |
| 143 | } |
| 144 | |
| 145 | if (dm_gpio_is_valid(&priv->cs_gpio)) { |
| 146 | dm_gpio_set_dir_flags(&priv->cs_gpio, |
| 147 | GPIOD_IS_OUT | GPIOD_IS_OUT_ACTIVE); |
| 148 | } |
| 149 | |
| 150 | debug("%s: used external gpio for CS management\n", __func__); |
| 151 | #endif |
| 152 | return 0; |
| 153 | } |
| 154 | |
Stefan Roese | 5bef6fd | 2014-11-07 13:50:31 +0100 | [diff] [blame] | 155 | static int dw_spi_ofdata_to_platdata(struct udevice *bus) |
| 156 | { |
| 157 | struct dw_spi_platdata *plat = bus->platdata; |
| 158 | const void *blob = gd->fdt_blob; |
Simon Glass | e160f7d | 2017-01-17 16:52:55 -0700 | [diff] [blame] | 159 | int node = dev_of_offset(bus); |
Stefan Roese | 5bef6fd | 2014-11-07 13:50:31 +0100 | [diff] [blame] | 160 | |
Simon Glass | a821c4a | 2017-05-17 17:18:05 -0600 | [diff] [blame] | 161 | plat->regs = (struct dw_spi *)devfdt_get_addr(bus); |
Stefan Roese | 5bef6fd | 2014-11-07 13:50:31 +0100 | [diff] [blame] | 162 | |
| 163 | /* Use 500KHz as a suitable default */ |
| 164 | plat->frequency = fdtdec_get_int(blob, node, "spi-max-frequency", |
| 165 | 500000); |
| 166 | debug("%s: regs=%p max-frequency=%d\n", __func__, plat->regs, |
| 167 | plat->frequency); |
| 168 | |
Eugeniy Paltsev | bcdcb3e | 2018-03-22 13:50:46 +0300 | [diff] [blame] | 169 | return request_gpio_cs(bus); |
Stefan Roese | 5bef6fd | 2014-11-07 13:50:31 +0100 | [diff] [blame] | 170 | } |
| 171 | |
| 172 | static inline void spi_enable_chip(struct dw_spi_priv *priv, int enable) |
| 173 | { |
Eugeniy Paltsev | 4b5f6c5 | 2018-03-22 13:50:47 +0300 | [diff] [blame] | 174 | dw_write(priv, DW_SPI_SSIENR, (enable ? 1 : 0)); |
Stefan Roese | 5bef6fd | 2014-11-07 13:50:31 +0100 | [diff] [blame] | 175 | } |
| 176 | |
| 177 | /* Restart the controller, disable all interrupts, clean rx fifo */ |
| 178 | static void spi_hw_init(struct dw_spi_priv *priv) |
| 179 | { |
| 180 | spi_enable_chip(priv, 0); |
Eugeniy Paltsev | 4b5f6c5 | 2018-03-22 13:50:47 +0300 | [diff] [blame] | 181 | dw_write(priv, DW_SPI_IMR, 0xff); |
Stefan Roese | 5bef6fd | 2014-11-07 13:50:31 +0100 | [diff] [blame] | 182 | spi_enable_chip(priv, 1); |
| 183 | |
| 184 | /* |
| 185 | * Try to detect the FIFO depth if not set by interface driver, |
| 186 | * the depth could be from 2 to 256 from HW spec |
| 187 | */ |
| 188 | if (!priv->fifo_len) { |
| 189 | u32 fifo; |
| 190 | |
Axel Lin | 52091ad | 2015-02-26 10:45:22 +0800 | [diff] [blame] | 191 | for (fifo = 1; fifo < 256; fifo++) { |
Eugeniy Paltsev | 4b5f6c5 | 2018-03-22 13:50:47 +0300 | [diff] [blame] | 192 | dw_write(priv, DW_SPI_TXFLTR, fifo); |
| 193 | if (fifo != dw_read(priv, DW_SPI_TXFLTR)) |
Stefan Roese | 5bef6fd | 2014-11-07 13:50:31 +0100 | [diff] [blame] | 194 | break; |
| 195 | } |
| 196 | |
Axel Lin | 52091ad | 2015-02-26 10:45:22 +0800 | [diff] [blame] | 197 | priv->fifo_len = (fifo == 1) ? 0 : fifo; |
Eugeniy Paltsev | 4b5f6c5 | 2018-03-22 13:50:47 +0300 | [diff] [blame] | 198 | dw_write(priv, DW_SPI_TXFLTR, 0); |
Stefan Roese | 5bef6fd | 2014-11-07 13:50:31 +0100 | [diff] [blame] | 199 | } |
| 200 | debug("%s: fifo_len=%d\n", __func__, priv->fifo_len); |
| 201 | } |
| 202 | |
Eugeniy Paltsev | 58c125b | 2017-12-28 15:09:03 +0300 | [diff] [blame] | 203 | /* |
| 204 | * We define dw_spi_get_clk function as 'weak' as some targets |
| 205 | * (like SOCFPGA_GEN5 and SOCFPGA_ARRIA10) don't use standard clock API |
| 206 | * and implement dw_spi_get_clk their own way in their clock manager. |
| 207 | */ |
| 208 | __weak int dw_spi_get_clk(struct udevice *bus, ulong *rate) |
| 209 | { |
| 210 | struct dw_spi_priv *priv = dev_get_priv(bus); |
| 211 | int ret; |
| 212 | |
| 213 | ret = clk_get_by_index(bus, 0, &priv->clk); |
| 214 | if (ret) |
| 215 | return ret; |
| 216 | |
| 217 | ret = clk_enable(&priv->clk); |
| 218 | if (ret && ret != -ENOSYS && ret != -ENOTSUPP) |
| 219 | return ret; |
| 220 | |
| 221 | *rate = clk_get_rate(&priv->clk); |
| 222 | if (!*rate) |
| 223 | goto err_rate; |
| 224 | |
| 225 | debug("%s: get spi controller clk via device tree: %lu Hz\n", |
| 226 | __func__, *rate); |
| 227 | |
| 228 | return 0; |
| 229 | |
| 230 | err_rate: |
| 231 | clk_disable(&priv->clk); |
| 232 | clk_free(&priv->clk); |
| 233 | |
| 234 | return -EINVAL; |
| 235 | } |
| 236 | |
Ley Foon Tan | 6ac5909 | 2018-09-07 14:25:29 +0800 | [diff] [blame] | 237 | static int dw_spi_reset(struct udevice *bus) |
| 238 | { |
| 239 | int ret; |
| 240 | struct dw_spi_priv *priv = dev_get_priv(bus); |
| 241 | |
| 242 | ret = reset_get_bulk(bus, &priv->resets); |
| 243 | if (ret) { |
| 244 | /* |
| 245 | * Return 0 if error due to !CONFIG_DM_RESET and reset |
| 246 | * DT property is not present. |
| 247 | */ |
| 248 | if (ret == -ENOENT || ret == -ENOTSUPP) |
| 249 | return 0; |
| 250 | |
| 251 | dev_warn(bus, "Can't get reset: %d\n", ret); |
| 252 | return ret; |
| 253 | } |
| 254 | |
| 255 | ret = reset_deassert_bulk(&priv->resets); |
| 256 | if (ret) { |
| 257 | reset_release_bulk(&priv->resets); |
| 258 | dev_err(bus, "Failed to reset: %d\n", ret); |
| 259 | return ret; |
| 260 | } |
| 261 | |
| 262 | return 0; |
| 263 | } |
| 264 | |
Stefan Roese | 5bef6fd | 2014-11-07 13:50:31 +0100 | [diff] [blame] | 265 | static int dw_spi_probe(struct udevice *bus) |
| 266 | { |
| 267 | struct dw_spi_platdata *plat = dev_get_platdata(bus); |
| 268 | struct dw_spi_priv *priv = dev_get_priv(bus); |
Eugeniy Paltsev | 58c125b | 2017-12-28 15:09:03 +0300 | [diff] [blame] | 269 | int ret; |
Stefan Roese | 5bef6fd | 2014-11-07 13:50:31 +0100 | [diff] [blame] | 270 | |
| 271 | priv->regs = plat->regs; |
| 272 | priv->freq = plat->frequency; |
| 273 | |
Eugeniy Paltsev | 58c125b | 2017-12-28 15:09:03 +0300 | [diff] [blame] | 274 | ret = dw_spi_get_clk(bus, &priv->bus_clk_rate); |
| 275 | if (ret) |
| 276 | return ret; |
| 277 | |
Ley Foon Tan | 6ac5909 | 2018-09-07 14:25:29 +0800 | [diff] [blame] | 278 | ret = dw_spi_reset(bus); |
| 279 | if (ret) |
| 280 | return ret; |
| 281 | |
Stefan Roese | 5bef6fd | 2014-11-07 13:50:31 +0100 | [diff] [blame] | 282 | /* Currently only bits_per_word == 8 supported */ |
| 283 | priv->bits_per_word = 8; |
Stefan Roese | 5bef6fd | 2014-11-07 13:50:31 +0100 | [diff] [blame] | 284 | |
| 285 | priv->tmode = 0; /* Tx & Rx */ |
| 286 | |
| 287 | /* Basic HW init */ |
| 288 | spi_hw_init(priv); |
| 289 | |
| 290 | return 0; |
| 291 | } |
| 292 | |
| 293 | /* Return the max entries we can fill into tx fifo */ |
| 294 | static inline u32 tx_max(struct dw_spi_priv *priv) |
| 295 | { |
| 296 | u32 tx_left, tx_room, rxtx_gap; |
| 297 | |
Stefan Roese | a72f802 | 2014-11-16 12:47:01 +0100 | [diff] [blame] | 298 | tx_left = (priv->tx_end - priv->tx) / (priv->bits_per_word >> 3); |
Eugeniy Paltsev | 4b5f6c5 | 2018-03-22 13:50:47 +0300 | [diff] [blame] | 299 | tx_room = priv->fifo_len - dw_read(priv, DW_SPI_TXFLR); |
Stefan Roese | 5bef6fd | 2014-11-07 13:50:31 +0100 | [diff] [blame] | 300 | |
| 301 | /* |
| 302 | * Another concern is about the tx/rx mismatch, we |
Stefan Roese | a72f802 | 2014-11-16 12:47:01 +0100 | [diff] [blame] | 303 | * thought about using (priv->fifo_len - rxflr - txflr) as |
Stefan Roese | 5bef6fd | 2014-11-07 13:50:31 +0100 | [diff] [blame] | 304 | * one maximum value for tx, but it doesn't cover the |
| 305 | * data which is out of tx/rx fifo and inside the |
| 306 | * shift registers. So a control from sw point of |
| 307 | * view is taken. |
| 308 | */ |
| 309 | rxtx_gap = ((priv->rx_end - priv->rx) - (priv->tx_end - priv->tx)) / |
Stefan Roese | a72f802 | 2014-11-16 12:47:01 +0100 | [diff] [blame] | 310 | (priv->bits_per_word >> 3); |
Stefan Roese | 5bef6fd | 2014-11-07 13:50:31 +0100 | [diff] [blame] | 311 | |
| 312 | return min3(tx_left, tx_room, (u32)(priv->fifo_len - rxtx_gap)); |
| 313 | } |
| 314 | |
| 315 | /* Return the max entries we should read out of rx fifo */ |
| 316 | static inline u32 rx_max(struct dw_spi_priv *priv) |
| 317 | { |
Stefan Roese | a72f802 | 2014-11-16 12:47:01 +0100 | [diff] [blame] | 318 | u32 rx_left = (priv->rx_end - priv->rx) / (priv->bits_per_word >> 3); |
Stefan Roese | 5bef6fd | 2014-11-07 13:50:31 +0100 | [diff] [blame] | 319 | |
Eugeniy Paltsev | 4b5f6c5 | 2018-03-22 13:50:47 +0300 | [diff] [blame] | 320 | return min_t(u32, rx_left, dw_read(priv, DW_SPI_RXFLR)); |
Stefan Roese | 5bef6fd | 2014-11-07 13:50:31 +0100 | [diff] [blame] | 321 | } |
| 322 | |
| 323 | static void dw_writer(struct dw_spi_priv *priv) |
| 324 | { |
| 325 | u32 max = tx_max(priv); |
| 326 | u16 txw = 0; |
| 327 | |
| 328 | while (max--) { |
| 329 | /* Set the tx word if the transfer's original "tx" is not null */ |
| 330 | if (priv->tx_end - priv->len) { |
Stefan Roese | a72f802 | 2014-11-16 12:47:01 +0100 | [diff] [blame] | 331 | if (priv->bits_per_word == 8) |
Stefan Roese | 5bef6fd | 2014-11-07 13:50:31 +0100 | [diff] [blame] | 332 | txw = *(u8 *)(priv->tx); |
| 333 | else |
| 334 | txw = *(u16 *)(priv->tx); |
| 335 | } |
Eugeniy Paltsev | 4b5f6c5 | 2018-03-22 13:50:47 +0300 | [diff] [blame] | 336 | dw_write(priv, DW_SPI_DR, txw); |
Stefan Roese | 5bef6fd | 2014-11-07 13:50:31 +0100 | [diff] [blame] | 337 | debug("%s: tx=0x%02x\n", __func__, txw); |
Stefan Roese | a72f802 | 2014-11-16 12:47:01 +0100 | [diff] [blame] | 338 | priv->tx += priv->bits_per_word >> 3; |
Stefan Roese | 5bef6fd | 2014-11-07 13:50:31 +0100 | [diff] [blame] | 339 | } |
| 340 | } |
| 341 | |
Eugeniy Paltsev | d3d8aae | 2018-03-22 13:50:45 +0300 | [diff] [blame] | 342 | static void dw_reader(struct dw_spi_priv *priv) |
Stefan Roese | 5bef6fd | 2014-11-07 13:50:31 +0100 | [diff] [blame] | 343 | { |
Eugeniy Paltsev | d3d8aae | 2018-03-22 13:50:45 +0300 | [diff] [blame] | 344 | u32 max = rx_max(priv); |
Stefan Roese | 5bef6fd | 2014-11-07 13:50:31 +0100 | [diff] [blame] | 345 | u16 rxw; |
| 346 | |
Stefan Roese | 5bef6fd | 2014-11-07 13:50:31 +0100 | [diff] [blame] | 347 | while (max--) { |
Eugeniy Paltsev | 4b5f6c5 | 2018-03-22 13:50:47 +0300 | [diff] [blame] | 348 | rxw = dw_read(priv, DW_SPI_DR); |
Stefan Roese | 5bef6fd | 2014-11-07 13:50:31 +0100 | [diff] [blame] | 349 | debug("%s: rx=0x%02x\n", __func__, rxw); |
Stefan Roese | a72f802 | 2014-11-16 12:47:01 +0100 | [diff] [blame] | 350 | |
Eugeniy Paltsev | d3d8aae | 2018-03-22 13:50:45 +0300 | [diff] [blame] | 351 | /* Care about rx if the transfer's original "rx" is not null */ |
Stefan Roese | 5bef6fd | 2014-11-07 13:50:31 +0100 | [diff] [blame] | 352 | if (priv->rx_end - priv->len) { |
Stefan Roese | a72f802 | 2014-11-16 12:47:01 +0100 | [diff] [blame] | 353 | if (priv->bits_per_word == 8) |
Stefan Roese | 5bef6fd | 2014-11-07 13:50:31 +0100 | [diff] [blame] | 354 | *(u8 *)(priv->rx) = rxw; |
| 355 | else |
| 356 | *(u16 *)(priv->rx) = rxw; |
| 357 | } |
Stefan Roese | a72f802 | 2014-11-16 12:47:01 +0100 | [diff] [blame] | 358 | priv->rx += priv->bits_per_word >> 3; |
Stefan Roese | 5bef6fd | 2014-11-07 13:50:31 +0100 | [diff] [blame] | 359 | } |
Stefan Roese | 5bef6fd | 2014-11-07 13:50:31 +0100 | [diff] [blame] | 360 | } |
| 361 | |
| 362 | static int poll_transfer(struct dw_spi_priv *priv) |
| 363 | { |
Stefan Roese | 5bef6fd | 2014-11-07 13:50:31 +0100 | [diff] [blame] | 364 | do { |
| 365 | dw_writer(priv); |
Eugeniy Paltsev | d3d8aae | 2018-03-22 13:50:45 +0300 | [diff] [blame] | 366 | dw_reader(priv); |
Stefan Roese | 5bef6fd | 2014-11-07 13:50:31 +0100 | [diff] [blame] | 367 | } while (priv->rx_end > priv->rx); |
| 368 | |
| 369 | return 0; |
| 370 | } |
| 371 | |
Eugeniy Paltsev | bcdcb3e | 2018-03-22 13:50:46 +0300 | [diff] [blame] | 372 | static void external_cs_manage(struct udevice *dev, bool on) |
| 373 | { |
| 374 | #if defined(CONFIG_DM_GPIO) && !defined(CONFIG_SPL_BUILD) |
| 375 | struct dw_spi_priv *priv = dev_get_priv(dev->parent); |
| 376 | |
| 377 | if (!dm_gpio_is_valid(&priv->cs_gpio)) |
| 378 | return; |
| 379 | |
| 380 | dm_gpio_set_value(&priv->cs_gpio, on ? 1 : 0); |
| 381 | #endif |
| 382 | } |
| 383 | |
Stefan Roese | 5bef6fd | 2014-11-07 13:50:31 +0100 | [diff] [blame] | 384 | static int dw_spi_xfer(struct udevice *dev, unsigned int bitlen, |
| 385 | const void *dout, void *din, unsigned long flags) |
| 386 | { |
| 387 | struct udevice *bus = dev->parent; |
| 388 | struct dw_spi_priv *priv = dev_get_priv(bus); |
| 389 | const u8 *tx = dout; |
| 390 | u8 *rx = din; |
| 391 | int ret = 0; |
| 392 | u32 cr0 = 0; |
Eugeniy Paltsev | c6b4f03 | 2018-03-22 13:50:43 +0300 | [diff] [blame] | 393 | u32 val; |
Stefan Roese | 5bef6fd | 2014-11-07 13:50:31 +0100 | [diff] [blame] | 394 | u32 cs; |
| 395 | |
| 396 | /* spi core configured to do 8 bit transfers */ |
| 397 | if (bitlen % 8) { |
| 398 | debug("Non byte aligned SPI transfer.\n"); |
| 399 | return -1; |
| 400 | } |
| 401 | |
Eugeniy Paltsev | bcdcb3e | 2018-03-22 13:50:46 +0300 | [diff] [blame] | 402 | /* Start the transaction if necessary. */ |
| 403 | if (flags & SPI_XFER_BEGIN) |
| 404 | external_cs_manage(dev, false); |
| 405 | |
Stefan Roese | a72f802 | 2014-11-16 12:47:01 +0100 | [diff] [blame] | 406 | cr0 = (priv->bits_per_word - 1) | (priv->type << SPI_FRF_OFFSET) | |
Stefan Roese | 5bef6fd | 2014-11-07 13:50:31 +0100 | [diff] [blame] | 407 | (priv->mode << SPI_MODE_OFFSET) | |
| 408 | (priv->tmode << SPI_TMOD_OFFSET); |
| 409 | |
| 410 | if (rx && tx) |
| 411 | priv->tmode = SPI_TMOD_TR; |
| 412 | else if (rx) |
| 413 | priv->tmode = SPI_TMOD_RO; |
| 414 | else |
Eugeniy Paltsev | fc282c7 | 2018-03-22 13:50:44 +0300 | [diff] [blame] | 415 | /* |
| 416 | * In transmit only mode (SPI_TMOD_TO) input FIFO never gets |
| 417 | * any data which breaks our logic in poll_transfer() above. |
| 418 | */ |
| 419 | priv->tmode = SPI_TMOD_TR; |
Stefan Roese | 5bef6fd | 2014-11-07 13:50:31 +0100 | [diff] [blame] | 420 | |
| 421 | cr0 &= ~SPI_TMOD_MASK; |
| 422 | cr0 |= (priv->tmode << SPI_TMOD_OFFSET); |
| 423 | |
Stefan Roese | a72f802 | 2014-11-16 12:47:01 +0100 | [diff] [blame] | 424 | priv->len = bitlen >> 3; |
Stefan Roese | 5bef6fd | 2014-11-07 13:50:31 +0100 | [diff] [blame] | 425 | debug("%s: rx=%p tx=%p len=%d [bytes]\n", __func__, rx, tx, priv->len); |
| 426 | |
| 427 | priv->tx = (void *)tx; |
| 428 | priv->tx_end = priv->tx + priv->len; |
| 429 | priv->rx = rx; |
| 430 | priv->rx_end = priv->rx + priv->len; |
| 431 | |
| 432 | /* Disable controller before writing control registers */ |
| 433 | spi_enable_chip(priv, 0); |
| 434 | |
| 435 | debug("%s: cr0=%08x\n", __func__, cr0); |
| 436 | /* Reprogram cr0 only if changed */ |
Eugeniy Paltsev | 4b5f6c5 | 2018-03-22 13:50:47 +0300 | [diff] [blame] | 437 | if (dw_read(priv, DW_SPI_CTRL0) != cr0) |
| 438 | dw_write(priv, DW_SPI_CTRL0, cr0); |
Stefan Roese | 5bef6fd | 2014-11-07 13:50:31 +0100 | [diff] [blame] | 439 | |
| 440 | /* |
| 441 | * Configure the desired SS (slave select 0...3) in the controller |
| 442 | * The DW SPI controller will activate and deactivate this CS |
| 443 | * automatically. So no cs_activate() etc is needed in this driver. |
| 444 | */ |
| 445 | cs = spi_chip_select(dev); |
Eugeniy Paltsev | 4b5f6c5 | 2018-03-22 13:50:47 +0300 | [diff] [blame] | 446 | dw_write(priv, DW_SPI_SER, 1 << cs); |
Stefan Roese | 5bef6fd | 2014-11-07 13:50:31 +0100 | [diff] [blame] | 447 | |
| 448 | /* Enable controller after writing control registers */ |
| 449 | spi_enable_chip(priv, 1); |
| 450 | |
| 451 | /* Start transfer in a polling loop */ |
| 452 | ret = poll_transfer(priv); |
| 453 | |
Eugeniy Paltsev | c6b4f03 | 2018-03-22 13:50:43 +0300 | [diff] [blame] | 454 | /* |
| 455 | * Wait for current transmit operation to complete. |
| 456 | * Otherwise if some data still exists in Tx FIFO it can be |
| 457 | * silently flushed, i.e. dropped on disabling of the controller, |
| 458 | * which happens when writing 0 to DW_SPI_SSIENR which happens |
| 459 | * in the beginning of new transfer. |
| 460 | */ |
| 461 | if (readl_poll_timeout(priv->regs + DW_SPI_SR, val, |
Eugeniy Paltsev | 9b14ac5 | 2018-04-19 17:47:41 +0300 | [diff] [blame] | 462 | (val & SR_TF_EMPT) && !(val & SR_BUSY), |
Eugeniy Paltsev | c6b4f03 | 2018-03-22 13:50:43 +0300 | [diff] [blame] | 463 | RX_TIMEOUT * 1000)) { |
| 464 | ret = -ETIMEDOUT; |
| 465 | } |
| 466 | |
Eugeniy Paltsev | bcdcb3e | 2018-03-22 13:50:46 +0300 | [diff] [blame] | 467 | /* Stop the transaction if necessary */ |
| 468 | if (flags & SPI_XFER_END) |
| 469 | external_cs_manage(dev, true); |
| 470 | |
Stefan Roese | 5bef6fd | 2014-11-07 13:50:31 +0100 | [diff] [blame] | 471 | return ret; |
| 472 | } |
| 473 | |
| 474 | static int dw_spi_set_speed(struct udevice *bus, uint speed) |
| 475 | { |
| 476 | struct dw_spi_platdata *plat = bus->platdata; |
| 477 | struct dw_spi_priv *priv = dev_get_priv(bus); |
| 478 | u16 clk_div; |
| 479 | |
| 480 | if (speed > plat->frequency) |
| 481 | speed = plat->frequency; |
| 482 | |
| 483 | /* Disable controller before writing control registers */ |
| 484 | spi_enable_chip(priv, 0); |
| 485 | |
| 486 | /* clk_div doesn't support odd number */ |
Eugeniy Paltsev | 58c125b | 2017-12-28 15:09:03 +0300 | [diff] [blame] | 487 | clk_div = priv->bus_clk_rate / speed; |
Stefan Roese | 5bef6fd | 2014-11-07 13:50:31 +0100 | [diff] [blame] | 488 | clk_div = (clk_div + 1) & 0xfffe; |
Eugeniy Paltsev | 4b5f6c5 | 2018-03-22 13:50:47 +0300 | [diff] [blame] | 489 | dw_write(priv, DW_SPI_BAUDR, clk_div); |
Stefan Roese | 5bef6fd | 2014-11-07 13:50:31 +0100 | [diff] [blame] | 490 | |
| 491 | /* Enable controller after writing control registers */ |
| 492 | spi_enable_chip(priv, 1); |
| 493 | |
| 494 | priv->freq = speed; |
| 495 | debug("%s: regs=%p speed=%d clk_div=%d\n", __func__, priv->regs, |
| 496 | priv->freq, clk_div); |
| 497 | |
| 498 | return 0; |
| 499 | } |
| 500 | |
| 501 | static int dw_spi_set_mode(struct udevice *bus, uint mode) |
| 502 | { |
| 503 | struct dw_spi_priv *priv = dev_get_priv(bus); |
| 504 | |
| 505 | /* |
| 506 | * Can't set mode yet. Since this depends on if rx, tx, or |
| 507 | * rx & tx is requested. So we have to defer this to the |
| 508 | * real transfer function. |
| 509 | */ |
| 510 | priv->mode = mode; |
| 511 | debug("%s: regs=%p, mode=%d\n", __func__, priv->regs, priv->mode); |
| 512 | |
| 513 | return 0; |
| 514 | } |
| 515 | |
Ley Foon Tan | 6ac5909 | 2018-09-07 14:25:29 +0800 | [diff] [blame] | 516 | static int dw_spi_remove(struct udevice *bus) |
| 517 | { |
| 518 | struct dw_spi_priv *priv = dev_get_priv(bus); |
| 519 | |
| 520 | return reset_release_bulk(&priv->resets); |
| 521 | } |
| 522 | |
Stefan Roese | 5bef6fd | 2014-11-07 13:50:31 +0100 | [diff] [blame] | 523 | static const struct dm_spi_ops dw_spi_ops = { |
| 524 | .xfer = dw_spi_xfer, |
| 525 | .set_speed = dw_spi_set_speed, |
| 526 | .set_mode = dw_spi_set_mode, |
| 527 | /* |
| 528 | * cs_info is not needed, since we require all chip selects to be |
| 529 | * in the device tree explicitly |
| 530 | */ |
| 531 | }; |
| 532 | |
| 533 | static const struct udevice_id dw_spi_ids[] = { |
Marek Vasut | 7411486 | 2014-12-31 20:14:55 +0100 | [diff] [blame] | 534 | { .compatible = "snps,dw-apb-ssi" }, |
Stefan Roese | 5bef6fd | 2014-11-07 13:50:31 +0100 | [diff] [blame] | 535 | { } |
| 536 | }; |
| 537 | |
| 538 | U_BOOT_DRIVER(dw_spi) = { |
| 539 | .name = "dw_spi", |
| 540 | .id = UCLASS_SPI, |
| 541 | .of_match = dw_spi_ids, |
| 542 | .ops = &dw_spi_ops, |
| 543 | .ofdata_to_platdata = dw_spi_ofdata_to_platdata, |
| 544 | .platdata_auto_alloc_size = sizeof(struct dw_spi_platdata), |
| 545 | .priv_auto_alloc_size = sizeof(struct dw_spi_priv), |
Stefan Roese | 5bef6fd | 2014-11-07 13:50:31 +0100 | [diff] [blame] | 546 | .probe = dw_spi_probe, |
Ley Foon Tan | 6ac5909 | 2018-09-07 14:25:29 +0800 | [diff] [blame] | 547 | .remove = dw_spi_remove, |
Stefan Roese | 5bef6fd | 2014-11-07 13:50:31 +0100 | [diff] [blame] | 548 | }; |