blob: 47002f8b5662467b78f4f2bf557d06c6039eea73 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Álvaro Fernández Rojas29cc4362018-01-20 02:13:38 +01002/*
3 * Copyright (C) 2017 Álvaro Fernández Rojas <noltari@gmail.com>
4 *
5 * Derived from linux/drivers/spi/spi-bcm63xx-hsspi.c:
6 * Copyright (C) 2000-2010 Broadcom Corporation
7 * Copyright (C) 2012-2013 Jonas Gorski <jogo@openwrt.org>
Álvaro Fernández Rojas29cc4362018-01-20 02:13:38 +01008 */
9
10#include <common.h>
11#include <clk.h>
12#include <dm.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060013#include <log.h>
Simon Glass336d4612020-02-03 07:36:16 -070014#include <malloc.h>
Álvaro Fernández Rojas29cc4362018-01-20 02:13:38 +010015#include <spi.h>
16#include <reset.h>
17#include <wait_bit.h>
18#include <asm/io.h>
Simon Glasscd93d622020-05-10 11:40:13 -060019#include <linux/bitops.h>
Álvaro Fernández Rojas29cc4362018-01-20 02:13:38 +010020
Álvaro Fernández Rojas29cc4362018-01-20 02:13:38 +010021#define HSSPI_PP 0
22
23#define SPI_MAX_SYNC_CLOCK 30000000
24
25/* SPI Control register */
26#define SPI_CTL_REG 0x000
27#define SPI_CTL_CS_POL_SHIFT 0
28#define SPI_CTL_CS_POL_MASK (0xff << SPI_CTL_CS_POL_SHIFT)
29#define SPI_CTL_CLK_GATE_SHIFT 16
30#define SPI_CTL_CLK_GATE_MASK (1 << SPI_CTL_CLK_GATE_SHIFT)
31#define SPI_CTL_CLK_POL_SHIFT 17
32#define SPI_CTL_CLK_POL_MASK (1 << SPI_CTL_CLK_POL_SHIFT)
33
34/* SPI Interrupts registers */
35#define SPI_IR_STAT_REG 0x008
36#define SPI_IR_ST_MASK_REG 0x00c
37#define SPI_IR_MASK_REG 0x010
38
39#define SPI_IR_CLEAR_ALL 0xff001f1f
40
41/* SPI Ping-Pong Command registers */
42#define SPI_CMD_REG (0x080 + (0x40 * (HSSPI_PP)) + 0x00)
43#define SPI_CMD_OP_SHIFT 0
44#define SPI_CMD_OP_START (0x1 << SPI_CMD_OP_SHIFT)
45#define SPI_CMD_PFL_SHIFT 8
46#define SPI_CMD_PFL_MASK (0x7 << SPI_CMD_PFL_SHIFT)
47#define SPI_CMD_SLAVE_SHIFT 12
48#define SPI_CMD_SLAVE_MASK (0x7 << SPI_CMD_SLAVE_SHIFT)
49
50/* SPI Ping-Pong Status registers */
51#define SPI_STAT_REG (0x080 + (0x40 * (HSSPI_PP)) + 0x04)
52#define SPI_STAT_SRCBUSY_SHIFT 1
53#define SPI_STAT_SRCBUSY_MASK (1 << SPI_STAT_SRCBUSY_SHIFT)
54
55/* SPI Profile Clock registers */
56#define SPI_PFL_CLK_REG(x) (0x100 + (0x20 * (x)) + 0x00)
57#define SPI_PFL_CLK_FREQ_SHIFT 0
58#define SPI_PFL_CLK_FREQ_MASK (0x3fff << SPI_PFL_CLK_FREQ_SHIFT)
59#define SPI_PFL_CLK_RSTLOOP_SHIFT 15
60#define SPI_PFL_CLK_RSTLOOP_MASK (1 << SPI_PFL_CLK_RSTLOOP_SHIFT)
61
62/* SPI Profile Signal registers */
63#define SPI_PFL_SIG_REG(x) (0x100 + (0x20 * (x)) + 0x04)
64#define SPI_PFL_SIG_LATCHRIS_SHIFT 12
65#define SPI_PFL_SIG_LATCHRIS_MASK (1 << SPI_PFL_SIG_LATCHRIS_SHIFT)
66#define SPI_PFL_SIG_LAUNCHRIS_SHIFT 13
67#define SPI_PFL_SIG_LAUNCHRIS_MASK (1 << SPI_PFL_SIG_LAUNCHRIS_SHIFT)
68#define SPI_PFL_SIG_ASYNCIN_SHIFT 16
69#define SPI_PFL_SIG_ASYNCIN_MASK (1 << SPI_PFL_SIG_ASYNCIN_SHIFT)
70
71/* SPI Profile Mode registers */
72#define SPI_PFL_MODE_REG(x) (0x100 + (0x20 * (x)) + 0x08)
73#define SPI_PFL_MODE_FILL_SHIFT 0
74#define SPI_PFL_MODE_FILL_MASK (0xff << SPI_PFL_MODE_FILL_SHIFT)
75#define SPI_PFL_MODE_MDRDSZ_SHIFT 16
76#define SPI_PFL_MODE_MDRDSZ_MASK (1 << SPI_PFL_MODE_MDRDSZ_SHIFT)
77#define SPI_PFL_MODE_MDWRSZ_SHIFT 18
78#define SPI_PFL_MODE_MDWRSZ_MASK (1 << SPI_PFL_MODE_MDWRSZ_SHIFT)
79#define SPI_PFL_MODE_3WIRE_SHIFT 20
80#define SPI_PFL_MODE_3WIRE_MASK (1 << SPI_PFL_MODE_3WIRE_SHIFT)
81
82/* SPI Ping-Pong FIFO registers */
83#define HSSPI_FIFO_SIZE 0x200
84#define HSSPI_FIFO_BASE (0x200 + \
85 (HSSPI_FIFO_SIZE * HSSPI_PP))
86
87/* SPI Ping-Pong FIFO OP register */
88#define HSSPI_FIFO_OP_SIZE 0x2
89#define HSSPI_FIFO_OP_REG (HSSPI_FIFO_BASE + 0x00)
90#define HSSPI_FIFO_OP_BYTES_SHIFT 0
91#define HSSPI_FIFO_OP_BYTES_MASK (0x3ff << HSSPI_FIFO_OP_BYTES_SHIFT)
92#define HSSPI_FIFO_OP_MBIT_SHIFT 11
93#define HSSPI_FIFO_OP_MBIT_MASK (1 << HSSPI_FIFO_OP_MBIT_SHIFT)
94#define HSSPI_FIFO_OP_CODE_SHIFT 13
95#define HSSPI_FIFO_OP_READ_WRITE (1 << HSSPI_FIFO_OP_CODE_SHIFT)
96#define HSSPI_FIFO_OP_CODE_W (2 << HSSPI_FIFO_OP_CODE_SHIFT)
97#define HSSPI_FIFO_OP_CODE_R (3 << HSSPI_FIFO_OP_CODE_SHIFT)
98
99struct bcm63xx_hsspi_priv {
100 void __iomem *regs;
101 ulong clk_rate;
102 uint8_t num_cs;
103 uint8_t cs_pols;
104 uint speed;
105};
106
107static int bcm63xx_hsspi_cs_info(struct udevice *bus, uint cs,
108 struct spi_cs_info *info)
109{
110 struct bcm63xx_hsspi_priv *priv = dev_get_priv(bus);
111
112 if (cs >= priv->num_cs) {
113 printf("no cs %u\n", cs);
Bin Meng4b060002019-09-09 06:00:01 -0700114 return -EINVAL;
Álvaro Fernández Rojas29cc4362018-01-20 02:13:38 +0100115 }
116
117 return 0;
118}
119
120static int bcm63xx_hsspi_set_mode(struct udevice *bus, uint mode)
121{
122 struct bcm63xx_hsspi_priv *priv = dev_get_priv(bus);
123
124 /* clock polarity */
125 if (mode & SPI_CPOL)
Kursad Oney3ae64e82019-08-14 15:18:34 +0200126 setbits_32(priv->regs + SPI_CTL_REG, SPI_CTL_CLK_POL_MASK);
Álvaro Fernández Rojas29cc4362018-01-20 02:13:38 +0100127 else
Kursad Oney3ae64e82019-08-14 15:18:34 +0200128 clrbits_32(priv->regs + SPI_CTL_REG, SPI_CTL_CLK_POL_MASK);
Álvaro Fernández Rojas29cc4362018-01-20 02:13:38 +0100129
130 return 0;
131}
132
133static int bcm63xx_hsspi_set_speed(struct udevice *bus, uint speed)
134{
135 struct bcm63xx_hsspi_priv *priv = dev_get_priv(bus);
136
137 priv->speed = speed;
138
139 return 0;
140}
141
142static void bcm63xx_hsspi_activate_cs(struct bcm63xx_hsspi_priv *priv,
Simon Glass8a8d24b2020-12-03 16:55:23 -0700143 struct dm_spi_slave_plat *plat)
Álvaro Fernández Rojas29cc4362018-01-20 02:13:38 +0100144{
145 uint32_t clr, set;
146
147 /* profile clock */
148 set = DIV_ROUND_UP(priv->clk_rate, priv->speed);
149 set = DIV_ROUND_UP(2048, set);
150 set &= SPI_PFL_CLK_FREQ_MASK;
151 set |= SPI_PFL_CLK_RSTLOOP_MASK;
Kursad Oney3ae64e82019-08-14 15:18:34 +0200152 writel(set, priv->regs + SPI_PFL_CLK_REG(plat->cs));
Álvaro Fernández Rojas29cc4362018-01-20 02:13:38 +0100153
154 /* profile signal */
155 set = 0;
156 clr = SPI_PFL_SIG_LAUNCHRIS_MASK |
157 SPI_PFL_SIG_LATCHRIS_MASK |
158 SPI_PFL_SIG_ASYNCIN_MASK;
159
160 /* latch/launch config */
161 if (plat->mode & SPI_CPHA)
162 set |= SPI_PFL_SIG_LAUNCHRIS_MASK;
163 else
164 set |= SPI_PFL_SIG_LATCHRIS_MASK;
165
166 /* async clk */
167 if (priv->speed > SPI_MAX_SYNC_CLOCK)
168 set |= SPI_PFL_SIG_ASYNCIN_MASK;
169
Kursad Oney3ae64e82019-08-14 15:18:34 +0200170 clrsetbits_32(priv->regs + SPI_PFL_SIG_REG(plat->cs), clr, set);
Álvaro Fernández Rojas29cc4362018-01-20 02:13:38 +0100171
172 /* global control */
173 set = 0;
174 clr = 0;
175
176 /* invert cs polarity */
177 if (priv->cs_pols & BIT(plat->cs))
178 clr |= BIT(plat->cs);
179 else
180 set |= BIT(plat->cs);
181
182 /* invert dummy cs polarity */
183 if (priv->cs_pols & BIT(!plat->cs))
184 clr |= BIT(!plat->cs);
185 else
186 set |= BIT(!plat->cs);
187
Kursad Oney3ae64e82019-08-14 15:18:34 +0200188 clrsetbits_32(priv->regs + SPI_CTL_REG, clr, set);
Álvaro Fernández Rojas29cc4362018-01-20 02:13:38 +0100189}
190
191static void bcm63xx_hsspi_deactivate_cs(struct bcm63xx_hsspi_priv *priv)
192{
193 /* restore cs polarities */
Kursad Oney3ae64e82019-08-14 15:18:34 +0200194 clrsetbits_32(priv->regs + SPI_CTL_REG, SPI_CTL_CS_POL_MASK,
Álvaro Fernández Rojas29cc4362018-01-20 02:13:38 +0100195 priv->cs_pols);
196}
197
198/*
199 * BCM63xx HSSPI driver doesn't allow keeping CS active between transfers
200 * because they are controlled by HW.
201 * However, it provides a mechanism to prepend write transfers prior to read
202 * transfers (with a maximum prepend of 15 bytes), which is usually enough for
203 * SPI-connected flashes since reading requires prepending a write transfer of
204 * 5 bytes. On the other hand it also provides a way to invert each CS
205 * polarity, not only between transfers like the older BCM63xx SPI driver, but
206 * also the rest of the time.
207 *
208 * Instead of using the prepend mechanism, this implementation inverts the
209 * polarity of both the desired CS and another dummy CS when the bus is
210 * claimed. This way, the dummy CS is restored to its inactive value when
211 * transfers are issued and the desired CS is preserved in its active value
212 * all the time. This hack is also used in the upstream linux driver and
213 * allows keeping CS active between trasnfers even if the HW doesn't give
214 * this possibility.
215 */
216static int bcm63xx_hsspi_xfer(struct udevice *dev, unsigned int bitlen,
217 const void *dout, void *din, unsigned long flags)
218{
219 struct bcm63xx_hsspi_priv *priv = dev_get_priv(dev->parent);
Simon Glass8a8d24b2020-12-03 16:55:23 -0700220 struct dm_spi_slave_plat *plat = dev_get_parent_plat(dev);
Álvaro Fernández Rojas29cc4362018-01-20 02:13:38 +0100221 size_t data_bytes = bitlen / 8;
222 size_t step_size = HSSPI_FIFO_SIZE;
223 uint16_t opcode = 0;
224 uint32_t val;
225 const uint8_t *tx = dout;
226 uint8_t *rx = din;
227
228 if (flags & SPI_XFER_BEGIN)
229 bcm63xx_hsspi_activate_cs(priv, plat);
230
231 /* fifo operation */
232 if (tx && rx)
233 opcode = HSSPI_FIFO_OP_READ_WRITE;
234 else if (rx)
235 opcode = HSSPI_FIFO_OP_CODE_R;
236 else if (tx)
237 opcode = HSSPI_FIFO_OP_CODE_W;
238
239 if (opcode != HSSPI_FIFO_OP_CODE_R)
240 step_size -= HSSPI_FIFO_OP_SIZE;
241
242 /* dual mode */
243 if ((opcode == HSSPI_FIFO_OP_CODE_R && plat->mode == SPI_RX_DUAL) ||
244 (opcode == HSSPI_FIFO_OP_CODE_W && plat->mode == SPI_TX_DUAL))
245 opcode |= HSSPI_FIFO_OP_MBIT_MASK;
246
247 /* profile mode */
248 val = SPI_PFL_MODE_FILL_MASK |
249 SPI_PFL_MODE_MDRDSZ_MASK |
250 SPI_PFL_MODE_MDWRSZ_MASK;
251 if (plat->mode & SPI_3WIRE)
252 val |= SPI_PFL_MODE_3WIRE_MASK;
Kursad Oney3ae64e82019-08-14 15:18:34 +0200253 writel(val, priv->regs + SPI_PFL_MODE_REG(plat->cs));
Álvaro Fernández Rojas29cc4362018-01-20 02:13:38 +0100254
255 /* transfer loop */
256 while (data_bytes > 0) {
257 size_t curr_step = min(step_size, data_bytes);
258 int ret;
259
260 /* copy tx data */
261 if (tx) {
262 memcpy_toio(priv->regs + HSSPI_FIFO_BASE +
263 HSSPI_FIFO_OP_SIZE, tx, curr_step);
264 tx += curr_step;
265 }
266
267 /* set fifo operation */
Kursad Oney3ae64e82019-08-14 15:18:34 +0200268 writew(cpu_to_be16(opcode | (curr_step & HSSPI_FIFO_OP_BYTES_MASK)),
Álvaro Fernández Rojas29cc4362018-01-20 02:13:38 +0100269 priv->regs + HSSPI_FIFO_OP_REG);
270
271 /* issue the transfer */
272 val = SPI_CMD_OP_START;
273 val |= (plat->cs << SPI_CMD_PFL_SHIFT) &
274 SPI_CMD_PFL_MASK;
275 val |= (!plat->cs << SPI_CMD_SLAVE_SHIFT) &
276 SPI_CMD_SLAVE_MASK;
Kursad Oney3ae64e82019-08-14 15:18:34 +0200277 writel(val, priv->regs + SPI_CMD_REG);
Álvaro Fernández Rojas29cc4362018-01-20 02:13:38 +0100278
279 /* wait for completion */
Kursad Oney3ae64e82019-08-14 15:18:34 +0200280 ret = wait_for_bit_32(priv->regs + SPI_STAT_REG,
Álvaro Fernández Rojas29cc4362018-01-20 02:13:38 +0100281 SPI_STAT_SRCBUSY_MASK, false,
282 1000, false);
283 if (ret) {
284 printf("interrupt timeout\n");
285 return ret;
286 }
287
288 /* copy rx data */
289 if (rx) {
290 memcpy_fromio(rx, priv->regs + HSSPI_FIFO_BASE,
291 curr_step);
292 rx += curr_step;
293 }
294
295 data_bytes -= curr_step;
296 }
297
298 if (flags & SPI_XFER_END)
299 bcm63xx_hsspi_deactivate_cs(priv);
300
301 return 0;
302}
303
304static const struct dm_spi_ops bcm63xx_hsspi_ops = {
305 .cs_info = bcm63xx_hsspi_cs_info,
306 .set_mode = bcm63xx_hsspi_set_mode,
307 .set_speed = bcm63xx_hsspi_set_speed,
308 .xfer = bcm63xx_hsspi_xfer,
309};
310
311static const struct udevice_id bcm63xx_hsspi_ids[] = {
312 { .compatible = "brcm,bcm6328-hsspi", },
313 { /* sentinel */ }
314};
315
316static int bcm63xx_hsspi_child_pre_probe(struct udevice *dev)
317{
318 struct bcm63xx_hsspi_priv *priv = dev_get_priv(dev->parent);
Simon Glass8a8d24b2020-12-03 16:55:23 -0700319 struct dm_spi_slave_plat *plat = dev_get_parent_plat(dev);
Álvaro Fernández Rojas29cc4362018-01-20 02:13:38 +0100320
321 /* check cs */
322 if (plat->cs >= priv->num_cs) {
323 printf("no cs %u\n", plat->cs);
324 return -ENODEV;
325 }
326
327 /* cs polarity */
328 if (plat->mode & SPI_CS_HIGH)
329 priv->cs_pols |= BIT(plat->cs);
330 else
331 priv->cs_pols &= ~BIT(plat->cs);
332
333 return 0;
334}
335
336static int bcm63xx_hsspi_probe(struct udevice *dev)
337{
338 struct bcm63xx_hsspi_priv *priv = dev_get_priv(dev);
339 struct reset_ctl rst_ctl;
340 struct clk clk;
Álvaro Fernández Rojas29cc4362018-01-20 02:13:38 +0100341 int ret;
342
Álvaro Fernández Rojas46689a92018-03-22 19:39:37 +0100343 priv->regs = dev_remap_addr(dev);
344 if (!priv->regs)
Álvaro Fernández Rojas29cc4362018-01-20 02:13:38 +0100345 return -EINVAL;
346
Álvaro Fernández Rojas46689a92018-03-22 19:39:37 +0100347 priv->num_cs = dev_read_u32_default(dev, "num-cs", 8);
Álvaro Fernández Rojas29cc4362018-01-20 02:13:38 +0100348
349 /* enable clock */
350 ret = clk_get_by_name(dev, "hsspi", &clk);
351 if (ret < 0)
352 return ret;
353
354 ret = clk_enable(&clk);
Kursad Oneyb47f4892019-08-14 15:18:35 +0200355 if (ret < 0 && ret != -ENOSYS)
Álvaro Fernández Rojas29cc4362018-01-20 02:13:38 +0100356 return ret;
357
Sean Andersondfdb2272022-01-15 17:25:02 -0500358 clk_free(&clk);
Álvaro Fernández Rojas29cc4362018-01-20 02:13:38 +0100359
360 /* get clock rate */
361 ret = clk_get_by_name(dev, "pll", &clk);
Kursad Oneyb47f4892019-08-14 15:18:35 +0200362 if (ret < 0 && ret != -ENOSYS)
Álvaro Fernández Rojas29cc4362018-01-20 02:13:38 +0100363 return ret;
364
365 priv->clk_rate = clk_get_rate(&clk);
366
Sean Andersondfdb2272022-01-15 17:25:02 -0500367 clk_free(&clk);
Álvaro Fernández Rojas29cc4362018-01-20 02:13:38 +0100368
369 /* perform reset */
370 ret = reset_get_by_index(dev, 0, &rst_ctl);
Kursad Oneyb47f4892019-08-14 15:18:35 +0200371 if (ret >= 0) {
372 ret = reset_deassert(&rst_ctl);
373 if (ret < 0)
374 return ret;
375 }
Álvaro Fernández Rojas29cc4362018-01-20 02:13:38 +0100376
377 ret = reset_free(&rst_ctl);
378 if (ret < 0)
379 return ret;
380
381 /* initialize hardware */
Kursad Oney3ae64e82019-08-14 15:18:34 +0200382 writel(0, priv->regs + SPI_IR_MASK_REG);
Álvaro Fernández Rojas29cc4362018-01-20 02:13:38 +0100383
384 /* clear pending interrupts */
Kursad Oney3ae64e82019-08-14 15:18:34 +0200385 writel(SPI_IR_CLEAR_ALL, priv->regs + SPI_IR_STAT_REG);
Álvaro Fernández Rojas29cc4362018-01-20 02:13:38 +0100386
387 /* enable clk gate */
Kursad Oney3ae64e82019-08-14 15:18:34 +0200388 setbits_32(priv->regs + SPI_CTL_REG, SPI_CTL_CLK_GATE_MASK);
Álvaro Fernández Rojas29cc4362018-01-20 02:13:38 +0100389
390 /* read default cs polarities */
Kursad Oney3ae64e82019-08-14 15:18:34 +0200391 priv->cs_pols = readl(priv->regs + SPI_CTL_REG) &
Álvaro Fernández Rojas29cc4362018-01-20 02:13:38 +0100392 SPI_CTL_CS_POL_MASK;
393
394 return 0;
395}
396
397U_BOOT_DRIVER(bcm63xx_hsspi) = {
398 .name = "bcm63xx_hsspi",
399 .id = UCLASS_SPI,
400 .of_match = bcm63xx_hsspi_ids,
401 .ops = &bcm63xx_hsspi_ops,
Simon Glass41575d82020-12-03 16:55:17 -0700402 .priv_auto = sizeof(struct bcm63xx_hsspi_priv),
Álvaro Fernández Rojas29cc4362018-01-20 02:13:38 +0100403 .child_pre_probe = bcm63xx_hsspi_child_pre_probe,
404 .probe = bcm63xx_hsspi_probe,
405};