Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Stefan Roese | 3fda4ef | 2016-05-19 15:56:44 +0200 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2015 Marvell International Ltd. |
| 4 | * |
| 5 | * Copyright (C) 2016 Stefan Roese <sr@denx.de> |
Stefan Roese | 3fda4ef | 2016-05-19 15:56:44 +0200 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <common.h> |
| 9 | #include <dm.h> |
Simon Glass | f7ae49f | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 10 | #include <log.h> |
Stefan Roese | 3fda4ef | 2016-05-19 15:56:44 +0200 | [diff] [blame] | 11 | #include <malloc.h> |
| 12 | #include <spi.h> |
Marek Behún | dbbd5bd | 2018-04-24 17:21:26 +0200 | [diff] [blame] | 13 | #include <clk.h> |
Stefan Roese | 3fda4ef | 2016-05-19 15:56:44 +0200 | [diff] [blame] | 14 | #include <wait_bit.h> |
Simon Glass | 401d1c4 | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 15 | #include <asm/global_data.h> |
Stefan Roese | 3fda4ef | 2016-05-19 15:56:44 +0200 | [diff] [blame] | 16 | #include <asm/io.h> |
Simon Glass | 336d461 | 2020-02-03 07:36:16 -0700 | [diff] [blame] | 17 | #include <dm/device_compat.h> |
Simon Glass | cd93d62 | 2020-05-10 11:40:13 -0600 | [diff] [blame] | 18 | #include <linux/bitops.h> |
George Hilliard | 2df2863 | 2020-09-30 09:28:21 -0500 | [diff] [blame] | 19 | #include <asm/gpio.h> |
Stefan Roese | 3fda4ef | 2016-05-19 15:56:44 +0200 | [diff] [blame] | 20 | |
| 21 | DECLARE_GLOBAL_DATA_PTR; |
| 22 | |
| 23 | #define MVEBU_SPI_A3700_XFER_RDY BIT(1) |
| 24 | #define MVEBU_SPI_A3700_FIFO_FLUSH BIT(9) |
| 25 | #define MVEBU_SPI_A3700_BYTE_LEN BIT(5) |
| 26 | #define MVEBU_SPI_A3700_CLK_PHA BIT(6) |
| 27 | #define MVEBU_SPI_A3700_CLK_POL BIT(7) |
| 28 | #define MVEBU_SPI_A3700_FIFO_EN BIT(17) |
| 29 | #define MVEBU_SPI_A3700_SPI_EN_0 BIT(16) |
Marek Behún | dbbd5bd | 2018-04-24 17:21:26 +0200 | [diff] [blame] | 30 | #define MVEBU_SPI_A3700_CLK_PRESCALE_MASK 0x1f |
| 31 | |
George Hilliard | 2df2863 | 2020-09-30 09:28:21 -0500 | [diff] [blame] | 32 | #define MAX_CS_COUNT 4 |
Stefan Roese | 3fda4ef | 2016-05-19 15:56:44 +0200 | [diff] [blame] | 33 | |
| 34 | /* SPI registers */ |
| 35 | struct spi_reg { |
| 36 | u32 ctrl; /* 0x10600 */ |
| 37 | u32 cfg; /* 0x10604 */ |
| 38 | u32 dout; /* 0x10608 */ |
| 39 | u32 din; /* 0x1060c */ |
| 40 | }; |
| 41 | |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 42 | struct mvebu_spi_plat { |
Stefan Roese | 3fda4ef | 2016-05-19 15:56:44 +0200 | [diff] [blame] | 43 | struct spi_reg *spireg; |
Marek Behún | dbbd5bd | 2018-04-24 17:21:26 +0200 | [diff] [blame] | 44 | struct clk clk; |
George Hilliard | 2df2863 | 2020-09-30 09:28:21 -0500 | [diff] [blame] | 45 | struct gpio_desc cs_gpios[MAX_CS_COUNT]; |
Stefan Roese | 3fda4ef | 2016-05-19 15:56:44 +0200 | [diff] [blame] | 46 | }; |
| 47 | |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 48 | static void spi_cs_activate(struct mvebu_spi_plat *plat, int cs) |
Stefan Roese | 3fda4ef | 2016-05-19 15:56:44 +0200 | [diff] [blame] | 49 | { |
George Hilliard | 2df2863 | 2020-09-30 09:28:21 -0500 | [diff] [blame] | 50 | if (CONFIG_IS_ENABLED(DM_GPIO) && dm_gpio_is_valid(&plat->cs_gpios[cs])) |
| 51 | dm_gpio_set_value(&plat->cs_gpios[cs], 1); |
| 52 | else |
| 53 | setbits_le32(&plat->spireg->ctrl, MVEBU_SPI_A3700_SPI_EN_0 << cs); |
Stefan Roese | 3fda4ef | 2016-05-19 15:56:44 +0200 | [diff] [blame] | 54 | } |
| 55 | |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 56 | static void spi_cs_deactivate(struct mvebu_spi_plat *plat, int cs) |
Stefan Roese | 3fda4ef | 2016-05-19 15:56:44 +0200 | [diff] [blame] | 57 | { |
George Hilliard | 2df2863 | 2020-09-30 09:28:21 -0500 | [diff] [blame] | 58 | if (CONFIG_IS_ENABLED(DM_GPIO) && dm_gpio_is_valid(&plat->cs_gpios[cs])) |
| 59 | dm_gpio_set_value(&plat->cs_gpios[cs], 0); |
| 60 | else |
| 61 | clrbits_le32(&plat->spireg->ctrl, MVEBU_SPI_A3700_SPI_EN_0 << cs); |
Stefan Roese | 3fda4ef | 2016-05-19 15:56:44 +0200 | [diff] [blame] | 62 | } |
| 63 | |
| 64 | /** |
| 65 | * spi_legacy_shift_byte() - triggers the real SPI transfer |
| 66 | * @bytelen: Indicate how many bytes to transfer. |
| 67 | * @dout: Buffer address of what to send. |
| 68 | * @din: Buffer address of where to receive. |
| 69 | * |
| 70 | * This function triggers the real SPI transfer in legacy mode. It |
| 71 | * will shift out char buffer from @dout, and shift in char buffer to |
| 72 | * @din, if necessary. |
| 73 | * |
| 74 | * This function assumes that only one byte is shifted at one time. |
| 75 | * However, it is not its responisbility to set the transfer type to |
| 76 | * one-byte. Also, it does not guarantee that it will work if transfer |
| 77 | * type becomes two-byte. See spi_set_legacy() for details. |
| 78 | * |
| 79 | * In legacy mode, simply write to the SPI_DOUT register will trigger |
| 80 | * the transfer. |
| 81 | * |
| 82 | * If @dout == NULL, which means no actual data needs to be sent out, |
| 83 | * then the function will shift out 0x00 in order to shift in data. |
| 84 | * The XFER_RDY flag is checked every time before accessing SPI_DOUT |
| 85 | * and SPI_DIN register. |
| 86 | * |
Pengfei Fan | d466f62 | 2022-12-09 09:39:50 +0800 | [diff] [blame] | 87 | * The number of transfers to be triggered is decided by @bytelen. |
Stefan Roese | 3fda4ef | 2016-05-19 15:56:44 +0200 | [diff] [blame] | 88 | * |
| 89 | * Return: 0 - cool |
| 90 | * -ETIMEDOUT - XFER_RDY flag timeout |
| 91 | */ |
| 92 | static int spi_legacy_shift_byte(struct spi_reg *reg, unsigned int bytelen, |
| 93 | const void *dout, void *din) |
| 94 | { |
| 95 | const u8 *dout_8; |
| 96 | u8 *din_8; |
| 97 | int ret; |
| 98 | |
| 99 | /* Use 0x00 as dummy dout */ |
| 100 | const u8 dummy_dout = 0x0; |
| 101 | u32 pending_dout = 0x0; |
| 102 | |
| 103 | /* dout_8: pointer of current dout */ |
| 104 | dout_8 = dout; |
| 105 | /* din_8: pointer of current din */ |
| 106 | din_8 = din; |
| 107 | |
| 108 | while (bytelen) { |
Álvaro Fernández Rojas | 4826350 | 2018-01-23 17:14:55 +0100 | [diff] [blame] | 109 | ret = wait_for_bit_le32(®->ctrl, |
| 110 | MVEBU_SPI_A3700_XFER_RDY, |
| 111 | true,100, false); |
Stefan Roese | 3fda4ef | 2016-05-19 15:56:44 +0200 | [diff] [blame] | 112 | if (ret) |
| 113 | return ret; |
| 114 | |
| 115 | if (dout) |
| 116 | pending_dout = (u32)*dout_8; |
| 117 | else |
| 118 | pending_dout = (u32)dummy_dout; |
| 119 | |
| 120 | /* Trigger the xfer */ |
| 121 | writel(pending_dout, ®->dout); |
| 122 | |
| 123 | if (din) { |
Álvaro Fernández Rojas | 4826350 | 2018-01-23 17:14:55 +0100 | [diff] [blame] | 124 | ret = wait_for_bit_le32(®->ctrl, |
| 125 | MVEBU_SPI_A3700_XFER_RDY, |
| 126 | true, 100, false); |
Stefan Roese | 3fda4ef | 2016-05-19 15:56:44 +0200 | [diff] [blame] | 127 | if (ret) |
| 128 | return ret; |
| 129 | |
| 130 | /* Read what is transferred in */ |
| 131 | *din_8 = (u8)readl(®->din); |
| 132 | } |
| 133 | |
| 134 | /* Don't increment the current pointer if NULL */ |
| 135 | if (dout) |
| 136 | dout_8++; |
| 137 | if (din) |
| 138 | din_8++; |
| 139 | |
| 140 | bytelen--; |
| 141 | } |
| 142 | |
| 143 | return 0; |
| 144 | } |
| 145 | |
| 146 | static int mvebu_spi_xfer(struct udevice *dev, unsigned int bitlen, |
| 147 | const void *dout, void *din, unsigned long flags) |
| 148 | { |
| 149 | struct udevice *bus = dev->parent; |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 150 | struct mvebu_spi_plat *plat = dev_get_plat(bus); |
Stefan Roese | 3fda4ef | 2016-05-19 15:56:44 +0200 | [diff] [blame] | 151 | struct spi_reg *reg = plat->spireg; |
| 152 | unsigned int bytelen; |
| 153 | int ret; |
| 154 | |
| 155 | bytelen = bitlen / 8; |
| 156 | |
| 157 | if (dout && din) |
| 158 | debug("This is a duplex transfer.\n"); |
| 159 | |
| 160 | /* Activate CS */ |
| 161 | if (flags & SPI_XFER_BEGIN) { |
| 162 | debug("SPI: activate cs.\n"); |
George Hilliard | 2df2863 | 2020-09-30 09:28:21 -0500 | [diff] [blame] | 163 | spi_cs_activate(plat, spi_chip_select(dev)); |
Stefan Roese | 3fda4ef | 2016-05-19 15:56:44 +0200 | [diff] [blame] | 164 | } |
| 165 | |
| 166 | /* Send and/or receive */ |
| 167 | if (dout || din) { |
| 168 | ret = spi_legacy_shift_byte(reg, bytelen, dout, din); |
| 169 | if (ret) |
| 170 | return ret; |
| 171 | } |
| 172 | |
| 173 | /* Deactivate CS */ |
| 174 | if (flags & SPI_XFER_END) { |
Álvaro Fernández Rojas | 4826350 | 2018-01-23 17:14:55 +0100 | [diff] [blame] | 175 | ret = wait_for_bit_le32(®->ctrl, |
| 176 | MVEBU_SPI_A3700_XFER_RDY, |
| 177 | true, 100, false); |
Stefan Roese | 3fda4ef | 2016-05-19 15:56:44 +0200 | [diff] [blame] | 178 | if (ret) |
| 179 | return ret; |
| 180 | |
| 181 | debug("SPI: deactivate cs.\n"); |
George Hilliard | 2df2863 | 2020-09-30 09:28:21 -0500 | [diff] [blame] | 182 | spi_cs_deactivate(plat, spi_chip_select(dev)); |
Stefan Roese | 3fda4ef | 2016-05-19 15:56:44 +0200 | [diff] [blame] | 183 | } |
| 184 | |
| 185 | return 0; |
| 186 | } |
| 187 | |
| 188 | static int mvebu_spi_set_speed(struct udevice *bus, uint hz) |
| 189 | { |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 190 | struct mvebu_spi_plat *plat = dev_get_plat(bus); |
Stefan Roese | 3fda4ef | 2016-05-19 15:56:44 +0200 | [diff] [blame] | 191 | struct spi_reg *reg = plat->spireg; |
Marek Behún | dbbd5bd | 2018-04-24 17:21:26 +0200 | [diff] [blame] | 192 | u32 data, prescale; |
Stefan Roese | 3fda4ef | 2016-05-19 15:56:44 +0200 | [diff] [blame] | 193 | |
| 194 | data = readl(®->cfg); |
| 195 | |
Marek Behún | dbbd5bd | 2018-04-24 17:21:26 +0200 | [diff] [blame] | 196 | prescale = DIV_ROUND_UP(clk_get_rate(&plat->clk), hz); |
Marek Behún | 07a5cb9 | 2019-07-23 16:49:32 +0200 | [diff] [blame] | 197 | if (prescale > 0xf) |
Marek Behún | dbbd5bd | 2018-04-24 17:21:26 +0200 | [diff] [blame] | 198 | prescale = 0x10 + (prescale + 1) / 2; |
Marek Behún | 07a5cb9 | 2019-07-23 16:49:32 +0200 | [diff] [blame] | 199 | prescale = min(prescale, 0x1fu); |
Stefan Roese | 3fda4ef | 2016-05-19 15:56:44 +0200 | [diff] [blame] | 200 | |
Marek Behún | dbbd5bd | 2018-04-24 17:21:26 +0200 | [diff] [blame] | 201 | data &= ~MVEBU_SPI_A3700_CLK_PRESCALE_MASK; |
| 202 | data |= prescale & MVEBU_SPI_A3700_CLK_PRESCALE_MASK; |
Stefan Roese | 3fda4ef | 2016-05-19 15:56:44 +0200 | [diff] [blame] | 203 | |
| 204 | writel(data, ®->cfg); |
| 205 | |
| 206 | return 0; |
| 207 | } |
| 208 | |
| 209 | static int mvebu_spi_set_mode(struct udevice *bus, uint mode) |
| 210 | { |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 211 | struct mvebu_spi_plat *plat = dev_get_plat(bus); |
Stefan Roese | 3fda4ef | 2016-05-19 15:56:44 +0200 | [diff] [blame] | 212 | struct spi_reg *reg = plat->spireg; |
| 213 | |
| 214 | /* |
| 215 | * Set SPI polarity |
| 216 | * 0: Serial interface clock is low when inactive |
| 217 | * 1: Serial interface clock is high when inactive |
| 218 | */ |
| 219 | if (mode & SPI_CPOL) |
| 220 | setbits_le32(®->cfg, MVEBU_SPI_A3700_CLK_POL); |
| 221 | else |
| 222 | clrbits_le32(®->cfg, MVEBU_SPI_A3700_CLK_POL); |
| 223 | if (mode & SPI_CPHA) |
| 224 | setbits_le32(®->cfg, MVEBU_SPI_A3700_CLK_PHA); |
| 225 | else |
| 226 | clrbits_le32(®->cfg, MVEBU_SPI_A3700_CLK_PHA); |
| 227 | |
| 228 | return 0; |
| 229 | } |
| 230 | |
| 231 | static int mvebu_spi_probe(struct udevice *bus) |
| 232 | { |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 233 | struct mvebu_spi_plat *plat = dev_get_plat(bus); |
Stefan Roese | 3fda4ef | 2016-05-19 15:56:44 +0200 | [diff] [blame] | 234 | struct spi_reg *reg = plat->spireg; |
| 235 | u32 data; |
| 236 | int ret; |
| 237 | |
| 238 | /* |
| 239 | * Settings SPI controller to be working in legacy mode, which |
| 240 | * means use only DO pin (I/O 1) for Data Out, and DI pin (I/O 0) |
| 241 | * for Data In. |
| 242 | */ |
| 243 | |
| 244 | /* Flush read/write FIFO */ |
| 245 | data = readl(®->cfg); |
| 246 | writel(data | MVEBU_SPI_A3700_FIFO_FLUSH, ®->cfg); |
Álvaro Fernández Rojas | 4826350 | 2018-01-23 17:14:55 +0100 | [diff] [blame] | 247 | ret = wait_for_bit_le32(®->cfg, MVEBU_SPI_A3700_FIFO_FLUSH, |
| 248 | false, 1000, false); |
Stefan Roese | 3fda4ef | 2016-05-19 15:56:44 +0200 | [diff] [blame] | 249 | if (ret) |
| 250 | return ret; |
| 251 | |
| 252 | /* Disable FIFO mode */ |
| 253 | data &= ~MVEBU_SPI_A3700_FIFO_EN; |
| 254 | |
| 255 | /* Always shift 1 byte at a time */ |
| 256 | data &= ~MVEBU_SPI_A3700_BYTE_LEN; |
| 257 | |
| 258 | writel(data, ®->cfg); |
| 259 | |
George Hilliard | 2df2863 | 2020-09-30 09:28:21 -0500 | [diff] [blame] | 260 | /* Set up CS GPIOs in device tree, if any */ |
| 261 | if (CONFIG_IS_ENABLED(DM_GPIO) && gpio_get_list_count(bus, "cs-gpios") > 0) { |
| 262 | int i; |
| 263 | |
| 264 | for (i = 0; i < ARRAY_SIZE(plat->cs_gpios); i++) { |
| 265 | ret = gpio_request_by_name(bus, "cs-gpios", i, &plat->cs_gpios[i], 0); |
| 266 | if (ret < 0 || !dm_gpio_is_valid(&plat->cs_gpios[i])) { |
| 267 | /* Use the native CS function for this line */ |
| 268 | continue; |
| 269 | } |
| 270 | |
| 271 | ret = dm_gpio_set_dir_flags(&plat->cs_gpios[i], |
| 272 | GPIOD_IS_OUT | GPIOD_ACTIVE_LOW); |
| 273 | if (ret) { |
| 274 | dev_err(bus, "Setting cs %d error\n", i); |
| 275 | return ret; |
| 276 | } |
| 277 | } |
| 278 | } |
| 279 | |
Stefan Roese | 3fda4ef | 2016-05-19 15:56:44 +0200 | [diff] [blame] | 280 | return 0; |
| 281 | } |
| 282 | |
Simon Glass | d1998a9 | 2020-12-03 16:55:21 -0700 | [diff] [blame] | 283 | static int mvebu_spi_of_to_plat(struct udevice *bus) |
Stefan Roese | 3fda4ef | 2016-05-19 15:56:44 +0200 | [diff] [blame] | 284 | { |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 285 | struct mvebu_spi_plat *plat = dev_get_plat(bus); |
Marek Behún | dbbd5bd | 2018-04-24 17:21:26 +0200 | [diff] [blame] | 286 | int ret; |
Stefan Roese | 3fda4ef | 2016-05-19 15:56:44 +0200 | [diff] [blame] | 287 | |
Masahiro Yamada | 8613c8d | 2020-07-17 14:36:46 +0900 | [diff] [blame] | 288 | plat->spireg = dev_read_addr_ptr(bus); |
Stefan Roese | 3fda4ef | 2016-05-19 15:56:44 +0200 | [diff] [blame] | 289 | |
Marek Behún | dbbd5bd | 2018-04-24 17:21:26 +0200 | [diff] [blame] | 290 | ret = clk_get_by_index(bus, 0, &plat->clk); |
| 291 | if (ret) { |
| 292 | dev_err(bus, "cannot get clock\n"); |
| 293 | return ret; |
| 294 | } |
| 295 | |
| 296 | return 0; |
| 297 | } |
| 298 | |
| 299 | static int mvebu_spi_remove(struct udevice *bus) |
| 300 | { |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 301 | struct mvebu_spi_plat *plat = dev_get_plat(bus); |
Marek Behún | dbbd5bd | 2018-04-24 17:21:26 +0200 | [diff] [blame] | 302 | |
| 303 | clk_free(&plat->clk); |
Stefan Roese | 3fda4ef | 2016-05-19 15:56:44 +0200 | [diff] [blame] | 304 | |
| 305 | return 0; |
| 306 | } |
| 307 | |
| 308 | static const struct dm_spi_ops mvebu_spi_ops = { |
| 309 | .xfer = mvebu_spi_xfer, |
| 310 | .set_speed = mvebu_spi_set_speed, |
| 311 | .set_mode = mvebu_spi_set_mode, |
| 312 | /* |
| 313 | * cs_info is not needed, since we require all chip selects to be |
| 314 | * in the device tree explicitly |
| 315 | */ |
| 316 | }; |
| 317 | |
| 318 | static const struct udevice_id mvebu_spi_ids[] = { |
| 319 | { .compatible = "marvell,armada-3700-spi" }, |
| 320 | { } |
| 321 | }; |
| 322 | |
| 323 | U_BOOT_DRIVER(mvebu_spi) = { |
| 324 | .name = "mvebu_spi", |
| 325 | .id = UCLASS_SPI, |
| 326 | .of_match = mvebu_spi_ids, |
| 327 | .ops = &mvebu_spi_ops, |
Simon Glass | d1998a9 | 2020-12-03 16:55:21 -0700 | [diff] [blame] | 328 | .of_to_plat = mvebu_spi_of_to_plat, |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 329 | .plat_auto = sizeof(struct mvebu_spi_plat), |
Stefan Roese | 3fda4ef | 2016-05-19 15:56:44 +0200 | [diff] [blame] | 330 | .probe = mvebu_spi_probe, |
Marek Behún | dbbd5bd | 2018-04-24 17:21:26 +0200 | [diff] [blame] | 331 | .remove = mvebu_spi_remove, |
Stefan Roese | 3fda4ef | 2016-05-19 15:56:44 +0200 | [diff] [blame] | 332 | }; |